@maxim_mazurok/gapi.client.firebaseappdistribution-v1alpha 0.0.20250218 → 0.0.20250220
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 +36 -1
- package/package.json +1 -1
- package/readme.md +5 -0
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: 20250220
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -353,6 +353,14 @@ declare namespace gapi.client {
|
|
|
353
353
|
/** The UDID of the tester's device */
|
|
354
354
|
udid?: string;
|
|
355
355
|
}
|
|
356
|
+
interface GoogleFirebaseAppdistroV1alphaTestQuota {
|
|
357
|
+
/** Output only. Maximum number of `ReleaseTests` allotted for the current month. */
|
|
358
|
+
limit?: string;
|
|
359
|
+
/** Identifier. The name of the `TestQuota` resource. Format: `projects/{project_number}/testQuota` */
|
|
360
|
+
name?: string;
|
|
361
|
+
/** Output only. Number of `ReleaseTests` run in the current month */
|
|
362
|
+
usage?: string;
|
|
363
|
+
}
|
|
356
364
|
interface GoogleFirebaseAppdistroV1Release {
|
|
357
365
|
/** Output only. A signed link (which expires in one hour) to directly download the app binary (IPA/APK/AAB) file. */
|
|
358
366
|
binaryDownloadUri?: string;
|
|
@@ -1180,6 +1188,33 @@ declare namespace gapi.client {
|
|
|
1180
1188
|
}): Request<GoogleFirebaseAppdistroV1alphaGetTesterUdidsResponse>;
|
|
1181
1189
|
}
|
|
1182
1190
|
interface ProjectsResource {
|
|
1191
|
+
/** Get information about the quota for `ReleaseTests`. */
|
|
1192
|
+
getTestQuota(request?: {
|
|
1193
|
+
/** V1 error format. */
|
|
1194
|
+
'$.xgafv'?: string;
|
|
1195
|
+
/** OAuth access token. */
|
|
1196
|
+
access_token?: string;
|
|
1197
|
+
/** Data format for response. */
|
|
1198
|
+
alt?: string;
|
|
1199
|
+
/** JSONP */
|
|
1200
|
+
callback?: string;
|
|
1201
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1202
|
+
fields?: string;
|
|
1203
|
+
/** 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. */
|
|
1204
|
+
key?: string;
|
|
1205
|
+
/** Required. The name of the `TestQuota` resource to retrieve. Format: `projects/{project_number}/testQuota` */
|
|
1206
|
+
name: string;
|
|
1207
|
+
/** OAuth 2.0 token for the current user. */
|
|
1208
|
+
oauth_token?: string;
|
|
1209
|
+
/** Returns response with indentations and line breaks. */
|
|
1210
|
+
prettyPrint?: boolean;
|
|
1211
|
+
/** 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. */
|
|
1212
|
+
quotaUser?: string;
|
|
1213
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1214
|
+
upload_protocol?: string;
|
|
1215
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1216
|
+
uploadType?: string;
|
|
1217
|
+
}): Request<GoogleFirebaseAppdistroV1alphaTestQuota>;
|
|
1183
1218
|
apps: AppsResource;
|
|
1184
1219
|
testers: TestersResource;
|
|
1185
1220
|
}
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -88,4 +88,9 @@ Provision app distribution for an existing Firebase app, enabling it to subseque
|
|
|
88
88
|
await gapi.client.firebaseappdistribution.apps.provisionApp({
|
|
89
89
|
mobilesdkAppId: 'mobilesdkAppId',
|
|
90
90
|
});
|
|
91
|
+
|
|
92
|
+
/*
|
|
93
|
+
Get information about the quota for `ReleaseTests`.
|
|
94
|
+
*/
|
|
95
|
+
await gapi.client.firebaseappdistribution.projects.getTestQuota({name: 'name'});
|
|
91
96
|
```
|