@webex/event-dictionary-ts 1.0.2226 → 1.0.2228

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