@webex/event-dictionary-ts 1.0.1430 → 1.0.1432
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.
|
@@ -6142,6 +6142,19 @@
|
|
|
6142
6142
|
"PresenterAndAudience"
|
|
6143
6143
|
]
|
|
6144
6144
|
},
|
|
6145
|
+
"roomTypes": {
|
|
6146
|
+
"type": "array",
|
|
6147
|
+
"items": {
|
|
6148
|
+
"type": "string",
|
|
6149
|
+
"description": "provisioning room type for CE devices",
|
|
6150
|
+
"enum": [
|
|
6151
|
+
"Briefing",
|
|
6152
|
+
"Classroom",
|
|
6153
|
+
"Standard",
|
|
6154
|
+
"PresenterAndAudience"
|
|
6155
|
+
]
|
|
6156
|
+
}
|
|
6157
|
+
},
|
|
6145
6158
|
"peopleCount": {
|
|
6146
6159
|
"type": "number",
|
|
6147
6160
|
"minimum": -9223372036854776000.0,
|
|
@@ -6618,6 +6618,19 @@
|
|
|
6618
6618
|
"PresenterAndAudience"
|
|
6619
6619
|
]
|
|
6620
6620
|
},
|
|
6621
|
+
"roomTypes": {
|
|
6622
|
+
"type": "array",
|
|
6623
|
+
"items": {
|
|
6624
|
+
"type": "string",
|
|
6625
|
+
"description": "provisioning room type for CE devices",
|
|
6626
|
+
"enum": [
|
|
6627
|
+
"Briefing",
|
|
6628
|
+
"Classroom",
|
|
6629
|
+
"Standard",
|
|
6630
|
+
"PresenterAndAudience"
|
|
6631
|
+
]
|
|
6632
|
+
}
|
|
6633
|
+
},
|
|
6621
6634
|
"peopleCount": {
|
|
6622
6635
|
"type": "number",
|
|
6623
6636
|
"minimum": -9223372036854776000.0,
|
|
@@ -14641,6 +14654,19 @@
|
|
|
14641
14654
|
"PresenterAndAudience"
|
|
14642
14655
|
]
|
|
14643
14656
|
},
|
|
14657
|
+
"roomTypes": {
|
|
14658
|
+
"type": "array",
|
|
14659
|
+
"items": {
|
|
14660
|
+
"type": "string",
|
|
14661
|
+
"description": "provisioning room type for CE devices",
|
|
14662
|
+
"enum": [
|
|
14663
|
+
"Briefing",
|
|
14664
|
+
"Classroom",
|
|
14665
|
+
"Standard",
|
|
14666
|
+
"PresenterAndAudience"
|
|
14667
|
+
]
|
|
14668
|
+
}
|
|
14669
|
+
},
|
|
14644
14670
|
"peopleCount": {
|
|
14645
14671
|
"type": "number",
|
|
14646
14672
|
"minimum": -9223372036854776000.0,
|
|
@@ -3152,6 +3152,19 @@
|
|
|
3152
3152
|
"PresenterAndAudience"
|
|
3153
3153
|
]
|
|
3154
3154
|
},
|
|
3155
|
+
"roomTypes": {
|
|
3156
|
+
"type": "array",
|
|
3157
|
+
"items": {
|
|
3158
|
+
"type": "string",
|
|
3159
|
+
"description": "provisioning room type for CE devices",
|
|
3160
|
+
"enum": [
|
|
3161
|
+
"Briefing",
|
|
3162
|
+
"Classroom",
|
|
3163
|
+
"Standard",
|
|
3164
|
+
"PresenterAndAudience"
|
|
3165
|
+
]
|
|
3166
|
+
}
|
|
3167
|
+
},
|
|
3155
3168
|
"peopleCount": {
|
|
3156
3169
|
"type": "number",
|
|
3157
3170
|
"minimum": -9223372036854776000.0,
|
|
@@ -2957,6 +2957,7 @@ export interface Event {
|
|
|
2957
2957
|
* provisioning room type for CE devices
|
|
2958
2958
|
*/
|
|
2959
2959
|
roomType?: "Briefing" | "Classroom" | "Standard" | "PresenterAndAudience";
|
|
2960
|
+
roomTypes?: ("Briefing" | "Classroom" | "Standard" | "PresenterAndAudience")[];
|
|
2960
2961
|
peopleCount?: number;
|
|
2961
2962
|
additionalProperties?: false;
|
|
2962
2963
|
};
|
|
@@ -6043,6 +6044,7 @@ export interface Event {
|
|
|
6043
6044
|
* provisioning room type for CE devices
|
|
6044
6045
|
*/
|
|
6045
6046
|
roomType?: "Briefing" | "Classroom" | "Standard" | "PresenterAndAudience";
|
|
6047
|
+
roomTypes?: ("Briefing" | "Classroom" | "Standard" | "PresenterAndAudience")[];
|
|
6046
6048
|
peopleCount?: number;
|
|
6047
6049
|
additionalProperties?: false;
|
|
6048
6050
|
};
|
|
@@ -12355,6 +12357,7 @@ export interface ClientEvent {
|
|
|
12355
12357
|
* provisioning room type for CE devices
|
|
12356
12358
|
*/
|
|
12357
12359
|
roomType?: "Briefing" | "Classroom" | "Standard" | "PresenterAndAudience";
|
|
12360
|
+
roomTypes?: ("Briefing" | "Classroom" | "Standard" | "PresenterAndAudience")[];
|
|
12358
12361
|
peopleCount?: number;
|
|
12359
12362
|
additionalProperties?: false;
|
|
12360
12363
|
};
|
|
@@ -15290,6 +15293,7 @@ export interface MediaQualityEvent {
|
|
|
15290
15293
|
* provisioning room type for CE devices
|
|
15291
15294
|
*/
|
|
15292
15295
|
roomType?: "Briefing" | "Classroom" | "Standard" | "PresenterAndAudience";
|
|
15296
|
+
roomTypes?: ("Briefing" | "Classroom" | "Standard" | "PresenterAndAudience")[];
|
|
15293
15297
|
peopleCount?: number;
|
|
15294
15298
|
additionalProperties?: false;
|
|
15295
15299
|
};
|
package/package.json
CHANGED