@webex/event-dictionary-ts 1.0.1669 → 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.
@@ -270,6 +270,9 @@
270
270
  ],
271
271
  "type": "string"
272
272
  },
273
+ "homeDataCenter": {
274
+ "type": "string"
275
+ },
273
276
  "success": {
274
277
  "type": "boolean"
275
278
  },
@@ -774,6 +774,9 @@
774
774
  ],
775
775
  "type": "string"
776
776
  },
777
+ "homeDataCenter": {
778
+ "type": "string"
779
+ },
777
780
  "success": {
778
781
  "type": "boolean"
779
782
  },
@@ -8226,6 +8229,9 @@
8226
8229
  }
8227
8230
  }
8228
8231
  },
8232
+ "homeDataCenter": {
8233
+ "type": "string"
8234
+ },
8229
8235
  "success": {
8230
8236
  "type": "boolean"
8231
8237
  },
@@ -11302,6 +11308,14 @@
11302
11308
  "description": "Geographical information derived from a client's IP Address",
11303
11309
  "additionalProperties": true,
11304
11310
  "properties": {
11311
+ "ipVersion": {
11312
+ "enum": [
11313
+ "IPv4",
11314
+ "IPv6",
11315
+ "Dual"
11316
+ ],
11317
+ "type": "string"
11318
+ },
11305
11319
  "networkPrefix": {
11306
11320
  "type": "string"
11307
11321
  },
@@ -11332,6 +11346,14 @@
11332
11346
  "description": "Geographical information derived from a client's IP Address",
11333
11347
  "additionalProperties": true,
11334
11348
  "properties": {
11349
+ "ipVersion": {
11350
+ "enum": [
11351
+ "IPv4",
11352
+ "IPv6",
11353
+ "Dual"
11354
+ ],
11355
+ "type": "string"
11356
+ },
11335
11357
  "networkPrefix": {
11336
11358
  "type": "string"
11337
11359
  },
@@ -11362,6 +11384,14 @@
11362
11384
  "description": "Geographical information derived from a client's IP Address",
11363
11385
  "additionalProperties": true,
11364
11386
  "properties": {
11387
+ "ipVersion": {
11388
+ "enum": [
11389
+ "IPv4",
11390
+ "IPv6",
11391
+ "Dual"
11392
+ ],
11393
+ "type": "string"
11394
+ },
11365
11395
  "networkPrefix": {
11366
11396
  "type": "string"
11367
11397
  },
@@ -12233,6 +12263,9 @@
12233
12263
  "anycastEntryPoint": {
12234
12264
  "type": "string"
12235
12265
  },
12266
+ "clientReportedIpVersion": {
12267
+ "type": "integer"
12268
+ },
12236
12269
  "clientPublicNetworkPrefix": {
12237
12270
  "type": "string"
12238
12271
  },
@@ -12622,6 +12655,9 @@
12622
12655
  ],
12623
12656
  "type": "string"
12624
12657
  },
12658
+ "homeDataCenter": {
12659
+ "type": "string"
12660
+ },
12625
12661
  "success": {
12626
12662
  "type": "boolean"
12627
12663
  },
@@ -21954,6 +21990,9 @@
21954
21990
  ],
21955
21991
  "type": "string"
21956
21992
  },
21993
+ "homeDataCenter": {
21994
+ "type": "string"
21995
+ },
21957
21996
  "success": {
21958
21997
  "type": "boolean"
21959
21998
  },
@@ -25870,6 +25909,9 @@
25870
25909
  ],
25871
25910
  "type": "string"
25872
25911
  },
25912
+ "homeDataCenter": {
25913
+ "type": "string"
25914
+ },
25873
25915
  "success": {
25874
25916
  "type": "boolean"
25875
25917
  },
@@ -30855,6 +30897,9 @@
30855
30897
  ],
30856
30898
  "type": "string"
30857
30899
  },
30900
+ "homeDataCenter": {
30901
+ "type": "string"
30902
+ },
30858
30903
  "success": {
30859
30904
  "type": "boolean"
30860
30905
  },
@@ -270,6 +270,9 @@
270
270
  ],
271
271
  "type": "string"
272
272
  },
273
+ "homeDataCenter": {
274
+ "type": "string"
275
+ },
273
276
  "success": {
274
277
  "type": "boolean"
275
278
  },
@@ -271,6 +271,9 @@
271
271
  ],
272
272
  "type": "string"
273
273
  },
274
+ "homeDataCenter": {
275
+ "type": "string"
276
+ },
274
277
  "success": {
275
278
  "type": "boolean"
276
279
  },
@@ -352,6 +352,7 @@ export interface Event {
352
352
  additionalProperties?: false;
353
353
  };
354
354
  pstnAudioType?: "dial-in" | "dial-out";
355
+ homeDataCenter?: string;
355
356
  success?: boolean;
356
357
  isTranscoded?: boolean;
357
358
  isGatewayed?: boolean;
@@ -3819,6 +3820,7 @@ export interface Event {
3819
3820
  clientCorrelationId?: string;
3820
3821
  additionalProperties?: false;
3821
3822
  };
3823
+ homeDataCenter?: string;
3822
3824
  success?: boolean;
3823
3825
  isTranscoded?: boolean;
3824
3826
  isGatewayed?: boolean;
@@ -5156,6 +5158,7 @@ export interface Event {
5156
5158
  * Geographical information derived from a client's IP Address
5157
5159
  */
5158
5160
  clientDiscoverySignallingGeoIpInformation?: {
5161
+ ipVersion?: "IPv4" | "IPv6" | "Dual";
5159
5162
  networkPrefix?: string;
5160
5163
  clientRegion?: string;
5161
5164
  clientCountryCode?: string;
@@ -5173,6 +5176,7 @@ export interface Event {
5173
5176
  * Geographical information derived from a client's IP Address
5174
5177
  */
5175
5178
  clientJoinSignallingGeoIpInformation?: {
5179
+ ipVersion?: "IPv4" | "IPv6" | "Dual";
5176
5180
  networkPrefix?: string;
5177
5181
  clientRegion?: string;
5178
5182
  clientCountryCode?: string;
@@ -5190,6 +5194,7 @@ export interface Event {
5190
5194
  * Geographical information derived from a client's IP Address
5191
5195
  */
5192
5196
  clientServerReflexiveMediaGeoIpInformation?: {
5197
+ ipVersion?: "IPv4" | "IPv6" | "Dual";
5193
5198
  networkPrefix?: string;
5194
5199
  clientRegion?: string;
5195
5200
  clientCountryCode?: string;
@@ -5591,6 +5596,7 @@ export interface Event {
5591
5596
  */
5592
5597
  discoveryInfo?: {
5593
5598
  anycastEntryPoint?: string;
5599
+ clientReportedIpVersion?: number;
5594
5600
  clientPublicNetworkPrefix?: string;
5595
5601
  timeShotAgeSeconds?: number;
5596
5602
  trigger?: string;
@@ -5711,6 +5717,7 @@ export interface Event {
5711
5717
  additionalProperties?: false;
5712
5718
  };
5713
5719
  pstnAudioType?: "dial-in" | "dial-out";
5720
+ homeDataCenter?: string;
5714
5721
  success?: boolean;
5715
5722
  isTranscoded?: boolean;
5716
5723
  isGatewayed?: boolean;
@@ -9308,6 +9315,7 @@ export interface Event {
9308
9315
  additionalProperties?: false;
9309
9316
  };
9310
9317
  pstnAudioType?: "dial-in" | "dial-out";
9318
+ homeDataCenter?: string;
9311
9319
  success?: boolean;
9312
9320
  isTranscoded?: boolean;
9313
9321
  isGatewayed?: boolean;
@@ -11014,6 +11022,7 @@ export interface Event {
11014
11022
  additionalProperties?: false;
11015
11023
  };
11016
11024
  pstnAudioType?: "dial-in" | "dial-out";
11025
+ homeDataCenter?: string;
11017
11026
  success?: boolean;
11018
11027
  isTranscoded?: boolean;
11019
11028
  isGatewayed?: boolean;
@@ -12671,6 +12680,7 @@ export interface Event {
12671
12680
  additionalProperties?: false;
12672
12681
  };
12673
12682
  pstnAudioType?: "dial-in" | "dial-out";
12683
+ homeDataCenter?: string;
12674
12684
  success?: boolean;
12675
12685
  isTranscoded?: boolean;
12676
12686
  isGatewayed?: boolean;
@@ -13661,6 +13671,7 @@ export interface ClientEvent {
13661
13671
  additionalProperties?: false;
13662
13672
  };
13663
13673
  pstnAudioType?: "dial-in" | "dial-out";
13674
+ homeDataCenter?: string;
13664
13675
  success?: boolean;
13665
13676
  isTranscoded?: boolean;
13666
13677
  isGatewayed?: boolean;
@@ -17046,6 +17057,7 @@ export interface FeatureEvent {
17046
17057
  additionalProperties?: false;
17047
17058
  };
17048
17059
  pstnAudioType?: "dial-in" | "dial-out";
17060
+ homeDataCenter?: string;
17049
17061
  success?: boolean;
17050
17062
  isTranscoded?: boolean;
17051
17063
  isGatewayed?: boolean;
@@ -18763,6 +18775,7 @@ export interface MediaQualityEvent {
18763
18775
  additionalProperties?: false;
18764
18776
  };
18765
18777
  pstnAudioType?: "dial-in" | "dial-out";
18778
+ homeDataCenter?: string;
18766
18779
  success?: boolean;
18767
18780
  isTranscoded?: boolean;
18768
18781
  isGatewayed?: boolean;
package/package.json CHANGED
@@ -28,5 +28,5 @@
28
28
  "access": "public",
29
29
  "registry": "https://registry.npmjs.org"
30
30
  },
31
- "version": "1.0.1669"
31
+ "version": "1.0.1671"
32
32
  }