@maxim_mazurok/gapi.client.firebaseappdistribution-v1alpha 0.2.20260318 → 0.2.20260608
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 -2
- package/package.json +1 -1
- package/readme.md +17 -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: 20260608
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -225,6 +225,10 @@ declare namespace gapi.client {
|
|
|
225
225
|
swipe?: GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe;
|
|
226
226
|
/** Output only. A tap action. */
|
|
227
227
|
tap?: AndroidxCrawlerOutputPoint;
|
|
228
|
+
/** Output only. The target folded state of the device in a set folded state action. The valid string values are device-dependent, and can be found using `adb shell cmd device_state print-states`. */
|
|
229
|
+
targetFoldedState?: string;
|
|
230
|
+
/** Output only. The target orientation of the device in a set orientation action. */
|
|
231
|
+
targetOrientation?: 'ORIENTATION_UNSPECIFIED' | 'PORTRAIT' | 'LANDSCAPE';
|
|
228
232
|
/** Output only. A text input action, that types some text into whatever field is currently focused, if any. Unlike `enter_text` this action requires that the field be brought into focus first, for example by emitting a tap action before this one. */
|
|
229
233
|
textInput?: string;
|
|
230
234
|
/** Output only. A wait action. */
|
|
@@ -297,7 +301,9 @@ declare namespace gapi.client {
|
|
|
297
301
|
| 'AAB_DEVELOPER_ACCOUNT_NOT_LINKED'
|
|
298
302
|
| 'AAB_NO_APP_WITH_GIVEN_PACKAGE_NAME_IN_ACCOUNT'
|
|
299
303
|
| 'AAB_UPLOAD_ERROR'
|
|
300
|
-
| 'APP_NOT_FOUND'
|
|
304
|
+
| 'APP_NOT_FOUND'
|
|
305
|
+
| 'AAB_ADHOC_SHARING_KEY_NOT_REGISTERED'
|
|
306
|
+
| 'AAB_ANDROID_DEVELOPER_CONSOLE_ACCOUNT_NOT_FOUND';
|
|
301
307
|
/** Any additional context for the given upload status (e.g. error message) Meant to be displayed to the client */
|
|
302
308
|
message?: string;
|
|
303
309
|
/** The release that was created from the upload (only set on "SUCCESS") */
|
|
@@ -411,6 +417,8 @@ declare namespace gapi.client {
|
|
|
411
417
|
loginCredential?: GoogleFirebaseAppdistroV1alphaLoginCredential;
|
|
412
418
|
/** The name of the release test resource. Format: `projects/{project_number}/apps/{app}/releases/{release}/tests/{test}` */
|
|
413
419
|
name?: string;
|
|
420
|
+
/** Optional. Input only. The custom Cloud Storage bucket where test results are stored. Format: `projects/{project_number}/buckets/{bucket}` If not provided, the default test lab bucket is used. */
|
|
421
|
+
resultsBucket?: string;
|
|
414
422
|
/** Optional. The test case that was used to generate this release test. Note: The test case may have changed or been deleted since the release test was created. Format: `projects/{project_number}/apps/{app}/testCases/{test_case}` */
|
|
415
423
|
testCase?: string;
|
|
416
424
|
/** Output only. The state of the release test. */
|
|
@@ -470,6 +478,8 @@ declare namespace gapi.client {
|
|
|
470
478
|
displayName?: string;
|
|
471
479
|
/** Identifier. The name of the test configuration resource. Format: `projects/{project_number}/apps/{app}/testConfig` */
|
|
472
480
|
name?: string;
|
|
481
|
+
/** Optional. The custom Cloud Storage bucket where test results are stored. Format: `projects/{project_number}/buckets/{bucket}` If not provided, the default test lab bucket is used. */
|
|
482
|
+
resultsBucket?: string;
|
|
473
483
|
/** Optional. Configuration for Robo crawler */
|
|
474
484
|
roboCrawler?: GoogleFirebaseAppdistroV1alphaRoboCrawler;
|
|
475
485
|
/** Optional. Tests will be run on this list of devices */
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -10,6 +10,23 @@ Install typings for Firebase App Distribution API:
|
|
|
10
10
|
npm install @types/gapi.client.firebaseappdistribution-v1alpha --save-dev
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
+
## TypeScript 6.0+
|
|
14
|
+
|
|
15
|
+
TypeScript 6.0 changed `types` to default to `[]`. You must now explicitly list type packages in `tsconfig.json`:
|
|
16
|
+
|
|
17
|
+
```json
|
|
18
|
+
{
|
|
19
|
+
"compilerOptions": {
|
|
20
|
+
"types": [
|
|
21
|
+
"gapi",
|
|
22
|
+
"gapi.auth2",
|
|
23
|
+
"gapi.client",
|
|
24
|
+
"gapi.client.firebaseappdistribution-v1alpha"
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
```
|
|
29
|
+
|
|
13
30
|
## Usage
|
|
14
31
|
|
|
15
32
|
You need to initialize Google API client in your code:
|