@maxim_mazurok/gapi.client.iam-v1 0.0.20230511 → 0.0.20230518
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 +8 -1
- package/package.json +1 -1
- package/tests.ts +3 -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://iam.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230518
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -349,6 +349,13 @@ declare namespace gapi.client {
|
|
|
349
349
|
/** Required. The OIDC issuer URL. Must be an HTTPS endpoint. */
|
|
350
350
|
issuerUri?:
|
|
351
351
|
string;
|
|
352
|
+
/**
|
|
353
|
+
* Optional. OIDC JWKs in JSON String format. For details on the definition of a JWK, see https://tools.ietf.org/html/rfc7517. If not set, the `jwks_uri` from the discovery
|
|
354
|
+
* document(fetched from the .well-known path of the `issuer_uri`) will be used. Currently, RSA and EC asymmetric keys are supported. The JWK must use following format and include only
|
|
355
|
+
* the following fields: { "keys": [ { "kty": "RSA/EC", "alg": "", "use": "sig", "kid": "", "n": "", "e": "", "x": "", "y": "", "crv": "" } ] }
|
|
356
|
+
*/
|
|
357
|
+
jwksJson?:
|
|
358
|
+
string;
|
|
352
359
|
}
|
|
353
360
|
interface Operation {
|
|
354
361
|
/** If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. */
|
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: 20230518
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -435,6 +435,7 @@ gapi.load('client', async () => {
|
|
|
435
435
|
"Test string"
|
|
436
436
|
],
|
|
437
437
|
issuerUri: "Test string",
|
|
438
|
+
jwksJson: "Test string",
|
|
438
439
|
},
|
|
439
440
|
saml: {
|
|
440
441
|
idpMetadataXml: "Test string",
|
|
@@ -480,6 +481,7 @@ gapi.load('client', async () => {
|
|
|
480
481
|
"Test string"
|
|
481
482
|
],
|
|
482
483
|
issuerUri: "Test string",
|
|
484
|
+
jwksJson: "Test string",
|
|
483
485
|
},
|
|
484
486
|
saml: {
|
|
485
487
|
idpMetadataXml: "Test string",
|