@maxim_mazurok/gapi.client.cloudidentity-v1 0.0.20220822 → 0.0.20220830
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 +1 -1
- package/package.json +1 -1
- package/readme.md +0 -9
- package/tests.ts +1 -7
package/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
11
11
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
12
12
|
// Generated from: https://cloudidentity.googleapis.com/$discovery/rest?version=v1
|
|
13
|
-
// Revision:
|
|
13
|
+
// Revision: 20220830
|
|
14
14
|
|
|
15
15
|
/// <reference types="gapi.client" />
|
|
16
16
|
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -45,9 +45,6 @@ Don't forget to authenticate your client before sending any request to resources
|
|
|
45
45
|
// declare client_id registered in Google Developers Console
|
|
46
46
|
var client_id = '',
|
|
47
47
|
scope = [
|
|
48
|
-
// Private Service: https://www.googleapis.com/auth/cloud-identity
|
|
49
|
-
'https://www.googleapis.com/auth/cloud-identity',
|
|
50
|
-
|
|
51
48
|
// Private Service: https://www.googleapis.com/auth/cloud-identity.devices
|
|
52
49
|
'https://www.googleapis.com/auth/cloud-identity.devices',
|
|
53
50
|
|
|
@@ -63,12 +60,6 @@ var client_id = '',
|
|
|
63
60
|
// See any Cloud Identity Groups that you can access, including group members and their emails
|
|
64
61
|
'https://www.googleapis.com/auth/cloud-identity.groups.readonly',
|
|
65
62
|
|
|
66
|
-
// See, send, or cancel any Cloud Identity UserInvitations to join your organization to users
|
|
67
|
-
'https://www.googleapis.com/auth/cloud-identity.userinvitations',
|
|
68
|
-
|
|
69
|
-
// See, send, or cancel any Cloud Identity UserInvitations to join your organization to users
|
|
70
|
-
'https://www.googleapis.com/auth/cloud-identity.userinvitations.readonly',
|
|
71
|
-
|
|
72
63
|
// See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
|
|
73
64
|
'https://www.googleapis.com/auth/cloud-platform',
|
|
74
65
|
],
|
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: 20220830
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -15,8 +15,6 @@ gapi.load('client', async () => {
|
|
|
15
15
|
/** declare client_id registered in Google Developers Console */
|
|
16
16
|
const client_id = '<<PUT YOUR CLIENT ID HERE>>';
|
|
17
17
|
const scope = [
|
|
18
|
-
/** Private Service: https://www.googleapis.com/auth/cloud-identity */
|
|
19
|
-
'https://www.googleapis.com/auth/cloud-identity',
|
|
20
18
|
/** Private Service: https://www.googleapis.com/auth/cloud-identity.devices */
|
|
21
19
|
'https://www.googleapis.com/auth/cloud-identity.devices',
|
|
22
20
|
/** See your device details */
|
|
@@ -27,10 +25,6 @@ gapi.load('client', async () => {
|
|
|
27
25
|
'https://www.googleapis.com/auth/cloud-identity.groups',
|
|
28
26
|
/** See any Cloud Identity Groups that you can access, including group members and their emails */
|
|
29
27
|
'https://www.googleapis.com/auth/cloud-identity.groups.readonly',
|
|
30
|
-
/** See, send, or cancel any Cloud Identity UserInvitations to join your organization to users */
|
|
31
|
-
'https://www.googleapis.com/auth/cloud-identity.userinvitations',
|
|
32
|
-
/** See, send, or cancel any Cloud Identity UserInvitations to join your organization to users */
|
|
33
|
-
'https://www.googleapis.com/auth/cloud-identity.userinvitations.readonly',
|
|
34
28
|
/** See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account. */
|
|
35
29
|
'https://www.googleapis.com/auth/cloud-platform',
|
|
36
30
|
];
|