@webex/event-dictionary-ts 1.0.1721 → 1.0.1723
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.
|
@@ -183,7 +183,9 @@
|
|
|
183
183
|
"manual",
|
|
184
184
|
"teams-cross-launch",
|
|
185
185
|
"mc-cross-launch",
|
|
186
|
-
"cws"
|
|
186
|
+
"cws",
|
|
187
|
+
"launcher",
|
|
188
|
+
"cws-launcher"
|
|
187
189
|
],
|
|
188
190
|
"type": "string"
|
|
189
191
|
},
|
|
@@ -3782,7 +3784,9 @@
|
|
|
3782
3784
|
"manual",
|
|
3783
3785
|
"teams-cross-launch",
|
|
3784
3786
|
"mc-cross-launch",
|
|
3785
|
-
"cws"
|
|
3787
|
+
"cws",
|
|
3788
|
+
"launcher",
|
|
3789
|
+
"cws-launcher"
|
|
3786
3790
|
],
|
|
3787
3791
|
"type": "string"
|
|
3788
3792
|
},
|
|
@@ -22036,6 +22040,10 @@
|
|
|
22036
22040
|
},
|
|
22037
22041
|
"mediaExtInfo": {
|
|
22038
22042
|
"type": "string"
|
|
22043
|
+
},
|
|
22044
|
+
"mediaExtInfoV2": {
|
|
22045
|
+
"type": "object",
|
|
22046
|
+
"additionalProperties": true
|
|
22039
22047
|
}
|
|
22040
22048
|
}
|
|
22041
22049
|
}
|
|
@@ -112,7 +112,9 @@ export interface Event {
|
|
|
112
112
|
| "manual"
|
|
113
113
|
| "teams-cross-launch"
|
|
114
114
|
| "mc-cross-launch"
|
|
115
|
-
| "cws"
|
|
115
|
+
| "cws"
|
|
116
|
+
| "launcher"
|
|
117
|
+
| "cws-launcher";
|
|
116
118
|
browser?: string;
|
|
117
119
|
browserVersion?: string;
|
|
118
120
|
/**
|
|
@@ -1653,7 +1655,9 @@ export interface Event {
|
|
|
1653
1655
|
| "manual"
|
|
1654
1656
|
| "teams-cross-launch"
|
|
1655
1657
|
| "mc-cross-launch"
|
|
1656
|
-
| "cws"
|
|
1658
|
+
| "cws"
|
|
1659
|
+
| "launcher"
|
|
1660
|
+
| "cws-launcher";
|
|
1657
1661
|
browser?: string;
|
|
1658
1662
|
browserVersion?: string;
|
|
1659
1663
|
/**
|
|
@@ -9382,6 +9386,7 @@ export interface Event {
|
|
|
9382
9386
|
errorCodeExt1?: number;
|
|
9383
9387
|
errorDescription?: string;
|
|
9384
9388
|
mediaExtInfo?: string;
|
|
9389
|
+
mediaExtInfoV2?: {};
|
|
9385
9390
|
additionalProperties?: false;
|
|
9386
9391
|
}[];
|
|
9387
9392
|
additionalProperties?: false;
|
|
@@ -15207,7 +15212,9 @@ export interface ClientEvent {
|
|
|
15207
15212
|
| "manual"
|
|
15208
15213
|
| "teams-cross-launch"
|
|
15209
15214
|
| "mc-cross-launch"
|
|
15210
|
-
| "cws"
|
|
15215
|
+
| "cws"
|
|
15216
|
+
| "launcher"
|
|
15217
|
+
| "cws-launcher";
|
|
15211
15218
|
browser?: string;
|
|
15212
15219
|
browserVersion?: string;
|
|
15213
15220
|
/**
|
|
@@ -22665,6 +22672,7 @@ export interface MediaQualityEvent {
|
|
|
22665
22672
|
errorCodeExt1?: number;
|
|
22666
22673
|
errorDescription?: string;
|
|
22667
22674
|
mediaExtInfo?: string;
|
|
22675
|
+
mediaExtInfoV2?: {};
|
|
22668
22676
|
additionalProperties?: false;
|
|
22669
22677
|
}[];
|
|
22670
22678
|
additionalProperties?: false;
|
package/package.json
CHANGED