@maxim_mazurok/gapi.client.firebaseappdistribution-v1alpha 0.1.20260317 → 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 +163 -79
- 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://firebaseappdistribution.googleapis.com/$discovery/rest?version=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260318
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -71,7 +71,13 @@ declare namespace gapi.client {
|
|
|
71
71
|
/** Output only. Details for a goal step. */
|
|
72
72
|
goalDetails?: GoogleFirebaseAppdistroV1alphaGoalDetails;
|
|
73
73
|
/** Output only. The current state of the step */
|
|
74
|
-
state?:
|
|
74
|
+
state?:
|
|
75
|
+
| 'STEP_STATE_UNSPECIFIED'
|
|
76
|
+
| 'IN_PROGRESS'
|
|
77
|
+
| 'PASSED'
|
|
78
|
+
| 'FAILED'
|
|
79
|
+
| 'TIMED_OUT'
|
|
80
|
+
| 'GOAL_ACTION_LIMIT_REACHED';
|
|
75
81
|
/** Required. The step performed by the AI */
|
|
76
82
|
step?: GoogleFirebaseAppdistroV1alphaAiStep;
|
|
77
83
|
}
|
|
@@ -79,7 +85,14 @@ declare namespace gapi.client {
|
|
|
79
85
|
/** App bundle test certificate generated for the app. */
|
|
80
86
|
aabCertificate?: GoogleFirebaseAppdistroV1alphaAabCertificate;
|
|
81
87
|
/** App bundle state. Only valid for android apps. The app_view field in the request must be set to FULL in order for this to be populated. */
|
|
82
|
-
aabState?:
|
|
88
|
+
aabState?:
|
|
89
|
+
| 'AAB_STATE_UNSPECIFIED'
|
|
90
|
+
| 'ACTIVE'
|
|
91
|
+
| 'PLAY_ACCOUNT_NOT_LINKED'
|
|
92
|
+
| 'NO_APP_WITH_GIVEN_BUNDLE_ID_IN_PLAY_ACCOUNT'
|
|
93
|
+
| 'APP_NOT_PUBLISHED'
|
|
94
|
+
| 'AAB_STATE_UNAVAILABLE'
|
|
95
|
+
| 'PLAY_IAS_TERMS_NOT_ACCEPTED';
|
|
83
96
|
/** Firebase gmp app id */
|
|
84
97
|
appId?: string;
|
|
85
98
|
/** Bundle identifier */
|
|
@@ -144,13 +157,35 @@ declare namespace gapi.client {
|
|
|
144
157
|
/** Required. The device that the test was run on. */
|
|
145
158
|
device?: GoogleFirebaseAppdistroV1alphaTestDevice;
|
|
146
159
|
/** Output only. The type of execution for the test. */
|
|
147
|
-
executionType?:
|
|
160
|
+
executionType?:
|
|
161
|
+
| 'EXECUTION_TYPE_UNSPECIFIED'
|
|
162
|
+
| 'AI'
|
|
163
|
+
| 'ACTION_BASED_REPLAY'
|
|
164
|
+
| 'AI_REPLAY'
|
|
165
|
+
| 'RANDOM_CRAWL';
|
|
148
166
|
/** Output only. The reason why the test failed. */
|
|
149
|
-
failedReason?:
|
|
167
|
+
failedReason?:
|
|
168
|
+
| 'FAILED_REASON_UNSPECIFIED'
|
|
169
|
+
| 'CRASHED'
|
|
170
|
+
| 'NOT_INSTALLED'
|
|
171
|
+
| 'UNABLE_TO_CRAWL'
|
|
172
|
+
| 'DEVICE_OUT_OF_MEMORY'
|
|
173
|
+
| 'FAILED_AI_STEP'
|
|
174
|
+
| 'TIMED_OUT';
|
|
150
175
|
/** Output only. Indicates that the test replayed saved actions and concluded without a final AI assertion. */
|
|
151
176
|
finalAiAssertionMissing?: boolean;
|
|
152
177
|
/** Output only. The reason why the test was inconclusive. */
|
|
153
|
-
inconclusiveReason?:
|
|
178
|
+
inconclusiveReason?:
|
|
179
|
+
| 'INCONCLUSIVE_REASON_UNSPECIFIED'
|
|
180
|
+
| 'QUOTA_EXCEEDED'
|
|
181
|
+
| 'INFRASTRUCTURE_FAILURE'
|
|
182
|
+
| 'SERVICE_NOT_ACTIVATED'
|
|
183
|
+
| 'NO_SIGNATURE'
|
|
184
|
+
| 'NO_LAUNCHER_ACTIVITY'
|
|
185
|
+
| 'FORBIDDEN_PERMISSIONS'
|
|
186
|
+
| 'DEVICE_ADMIN_RECEIVER'
|
|
187
|
+
| 'NO_CODE_APK'
|
|
188
|
+
| 'INVALID_APK_PREVIEW_SDK';
|
|
154
189
|
/** Identifier. The name of the device execution resource. Format: `projects/{project_number}/apps/{app}/releases/{release}/tests/{test}/deviceExecutions/{device_execution}` */
|
|
155
190
|
name?: string;
|
|
156
191
|
/** Output only. The device execution from which cached steps were used during this execution. Note: This field is only populated for ACTION_BASED_REPLAY executions. If the original device execution no longer exists, this field will be empty. Format: `projects/{project_number}/apps/{app}/releases/{release}/tests/{test}/deviceExecutions/{device_execution}` */
|
|
@@ -162,7 +197,12 @@ declare namespace gapi.client {
|
|
|
162
197
|
/** Output only. A list of screenshot image URIs taken from the Robo crawl. The file names are numbered by the order in which they were taken. */
|
|
163
198
|
screenshotUris?: string[];
|
|
164
199
|
/** Output only. The state of the test. */
|
|
165
|
-
state?:
|
|
200
|
+
state?:
|
|
201
|
+
| 'TEST_STATE_UNSPECIFIED'
|
|
202
|
+
| 'IN_PROGRESS'
|
|
203
|
+
| 'PASSED'
|
|
204
|
+
| 'FAILED'
|
|
205
|
+
| 'INCONCLUSIVE';
|
|
166
206
|
/** Output only. The time at which the video started recording. */
|
|
167
207
|
videoStartTime?: string;
|
|
168
208
|
/** Output only. A URI to a video of the test run. */
|
|
@@ -234,17 +274,49 @@ declare namespace gapi.client {
|
|
|
234
274
|
}
|
|
235
275
|
interface GoogleFirebaseAppdistroV1alphaGetUploadStatusResponse {
|
|
236
276
|
/** The error code associated with (only set on "FAILURE") */
|
|
237
|
-
errorCode?:
|
|
277
|
+
errorCode?:
|
|
278
|
+
| 'ERROR_UNSPECIFIED'
|
|
279
|
+
| 'INVALID_ZIP'
|
|
280
|
+
| 'MISSING_PLIST'
|
|
281
|
+
| 'MISSING_PROFILE'
|
|
282
|
+
| 'VERSION_TOO_LONG'
|
|
283
|
+
| 'MISSING_UUIDS'
|
|
284
|
+
| 'MISSING_RESOURCES'
|
|
285
|
+
| 'MISSING_MANIFEST'
|
|
286
|
+
| 'IOS_METADATA_ERROR'
|
|
287
|
+
| 'ANDROID_METADATA_ERROR'
|
|
288
|
+
| 'UNSUPPORTED_PLATFORM_TYPE'
|
|
289
|
+
| 'BUNDLE_ID_MISMATCH'
|
|
290
|
+
| 'APK_NOT_ZIP_ALIGNED'
|
|
291
|
+
| 'INVALID_CERTIFICATE'
|
|
292
|
+
| 'APK_TOO_LARGE'
|
|
293
|
+
| 'AAB_NOT_PUBLISHED'
|
|
294
|
+
| 'INVALID_PLIST_DEVICE_FAMILIES'
|
|
295
|
+
| 'AAB_TOS_NOT_ACCEPTED'
|
|
296
|
+
| 'APP_NAME_TOO_LONG'
|
|
297
|
+
| 'AAB_DEVELOPER_ACCOUNT_NOT_LINKED'
|
|
298
|
+
| 'AAB_NO_APP_WITH_GIVEN_PACKAGE_NAME_IN_ACCOUNT'
|
|
299
|
+
| 'AAB_UPLOAD_ERROR'
|
|
300
|
+
| 'APP_NOT_FOUND';
|
|
238
301
|
/** Any additional context for the given upload status (e.g. error message) Meant to be displayed to the client */
|
|
239
302
|
message?: string;
|
|
240
303
|
/** The release that was created from the upload (only set on "SUCCESS") */
|
|
241
304
|
release?: GoogleFirebaseAppdistroV1alphaRelease;
|
|
242
305
|
/** The status of the upload */
|
|
243
|
-
status?:
|
|
306
|
+
status?:
|
|
307
|
+
| 'STATUS_UNSPECIFIED'
|
|
308
|
+
| 'IN_PROGRESS'
|
|
309
|
+
| 'ALREADY_UPLOADED'
|
|
310
|
+
| 'SUCCESS'
|
|
311
|
+
| 'ERROR';
|
|
244
312
|
}
|
|
245
313
|
interface GoogleFirebaseAppdistroV1alphaGoalAction {
|
|
246
314
|
/** Output only. The type of caching used to determine the action. */
|
|
247
|
-
cachingType?:
|
|
315
|
+
cachingType?:
|
|
316
|
+
| 'CACHING_TYPE_UNSPECIFIED'
|
|
317
|
+
| 'NO_CACHING'
|
|
318
|
+
| 'CACHE_AND_MODEL'
|
|
319
|
+
| 'CACHE_ONLY';
|
|
248
320
|
/** Output only. Debug information explaining why the agent to the specific action. */
|
|
249
321
|
debugInfo?: GoogleFirebaseAppdistroV1alphaGoalActionDebugInfo;
|
|
250
322
|
/** Output only. A high level action taken by the AI on the device. */
|
|
@@ -342,7 +414,12 @@ declare namespace gapi.client {
|
|
|
342
414
|
/** Optional. The test case that was used to generate this release test. Note: The test case may have changed or been deleted since the release test was created. Format: `projects/{project_number}/apps/{app}/testCases/{test_case}` */
|
|
343
415
|
testCase?: string;
|
|
344
416
|
/** Output only. The state of the release test. */
|
|
345
|
-
testState?:
|
|
417
|
+
testState?:
|
|
418
|
+
| 'TEST_STATE_UNSPECIFIED'
|
|
419
|
+
| 'IN_PROGRESS'
|
|
420
|
+
| 'PASSED'
|
|
421
|
+
| 'FAILED'
|
|
422
|
+
| 'INCONCLUSIVE';
|
|
346
423
|
}
|
|
347
424
|
interface GoogleFirebaseAppdistroV1alphaRoboCrawler {
|
|
348
425
|
/** Optional. Instructions for AI driven test */
|
|
@@ -370,7 +447,7 @@ declare namespace gapi.client {
|
|
|
370
447
|
}
|
|
371
448
|
interface GoogleFirebaseAppdistroV1alphaTerminalAction {
|
|
372
449
|
/** Output only. The reason why this goal was ended. */
|
|
373
|
-
reason?:
|
|
450
|
+
reason?: 'REASON_UNSPECIFIED' | 'GOAL_IMPOSSIBLE' | 'GOAL_COMPLETE';
|
|
374
451
|
/** Output only. The screenshot used in the context of this terminal action. */
|
|
375
452
|
screenshot?: GoogleFirebaseAppdistroV1alphaScreenshot;
|
|
376
453
|
}
|
|
@@ -461,18 +538,22 @@ declare namespace gapi.client {
|
|
|
461
538
|
/** Release associated with the uploaded binary. */
|
|
462
539
|
release?: GoogleFirebaseAppdistroV1Release;
|
|
463
540
|
/** Result of upload release. */
|
|
464
|
-
result?:
|
|
541
|
+
result?:
|
|
542
|
+
| 'UPLOAD_RELEASE_RESULT_UNSPECIFIED'
|
|
543
|
+
| 'RELEASE_CREATED'
|
|
544
|
+
| 'RELEASE_UPDATED'
|
|
545
|
+
| 'RELEASE_UNMODIFIED';
|
|
465
546
|
}
|
|
466
547
|
interface GoogleProtobufEmpty {}
|
|
467
548
|
interface Release_by_hashResource {
|
|
468
549
|
/** GET Release by binary upload hash */
|
|
469
550
|
get(request?: {
|
|
470
551
|
/** V1 error format. */
|
|
471
|
-
'$.xgafv'?:
|
|
552
|
+
'$.xgafv'?: '1' | '2';
|
|
472
553
|
/** OAuth access token. */
|
|
473
554
|
access_token?: string;
|
|
474
555
|
/** Data format for response. */
|
|
475
|
-
alt?:
|
|
556
|
+
alt?: 'json' | 'media' | 'proto';
|
|
476
557
|
/** JSONP */
|
|
477
558
|
callback?: string;
|
|
478
559
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -499,11 +580,11 @@ declare namespace gapi.client {
|
|
|
499
580
|
/** Create release notes on a release. */
|
|
500
581
|
create(request: {
|
|
501
582
|
/** V1 error format. */
|
|
502
|
-
'$.xgafv'?:
|
|
583
|
+
'$.xgafv'?: '1' | '2';
|
|
503
584
|
/** OAuth access token. */
|
|
504
585
|
access_token?: string;
|
|
505
586
|
/** Data format for response. */
|
|
506
|
-
alt?:
|
|
587
|
+
alt?: 'json' | 'media' | 'proto';
|
|
507
588
|
/** JSONP */
|
|
508
589
|
callback?: string;
|
|
509
590
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -530,11 +611,11 @@ declare namespace gapi.client {
|
|
|
530
611
|
create(
|
|
531
612
|
request: {
|
|
532
613
|
/** V1 error format. */
|
|
533
|
-
'$.xgafv'?:
|
|
614
|
+
'$.xgafv'?: '1' | '2';
|
|
534
615
|
/** OAuth access token. */
|
|
535
616
|
access_token?: string;
|
|
536
617
|
/** Data format for response. */
|
|
537
|
-
alt?:
|
|
618
|
+
alt?: 'json' | 'media' | 'proto';
|
|
538
619
|
/** JSONP */
|
|
539
620
|
callback?: string;
|
|
540
621
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -563,11 +644,11 @@ declare namespace gapi.client {
|
|
|
563
644
|
/** Enable access on a release for testers. */
|
|
564
645
|
enable_access(request: {
|
|
565
646
|
/** V1 error format. */
|
|
566
|
-
'$.xgafv'?:
|
|
647
|
+
'$.xgafv'?: '1' | '2';
|
|
567
648
|
/** OAuth access token. */
|
|
568
649
|
access_token?: string;
|
|
569
650
|
/** Data format for response. */
|
|
570
|
-
alt?:
|
|
651
|
+
alt?: 'json' | 'media' | 'proto';
|
|
571
652
|
/** JSONP */
|
|
572
653
|
callback?: string;
|
|
573
654
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -594,11 +675,11 @@ declare namespace gapi.client {
|
|
|
594
675
|
enable_access(
|
|
595
676
|
request: {
|
|
596
677
|
/** V1 error format. */
|
|
597
|
-
'$.xgafv'?:
|
|
678
|
+
'$.xgafv'?: '1' | '2';
|
|
598
679
|
/** OAuth access token. */
|
|
599
680
|
access_token?: string;
|
|
600
681
|
/** Data format for response. */
|
|
601
|
-
alt?:
|
|
682
|
+
alt?: 'json' | 'media' | 'proto';
|
|
602
683
|
/** JSONP */
|
|
603
684
|
callback?: string;
|
|
604
685
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -628,11 +709,11 @@ declare namespace gapi.client {
|
|
|
628
709
|
/** Get UDIDs of tester iOS devices in a project */
|
|
629
710
|
getTesterUdids(request?: {
|
|
630
711
|
/** V1 error format. */
|
|
631
|
-
'$.xgafv'?:
|
|
712
|
+
'$.xgafv'?: '1' | '2';
|
|
632
713
|
/** OAuth access token. */
|
|
633
714
|
access_token?: string;
|
|
634
715
|
/** Data format for response. */
|
|
635
|
-
alt?:
|
|
716
|
+
alt?: 'json' | 'media' | 'proto';
|
|
636
717
|
/** JSONP */
|
|
637
718
|
callback?: string;
|
|
638
719
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -659,11 +740,11 @@ declare namespace gapi.client {
|
|
|
659
740
|
/** GET Binary upload status by token */
|
|
660
741
|
get(request?: {
|
|
661
742
|
/** V1 error format. */
|
|
662
|
-
'$.xgafv'?:
|
|
743
|
+
'$.xgafv'?: '1' | '2';
|
|
663
744
|
/** OAuth access token. */
|
|
664
745
|
access_token?: string;
|
|
665
746
|
/** Data format for response. */
|
|
666
|
-
alt?:
|
|
747
|
+
alt?: 'json' | 'media' | 'proto';
|
|
667
748
|
/** JSONP */
|
|
668
749
|
callback?: string;
|
|
669
750
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -690,13 +771,13 @@ declare namespace gapi.client {
|
|
|
690
771
|
/** Get the app, if it exists */
|
|
691
772
|
get(request?: {
|
|
692
773
|
/** V1 error format. */
|
|
693
|
-
'$.xgafv'?:
|
|
774
|
+
'$.xgafv'?: '1' | '2';
|
|
694
775
|
/** OAuth access token. */
|
|
695
776
|
access_token?: string;
|
|
696
777
|
/** Data format for response. */
|
|
697
|
-
alt?:
|
|
778
|
+
alt?: 'json' | 'media' | 'proto';
|
|
698
779
|
/** App view. When unset or set to BASIC, returns an App with everything set except for aab_state. When set to FULL, returns an App with aab_state set. */
|
|
699
|
-
appView?:
|
|
780
|
+
appView?: 'APP_VIEW_UNSPECIFIED' | 'BASIC' | 'FULL';
|
|
700
781
|
/** JSONP */
|
|
701
782
|
callback?: string;
|
|
702
783
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -719,11 +800,11 @@ declare namespace gapi.client {
|
|
|
719
800
|
/** Get a JWT token */
|
|
720
801
|
getJwt(request?: {
|
|
721
802
|
/** V1 error format. */
|
|
722
|
-
'$.xgafv'?:
|
|
803
|
+
'$.xgafv'?: '1' | '2';
|
|
723
804
|
/** OAuth access token. */
|
|
724
805
|
access_token?: string;
|
|
725
806
|
/** Data format for response. */
|
|
726
|
-
alt?:
|
|
807
|
+
alt?: 'json' | 'media' | 'proto';
|
|
727
808
|
/** JSONP */
|
|
728
809
|
callback?: string;
|
|
729
810
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -752,11 +833,11 @@ declare namespace gapi.client {
|
|
|
752
833
|
/** Abort automated test run on release. */
|
|
753
834
|
cancel(request?: {
|
|
754
835
|
/** V1 error format. */
|
|
755
|
-
'$.xgafv'?:
|
|
836
|
+
'$.xgafv'?: '1' | '2';
|
|
756
837
|
/** OAuth access token. */
|
|
757
838
|
access_token?: string;
|
|
758
839
|
/** Data format for response. */
|
|
759
|
-
alt?:
|
|
840
|
+
alt?: 'json' | 'media' | 'proto';
|
|
760
841
|
/** JSONP */
|
|
761
842
|
callback?: string;
|
|
762
843
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -779,11 +860,11 @@ declare namespace gapi.client {
|
|
|
779
860
|
/** Run automated test(s) on release. */
|
|
780
861
|
create(request: {
|
|
781
862
|
/** V1 error format. */
|
|
782
|
-
'$.xgafv'?:
|
|
863
|
+
'$.xgafv'?: '1' | '2';
|
|
783
864
|
/** OAuth access token. */
|
|
784
865
|
access_token?: string;
|
|
785
866
|
/** Data format for response. */
|
|
786
|
-
alt?:
|
|
867
|
+
alt?: 'json' | 'media' | 'proto';
|
|
787
868
|
/** JSONP */
|
|
788
869
|
callback?: string;
|
|
789
870
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -810,11 +891,11 @@ declare namespace gapi.client {
|
|
|
810
891
|
create(
|
|
811
892
|
request: {
|
|
812
893
|
/** V1 error format. */
|
|
813
|
-
'$.xgafv'?:
|
|
894
|
+
'$.xgafv'?: '1' | '2';
|
|
814
895
|
/** OAuth access token. */
|
|
815
896
|
access_token?: string;
|
|
816
897
|
/** Data format for response. */
|
|
817
|
-
alt?:
|
|
898
|
+
alt?: 'json' | 'media' | 'proto';
|
|
818
899
|
/** JSONP */
|
|
819
900
|
callback?: string;
|
|
820
901
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -841,11 +922,11 @@ declare namespace gapi.client {
|
|
|
841
922
|
/** Get results for automated test run on release. */
|
|
842
923
|
get(request?: {
|
|
843
924
|
/** V1 error format. */
|
|
844
|
-
'$.xgafv'?:
|
|
925
|
+
'$.xgafv'?: '1' | '2';
|
|
845
926
|
/** OAuth access token. */
|
|
846
927
|
access_token?: string;
|
|
847
928
|
/** Data format for response. */
|
|
848
|
-
alt?:
|
|
929
|
+
alt?: 'json' | 'media' | 'proto';
|
|
849
930
|
/** JSONP */
|
|
850
931
|
callback?: string;
|
|
851
932
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -868,11 +949,11 @@ declare namespace gapi.client {
|
|
|
868
949
|
/** List results for automated tests run on release. */
|
|
869
950
|
list(request?: {
|
|
870
951
|
/** V1 error format. */
|
|
871
|
-
'$.xgafv'?:
|
|
952
|
+
'$.xgafv'?: '1' | '2';
|
|
872
953
|
/** OAuth access token. */
|
|
873
954
|
access_token?: string;
|
|
874
955
|
/** Data format for response. */
|
|
875
|
-
alt?:
|
|
956
|
+
alt?: 'json' | 'media' | 'proto';
|
|
876
957
|
/** JSONP */
|
|
877
958
|
callback?: string;
|
|
878
959
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -896,7 +977,10 @@ declare namespace gapi.client {
|
|
|
896
977
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
897
978
|
uploadType?: string;
|
|
898
979
|
/** Optional. The requested view on the returned ReleaseTests. Defaults to the basic view. */
|
|
899
|
-
view?:
|
|
980
|
+
view?:
|
|
981
|
+
| 'RELEASE_TEST_VIEW_UNSPECIFIED'
|
|
982
|
+
| 'RELEASE_TEST_VIEW_BASIC'
|
|
983
|
+
| 'RELEASE_TEST_VIEW_FULL';
|
|
900
984
|
}): Request<GoogleFirebaseAppdistroV1alphaListReleaseTestsResponse>;
|
|
901
985
|
}
|
|
902
986
|
interface ReleasesResource {
|
|
@@ -906,11 +990,11 @@ declare namespace gapi.client {
|
|
|
906
990
|
/** Deletes multiple test cases. */
|
|
907
991
|
batchDelete(request: {
|
|
908
992
|
/** V1 error format. */
|
|
909
|
-
'$.xgafv'?:
|
|
993
|
+
'$.xgafv'?: '1' | '2';
|
|
910
994
|
/** OAuth access token. */
|
|
911
995
|
access_token?: string;
|
|
912
996
|
/** Data format for response. */
|
|
913
|
-
alt?:
|
|
997
|
+
alt?: 'json' | 'media' | 'proto';
|
|
914
998
|
/** JSONP */
|
|
915
999
|
callback?: string;
|
|
916
1000
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -935,11 +1019,11 @@ declare namespace gapi.client {
|
|
|
935
1019
|
batchDelete(
|
|
936
1020
|
request: {
|
|
937
1021
|
/** V1 error format. */
|
|
938
|
-
'$.xgafv'?:
|
|
1022
|
+
'$.xgafv'?: '1' | '2';
|
|
939
1023
|
/** OAuth access token. */
|
|
940
1024
|
access_token?: string;
|
|
941
1025
|
/** Data format for response. */
|
|
942
|
-
alt?:
|
|
1026
|
+
alt?: 'json' | 'media' | 'proto';
|
|
943
1027
|
/** JSONP */
|
|
944
1028
|
callback?: string;
|
|
945
1029
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -964,11 +1048,11 @@ declare namespace gapi.client {
|
|
|
964
1048
|
/** Updates multiple test cases. */
|
|
965
1049
|
batchUpdate(request: {
|
|
966
1050
|
/** V1 error format. */
|
|
967
|
-
'$.xgafv'?:
|
|
1051
|
+
'$.xgafv'?: '1' | '2';
|
|
968
1052
|
/** OAuth access token. */
|
|
969
1053
|
access_token?: string;
|
|
970
1054
|
/** Data format for response. */
|
|
971
|
-
alt?:
|
|
1055
|
+
alt?: 'json' | 'media' | 'proto';
|
|
972
1056
|
/** JSONP */
|
|
973
1057
|
callback?: string;
|
|
974
1058
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -993,11 +1077,11 @@ declare namespace gapi.client {
|
|
|
993
1077
|
batchUpdate(
|
|
994
1078
|
request: {
|
|
995
1079
|
/** V1 error format. */
|
|
996
|
-
'$.xgafv'?:
|
|
1080
|
+
'$.xgafv'?: '1' | '2';
|
|
997
1081
|
/** OAuth access token. */
|
|
998
1082
|
access_token?: string;
|
|
999
1083
|
/** Data format for response. */
|
|
1000
|
-
alt?:
|
|
1084
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1001
1085
|
/** JSONP */
|
|
1002
1086
|
callback?: string;
|
|
1003
1087
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1022,11 +1106,11 @@ declare namespace gapi.client {
|
|
|
1022
1106
|
/** Clears cached test runs for a specific test case and device(s). */
|
|
1023
1107
|
clearTestCaseCache(request: {
|
|
1024
1108
|
/** V1 error format. */
|
|
1025
|
-
'$.xgafv'?:
|
|
1109
|
+
'$.xgafv'?: '1' | '2';
|
|
1026
1110
|
/** OAuth access token. */
|
|
1027
1111
|
access_token?: string;
|
|
1028
1112
|
/** Data format for response. */
|
|
1029
|
-
alt?:
|
|
1113
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1030
1114
|
/** JSONP */
|
|
1031
1115
|
callback?: string;
|
|
1032
1116
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1051,11 +1135,11 @@ declare namespace gapi.client {
|
|
|
1051
1135
|
clearTestCaseCache(
|
|
1052
1136
|
request: {
|
|
1053
1137
|
/** V1 error format. */
|
|
1054
|
-
'$.xgafv'?:
|
|
1138
|
+
'$.xgafv'?: '1' | '2';
|
|
1055
1139
|
/** OAuth access token. */
|
|
1056
1140
|
access_token?: string;
|
|
1057
1141
|
/** Data format for response. */
|
|
1058
|
-
alt?:
|
|
1142
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1059
1143
|
/** JSONP */
|
|
1060
1144
|
callback?: string;
|
|
1061
1145
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1080,11 +1164,11 @@ declare namespace gapi.client {
|
|
|
1080
1164
|
/** Create a new test case. */
|
|
1081
1165
|
create(request: {
|
|
1082
1166
|
/** V1 error format. */
|
|
1083
|
-
'$.xgafv'?:
|
|
1167
|
+
'$.xgafv'?: '1' | '2';
|
|
1084
1168
|
/** OAuth access token. */
|
|
1085
1169
|
access_token?: string;
|
|
1086
1170
|
/** Data format for response. */
|
|
1087
|
-
alt?:
|
|
1171
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1088
1172
|
/** JSONP */
|
|
1089
1173
|
callback?: string;
|
|
1090
1174
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1111,11 +1195,11 @@ declare namespace gapi.client {
|
|
|
1111
1195
|
create(
|
|
1112
1196
|
request: {
|
|
1113
1197
|
/** V1 error format. */
|
|
1114
|
-
'$.xgafv'?:
|
|
1198
|
+
'$.xgafv'?: '1' | '2';
|
|
1115
1199
|
/** OAuth access token. */
|
|
1116
1200
|
access_token?: string;
|
|
1117
1201
|
/** Data format for response. */
|
|
1118
|
-
alt?:
|
|
1202
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1119
1203
|
/** JSONP */
|
|
1120
1204
|
callback?: string;
|
|
1121
1205
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1142,11 +1226,11 @@ declare namespace gapi.client {
|
|
|
1142
1226
|
/** Delete a test case. */
|
|
1143
1227
|
delete(request?: {
|
|
1144
1228
|
/** V1 error format. */
|
|
1145
|
-
'$.xgafv'?:
|
|
1229
|
+
'$.xgafv'?: '1' | '2';
|
|
1146
1230
|
/** OAuth access token. */
|
|
1147
1231
|
access_token?: string;
|
|
1148
1232
|
/** Data format for response. */
|
|
1149
|
-
alt?:
|
|
1233
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1150
1234
|
/** JSONP */
|
|
1151
1235
|
callback?: string;
|
|
1152
1236
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1169,11 +1253,11 @@ declare namespace gapi.client {
|
|
|
1169
1253
|
/** Get a test case. */
|
|
1170
1254
|
get(request?: {
|
|
1171
1255
|
/** V1 error format. */
|
|
1172
|
-
'$.xgafv'?:
|
|
1256
|
+
'$.xgafv'?: '1' | '2';
|
|
1173
1257
|
/** OAuth access token. */
|
|
1174
1258
|
access_token?: string;
|
|
1175
1259
|
/** Data format for response. */
|
|
1176
|
-
alt?:
|
|
1260
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1177
1261
|
/** JSONP */
|
|
1178
1262
|
callback?: string;
|
|
1179
1263
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1196,11 +1280,11 @@ declare namespace gapi.client {
|
|
|
1196
1280
|
/** List test cases. */
|
|
1197
1281
|
list(request?: {
|
|
1198
1282
|
/** V1 error format. */
|
|
1199
|
-
'$.xgafv'?:
|
|
1283
|
+
'$.xgafv'?: '1' | '2';
|
|
1200
1284
|
/** OAuth access token. */
|
|
1201
1285
|
access_token?: string;
|
|
1202
1286
|
/** Data format for response. */
|
|
1203
|
-
alt?:
|
|
1287
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1204
1288
|
/** JSONP */
|
|
1205
1289
|
callback?: string;
|
|
1206
1290
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1227,13 +1311,13 @@ declare namespace gapi.client {
|
|
|
1227
1311
|
/** Update a test case. */
|
|
1228
1312
|
patch(request: {
|
|
1229
1313
|
/** V1 error format. */
|
|
1230
|
-
'$.xgafv'?:
|
|
1314
|
+
'$.xgafv'?: '1' | '2';
|
|
1231
1315
|
/** OAuth access token. */
|
|
1232
1316
|
access_token?: string;
|
|
1233
1317
|
/** Optional. If set to true, and the test case is not found, a new test case will be created. */
|
|
1234
1318
|
allowMissing?: boolean;
|
|
1235
1319
|
/** Data format for response. */
|
|
1236
|
-
alt?:
|
|
1320
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1237
1321
|
/** JSONP */
|
|
1238
1322
|
callback?: string;
|
|
1239
1323
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1258,13 +1342,13 @@ declare namespace gapi.client {
|
|
|
1258
1342
|
patch(
|
|
1259
1343
|
request: {
|
|
1260
1344
|
/** V1 error format. */
|
|
1261
|
-
'$.xgafv'?:
|
|
1345
|
+
'$.xgafv'?: '1' | '2';
|
|
1262
1346
|
/** OAuth access token. */
|
|
1263
1347
|
access_token?: string;
|
|
1264
1348
|
/** Optional. If set to true, and the test case is not found, a new test case will be created. */
|
|
1265
1349
|
allowMissing?: boolean;
|
|
1266
1350
|
/** Data format for response. */
|
|
1267
|
-
alt?:
|
|
1351
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1268
1352
|
/** JSONP */
|
|
1269
1353
|
callback?: string;
|
|
1270
1354
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1291,11 +1375,11 @@ declare namespace gapi.client {
|
|
|
1291
1375
|
/** Gets configuration for automated tests. */
|
|
1292
1376
|
getTestConfig(request?: {
|
|
1293
1377
|
/** V1 error format. */
|
|
1294
|
-
'$.xgafv'?:
|
|
1378
|
+
'$.xgafv'?: '1' | '2';
|
|
1295
1379
|
/** OAuth access token. */
|
|
1296
1380
|
access_token?: string;
|
|
1297
1381
|
/** Data format for response. */
|
|
1298
|
-
alt?:
|
|
1382
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1299
1383
|
/** JSONP */
|
|
1300
1384
|
callback?: string;
|
|
1301
1385
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1318,11 +1402,11 @@ declare namespace gapi.client {
|
|
|
1318
1402
|
/** Updates automated test configuration. */
|
|
1319
1403
|
updateTestConfig(request: {
|
|
1320
1404
|
/** V1 error format. */
|
|
1321
|
-
'$.xgafv'?:
|
|
1405
|
+
'$.xgafv'?: '1' | '2';
|
|
1322
1406
|
/** OAuth access token. */
|
|
1323
1407
|
access_token?: string;
|
|
1324
1408
|
/** Data format for response. */
|
|
1325
|
-
alt?:
|
|
1409
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1326
1410
|
/** JSONP */
|
|
1327
1411
|
callback?: string;
|
|
1328
1412
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1349,11 +1433,11 @@ declare namespace gapi.client {
|
|
|
1349
1433
|
updateTestConfig(
|
|
1350
1434
|
request: {
|
|
1351
1435
|
/** V1 error format. */
|
|
1352
|
-
'$.xgafv'?:
|
|
1436
|
+
'$.xgafv'?: '1' | '2';
|
|
1353
1437
|
/** OAuth access token. */
|
|
1354
1438
|
access_token?: string;
|
|
1355
1439
|
/** Data format for response. */
|
|
1356
|
-
alt?:
|
|
1440
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1357
1441
|
/** JSONP */
|
|
1358
1442
|
callback?: string;
|
|
1359
1443
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1384,11 +1468,11 @@ declare namespace gapi.client {
|
|
|
1384
1468
|
/** Get UDIDs of tester iOS devices in a project */
|
|
1385
1469
|
getUdids(request?: {
|
|
1386
1470
|
/** V1 error format. */
|
|
1387
|
-
'$.xgafv'?:
|
|
1471
|
+
'$.xgafv'?: '1' | '2';
|
|
1388
1472
|
/** OAuth access token. */
|
|
1389
1473
|
access_token?: string;
|
|
1390
1474
|
/** Data format for response. */
|
|
1391
|
-
alt?:
|
|
1475
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1392
1476
|
/** JSONP */
|
|
1393
1477
|
callback?: string;
|
|
1394
1478
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1415,11 +1499,11 @@ declare namespace gapi.client {
|
|
|
1415
1499
|
/** Get information about the quota for `ReleaseTests`. */
|
|
1416
1500
|
getTestQuota(request?: {
|
|
1417
1501
|
/** V1 error format. */
|
|
1418
|
-
'$.xgafv'?:
|
|
1502
|
+
'$.xgafv'?: '1' | '2';
|
|
1419
1503
|
/** OAuth access token. */
|
|
1420
1504
|
access_token?: string;
|
|
1421
1505
|
/** Data format for response. */
|
|
1422
|
-
alt?:
|
|
1506
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1423
1507
|
/** JSONP */
|
|
1424
1508
|
callback?: string;
|
|
1425
1509
|
/** Selector specifying which fields to include in a partial response. */
|
package/package.json
CHANGED