@apocaliss92/nodelink-js 0.4.14 → 0.4.15
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.
- package/dist/{chunk-WKETZFBI.js → chunk-6KYLA4YI.js} +3 -1
- package/dist/{chunk-WKETZFBI.js.map → chunk-6KYLA4YI.js.map} +1 -1
- package/dist/cli/rtsp-server.cjs +2 -0
- package/dist/cli/rtsp-server.cjs.map +1 -1
- package/dist/cli/rtsp-server.js +1 -1
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -19793,6 +19793,7 @@ ${xml}`
|
|
|
19793
19793
|
async setAutoFocus(channel, disable, options) {
|
|
19794
19794
|
const ch = this.normalizeChannel(channel);
|
|
19795
19795
|
const disableVal = disable ? 1 : 0;
|
|
19796
|
+
const extensionXml = buildChannelExtensionXml(ch);
|
|
19796
19797
|
const payloadXml = `<?xml version="1.0" encoding="UTF-8" ?>
|
|
19797
19798
|
<body>
|
|
19798
19799
|
<AutoFocus version="1.1">
|
|
@@ -19803,6 +19804,7 @@ ${xml}`
|
|
|
19803
19804
|
await this.sendXml({
|
|
19804
19805
|
cmdId: BC_CMD_ID_SET_AUTO_FOCUS,
|
|
19805
19806
|
channel: ch,
|
|
19807
|
+
extensionXml,
|
|
19806
19808
|
payloadXml,
|
|
19807
19809
|
...options?.timeoutMs != null ? { timeoutMs: options.timeoutMs } : {}
|
|
19808
19810
|
});
|
|
@@ -23880,4 +23882,4 @@ export {
|
|
|
23880
23882
|
isTcpFailureThatShouldFallbackToUdp,
|
|
23881
23883
|
autoDetectDeviceType
|
|
23882
23884
|
};
|
|
23883
|
-
//# sourceMappingURL=chunk-
|
|
23885
|
+
//# sourceMappingURL=chunk-6KYLA4YI.js.map
|