@webex/event-dictionary-ts 1.0.2222 → 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.
|
@@ -14251,6 +14251,46 @@
|
|
|
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
|
+
"properties": {
|
|
14259
|
+
"outcome": {
|
|
14260
|
+
"type": "string",
|
|
14261
|
+
"description": "Outcome of a Calling Services discovery attempt.",
|
|
14262
|
+
"enum": [
|
|
14263
|
+
"skipped",
|
|
14264
|
+
"resolved",
|
|
14265
|
+
"unavailable",
|
|
14266
|
+
"pending",
|
|
14267
|
+
"fail_open"
|
|
14268
|
+
]
|
|
14269
|
+
},
|
|
14270
|
+
"reason": {
|
|
14271
|
+
"type": "string",
|
|
14272
|
+
"description": "Reason associated with a Calling Services discovery outcome.",
|
|
14273
|
+
"enum": [
|
|
14274
|
+
"none",
|
|
14275
|
+
"method_not_post",
|
|
14276
|
+
"missing_auth_context",
|
|
14277
|
+
"anonymous_user",
|
|
14278
|
+
"missing_org_id",
|
|
14279
|
+
"missing_user_id",
|
|
14280
|
+
"calling_not_enabled",
|
|
14281
|
+
"resolver_exception"
|
|
14282
|
+
]
|
|
14283
|
+
},
|
|
14284
|
+
"clientRequested": {
|
|
14285
|
+
"type": "boolean"
|
|
14286
|
+
},
|
|
14287
|
+
"resolverLatencyMs": {
|
|
14288
|
+
"type": "number",
|
|
14289
|
+
"minimum": 0.0,
|
|
14290
|
+
"maximum": 9223372036854776000.0
|
|
14291
|
+
}
|
|
14292
|
+
}
|
|
14293
|
+
},
|
|
14254
14294
|
"timeShotAgeSeconds": {
|
|
14255
14295
|
"type": "number",
|
|
14256
14296
|
"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