@maxim_mazurok/gapi.client.testing-v1 0.0.20250121 → 0.0.20250124

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 +7 -7
  2. package/package.json +1 -1
  3. package/readme.md +2 -2
package/index.d.ts CHANGED
@@ -9,14 +9,14 @@
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: 20250121
12
+ // Revision: 20250124
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
16
16
  declare namespace gapi.client {
17
17
  /** Load Cloud Testing API v1 */
18
18
  function load(
19
- urlOrObject: 'https://testing.googleapis.com/$discovery/rest?version=v1'
19
+ urlOrObject: 'https://testing.googleapis.com/$discovery/rest?version=v1',
20
20
  ): Promise<void>;
21
21
  /** @deprecated Please load APIs with discovery documents. */
22
22
  function load(name: 'testing', version: 'v1'): Promise<void>;
@@ -840,7 +840,7 @@ declare namespace gapi.client {
840
840
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
841
841
  uploadType?: string;
842
842
  },
843
- body: FileReference
843
+ body: FileReference,
844
844
  ): Request<GetApkDetailsResponse>;
845
845
  }
846
846
  interface DeviceSessionsResource {
@@ -900,7 +900,7 @@ declare namespace gapi.client {
900
900
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
901
901
  uploadType?: string;
902
902
  },
903
- body: CancelDeviceSessionRequest
903
+ body: CancelDeviceSessionRequest,
904
904
  ): Request<{}>;
905
905
  /** POST /v1/projects/{project_id}/deviceSessions */
906
906
  create(request: {
@@ -958,7 +958,7 @@ declare namespace gapi.client {
958
958
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
959
959
  uploadType?: string;
960
960
  },
961
- body: DeviceSession
961
+ body: DeviceSession,
962
962
  ): Request<DeviceSession>;
963
963
  /** GET /v1/projects/{project_id}/deviceSessions/{device_session_id} Return a DeviceSession, which documents the allocation status and whether the device is allocated. Clients making requests from this API must poll GetDeviceSession. */
964
964
  get(request?: {
@@ -1080,7 +1080,7 @@ declare namespace gapi.client {
1080
1080
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1081
1081
  uploadType?: string;
1082
1082
  },
1083
- body: DeviceSession
1083
+ body: DeviceSession,
1084
1084
  ): Request<DeviceSession>;
1085
1085
  }
1086
1086
  interface TestMatricesResource {
@@ -1173,7 +1173,7 @@ declare namespace gapi.client {
1173
1173
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1174
1174
  uploadType?: string;
1175
1175
  },
1176
- body: TestMatrix
1176
+ body: TestMatrix,
1177
1177
  ): Request<TestMatrix>;
1178
1178
  /** Checks the status of a test matrix and the executions once they are created. The test matrix will contain the list of test executions to run if and only if the resultStorage.toolResultsExecution fields have been populated. Note: Flaky test executions may be added to the matrix at a later stage. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to read project - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the Test Matrix does not exist */
1179
1179
  get(request?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.testing-v1",
3
- "version": "0.0.20250121",
3
+ "version": "0.0.20250124",
4
4
  "description": "TypeScript typings for Cloud Testing API v1",
5
5
  "repository": {
6
6
  "type": "git",
package/readme.md CHANGED
@@ -30,7 +30,7 @@ gapi.client.load(
30
30
  () => {
31
31
  // now we can use:
32
32
  // gapi.client.testing
33
- }
33
+ },
34
34
  );
35
35
  ```
36
36
 
@@ -65,7 +65,7 @@ gapi.auth.authorize(
65
65
  } else {
66
66
  /* handle authorization error */
67
67
  }
68
- }
68
+ },
69
69
  );
70
70
  ```
71
71