-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathappsscript.json
54 lines (54 loc) · 1.51 KB
/
appsscript.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"timeZone": "America/New_York",
"dependencies": {
"libraries": [{
"userSymbol": "OAuth2",
"libraryId": "1B7FSrk5Zi6L1rSxxTDgDEUsPzlukDsi4KGuTMorsTQHhGBzBkMun4iDF",
"version": "21"
}]
},
"exceptionLogging": "CLOUD",
"oauthScopes": [
"https://www.googleapis.com/auth/script.storage",
"https://www.googleapis.com/auth/gmail.addons.execute",
"https://www.googleapis.com/auth/gmail.addons.current.message.readonly",
"https://www.googleapis.com/auth/script.external_request",
"https://www.googleapis.com/auth/gmail.addons.current.action.compose",
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/gmail.addons.current.message.metadata"
],
"gmail": {
"name": "Nuxeo",
"logoUrl": "https://jira.nuxeo.com/secure/attachment/65119/NUXEO-X-2.jpg",
"composeTrigger": {
"selectActions": [
{
"text": "Add documents from Nuxeo",
"runFunction": "attachDocToComposeUI"
}
],
"draftAccess": "METADATA"
},
"contextualTriggers": [{
"unconditional": {
},
"onTriggerFunction": "getContextualAddOn"
}],
"universalActions": [{
"text": "Open Nuxeo",
"runFunction": "openNuxeo"
},{
"text": "Disconnect",
"runFunction": "disconnect"
}],
"openLinkUrlPrefixes": [
"*"
],
"primaryColor": "#315df6"
},
"urlFetchWhitelist": [
"https://*.nuxeo.com/",
"https://*.nuxeocloud.com/",
"https://*.cloud.nuxeo.com/"
]
}