@maxim_mazurok/gapi.client.admin-directory_v1 0.0.20230425 → 0.0.20230516
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 +7373 -3753
- package/package.json +1 -1
- package/readme.md +1 -1
- package/tests.ts +5 -2
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -488,7 +488,7 @@ Retrieves a user.
|
|
|
488
488
|
await gapi.client.directory.users.get({ userKey: "userKey", });
|
|
489
489
|
|
|
490
490
|
/*
|
|
491
|
-
Creates a user.
|
|
491
|
+
Creates a user. Mutate calls immediately following user creation might sometimes fail as the user isn't fully created due to propagation delay in our backends. Check the error details for the "User creation is not complete" message to see if this is the case. Retrying the calls after some time can help in this case.
|
|
492
492
|
*/
|
|
493
493
|
await gapi.client.directory.users.insert({ });
|
|
494
494
|
|
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: 20230516
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -1470,7 +1470,10 @@ gapi.load('client', async () => {
|
|
|
1470
1470
|
userKey: "Test string",
|
|
1471
1471
|
viewType: "Test string",
|
|
1472
1472
|
});
|
|
1473
|
-
/**
|
|
1473
|
+
/**
|
|
1474
|
+
* Creates a user. Mutate calls immediately following user creation might sometimes fail as the user isn't fully created due to propagation delay in our backends. Check the error details
|
|
1475
|
+
* for the "User creation is not complete" message to see if this is the case. Retrying the calls after some time can help in this case.
|
|
1476
|
+
*/
|
|
1474
1477
|
await gapi.client.directory.users.insert({
|
|
1475
1478
|
}, {
|
|
1476
1479
|
addresses: 42,
|