@maxim_mazurok/gapi.client.testing-v1 0.0.20231017 → 0.0.20231023
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 +2 -5
- package/package.json +1 -1
- package/tests.ts +1 -21
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: 20231023
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -368,9 +368,6 @@ declare namespace gapi.client {
|
|
|
368
368
|
/** Required. The requested device */
|
|
369
369
|
androidDevice?:
|
|
370
370
|
AndroidDevice;
|
|
371
|
-
/** Optional. The list of requested devices. At most two devices may be simultaneously requested. */
|
|
372
|
-
androidDeviceList?:
|
|
373
|
-
AndroidDeviceList;
|
|
374
371
|
/** Output only. The time that the Session was created. */
|
|
375
372
|
createTime?:
|
|
376
373
|
string;
|
|
@@ -392,7 +389,7 @@ declare namespace gapi.client {
|
|
|
392
389
|
/** Output only. The historical state transitions of the session_state message including the current session state. */
|
|
393
390
|
stateHistories?:
|
|
394
391
|
SessionStateEvent[];
|
|
395
|
-
/** Optional. The amount of time that a device will be initially allocated for. This can eventually be extended with the
|
|
392
|
+
/** Optional. The amount of time that a device will be initially allocated for. This can eventually be extended with the UpdateDeviceSession RPC. Default: 30 minutes. */
|
|
396
393
|
ttl?:
|
|
397
394
|
string;
|
|
398
395
|
}
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20231023
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -55,16 +55,6 @@ gapi.load('client', async () => {
|
|
|
55
55
|
locale: "Test string",
|
|
56
56
|
orientation: "Test string",
|
|
57
57
|
},
|
|
58
|
-
androidDeviceList: {
|
|
59
|
-
androidDevices: [
|
|
60
|
-
{
|
|
61
|
-
androidModelId: "Test string",
|
|
62
|
-
androidVersionId: "Test string",
|
|
63
|
-
locale: "Test string",
|
|
64
|
-
orientation: "Test string",
|
|
65
|
-
}
|
|
66
|
-
],
|
|
67
|
-
},
|
|
68
58
|
createTime: "Test string",
|
|
69
59
|
displayName: "Test string",
|
|
70
60
|
expireTime: "Test string",
|
|
@@ -106,16 +96,6 @@ gapi.load('client', async () => {
|
|
|
106
96
|
locale: "Test string",
|
|
107
97
|
orientation: "Test string",
|
|
108
98
|
},
|
|
109
|
-
androidDeviceList: {
|
|
110
|
-
androidDevices: [
|
|
111
|
-
{
|
|
112
|
-
androidModelId: "Test string",
|
|
113
|
-
androidVersionId: "Test string",
|
|
114
|
-
locale: "Test string",
|
|
115
|
-
orientation: "Test string",
|
|
116
|
-
}
|
|
117
|
-
],
|
|
118
|
-
},
|
|
119
99
|
createTime: "Test string",
|
|
120
100
|
displayName: "Test string",
|
|
121
101
|
expireTime: "Test string",
|