@maxim_mazurok/gapi.client.firebaseappdistribution-v1alpha 0.1.20250829 → 0.1.20250904
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 -4
- 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: 20250904
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -142,6 +142,8 @@ declare namespace gapi.client {
|
|
|
142
142
|
screenshotUris?: string[];
|
|
143
143
|
/** Output only. The state of the test. */
|
|
144
144
|
state?: string;
|
|
145
|
+
/** Output only. The time at which the video started recording. */
|
|
146
|
+
videoStartTime?: string;
|
|
145
147
|
/** Output only. A URI to a video of the test run. */
|
|
146
148
|
videoUri?: string;
|
|
147
149
|
}
|
|
@@ -220,19 +222,21 @@ declare namespace gapi.client {
|
|
|
220
222
|
status?: string;
|
|
221
223
|
}
|
|
222
224
|
interface GoogleFirebaseAppdistroV1alphaGoalAction {
|
|
223
|
-
/** Output only. Debug information explaining why the agent to the specific action */
|
|
225
|
+
/** Output only. Debug information explaining why the agent to the specific action. */
|
|
224
226
|
debugInfo?: GoogleFirebaseAppdistroV1alphaGoalActionDebugInfo;
|
|
225
227
|
/** Output only. A high level action taken by the AI on the device. */
|
|
226
228
|
deviceAction?: GoogleFirebaseAppdistroV1alphaDeviceAction;
|
|
227
229
|
/** Output only. An explanation justifying why the action was taken. */
|
|
228
230
|
explanation?: string;
|
|
231
|
+
/** Output only. The time at which the action started. */
|
|
232
|
+
startTime?: string;
|
|
229
233
|
/** Output only. An action taken by the AI to end the goal. */
|
|
230
234
|
terminalAction?: GoogleFirebaseAppdistroV1alphaTerminalAction;
|
|
231
235
|
}
|
|
232
236
|
interface GoogleFirebaseAppdistroV1alphaGoalActionDebugInfo {
|
|
233
|
-
/** Output only. URI of the screenshot with elements labeled which was used by the agent */
|
|
237
|
+
/** Output only. URI of the screenshot with elements labeled which was used by the agent. */
|
|
234
238
|
annotatedScreenshotUri?: string;
|
|
235
|
-
/** Output only. Structured data explaining the agent's choice */
|
|
239
|
+
/** Output only. Structured data explaining the agent's choice. */
|
|
236
240
|
jsonUri?: string;
|
|
237
241
|
}
|
|
238
242
|
interface GoogleFirebaseAppdistroV1alphaGoalDetails {
|
package/package.json
CHANGED