|
1 | 1 | { |
| 2 | + "name": "Google Docs", |
| 3 | + "description": "Sync your Contentful content with Google Docs", |
| 4 | + "id": "google-docs", |
| 5 | + "category": "Productivity", |
| 6 | + "version": "0.1.0", |
| 7 | + "locations": [ |
| 8 | + { |
| 9 | + "location": "app-config", |
| 10 | + "component": "ConfigScreen" |
| 11 | + } |
| 12 | + ], |
2 | 13 | "parameters": { |
3 | 14 | "installation": [ |
4 | 15 | { |
|
20 | 31 | "accepts": [ |
21 | 32 | "appaction.call" |
22 | 33 | ] |
| 34 | + }, |
| 35 | + { |
| 36 | + "id": "initiateOauth", |
| 37 | + "name": "Initiate OAuth", |
| 38 | + "description": "Initiates the OAuth flow for Google Docs", |
| 39 | + "path": "functions/initiateOauth.js", |
| 40 | + "entryFile": "functions/initiateOauth.ts", |
| 41 | + "allowNetworks": [ |
| 42 | + "www.google.com" |
| 43 | + ], |
| 44 | + "accepts": [ |
| 45 | + "appaction.call" |
| 46 | + ] |
| 47 | + }, |
| 48 | + { |
| 49 | + "id": "completeOauth", |
| 50 | + "name": "Complete OAuth", |
| 51 | + "description": "Completes the OAuth flow for Google Docs", |
| 52 | + "path": "functions/completeOauth.js", |
| 53 | + "entryFile": "functions/completeOauth.ts", |
| 54 | + "allowNetworks": [ |
| 55 | + "a.google.com" |
| 56 | + ], |
| 57 | + "accepts": [ |
| 58 | + "appaction.call" |
| 59 | + ] |
| 60 | + }, |
| 61 | + { |
| 62 | + "id": "disconnect", |
| 63 | + "name": "Disconnect", |
| 64 | + "description": "Disconnects the Google Docs app", |
| 65 | + "path": "functions/disconnect.js", |
| 66 | + "entryFile": "functions/disconnect.ts", |
| 67 | + "allowNetworks": [ |
| 68 | + "a.google.com" |
| 69 | + ], |
| 70 | + "accepts": [ |
| 71 | + "appaction.call" |
| 72 | + ] |
| 73 | + }, |
| 74 | + { |
| 75 | + "id": "checkStatus", |
| 76 | + "name": "Check Status", |
| 77 | + "description": "Checks the status of the Google Docs app", |
| 78 | + "path": "functions/checkStatus.js", |
| 79 | + "entryFile": "functions/checkStatus.ts", |
| 80 | + "allowNetworks": [ |
| 81 | + "a.google.com" |
| 82 | + ], |
| 83 | + "accepts": [ |
| 84 | + "appaction.call" |
| 85 | + ] |
23 | 86 | } |
24 | 87 | ], |
25 | 88 | "actions": [ |
|
0 commit comments