@maxim_mazurok/gapi.client.androidmanagement-v1 0.0.20230918 → 0.0.20231004
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 +11 -2
- 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://androidmanagement.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231004
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -547,7 +547,7 @@ declare namespace gapi.client {
|
|
|
547
547
|
*/
|
|
548
548
|
exemptionsToShowWorkContactsInPersonalProfile?:
|
|
549
549
|
PackageNameList;
|
|
550
|
-
/** Whether contacts stored in the work profile
|
|
550
|
+
/** Whether personal apps can access contacts stored in the work profile.See also exemptions_to_show_work_contacts_in_personal_profile. */
|
|
551
551
|
showWorkContactsInPersonalProfile?:
|
|
552
552
|
string;
|
|
553
553
|
/**
|
|
@@ -714,6 +714,12 @@ declare namespace gapi.client {
|
|
|
714
714
|
/** Controls whether airplane mode can be toggled by the user or not. */
|
|
715
715
|
airplaneModeState?:
|
|
716
716
|
string;
|
|
717
|
+
/** Controls whether cellular 2G setting can be toggled by the user or not. */
|
|
718
|
+
cellularTwoGState?:
|
|
719
|
+
string;
|
|
720
|
+
/** Controls the state of the ultra wideband setting and whether the user can toggle it on or off. */
|
|
721
|
+
ultraWidebandState?:
|
|
722
|
+
string;
|
|
717
723
|
/** Controls current state of Wi-Fi and if user can change its state. */
|
|
718
724
|
wifiState?:
|
|
719
725
|
string;
|
|
@@ -1955,6 +1961,9 @@ declare namespace gapi.client {
|
|
|
1955
1961
|
*/
|
|
1956
1962
|
signinUrl?:
|
|
1957
1963
|
string;
|
|
1964
|
+
/** An EMM-specified tag to distinguish between instances of SigninDetail. */
|
|
1965
|
+
tokenTag?:
|
|
1966
|
+
string;
|
|
1958
1967
|
}
|
|
1959
1968
|
interface SignupUrl {
|
|
1960
1969
|
/** The name of the resource. Use this value in the signupUrl field when calling enterprises.create to complete the enterprise signup flow. */
|
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: 20231004
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -63,6 +63,7 @@ gapi.load('client', async () => {
|
|
|
63
63
|
qrCode: "Test string",
|
|
64
64
|
signinEnrollmentToken: "Test string",
|
|
65
65
|
signinUrl: "Test string",
|
|
66
|
+
tokenTag: "Test string",
|
|
66
67
|
}
|
|
67
68
|
],
|
|
68
69
|
termsAndConditions: [
|
|
@@ -129,6 +130,7 @@ gapi.load('client', async () => {
|
|
|
129
130
|
qrCode: "Test string",
|
|
130
131
|
signinEnrollmentToken: "Test string",
|
|
131
132
|
signinUrl: "Test string",
|
|
133
|
+
tokenTag: "Test string",
|
|
132
134
|
}
|
|
133
135
|
],
|
|
134
136
|
termsAndConditions: [
|
|
@@ -693,6 +695,8 @@ gapi.load('client', async () => {
|
|
|
693
695
|
},
|
|
694
696
|
deviceRadioState: {
|
|
695
697
|
airplaneModeState: "Test string",
|
|
698
|
+
cellularTwoGState: "Test string",
|
|
699
|
+
ultraWidebandState: "Test string",
|
|
696
700
|
wifiState: "Test string",
|
|
697
701
|
},
|
|
698
702
|
encryptionPolicy: "Test string",
|