@webex/event-dictionary-ts 1.0.1693 → 1.0.1695
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.
|
@@ -29997,6 +29997,9 @@
|
|
|
29997
29997
|
"xTLS",
|
|
29998
29998
|
"TLS"
|
|
29999
29999
|
]
|
|
30000
|
+
},
|
|
30001
|
+
"transmitCodec": {
|
|
30002
|
+
"type": "string"
|
|
30000
30003
|
}
|
|
30001
30004
|
}
|
|
30002
30005
|
}
|
|
@@ -30799,6 +30802,9 @@
|
|
|
30799
30802
|
"xTLS",
|
|
30800
30803
|
"TLS"
|
|
30801
30804
|
]
|
|
30805
|
+
},
|
|
30806
|
+
"transmitCodec": {
|
|
30807
|
+
"type": "string"
|
|
30802
30808
|
}
|
|
30803
30809
|
}
|
|
30804
30810
|
}
|
|
@@ -12425,6 +12425,7 @@ export interface Event {
|
|
|
12425
12425
|
* indicates transport type used
|
|
12426
12426
|
*/
|
|
12427
12427
|
transportType?: "UDP" | "TCP" | "xTLS" | "TLS";
|
|
12428
|
+
transmitCodec?: string;
|
|
12428
12429
|
additionalProperties?: false;
|
|
12429
12430
|
};
|
|
12430
12431
|
additionalProperties?: false;
|
|
@@ -12650,6 +12651,7 @@ export interface Event {
|
|
|
12650
12651
|
* indicates transport type used
|
|
12651
12652
|
*/
|
|
12652
12653
|
transportType?: "UDP" | "TCP" | "xTLS" | "TLS";
|
|
12654
|
+
transmitCodec?: string;
|
|
12653
12655
|
additionalProperties?: false;
|
|
12654
12656
|
};
|
|
12655
12657
|
additionalProperties?: false;
|
package/package.json
CHANGED