@maxim_mazurok/gapi.client.firebaseappdistribution-v1alpha 0.0.20241003 → 0.0.20241007
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 +29 -1
- 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: 20241007
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -95,6 +95,7 @@ declare namespace gapi.client {
|
|
|
95
95
|
/** Output only. The screenshot used in the context of this assertion. */
|
|
96
96
|
screenshot?: GoogleFirebaseAppdistroV1alphaScreenshot;
|
|
97
97
|
}
|
|
98
|
+
interface GoogleFirebaseAppdistroV1alphaCancelReleaseTestResponse {}
|
|
98
99
|
interface GoogleFirebaseAppdistroV1alphaCreateReleaseNotesRequest {
|
|
99
100
|
/** The actual release notes body from the user */
|
|
100
101
|
releaseNotes?: GoogleFirebaseAppdistroV1alphaReleaseNotes;
|
|
@@ -657,6 +658,33 @@ declare namespace gapi.client {
|
|
|
657
658
|
upload_status: Upload_statusResource;
|
|
658
659
|
}
|
|
659
660
|
interface TestsResource {
|
|
661
|
+
/** Abort automated test run on release. */
|
|
662
|
+
cancel(request?: {
|
|
663
|
+
/** V1 error format. */
|
|
664
|
+
'$.xgafv'?: string;
|
|
665
|
+
/** OAuth access token. */
|
|
666
|
+
access_token?: string;
|
|
667
|
+
/** Data format for response. */
|
|
668
|
+
alt?: string;
|
|
669
|
+
/** JSONP */
|
|
670
|
+
callback?: string;
|
|
671
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
672
|
+
fields?: string;
|
|
673
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
674
|
+
key?: string;
|
|
675
|
+
/** Required. The name of the release test resource. Format: `projects/{project_number}/apps/{app_id}/releases/{release_id}/tests/{test_id}` */
|
|
676
|
+
name: string;
|
|
677
|
+
/** OAuth 2.0 token for the current user. */
|
|
678
|
+
oauth_token?: string;
|
|
679
|
+
/** Returns response with indentations and line breaks. */
|
|
680
|
+
prettyPrint?: boolean;
|
|
681
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
682
|
+
quotaUser?: string;
|
|
683
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
684
|
+
upload_protocol?: string;
|
|
685
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
686
|
+
uploadType?: string;
|
|
687
|
+
}): Request<{}>;
|
|
660
688
|
/** Run automated test(s) on release. */
|
|
661
689
|
create(request: {
|
|
662
690
|
/** V1 error format. */
|
package/package.json
CHANGED