@webex/event-dictionary-ts 1.0.1686 → 1.0.1688
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.
|
@@ -29974,6 +29974,16 @@
|
|
|
29974
29974
|
},
|
|
29975
29975
|
"rtpRemotePort": {
|
|
29976
29976
|
"type": "string"
|
|
29977
|
+
},
|
|
29978
|
+
"transportType": {
|
|
29979
|
+
"type": "string",
|
|
29980
|
+
"description": "indicates transport type used",
|
|
29981
|
+
"enum": [
|
|
29982
|
+
"UDP",
|
|
29983
|
+
"TCP",
|
|
29984
|
+
"xTLS",
|
|
29985
|
+
"TLS"
|
|
29986
|
+
]
|
|
29977
29987
|
}
|
|
29978
29988
|
}
|
|
29979
29989
|
}
|
|
@@ -30766,6 +30776,16 @@
|
|
|
30766
30776
|
},
|
|
30767
30777
|
"rtpRemotePort": {
|
|
30768
30778
|
"type": "string"
|
|
30779
|
+
},
|
|
30780
|
+
"transportType": {
|
|
30781
|
+
"type": "string",
|
|
30782
|
+
"description": "indicates transport type used",
|
|
30783
|
+
"enum": [
|
|
30784
|
+
"UDP",
|
|
30785
|
+
"TCP",
|
|
30786
|
+
"xTLS",
|
|
30787
|
+
"TLS"
|
|
30788
|
+
]
|
|
30769
30789
|
}
|
|
30770
30790
|
}
|
|
30771
30791
|
}
|
|
@@ -12420,6 +12420,10 @@ export interface Event {
|
|
|
12420
12420
|
rtcpRemotePort?: string;
|
|
12421
12421
|
rtpLocalPort?: string;
|
|
12422
12422
|
rtpRemotePort?: string;
|
|
12423
|
+
/**
|
|
12424
|
+
* indicates transport type used
|
|
12425
|
+
*/
|
|
12426
|
+
transportType?: "UDP" | "TCP" | "xTLS" | "TLS";
|
|
12423
12427
|
additionalProperties?: false;
|
|
12424
12428
|
};
|
|
12425
12429
|
additionalProperties?: false;
|
|
@@ -12641,6 +12645,10 @@ export interface Event {
|
|
|
12641
12645
|
rtcpRemotePort?: string;
|
|
12642
12646
|
rtpLocalPort?: string;
|
|
12643
12647
|
rtpRemotePort?: string;
|
|
12648
|
+
/**
|
|
12649
|
+
* indicates transport type used
|
|
12650
|
+
*/
|
|
12651
|
+
transportType?: "UDP" | "TCP" | "xTLS" | "TLS";
|
|
12644
12652
|
additionalProperties?: false;
|
|
12645
12653
|
};
|
|
12646
12654
|
additionalProperties?: false;
|
package/package.json
CHANGED