@maxim_mazurok/gapi.client.checks-v1alpha 0.0.20250126 → 0.0.20250128

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 +1 -1
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://checks.googleapis.com/$discovery/rest?version=v1alpha
12
- // Revision: 20250126
12
+ // Revision: 20250128
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
16
16
  declare namespace gapi.client {
17
17
  /** Load Checks API v1alpha */
18
18
  function load(
19
- urlOrObject: 'https://checks.googleapis.com/$discovery/rest?version=v1alpha'
19
+ urlOrObject: 'https://checks.googleapis.com/$discovery/rest?version=v1alpha',
20
20
  ): Promise<void>;
21
21
  /** @deprecated Please load APIs with discovery documents. */
22
22
  function load(name: 'checks', version: 'v1alpha'): Promise<void>;
@@ -503,7 +503,7 @@ declare namespace gapi.client {
503
503
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
504
504
  uploadType?: string;
505
505
  },
506
- body: CancelOperationRequest
506
+ body: CancelOperationRequest,
507
507
  ): Request<{}>;
508
508
  /** Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. */
509
509
  delete(request?: {
@@ -648,7 +648,7 @@ declare namespace gapi.client {
648
648
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
649
649
  uploadType?: string;
650
650
  },
651
- body: WaitOperationRequest
651
+ body: WaitOperationRequest,
652
652
  ): Request<Operation>;
653
653
  }
654
654
  interface ReportsResource {
@@ -865,7 +865,7 @@ declare namespace gapi.client {
865
865
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
866
866
  uploadType?: string;
867
867
  },
868
- body: GoogleChecksRepoScanV1alphaGenerateScanRequest
868
+ body: GoogleChecksRepoScanV1alphaGenerateScanRequest,
869
869
  ): Request<Operation>;
870
870
  /** Gets a repo scan. By default, only the name and results_uri fields are returned. You can include other fields by listing them in the `fields` URL query parameter. For example, `?fields=name,sources` will return the name and sources fields. */
871
871
  get(request?: {
@@ -989,7 +989,7 @@ declare namespace gapi.client {
989
989
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
990
990
  uploadType?: string;
991
991
  },
992
- body: GoogleChecksAisafetyV1alphaClassifyContentRequest
992
+ body: GoogleChecksAisafetyV1alphaClassifyContentRequest,
993
993
  ): Request<GoogleChecksAisafetyV1alphaClassifyContentResponse>;
994
994
  }
995
995
  interface MediaResource {
@@ -1049,7 +1049,7 @@ declare namespace gapi.client {
1049
1049
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1050
1050
  uploadType?: string;
1051
1051
  },
1052
- body: GoogleChecksReportV1alphaAnalyzeUploadRequest
1052
+ body: GoogleChecksReportV1alphaAnalyzeUploadRequest,
1053
1053
  ): Request<Operation>;
1054
1054
  }
1055
1055
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.checks-v1alpha",
3
- "version": "0.0.20250126",
3
+ "version": "0.0.20250128",
4
4
  "description": "TypeScript typings for Checks API v1alpha",
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.checks
33
- }
33
+ },
34
34
  );
35
35
  ```
36
36