@webex/event-dictionary-ts 1.0.2097 → 1.0.2098
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.
|
@@ -25441,6 +25441,15 @@
|
|
|
25441
25441
|
"type": "string"
|
|
25442
25442
|
}
|
|
25443
25443
|
}
|
|
25444
|
+
},
|
|
25445
|
+
"userType": {
|
|
25446
|
+
"type": "string",
|
|
25447
|
+
"enum": [
|
|
25448
|
+
"host",
|
|
25449
|
+
"attendee",
|
|
25450
|
+
"cohost",
|
|
25451
|
+
"panelist"
|
|
25452
|
+
]
|
|
25444
25453
|
}
|
|
25445
25454
|
}
|
|
25446
25455
|
},
|
|
@@ -11861,6 +11861,15 @@
|
|
|
11861
11861
|
"type": "string"
|
|
11862
11862
|
}
|
|
11863
11863
|
}
|
|
11864
|
+
},
|
|
11865
|
+
"userType": {
|
|
11866
|
+
"type": "string",
|
|
11867
|
+
"enum": [
|
|
11868
|
+
"host",
|
|
11869
|
+
"attendee",
|
|
11870
|
+
"cohost",
|
|
11871
|
+
"panelist"
|
|
11872
|
+
]
|
|
11864
11873
|
}
|
|
11865
11874
|
}
|
|
11866
11875
|
}
|
|
@@ -11136,6 +11136,7 @@ export interface Event {
|
|
|
11136
11136
|
tempSipUri?: string;
|
|
11137
11137
|
additionalProperties?: false;
|
|
11138
11138
|
};
|
|
11139
|
+
userType?: "host" | "attendee" | "cohost" | "panelist";
|
|
11139
11140
|
additionalProperties?: false;
|
|
11140
11141
|
}
|
|
11141
11142
|
| {
|
|
@@ -26549,5 +26550,6 @@ export interface MediaQualityEvent {
|
|
|
26549
26550
|
tempSipUri?: string;
|
|
26550
26551
|
additionalProperties?: false;
|
|
26551
26552
|
};
|
|
26553
|
+
userType?: "host" | "attendee" | "cohost" | "panelist";
|
|
26552
26554
|
additionalProperties?: false;
|
|
26553
26555
|
}
|
package/package.json
CHANGED