@webex/event-dictionary-ts 1.0.2190 → 1.0.2192
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.
|
@@ -8992,6 +8992,13 @@
|
|
|
8992
8992
|
},
|
|
8993
8993
|
"isAutomatedUser": {
|
|
8994
8994
|
"type": "boolean"
|
|
8995
|
+
},
|
|
8996
|
+
"telemetryOptOut": {
|
|
8997
|
+
"type": "string",
|
|
8998
|
+
"enum": [
|
|
8999
|
+
"automatic",
|
|
9000
|
+
"manual"
|
|
9001
|
+
]
|
|
8995
9002
|
}
|
|
8996
9003
|
}
|
|
8997
9004
|
},
|
|
@@ -26217,7 +26224,8 @@
|
|
|
26217
26224
|
"NETWORK_LOST_ERROR",
|
|
26218
26225
|
"MEDIA_NOT_AVAILABLE",
|
|
26219
26226
|
"MEDIA_CONNECT_FAILURE",
|
|
26220
|
-
"MEDIA_CONNECT_STATE"
|
|
26227
|
+
"MEDIA_CONNECT_STATE",
|
|
26228
|
+
"MEDIA_FLOW_STATE_CHANGED"
|
|
26221
26229
|
]
|
|
26222
26230
|
},
|
|
26223
26231
|
"errorCode": {
|
|
@@ -12124,7 +12124,8 @@
|
|
|
12124
12124
|
"NETWORK_LOST_ERROR",
|
|
12125
12125
|
"MEDIA_NOT_AVAILABLE",
|
|
12126
12126
|
"MEDIA_CONNECT_FAILURE",
|
|
12127
|
-
"MEDIA_CONNECT_STATE"
|
|
12127
|
+
"MEDIA_CONNECT_STATE",
|
|
12128
|
+
"MEDIA_FLOW_STATE_CHANGED"
|
|
12128
12129
|
]
|
|
12129
12130
|
},
|
|
12130
12131
|
"errorCode": {
|
|
@@ -4349,6 +4349,7 @@ export interface Event {
|
|
|
4349
4349
|
};
|
|
4350
4350
|
dialogType?: DialogType;
|
|
4351
4351
|
isAutomatedUser?: boolean;
|
|
4352
|
+
telemetryOptOut?: "automatic" | "manual";
|
|
4352
4353
|
additionalProperties?: never;
|
|
4353
4354
|
}
|
|
4354
4355
|
| {
|
|
@@ -11563,7 +11564,8 @@ export interface Event {
|
|
|
11563
11564
|
| "NETWORK_LOST_ERROR"
|
|
11564
11565
|
| "MEDIA_NOT_AVAILABLE"
|
|
11565
11566
|
| "MEDIA_CONNECT_FAILURE"
|
|
11566
|
-
| "MEDIA_CONNECT_STATE"
|
|
11567
|
+
| "MEDIA_CONNECT_STATE"
|
|
11568
|
+
| "MEDIA_FLOW_STATE_CHANGED";
|
|
11567
11569
|
errorCode?: number;
|
|
11568
11570
|
errorCodeExt1?: number;
|
|
11569
11571
|
errorDescription?: string;
|
|
@@ -20847,6 +20849,7 @@ export interface ClientEvent {
|
|
|
20847
20849
|
};
|
|
20848
20850
|
dialogType?: DialogType;
|
|
20849
20851
|
isAutomatedUser?: boolean;
|
|
20852
|
+
telemetryOptOut?: "automatic" | "manual";
|
|
20850
20853
|
additionalProperties?: never;
|
|
20851
20854
|
}
|
|
20852
20855
|
|
|
@@ -27740,7 +27743,8 @@ export interface MediaQualityEvent {
|
|
|
27740
27743
|
| "NETWORK_LOST_ERROR"
|
|
27741
27744
|
| "MEDIA_NOT_AVAILABLE"
|
|
27742
27745
|
| "MEDIA_CONNECT_FAILURE"
|
|
27743
|
-
| "MEDIA_CONNECT_STATE"
|
|
27746
|
+
| "MEDIA_CONNECT_STATE"
|
|
27747
|
+
| "MEDIA_FLOW_STATE_CHANGED";
|
|
27744
27748
|
errorCode?: number;
|
|
27745
27749
|
errorCodeExt1?: number;
|
|
27746
27750
|
errorDescription?: string;
|
package/package.json
CHANGED