@maxim_mazurok/gapi.client.testing-v1 0.0.20230119 → 0.0.20230127
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 +17 -1
- package/package.json +1 -1
- package/tests.ts +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: 20230127
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -102,6 +102,8 @@ declare namespace gapi.client {
|
|
|
102
102
|
manufacturer?: string;
|
|
103
103
|
/** The human-readable marketing name for this device model. Examples: "Nexus 5", "Galaxy S5". */
|
|
104
104
|
name?: string;
|
|
105
|
+
/** Version-specific information of an Android model. */
|
|
106
|
+
perVersionInfo?: PerAndroidVersionInfo[];
|
|
105
107
|
/** Screen density in DPI. This corresponds to ro.sf.lcd_density */
|
|
106
108
|
screenDensity?: number;
|
|
107
109
|
/** Screen size in the horizontal (X) dimension measured in pixels. */
|
|
@@ -355,6 +357,8 @@ declare namespace gapi.client {
|
|
|
355
357
|
id?: string;
|
|
356
358
|
/** The human-readable name for this device model. Examples: "iPhone 4s", "iPad Mini 2". */
|
|
357
359
|
name?: string;
|
|
360
|
+
/** Version-specific information of an iOS model. */
|
|
361
|
+
perVersionInfo?: PerIosVersionInfo[];
|
|
358
362
|
/** Screen density in DPI. */
|
|
359
363
|
screenDensity?: number;
|
|
360
364
|
/** Screen size in the horizontal (X) dimension measured in pixels. */
|
|
@@ -487,6 +491,18 @@ declare namespace gapi.client {
|
|
|
487
491
|
/** Tags for this dimension. Example: "default". */
|
|
488
492
|
tags?: string[];
|
|
489
493
|
}
|
|
494
|
+
interface PerAndroidVersionInfo {
|
|
495
|
+
/** The number of online devices for an Android version. */
|
|
496
|
+
deviceCapacity?: string;
|
|
497
|
+
/** An Android version. */
|
|
498
|
+
versionId?: string;
|
|
499
|
+
}
|
|
500
|
+
interface PerIosVersionInfo {
|
|
501
|
+
/** The number of online devices for an iOS version. */
|
|
502
|
+
deviceCapacity?: string;
|
|
503
|
+
/** An iOS version. */
|
|
504
|
+
versionId?: string;
|
|
505
|
+
}
|
|
490
506
|
interface ProvidedSoftwareCatalog {
|
|
491
507
|
/**
|
|
492
508
|
* A string representing the current version of AndroidX Test Orchestrator that is used in the environment. The package is available at
|
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: 20230127
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|