@maxim_mazurok/gapi.client.cloudidentity-v1 0.1.20251007 → 0.1.20251027

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 +3 -3
  2. package/package.json +1 -1
  3. package/readme.md +2 -2
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://cloudidentity.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20251007
12
+ // Revision: 20251027
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -3291,7 +3291,7 @@ declare namespace gapi.client {
3291
3291
  ): Request<Operation>;
3292
3292
  }
3293
3293
  interface PoliciesResource {
3294
- /** Get a Policy */
3294
+ /** Get a policy. */
3295
3295
  get(request?: {
3296
3296
  /** V1 error format. */
3297
3297
  '$.xgafv'?: string;
@@ -3318,7 +3318,7 @@ declare namespace gapi.client {
3318
3318
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3319
3319
  uploadType?: string;
3320
3320
  }): Request<Policy>;
3321
- /** List Policies */
3321
+ /** List policies. */
3322
3322
  list(request?: {
3323
3323
  /** V1 error format. */
3324
3324
  '$.xgafv'?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.cloudidentity-v1",
3
- "version": "0.1.20251007",
3
+ "version": "0.1.20251027",
4
4
  "description": "TypeScript typings for Cloud Identity API v1",
5
5
  "repository": {
6
6
  "type": "git",
package/readme.md CHANGED
@@ -247,12 +247,12 @@ Updates an InboundSsoAssignment. The body of this request is the `inbound_sso_as
247
247
  await gapi.client.cloudidentity.inboundSsoAssignments.patch({name: 'name'});
248
248
 
249
249
  /*
250
- Get a Policy
250
+ Get a policy.
251
251
  */
252
252
  await gapi.client.cloudidentity.policies.get({name: 'name'});
253
253
 
254
254
  /*
255
- List Policies
255
+ List policies.
256
256
  */
257
257
  await gapi.client.cloudidentity.policies.list({});
258
258
  ```