@camstack/addon-remote-storage 1.1.9 → 1.1.10
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-DYvD9QZ6.mjs → shared-BlC4zVW3.mjs} +11 -0
- package/dist/{shared-CzMRPSNo.js → shared-xWLn-bqc.js} +11 -0
- 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-xWLn-bqc.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-BlC4zVW3.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-xWLn-bqc.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-BlC4zVW3.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
|
|
@@ -15472,6 +15472,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
15472
15472
|
iconUrl: string().nullable(),
|
|
15473
15473
|
color: string(),
|
|
15474
15474
|
instanceMode: string(),
|
|
15475
|
+
/**
|
|
15476
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
15477
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
15478
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
15479
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
15480
|
+
*/
|
|
15481
|
+
mode: _enum([
|
|
15482
|
+
"standalone",
|
|
15483
|
+
"account",
|
|
15484
|
+
"broker"
|
|
15485
|
+
]),
|
|
15475
15486
|
discoveryMode: string(),
|
|
15476
15487
|
/**
|
|
15477
15488
|
* Which integration-marker cap the addon declared, so the wizard can
|
|
@@ -15495,6 +15495,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
15495
15495
|
iconUrl: string().nullable(),
|
|
15496
15496
|
color: string(),
|
|
15497
15497
|
instanceMode: string(),
|
|
15498
|
+
/**
|
|
15499
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
15500
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
15501
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
15502
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
15503
|
+
*/
|
|
15504
|
+
mode: _enum([
|
|
15505
|
+
"standalone",
|
|
15506
|
+
"account",
|
|
15507
|
+
"broker"
|
|
15508
|
+
]),
|
|
15498
15509
|
discoveryMode: string(),
|
|
15499
15510
|
/**
|
|
15500
15511
|
* Which integration-marker cap the addon declared, so the wizard can
|
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-xWLn-bqc.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-BlC4zVW3.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