@camstack/addon-remote-storage 1.2.64 → 1.2.66
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/s3.addon.js +1 -1
- package/dist/s3.addon.mjs +1 -1
- package/dist/sftp.addon.js +1 -1
- package/dist/sftp.addon.mjs +1 -1
- package/dist/{shared-BrGnU2b8.js → shared-Bxz2Kytb.js} +12 -3
- package/dist/{shared-CjUsqSI9.mjs → shared-CvnsHCVR.mjs} +12 -3
- package/dist/smb.addon.js +1 -1
- package/dist/smb.addon.mjs +1 -1
- package/dist/webdav.addon.js +1 -1
- package/dist/webdav.addon.mjs +1 -1
- package/package.json +1 -1
package/dist/s3.addon.js
CHANGED
|
@@ -2,7 +2,7 @@ Object.defineProperties(exports, {
|
|
|
2
2
|
__esModule: { value: true },
|
|
3
3
|
[Symbol.toStringTag]: { value: "Module" }
|
|
4
4
|
});
|
|
5
|
-
const require_shared = require("./shared-
|
|
5
|
+
const require_shared = require("./shared-Bxz2Kytb.js");
|
|
6
6
|
let node_stream = require("node:stream");
|
|
7
7
|
let _aws_sdk_client_s3 = require("@aws-sdk/client-s3");
|
|
8
8
|
let _aws_sdk_lib_storage = require("@aws-sdk/lib-storage");
|
package/dist/s3.addon.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as BaseAddon, i as rearmIdleAbort, n as getOptionalBasePath, o as scheduleIdleAbort, s as storageProviderCapability, t as createSessionId } from "./shared-
|
|
1
|
+
import { c as BaseAddon, i as rearmIdleAbort, n as getOptionalBasePath, o as scheduleIdleAbort, s as storageProviderCapability, t as createSessionId } from "./shared-CvnsHCVR.mjs";
|
|
2
2
|
import { PassThrough } from "node:stream";
|
|
3
3
|
import { DeleteObjectCommand, GetObjectCommand, HeadBucketCommand, HeadObjectCommand, ListObjectsV2Command, PutObjectCommand, S3Client } from "@aws-sdk/client-s3";
|
|
4
4
|
import { Upload } from "@aws-sdk/lib-storage";
|
package/dist/sftp.addon.js
CHANGED
|
@@ -2,7 +2,7 @@ Object.defineProperties(exports, {
|
|
|
2
2
|
__esModule: { value: true },
|
|
3
3
|
[Symbol.toStringTag]: { value: "Module" }
|
|
4
4
|
});
|
|
5
|
-
const require_shared = require("./shared-
|
|
5
|
+
const require_shared = require("./shared-Bxz2Kytb.js");
|
|
6
6
|
let ssh2 = require("ssh2");
|
|
7
7
|
let node_path = require("node:path");
|
|
8
8
|
node_path = require_shared.__toESM(node_path);
|
package/dist/sftp.addon.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as safeJoinRemotePath, c as BaseAddon, i as rearmIdleAbort, o as scheduleIdleAbort, r as getRequiredBasePath, s as storageProviderCapability, t as createSessionId } from "./shared-
|
|
1
|
+
import { a as safeJoinRemotePath, c as BaseAddon, i as rearmIdleAbort, o as scheduleIdleAbort, r as getRequiredBasePath, s as storageProviderCapability, t as createSessionId } from "./shared-CvnsHCVR.mjs";
|
|
2
2
|
import { Client } from "ssh2";
|
|
3
3
|
import * as path from "node:path";
|
|
4
4
|
//#region src/providers/sftp/sftp-config-schema.ts
|
|
@@ -7561,7 +7561,8 @@ var CameraSwitchAuthoritySchema = discriminatedUnion("kind", [
|
|
|
7561
7561
|
var CameraSwitchUnavailableReasonSchema = _enum([
|
|
7562
7562
|
"no-provider",
|
|
7563
7563
|
"source-unreachable",
|
|
7564
|
-
"not-configured"
|
|
7564
|
+
"not-configured",
|
|
7565
|
+
"device-disabled"
|
|
7565
7566
|
]);
|
|
7566
7567
|
/**
|
|
7567
7568
|
* One switch, resolved for one camera.
|
|
@@ -23144,12 +23145,20 @@ var BatteryStatusSchema = object({
|
|
|
23144
23145
|
* Charging source. `'dc'` covers wall/USB adapters; `'solar'` is
|
|
23145
23146
|
* Reolink-specific for the Solar Panel 2 accessory (will become
|
|
23146
23147
|
* common on other battery cams). `'none'` means running on battery
|
|
23147
|
-
* alone.
|
|
23148
|
+
* alone — a NEGATIVE the firmware actually reported.
|
|
23149
|
+
*
|
|
23150
|
+
* `'unknown'` is the absence of an answer: the provider has not read the
|
|
23151
|
+
* power fields yet, or the firmware reported neither. Before it existed,
|
|
23152
|
+
* two unreadable fields produced `'none'`, and a camera nobody had reached
|
|
23153
|
+
* was drawn "on battery alone" — the same D315 defect `percentage` closed
|
|
23154
|
+
* by going nullable. Consumers SKIP it (no charger state published, no
|
|
23155
|
+
* glyph, no HomeKit ChargingState) rather than coerce it either way.
|
|
23148
23156
|
*/
|
|
23149
23157
|
charging: _enum([
|
|
23150
23158
|
"dc",
|
|
23151
23159
|
"solar",
|
|
23152
|
-
"none"
|
|
23160
|
+
"none",
|
|
23161
|
+
"unknown"
|
|
23153
23162
|
]),
|
|
23154
23163
|
/**
|
|
23155
23164
|
* True when the camera firmware has gone into low-power mode. Battery
|
|
@@ -7538,7 +7538,8 @@ var CameraSwitchAuthoritySchema = discriminatedUnion("kind", [
|
|
|
7538
7538
|
var CameraSwitchUnavailableReasonSchema = _enum([
|
|
7539
7539
|
"no-provider",
|
|
7540
7540
|
"source-unreachable",
|
|
7541
|
-
"not-configured"
|
|
7541
|
+
"not-configured",
|
|
7542
|
+
"device-disabled"
|
|
7542
7543
|
]);
|
|
7543
7544
|
/**
|
|
7544
7545
|
* One switch, resolved for one camera.
|
|
@@ -23121,12 +23122,20 @@ var BatteryStatusSchema = object({
|
|
|
23121
23122
|
* Charging source. `'dc'` covers wall/USB adapters; `'solar'` is
|
|
23122
23123
|
* Reolink-specific for the Solar Panel 2 accessory (will become
|
|
23123
23124
|
* common on other battery cams). `'none'` means running on battery
|
|
23124
|
-
* alone.
|
|
23125
|
+
* alone — a NEGATIVE the firmware actually reported.
|
|
23126
|
+
*
|
|
23127
|
+
* `'unknown'` is the absence of an answer: the provider has not read the
|
|
23128
|
+
* power fields yet, or the firmware reported neither. Before it existed,
|
|
23129
|
+
* two unreadable fields produced `'none'`, and a camera nobody had reached
|
|
23130
|
+
* was drawn "on battery alone" — the same D315 defect `percentage` closed
|
|
23131
|
+
* by going nullable. Consumers SKIP it (no charger state published, no
|
|
23132
|
+
* glyph, no HomeKit ChargingState) rather than coerce it either way.
|
|
23125
23133
|
*/
|
|
23126
23134
|
charging: _enum([
|
|
23127
23135
|
"dc",
|
|
23128
23136
|
"solar",
|
|
23129
|
-
"none"
|
|
23137
|
+
"none",
|
|
23138
|
+
"unknown"
|
|
23130
23139
|
]),
|
|
23131
23140
|
/**
|
|
23132
23141
|
* True when the camera firmware has gone into low-power mode. Battery
|
package/dist/smb.addon.js
CHANGED
|
@@ -2,7 +2,7 @@ Object.defineProperties(exports, {
|
|
|
2
2
|
__esModule: { value: true },
|
|
3
3
|
[Symbol.toStringTag]: { value: "Module" }
|
|
4
4
|
});
|
|
5
|
-
const require_shared = require("./shared-
|
|
5
|
+
const require_shared = require("./shared-Bxz2Kytb.js");
|
|
6
6
|
let node_crypto = require("node:crypto");
|
|
7
7
|
let node_path = require("node:path");
|
|
8
8
|
node_path = require_shared.__toESM(node_path);
|
package/dist/smb.addon.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as BaseAddon, i as rearmIdleAbort, o as scheduleIdleAbort, s as storageProviderCapability } from "./shared-
|
|
1
|
+
import { c as BaseAddon, i as rearmIdleAbort, o as scheduleIdleAbort, s as storageProviderCapability } from "./shared-CvnsHCVR.mjs";
|
|
2
2
|
import { randomUUID } from "node:crypto";
|
|
3
3
|
import * as path from "node:path";
|
|
4
4
|
import * as fsp from "node:fs/promises";
|
package/dist/webdav.addon.js
CHANGED
|
@@ -2,7 +2,7 @@ Object.defineProperties(exports, {
|
|
|
2
2
|
__esModule: { value: true },
|
|
3
3
|
[Symbol.toStringTag]: { value: "Module" }
|
|
4
4
|
});
|
|
5
|
-
const require_shared = require("./shared-
|
|
5
|
+
const require_shared = require("./shared-Bxz2Kytb.js");
|
|
6
6
|
let node_stream = require("node:stream");
|
|
7
7
|
let webdav = require("webdav");
|
|
8
8
|
//#region src/providers/webdav/webdav-config-schema.ts
|
package/dist/webdav.addon.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as safeJoinRemotePath, c as BaseAddon, i as rearmIdleAbort, o as scheduleIdleAbort, r as getRequiredBasePath, s as storageProviderCapability, t as createSessionId } from "./shared-
|
|
1
|
+
import { a as safeJoinRemotePath, c as BaseAddon, i as rearmIdleAbort, o as scheduleIdleAbort, r as getRequiredBasePath, s as storageProviderCapability, t as createSessionId } from "./shared-CvnsHCVR.mjs";
|
|
2
2
|
import { PassThrough } from "node:stream";
|
|
3
3
|
import { AuthType, createClient } from "webdav";
|
|
4
4
|
//#region src/providers/webdav/webdav-config-schema.ts
|
package/package.json
CHANGED