@maxim_mazurok/gapi.client.firebaseappdistribution-v1alpha 0.0.20241121 → 0.0.20241204
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 -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: 20241204
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -201,6 +201,7 @@ declare namespace gapi.client {
|
|
|
201
201
|
goalActions?: GoogleFirebaseAppdistroV1alphaGoalAction[];
|
|
202
202
|
}
|
|
203
203
|
interface GoogleFirebaseAppdistroV1alphaJwt {
|
|
204
|
+
/** The JWT token (three Base64URL-encoded strings joined by dots). */
|
|
204
205
|
token?: string;
|
|
205
206
|
}
|
|
206
207
|
interface GoogleFirebaseAppdistroV1alphaListReleaseTestsResponse {
|
|
@@ -257,6 +258,7 @@ declare namespace gapi.client {
|
|
|
257
258
|
testerWithInstallCount?: number;
|
|
258
259
|
}
|
|
259
260
|
interface GoogleFirebaseAppdistroV1alphaReleaseNotes {
|
|
261
|
+
/** The actual release notes text from the user. */
|
|
260
262
|
releaseNotes?: string;
|
|
261
263
|
}
|
|
262
264
|
interface GoogleFirebaseAppdistroV1alphaReleaseTest {
|
|
@@ -272,6 +274,8 @@ declare namespace gapi.client {
|
|
|
272
274
|
loginCredential?: GoogleFirebaseAppdistroV1alphaLoginCredential;
|
|
273
275
|
/** The name of the release test resource. Format: `projects/{project_number}/apps/{app_id}/releases/{release_id}/tests/{test_id}` */
|
|
274
276
|
name?: string;
|
|
277
|
+
/** 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}` */
|
|
278
|
+
testCase?: string;
|
|
275
279
|
/** Output only. The state of the release test. */
|
|
276
280
|
testState?: string;
|
|
277
281
|
}
|
package/package.json
CHANGED