@maxim_mazurok/gapi.client.firebaseappdistribution-v1 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 +12 -4
- 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: 20260713
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -314,6 +314,8 @@ declare namespace gapi.client {
|
|
|
314
314
|
nextPageToken?: string;
|
|
315
315
|
/** The releases */
|
|
316
316
|
releases?: GoogleFirebaseAppdistroV1Release[];
|
|
317
|
+
/** The total number of releases. */
|
|
318
|
+
totalSize?: number;
|
|
317
319
|
}
|
|
318
320
|
interface GoogleFirebaseAppdistroV1ListTestersResponse {
|
|
319
321
|
/** A short-lived token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
@@ -322,6 +324,12 @@ declare namespace gapi.client {
|
|
|
322
324
|
testers?: GoogleFirebaseAppdistroV1Tester[];
|
|
323
325
|
}
|
|
324
326
|
interface GoogleFirebaseAppdistroV1Release {
|
|
327
|
+
/** Output only. Registration state of the Android package (BinaryType.APK). */
|
|
328
|
+
androidPackageRegistrationState?:
|
|
329
|
+
| 'ANDROID_PACKAGE_REGISTRATION_STATE_UNSPECIFIED'
|
|
330
|
+
| 'REGISTERED'
|
|
331
|
+
| 'NOT_REGISTERED'
|
|
332
|
+
| 'REGISTERED_WITH_ANOTHER_CERTIFICATE_FINGERPRINT';
|
|
325
333
|
/** Output only. A signed link (which expires in one hour) to directly download the app binary (IPA/APK/AAB) file. */
|
|
326
334
|
binaryDownloadUri?: string;
|
|
327
335
|
/** 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,7 +344,7 @@ declare namespace gapi.client {
|
|
|
336
344
|
firebaseConsoleUri?: string;
|
|
337
345
|
/** The name of the release resource. Format: `projects/{project_number}/apps/{app}/releases/{release}` */
|
|
338
346
|
name?: string;
|
|
339
|
-
/** Notes
|
|
347
|
+
/** Notes about the release. */
|
|
340
348
|
releaseNotes?: GoogleFirebaseAppdistroV1ReleaseNotes;
|
|
341
349
|
/** 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. */
|
|
342
350
|
testingUri?: string;
|
|
@@ -924,13 +932,13 @@ declare namespace gapi.client {
|
|
|
924
932
|
callback?: string;
|
|
925
933
|
/** Selector specifying which fields to include in a partial response. */
|
|
926
934
|
fields?: string;
|
|
927
|
-
/** Optional. The expression to filter releases listed in the response. To learn more about filtering, refer to [
|
|
935
|
+
/** Optional. The expression to filter releases listed in the response. To learn more about filtering, refer to the [AIP-160 standard](http://aip.dev/160). Supported fields: - Time fields supporting `<`, `<=`, `>` and `>=`; expecting an RFC-3339 formatted string: - `create_time` (or `createTime`) - `update_time` (or `updateTime`) - `expire_time` (or `expireTime`) - Text fields supporting `=`. The compared text can contain a wildcard character (`*`) at the beginning and/or end of the string which also enables case-insensitive matching: - `release_notes.text` (or `releaseNotes.text`) - `display_version` (or `displayVersion`) - `build_version` (or `buildVersion`). Examples: - `createTime <= "2021-09-08T00:00:00+04:00"` - `expire_time > "2021-09-08T00:00:00+04:00"` - `releaseNotes.text="fixes" AND createTime >= "2021-09-08T00:00:00.0Z"` - `releaseNotes.text="*v1.0.0-rc*"` - `(display_version = "v1.0.0-rc2" AND `build_version = "123") OR release_notes = "*v1.0.0-rc2 (123)*"` */
|
|
928
936
|
filter?: string;
|
|
929
937
|
/** 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. */
|
|
930
938
|
key?: string;
|
|
931
939
|
/** OAuth 2.0 token for the current user. */
|
|
932
940
|
oauth_token?: string;
|
|
933
|
-
/** Optional. The fields used to order releases. Supported fields: - `createTime` To specify descending order for a field, append a "desc" suffix, for example, `createTime desc`. If this parameter is not set, releases are ordered by `createTime` in descending order. */
|
|
941
|
+
/** Optional. The fields used to order releases. Supported fields: - `create_time` (or `createTime`) - `update_time` (or `updateTime`) - `expire_time` (or `expireTime`) To specify descending order for a field, append a "desc" suffix, for example, `createTime desc`. If this parameter is not set, releases are ordered by `createTime` in descending order. */
|
|
934
942
|
orderBy?: string;
|
|
935
943
|
/** Optional. The maximum number of releases to return. The service may return fewer than this value. The valid range is [1-100]; If unspecified (0), at most 25 releases are returned. Values above 100 are coerced to 100. */
|
|
936
944
|
pageSize?: number;
|