@webex/event-dictionary-ts 1.0.1367 → 1.0.1368
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.
|
@@ -10526,6 +10526,37 @@
|
|
|
10526
10526
|
"type": "string"
|
|
10527
10527
|
}
|
|
10528
10528
|
},
|
|
10529
|
+
"geoHintCandidates": {
|
|
10530
|
+
"type": "array",
|
|
10531
|
+
"items": {
|
|
10532
|
+
"type": "object",
|
|
10533
|
+
"description": "A potentially usable GeoHint for Orpheus's call placement logic",
|
|
10534
|
+
"additionalProperties": true,
|
|
10535
|
+
"properties": {
|
|
10536
|
+
"geoHints": {
|
|
10537
|
+
"type": "array",
|
|
10538
|
+
"items": {
|
|
10539
|
+
"type": "string"
|
|
10540
|
+
}
|
|
10541
|
+
},
|
|
10542
|
+
"source": {}
|
|
10543
|
+
}
|
|
10544
|
+
}
|
|
10545
|
+
},
|
|
10546
|
+
"geoHintClusterInformation": {
|
|
10547
|
+
"type": "object",
|
|
10548
|
+
"description": "Mapping information for a given GeoHint",
|
|
10549
|
+
"additionalProperties": true,
|
|
10550
|
+
"properties": {
|
|
10551
|
+
"geoHintClusters": {
|
|
10552
|
+
"type": "array",
|
|
10553
|
+
"items": {
|
|
10554
|
+
"type": "string"
|
|
10555
|
+
}
|
|
10556
|
+
},
|
|
10557
|
+
"source": {}
|
|
10558
|
+
}
|
|
10559
|
+
},
|
|
10529
10560
|
"isCall": {
|
|
10530
10561
|
"type": "boolean"
|
|
10531
10562
|
},
|
|
@@ -11145,6 +11176,10 @@
|
|
|
11145
11176
|
},
|
|
11146
11177
|
"clientPublicNetworkPrefix": {
|
|
11147
11178
|
"type": "string"
|
|
11179
|
+
},
|
|
11180
|
+
"timeShot": {
|
|
11181
|
+
"type": "string",
|
|
11182
|
+
"format": "date-time"
|
|
11148
11183
|
}
|
|
11149
11184
|
}
|
|
11150
11185
|
},
|
|
@@ -4544,6 +4544,19 @@ export interface Event {
|
|
|
4544
4544
|
expectedCloudReachabilityClustersCount?: number;
|
|
4545
4545
|
geoHint?: string[];
|
|
4546
4546
|
geoHintClusters?: string[];
|
|
4547
|
+
geoHintCandidates?: {
|
|
4548
|
+
geoHints?: string[];
|
|
4549
|
+
source?: {};
|
|
4550
|
+
additionalProperties?: false;
|
|
4551
|
+
}[];
|
|
4552
|
+
/**
|
|
4553
|
+
* Mapping information for a given GeoHint
|
|
4554
|
+
*/
|
|
4555
|
+
geoHintClusterInformation?: {
|
|
4556
|
+
geoHintClusters?: string[];
|
|
4557
|
+
source?: {};
|
|
4558
|
+
additionalProperties?: false;
|
|
4559
|
+
};
|
|
4547
4560
|
isCall?: boolean;
|
|
4548
4561
|
isTIP: boolean;
|
|
4549
4562
|
/**
|
|
@@ -4858,6 +4871,7 @@ export interface Event {
|
|
|
4858
4871
|
discoveryInfo?: {
|
|
4859
4872
|
anycastEntryPoint?: string;
|
|
4860
4873
|
clientPublicNetworkPrefix?: string;
|
|
4874
|
+
timeShot?: string;
|
|
4861
4875
|
additionalProperties?: false;
|
|
4862
4876
|
};
|
|
4863
4877
|
isMeetingStartedByCCPUser?: boolean;
|
package/package.json
CHANGED