@webex/event-dictionary-ts 1.0.2223 → 1.0.2225

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.
@@ -14255,12 +14255,6 @@
14255
14255
  "type": "object",
14256
14256
  "description": "Result and timing information for Calling Services discovery.",
14257
14257
  "additionalProperties": true,
14258
- "required": [
14259
- "outcome",
14260
- "reason",
14261
- "clientRequested",
14262
- "resolverLatencyMs"
14263
- ],
14264
14258
  "properties": {
14265
14259
  "outcome": {
14266
14260
  "type": "string",
@@ -20909,6 +20903,21 @@
20909
20903
  "minimum": 0.0,
20910
20904
  "maximum": 9223372036854776000.0
20911
20905
  },
20906
+ "wmlHostStartErrorType": {
20907
+ "type": "string",
20908
+ "enum": [
20909
+ "NONE",
20910
+ "FILE_NOT_FOUND",
20911
+ "ACCESS_DENIED",
20912
+ "BAD_EXE_FORMAT",
20913
+ "EXE_MACHINE_TYPE_MISMATCH",
20914
+ "POLICY_BLOCKED",
20915
+ "VERIFICATION_FAILED",
20916
+ "HOST_PATH_EMPTY",
20917
+ "IPC_OPEN_FAILED",
20918
+ "OTHER"
20919
+ ]
20920
+ },
20912
20921
  "isGestureDetectorOn": {
20913
20922
  "type": "boolean"
20914
20923
  },
@@ -6485,6 +6485,21 @@
6485
6485
  "minimum": 0.0,
6486
6486
  "maximum": 9223372036854776000.0
6487
6487
  },
6488
+ "wmlHostStartErrorType": {
6489
+ "type": "string",
6490
+ "enum": [
6491
+ "NONE",
6492
+ "FILE_NOT_FOUND",
6493
+ "ACCESS_DENIED",
6494
+ "BAD_EXE_FORMAT",
6495
+ "EXE_MACHINE_TYPE_MISMATCH",
6496
+ "POLICY_BLOCKED",
6497
+ "VERIFICATION_FAILED",
6498
+ "HOST_PATH_EMPTY",
6499
+ "IPC_OPEN_FAILED",
6500
+ "OTHER"
6501
+ ]
6502
+ },
6488
6503
  "isGestureDetectorOn": {
6489
6504
  "type": "boolean"
6490
6505
  },
@@ -6625,11 +6625,11 @@ export interface Event {
6625
6625
  /**
6626
6626
  * Outcome of a Calling Services discovery attempt.
6627
6627
  */
6628
- outcome: "skipped" | "resolved" | "unavailable" | "pending" | "fail_open";
6628
+ outcome?: "skipped" | "resolved" | "unavailable" | "pending" | "fail_open";
6629
6629
  /**
6630
6630
  * Reason associated with a Calling Services discovery outcome.
6631
6631
  */
6632
- reason:
6632
+ reason?:
6633
6633
  | "none"
6634
6634
  | "method_not_post"
6635
6635
  | "missing_auth_context"
@@ -6638,8 +6638,8 @@ export interface Event {
6638
6638
  | "missing_user_id"
6639
6639
  | "calling_not_enabled"
6640
6640
  | "resolver_exception";
6641
- clientRequested: boolean;
6642
- resolverLatencyMs: number;
6641
+ clientRequested?: boolean;
6642
+ resolverLatencyMs?: number;
6643
6643
  additionalProperties?: never;
6644
6644
  };
6645
6645
  timeShotAgeSeconds?: number;
@@ -9269,6 +9269,17 @@ export interface Event {
9269
9269
  };
9270
9270
  backgroundAugmentationModelVersion?: string;
9271
9271
  ladonModelGpuLoadTime?: number;
9272
+ wmlHostStartErrorType?:
9273
+ | "NONE"
9274
+ | "FILE_NOT_FOUND"
9275
+ | "ACCESS_DENIED"
9276
+ | "BAD_EXE_FORMAT"
9277
+ | "EXE_MACHINE_TYPE_MISMATCH"
9278
+ | "POLICY_BLOCKED"
9279
+ | "VERIFICATION_FAILED"
9280
+ | "HOST_PATH_EMPTY"
9281
+ | "IPC_OPEN_FAILED"
9282
+ | "OTHER";
9272
9283
  isGestureDetectorOn?: boolean;
9273
9284
  isBrbDetectorOn?: boolean;
9274
9285
  isRelightingOn?: boolean;
@@ -25614,6 +25625,17 @@ export interface MediaQualityEvent {
25614
25625
  };
25615
25626
  backgroundAugmentationModelVersion?: string;
25616
25627
  ladonModelGpuLoadTime?: number;
25628
+ wmlHostStartErrorType?:
25629
+ | "NONE"
25630
+ | "FILE_NOT_FOUND"
25631
+ | "ACCESS_DENIED"
25632
+ | "BAD_EXE_FORMAT"
25633
+ | "EXE_MACHINE_TYPE_MISMATCH"
25634
+ | "POLICY_BLOCKED"
25635
+ | "VERIFICATION_FAILED"
25636
+ | "HOST_PATH_EMPTY"
25637
+ | "IPC_OPEN_FAILED"
25638
+ | "OTHER";
25617
25639
  isGestureDetectorOn?: boolean;
25618
25640
  isBrbDetectorOn?: boolean;
25619
25641
  isRelightingOn?: boolean;
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.2223"
35
+ "version": "1.0.2225"
36
36
  }