@maxim_mazurok/gapi.client.cloudidentity-v1 0.0.20230530 → 0.0.20230613
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 +13 -1
- package/package.json +1 -1
- package/tests.ts +5 -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://cloudidentity.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230613
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -140,9 +140,15 @@ declare namespace gapi.client {
|
|
|
140
140
|
Group[];
|
|
141
141
|
}
|
|
142
142
|
interface GoogleAppsCloudidentityDevicesV1AndroidAttributes {
|
|
143
|
+
/** Whether the device passes Android CTS compliance. */
|
|
144
|
+
ctsProfileMatch?:
|
|
145
|
+
boolean;
|
|
143
146
|
/** Whether applications from unknown sources can be installed on device. */
|
|
144
147
|
enabledUnknownSources?:
|
|
145
148
|
boolean;
|
|
149
|
+
/** Whether any potentially harmful apps were detected on the device. */
|
|
150
|
+
hasPotentiallyHarmfulApps?:
|
|
151
|
+
boolean;
|
|
146
152
|
/** Whether this account is on an owner/primary profile. For phones, only true for owner profiles. Android 4+ devices can have secondary or restricted user profiles. */
|
|
147
153
|
ownerProfileAccount?:
|
|
148
154
|
boolean;
|
|
@@ -152,6 +158,12 @@ declare namespace gapi.client {
|
|
|
152
158
|
/** Whether device supports Android work profiles. If false, this service will not block access to corp data even if an administrator turns on the "Enforce Work Profile" policy. */
|
|
153
159
|
supportsWorkProfile?:
|
|
154
160
|
boolean;
|
|
161
|
+
/** Whether Android verified boot status is GREEN. */
|
|
162
|
+
verifiedBoot?:
|
|
163
|
+
boolean;
|
|
164
|
+
/** Whether Google Play Protect Verify Apps is enabled. */
|
|
165
|
+
verifyAppsEnabled?:
|
|
166
|
+
boolean;
|
|
155
167
|
}
|
|
156
168
|
// tslint:disable-next-line:no-empty-interface
|
|
157
169
|
interface GoogleAppsCloudidentityDevicesV1ApproveDeviceUserMetadata {
|
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: 20230613
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -97,10 +97,14 @@ gapi.load('client', async () => {
|
|
|
97
97
|
customer: "Test string",
|
|
98
98
|
}, {
|
|
99
99
|
androidSpecificAttributes: {
|
|
100
|
+
ctsProfileMatch: true,
|
|
100
101
|
enabledUnknownSources: true,
|
|
102
|
+
hasPotentiallyHarmfulApps: true,
|
|
101
103
|
ownerProfileAccount: true,
|
|
102
104
|
ownershipPrivilege: "Test string",
|
|
103
105
|
supportsWorkProfile: true,
|
|
106
|
+
verifiedBoot: true,
|
|
107
|
+
verifyAppsEnabled: true,
|
|
104
108
|
},
|
|
105
109
|
assetTag: "Test string",
|
|
106
110
|
basebandVersion: "Test string",
|