@maxim_mazurok/gapi.client.firebaseappdistribution-v1 0.1.20260318 → 0.2.20260318
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 +111 -82
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -64,7 +64,12 @@ declare namespace gapi.client {
|
|
|
64
64
|
/** Path to the data, set if reference_type is PATH */
|
|
65
65
|
path?: string;
|
|
66
66
|
/** Describes what the field reference contains. */
|
|
67
|
-
referenceType?:
|
|
67
|
+
referenceType?:
|
|
68
|
+
| 'PATH'
|
|
69
|
+
| 'BLOB_REF'
|
|
70
|
+
| 'INLINE'
|
|
71
|
+
| 'BIGSTORE_REF'
|
|
72
|
+
| 'COSMO_BINARY_REFERENCE';
|
|
68
73
|
/** SHA-1 hash for the payload. */
|
|
69
74
|
sha1Hash?: string;
|
|
70
75
|
}
|
|
@@ -174,7 +179,20 @@ declare namespace gapi.client {
|
|
|
174
179
|
/** Path to the data, set if reference_type is PATH */
|
|
175
180
|
path?: string;
|
|
176
181
|
/** Describes what the field reference contains. */
|
|
177
|
-
referenceType?:
|
|
182
|
+
referenceType?:
|
|
183
|
+
| 'PATH'
|
|
184
|
+
| 'BLOB_REF'
|
|
185
|
+
| 'INLINE'
|
|
186
|
+
| 'GET_MEDIA'
|
|
187
|
+
| 'COMPOSITE_MEDIA'
|
|
188
|
+
| 'BIGSTORE_REF'
|
|
189
|
+
| 'DIFF_VERSION_RESPONSE'
|
|
190
|
+
| 'DIFF_CHECKSUMS_RESPONSE'
|
|
191
|
+
| 'DIFF_DOWNLOAD_RESPONSE'
|
|
192
|
+
| 'DIFF_UPLOAD_REQUEST'
|
|
193
|
+
| 'DIFF_UPLOAD_RESPONSE'
|
|
194
|
+
| 'COSMO_BINARY_REFERENCE'
|
|
195
|
+
| 'ARBITRARY_BYTES';
|
|
178
196
|
/** Scotty-provided SHA1 hash for an upload. */
|
|
179
197
|
sha1Hash?: string;
|
|
180
198
|
/** Scotty-provided SHA256 hash for an upload. */
|
|
@@ -194,7 +212,14 @@ declare namespace gapi.client {
|
|
|
194
212
|
}
|
|
195
213
|
interface GoogleFirebaseAppdistroV1AabInfo {
|
|
196
214
|
/** App bundle integration state. Only valid for android apps. */
|
|
197
|
-
integrationState?:
|
|
215
|
+
integrationState?:
|
|
216
|
+
| 'AAB_INTEGRATION_STATE_UNSPECIFIED'
|
|
217
|
+
| 'INTEGRATED'
|
|
218
|
+
| 'PLAY_ACCOUNT_NOT_LINKED'
|
|
219
|
+
| 'NO_APP_WITH_GIVEN_BUNDLE_ID_IN_PLAY_ACCOUNT'
|
|
220
|
+
| 'APP_NOT_PUBLISHED'
|
|
221
|
+
| 'AAB_STATE_UNAVAILABLE'
|
|
222
|
+
| 'PLAY_IAS_TERMS_NOT_ACCEPTED';
|
|
198
223
|
/** The name of the `AabInfo` resource. Format: `projects/{project_number}/apps/{app}/aabInfo` */
|
|
199
224
|
name?: string;
|
|
200
225
|
/** App bundle test certificate generated for the app. Set after the first app bundle is uploaded for this app. */
|
|
@@ -340,7 +365,11 @@ declare namespace gapi.client {
|
|
|
340
365
|
/** Release associated with the uploaded binary. */
|
|
341
366
|
release?: GoogleFirebaseAppdistroV1Release;
|
|
342
367
|
/** Result of upload release. */
|
|
343
|
-
result?:
|
|
368
|
+
result?:
|
|
369
|
+
| 'UPLOAD_RELEASE_RESULT_UNSPECIFIED'
|
|
370
|
+
| 'RELEASE_CREATED'
|
|
371
|
+
| 'RELEASE_UPDATED'
|
|
372
|
+
| 'RELEASE_UNMODIFIED';
|
|
344
373
|
}
|
|
345
374
|
interface GoogleLongrunningCancelOperationRequest {}
|
|
346
375
|
interface GoogleLongrunningListOperationsResponse {
|
|
@@ -380,11 +409,11 @@ declare namespace gapi.client {
|
|
|
380
409
|
/** Uploads a binary. Uploading a binary can result in a new release being created, an update to an existing release, or a no-op if a release with the same binary already exists. */
|
|
381
410
|
upload(request: {
|
|
382
411
|
/** V1 error format. */
|
|
383
|
-
'$.xgafv'?:
|
|
412
|
+
'$.xgafv'?: '1' | '2';
|
|
384
413
|
/** OAuth access token. */
|
|
385
414
|
access_token?: string;
|
|
386
415
|
/** Data format for response. */
|
|
387
|
-
alt?:
|
|
416
|
+
alt?: 'json' | 'media' | 'proto';
|
|
388
417
|
/** Required. The name of the app resource. Format: `projects/{project_number}/apps/{app}` */
|
|
389
418
|
app: string;
|
|
390
419
|
/** JSONP */
|
|
@@ -409,11 +438,11 @@ declare namespace gapi.client {
|
|
|
409
438
|
upload(
|
|
410
439
|
request: {
|
|
411
440
|
/** V1 error format. */
|
|
412
|
-
'$.xgafv'?:
|
|
441
|
+
'$.xgafv'?: '1' | '2';
|
|
413
442
|
/** OAuth access token. */
|
|
414
443
|
access_token?: string;
|
|
415
444
|
/** Data format for response. */
|
|
416
|
-
alt?:
|
|
445
|
+
alt?: 'json' | 'media' | 'proto';
|
|
417
446
|
/** Required. The name of the app resource. Format: `projects/{project_number}/apps/{app}` */
|
|
418
447
|
app: string;
|
|
419
448
|
/** JSONP */
|
|
@@ -440,11 +469,11 @@ declare namespace gapi.client {
|
|
|
440
469
|
/** Deletes a feedback report. */
|
|
441
470
|
delete(request?: {
|
|
442
471
|
/** V1 error format. */
|
|
443
|
-
'$.xgafv'?:
|
|
472
|
+
'$.xgafv'?: '1' | '2';
|
|
444
473
|
/** OAuth access token. */
|
|
445
474
|
access_token?: string;
|
|
446
475
|
/** Data format for response. */
|
|
447
|
-
alt?:
|
|
476
|
+
alt?: 'json' | 'media' | 'proto';
|
|
448
477
|
/** JSONP */
|
|
449
478
|
callback?: string;
|
|
450
479
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -467,11 +496,11 @@ declare namespace gapi.client {
|
|
|
467
496
|
/** Gets a feedback report. */
|
|
468
497
|
get(request?: {
|
|
469
498
|
/** V1 error format. */
|
|
470
|
-
'$.xgafv'?:
|
|
499
|
+
'$.xgafv'?: '1' | '2';
|
|
471
500
|
/** OAuth access token. */
|
|
472
501
|
access_token?: string;
|
|
473
502
|
/** Data format for response. */
|
|
474
|
-
alt?:
|
|
503
|
+
alt?: 'json' | 'media' | 'proto';
|
|
475
504
|
/** JSONP */
|
|
476
505
|
callback?: string;
|
|
477
506
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -494,11 +523,11 @@ declare namespace gapi.client {
|
|
|
494
523
|
/** Lists feedback reports. By default, sorts by `createTime` in descending order. */
|
|
495
524
|
list(request?: {
|
|
496
525
|
/** V1 error format. */
|
|
497
|
-
'$.xgafv'?:
|
|
526
|
+
'$.xgafv'?: '1' | '2';
|
|
498
527
|
/** OAuth access token. */
|
|
499
528
|
access_token?: string;
|
|
500
529
|
/** Data format for response. */
|
|
501
|
-
alt?:
|
|
530
|
+
alt?: 'json' | 'media' | 'proto';
|
|
502
531
|
/** JSONP */
|
|
503
532
|
callback?: string;
|
|
504
533
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -527,11 +556,11 @@ declare namespace gapi.client {
|
|
|
527
556
|
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
528
557
|
cancel(request: {
|
|
529
558
|
/** V1 error format. */
|
|
530
|
-
'$.xgafv'?:
|
|
559
|
+
'$.xgafv'?: '1' | '2';
|
|
531
560
|
/** OAuth access token. */
|
|
532
561
|
access_token?: string;
|
|
533
562
|
/** Data format for response. */
|
|
534
|
-
alt?:
|
|
563
|
+
alt?: 'json' | 'media' | 'proto';
|
|
535
564
|
/** JSONP */
|
|
536
565
|
callback?: string;
|
|
537
566
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -556,11 +585,11 @@ declare namespace gapi.client {
|
|
|
556
585
|
cancel(
|
|
557
586
|
request: {
|
|
558
587
|
/** V1 error format. */
|
|
559
|
-
'$.xgafv'?:
|
|
588
|
+
'$.xgafv'?: '1' | '2';
|
|
560
589
|
/** OAuth access token. */
|
|
561
590
|
access_token?: string;
|
|
562
591
|
/** Data format for response. */
|
|
563
|
-
alt?:
|
|
592
|
+
alt?: 'json' | 'media' | 'proto';
|
|
564
593
|
/** JSONP */
|
|
565
594
|
callback?: string;
|
|
566
595
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -585,11 +614,11 @@ declare namespace gapi.client {
|
|
|
585
614
|
/** Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. */
|
|
586
615
|
delete(request?: {
|
|
587
616
|
/** V1 error format. */
|
|
588
|
-
'$.xgafv'?:
|
|
617
|
+
'$.xgafv'?: '1' | '2';
|
|
589
618
|
/** OAuth access token. */
|
|
590
619
|
access_token?: string;
|
|
591
620
|
/** Data format for response. */
|
|
592
|
-
alt?:
|
|
621
|
+
alt?: 'json' | 'media' | 'proto';
|
|
593
622
|
/** JSONP */
|
|
594
623
|
callback?: string;
|
|
595
624
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -612,11 +641,11 @@ declare namespace gapi.client {
|
|
|
612
641
|
/** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
|
|
613
642
|
get(request?: {
|
|
614
643
|
/** V1 error format. */
|
|
615
|
-
'$.xgafv'?:
|
|
644
|
+
'$.xgafv'?: '1' | '2';
|
|
616
645
|
/** OAuth access token. */
|
|
617
646
|
access_token?: string;
|
|
618
647
|
/** Data format for response. */
|
|
619
|
-
alt?:
|
|
648
|
+
alt?: 'json' | 'media' | 'proto';
|
|
620
649
|
/** JSONP */
|
|
621
650
|
callback?: string;
|
|
622
651
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -639,11 +668,11 @@ declare namespace gapi.client {
|
|
|
639
668
|
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
640
669
|
list(request?: {
|
|
641
670
|
/** V1 error format. */
|
|
642
|
-
'$.xgafv'?:
|
|
671
|
+
'$.xgafv'?: '1' | '2';
|
|
643
672
|
/** OAuth access token. */
|
|
644
673
|
access_token?: string;
|
|
645
674
|
/** Data format for response. */
|
|
646
|
-
alt?:
|
|
675
|
+
alt?: 'json' | 'media' | 'proto';
|
|
647
676
|
/** JSONP */
|
|
648
677
|
callback?: string;
|
|
649
678
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -674,11 +703,11 @@ declare namespace gapi.client {
|
|
|
674
703
|
/** Waits until the specified long-running operation is done or reaches at most a specified timeout, returning the latest state. If the operation is already done, the latest state is immediately returned. If the timeout specified is greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If the server does not support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return the latest state before the specified timeout (including immediately), meaning even an immediate response is no guarantee that the operation is done. */
|
|
675
704
|
wait(request: {
|
|
676
705
|
/** V1 error format. */
|
|
677
|
-
'$.xgafv'?:
|
|
706
|
+
'$.xgafv'?: '1' | '2';
|
|
678
707
|
/** OAuth access token. */
|
|
679
708
|
access_token?: string;
|
|
680
709
|
/** Data format for response. */
|
|
681
|
-
alt?:
|
|
710
|
+
alt?: 'json' | 'media' | 'proto';
|
|
682
711
|
/** JSONP */
|
|
683
712
|
callback?: string;
|
|
684
713
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -703,11 +732,11 @@ declare namespace gapi.client {
|
|
|
703
732
|
wait(
|
|
704
733
|
request: {
|
|
705
734
|
/** V1 error format. */
|
|
706
|
-
'$.xgafv'?:
|
|
735
|
+
'$.xgafv'?: '1' | '2';
|
|
707
736
|
/** OAuth access token. */
|
|
708
737
|
access_token?: string;
|
|
709
738
|
/** Data format for response. */
|
|
710
|
-
alt?:
|
|
739
|
+
alt?: 'json' | 'media' | 'proto';
|
|
711
740
|
/** JSONP */
|
|
712
741
|
callback?: string;
|
|
713
742
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -734,11 +763,11 @@ declare namespace gapi.client {
|
|
|
734
763
|
/** Deletes releases. A maximum of 100 releases can be deleted per request. */
|
|
735
764
|
batchDelete(request: {
|
|
736
765
|
/** V1 error format. */
|
|
737
|
-
'$.xgafv'?:
|
|
766
|
+
'$.xgafv'?: '1' | '2';
|
|
738
767
|
/** OAuth access token. */
|
|
739
768
|
access_token?: string;
|
|
740
769
|
/** Data format for response. */
|
|
741
|
-
alt?:
|
|
770
|
+
alt?: 'json' | 'media' | 'proto';
|
|
742
771
|
/** JSONP */
|
|
743
772
|
callback?: string;
|
|
744
773
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -763,11 +792,11 @@ declare namespace gapi.client {
|
|
|
763
792
|
batchDelete(
|
|
764
793
|
request: {
|
|
765
794
|
/** V1 error format. */
|
|
766
|
-
'$.xgafv'?:
|
|
795
|
+
'$.xgafv'?: '1' | '2';
|
|
767
796
|
/** OAuth access token. */
|
|
768
797
|
access_token?: string;
|
|
769
798
|
/** Data format for response. */
|
|
770
|
-
alt?:
|
|
799
|
+
alt?: 'json' | 'media' | 'proto';
|
|
771
800
|
/** JSONP */
|
|
772
801
|
callback?: string;
|
|
773
802
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -792,11 +821,11 @@ declare namespace gapi.client {
|
|
|
792
821
|
/** Distributes a release to testers. This call does the following: 1. Creates testers for the specified emails, if none exist. 2. Adds the testers and groups to the release. 3. Sends new testers an invitation email. 4. Sends existing testers a new release email. The request will fail with a `INVALID_ARGUMENT` if it contains a group that doesn't exist. */
|
|
793
822
|
distribute(request: {
|
|
794
823
|
/** V1 error format. */
|
|
795
|
-
'$.xgafv'?:
|
|
824
|
+
'$.xgafv'?: '1' | '2';
|
|
796
825
|
/** OAuth access token. */
|
|
797
826
|
access_token?: string;
|
|
798
827
|
/** Data format for response. */
|
|
799
|
-
alt?:
|
|
828
|
+
alt?: 'json' | 'media' | 'proto';
|
|
800
829
|
/** JSONP */
|
|
801
830
|
callback?: string;
|
|
802
831
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -821,11 +850,11 @@ declare namespace gapi.client {
|
|
|
821
850
|
distribute(
|
|
822
851
|
request: {
|
|
823
852
|
/** V1 error format. */
|
|
824
|
-
'$.xgafv'?:
|
|
853
|
+
'$.xgafv'?: '1' | '2';
|
|
825
854
|
/** OAuth access token. */
|
|
826
855
|
access_token?: string;
|
|
827
856
|
/** Data format for response. */
|
|
828
|
-
alt?:
|
|
857
|
+
alt?: 'json' | 'media' | 'proto';
|
|
829
858
|
/** JSONP */
|
|
830
859
|
callback?: string;
|
|
831
860
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -850,11 +879,11 @@ declare namespace gapi.client {
|
|
|
850
879
|
/** Gets a release. */
|
|
851
880
|
get(request?: {
|
|
852
881
|
/** V1 error format. */
|
|
853
|
-
'$.xgafv'?:
|
|
882
|
+
'$.xgafv'?: '1' | '2';
|
|
854
883
|
/** OAuth access token. */
|
|
855
884
|
access_token?: string;
|
|
856
885
|
/** Data format for response. */
|
|
857
|
-
alt?:
|
|
886
|
+
alt?: 'json' | 'media' | 'proto';
|
|
858
887
|
/** JSONP */
|
|
859
888
|
callback?: string;
|
|
860
889
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -877,11 +906,11 @@ declare namespace gapi.client {
|
|
|
877
906
|
/** Lists releases. By default, sorts by `createTime` in descending order. */
|
|
878
907
|
list(request?: {
|
|
879
908
|
/** V1 error format. */
|
|
880
|
-
'$.xgafv'?:
|
|
909
|
+
'$.xgafv'?: '1' | '2';
|
|
881
910
|
/** OAuth access token. */
|
|
882
911
|
access_token?: string;
|
|
883
912
|
/** Data format for response. */
|
|
884
|
-
alt?:
|
|
913
|
+
alt?: 'json' | 'media' | 'proto';
|
|
885
914
|
/** JSONP */
|
|
886
915
|
callback?: string;
|
|
887
916
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -912,11 +941,11 @@ declare namespace gapi.client {
|
|
|
912
941
|
/** Updates a release. */
|
|
913
942
|
patch(request: {
|
|
914
943
|
/** V1 error format. */
|
|
915
|
-
'$.xgafv'?:
|
|
944
|
+
'$.xgafv'?: '1' | '2';
|
|
916
945
|
/** OAuth access token. */
|
|
917
946
|
access_token?: string;
|
|
918
947
|
/** Data format for response. */
|
|
919
|
-
alt?:
|
|
948
|
+
alt?: 'json' | 'media' | 'proto';
|
|
920
949
|
/** JSONP */
|
|
921
950
|
callback?: string;
|
|
922
951
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -943,11 +972,11 @@ declare namespace gapi.client {
|
|
|
943
972
|
patch(
|
|
944
973
|
request: {
|
|
945
974
|
/** V1 error format. */
|
|
946
|
-
'$.xgafv'?:
|
|
975
|
+
'$.xgafv'?: '1' | '2';
|
|
947
976
|
/** OAuth access token. */
|
|
948
977
|
access_token?: string;
|
|
949
978
|
/** Data format for response. */
|
|
950
|
-
alt?:
|
|
979
|
+
alt?: 'json' | 'media' | 'proto';
|
|
951
980
|
/** JSONP */
|
|
952
981
|
callback?: string;
|
|
953
982
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -978,11 +1007,11 @@ declare namespace gapi.client {
|
|
|
978
1007
|
/** Gets Android App Bundle (AAB) information for a Firebase app. */
|
|
979
1008
|
getAabInfo(request?: {
|
|
980
1009
|
/** V1 error format. */
|
|
981
|
-
'$.xgafv'?:
|
|
1010
|
+
'$.xgafv'?: '1' | '2';
|
|
982
1011
|
/** OAuth access token. */
|
|
983
1012
|
access_token?: string;
|
|
984
1013
|
/** Data format for response. */
|
|
985
|
-
alt?:
|
|
1014
|
+
alt?: 'json' | 'media' | 'proto';
|
|
986
1015
|
/** JSONP */
|
|
987
1016
|
callback?: string;
|
|
988
1017
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1008,11 +1037,11 @@ declare namespace gapi.client {
|
|
|
1008
1037
|
/** Batch adds members to a group. The testers will gain access to all releases that the groups have access to. */
|
|
1009
1038
|
batchJoin(request: {
|
|
1010
1039
|
/** V1 error format. */
|
|
1011
|
-
'$.xgafv'?:
|
|
1040
|
+
'$.xgafv'?: '1' | '2';
|
|
1012
1041
|
/** OAuth access token. */
|
|
1013
1042
|
access_token?: string;
|
|
1014
1043
|
/** Data format for response. */
|
|
1015
|
-
alt?:
|
|
1044
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1016
1045
|
/** JSONP */
|
|
1017
1046
|
callback?: string;
|
|
1018
1047
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1037,11 +1066,11 @@ declare namespace gapi.client {
|
|
|
1037
1066
|
batchJoin(
|
|
1038
1067
|
request: {
|
|
1039
1068
|
/** V1 error format. */
|
|
1040
|
-
'$.xgafv'?:
|
|
1069
|
+
'$.xgafv'?: '1' | '2';
|
|
1041
1070
|
/** OAuth access token. */
|
|
1042
1071
|
access_token?: string;
|
|
1043
1072
|
/** Data format for response. */
|
|
1044
|
-
alt?:
|
|
1073
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1045
1074
|
/** JSONP */
|
|
1046
1075
|
callback?: string;
|
|
1047
1076
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1066,11 +1095,11 @@ declare namespace gapi.client {
|
|
|
1066
1095
|
/** Batch removed members from a group. The testers will lose access to all releases that the groups have access to. */
|
|
1067
1096
|
batchLeave(request: {
|
|
1068
1097
|
/** V1 error format. */
|
|
1069
|
-
'$.xgafv'?:
|
|
1098
|
+
'$.xgafv'?: '1' | '2';
|
|
1070
1099
|
/** OAuth access token. */
|
|
1071
1100
|
access_token?: string;
|
|
1072
1101
|
/** Data format for response. */
|
|
1073
|
-
alt?:
|
|
1102
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1074
1103
|
/** JSONP */
|
|
1075
1104
|
callback?: string;
|
|
1076
1105
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1095,11 +1124,11 @@ declare namespace gapi.client {
|
|
|
1095
1124
|
batchLeave(
|
|
1096
1125
|
request: {
|
|
1097
1126
|
/** V1 error format. */
|
|
1098
|
-
'$.xgafv'?:
|
|
1127
|
+
'$.xgafv'?: '1' | '2';
|
|
1099
1128
|
/** OAuth access token. */
|
|
1100
1129
|
access_token?: string;
|
|
1101
1130
|
/** Data format for response. */
|
|
1102
|
-
alt?:
|
|
1131
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1103
1132
|
/** JSONP */
|
|
1104
1133
|
callback?: string;
|
|
1105
1134
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1124,11 +1153,11 @@ declare namespace gapi.client {
|
|
|
1124
1153
|
/** Create a group. */
|
|
1125
1154
|
create(request: {
|
|
1126
1155
|
/** V1 error format. */
|
|
1127
|
-
'$.xgafv'?:
|
|
1156
|
+
'$.xgafv'?: '1' | '2';
|
|
1128
1157
|
/** OAuth access token. */
|
|
1129
1158
|
access_token?: string;
|
|
1130
1159
|
/** Data format for response. */
|
|
1131
|
-
alt?:
|
|
1160
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1132
1161
|
/** JSONP */
|
|
1133
1162
|
callback?: string;
|
|
1134
1163
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1155,11 +1184,11 @@ declare namespace gapi.client {
|
|
|
1155
1184
|
create(
|
|
1156
1185
|
request: {
|
|
1157
1186
|
/** V1 error format. */
|
|
1158
|
-
'$.xgafv'?:
|
|
1187
|
+
'$.xgafv'?: '1' | '2';
|
|
1159
1188
|
/** OAuth access token. */
|
|
1160
1189
|
access_token?: string;
|
|
1161
1190
|
/** Data format for response. */
|
|
1162
|
-
alt?:
|
|
1191
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1163
1192
|
/** JSONP */
|
|
1164
1193
|
callback?: string;
|
|
1165
1194
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1186,11 +1215,11 @@ declare namespace gapi.client {
|
|
|
1186
1215
|
/** Delete a group. */
|
|
1187
1216
|
delete(request?: {
|
|
1188
1217
|
/** V1 error format. */
|
|
1189
|
-
'$.xgafv'?:
|
|
1218
|
+
'$.xgafv'?: '1' | '2';
|
|
1190
1219
|
/** OAuth access token. */
|
|
1191
1220
|
access_token?: string;
|
|
1192
1221
|
/** Data format for response. */
|
|
1193
|
-
alt?:
|
|
1222
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1194
1223
|
/** JSONP */
|
|
1195
1224
|
callback?: string;
|
|
1196
1225
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1213,11 +1242,11 @@ declare namespace gapi.client {
|
|
|
1213
1242
|
/** Get a group. */
|
|
1214
1243
|
get(request?: {
|
|
1215
1244
|
/** V1 error format. */
|
|
1216
|
-
'$.xgafv'?:
|
|
1245
|
+
'$.xgafv'?: '1' | '2';
|
|
1217
1246
|
/** OAuth access token. */
|
|
1218
1247
|
access_token?: string;
|
|
1219
1248
|
/** Data format for response. */
|
|
1220
|
-
alt?:
|
|
1249
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1221
1250
|
/** JSONP */
|
|
1222
1251
|
callback?: string;
|
|
1223
1252
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1240,11 +1269,11 @@ declare namespace gapi.client {
|
|
|
1240
1269
|
/** List groups. */
|
|
1241
1270
|
list(request?: {
|
|
1242
1271
|
/** V1 error format. */
|
|
1243
|
-
'$.xgafv'?:
|
|
1272
|
+
'$.xgafv'?: '1' | '2';
|
|
1244
1273
|
/** OAuth access token. */
|
|
1245
1274
|
access_token?: string;
|
|
1246
1275
|
/** Data format for response. */
|
|
1247
|
-
alt?:
|
|
1276
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1248
1277
|
/** JSONP */
|
|
1249
1278
|
callback?: string;
|
|
1250
1279
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1271,11 +1300,11 @@ declare namespace gapi.client {
|
|
|
1271
1300
|
/** Update a group. */
|
|
1272
1301
|
patch(request: {
|
|
1273
1302
|
/** V1 error format. */
|
|
1274
|
-
'$.xgafv'?:
|
|
1303
|
+
'$.xgafv'?: '1' | '2';
|
|
1275
1304
|
/** OAuth access token. */
|
|
1276
1305
|
access_token?: string;
|
|
1277
1306
|
/** Data format for response. */
|
|
1278
|
-
alt?:
|
|
1307
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1279
1308
|
/** JSONP */
|
|
1280
1309
|
callback?: string;
|
|
1281
1310
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1302,11 +1331,11 @@ declare namespace gapi.client {
|
|
|
1302
1331
|
patch(
|
|
1303
1332
|
request: {
|
|
1304
1333
|
/** V1 error format. */
|
|
1305
|
-
'$.xgafv'?:
|
|
1334
|
+
'$.xgafv'?: '1' | '2';
|
|
1306
1335
|
/** OAuth access token. */
|
|
1307
1336
|
access_token?: string;
|
|
1308
1337
|
/** Data format for response. */
|
|
1309
|
-
alt?:
|
|
1338
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1310
1339
|
/** JSONP */
|
|
1311
1340
|
callback?: string;
|
|
1312
1341
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1335,11 +1364,11 @@ declare namespace gapi.client {
|
|
|
1335
1364
|
/** Batch adds testers. This call adds testers for the specified emails if they don't already exist. Returns all testers specified in the request, including newly created and previously existing testers. This action is idempotent. */
|
|
1336
1365
|
batchAdd(request: {
|
|
1337
1366
|
/** V1 error format. */
|
|
1338
|
-
'$.xgafv'?:
|
|
1367
|
+
'$.xgafv'?: '1' | '2';
|
|
1339
1368
|
/** OAuth access token. */
|
|
1340
1369
|
access_token?: string;
|
|
1341
1370
|
/** Data format for response. */
|
|
1342
|
-
alt?:
|
|
1371
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1343
1372
|
/** JSONP */
|
|
1344
1373
|
callback?: string;
|
|
1345
1374
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1364,11 +1393,11 @@ declare namespace gapi.client {
|
|
|
1364
1393
|
batchAdd(
|
|
1365
1394
|
request: {
|
|
1366
1395
|
/** V1 error format. */
|
|
1367
|
-
'$.xgafv'?:
|
|
1396
|
+
'$.xgafv'?: '1' | '2';
|
|
1368
1397
|
/** OAuth access token. */
|
|
1369
1398
|
access_token?: string;
|
|
1370
1399
|
/** Data format for response. */
|
|
1371
|
-
alt?:
|
|
1400
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1372
1401
|
/** JSONP */
|
|
1373
1402
|
callback?: string;
|
|
1374
1403
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1393,11 +1422,11 @@ declare namespace gapi.client {
|
|
|
1393
1422
|
/** Batch removes testers. If found, this call deletes testers for the specified emails. Returns all deleted testers. */
|
|
1394
1423
|
batchRemove(request: {
|
|
1395
1424
|
/** V1 error format. */
|
|
1396
|
-
'$.xgafv'?:
|
|
1425
|
+
'$.xgafv'?: '1' | '2';
|
|
1397
1426
|
/** OAuth access token. */
|
|
1398
1427
|
access_token?: string;
|
|
1399
1428
|
/** Data format for response. */
|
|
1400
|
-
alt?:
|
|
1429
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1401
1430
|
/** JSONP */
|
|
1402
1431
|
callback?: string;
|
|
1403
1432
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1422,11 +1451,11 @@ declare namespace gapi.client {
|
|
|
1422
1451
|
batchRemove(
|
|
1423
1452
|
request: {
|
|
1424
1453
|
/** V1 error format. */
|
|
1425
|
-
'$.xgafv'?:
|
|
1454
|
+
'$.xgafv'?: '1' | '2';
|
|
1426
1455
|
/** OAuth access token. */
|
|
1427
1456
|
access_token?: string;
|
|
1428
1457
|
/** Data format for response. */
|
|
1429
|
-
alt?:
|
|
1458
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1430
1459
|
/** JSONP */
|
|
1431
1460
|
callback?: string;
|
|
1432
1461
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1451,11 +1480,11 @@ declare namespace gapi.client {
|
|
|
1451
1480
|
/** Lists testers and their resource ids. */
|
|
1452
1481
|
list(request?: {
|
|
1453
1482
|
/** V1 error format. */
|
|
1454
|
-
'$.xgafv'?:
|
|
1483
|
+
'$.xgafv'?: '1' | '2';
|
|
1455
1484
|
/** OAuth access token. */
|
|
1456
1485
|
access_token?: string;
|
|
1457
1486
|
/** Data format for response. */
|
|
1458
|
-
alt?:
|
|
1487
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1459
1488
|
/** JSONP */
|
|
1460
1489
|
callback?: string;
|
|
1461
1490
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1484,11 +1513,11 @@ declare namespace gapi.client {
|
|
|
1484
1513
|
/** Update a tester. If the testers joins a group they gain access to all releases that the group has access to. */
|
|
1485
1514
|
patch(request: {
|
|
1486
1515
|
/** V1 error format. */
|
|
1487
|
-
'$.xgafv'?:
|
|
1516
|
+
'$.xgafv'?: '1' | '2';
|
|
1488
1517
|
/** OAuth access token. */
|
|
1489
1518
|
access_token?: string;
|
|
1490
1519
|
/** Data format for response. */
|
|
1491
|
-
alt?:
|
|
1520
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1492
1521
|
/** JSONP */
|
|
1493
1522
|
callback?: string;
|
|
1494
1523
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1515,11 +1544,11 @@ declare namespace gapi.client {
|
|
|
1515
1544
|
patch(
|
|
1516
1545
|
request: {
|
|
1517
1546
|
/** V1 error format. */
|
|
1518
|
-
'$.xgafv'?:
|
|
1547
|
+
'$.xgafv'?: '1' | '2';
|
|
1519
1548
|
/** OAuth access token. */
|
|
1520
1549
|
access_token?: string;
|
|
1521
1550
|
/** Data format for response. */
|
|
1522
|
-
alt?:
|
|
1551
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1523
1552
|
/** JSONP */
|
|
1524
1553
|
callback?: string;
|
|
1525
1554
|
/** Selector specifying which fields to include in a partial response. */
|