@maxim_mazurok/gapi.client.firebaseappdistribution-v1alpha 0.0.20240624 → 0.0.20240627
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 +17 -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: 20240627
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -39,6 +39,18 @@ declare namespace gapi.client {
|
|
|
39
39
|
/** SHA256 hash of the certificate used to resign the AAB */
|
|
40
40
|
certificateHashSha256?: string;
|
|
41
41
|
}
|
|
42
|
+
interface GoogleFirebaseAppdistroV1alphaAiInstructions {
|
|
43
|
+
/** Optional. Describes the app to give the AI some context */
|
|
44
|
+
appDescription?: string;
|
|
45
|
+
/** Required. Steps to be accomplished by the AI */
|
|
46
|
+
steps?: GoogleFirebaseAppdistroV1alphaAiInstructionsStep[];
|
|
47
|
+
}
|
|
48
|
+
interface GoogleFirebaseAppdistroV1alphaAiInstructionsStep {
|
|
49
|
+
/** An assertion to be checked by the AI */
|
|
50
|
+
assertion?: string;
|
|
51
|
+
/** A goal to be accomplished by the AI */
|
|
52
|
+
goal?: string;
|
|
53
|
+
}
|
|
42
54
|
interface GoogleFirebaseAppdistroV1alphaApp {
|
|
43
55
|
/** App bundle test certificate generated for the app. */
|
|
44
56
|
aabCertificate?: GoogleFirebaseAppdistroV1alphaAabCertificate;
|
|
@@ -171,6 +183,8 @@ declare namespace gapi.client {
|
|
|
171
183
|
releaseNotes?: string;
|
|
172
184
|
}
|
|
173
185
|
interface GoogleFirebaseAppdistroV1alphaReleaseTest {
|
|
186
|
+
/** Optional. Input only. Instructions for AI driven test. Input only. */
|
|
187
|
+
aiInstructions?: GoogleFirebaseAppdistroV1alphaAiInstructions;
|
|
174
188
|
/** Output only. Timestamp when the test was run. */
|
|
175
189
|
createTime?: string;
|
|
176
190
|
/** Required. The results of the test on each device. */
|
|
@@ -181,6 +195,8 @@ declare namespace gapi.client {
|
|
|
181
195
|
name?: string;
|
|
182
196
|
}
|
|
183
197
|
interface GoogleFirebaseAppdistroV1alphaRoboCrawler {
|
|
198
|
+
/** Optional. Instructions for AI driven test */
|
|
199
|
+
aiInstructions?: GoogleFirebaseAppdistroV1alphaAiInstructions;
|
|
184
200
|
/** Optional. Login credential for automated tests */
|
|
185
201
|
loginCredential?: GoogleFirebaseAppdistroV1alphaLoginCredential;
|
|
186
202
|
}
|
package/package.json
CHANGED