@maxim_mazurok/gapi.client.firebaseappdistribution-v1alpha 0.0.20240724 → 0.0.20240726
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 +71 -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: 20240726
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -31,6 +31,10 @@ declare namespace gapi.client {
|
|
|
31
31
|
): void;
|
|
32
32
|
|
|
33
33
|
namespace firebaseappdistribution {
|
|
34
|
+
interface AndroidxCrawlerOutputPoint {
|
|
35
|
+
xCoordinate?: number;
|
|
36
|
+
yCoordinate?: number;
|
|
37
|
+
}
|
|
34
38
|
interface GoogleFirebaseAppdistroV1alphaAabCertificate {
|
|
35
39
|
/** MD5 hash of the certificate used to resign the AAB */
|
|
36
40
|
certificateHashMd5?: string;
|
|
@@ -52,6 +56,10 @@ declare namespace gapi.client {
|
|
|
52
56
|
goal?: string;
|
|
53
57
|
}
|
|
54
58
|
interface GoogleFirebaseAppdistroV1alphaAiStepResult {
|
|
59
|
+
/** Output only. Details for an assertion step. */
|
|
60
|
+
assertionDetails?: GoogleFirebaseAppdistroV1alphaAssertionDetails;
|
|
61
|
+
/** Output only. Details for a goal step. */
|
|
62
|
+
goalDetails?: GoogleFirebaseAppdistroV1alphaGoalDetails;
|
|
55
63
|
/** Output only. The current state of the step */
|
|
56
64
|
state?: string;
|
|
57
65
|
/** Required. The step performed by the AI */
|
|
@@ -79,11 +87,25 @@ declare namespace gapi.client {
|
|
|
79
87
|
/** Output only. The raw stack trace. */
|
|
80
88
|
stackTrace?: string;
|
|
81
89
|
}
|
|
90
|
+
interface GoogleFirebaseAppdistroV1alphaAssertionDetails {
|
|
91
|
+
/** Output only. An explanation justifying the assertion result. */
|
|
92
|
+
explanation?: string;
|
|
93
|
+
/** Output only. The result of the assertion. */
|
|
94
|
+
result?: boolean;
|
|
95
|
+
/** Output only. The screenshot used in the context of this assertion. */
|
|
96
|
+
screenshot?: GoogleFirebaseAppdistroV1alphaScreenshot;
|
|
97
|
+
}
|
|
82
98
|
interface GoogleFirebaseAppdistroV1alphaCreateReleaseNotesRequest {
|
|
83
99
|
/** The actual release notes body from the user */
|
|
84
100
|
releaseNotes?: GoogleFirebaseAppdistroV1alphaReleaseNotes;
|
|
85
101
|
}
|
|
86
102
|
interface GoogleFirebaseAppdistroV1alphaCreateReleaseNotesResponse {}
|
|
103
|
+
interface GoogleFirebaseAppdistroV1alphaDeviceAction {
|
|
104
|
+
/** Output only. A short description of the high level action taken by the AI agent. */
|
|
105
|
+
description?: string;
|
|
106
|
+
/** Output only. The interactions made with the device as part of this higher level action taken by the agent, such as taps, text entries, waits, etc. */
|
|
107
|
+
deviceInteractions?: GoogleFirebaseAppdistroV1alphaDeviceInteraction[];
|
|
108
|
+
}
|
|
87
109
|
interface GoogleFirebaseAppdistroV1alphaDeviceExecution {
|
|
88
110
|
/** Output only. Results of the AI steps if passed in */
|
|
89
111
|
aiStepResults?: GoogleFirebaseAppdistroV1alphaAiStepResult[];
|
|
@@ -108,6 +130,28 @@ declare namespace gapi.client {
|
|
|
108
130
|
/** Output only. A URI to a video of the test run. */
|
|
109
131
|
videoUri?: string;
|
|
110
132
|
}
|
|
133
|
+
interface GoogleFirebaseAppdistroV1alphaDeviceInteraction {
|
|
134
|
+
/** Output only. The screenshot used in the context of this action. The screen may have changed before the action was actually taken. */
|
|
135
|
+
screenshot?: GoogleFirebaseAppdistroV1alphaScreenshot;
|
|
136
|
+
/** Output only. A swipe action. */
|
|
137
|
+
swipe?: GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe;
|
|
138
|
+
/** Output only. A tap action. */
|
|
139
|
+
tap?: AndroidxCrawlerOutputPoint;
|
|
140
|
+
/** Output only. Text entered for a text entry action. */
|
|
141
|
+
textInput?: string;
|
|
142
|
+
/** Output only. A wait action. */
|
|
143
|
+
wait?: GoogleFirebaseAppdistroV1alphaDeviceInteractionWait;
|
|
144
|
+
}
|
|
145
|
+
interface GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe {
|
|
146
|
+
/** Output only. The end point of the swipe. */
|
|
147
|
+
end?: AndroidxCrawlerOutputPoint;
|
|
148
|
+
/** Output only. The start point of the swipe. */
|
|
149
|
+
start?: AndroidxCrawlerOutputPoint;
|
|
150
|
+
}
|
|
151
|
+
interface GoogleFirebaseAppdistroV1alphaDeviceInteractionWait {
|
|
152
|
+
/** Output only. The duration of the wait. */
|
|
153
|
+
duration?: string;
|
|
154
|
+
}
|
|
111
155
|
interface GoogleFirebaseAppdistroV1alphaEnableAccessOnReleaseRequest {
|
|
112
156
|
/** Optional. Ignored. Used to be build version of the app release if an instance identifier was provided for the release_id. */
|
|
113
157
|
buildVersion?: string;
|
|
@@ -137,6 +181,18 @@ declare namespace gapi.client {
|
|
|
137
181
|
/** The status of the upload */
|
|
138
182
|
status?: string;
|
|
139
183
|
}
|
|
184
|
+
interface GoogleFirebaseAppdistroV1alphaGoalAction {
|
|
185
|
+
/** Output only. A high level action taken by the AI on the device. */
|
|
186
|
+
deviceAction?: GoogleFirebaseAppdistroV1alphaDeviceAction;
|
|
187
|
+
/** Output only. An explanation justifying why the action was taken. */
|
|
188
|
+
explanation?: string;
|
|
189
|
+
/** Output only. An action taken by the AI to end the goal. */
|
|
190
|
+
terminalAction?: GoogleFirebaseAppdistroV1alphaTerminalAction;
|
|
191
|
+
}
|
|
192
|
+
interface GoogleFirebaseAppdistroV1alphaGoalDetails {
|
|
193
|
+
/** Output only. The actions taken by the AI while attempting to accomplish the goal. */
|
|
194
|
+
goalActions?: GoogleFirebaseAppdistroV1alphaGoalAction[];
|
|
195
|
+
}
|
|
140
196
|
interface GoogleFirebaseAppdistroV1alphaJwt {
|
|
141
197
|
token?: string;
|
|
142
198
|
}
|
|
@@ -218,6 +274,20 @@ declare namespace gapi.client {
|
|
|
218
274
|
/** Output only. Whether the main activity crawl timed out. */
|
|
219
275
|
mainActivityCrawlTimedOut?: boolean;
|
|
220
276
|
}
|
|
277
|
+
interface GoogleFirebaseAppdistroV1alphaScreenshot {
|
|
278
|
+
/** Output only. The height of the screenshot, in pixels. */
|
|
279
|
+
height?: number;
|
|
280
|
+
/** Output only. The URI of the screenshot. */
|
|
281
|
+
uri?: string;
|
|
282
|
+
/** Output only. The width of the screenshot, in pixels. */
|
|
283
|
+
width?: number;
|
|
284
|
+
}
|
|
285
|
+
interface GoogleFirebaseAppdistroV1alphaTerminalAction {
|
|
286
|
+
/** Output only. The reason why this goal was ended. */
|
|
287
|
+
reason?: string;
|
|
288
|
+
/** Output only. The screenshot used in the context of this terminal action. */
|
|
289
|
+
screenshot?: GoogleFirebaseAppdistroV1alphaScreenshot;
|
|
290
|
+
}
|
|
221
291
|
interface GoogleFirebaseAppdistroV1alphaTestConfig {
|
|
222
292
|
/** Identifier. The name of the test configuration resource. Format: `projects/{project_number}/apps/{app_id}/testConfig` */
|
|
223
293
|
name?: string;
|
package/package.json
CHANGED