@maxim_mazurok/gapi.client.androidmanagement-v1 0.0.20230828 → 0.0.20230911
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 -1
- package/package.json +1 -1
- package/tests.ts +6 -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: 20230911
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -539,6 +539,14 @@ declare namespace gapi.client {
|
|
|
539
539
|
*/
|
|
540
540
|
crossProfileDataSharing?:
|
|
541
541
|
string;
|
|
542
|
+
/**
|
|
543
|
+
* List of apps which are excluded from the ShowWorkContactsInPersonalProfile setting. For this to be set, ShowWorkContactsInPersonalProfile must be set to one of the following values:
|
|
544
|
+
* * SHOW_WORK_CONTACTS_IN_PERSONAL_PROFILE_ALLOWED. In this case, these exemptions act as a blocklist. * SHOW_WORK_CONTACTS_IN_PERSONAL_PROFILE_DISALLOWED. In this case, these
|
|
545
|
+
* exemptions act as an allowlist. * SHOW_WORK_CONTACTS_IN_PERSONAL_PROFILE_DISALLOWED_EXCEPT_SYSTEM. In this case, these exemptions act as an allowlist, in addition to the already
|
|
546
|
+
* allowlisted system apps. Supported on Android 14 and above. A nonComplianceDetail with API_LEVEL is reported if the Android version is less than 14.
|
|
547
|
+
*/
|
|
548
|
+
exemptionsToShowWorkContactsInPersonalProfile?:
|
|
549
|
+
PackageNameList;
|
|
542
550
|
/** Whether contacts stored in the work profile can be shown in personal profile contact searches and incoming calls. */
|
|
543
551
|
showWorkContactsInPersonalProfile?:
|
|
544
552
|
string;
|
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: 20230911
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -668,6 +668,11 @@ gapi.load('client', async () => {
|
|
|
668
668
|
crossProfilePolicies: {
|
|
669
669
|
crossProfileCopyPaste: "Test string",
|
|
670
670
|
crossProfileDataSharing: "Test string",
|
|
671
|
+
exemptionsToShowWorkContactsInPersonalProfile: {
|
|
672
|
+
packageNames: [
|
|
673
|
+
"Test string"
|
|
674
|
+
],
|
|
675
|
+
},
|
|
671
676
|
showWorkContactsInPersonalProfile: "Test string",
|
|
672
677
|
workProfileWidgetsDefault: "Test string",
|
|
673
678
|
},
|