@maxim_mazurok/gapi.client.testing-v1 0.0.20221101 → 0.0.20221122

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.
Files changed (3) hide show
  1. package/index.d.ts +17 -1
  2. package/package.json +1 -1
  3. 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: 20221101
12
+ // Revision: 20221122
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -199,12 +199,16 @@ declare namespace gapi.client {
199
199
  intentFilters?: IntentFilter[];
200
200
  /** Maximum API level on which the application is designed to run. */
201
201
  maxSdkVersion?: number;
202
+ /** Meta-data tags defined in the manifest. */
203
+ metadata?: Metadata[];
202
204
  /** Minimum API level required for the application to run. */
203
205
  minSdkVersion?: number;
204
206
  /** Full Java-style package name for this application, e.g. "com.example.foo". */
205
207
  packageName?: string;
206
208
  /** Specifies the API Level on which the application is designed to run. */
207
209
  targetSdkVersion?: number;
210
+ /** Feature usage tags defined in the manifest. */
211
+ usesFeature?: UsesFeature[];
208
212
  /** Permissions declared to be used by the application */
209
213
  usesPermission?: string[];
210
214
  /** Version number used internally by the app. */
@@ -449,6 +453,12 @@ declare namespace gapi.client {
449
453
  */
450
454
  testTargetsForShard?: TestTargetsForShard[];
451
455
  }
456
+ interface Metadata {
457
+ /** The android:name value */
458
+ name?: string;
459
+ /** The android:value value */
460
+ value?: string;
461
+ }
452
462
  interface NetworkConfiguration {
453
463
  /** The emulation rule applying to the download traffic. */
454
464
  downRule?: TrafficRule;
@@ -735,6 +745,12 @@ declare namespace gapi.client {
735
745
  */
736
746
  numShards?: number;
737
747
  }
748
+ interface UsesFeature {
749
+ /** The android:required value */
750
+ isRequired?: boolean;
751
+ /** The android:name value */
752
+ name?: string;
753
+ }
738
754
  interface XcodeVersion {
739
755
  /** Tags for this Xcode version. Example: "default". */
740
756
  tags?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.testing-v1",
3
- "version": "0.0.20221101",
3
+ "version": "0.0.20221122",
4
4
  "description": "TypeScript typings for Cloud Testing API v1",
5
5
  "license": "MIT",
6
6
  "author": {
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: 20221101
6
+ // Revision: 20221122
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */