@webex/event-dictionary-ts 1.0.1462 → 1.0.1464
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.
|
@@ -11266,6 +11266,14 @@
|
|
|
11266
11266
|
},
|
|
11267
11267
|
"isPSTN": {
|
|
11268
11268
|
"type": "boolean"
|
|
11269
|
+
},
|
|
11270
|
+
"enhancedGeoHintsMode": {
|
|
11271
|
+
"enum": [
|
|
11272
|
+
"ORPHEUS_DISABLED",
|
|
11273
|
+
"CUSTOMER_DISABLED",
|
|
11274
|
+
"ENABLED"
|
|
11275
|
+
],
|
|
11276
|
+
"type": "string"
|
|
11269
11277
|
}
|
|
11270
11278
|
}
|
|
11271
11279
|
},
|
|
@@ -4933,6 +4933,7 @@ export interface Event {
|
|
|
4933
4933
|
expectedHybridMediaReachabilityClustersCount?: number;
|
|
4934
4934
|
weightedClusters?: string[];
|
|
4935
4935
|
isPSTN?: boolean;
|
|
4936
|
+
enhancedGeoHintsMode?: "ORPHEUS_DISABLED" | "CUSTOMER_DISABLED" | "ENABLED";
|
|
4936
4937
|
additionalProperties?: false;
|
|
4937
4938
|
};
|
|
4938
4939
|
apiVersion?: number;
|
package/package.json
CHANGED