@webex/event-dictionary-ts 1.0.1533 → 1.0.1535

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.
@@ -2180,6 +2180,7 @@
2180
2180
  "client.breakout-session.move.response",
2181
2181
  "client.call.aborted",
2182
2182
  "client.call.declined",
2183
+ "client.call.fallback",
2183
2184
  "client.call.diagnostics",
2184
2185
  "client.call.displayed",
2185
2186
  "client.call.info",
@@ -5803,6 +5804,16 @@
5803
5804
  "maskedRemoteMediaIP": {
5804
5805
  "type": "string"
5805
5806
  },
5807
+ "localIPType": {
5808
+ "type": "string",
5809
+ "description": "indicate user local ICE candidates IP type",
5810
+ "enum": [
5811
+ "IPTypeUnknown",
5812
+ "IPv4Only",
5813
+ "IPv6Only",
5814
+ "DualIPType"
5815
+ ]
5816
+ },
5806
5817
  "staticPerformanceLevel": {
5807
5818
  "type": "integer",
5808
5819
  "minimum": -128,
@@ -2679,6 +2679,7 @@
2679
2679
  "client.breakout-session.move.response",
2680
2680
  "client.call.aborted",
2681
2681
  "client.call.declined",
2682
+ "client.call.fallback",
2682
2683
  "client.call.diagnostics",
2683
2684
  "client.call.displayed",
2684
2685
  "client.call.info",
@@ -6302,6 +6303,16 @@
6302
6303
  "maskedRemoteMediaIP": {
6303
6304
  "type": "string"
6304
6305
  },
6306
+ "localIPType": {
6307
+ "type": "string",
6308
+ "description": "indicate user local ICE candidates IP type",
6309
+ "enum": [
6310
+ "IPTypeUnknown",
6311
+ "IPv4Only",
6312
+ "IPv6Only",
6313
+ "DualIPType"
6314
+ ]
6315
+ },
6305
6316
  "staticPerformanceLevel": {
6306
6317
  "type": "integer",
6307
6318
  "minimum": -128,
@@ -14746,6 +14757,16 @@
14746
14757
  "maskedRemoteMediaIP": {
14747
14758
  "type": "string"
14748
14759
  },
14760
+ "localIPType": {
14761
+ "type": "string",
14762
+ "description": "indicate user local ICE candidates IP type",
14763
+ "enum": [
14764
+ "IPTypeUnknown",
14765
+ "IPv4Only",
14766
+ "IPv6Only",
14767
+ "DualIPType"
14768
+ ]
14769
+ },
14749
14770
  "staticPerformanceLevel": {
14750
14771
  "type": "integer",
14751
14772
  "minimum": -128,
@@ -27453,6 +27474,16 @@
27453
27474
  "maskedRemoteMediaIP": {
27454
27475
  "type": "string"
27455
27476
  },
27477
+ "localIPType": {
27478
+ "type": "string",
27479
+ "description": "indicate user local ICE candidates IP type",
27480
+ "enum": [
27481
+ "IPTypeUnknown",
27482
+ "IPv4Only",
27483
+ "IPv6Only",
27484
+ "DualIPType"
27485
+ ]
27486
+ },
27456
27487
  "staticPerformanceLevel": {
27457
27488
  "type": "integer",
27458
27489
  "minimum": -128,
@@ -2754,6 +2754,16 @@
2754
2754
  "maskedRemoteMediaIP": {
2755
2755
  "type": "string"
2756
2756
  },
2757
+ "localIPType": {
2758
+ "type": "string",
2759
+ "description": "indicate user local ICE candidates IP type",
2760
+ "enum": [
2761
+ "IPTypeUnknown",
2762
+ "IPv4Only",
2763
+ "IPv6Only",
2764
+ "DualIPType"
2765
+ ]
2766
+ },
2757
2767
  "staticPerformanceLevel": {
2758
2768
  "type": "integer",
2759
2769
  "minimum": -128,
@@ -976,6 +976,7 @@ export interface Event {
976
976
  | "client.breakout-session.move.response"
977
977
  | "client.call.aborted"
978
978
  | "client.call.declined"
979
+ | "client.call.fallback"
979
980
  | "client.call.diagnostics"
980
981
  | "client.call.displayed"
981
982
  | "client.call.info"
@@ -2911,6 +2912,10 @@ export interface Event {
2911
2912
  maskedPeerReflexiveIP?: string;
2912
2913
  remoteMediaIP?: string;
2913
2914
  maskedRemoteMediaIP?: string;
2915
+ /**
2916
+ * indicate user local ICE candidates IP type
2917
+ */
2918
+ localIPType?: "IPTypeUnknown" | "IPv4Only" | "IPv6Only" | "DualIPType";
2914
2919
  staticPerformanceLevel?: number;
2915
2920
  staticPerformanceScore?: number;
2916
2921
  processAverageCPU?: number;
@@ -6236,6 +6241,10 @@ export interface Event {
6236
6241
  maskedPeerReflexiveIP?: string;
6237
6242
  remoteMediaIP?: string;
6238
6243
  maskedRemoteMediaIP?: string;
6244
+ /**
6245
+ * indicate user local ICE candidates IP type
6246
+ */
6247
+ localIPType?: "IPTypeUnknown" | "IPv4Only" | "IPv6Only" | "DualIPType";
6239
6248
  staticPerformanceLevel?: number;
6240
6249
  staticPerformanceScore?: number;
6241
6250
  processAverageCPU?: number;
@@ -11122,6 +11131,10 @@ export interface Event {
11122
11131
  maskedPeerReflexiveIP?: string;
11123
11132
  remoteMediaIP?: string;
11124
11133
  maskedRemoteMediaIP?: string;
11134
+ /**
11135
+ * indicate user local ICE candidates IP type
11136
+ */
11137
+ localIPType?: "IPTypeUnknown" | "IPv4Only" | "IPv6Only" | "DualIPType";
11125
11138
  staticPerformanceLevel?: number;
11126
11139
  staticPerformanceScore?: number;
11127
11140
  processAverageCPU?: number;
@@ -12421,6 +12434,7 @@ export interface ClientEvent {
12421
12434
  | "client.breakout-session.move.response"
12422
12435
  | "client.call.aborted"
12423
12436
  | "client.call.declined"
12437
+ | "client.call.fallback"
12424
12438
  | "client.call.diagnostics"
12425
12439
  | "client.call.displayed"
12426
12440
  | "client.call.info"
@@ -14356,6 +14370,10 @@ export interface ClientEvent {
14356
14370
  maskedPeerReflexiveIP?: string;
14357
14371
  remoteMediaIP?: string;
14358
14372
  maskedRemoteMediaIP?: string;
14373
+ /**
14374
+ * indicate user local ICE candidates IP type
14375
+ */
14376
+ localIPType?: "IPTypeUnknown" | "IPv4Only" | "IPv6Only" | "DualIPType";
14359
14377
  staticPerformanceLevel?: number;
14360
14378
  staticPerformanceScore?: number;
14361
14379
  processAverageCPU?: number;
@@ -17484,6 +17502,10 @@ export interface MediaQualityEvent {
17484
17502
  maskedPeerReflexiveIP?: string;
17485
17503
  remoteMediaIP?: string;
17486
17504
  maskedRemoteMediaIP?: string;
17505
+ /**
17506
+ * indicate user local ICE candidates IP type
17507
+ */
17508
+ localIPType?: "IPTypeUnknown" | "IPv4Only" | "IPv6Only" | "DualIPType";
17487
17509
  staticPerformanceLevel?: number;
17488
17510
  staticPerformanceScore?: number;
17489
17511
  processAverageCPU?: number;
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.1533"
31
+ "version": "1.0.1535"
32
32
  }