@webex/event-dictionary-ts 1.0.1674 → 1.0.1676
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.
|
@@ -3693,6 +3693,25 @@
|
|
|
3693
3693
|
],
|
|
3694
3694
|
"type": "string"
|
|
3695
3695
|
},
|
|
3696
|
+
"userNameInput": {
|
|
3697
|
+
"type": "string",
|
|
3698
|
+
"description": "",
|
|
3699
|
+
"enum": [
|
|
3700
|
+
"new",
|
|
3701
|
+
"current",
|
|
3702
|
+
"changed"
|
|
3703
|
+
]
|
|
3704
|
+
},
|
|
3705
|
+
"emailInput": {
|
|
3706
|
+
"type": "string",
|
|
3707
|
+
"description": "",
|
|
3708
|
+
"enum": [
|
|
3709
|
+
"none",
|
|
3710
|
+
"new",
|
|
3711
|
+
"current",
|
|
3712
|
+
"changed"
|
|
3713
|
+
]
|
|
3714
|
+
},
|
|
3696
3715
|
"isRoapCallEnabled": {
|
|
3697
3716
|
"type": "boolean"
|
|
3698
3717
|
},
|
|
@@ -4197,6 +4197,25 @@
|
|
|
4197
4197
|
],
|
|
4198
4198
|
"type": "string"
|
|
4199
4199
|
},
|
|
4200
|
+
"userNameInput": {
|
|
4201
|
+
"type": "string",
|
|
4202
|
+
"description": "",
|
|
4203
|
+
"enum": [
|
|
4204
|
+
"new",
|
|
4205
|
+
"current",
|
|
4206
|
+
"changed"
|
|
4207
|
+
]
|
|
4208
|
+
},
|
|
4209
|
+
"emailInput": {
|
|
4210
|
+
"type": "string",
|
|
4211
|
+
"description": "",
|
|
4212
|
+
"enum": [
|
|
4213
|
+
"none",
|
|
4214
|
+
"new",
|
|
4215
|
+
"current",
|
|
4216
|
+
"changed"
|
|
4217
|
+
]
|
|
4218
|
+
},
|
|
4200
4219
|
"isRoapCallEnabled": {
|
|
4201
4220
|
"type": "boolean"
|
|
4202
4221
|
},
|
|
@@ -1823,6 +1823,8 @@ export interface Event {
|
|
|
1823
1823
|
icePhase?: "JOIN_MEETING_FINAL" | "JOIN_MEETING_RETRY" | "IN_MEETING";
|
|
1824
1824
|
userType?: "host" | "attendee" | "cohost" | "panelist";
|
|
1825
1825
|
updateType?: "new-user" | "update-user" | "return-user";
|
|
1826
|
+
userNameInput?: "new" | "current" | "changed";
|
|
1827
|
+
emailInput?: "none" | "new" | "current" | "changed";
|
|
1826
1828
|
isRoapCallEnabled?: boolean;
|
|
1827
1829
|
isFirstTimeUser?: boolean;
|
|
1828
1830
|
responseCode?: number;
|
|
@@ -15157,6 +15159,8 @@ export interface ClientEvent {
|
|
|
15157
15159
|
icePhase?: "JOIN_MEETING_FINAL" | "JOIN_MEETING_RETRY" | "IN_MEETING";
|
|
15158
15160
|
userType?: "host" | "attendee" | "cohost" | "panelist";
|
|
15159
15161
|
updateType?: "new-user" | "update-user" | "return-user";
|
|
15162
|
+
userNameInput?: "new" | "current" | "changed";
|
|
15163
|
+
emailInput?: "none" | "new" | "current" | "changed";
|
|
15160
15164
|
isRoapCallEnabled?: boolean;
|
|
15161
15165
|
isFirstTimeUser?: boolean;
|
|
15162
15166
|
responseCode?: number;
|
package/package.json
CHANGED