@maxim_mazurok/gapi.client.privateca-v1 0.0.20230426 → 0.0.20230510
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 +4 -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://privateca.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230510
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -820,6 +820,9 @@ declare namespace gapi.client {
|
|
|
820
820
|
string;
|
|
821
821
|
}
|
|
822
822
|
interface PublishingOptions {
|
|
823
|
+
/** Optional. Specifies the encoding format of each CertificateAuthority's CA certificate and CRLs. If this is omitted, CA certificates and CRLs will be published in PEM. */
|
|
824
|
+
encodingFormat?:
|
|
825
|
+
string;
|
|
823
826
|
/**
|
|
824
827
|
* Optional. When true, publishes each CertificateAuthority's CA certificate and includes its URL in the "Authority Information Access" X.509 extension in all issued Certificates. If
|
|
825
828
|
* this is false, the CA certificate will not be published and the corresponding X.509 extension will not be written in issued certificates.
|
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: 20230510
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -173,6 +173,7 @@ gapi.load('client', async () => {
|
|
|
173
173
|
},
|
|
174
174
|
name: "Test string",
|
|
175
175
|
publishingOptions: {
|
|
176
|
+
encodingFormat: "Test string",
|
|
176
177
|
publishCaCert: true,
|
|
177
178
|
publishCrl: true,
|
|
178
179
|
},
|
|
@@ -340,6 +341,7 @@ gapi.load('client', async () => {
|
|
|
340
341
|
},
|
|
341
342
|
name: "Test string",
|
|
342
343
|
publishingOptions: {
|
|
344
|
+
encodingFormat: "Test string",
|
|
343
345
|
publishCaCert: true,
|
|
344
346
|
publishCrl: true,
|
|
345
347
|
},
|