@maxim_mazurok/gapi.client.admin-directory_v1 0.0.20231107 → 0.0.20231117
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 +29 -3
- package/package.json +1 -1
- package/tests.ts +1 -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://admin.googleapis.com/$discovery/rest?version=directory_v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231117
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1659,7 +1659,7 @@ declare namespace gapi.client {
|
|
|
1659
1659
|
{ [P in string]: UserCustomProperties };
|
|
1660
1660
|
deletionTime?:
|
|
1661
1661
|
string;
|
|
1662
|
-
/** The list of the user's email addresses. The maximum allowed data size for this field is 10KB. */
|
|
1662
|
+
/** The list of the user's email addresses. The maximum allowed data size for this field is 10KB. This excludes `publicKeyEncryptionCertificates`. */
|
|
1663
1663
|
emails?:
|
|
1664
1664
|
any;
|
|
1665
1665
|
/** Output only. ETag of the resource. */
|
|
@@ -1881,6 +1881,19 @@ declare namespace gapi.client {
|
|
|
1881
1881
|
/** If this is user's primary email. Only one entry could be marked as primary. */
|
|
1882
1882
|
primary?:
|
|
1883
1883
|
boolean;
|
|
1884
|
+
/** Public Key Encryption Certificates. Current limit: 1 per email address, and 5 per user. */
|
|
1885
|
+
public_key_encryption_certificates?:
|
|
1886
|
+
{
|
|
1887
|
+
/** X.509 encryption certificate in `PEM` format. Must only be an end-entity (leaf) certificate. */
|
|
1888
|
+
certificate?:
|
|
1889
|
+
string;
|
|
1890
|
+
/** Whether this is the default certificate for the given email address. */
|
|
1891
|
+
is_default?:
|
|
1892
|
+
boolean;
|
|
1893
|
+
/** Denotes the certificate's state in its lifecycle. Possible values are `not_yet_validated`, `valid`, `invalid`, `expired`, and `revoked`. */
|
|
1894
|
+
state?:
|
|
1895
|
+
string;
|
|
1896
|
+
};
|
|
1884
1897
|
/**
|
|
1885
1898
|
* Each entry can have a type which indicates standard types of that entry. For example email could be of home, work etc. In addition to the standard type, an entry can have a custom
|
|
1886
1899
|
* type and can take any value Such types should have the CUSTOM value as type and also have a customType value.
|
|
@@ -5101,7 +5114,7 @@ declare namespace gapi.client {
|
|
|
5101
5114
|
{ [P in string]: UserCustomProperties };
|
|
5102
5115
|
deletionTime?:
|
|
5103
5116
|
string;
|
|
5104
|
-
/** The list of the user's email addresses. The maximum allowed data size for this field is 10KB. */
|
|
5117
|
+
/** The list of the user's email addresses. The maximum allowed data size for this field is 10KB. This excludes `publicKeyEncryptionCertificates`. */
|
|
5105
5118
|
emails?:
|
|
5106
5119
|
any;
|
|
5107
5120
|
/** Output only. ETag of the resource. */
|
|
@@ -5323,6 +5336,19 @@ declare namespace gapi.client {
|
|
|
5323
5336
|
/** If this is user's primary email. Only one entry could be marked as primary. */
|
|
5324
5337
|
primary?:
|
|
5325
5338
|
boolean;
|
|
5339
|
+
/** Public Key Encryption Certificates. Current limit: 1 per email address, and 5 per user. */
|
|
5340
|
+
public_key_encryption_certificates?:
|
|
5341
|
+
{
|
|
5342
|
+
/** X.509 encryption certificate in `PEM` format. Must only be an end-entity (leaf) certificate. */
|
|
5343
|
+
certificate?:
|
|
5344
|
+
string;
|
|
5345
|
+
/** Whether this is the default certificate for the given email address. */
|
|
5346
|
+
is_default?:
|
|
5347
|
+
boolean;
|
|
5348
|
+
/** Denotes the certificate's state in its lifecycle. Possible values are `not_yet_validated`, `valid`, `invalid`, `expired`, and `revoked`. */
|
|
5349
|
+
state?:
|
|
5350
|
+
string;
|
|
5351
|
+
};
|
|
5326
5352
|
/**
|
|
5327
5353
|
* Each entry can have a type which indicates standard types of that entry. For example email could be of home, work etc. In addition to the standard type, an entry can have a custom
|
|
5328
5354
|
* type and can take any value Such types should have the CUSTOM value as type and also have a customType value.
|
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: 20231117
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|