@camstack/addon-remote-storage 1.2.66 → 1.2.67
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-CvnsHCVR.mjs → shared-BBBl6gT_.mjs} +21 -0
- package/dist/{shared-Bxz2Kytb.js → shared-C0be_oZ_.js} +21 -0
- 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-C0be_oZ_.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-BBBl6gT_.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-C0be_oZ_.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-BBBl6gT_.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
|
|
@@ -20341,6 +20341,14 @@ var AgentPipelineSettingsSchema = object({
|
|
|
20341
20341
|
/** Node is eligible to be the ingest / source-owner (serve the restream). */
|
|
20342
20342
|
ingest: boolean().optional(),
|
|
20343
20343
|
/**
|
|
20344
|
+
* This node's decode RAM budget, MB. Wins over the cluster
|
|
20345
|
+
* `nodeDecodeBudgetMb`; absent, the runner derives a share of the node's
|
|
20346
|
+
* own RAM unless the operator moved the cluster value (D365).
|
|
20347
|
+
*/
|
|
20348
|
+
decodeBudgetMb: number().int().min(1024).max(65536).optional(),
|
|
20349
|
+
/** This node's live decode-worker cap. Wins over the cluster `maxLiveDecodeWorkers`. */
|
|
20350
|
+
maxLiveDecodeWorkers: number().int().min(1).max(32).optional(),
|
|
20351
|
+
/**
|
|
20344
20352
|
* Operator override for the LAN host a cross-node decoder dials to reach
|
|
20345
20353
|
* THIS node's restream (Cluster UI). Absent → auto-detect: a remote runner
|
|
20346
20354
|
* falls back to its `CAMSTACK_HUB_URL`-derived host (the Moleculer address
|
|
@@ -20802,6 +20810,13 @@ method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
|
|
|
20802
20810
|
}), object({ success: literal(true) }), {
|
|
20803
20811
|
kind: "mutation",
|
|
20804
20812
|
auth: "admin"
|
|
20813
|
+
}), method(object({
|
|
20814
|
+
agentNodeId: string(),
|
|
20815
|
+
decodeBudgetMb: number().int().min(1024).max(65536).nullable().optional(),
|
|
20816
|
+
maxLiveDecodeWorkers: number().int().min(1).max(32).nullable().optional()
|
|
20817
|
+
}), object({ success: literal(true) }), {
|
|
20818
|
+
kind: "mutation",
|
|
20819
|
+
auth: "admin"
|
|
20805
20820
|
}), method(object({
|
|
20806
20821
|
agentNodeId: string(),
|
|
20807
20822
|
reachableHost: string().nullable()
|
|
@@ -33042,6 +33057,12 @@ Object.freeze({
|
|
|
33042
33057
|
addonId: null,
|
|
33043
33058
|
access: "create"
|
|
33044
33059
|
},
|
|
33060
|
+
"pipelineOrchestrator.setAgentDecodeLimits": {
|
|
33061
|
+
capName: "pipeline-orchestrator",
|
|
33062
|
+
capScope: "system",
|
|
33063
|
+
addonId: null,
|
|
33064
|
+
access: "create"
|
|
33065
|
+
},
|
|
33045
33066
|
"pipelineOrchestrator.setAgentDetectWeight": {
|
|
33046
33067
|
capName: "pipeline-orchestrator",
|
|
33047
33068
|
capScope: "system",
|
|
@@ -20364,6 +20364,14 @@ var AgentPipelineSettingsSchema = object({
|
|
|
20364
20364
|
/** Node is eligible to be the ingest / source-owner (serve the restream). */
|
|
20365
20365
|
ingest: boolean().optional(),
|
|
20366
20366
|
/**
|
|
20367
|
+
* This node's decode RAM budget, MB. Wins over the cluster
|
|
20368
|
+
* `nodeDecodeBudgetMb`; absent, the runner derives a share of the node's
|
|
20369
|
+
* own RAM unless the operator moved the cluster value (D365).
|
|
20370
|
+
*/
|
|
20371
|
+
decodeBudgetMb: number().int().min(1024).max(65536).optional(),
|
|
20372
|
+
/** This node's live decode-worker cap. Wins over the cluster `maxLiveDecodeWorkers`. */
|
|
20373
|
+
maxLiveDecodeWorkers: number().int().min(1).max(32).optional(),
|
|
20374
|
+
/**
|
|
20367
20375
|
* Operator override for the LAN host a cross-node decoder dials to reach
|
|
20368
20376
|
* THIS node's restream (Cluster UI). Absent → auto-detect: a remote runner
|
|
20369
20377
|
* falls back to its `CAMSTACK_HUB_URL`-derived host (the Moleculer address
|
|
@@ -20825,6 +20833,13 @@ method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
|
|
|
20825
20833
|
}), object({ success: literal(true) }), {
|
|
20826
20834
|
kind: "mutation",
|
|
20827
20835
|
auth: "admin"
|
|
20836
|
+
}), method(object({
|
|
20837
|
+
agentNodeId: string(),
|
|
20838
|
+
decodeBudgetMb: number().int().min(1024).max(65536).nullable().optional(),
|
|
20839
|
+
maxLiveDecodeWorkers: number().int().min(1).max(32).nullable().optional()
|
|
20840
|
+
}), object({ success: literal(true) }), {
|
|
20841
|
+
kind: "mutation",
|
|
20842
|
+
auth: "admin"
|
|
20828
20843
|
}), method(object({
|
|
20829
20844
|
agentNodeId: string(),
|
|
20830
20845
|
reachableHost: string().nullable()
|
|
@@ -33065,6 +33080,12 @@ Object.freeze({
|
|
|
33065
33080
|
addonId: null,
|
|
33066
33081
|
access: "create"
|
|
33067
33082
|
},
|
|
33083
|
+
"pipelineOrchestrator.setAgentDecodeLimits": {
|
|
33084
|
+
capName: "pipeline-orchestrator",
|
|
33085
|
+
capScope: "system",
|
|
33086
|
+
addonId: null,
|
|
33087
|
+
access: "create"
|
|
33088
|
+
},
|
|
33068
33089
|
"pipelineOrchestrator.setAgentDetectWeight": {
|
|
33069
33090
|
capName: "pipeline-orchestrator",
|
|
33070
33091
|
capScope: "system",
|
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-C0be_oZ_.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-BBBl6gT_.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-C0be_oZ_.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-BBBl6gT_.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