@webex/event-dictionary-ts 1.0.1413 → 1.0.1415
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.
|
@@ -6613,6 +6613,11 @@
|
|
|
6613
6613
|
"Standard",
|
|
6614
6614
|
"PresenterAndAudience"
|
|
6615
6615
|
]
|
|
6616
|
+
},
|
|
6617
|
+
"peopleCount": {
|
|
6618
|
+
"type": "number",
|
|
6619
|
+
"minimum": -9223372036854776000.0,
|
|
6620
|
+
"maximum": 9223372036854776000.0
|
|
6616
6621
|
}
|
|
6617
6622
|
}
|
|
6618
6623
|
},
|
|
@@ -14506,6 +14511,11 @@
|
|
|
14506
14511
|
"Standard",
|
|
14507
14512
|
"PresenterAndAudience"
|
|
14508
14513
|
]
|
|
14514
|
+
},
|
|
14515
|
+
"peopleCount": {
|
|
14516
|
+
"type": "number",
|
|
14517
|
+
"minimum": -9223372036854776000.0,
|
|
14518
|
+
"maximum": 9223372036854776000.0
|
|
14509
14519
|
}
|
|
14510
14520
|
}
|
|
14511
14521
|
},
|
|
@@ -2956,6 +2956,7 @@ export interface Event {
|
|
|
2956
2956
|
* provisioning room type for CE devices
|
|
2957
2957
|
*/
|
|
2958
2958
|
roomType?: "Briefing" | "Classroom" | "Standard" | "PresenterAndAudience";
|
|
2959
|
+
peopleCount?: number;
|
|
2959
2960
|
additionalProperties?: false;
|
|
2960
2961
|
};
|
|
2961
2962
|
sessionType?:
|
|
@@ -5956,6 +5957,7 @@ export interface Event {
|
|
|
5956
5957
|
* provisioning room type for CE devices
|
|
5957
5958
|
*/
|
|
5958
5959
|
roomType?: "Briefing" | "Classroom" | "Standard" | "PresenterAndAudience";
|
|
5960
|
+
peopleCount?: number;
|
|
5959
5961
|
additionalProperties?: false;
|
|
5960
5962
|
};
|
|
5961
5963
|
audioTransmit: {
|
|
@@ -12316,6 +12318,7 @@ export interface ClientEvent {
|
|
|
12316
12318
|
* provisioning room type for CE devices
|
|
12317
12319
|
*/
|
|
12318
12320
|
roomType?: "Briefing" | "Classroom" | "Standard" | "PresenterAndAudience";
|
|
12321
|
+
peopleCount?: number;
|
|
12319
12322
|
additionalProperties?: false;
|
|
12320
12323
|
};
|
|
12321
12324
|
sessionType?:
|
|
@@ -15166,6 +15169,7 @@ export interface MediaQualityEvent {
|
|
|
15166
15169
|
* provisioning room type for CE devices
|
|
15167
15170
|
*/
|
|
15168
15171
|
roomType?: "Briefing" | "Classroom" | "Standard" | "PresenterAndAudience";
|
|
15172
|
+
peopleCount?: number;
|
|
15169
15173
|
additionalProperties?: false;
|
|
15170
15174
|
};
|
|
15171
15175
|
audioTransmit: {
|
package/package.json
CHANGED