@maxim_mazurok/gapi.client.firebaseappdistribution-v1alpha 0.0.20250610 → 0.0.20250612
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 +16 -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: 20250612
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -35,6 +35,12 @@ declare namespace gapi.client {
|
|
|
35
35
|
xCoordinate?: number;
|
|
36
36
|
yCoordinate?: number;
|
|
37
37
|
}
|
|
38
|
+
interface AndroidxCrawlerOutputRectangle {
|
|
39
|
+
bottom?: number;
|
|
40
|
+
left?: number;
|
|
41
|
+
right?: number;
|
|
42
|
+
top?: number;
|
|
43
|
+
}
|
|
38
44
|
interface GoogleFirebaseAppdistroV1alphaAabCertificate {
|
|
39
45
|
/** MD5 hash of the certificate used to resign the AAB */
|
|
40
46
|
certificateHashMd5?: string;
|
|
@@ -138,6 +144,8 @@ declare namespace gapi.client {
|
|
|
138
144
|
videoUri?: string;
|
|
139
145
|
}
|
|
140
146
|
interface GoogleFirebaseAppdistroV1alphaDeviceInteraction {
|
|
147
|
+
/** Output only. A text entry action, that enters text into a particular text field, clearing any existing text in the field. Unlike `text_input` this action does not require any other actions such as a tap to be performed before it can enter the text. */
|
|
148
|
+
enterText?: GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText;
|
|
141
149
|
/** Output only. Key code for a key event action. */
|
|
142
150
|
keyCode?: string;
|
|
143
151
|
/** Output only. The screenshot used in the context of this action. The screen may have changed before the action was actually taken. */
|
|
@@ -146,11 +154,17 @@ declare namespace gapi.client {
|
|
|
146
154
|
swipe?: GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe;
|
|
147
155
|
/** Output only. A tap action. */
|
|
148
156
|
tap?: AndroidxCrawlerOutputPoint;
|
|
149
|
-
/** Output only.
|
|
157
|
+
/** Output only. A text input action, that types some text into whatever field is currently focused, if any. Unlike `enter_text` this action requires that the field be brought into focus first, for example by emitting a tap action before this one. */
|
|
150
158
|
textInput?: string;
|
|
151
159
|
/** Output only. A wait action. */
|
|
152
160
|
wait?: GoogleFirebaseAppdistroV1alphaDeviceInteractionWait;
|
|
153
161
|
}
|
|
162
|
+
interface GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText {
|
|
163
|
+
/** Output only. The visible bounds of the element to enter text into. */
|
|
164
|
+
elementBounds?: AndroidxCrawlerOutputRectangle;
|
|
165
|
+
/** Output only. The text to enter. */
|
|
166
|
+
text?: string;
|
|
167
|
+
}
|
|
154
168
|
interface GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe {
|
|
155
169
|
/** Output only. The end point of the swipe. */
|
|
156
170
|
end?: AndroidxCrawlerOutputPoint;
|
package/package.json
CHANGED