@webex/event-dictionary-ts 1.0.1370 → 1.0.1371
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.
|
@@ -10557,17 +10557,20 @@
|
|
|
10557
10557
|
}
|
|
10558
10558
|
},
|
|
10559
10559
|
"geoHintClusterInformation": {
|
|
10560
|
-
"type": "
|
|
10561
|
-
"
|
|
10562
|
-
|
|
10563
|
-
|
|
10564
|
-
"
|
|
10565
|
-
|
|
10566
|
-
"
|
|
10567
|
-
"type": "
|
|
10568
|
-
|
|
10569
|
-
|
|
10570
|
-
|
|
10560
|
+
"type": "array",
|
|
10561
|
+
"items": {
|
|
10562
|
+
"type": "object",
|
|
10563
|
+
"description": "Mapping information for a given GeoHint",
|
|
10564
|
+
"additionalProperties": true,
|
|
10565
|
+
"properties": {
|
|
10566
|
+
"geoHintClusters": {
|
|
10567
|
+
"type": "array",
|
|
10568
|
+
"items": {
|
|
10569
|
+
"type": "string"
|
|
10570
|
+
}
|
|
10571
|
+
},
|
|
10572
|
+
"source": {}
|
|
10573
|
+
}
|
|
10571
10574
|
}
|
|
10572
10575
|
},
|
|
10573
10576
|
"isCall": {
|
|
@@ -4554,14 +4554,11 @@ export interface Event {
|
|
|
4554
4554
|
source?: {};
|
|
4555
4555
|
additionalProperties?: false;
|
|
4556
4556
|
}[];
|
|
4557
|
-
/**
|
|
4558
|
-
* Mapping information for a given GeoHint
|
|
4559
|
-
*/
|
|
4560
4557
|
geoHintClusterInformation?: {
|
|
4561
4558
|
geoHintClusters?: string[];
|
|
4562
4559
|
source?: {};
|
|
4563
4560
|
additionalProperties?: false;
|
|
4564
|
-
};
|
|
4561
|
+
}[];
|
|
4565
4562
|
isCall?: boolean;
|
|
4566
4563
|
isTIP: boolean;
|
|
4567
4564
|
/**
|
package/package.json
CHANGED