@maxim_mazurok/gapi.client.androidmanagement-v1 0.0.20221024 → 0.0.20221118
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 +9 -2
- package/package.json +1 -1
- package/tests.ts +3 -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: 20221118
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -154,7 +154,7 @@ declare namespace gapi.client {
|
|
|
154
154
|
extensionConfig?: ExtensionConfig;
|
|
155
155
|
/** The type of installation to perform. */
|
|
156
156
|
installType?: string;
|
|
157
|
-
/** Whether the app is allowed to lock itself in full-screen mode. DEPRECATED. Use InstallType KIOSK or kioskCustomLauncherEnabled to
|
|
157
|
+
/** Whether the app is allowed to lock itself in full-screen mode. DEPRECATED. Use InstallType KIOSK or kioskCustomLauncherEnabled to configure a dedicated device. */
|
|
158
158
|
lockTaskAllowed?: boolean;
|
|
159
159
|
/**
|
|
160
160
|
* Managed configuration applied to the app. The format for the configuration is dictated by the ManagedProperty values supported by the app. Each field name in the managed
|
|
@@ -174,6 +174,8 @@ declare namespace gapi.client {
|
|
|
174
174
|
packageName?: string;
|
|
175
175
|
/** Explicit permission grants or denials for the app. These values override the default_permission_policy and permission_grants which apply to all apps. */
|
|
176
176
|
permissionGrants?: PermissionGrant[];
|
|
177
|
+
/** Specifies whether the app installed in the work profile is allowed to add widgets to the home screen. */
|
|
178
|
+
workProfileWidgets?: string;
|
|
177
179
|
}
|
|
178
180
|
interface ApplicationReport {
|
|
179
181
|
/** The source of the package. */
|
|
@@ -393,6 +395,11 @@ declare namespace gapi.client {
|
|
|
393
395
|
crossProfileDataSharing?: string;
|
|
394
396
|
/** Whether contacts stored in the work profile can be shown in personal profile contact searches and incoming calls. */
|
|
395
397
|
showWorkContactsInPersonalProfile?: string;
|
|
398
|
+
/**
|
|
399
|
+
* Specifies the default behaviour for work profile widgets. If the policy does not specify work_profile_widgets for a specific application, it will behave according to the value
|
|
400
|
+
* specified here.
|
|
401
|
+
*/
|
|
402
|
+
workProfileWidgetsDefault?: string;
|
|
396
403
|
}
|
|
397
404
|
interface CryptoSelfTestCompletedEvent {
|
|
398
405
|
/** Whether the test succeeded. */
|
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: 20221118
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -595,6 +595,7 @@ gapi.load('client', async () => {
|
|
|
595
595
|
policy: "Test string",
|
|
596
596
|
}
|
|
597
597
|
],
|
|
598
|
+
workProfileWidgets: "Test string",
|
|
598
599
|
}
|
|
599
600
|
],
|
|
600
601
|
autoDateAndTimeZone: "Test string",
|
|
@@ -637,6 +638,7 @@ gapi.load('client', async () => {
|
|
|
637
638
|
crossProfileCopyPaste: "Test string",
|
|
638
639
|
crossProfileDataSharing: "Test string",
|
|
639
640
|
showWorkContactsInPersonalProfile: "Test string",
|
|
641
|
+
workProfileWidgetsDefault: "Test string",
|
|
640
642
|
},
|
|
641
643
|
dataRoamingDisabled: true,
|
|
642
644
|
debuggingFeaturesAllowed: true,
|