@webex/event-dictionary-ts 1.0.2221 → 1.0.2222
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.
|
@@ -4047,6 +4047,16 @@
|
|
|
4047
4047
|
}
|
|
4048
4048
|
}
|
|
4049
4049
|
},
|
|
4050
|
+
"webexAppManagementType": {
|
|
4051
|
+
"type": "string",
|
|
4052
|
+
"description": "Management mode applied to the Webex app.",
|
|
4053
|
+
"enum": [
|
|
4054
|
+
"UNMANAGED",
|
|
4055
|
+
"MDM_ONLY",
|
|
4056
|
+
"MAM_ONLY",
|
|
4057
|
+
"MDM_AND_MAM"
|
|
4058
|
+
]
|
|
4059
|
+
},
|
|
4050
4060
|
"emmVendorId": {
|
|
4051
4061
|
"type": "string"
|
|
4052
4062
|
},
|
|
@@ -600,6 +600,16 @@
|
|
|
600
600
|
}
|
|
601
601
|
}
|
|
602
602
|
},
|
|
603
|
+
"webexAppManagementType": {
|
|
604
|
+
"type": "string",
|
|
605
|
+
"description": "Management mode applied to the Webex app.",
|
|
606
|
+
"enum": [
|
|
607
|
+
"UNMANAGED",
|
|
608
|
+
"MDM_ONLY",
|
|
609
|
+
"MAM_ONLY",
|
|
610
|
+
"MDM_AND_MAM"
|
|
611
|
+
]
|
|
612
|
+
},
|
|
603
613
|
"emmVendorId": {
|
|
604
614
|
"type": "string"
|
|
605
615
|
},
|
|
@@ -4693,6 +4703,16 @@
|
|
|
4693
4703
|
}
|
|
4694
4704
|
}
|
|
4695
4705
|
},
|
|
4706
|
+
"webexAppManagementType": {
|
|
4707
|
+
"type": "string",
|
|
4708
|
+
"description": "Management mode applied to the Webex app.",
|
|
4709
|
+
"enum": [
|
|
4710
|
+
"UNMANAGED",
|
|
4711
|
+
"MDM_ONLY",
|
|
4712
|
+
"MAM_ONLY",
|
|
4713
|
+
"MDM_AND_MAM"
|
|
4714
|
+
]
|
|
4715
|
+
},
|
|
4696
4716
|
"emmVendorId": {
|
|
4697
4717
|
"type": "string"
|
|
4698
4718
|
},
|
|
@@ -349,6 +349,10 @@ export interface Event {
|
|
|
349
349
|
totalSize?: number;
|
|
350
350
|
additionalProperties?: never;
|
|
351
351
|
};
|
|
352
|
+
/**
|
|
353
|
+
* Management mode applied to the Webex app.
|
|
354
|
+
*/
|
|
355
|
+
webexAppManagementType?: "UNMANAGED" | "MDM_ONLY" | "MAM_ONLY" | "MDM_AND_MAM";
|
|
352
356
|
emmVendorId?: string;
|
|
353
357
|
isHybridMedia?: boolean;
|
|
354
358
|
originData?: {};
|
|
@@ -2167,6 +2171,10 @@ export interface Event {
|
|
|
2167
2171
|
totalSize?: number;
|
|
2168
2172
|
additionalProperties?: never;
|
|
2169
2173
|
};
|
|
2174
|
+
/**
|
|
2175
|
+
* Management mode applied to the Webex app.
|
|
2176
|
+
*/
|
|
2177
|
+
webexAppManagementType?: "UNMANAGED" | "MDM_ONLY" | "MAM_ONLY" | "MDM_AND_MAM";
|
|
2170
2178
|
emmVendorId?: string;
|
|
2171
2179
|
isHybridMedia?: boolean;
|
|
2172
2180
|
originData?: {};
|
|
@@ -18831,6 +18839,10 @@ export interface ClientEvent {
|
|
|
18831
18839
|
totalSize?: number;
|
|
18832
18840
|
additionalProperties?: never;
|
|
18833
18841
|
};
|
|
18842
|
+
/**
|
|
18843
|
+
* Management mode applied to the Webex app.
|
|
18844
|
+
*/
|
|
18845
|
+
webexAppManagementType?: "UNMANAGED" | "MDM_ONLY" | "MAM_ONLY" | "MDM_AND_MAM";
|
|
18834
18846
|
emmVendorId?: string;
|
|
18835
18847
|
isHybridMedia?: boolean;
|
|
18836
18848
|
originData?: {};
|
package/package.json
CHANGED