@maxim_mazurok/gapi.client.firebaseappdistribution-v1alpha 0.2.20260622 → 0.2.20260713
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 +8 -2
- 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: 20260713
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -518,6 +518,12 @@ declare namespace gapi.client {
|
|
|
518
518
|
testCase?: GoogleFirebaseAppdistroV1alphaTestCase;
|
|
519
519
|
}
|
|
520
520
|
interface GoogleFirebaseAppdistroV1Release {
|
|
521
|
+
/** Output only. Registration state of the Android package (BinaryType.APK). */
|
|
522
|
+
androidPackageRegistrationState?:
|
|
523
|
+
| 'ANDROID_PACKAGE_REGISTRATION_STATE_UNSPECIFIED'
|
|
524
|
+
| 'REGISTERED'
|
|
525
|
+
| 'NOT_REGISTERED'
|
|
526
|
+
| 'REGISTERED_WITH_ANOTHER_CERTIFICATE_FINGERPRINT';
|
|
521
527
|
/** Output only. A signed link (which expires in one hour) to directly download the app binary (IPA/APK/AAB) file. */
|
|
522
528
|
binaryDownloadUri?: string;
|
|
523
529
|
/** 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`. */
|
|
@@ -532,7 +538,7 @@ declare namespace gapi.client {
|
|
|
532
538
|
firebaseConsoleUri?: string;
|
|
533
539
|
/** The name of the release resource. Format: `projects/{project_number}/apps/{app}/releases/{release}` */
|
|
534
540
|
name?: string;
|
|
535
|
-
/** Notes
|
|
541
|
+
/** Notes about the release. */
|
|
536
542
|
releaseNotes?: GoogleFirebaseAppdistroV1ReleaseNotes;
|
|
537
543
|
/** 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. */
|
|
538
544
|
testingUri?: string;
|
package/package.json
CHANGED