@maxim_mazurok/gapi.client.script-v1 0.1.20260308 → 0.2.20260308

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.
Files changed (2) hide show
  1. package/index.d.ts +212 -61
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -61,7 +61,11 @@ declare namespace gapi.client {
61
61
  /** Add-on properties. */
62
62
  addOn?: GoogleAppsScriptTypeAddOnEntryPoint;
63
63
  /** The type of the entry point. */
64
- entryPointType?: string;
64
+ entryPointType?:
65
+ | 'ENTRY_POINT_TYPE_UNSPECIFIED'
66
+ | 'WEB_APP'
67
+ | 'EXECUTION_API'
68
+ | 'ADD_ON';
65
69
  /** An entry point specification for Apps Script API execution calls. */
66
70
  executionApi?: GoogleAppsScriptTypeExecutionApiEntryPoint;
67
71
  /** An entry point specification for web apps. */
@@ -101,13 +105,13 @@ declare namespace gapi.client {
101
105
  /** The file content. */
102
106
  source?: string;
103
107
  /** The type of the file. */
104
- type?: string;
108
+ type?: 'ENUM_TYPE_UNSPECIFIED' | 'SERVER_JS' | 'HTML' | 'JSON';
105
109
  /** Last modified date timestamp. */
106
110
  updateTime?: string;
107
111
  }
108
112
  interface GoogleAppsScriptTypeAddOnEntryPoint {
109
113
  /** The add-on's required list of supported container types. */
110
- addOnType?: string;
114
+ addOnType?: 'UNKNOWN_ADDON_TYPE' | 'GMAIL' | 'DATA_STUDIO';
111
115
  /** The add-on's optional description. */
112
116
  description?: string;
113
117
  /** The add-on's optional help URL. */
@@ -121,7 +125,12 @@ declare namespace gapi.client {
121
125
  }
122
126
  interface GoogleAppsScriptTypeExecutionApiConfig {
123
127
  /** Who has permission to run the API executable. */
124
- access?: string;
128
+ access?:
129
+ | 'UNKNOWN_ACCESS'
130
+ | 'MYSELF'
131
+ | 'DOMAIN'
132
+ | 'ANYONE'
133
+ | 'ANYONE_ANONYMOUS';
125
134
  }
126
135
  interface GoogleAppsScriptTypeExecutionApiEntryPoint {
127
136
  /** The entry point's configuration. */
@@ -143,17 +152,42 @@ declare namespace gapi.client {
143
152
  /** Name of the function the started the execution. */
144
153
  functionName?: string;
145
154
  /** The executions status. */
146
- processStatus?: string;
155
+ processStatus?:
156
+ | 'PROCESS_STATUS_UNSPECIFIED'
157
+ | 'RUNNING'
158
+ | 'PAUSED'
159
+ | 'COMPLETED'
160
+ | 'CANCELED'
161
+ | 'FAILED'
162
+ | 'TIMED_OUT'
163
+ | 'UNKNOWN'
164
+ | 'DELAYED'
165
+ | 'EXECUTION_DISABLED';
147
166
  /** The executions type. */
148
- processType?: string;
167
+ processType?:
168
+ | 'PROCESS_TYPE_UNSPECIFIED'
169
+ | 'ADD_ON'
170
+ | 'EXECUTION_API'
171
+ | 'TIME_DRIVEN'
172
+ | 'TRIGGER'
173
+ | 'WEBAPP'
174
+ | 'EDITOR'
175
+ | 'SIMPLE_TRIGGER'
176
+ | 'MENU'
177
+ | 'BATCH_TASK';
149
178
  /** Name of the script being executed. */
150
179
  projectName?: string;
151
180
  /** Which version of maestro to use to execute the script. */
152
- runtimeVersion?: string;
181
+ runtimeVersion?: 'RUNTIME_VERSION_UNSPECIFIED' | 'DEPRECATED_ES5' | 'V8';
153
182
  /** Time the execution started. */
154
183
  startTime?: string;
155
184
  /** The executing users access level to the script. */
156
- userAccessLevel?: string;
185
+ userAccessLevel?:
186
+ | 'USER_ACCESS_LEVEL_UNSPECIFIED'
187
+ | 'NONE'
188
+ | 'READ'
189
+ | 'WRITE'
190
+ | 'OWNER';
157
191
  }
158
192
  interface GoogleAppsScriptTypeUser {
159
193
  /** The user's domain. */
@@ -167,9 +201,14 @@ declare namespace gapi.client {
167
201
  }
168
202
  interface GoogleAppsScriptTypeWebAppConfig {
169
203
  /** Who has permission to run the web app. */
170
- access?: string;
204
+ access?:
205
+ | 'UNKNOWN_ACCESS'
206
+ | 'MYSELF'
207
+ | 'DOMAIN'
208
+ | 'ANYONE'
209
+ | 'ANYONE_ANONYMOUS';
171
210
  /** Who to execute the web app as. */
172
- executeAs?: string;
211
+ executeAs?: 'UNKNOWN_EXECUTE_AS' | 'USER_ACCESSING' | 'USER_DEPLOYING';
173
212
  }
174
213
  interface GoogleAppsScriptTypeWebAppEntryPoint {
175
214
  /** The entry point's configuration. */
@@ -273,11 +312,11 @@ declare namespace gapi.client {
273
312
  /** List information about processes made by or on behalf of a user, such as process type and current status. */
274
313
  list(request?: {
275
314
  /** V1 error format. */
276
- '$.xgafv'?: string;
315
+ '$.xgafv'?: '1' | '2';
277
316
  /** OAuth access token. */
278
317
  access_token?: string;
279
318
  /** Data format for response. */
280
- alt?: string;
319
+ alt?: 'json' | 'media' | 'proto';
281
320
  /** JSONP */
282
321
  callback?: string;
283
322
  /** Selector specifying which fields to include in a partial response. */
@@ -311,20 +350,76 @@ declare namespace gapi.client {
311
350
  /** Optional field used to limit returned processes to those that were started on or after the given timestamp. */
312
351
  'userProcessFilter.startTime'?: string;
313
352
  /** Optional field used to limit returned processes to those having one of the specified process statuses. */
314
- 'userProcessFilter.statuses'?: string | string[];
353
+ 'userProcessFilter.statuses'?:
354
+ | 'PROCESS_STATUS_UNSPECIFIED'
355
+ | 'RUNNING'
356
+ | 'PAUSED'
357
+ | 'COMPLETED'
358
+ | 'CANCELED'
359
+ | 'FAILED'
360
+ | 'TIMED_OUT'
361
+ | 'UNKNOWN'
362
+ | 'DELAYED'
363
+ | 'EXECUTION_DISABLED'
364
+ | (
365
+ | 'PROCESS_STATUS_UNSPECIFIED'
366
+ | 'RUNNING'
367
+ | 'PAUSED'
368
+ | 'COMPLETED'
369
+ | 'CANCELED'
370
+ | 'FAILED'
371
+ | 'TIMED_OUT'
372
+ | 'UNKNOWN'
373
+ | 'DELAYED'
374
+ | 'EXECUTION_DISABLED'
375
+ )[];
315
376
  /** Optional field used to limit returned processes to those having one of the specified process types. */
316
- 'userProcessFilter.types'?: string | string[];
377
+ 'userProcessFilter.types'?:
378
+ | 'PROCESS_TYPE_UNSPECIFIED'
379
+ | 'ADD_ON'
380
+ | 'EXECUTION_API'
381
+ | 'TIME_DRIVEN'
382
+ | 'TRIGGER'
383
+ | 'WEBAPP'
384
+ | 'EDITOR'
385
+ | 'SIMPLE_TRIGGER'
386
+ | 'MENU'
387
+ | 'BATCH_TASK'
388
+ | (
389
+ | 'PROCESS_TYPE_UNSPECIFIED'
390
+ | 'ADD_ON'
391
+ | 'EXECUTION_API'
392
+ | 'TIME_DRIVEN'
393
+ | 'TRIGGER'
394
+ | 'WEBAPP'
395
+ | 'EDITOR'
396
+ | 'SIMPLE_TRIGGER'
397
+ | 'MENU'
398
+ | 'BATCH_TASK'
399
+ )[];
317
400
  /** Optional field used to limit returned processes to those having one of the specified user access levels. */
318
- 'userProcessFilter.userAccessLevels'?: string | string[];
401
+ 'userProcessFilter.userAccessLevels'?:
402
+ | 'USER_ACCESS_LEVEL_UNSPECIFIED'
403
+ | 'NONE'
404
+ | 'READ'
405
+ | 'WRITE'
406
+ | 'OWNER'
407
+ | (
408
+ | 'USER_ACCESS_LEVEL_UNSPECIFIED'
409
+ | 'NONE'
410
+ | 'READ'
411
+ | 'WRITE'
412
+ | 'OWNER'
413
+ )[];
319
414
  }): Request<ListUserProcessesResponse>;
320
415
  /** List information about a script's executed processes, such as process type and current status. */
321
416
  listScriptProcesses(request?: {
322
417
  /** V1 error format. */
323
- '$.xgafv'?: string;
418
+ '$.xgafv'?: '1' | '2';
324
419
  /** OAuth access token. */
325
420
  access_token?: string;
326
421
  /** Data format for response. */
327
- alt?: string;
422
+ alt?: 'json' | 'media' | 'proto';
328
423
  /** JSONP */
329
424
  callback?: string;
330
425
  /** Selector specifying which fields to include in a partial response. */
@@ -352,11 +447,67 @@ declare namespace gapi.client {
352
447
  /** Optional field used to limit returned processes to those that were started on or after the given timestamp. */
353
448
  'scriptProcessFilter.startTime'?: string;
354
449
  /** Optional field used to limit returned processes to those having one of the specified process statuses. */
355
- 'scriptProcessFilter.statuses'?: string | string[];
450
+ 'scriptProcessFilter.statuses'?:
451
+ | 'PROCESS_STATUS_UNSPECIFIED'
452
+ | 'RUNNING'
453
+ | 'PAUSED'
454
+ | 'COMPLETED'
455
+ | 'CANCELED'
456
+ | 'FAILED'
457
+ | 'TIMED_OUT'
458
+ | 'UNKNOWN'
459
+ | 'DELAYED'
460
+ | 'EXECUTION_DISABLED'
461
+ | (
462
+ | 'PROCESS_STATUS_UNSPECIFIED'
463
+ | 'RUNNING'
464
+ | 'PAUSED'
465
+ | 'COMPLETED'
466
+ | 'CANCELED'
467
+ | 'FAILED'
468
+ | 'TIMED_OUT'
469
+ | 'UNKNOWN'
470
+ | 'DELAYED'
471
+ | 'EXECUTION_DISABLED'
472
+ )[];
356
473
  /** Optional field used to limit returned processes to those having one of the specified process types. */
357
- 'scriptProcessFilter.types'?: string | string[];
474
+ 'scriptProcessFilter.types'?:
475
+ | 'PROCESS_TYPE_UNSPECIFIED'
476
+ | 'ADD_ON'
477
+ | 'EXECUTION_API'
478
+ | 'TIME_DRIVEN'
479
+ | 'TRIGGER'
480
+ | 'WEBAPP'
481
+ | 'EDITOR'
482
+ | 'SIMPLE_TRIGGER'
483
+ | 'MENU'
484
+ | 'BATCH_TASK'
485
+ | (
486
+ | 'PROCESS_TYPE_UNSPECIFIED'
487
+ | 'ADD_ON'
488
+ | 'EXECUTION_API'
489
+ | 'TIME_DRIVEN'
490
+ | 'TRIGGER'
491
+ | 'WEBAPP'
492
+ | 'EDITOR'
493
+ | 'SIMPLE_TRIGGER'
494
+ | 'MENU'
495
+ | 'BATCH_TASK'
496
+ )[];
358
497
  /** Optional field used to limit returned processes to those having one of the specified user access levels. */
359
- 'scriptProcessFilter.userAccessLevels'?: string | string[];
498
+ 'scriptProcessFilter.userAccessLevels'?:
499
+ | 'USER_ACCESS_LEVEL_UNSPECIFIED'
500
+ | 'NONE'
501
+ | 'READ'
502
+ | 'WRITE'
503
+ | 'OWNER'
504
+ | (
505
+ | 'USER_ACCESS_LEVEL_UNSPECIFIED'
506
+ | 'NONE'
507
+ | 'READ'
508
+ | 'WRITE'
509
+ | 'OWNER'
510
+ )[];
360
511
  /** Upload protocol for media (e.g. "raw", "multipart"). */
361
512
  upload_protocol?: string;
362
513
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -367,11 +518,11 @@ declare namespace gapi.client {
367
518
  /** Creates a deployment of an Apps Script project. */
368
519
  create(request: {
369
520
  /** V1 error format. */
370
- '$.xgafv'?: string;
521
+ '$.xgafv'?: '1' | '2';
371
522
  /** OAuth access token. */
372
523
  access_token?: string;
373
524
  /** Data format for response. */
374
- alt?: string;
525
+ alt?: 'json' | 'media' | 'proto';
375
526
  /** JSONP */
376
527
  callback?: string;
377
528
  /** Selector specifying which fields to include in a partial response. */
@@ -396,11 +547,11 @@ declare namespace gapi.client {
396
547
  create(
397
548
  request: {
398
549
  /** V1 error format. */
399
- '$.xgafv'?: string;
550
+ '$.xgafv'?: '1' | '2';
400
551
  /** OAuth access token. */
401
552
  access_token?: string;
402
553
  /** Data format for response. */
403
- alt?: string;
554
+ alt?: 'json' | 'media' | 'proto';
404
555
  /** JSONP */
405
556
  callback?: string;
406
557
  /** Selector specifying which fields to include in a partial response. */
@@ -425,11 +576,11 @@ declare namespace gapi.client {
425
576
  /** Deletes a deployment of an Apps Script project. */
426
577
  delete(request?: {
427
578
  /** V1 error format. */
428
- '$.xgafv'?: string;
579
+ '$.xgafv'?: '1' | '2';
429
580
  /** OAuth access token. */
430
581
  access_token?: string;
431
582
  /** Data format for response. */
432
- alt?: string;
583
+ alt?: 'json' | 'media' | 'proto';
433
584
  /** JSONP */
434
585
  callback?: string;
435
586
  /** The deployment ID to be undeployed. */
@@ -454,11 +605,11 @@ declare namespace gapi.client {
454
605
  /** Gets a deployment of an Apps Script project. */
455
606
  get(request?: {
456
607
  /** V1 error format. */
457
- '$.xgafv'?: string;
608
+ '$.xgafv'?: '1' | '2';
458
609
  /** OAuth access token. */
459
610
  access_token?: string;
460
611
  /** Data format for response. */
461
- alt?: string;
612
+ alt?: 'json' | 'media' | 'proto';
462
613
  /** JSONP */
463
614
  callback?: string;
464
615
  /** The deployment ID. */
@@ -483,11 +634,11 @@ declare namespace gapi.client {
483
634
  /** Lists the deployments of an Apps Script project. */
484
635
  list(request?: {
485
636
  /** V1 error format. */
486
- '$.xgafv'?: string;
637
+ '$.xgafv'?: '1' | '2';
487
638
  /** OAuth access token. */
488
639
  access_token?: string;
489
640
  /** Data format for response. */
490
- alt?: string;
641
+ alt?: 'json' | 'media' | 'proto';
491
642
  /** JSONP */
492
643
  callback?: string;
493
644
  /** Selector specifying which fields to include in a partial response. */
@@ -514,11 +665,11 @@ declare namespace gapi.client {
514
665
  /** Updates a deployment of an Apps Script project. */
515
666
  update(request: {
516
667
  /** V1 error format. */
517
- '$.xgafv'?: string;
668
+ '$.xgafv'?: '1' | '2';
518
669
  /** OAuth access token. */
519
670
  access_token?: string;
520
671
  /** Data format for response. */
521
- alt?: string;
672
+ alt?: 'json' | 'media' | 'proto';
522
673
  /** JSONP */
523
674
  callback?: string;
524
675
  /** The deployment ID for this deployment. */
@@ -545,11 +696,11 @@ declare namespace gapi.client {
545
696
  update(
546
697
  request: {
547
698
  /** V1 error format. */
548
- '$.xgafv'?: string;
699
+ '$.xgafv'?: '1' | '2';
549
700
  /** OAuth access token. */
550
701
  access_token?: string;
551
702
  /** Data format for response. */
552
- alt?: string;
703
+ alt?: 'json' | 'media' | 'proto';
553
704
  /** JSONP */
554
705
  callback?: string;
555
706
  /** The deployment ID for this deployment. */
@@ -578,11 +729,11 @@ declare namespace gapi.client {
578
729
  /** Creates a new immutable version using the current code, with a unique version number. */
579
730
  create(request: {
580
731
  /** V1 error format. */
581
- '$.xgafv'?: string;
732
+ '$.xgafv'?: '1' | '2';
582
733
  /** OAuth access token. */
583
734
  access_token?: string;
584
735
  /** Data format for response. */
585
- alt?: string;
736
+ alt?: 'json' | 'media' | 'proto';
586
737
  /** JSONP */
587
738
  callback?: string;
588
739
  /** Selector specifying which fields to include in a partial response. */
@@ -607,11 +758,11 @@ declare namespace gapi.client {
607
758
  create(
608
759
  request: {
609
760
  /** V1 error format. */
610
- '$.xgafv'?: string;
761
+ '$.xgafv'?: '1' | '2';
611
762
  /** OAuth access token. */
612
763
  access_token?: string;
613
764
  /** Data format for response. */
614
- alt?: string;
765
+ alt?: 'json' | 'media' | 'proto';
615
766
  /** JSONP */
616
767
  callback?: string;
617
768
  /** Selector specifying which fields to include in a partial response. */
@@ -636,11 +787,11 @@ declare namespace gapi.client {
636
787
  /** Gets a version of a script project. */
637
788
  get(request?: {
638
789
  /** V1 error format. */
639
- '$.xgafv'?: string;
790
+ '$.xgafv'?: '1' | '2';
640
791
  /** OAuth access token. */
641
792
  access_token?: string;
642
793
  /** Data format for response. */
643
- alt?: string;
794
+ alt?: 'json' | 'media' | 'proto';
644
795
  /** JSONP */
645
796
  callback?: string;
646
797
  /** Selector specifying which fields to include in a partial response. */
@@ -665,11 +816,11 @@ declare namespace gapi.client {
665
816
  /** List the versions of a script project. */
666
817
  list(request?: {
667
818
  /** V1 error format. */
668
- '$.xgafv'?: string;
819
+ '$.xgafv'?: '1' | '2';
669
820
  /** OAuth access token. */
670
821
  access_token?: string;
671
822
  /** Data format for response. */
672
- alt?: string;
823
+ alt?: 'json' | 'media' | 'proto';
673
824
  /** JSONP */
674
825
  callback?: string;
675
826
  /** Selector specifying which fields to include in a partial response. */
@@ -698,11 +849,11 @@ declare namespace gapi.client {
698
849
  /** Creates a new, empty script project with no script files and a base manifest file. */
699
850
  create(request: {
700
851
  /** V1 error format. */
701
- '$.xgafv'?: string;
852
+ '$.xgafv'?: '1' | '2';
702
853
  /** OAuth access token. */
703
854
  access_token?: string;
704
855
  /** Data format for response. */
705
- alt?: string;
856
+ alt?: 'json' | 'media' | 'proto';
706
857
  /** JSONP */
707
858
  callback?: string;
708
859
  /** Selector specifying which fields to include in a partial response. */
@@ -725,11 +876,11 @@ declare namespace gapi.client {
725
876
  create(
726
877
  request: {
727
878
  /** V1 error format. */
728
- '$.xgafv'?: string;
879
+ '$.xgafv'?: '1' | '2';
729
880
  /** OAuth access token. */
730
881
  access_token?: string;
731
882
  /** Data format for response. */
732
- alt?: string;
883
+ alt?: 'json' | 'media' | 'proto';
733
884
  /** JSONP */
734
885
  callback?: string;
735
886
  /** Selector specifying which fields to include in a partial response. */
@@ -752,11 +903,11 @@ declare namespace gapi.client {
752
903
  /** Gets a script project's metadata. */
753
904
  get(request?: {
754
905
  /** V1 error format. */
755
- '$.xgafv'?: string;
906
+ '$.xgafv'?: '1' | '2';
756
907
  /** OAuth access token. */
757
908
  access_token?: string;
758
909
  /** Data format for response. */
759
- alt?: string;
910
+ alt?: 'json' | 'media' | 'proto';
760
911
  /** JSONP */
761
912
  callback?: string;
762
913
  /** Selector specifying which fields to include in a partial response. */
@@ -779,11 +930,11 @@ declare namespace gapi.client {
779
930
  /** Gets the content of the script project, including the code source and metadata for each script file. */
780
931
  getContent(request?: {
781
932
  /** V1 error format. */
782
- '$.xgafv'?: string;
933
+ '$.xgafv'?: '1' | '2';
783
934
  /** OAuth access token. */
784
935
  access_token?: string;
785
936
  /** Data format for response. */
786
- alt?: string;
937
+ alt?: 'json' | 'media' | 'proto';
787
938
  /** JSONP */
788
939
  callback?: string;
789
940
  /** Selector specifying which fields to include in a partial response. */
@@ -808,11 +959,11 @@ declare namespace gapi.client {
808
959
  /** Get metrics data for scripts, such as number of executions and active users. */
809
960
  getMetrics(request?: {
810
961
  /** V1 error format. */
811
- '$.xgafv'?: string;
962
+ '$.xgafv'?: '1' | '2';
812
963
  /** OAuth access token. */
813
964
  access_token?: string;
814
965
  /** Data format for response. */
815
- alt?: string;
966
+ alt?: 'json' | 'media' | 'proto';
816
967
  /** JSONP */
817
968
  callback?: string;
818
969
  /** Selector specifying which fields to include in a partial response. */
@@ -822,7 +973,7 @@ declare namespace gapi.client {
822
973
  /** Optional field indicating a specific deployment to retrieve metrics from. */
823
974
  'metricsFilter.deploymentId'?: string;
824
975
  /** Required field indicating what granularity of metrics are returned. */
825
- metricsGranularity?: string;
976
+ metricsGranularity?: 'UNSPECIFIED_GRANULARITY' | 'WEEKLY' | 'DAILY';
826
977
  /** OAuth 2.0 token for the current user. */
827
978
  oauth_token?: string;
828
979
  /** Returns response with indentations and line breaks. */
@@ -839,11 +990,11 @@ declare namespace gapi.client {
839
990
  /** Updates the content of the specified script project. This content is stored as the HEAD version, and is used when the script is executed as a trigger, in the script editor, in add-on preview mode, or as a web app or Apps Script API in development mode. This clears all the existing files in the project. */
840
991
  updateContent(request: {
841
992
  /** V1 error format. */
842
- '$.xgafv'?: string;
993
+ '$.xgafv'?: '1' | '2';
843
994
  /** OAuth access token. */
844
995
  access_token?: string;
845
996
  /** Data format for response. */
846
- alt?: string;
997
+ alt?: 'json' | 'media' | 'proto';
847
998
  /** JSONP */
848
999
  callback?: string;
849
1000
  /** Selector specifying which fields to include in a partial response. */
@@ -868,11 +1019,11 @@ declare namespace gapi.client {
868
1019
  updateContent(
869
1020
  request: {
870
1021
  /** V1 error format. */
871
- '$.xgafv'?: string;
1022
+ '$.xgafv'?: '1' | '2';
872
1023
  /** OAuth access token. */
873
1024
  access_token?: string;
874
1025
  /** Data format for response. */
875
- alt?: string;
1026
+ alt?: 'json' | 'media' | 'proto';
876
1027
  /** JSONP */
877
1028
  callback?: string;
878
1029
  /** Selector specifying which fields to include in a partial response. */
@@ -900,11 +1051,11 @@ declare namespace gapi.client {
900
1051
  interface ScriptsResource {
901
1052
  run(request: {
902
1053
  /** V1 error format. */
903
- '$.xgafv'?: string;
1054
+ '$.xgafv'?: '1' | '2';
904
1055
  /** OAuth access token. */
905
1056
  access_token?: string;
906
1057
  /** Data format for response. */
907
- alt?: string;
1058
+ alt?: 'json' | 'media' | 'proto';
908
1059
  /** JSONP */
909
1060
  callback?: string;
910
1061
  /** Selector specifying which fields to include in a partial response. */
@@ -929,11 +1080,11 @@ declare namespace gapi.client {
929
1080
  run(
930
1081
  request: {
931
1082
  /** V1 error format. */
932
- '$.xgafv'?: string;
1083
+ '$.xgafv'?: '1' | '2';
933
1084
  /** OAuth access token. */
934
1085
  access_token?: string;
935
1086
  /** Data format for response. */
936
- alt?: string;
1087
+ alt?: 'json' | 'media' | 'proto';
937
1088
  /** JSONP */
938
1089
  callback?: string;
939
1090
  /** Selector specifying which fields to include in a partial response. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.script-v1",
3
- "version": "0.1.20260308",
3
+ "version": "0.2.20260308",
4
4
  "description": "TypeScript typings for Apps Script API v1",
5
5
  "repository": {
6
6
  "type": "git",