camstreamerlib 4.0.0-beta.148 → 4.0.0-beta.149
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/cjs/VapixAPI.js +1 -1
- package/esm/VapixAPI.js +1 -1
- package/package.json +1 -1
package/cjs/VapixAPI.js
CHANGED
|
@@ -515,7 +515,7 @@ class VapixAPI extends BasicAPI_1.BasicAPI {
|
|
|
515
515
|
headers: {
|
|
516
516
|
contentType: 'application/octet-stream',
|
|
517
517
|
},
|
|
518
|
-
timeout: options?.timeout ??
|
|
518
|
+
timeout: options?.timeout ?? 300000,
|
|
519
519
|
});
|
|
520
520
|
if (!res.ok) {
|
|
521
521
|
throw new errors_1.ErrorWithResponse(res);
|
package/esm/VapixAPI.js
CHANGED
|
@@ -512,7 +512,7 @@ export class VapixAPI extends BasicAPI {
|
|
|
512
512
|
headers: {
|
|
513
513
|
contentType: 'application/octet-stream',
|
|
514
514
|
},
|
|
515
|
-
timeout: options?.timeout ??
|
|
515
|
+
timeout: options?.timeout ?? 300000,
|
|
516
516
|
});
|
|
517
517
|
if (!res.ok) {
|
|
518
518
|
throw new ErrorWithResponse(res);
|