@webex/event-dictionary-ts 1.0.2227 → 1.0.2229

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,9 +3672,15 @@
3672
3672
  "browserVersion": {
3673
3673
  "type": "string"
3674
3674
  },
3675
+ "connectionDownlinkMbps": {
3676
+ "type": "number"
3677
+ },
3675
3678
  "connectionEffectiveType": {
3676
3679
  "type": "string"
3677
3680
  },
3681
+ "connectionThroughputMbps": {
3682
+ "type": "number"
3683
+ },
3678
3684
  "isSupportedBrowserFamily": {
3679
3685
  "type": "boolean"
3680
3686
  },
@@ -225,9 +225,15 @@
225
225
  "browserVersion": {
226
226
  "type": "string"
227
227
  },
228
+ "connectionDownlinkMbps": {
229
+ "type": "number"
230
+ },
228
231
  "connectionEffectiveType": {
229
232
  "type": "string"
230
233
  },
234
+ "connectionThroughputMbps": {
235
+ "type": "number"
236
+ },
231
237
  "isSupportedBrowserFamily": {
232
238
  "type": "boolean"
233
239
  },
@@ -4331,9 +4337,15 @@
4331
4337
  "browserVersion": {
4332
4338
  "type": "string"
4333
4339
  },
4340
+ "connectionDownlinkMbps": {
4341
+ "type": "number"
4342
+ },
4334
4343
  "connectionEffectiveType": {
4335
4344
  "type": "string"
4336
4345
  },
4346
+ "connectionThroughputMbps": {
4347
+ "type": "number"
4348
+ },
4337
4349
  "isSupportedBrowserFamily": {
4338
4350
  "type": "boolean"
4339
4351
  },
@@ -136,7 +136,9 @@ export interface Event {
136
136
  urlProtocolLaunchMethod?: "auto" | "manual" | "extension-fallback";
137
137
  browser?: string;
138
138
  browserVersion?: string;
139
+ connectionDownlinkMbps?: number;
139
140
  connectionEffectiveType?: string;
141
+ connectionThroughputMbps?: number;
140
142
  isSupportedBrowserFamily?: boolean;
141
143
  isOutdatedBrowserVersion?: boolean;
142
144
  /**
@@ -1959,7 +1961,9 @@ export interface Event {
1959
1961
  urlProtocolLaunchMethod?: "auto" | "manual" | "extension-fallback";
1960
1962
  browser?: string;
1961
1963
  browserVersion?: string;
1964
+ connectionDownlinkMbps?: number;
1962
1965
  connectionEffectiveType?: string;
1966
+ connectionThroughputMbps?: number;
1963
1967
  isSupportedBrowserFamily?: boolean;
1964
1968
  isOutdatedBrowserVersion?: boolean;
1965
1969
  /**
@@ -18666,7 +18670,9 @@ export interface ClientEvent {
18666
18670
  urlProtocolLaunchMethod?: "auto" | "manual" | "extension-fallback";
18667
18671
  browser?: string;
18668
18672
  browserVersion?: string;
18673
+ connectionDownlinkMbps?: number;
18669
18674
  connectionEffectiveType?: string;
18675
+ connectionThroughputMbps?: number;
18670
18676
  isSupportedBrowserFamily?: boolean;
18671
18677
  isOutdatedBrowserVersion?: boolean;
18672
18678
  /**
package/package.json CHANGED
@@ -32,5 +32,5 @@
32
32
  "access": "public",
33
33
  "registry": "https://registry.npmjs.org"
34
34
  },
35
- "version": "1.0.2227"
35
+ "version": "1.0.2229"
36
36
  }