@maxim_mazurok/gapi.client.script-v1 0.2.20260607 → 0.3.20260614
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +5 -20
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://script.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260614
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -62,10 +62,7 @@ declare namespace gapi.client {
|
|
|
62
62
|
addOn?: GoogleAppsScriptTypeAddOnEntryPoint;
|
|
63
63
|
/** The type of the entry point. */
|
|
64
64
|
entryPointType?:
|
|
65
|
-
| '
|
|
66
|
-
| 'WEB_APP'
|
|
67
|
-
| 'EXECUTION_API'
|
|
68
|
-
| 'ADD_ON';
|
|
65
|
+
'ENTRY_POINT_TYPE_UNSPECIFIED' | 'WEB_APP' | 'EXECUTION_API' | 'ADD_ON';
|
|
69
66
|
/** An entry point specification for Apps Script API execution calls. */
|
|
70
67
|
executionApi?: GoogleAppsScriptTypeExecutionApiEntryPoint;
|
|
71
68
|
/** An entry point specification for web apps. */
|
|
@@ -126,11 +123,7 @@ declare namespace gapi.client {
|
|
|
126
123
|
interface GoogleAppsScriptTypeExecutionApiConfig {
|
|
127
124
|
/** Who has permission to run the API executable. */
|
|
128
125
|
access?:
|
|
129
|
-
| '
|
|
130
|
-
| 'MYSELF'
|
|
131
|
-
| 'DOMAIN'
|
|
132
|
-
| 'ANYONE'
|
|
133
|
-
| 'ANYONE_ANONYMOUS';
|
|
126
|
+
'UNKNOWN_ACCESS' | 'MYSELF' | 'DOMAIN' | 'ANYONE' | 'ANYONE_ANONYMOUS';
|
|
134
127
|
}
|
|
135
128
|
interface GoogleAppsScriptTypeExecutionApiEntryPoint {
|
|
136
129
|
/** The entry point's configuration. */
|
|
@@ -183,11 +176,7 @@ declare namespace gapi.client {
|
|
|
183
176
|
startTime?: string;
|
|
184
177
|
/** The executing users access level to the script. */
|
|
185
178
|
userAccessLevel?:
|
|
186
|
-
| '
|
|
187
|
-
| 'NONE'
|
|
188
|
-
| 'READ'
|
|
189
|
-
| 'WRITE'
|
|
190
|
-
| 'OWNER';
|
|
179
|
+
'USER_ACCESS_LEVEL_UNSPECIFIED' | 'NONE' | 'READ' | 'WRITE' | 'OWNER';
|
|
191
180
|
}
|
|
192
181
|
interface GoogleAppsScriptTypeUser {
|
|
193
182
|
/** The user's domain. */
|
|
@@ -202,11 +191,7 @@ declare namespace gapi.client {
|
|
|
202
191
|
interface GoogleAppsScriptTypeWebAppConfig {
|
|
203
192
|
/** Who has permission to run the web app. */
|
|
204
193
|
access?:
|
|
205
|
-
| '
|
|
206
|
-
| 'MYSELF'
|
|
207
|
-
| 'DOMAIN'
|
|
208
|
-
| 'ANYONE'
|
|
209
|
-
| 'ANYONE_ANONYMOUS';
|
|
194
|
+
'UNKNOWN_ACCESS' | 'MYSELF' | 'DOMAIN' | 'ANYONE' | 'ANYONE_ANONYMOUS';
|
|
210
195
|
/** Who to execute the web app as. */
|
|
211
196
|
executeAs?: 'UNKNOWN_EXECUTE_AS' | 'USER_ACCESSING' | 'USER_DEPLOYING';
|
|
212
197
|
}
|