@maxim_mazurok/gapi.client.firebaseappdistribution-v1alpha 0.0.20240708 → 0.0.20240710
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 +11 -3
- 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: 20240710
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -43,14 +43,20 @@ declare namespace gapi.client {
|
|
|
43
43
|
/** Optional. Describes the app to give the AI some context */
|
|
44
44
|
appDescription?: string;
|
|
45
45
|
/** Required. Steps to be accomplished by the AI */
|
|
46
|
-
steps?:
|
|
46
|
+
steps?: GoogleFirebaseAppdistroV1alphaAiStep[];
|
|
47
47
|
}
|
|
48
|
-
interface
|
|
48
|
+
interface GoogleFirebaseAppdistroV1alphaAiStep {
|
|
49
49
|
/** An assertion to be checked by the AI */
|
|
50
50
|
assertion?: string;
|
|
51
51
|
/** A goal to be accomplished by the AI */
|
|
52
52
|
goal?: string;
|
|
53
53
|
}
|
|
54
|
+
interface GoogleFirebaseAppdistroV1alphaAiStepResult {
|
|
55
|
+
/** Output only. The current state of the step */
|
|
56
|
+
state?: string;
|
|
57
|
+
/** Required. The step performed by the AI */
|
|
58
|
+
step?: GoogleFirebaseAppdistroV1alphaAiStep;
|
|
59
|
+
}
|
|
54
60
|
interface GoogleFirebaseAppdistroV1alphaApp {
|
|
55
61
|
/** App bundle test certificate generated for the app. */
|
|
56
62
|
aabCertificate?: GoogleFirebaseAppdistroV1alphaAabCertificate;
|
|
@@ -79,6 +85,8 @@ declare namespace gapi.client {
|
|
|
79
85
|
}
|
|
80
86
|
interface GoogleFirebaseAppdistroV1alphaCreateReleaseNotesResponse {}
|
|
81
87
|
interface GoogleFirebaseAppdistroV1alphaDeviceExecution {
|
|
88
|
+
/** Output only. Results of the AI steps if passed in */
|
|
89
|
+
aiStepResults?: GoogleFirebaseAppdistroV1alphaAiStepResult[];
|
|
82
90
|
/** Output only. An app crash, if any occurred during the test. */
|
|
83
91
|
appCrash?: GoogleFirebaseAppdistroV1alphaAppCrash;
|
|
84
92
|
/** Output only. A URI to an image of the Robo crawl graph. */
|
package/package.json
CHANGED