@webex/event-dictionary-ts 1.0.2219 → 1.0.2220
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.
|
@@ -3672,6 +3672,12 @@
|
|
|
3672
3672
|
"browserVersion": {
|
|
3673
3673
|
"type": "string"
|
|
3674
3674
|
},
|
|
3675
|
+
"isSupportedBrowserFamily": {
|
|
3676
|
+
"type": "boolean"
|
|
3677
|
+
},
|
|
3678
|
+
"isOutdatedBrowserVersion": {
|
|
3679
|
+
"type": "boolean"
|
|
3680
|
+
},
|
|
3675
3681
|
"clientType": {
|
|
3676
3682
|
"type": "string",
|
|
3677
3683
|
"description": "this defines the major client types",
|
|
@@ -225,6 +225,12 @@
|
|
|
225
225
|
"browserVersion": {
|
|
226
226
|
"type": "string"
|
|
227
227
|
},
|
|
228
|
+
"isSupportedBrowserFamily": {
|
|
229
|
+
"type": "boolean"
|
|
230
|
+
},
|
|
231
|
+
"isOutdatedBrowserVersion": {
|
|
232
|
+
"type": "boolean"
|
|
233
|
+
},
|
|
228
234
|
"clientType": {
|
|
229
235
|
"type": "string",
|
|
230
236
|
"description": "this defines the major client types",
|
|
@@ -4312,6 +4318,12 @@
|
|
|
4312
4318
|
"browserVersion": {
|
|
4313
4319
|
"type": "string"
|
|
4314
4320
|
},
|
|
4321
|
+
"isSupportedBrowserFamily": {
|
|
4322
|
+
"type": "boolean"
|
|
4323
|
+
},
|
|
4324
|
+
"isOutdatedBrowserVersion": {
|
|
4325
|
+
"type": "boolean"
|
|
4326
|
+
},
|
|
4315
4327
|
"clientType": {
|
|
4316
4328
|
"type": "string",
|
|
4317
4329
|
"description": "this defines the major client types",
|
|
@@ -136,6 +136,8 @@ export interface Event {
|
|
|
136
136
|
urlProtocolLaunchMethod?: "auto" | "manual" | "extension-fallback";
|
|
137
137
|
browser?: string;
|
|
138
138
|
browserVersion?: string;
|
|
139
|
+
isSupportedBrowserFamily?: boolean;
|
|
140
|
+
isOutdatedBrowserVersion?: boolean;
|
|
139
141
|
/**
|
|
140
142
|
* this defines the major client types
|
|
141
143
|
*/
|
|
@@ -1952,6 +1954,8 @@ export interface Event {
|
|
|
1952
1954
|
urlProtocolLaunchMethod?: "auto" | "manual" | "extension-fallback";
|
|
1953
1955
|
browser?: string;
|
|
1954
1956
|
browserVersion?: string;
|
|
1957
|
+
isSupportedBrowserFamily?: boolean;
|
|
1958
|
+
isOutdatedBrowserVersion?: boolean;
|
|
1955
1959
|
/**
|
|
1956
1960
|
* this defines the major client types
|
|
1957
1961
|
*/
|
|
@@ -18614,6 +18618,8 @@ export interface ClientEvent {
|
|
|
18614
18618
|
urlProtocolLaunchMethod?: "auto" | "manual" | "extension-fallback";
|
|
18615
18619
|
browser?: string;
|
|
18616
18620
|
browserVersion?: string;
|
|
18621
|
+
isSupportedBrowserFamily?: boolean;
|
|
18622
|
+
isOutdatedBrowserVersion?: boolean;
|
|
18617
18623
|
/**
|
|
18618
18624
|
* this defines the major client types
|
|
18619
18625
|
*/
|
package/package.json
CHANGED