@maxim_mazurok/gapi.client.cloudidentity-v1beta1 0.0.20230516 → 0.0.20230530
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=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230530
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -31,9 +31,15 @@ declare namespace gapi.client {
|
|
|
31
31
|
string;
|
|
32
32
|
}
|
|
33
33
|
interface AndroidAttributes {
|
|
34
|
+
/** Whether the device passes Android CTS compliance. */
|
|
35
|
+
ctsProfileMatch?:
|
|
36
|
+
boolean;
|
|
34
37
|
/** Whether applications from unknown sources can be installed on device. */
|
|
35
38
|
enabledUnknownSources?:
|
|
36
39
|
boolean;
|
|
40
|
+
/** Whether any potentially harmful apps were detected on the device. */
|
|
41
|
+
hasPotentiallyHarmfulApps?:
|
|
42
|
+
boolean;
|
|
37
43
|
/** 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. */
|
|
38
44
|
ownerProfileAccount?:
|
|
39
45
|
boolean;
|
|
@@ -43,6 +49,12 @@ declare namespace gapi.client {
|
|
|
43
49
|
/** 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. */
|
|
44
50
|
supportsWorkProfile?:
|
|
45
51
|
boolean;
|
|
52
|
+
/** Whether Android verified boot status is GREEN. */
|
|
53
|
+
verifiedBoot?:
|
|
54
|
+
boolean;
|
|
55
|
+
/** Whether Google Play Protect Verify Apps is enabled. */
|
|
56
|
+
verifyAppsEnabled?:
|
|
57
|
+
boolean;
|
|
46
58
|
}
|
|
47
59
|
interface ApproveDeviceUserRequest {
|
|
48
60
|
/**
|
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: 20230530
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -94,10 +94,14 @@ gapi.load('client', async () => {
|
|
|
94
94
|
customer: "Test string",
|
|
95
95
|
device: {
|
|
96
96
|
androidSpecificAttributes: {
|
|
97
|
+
ctsProfileMatch: true,
|
|
97
98
|
enabledUnknownSources: true,
|
|
99
|
+
hasPotentiallyHarmfulApps: true,
|
|
98
100
|
ownerProfileAccount: true,
|
|
99
101
|
ownershipPrivilege: "Test string",
|
|
100
102
|
supportsWorkProfile: true,
|
|
103
|
+
verifiedBoot: true,
|
|
104
|
+
verifyAppsEnabled: true,
|
|
101
105
|
},
|
|
102
106
|
assetTag: "Test string",
|
|
103
107
|
basebandVersion: "Test string",
|