@webex/event-dictionary-ts 1.0.2190 → 1.0.2191

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.
@@ -8388,6 +8388,13 @@
8388
8388
  },
8389
8389
  "isAutomatedUser": {
8390
8390
  "type": "boolean"
8391
+ },
8392
+ "telemetryOptOut": {
8393
+ "type": "string",
8394
+ "enum": [
8395
+ "automatic",
8396
+ "manual"
8397
+ ]
8391
8398
  }
8392
8399
  }
8393
8400
  }
@@ -8992,6 +8992,13 @@
8992
8992
  },
8993
8993
  "isAutomatedUser": {
8994
8994
  "type": "boolean"
8995
+ },
8996
+ "telemetryOptOut": {
8997
+ "type": "string",
8998
+ "enum": [
8999
+ "automatic",
9000
+ "manual"
9001
+ ]
8995
9002
  }
8996
9003
  }
8997
9004
  },
@@ -4349,6 +4349,7 @@ export interface Event {
4349
4349
  };
4350
4350
  dialogType?: DialogType;
4351
4351
  isAutomatedUser?: boolean;
4352
+ telemetryOptOut?: "automatic" | "manual";
4352
4353
  additionalProperties?: never;
4353
4354
  }
4354
4355
  | {
@@ -20847,6 +20848,7 @@ export interface ClientEvent {
20847
20848
  };
20848
20849
  dialogType?: DialogType;
20849
20850
  isAutomatedUser?: boolean;
20851
+ telemetryOptOut?: "automatic" | "manual";
20850
20852
  additionalProperties?: never;
20851
20853
  }
20852
20854
 
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.2190"
35
+ "version": "1.0.2191"
36
36
  }