@maxim_mazurok/gapi.client.testing-v1 0.0.20240913 → 0.0.20240917
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 +7 -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://testing.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240917
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -91,6 +91,8 @@ declare namespace gapi.client {
|
|
|
91
91
|
formFactor?: string;
|
|
92
92
|
/** The unique opaque id for this model. Use this for invoking the TestExecutionService. */
|
|
93
93
|
id?: string;
|
|
94
|
+
/** Output only. Lab info of this device. */
|
|
95
|
+
labInfo?: LabInfo;
|
|
94
96
|
/** True if and only if tests with this model are recorded by stitching together screenshots. See use_low_spec_video_recording in device config. */
|
|
95
97
|
lowFpsVideoRecording?: boolean;
|
|
96
98
|
/** The manufacturer of this device. */
|
|
@@ -437,6 +439,10 @@ declare namespace gapi.client {
|
|
|
437
439
|
/** An .xctestrun file that will override the .xctestrun file in the tests zip. Because the .xctestrun file contains environment variables along with test methods to run and/or ignore, this can be useful for sharding tests. Default is taken from the tests zip. */
|
|
438
440
|
xctestrun?: FileReference;
|
|
439
441
|
}
|
|
442
|
+
interface LabInfo {
|
|
443
|
+
/** Lab name where the device is hosted. If empty, the device is hosted in a Google owned lab. */
|
|
444
|
+
name?: string;
|
|
445
|
+
}
|
|
440
446
|
interface LauncherActivityIntent {}
|
|
441
447
|
interface ListDeviceSessionsResponse {
|
|
442
448
|
/** The sessions matching the specified filter in the given cloud project. */
|