@webex/event-dictionary-ts 1.0.1670 → 1.0.1671
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.
|
@@ -11308,6 +11308,14 @@
|
|
|
11308
11308
|
"description": "Geographical information derived from a client's IP Address",
|
|
11309
11309
|
"additionalProperties": true,
|
|
11310
11310
|
"properties": {
|
|
11311
|
+
"ipVersion": {
|
|
11312
|
+
"enum": [
|
|
11313
|
+
"IPv4",
|
|
11314
|
+
"IPv6",
|
|
11315
|
+
"Dual"
|
|
11316
|
+
],
|
|
11317
|
+
"type": "string"
|
|
11318
|
+
},
|
|
11311
11319
|
"networkPrefix": {
|
|
11312
11320
|
"type": "string"
|
|
11313
11321
|
},
|
|
@@ -11338,6 +11346,14 @@
|
|
|
11338
11346
|
"description": "Geographical information derived from a client's IP Address",
|
|
11339
11347
|
"additionalProperties": true,
|
|
11340
11348
|
"properties": {
|
|
11349
|
+
"ipVersion": {
|
|
11350
|
+
"enum": [
|
|
11351
|
+
"IPv4",
|
|
11352
|
+
"IPv6",
|
|
11353
|
+
"Dual"
|
|
11354
|
+
],
|
|
11355
|
+
"type": "string"
|
|
11356
|
+
},
|
|
11341
11357
|
"networkPrefix": {
|
|
11342
11358
|
"type": "string"
|
|
11343
11359
|
},
|
|
@@ -11368,6 +11384,14 @@
|
|
|
11368
11384
|
"description": "Geographical information derived from a client's IP Address",
|
|
11369
11385
|
"additionalProperties": true,
|
|
11370
11386
|
"properties": {
|
|
11387
|
+
"ipVersion": {
|
|
11388
|
+
"enum": [
|
|
11389
|
+
"IPv4",
|
|
11390
|
+
"IPv6",
|
|
11391
|
+
"Dual"
|
|
11392
|
+
],
|
|
11393
|
+
"type": "string"
|
|
11394
|
+
},
|
|
11371
11395
|
"networkPrefix": {
|
|
11372
11396
|
"type": "string"
|
|
11373
11397
|
},
|
|
@@ -12239,6 +12263,9 @@
|
|
|
12239
12263
|
"anycastEntryPoint": {
|
|
12240
12264
|
"type": "string"
|
|
12241
12265
|
},
|
|
12266
|
+
"clientReportedIpVersion": {
|
|
12267
|
+
"type": "integer"
|
|
12268
|
+
},
|
|
12242
12269
|
"clientPublicNetworkPrefix": {
|
|
12243
12270
|
"type": "string"
|
|
12244
12271
|
},
|
|
@@ -5158,6 +5158,7 @@ export interface Event {
|
|
|
5158
5158
|
* Geographical information derived from a client's IP Address
|
|
5159
5159
|
*/
|
|
5160
5160
|
clientDiscoverySignallingGeoIpInformation?: {
|
|
5161
|
+
ipVersion?: "IPv4" | "IPv6" | "Dual";
|
|
5161
5162
|
networkPrefix?: string;
|
|
5162
5163
|
clientRegion?: string;
|
|
5163
5164
|
clientCountryCode?: string;
|
|
@@ -5175,6 +5176,7 @@ export interface Event {
|
|
|
5175
5176
|
* Geographical information derived from a client's IP Address
|
|
5176
5177
|
*/
|
|
5177
5178
|
clientJoinSignallingGeoIpInformation?: {
|
|
5179
|
+
ipVersion?: "IPv4" | "IPv6" | "Dual";
|
|
5178
5180
|
networkPrefix?: string;
|
|
5179
5181
|
clientRegion?: string;
|
|
5180
5182
|
clientCountryCode?: string;
|
|
@@ -5192,6 +5194,7 @@ export interface Event {
|
|
|
5192
5194
|
* Geographical information derived from a client's IP Address
|
|
5193
5195
|
*/
|
|
5194
5196
|
clientServerReflexiveMediaGeoIpInformation?: {
|
|
5197
|
+
ipVersion?: "IPv4" | "IPv6" | "Dual";
|
|
5195
5198
|
networkPrefix?: string;
|
|
5196
5199
|
clientRegion?: string;
|
|
5197
5200
|
clientCountryCode?: string;
|
|
@@ -5593,6 +5596,7 @@ export interface Event {
|
|
|
5593
5596
|
*/
|
|
5594
5597
|
discoveryInfo?: {
|
|
5595
5598
|
anycastEntryPoint?: string;
|
|
5599
|
+
clientReportedIpVersion?: number;
|
|
5596
5600
|
clientPublicNetworkPrefix?: string;
|
|
5597
5601
|
timeShotAgeSeconds?: number;
|
|
5598
5602
|
trigger?: string;
|
package/package.json
CHANGED