@webex/event-dictionary-ts 1.0.2222 → 1.0.2223

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.
@@ -14251,6 +14251,52 @@
14251
14251
  "clientPublicNetworkPrefix": {
14252
14252
  "type": "string"
14253
14253
  },
14254
+ "calling": {
14255
+ "type": "object",
14256
+ "description": "Result and timing information for Calling Services discovery.",
14257
+ "additionalProperties": true,
14258
+ "required": [
14259
+ "outcome",
14260
+ "reason",
14261
+ "clientRequested",
14262
+ "resolverLatencyMs"
14263
+ ],
14264
+ "properties": {
14265
+ "outcome": {
14266
+ "type": "string",
14267
+ "description": "Outcome of a Calling Services discovery attempt.",
14268
+ "enum": [
14269
+ "skipped",
14270
+ "resolved",
14271
+ "unavailable",
14272
+ "pending",
14273
+ "fail_open"
14274
+ ]
14275
+ },
14276
+ "reason": {
14277
+ "type": "string",
14278
+ "description": "Reason associated with a Calling Services discovery outcome.",
14279
+ "enum": [
14280
+ "none",
14281
+ "method_not_post",
14282
+ "missing_auth_context",
14283
+ "anonymous_user",
14284
+ "missing_org_id",
14285
+ "missing_user_id",
14286
+ "calling_not_enabled",
14287
+ "resolver_exception"
14288
+ ]
14289
+ },
14290
+ "clientRequested": {
14291
+ "type": "boolean"
14292
+ },
14293
+ "resolverLatencyMs": {
14294
+ "type": "number",
14295
+ "minimum": 0.0,
14296
+ "maximum": 9223372036854776000.0
14297
+ }
14298
+ }
14299
+ },
14254
14300
  "timeShotAgeSeconds": {
14255
14301
  "type": "number",
14256
14302
  "multipleOf": 0.1
@@ -6618,6 +6618,30 @@ export interface Event {
6618
6618
  anycastEntryPoint?: string;
6619
6619
  clientReportedIpVersion?: number;
6620
6620
  clientPublicNetworkPrefix?: string;
6621
+ /**
6622
+ * Result and timing information for Calling Services discovery.
6623
+ */
6624
+ calling?: {
6625
+ /**
6626
+ * Outcome of a Calling Services discovery attempt.
6627
+ */
6628
+ outcome: "skipped" | "resolved" | "unavailable" | "pending" | "fail_open";
6629
+ /**
6630
+ * Reason associated with a Calling Services discovery outcome.
6631
+ */
6632
+ reason:
6633
+ | "none"
6634
+ | "method_not_post"
6635
+ | "missing_auth_context"
6636
+ | "anonymous_user"
6637
+ | "missing_org_id"
6638
+ | "missing_user_id"
6639
+ | "calling_not_enabled"
6640
+ | "resolver_exception";
6641
+ clientRequested: boolean;
6642
+ resolverLatencyMs: number;
6643
+ additionalProperties?: never;
6644
+ };
6621
6645
  timeShotAgeSeconds?: number;
6622
6646
  trigger?: string;
6623
6647
  additionalProperties?: never;
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.2222"
35
+ "version": "1.0.2223"
36
36
  }