@maxim_mazurok/gapi.client.admin-directory_v1 0.4.20260513 → 0.4.20260522
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 +6 -6
- package/package.json +1 -1
- package/readme.md +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: 20260522
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -659,9 +659,9 @@ declare namespace gapi.client {
|
|
|
659
659
|
commandId?: string;
|
|
660
660
|
}
|
|
661
661
|
interface DirectoryUsersCreateGuestRequest {
|
|
662
|
-
/** Optional. Immutable ID of the Google Workspace account. */
|
|
662
|
+
/** Optional. Immutable ID of the Google Workspace account. Only required when request is created by a service account. Defaults to the authenticated user's customer ID otherwise. */
|
|
663
663
|
customer?: string;
|
|
664
|
-
/**
|
|
664
|
+
/** Required. External email of the guest user being created. */
|
|
665
665
|
primaryGuestEmail?: string;
|
|
666
666
|
}
|
|
667
667
|
interface DomainAlias {
|
|
@@ -3229,9 +3229,9 @@ declare namespace gapi.client {
|
|
|
3229
3229
|
commandId?: string;
|
|
3230
3230
|
}
|
|
3231
3231
|
interface DirectoryUsersCreateGuestRequest {
|
|
3232
|
-
/** Optional. Immutable ID of the Google Workspace account. */
|
|
3232
|
+
/** Optional. Immutable ID of the Google Workspace account. Only required when request is created by a service account. Defaults to the authenticated user's customer ID otherwise. */
|
|
3233
3233
|
customer?: string;
|
|
3234
|
-
/**
|
|
3234
|
+
/** Required. External email of the guest user being created. */
|
|
3235
3235
|
primaryGuestEmail?: string;
|
|
3236
3236
|
}
|
|
3237
3237
|
interface DomainAlias {
|
|
@@ -8318,7 +8318,7 @@ declare namespace gapi.client {
|
|
|
8318
8318
|
): Request<UserPhoto>;
|
|
8319
8319
|
}
|
|
8320
8320
|
interface UsersResource {
|
|
8321
|
-
/** Create a guest user with access to a [subset of Workspace capabilities](https://support.google.com/a/answer/16558545). This feature is currently in
|
|
8321
|
+
/** Create a guest user with access to a [subset of Workspace capabilities](https://support.google.com/a/answer/16558545). This feature is currently in Open Beta. */
|
|
8322
8322
|
createGuest(request: {
|
|
8323
8323
|
/** V1 error format. */
|
|
8324
8324
|
'$.xgafv'?: '1' | '2';
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -594,7 +594,7 @@ Turns off 2-Step Verification for user.
|
|
|
594
594
|
await gapi.client.directory.twoStepVerification.turnOff({userKey: 'userKey'});
|
|
595
595
|
|
|
596
596
|
/*
|
|
597
|
-
Create a guest user with access to a [subset of Workspace capabilities](https://support.google.com/a/answer/16558545). This feature is currently in
|
|
597
|
+
Create a guest user with access to a [subset of Workspace capabilities](https://support.google.com/a/answer/16558545). This feature is currently in Open Beta.
|
|
598
598
|
*/
|
|
599
599
|
await gapi.client.directory.users.createGuest({});
|
|
600
600
|
|