@webex/event-dictionary-ts 1.0.2223 → 1.0.2224

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",
@@ -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;
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.2224"
36
36
  }