@webex/event-dictionary-ts 1.0.1303 → 1.0.1305

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.
@@ -133,6 +133,10 @@ export interface Event {
133
133
  | "VDI_APP"
134
134
  | "WEB_APP";
135
135
  clientVersion?: string;
136
+ /**
137
+ * this defines the client version status. Determined by call analyzer based on client major version
138
+ */
139
+ clientVersionStatus?: "CURRENT" | "LEGACY" | "UNSUPPORTED";
136
140
  localClientVersion?: string;
137
141
  modelNumber?: string;
138
142
  joinFirstUpdateLater?: "ep-enabled" | "sp-enabled" | "not-enabled";
@@ -1252,7 +1256,8 @@ export interface Event {
1252
1256
  | "toast"
1253
1257
  | "user-interaction"
1254
1258
  | "web-ucf-crosslaunch"
1255
- | "wireless-share";
1259
+ | "wireless-share"
1260
+ | "deep-link";
1256
1261
  leaveReason?: "paired-leave" | "one-to-one" | "ended-by-locus";
1257
1262
  displayLocation?:
1258
1263
  | "toast"
@@ -1413,6 +1418,10 @@ export interface Event {
1413
1418
  | "VDI_APP"
1414
1419
  | "WEB_APP";
1415
1420
  clientVersion?: string;
1421
+ /**
1422
+ * this defines the client version status. Determined by call analyzer based on client major version
1423
+ */
1424
+ clientVersionStatus?: "CURRENT" | "LEGACY" | "UNSUPPORTED";
1416
1425
  localClientVersion?: string;
1417
1426
  modelNumber?: string;
1418
1427
  joinFirstUpdateLater?: "ep-enabled" | "sp-enabled" | "not-enabled";
@@ -10290,7 +10299,8 @@ export interface ClientEvent {
10290
10299
  | "toast"
10291
10300
  | "user-interaction"
10292
10301
  | "web-ucf-crosslaunch"
10293
- | "wireless-share";
10302
+ | "wireless-share"
10303
+ | "deep-link";
10294
10304
  leaveReason?: "paired-leave" | "one-to-one" | "ended-by-locus";
10295
10305
  displayLocation?:
10296
10306
  | "toast"
@@ -10451,6 +10461,10 @@ export interface ClientEvent {
10451
10461
  | "VDI_APP"
10452
10462
  | "WEB_APP";
10453
10463
  clientVersion?: string;
10464
+ /**
10465
+ * this defines the client version status. Determined by call analyzer based on client major version
10466
+ */
10467
+ clientVersionStatus?: "CURRENT" | "LEGACY" | "UNSUPPORTED";
10454
10468
  localClientVersion?: string;
10455
10469
  modelNumber?: string;
10456
10470
  joinFirstUpdateLater?: "ep-enabled" | "sp-enabled" | "not-enabled";
package/package.json CHANGED
@@ -28,5 +28,5 @@
28
28
  "access": "public",
29
29
  "registry": "https://registry.npmjs.org"
30
30
  },
31
- "version": "1.0.1303"
31
+ "version": "1.0.1305"
32
32
  }