@webex/event-dictionary-ts 1.0.2209 → 1.0.2211

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.
@@ -8469,6 +8469,19 @@
8469
8469
  "manual"
8470
8470
  ]
8471
8471
  },
8472
+ "userActivation": {
8473
+ "type": "object",
8474
+ "description": "User activation state reported from the browser's navigator.userActivation API",
8475
+ "additionalProperties": true,
8476
+ "properties": {
8477
+ "hasBeenActive": {
8478
+ "type": "boolean"
8479
+ },
8480
+ "isActive": {
8481
+ "type": "boolean"
8482
+ }
8483
+ }
8484
+ },
8472
8485
  "privacyAndSecurityPermission": {
8473
8486
  "type": "object",
8474
8487
  "description": "Map of device types to their permission status and reason when permission is not granted",
@@ -8559,6 +8572,14 @@
8559
8572
  }
8560
8573
  }
8561
8574
  }
8575
+ },
8576
+ "leaveState": {
8577
+ "type": "string",
8578
+ "description": "Leave State - Set in some client.call.leave events. Indicates if the leave state is a leave attempt, or if the leave attempt was cancelled",
8579
+ "enum": [
8580
+ "attempt",
8581
+ "cancel"
8582
+ ]
8562
8583
  }
8563
8584
  }
8564
8585
  }
@@ -9103,6 +9103,19 @@
9103
9103
  "manual"
9104
9104
  ]
9105
9105
  },
9106
+ "userActivation": {
9107
+ "type": "object",
9108
+ "description": "User activation state reported from the browser's navigator.userActivation API",
9109
+ "additionalProperties": true,
9110
+ "properties": {
9111
+ "hasBeenActive": {
9112
+ "type": "boolean"
9113
+ },
9114
+ "isActive": {
9115
+ "type": "boolean"
9116
+ }
9117
+ }
9118
+ },
9106
9119
  "privacyAndSecurityPermission": {
9107
9120
  "type": "object",
9108
9121
  "description": "Map of device types to their permission status and reason when permission is not granted",
@@ -9193,6 +9206,14 @@
9193
9206
  }
9194
9207
  }
9195
9208
  }
9209
+ },
9210
+ "leaveState": {
9211
+ "type": "string",
9212
+ "description": "Leave State - Set in some client.call.leave events. Indicates if the leave state is a leave attempt, or if the leave attempt was cancelled",
9213
+ "enum": [
9214
+ "attempt",
9215
+ "cancel"
9216
+ ]
9196
9217
  }
9197
9218
  }
9198
9219
  },
@@ -4399,6 +4399,14 @@ export interface Event {
4399
4399
  dialogType?: DialogType;
4400
4400
  isAutomatedUser?: boolean;
4401
4401
  telemetryOptOut?: "automatic" | "manual";
4402
+ /**
4403
+ * User activation state reported from the browser's navigator.userActivation API
4404
+ */
4405
+ userActivation?: {
4406
+ hasBeenActive?: boolean;
4407
+ isActive?: boolean;
4408
+ additionalProperties?: never;
4409
+ };
4402
4410
  /**
4403
4411
  * Map of device types to their permission status and reason when permission is not granted
4404
4412
  */
@@ -4438,6 +4446,10 @@ export interface Event {
4438
4446
  };
4439
4447
  additionalProperties?: never;
4440
4448
  };
4449
+ /**
4450
+ * Leave State - Set in some client.call.leave events. Indicates if the leave state is a leave attempt, or if the leave attempt was cancelled
4451
+ */
4452
+ leaveState?: "attempt" | "cancel";
4441
4453
  additionalProperties?: never;
4442
4454
  }
4443
4455
  | {
@@ -21013,6 +21025,14 @@ export interface ClientEvent {
21013
21025
  dialogType?: DialogType;
21014
21026
  isAutomatedUser?: boolean;
21015
21027
  telemetryOptOut?: "automatic" | "manual";
21028
+ /**
21029
+ * User activation state reported from the browser's navigator.userActivation API
21030
+ */
21031
+ userActivation?: {
21032
+ hasBeenActive?: boolean;
21033
+ isActive?: boolean;
21034
+ additionalProperties?: never;
21035
+ };
21016
21036
  /**
21017
21037
  * Map of device types to their permission status and reason when permission is not granted
21018
21038
  */
@@ -21052,6 +21072,10 @@ export interface ClientEvent {
21052
21072
  };
21053
21073
  additionalProperties?: never;
21054
21074
  };
21075
+ /**
21076
+ * Leave State - Set in some client.call.leave events. Indicates if the leave state is a leave attempt, or if the leave attempt was cancelled
21077
+ */
21078
+ leaveState?: "attempt" | "cancel";
21055
21079
  additionalProperties?: never;
21056
21080
  }
21057
21081
 
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.2209"
35
+ "version": "1.0.2211"
36
36
  }