@maxim_mazurok/gapi.client.testing-v1 0.0.20230808 → 0.0.20230815
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 +15 -1
- package/package.json +1 -1
- package/tests.ts +19 -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: 20230815
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -501,6 +501,17 @@ declare namespace gapi.client {
|
|
|
501
501
|
tags?:
|
|
502
502
|
string[];
|
|
503
503
|
}
|
|
504
|
+
interface IosRoboTest {
|
|
505
|
+
/** The bundle ID for the app-under-test. This is determined by examining the application's "Info.plist" file. */
|
|
506
|
+
appBundleId?:
|
|
507
|
+
string;
|
|
508
|
+
/** Required. The ipa stored at this file should be used to run the test. */
|
|
509
|
+
appIpa?:
|
|
510
|
+
FileReference;
|
|
511
|
+
/** An optional Roboscript to customize the crawl. See https://firebase.google.com/docs/test-lab/android/robo-scripts-reference for more information about Roboscripts. */
|
|
512
|
+
roboScript?:
|
|
513
|
+
FileReference;
|
|
514
|
+
}
|
|
504
515
|
interface IosRuntimeConfiguration {
|
|
505
516
|
/** The set of available locales. */
|
|
506
517
|
locales?:
|
|
@@ -972,6 +983,9 @@ declare namespace gapi.client {
|
|
|
972
983
|
/** Disables video recording. May reduce test latency. */
|
|
973
984
|
disableVideoRecording?:
|
|
974
985
|
boolean;
|
|
986
|
+
/** An iOS Robo test. */
|
|
987
|
+
iosRoboTest?:
|
|
988
|
+
IosRoboTest;
|
|
975
989
|
/** An iOS application with a test loop. */
|
|
976
990
|
iosTestLoop?:
|
|
977
991
|
IosTestLoop;
|
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: 20230815
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -255,6 +255,15 @@ gapi.load('client', async () => {
|
|
|
255
255
|
},
|
|
256
256
|
disablePerformanceMetrics: true,
|
|
257
257
|
disableVideoRecording: true,
|
|
258
|
+
iosRoboTest: {
|
|
259
|
+
appBundleId: "Test string",
|
|
260
|
+
appIpa: {
|
|
261
|
+
gcsPath: "Test string",
|
|
262
|
+
},
|
|
263
|
+
roboScript: {
|
|
264
|
+
gcsPath: "Test string",
|
|
265
|
+
},
|
|
266
|
+
},
|
|
258
267
|
iosTestLoop: {
|
|
259
268
|
appBundleId: "Test string",
|
|
260
269
|
appIpa: {
|
|
@@ -455,6 +464,15 @@ gapi.load('client', async () => {
|
|
|
455
464
|
},
|
|
456
465
|
disablePerformanceMetrics: true,
|
|
457
466
|
disableVideoRecording: true,
|
|
467
|
+
iosRoboTest: {
|
|
468
|
+
appBundleId: "Test string",
|
|
469
|
+
appIpa: {
|
|
470
|
+
gcsPath: "Test string",
|
|
471
|
+
},
|
|
472
|
+
roboScript: {
|
|
473
|
+
gcsPath: "Test string",
|
|
474
|
+
},
|
|
475
|
+
},
|
|
458
476
|
iosTestLoop: {
|
|
459
477
|
appBundleId: "Test string",
|
|
460
478
|
appIpa: {
|