@maxim_mazurok/gapi.client.firebaseappdistribution-v1alpha 0.0.20231219 → 0.0.20231221
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 +35 -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: 20231221
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -430,6 +430,8 @@ declare namespace gapi.client {
|
|
|
430
430
|
oauth_token?: string;
|
|
431
431
|
/** Returns response with indentations and line breaks. */
|
|
432
432
|
prettyPrint?: boolean;
|
|
433
|
+
/** The name of the project, which is the parent of testers Format: `projects/{project_number}` */
|
|
434
|
+
project?: string;
|
|
433
435
|
/** 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. */
|
|
434
436
|
quotaUser?: string;
|
|
435
437
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
@@ -775,8 +777,40 @@ declare namespace gapi.client {
|
|
|
775
777
|
): Request<GoogleFirebaseAppdistroV1alphaTestConfig>;
|
|
776
778
|
releases: ReleasesResource;
|
|
777
779
|
}
|
|
780
|
+
interface TestersResource {
|
|
781
|
+
/** Get UDIDs of tester iOS devices in a project */
|
|
782
|
+
getUdids(request?: {
|
|
783
|
+
/** V1 error format. */
|
|
784
|
+
'$.xgafv'?: string;
|
|
785
|
+
/** OAuth access token. */
|
|
786
|
+
access_token?: string;
|
|
787
|
+
/** Data format for response. */
|
|
788
|
+
alt?: string;
|
|
789
|
+
/** JSONP */
|
|
790
|
+
callback?: string;
|
|
791
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
792
|
+
fields?: string;
|
|
793
|
+
/** 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. */
|
|
794
|
+
key?: string;
|
|
795
|
+
/** Unique id for a Firebase app of the format: {version}:{project_number}:{platform}:{hash(bundle_id)} Example: 1:581234567376:android:aa0a3c7b135e90289 */
|
|
796
|
+
mobilesdkAppId?: string;
|
|
797
|
+
/** OAuth 2.0 token for the current user. */
|
|
798
|
+
oauth_token?: string;
|
|
799
|
+
/** Returns response with indentations and line breaks. */
|
|
800
|
+
prettyPrint?: boolean;
|
|
801
|
+
/** The name of the project, which is the parent of testers Format: `projects/{project_number}` */
|
|
802
|
+
project: string;
|
|
803
|
+
/** 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. */
|
|
804
|
+
quotaUser?: string;
|
|
805
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
806
|
+
upload_protocol?: string;
|
|
807
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
808
|
+
uploadType?: string;
|
|
809
|
+
}): Request<GoogleFirebaseAppdistroV1alphaGetTesterUdidsResponse>;
|
|
810
|
+
}
|
|
778
811
|
interface ProjectsResource {
|
|
779
812
|
apps: AppsResource;
|
|
813
|
+
testers: TestersResource;
|
|
780
814
|
}
|
|
781
815
|
|
|
782
816
|
const apps: AppsResource;
|
package/package.json
CHANGED