@maxim_mazurok/gapi.client.firebaseappdistribution-v1alpha 0.0.20250808 → 0.0.20250812
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 +14 -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: 20250812
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -144,10 +144,16 @@ declare namespace gapi.client {
|
|
|
144
144
|
videoUri?: string;
|
|
145
145
|
}
|
|
146
146
|
interface GoogleFirebaseAppdistroV1alphaDeviceInteraction {
|
|
147
|
+
/** Output only. A back action. */
|
|
148
|
+
backAction?: any;
|
|
149
|
+
/** Output only. A drag and drop action. */
|
|
150
|
+
dragAndDrop?: GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop;
|
|
147
151
|
/** 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
152
|
enterText?: GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText;
|
|
149
153
|
/** Output only. Key code for a key event action. */
|
|
150
154
|
keyCode?: string;
|
|
155
|
+
/** Output only. A long press (tap and hold) action. */
|
|
156
|
+
longPress?: AndroidxCrawlerOutputPoint;
|
|
151
157
|
/** Output only. The screenshot used in the context of this action. The screen may have changed before the action was actually taken. */
|
|
152
158
|
screenshot?: GoogleFirebaseAppdistroV1alphaScreenshot;
|
|
153
159
|
/** Output only. A swipe action. */
|
|
@@ -159,6 +165,13 @@ declare namespace gapi.client {
|
|
|
159
165
|
/** Output only. A wait action. */
|
|
160
166
|
wait?: GoogleFirebaseAppdistroV1alphaDeviceInteractionWait;
|
|
161
167
|
}
|
|
168
|
+
interface GoogleFirebaseAppdistroV1alphaDeviceInteractionBack {}
|
|
169
|
+
interface GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop {
|
|
170
|
+
/** Output only. The end point of the drag and drop. */
|
|
171
|
+
end?: AndroidxCrawlerOutputPoint;
|
|
172
|
+
/** Output only. The start point of the drag and drop. */
|
|
173
|
+
start?: AndroidxCrawlerOutputPoint;
|
|
174
|
+
}
|
|
162
175
|
interface GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText {
|
|
163
176
|
/** Output only. The visible bounds of the element to enter text into. */
|
|
164
177
|
elementBounds?: AndroidxCrawlerOutputRectangle;
|
package/package.json
CHANGED