@maxim_mazurok/gapi.client.firebaseappdistribution-v1alpha 0.0.20250415 → 0.0.20250416
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 +1 -29
- package/package.json +1 -1
- package/readme.md +0 -7
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: 20250416
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -242,7 +242,6 @@ declare namespace gapi.client {
|
|
|
242
242
|
/** Required. The Android resource name of the username UI element. For example, in Java: R.string.foo in xml: @string/foo Only the "foo" part is needed. Reference doc: https://developer.android.com/guide/topics/resources/accessing-resources.html */
|
|
243
243
|
usernameResourceName?: string;
|
|
244
244
|
}
|
|
245
|
-
interface GoogleFirebaseAppdistroV1alphaProvisionAppResponse {}
|
|
246
245
|
interface GoogleFirebaseAppdistroV1alphaRelease {
|
|
247
246
|
/** Release build version */
|
|
248
247
|
buildVersion?: string;
|
|
@@ -674,33 +673,6 @@ declare namespace gapi.client {
|
|
|
674
673
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
675
674
|
uploadType?: string;
|
|
676
675
|
}): Request<GoogleFirebaseAppdistroV1alphaJwt>;
|
|
677
|
-
/** Provision app distribution for an existing Firebase app, enabling it to subsequently be used by appdistro. */
|
|
678
|
-
provisionApp(request?: {
|
|
679
|
-
/** V1 error format. */
|
|
680
|
-
'$.xgafv'?: string;
|
|
681
|
-
/** OAuth access token. */
|
|
682
|
-
access_token?: string;
|
|
683
|
-
/** Data format for response. */
|
|
684
|
-
alt?: string;
|
|
685
|
-
/** JSONP */
|
|
686
|
-
callback?: string;
|
|
687
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
688
|
-
fields?: string;
|
|
689
|
-
/** 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. */
|
|
690
|
-
key?: string;
|
|
691
|
-
/** Unique id for a Firebase app of the format: {version}:{project_number}:{platform}:{hash(bundle_id)} Example: 1:581234567376:android:aa0a3c7b135e90289 */
|
|
692
|
-
mobilesdkAppId: string;
|
|
693
|
-
/** OAuth 2.0 token for the current user. */
|
|
694
|
-
oauth_token?: string;
|
|
695
|
-
/** Returns response with indentations and line breaks. */
|
|
696
|
-
prettyPrint?: boolean;
|
|
697
|
-
/** 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. */
|
|
698
|
-
quotaUser?: string;
|
|
699
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
700
|
-
upload_protocol?: string;
|
|
701
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
702
|
-
uploadType?: string;
|
|
703
|
-
}): Request<{}>;
|
|
704
676
|
release_by_hash: Release_by_hashResource;
|
|
705
677
|
releases: ReleasesResource;
|
|
706
678
|
testers: TestersResource;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -82,13 +82,6 @@ await gapi.client.firebaseappdistribution.apps.getJwt({
|
|
|
82
82
|
mobilesdkAppId: 'mobilesdkAppId',
|
|
83
83
|
});
|
|
84
84
|
|
|
85
|
-
/*
|
|
86
|
-
Provision app distribution for an existing Firebase app, enabling it to subsequently be used by appdistro.
|
|
87
|
-
*/
|
|
88
|
-
await gapi.client.firebaseappdistribution.apps.provisionApp({
|
|
89
|
-
mobilesdkAppId: 'mobilesdkAppId',
|
|
90
|
-
});
|
|
91
|
-
|
|
92
85
|
/*
|
|
93
86
|
Get information about the quota for `ReleaseTests`.
|
|
94
87
|
*/
|