@webex/event-dictionary-ts 1.0.2240 → 1.0.2241

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",
@@ -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"
@@ -18535,6 +18536,7 @@ export interface ClientEvent {
18535
18536
  * 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
18537
  */
18537
18538
  endTrigger?: "ejected" | "end-meeting" | "leave" | "other";
18539
+ clientAdjustedClock?: boolean;
18538
18540
  trigger?:
18539
18541
  | "bricklet"
18540
18542
  | "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.2241"
36
36
  }