@maxim_mazurok/gapi.client.firebaseappdistribution-v1 0.2.20260716 → 0.2.20260722
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 +19 -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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260722
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -324,6 +324,8 @@ declare namespace gapi.client {
|
|
|
324
324
|
testers?: GoogleFirebaseAppdistroV1Tester[];
|
|
325
325
|
}
|
|
326
326
|
interface GoogleFirebaseAppdistroV1Release {
|
|
327
|
+
/** Output only. Number of testers with accepted invitations. */
|
|
328
|
+
acceptedInvitationCount?: number;
|
|
327
329
|
/** Output only. Registration state of the Android package (BinaryType.APK). */
|
|
328
330
|
androidPackageRegistrationState?:
|
|
329
331
|
| 'ANDROID_PACKAGE_REGISTRATION_STATE_UNSPECIFIED'
|
|
@@ -332,6 +334,8 @@ declare namespace gapi.client {
|
|
|
332
334
|
| 'REGISTERED_WITH_ANOTHER_CERTIFICATE_FINGERPRINT';
|
|
333
335
|
/** Output only. A signed link (which expires in one hour) to directly download the app binary (IPA/APK/AAB) file. */
|
|
334
336
|
binaryDownloadUri?: string;
|
|
337
|
+
/** Output only. Type of binary. */
|
|
338
|
+
binaryType?: 'BINARY_TYPE_UNSPECIFIED' | 'IPA' | 'APK' | 'AAB';
|
|
335
339
|
/** Output only. Build version of the release. For an Android release, the build version is the `versionCode`. For an iOS release, the build version is the `CFBundleVersion`. */
|
|
336
340
|
buildVersion?: string;
|
|
337
341
|
/** Output only. The time the release was created. */
|
|
@@ -340,14 +344,28 @@ declare namespace gapi.client {
|
|
|
340
344
|
displayVersion?: string;
|
|
341
345
|
/** Output only. The time the release will expire. */
|
|
342
346
|
expireTime?: string;
|
|
347
|
+
/** Output only. Number of feedback reports left by testers. */
|
|
348
|
+
feedbackCount?: number;
|
|
343
349
|
/** Output only. A link to the Firebase console displaying a single release. */
|
|
344
350
|
firebaseConsoleUri?: string;
|
|
351
|
+
/** Output only. Number of testers who have downloaded this release. */
|
|
352
|
+
installationCount?: number;
|
|
345
353
|
/** The name of the release resource. Format: `projects/{project_number}/apps/{app}/releases/{release}` */
|
|
346
354
|
name?: string;
|
|
355
|
+
/** Output only. Number of testers who were invited (incl. expired invitations), but did not (yet) accept the invitation. */
|
|
356
|
+
openInvitationCount?: number;
|
|
347
357
|
/** Notes about the release. */
|
|
348
358
|
releaseNotes?: GoogleFirebaseAppdistroV1ReleaseNotes;
|
|
349
359
|
/** Output only. A link to the release in the tester web clip or Android app that lets testers (which were granted access to the app) view release notes and install the app onto their devices. */
|
|
350
360
|
testingUri?: string;
|
|
361
|
+
/** Output only. The overall state of tests run on this release */
|
|
362
|
+
testState?:
|
|
363
|
+
| 'TEST_STATE_UNSPECIFIED'
|
|
364
|
+
| 'NO_TESTS_REQUESTED'
|
|
365
|
+
| 'IN_PROGRESS'
|
|
366
|
+
| 'PASSED'
|
|
367
|
+
| 'FAILED'
|
|
368
|
+
| 'INCONCLUSIVE';
|
|
351
369
|
/** Output only. The time the release was last updated. */
|
|
352
370
|
updateTime?: string;
|
|
353
371
|
}
|