@webex/event-dictionary-ts 1.0.2240 → 1.0.2242

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.
@@ -3325,6 +3325,9 @@
3325
3325
  "other"
3326
3326
  ]
3327
3327
  },
3328
+ "clientAdjustedClock": {
3329
+ "type": "boolean"
3330
+ },
3328
3331
  "trigger": {
3329
3332
  "enum": [
3330
3333
  "bricklet",
@@ -3991,6 +3991,9 @@
3991
3991
  "other"
3992
3992
  ]
3993
3993
  },
3994
+ "clientAdjustedClock": {
3995
+ "type": "boolean"
3996
+ },
3994
3997
  "trigger": {
3995
3998
  "enum": [
3996
3999
  "bricklet",
@@ -14464,6 +14467,9 @@
14464
14467
  },
14465
14468
  "isMain": {
14466
14469
  "type": "boolean"
14470
+ },
14471
+ "isCatalogOverride": {
14472
+ "type": "boolean"
14467
14473
  }
14468
14474
  }
14469
14475
  },
@@ -1757,6 +1757,7 @@ export interface Event {
1757
1757
  * End Trigger - indicate how the call was ended from client. Set in end of call events such as client.call.end, client.call.aborted
1758
1758
  */
1759
1759
  endTrigger?: "ejected" | "end-meeting" | "leave" | "other";
1760
+ clientAdjustedClock?: boolean;
1760
1761
  trigger?:
1761
1762
  | "bricklet"
1762
1763
  | "call-history"
@@ -6719,6 +6720,7 @@ export interface Event {
6719
6720
  isAnswered?: boolean;
6720
6721
  secureMedia?: boolean;
6721
6722
  isMain?: boolean;
6723
+ isCatalogOverride?: boolean;
6722
6724
  additionalProperties?: never;
6723
6725
  }
6724
6726
  | {
@@ -18535,6 +18537,7 @@ export interface ClientEvent {
18535
18537
  * End Trigger - indicate how the call was ended from client. Set in end of call events such as client.call.end, client.call.aborted
18536
18538
  */
18537
18539
  endTrigger?: "ejected" | "end-meeting" | "leave" | "other";
18540
+ clientAdjustedClock?: boolean;
18538
18541
  trigger?:
18539
18542
  | "bricklet"
18540
18543
  | "call-history"
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.2240"
35
+ "version": "1.0.2242"
36
36
  }