@maxim_mazurok/gapi.client.firebaseappdistribution-v1alpha 0.0.20250117 → 0.0.20250123
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 -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: 20250123
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -189,6 +189,8 @@ declare namespace gapi.client {
|
|
|
189
189
|
status?: string;
|
|
190
190
|
}
|
|
191
191
|
interface GoogleFirebaseAppdistroV1alphaGoalAction {
|
|
192
|
+
/** Output only. Debug information explaining why the agent to the specific action */
|
|
193
|
+
debugInfo?: GoogleFirebaseAppdistroV1alphaGoalActionDebugInfo;
|
|
192
194
|
/** Output only. A high level action taken by the AI on the device. */
|
|
193
195
|
deviceAction?: GoogleFirebaseAppdistroV1alphaDeviceAction;
|
|
194
196
|
/** Output only. An explanation justifying why the action was taken. */
|
|
@@ -196,6 +198,12 @@ declare namespace gapi.client {
|
|
|
196
198
|
/** Output only. An action taken by the AI to end the goal. */
|
|
197
199
|
terminalAction?: GoogleFirebaseAppdistroV1alphaTerminalAction;
|
|
198
200
|
}
|
|
201
|
+
interface GoogleFirebaseAppdistroV1alphaGoalActionDebugInfo {
|
|
202
|
+
/** Output only. URI of the screenshot with elements labeled which was used by the agent */
|
|
203
|
+
annotatedScreenshotUri?: string;
|
|
204
|
+
/** Output only. Structured data explaining the agent's choice */
|
|
205
|
+
jsonUri?: string;
|
|
206
|
+
}
|
|
199
207
|
interface GoogleFirebaseAppdistroV1alphaGoalDetails {
|
|
200
208
|
/** Output only. The actions taken by the AI while attempting to accomplish the goal. */
|
|
201
209
|
goalActions?: GoogleFirebaseAppdistroV1alphaGoalAction[];
|
|
@@ -312,6 +320,8 @@ declare namespace gapi.client {
|
|
|
312
320
|
interface GoogleFirebaseAppdistroV1alphaTestCase {
|
|
313
321
|
/** Optional. Instructions for AI driven test. */
|
|
314
322
|
aiInstructions?: GoogleFirebaseAppdistroV1alphaAiInstructions;
|
|
323
|
+
/** Output only. Timestamp when the test case was created */
|
|
324
|
+
createTime?: string;
|
|
315
325
|
/** Required. Display name of the test case. */
|
|
316
326
|
displayName?: string;
|
|
317
327
|
/** Identifier. The name of the test case resource. Format: `projects/{project_number}/apps/{app_id}/testCases/{test_case_id}` */
|
package/package.json
CHANGED