@maxim_mazurok/gapi.client.firebaseappdistribution-v1alpha 0.0.20241029 → 0.0.20241101
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 +8 -2
- 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: 20241101
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -54,6 +54,10 @@ declare namespace gapi.client {
|
|
|
54
54
|
assertion?: string;
|
|
55
55
|
/** A goal to be accomplished by the AI */
|
|
56
56
|
goal?: string;
|
|
57
|
+
/** Optional. Hint text containing suggestions to help the agent accomplish the goal */
|
|
58
|
+
hint?: string;
|
|
59
|
+
/** Optional. A description of criteria the agent should use to determine if the goal has been successfully completed */
|
|
60
|
+
successCriteria?: string;
|
|
57
61
|
}
|
|
58
62
|
interface GoogleFirebaseAppdistroV1alphaAiStepResult {
|
|
59
63
|
/** Output only. Details for an assertion step. */
|
|
@@ -256,7 +260,7 @@ declare namespace gapi.client {
|
|
|
256
260
|
createTime?: string;
|
|
257
261
|
/** Required. The results of the test on each device. */
|
|
258
262
|
deviceExecutions?: GoogleFirebaseAppdistroV1alphaDeviceExecution[];
|
|
259
|
-
/** Optional. Display name of the release test. Required if the release test is created with multiple goals */
|
|
263
|
+
/** Optional. Display name of the release test. Required if the release test is created with multiple goals. */
|
|
260
264
|
displayName?: string;
|
|
261
265
|
/** Optional. Input only. Login credentials for the test. Input only. */
|
|
262
266
|
loginCredential?: GoogleFirebaseAppdistroV1alphaLoginCredential;
|
|
@@ -296,6 +300,8 @@ declare namespace gapi.client {
|
|
|
296
300
|
screenshot?: GoogleFirebaseAppdistroV1alphaScreenshot;
|
|
297
301
|
}
|
|
298
302
|
interface GoogleFirebaseAppdistroV1alphaTestConfig {
|
|
303
|
+
/** Optional. Display name of the AI driven test. Required if the release test is created with multiple goals. */
|
|
304
|
+
displayName?: string;
|
|
299
305
|
/** Identifier. The name of the test configuration resource. Format: `projects/{project_number}/apps/{app_id}/testConfig` */
|
|
300
306
|
name?: string;
|
|
301
307
|
/** Optional. Configuration for Robo crawler */
|
package/package.json
CHANGED