@maxim_mazurok/gapi.client.testing-v1 0.0.20231023 → 0.0.20231027
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 +4 -1
- package/package.json +1 -1
- package/tests.ts +17 -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: 20231027
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1028,6 +1028,9 @@ declare namespace gapi.client {
|
|
|
1028
1028
|
/** List of files to push to the device before starting the test. */
|
|
1029
1029
|
filesToPush?:
|
|
1030
1030
|
DeviceFile[];
|
|
1031
|
+
/** Optional. Initial setup APKs to install before the app under test is installed. Currently capped at 100. */
|
|
1032
|
+
initialSetupApks?:
|
|
1033
|
+
Apk[];
|
|
1031
1034
|
/**
|
|
1032
1035
|
* The network traffic profile used for running the test. Available network profiles can be queried by using the NETWORK_CONFIGURATION environment type when calling
|
|
1033
1036
|
* TestEnvironmentDiscoveryService.GetTestEnvironmentCatalog.
|
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: 20231027
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -424,6 +424,14 @@ gapi.load('client', async () => {
|
|
|
424
424
|
},
|
|
425
425
|
}
|
|
426
426
|
],
|
|
427
|
+
initialSetupApks: [
|
|
428
|
+
{
|
|
429
|
+
location: {
|
|
430
|
+
gcsPath: "Test string",
|
|
431
|
+
},
|
|
432
|
+
packageName: "Test string",
|
|
433
|
+
}
|
|
434
|
+
],
|
|
427
435
|
networkProfile: "Test string",
|
|
428
436
|
systrace: {
|
|
429
437
|
durationSeconds: 42,
|
|
@@ -633,6 +641,14 @@ gapi.load('client', async () => {
|
|
|
633
641
|
},
|
|
634
642
|
}
|
|
635
643
|
],
|
|
644
|
+
initialSetupApks: [
|
|
645
|
+
{
|
|
646
|
+
location: {
|
|
647
|
+
gcsPath: "Test string",
|
|
648
|
+
},
|
|
649
|
+
packageName: "Test string",
|
|
650
|
+
}
|
|
651
|
+
],
|
|
636
652
|
networkProfile: "Test string",
|
|
637
653
|
systrace: {
|
|
638
654
|
durationSeconds: 42,
|