generated from iansan5653/gas-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appsscript.json
50 lines (50 loc) · 1.19 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
{
"exceptionLogging": "STACKDRIVER",
"runtimeVersion": "V8",
"timeZone": "America/New_York",
"dependencies": {
"enabledAdvancedServices": [
{
"userSymbol": "Calendar",
"version": "v3",
"serviceId": "calendar"
},
{
"userSymbol": "People",
"version": "v1",
"serviceId": "peopleapi"
}
]
},
"oauthScopes": [
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/calendar.addons.execute",
"https://www.googleapis.com/auth/script.scriptapp",
"https://www.googleapis.com/auth/directory.readonly"
],
"addOns": {
"common": {
"name": "Vacation Calendar",
"logoUrl": "https://iansan5653.github.io/vacation-calendar-addon/logo.png",
"universalActions": [
{
"label": "New team calendar",
"runFunction": "onStartUpdateCalendar"
},
{
"label": "Help",
"runFunction": "onGoHelp"
}
],
"layoutProperties": {
"primaryColor": "#dcecf6",
"secondaryColor": "#00748d"
}
},
"calendar": {
"homepageTrigger": {
"runFunction": "onGetHomepage"
}
}
}
}