@camstack/addon-terminal 0.1.71 → 0.1.73
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/addon.js +21 -0
- package/dist/addon.mjs +21 -0
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -20742,6 +20742,14 @@ var AgentPipelineSettingsSchema = object({
|
|
|
20742
20742
|
/** Node is eligible to be the ingest / source-owner (serve the restream). */
|
|
20743
20743
|
ingest: boolean().optional(),
|
|
20744
20744
|
/**
|
|
20745
|
+
* This node's decode RAM budget, MB. Wins over the cluster
|
|
20746
|
+
* `nodeDecodeBudgetMb`; absent, the runner derives a share of the node's
|
|
20747
|
+
* own RAM unless the operator moved the cluster value (D365).
|
|
20748
|
+
*/
|
|
20749
|
+
decodeBudgetMb: number().int().min(1024).max(65536).optional(),
|
|
20750
|
+
/** This node's live decode-worker cap. Wins over the cluster `maxLiveDecodeWorkers`. */
|
|
20751
|
+
maxLiveDecodeWorkers: number().int().min(1).max(32).optional(),
|
|
20752
|
+
/**
|
|
20745
20753
|
* Operator override for the LAN host a cross-node decoder dials to reach
|
|
20746
20754
|
* THIS node's restream (Cluster UI). Absent → auto-detect: a remote runner
|
|
20747
20755
|
* falls back to its `CAMSTACK_HUB_URL`-derived host (the Moleculer address
|
|
@@ -21203,6 +21211,13 @@ method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
|
|
|
21203
21211
|
}), object({ success: literal(true) }), {
|
|
21204
21212
|
kind: "mutation",
|
|
21205
21213
|
auth: "admin"
|
|
21214
|
+
}), method(object({
|
|
21215
|
+
agentNodeId: string(),
|
|
21216
|
+
decodeBudgetMb: number().int().min(1024).max(65536).nullable().optional(),
|
|
21217
|
+
maxLiveDecodeWorkers: number().int().min(1).max(32).nullable().optional()
|
|
21218
|
+
}), object({ success: literal(true) }), {
|
|
21219
|
+
kind: "mutation",
|
|
21220
|
+
auth: "admin"
|
|
21206
21221
|
}), method(object({
|
|
21207
21222
|
agentNodeId: string(),
|
|
21208
21223
|
reachableHost: string().nullable()
|
|
@@ -36943,6 +36958,12 @@ Object.freeze({
|
|
|
36943
36958
|
addonId: null,
|
|
36944
36959
|
access: "create"
|
|
36945
36960
|
},
|
|
36961
|
+
"pipelineOrchestrator.setAgentDecodeLimits": {
|
|
36962
|
+
capName: "pipeline-orchestrator",
|
|
36963
|
+
capScope: "system",
|
|
36964
|
+
addonId: null,
|
|
36965
|
+
access: "create"
|
|
36966
|
+
},
|
|
36946
36967
|
"pipelineOrchestrator.setAgentDetectWeight": {
|
|
36947
36968
|
capName: "pipeline-orchestrator",
|
|
36948
36969
|
capScope: "system",
|
package/dist/addon.mjs
CHANGED
|
@@ -20719,6 +20719,14 @@ var AgentPipelineSettingsSchema = object({
|
|
|
20719
20719
|
/** Node is eligible to be the ingest / source-owner (serve the restream). */
|
|
20720
20720
|
ingest: boolean().optional(),
|
|
20721
20721
|
/**
|
|
20722
|
+
* This node's decode RAM budget, MB. Wins over the cluster
|
|
20723
|
+
* `nodeDecodeBudgetMb`; absent, the runner derives a share of the node's
|
|
20724
|
+
* own RAM unless the operator moved the cluster value (D365).
|
|
20725
|
+
*/
|
|
20726
|
+
decodeBudgetMb: number().int().min(1024).max(65536).optional(),
|
|
20727
|
+
/** This node's live decode-worker cap. Wins over the cluster `maxLiveDecodeWorkers`. */
|
|
20728
|
+
maxLiveDecodeWorkers: number().int().min(1).max(32).optional(),
|
|
20729
|
+
/**
|
|
20722
20730
|
* Operator override for the LAN host a cross-node decoder dials to reach
|
|
20723
20731
|
* THIS node's restream (Cluster UI). Absent → auto-detect: a remote runner
|
|
20724
20732
|
* falls back to its `CAMSTACK_HUB_URL`-derived host (the Moleculer address
|
|
@@ -21180,6 +21188,13 @@ method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
|
|
|
21180
21188
|
}), object({ success: literal(true) }), {
|
|
21181
21189
|
kind: "mutation",
|
|
21182
21190
|
auth: "admin"
|
|
21191
|
+
}), method(object({
|
|
21192
|
+
agentNodeId: string(),
|
|
21193
|
+
decodeBudgetMb: number().int().min(1024).max(65536).nullable().optional(),
|
|
21194
|
+
maxLiveDecodeWorkers: number().int().min(1).max(32).nullable().optional()
|
|
21195
|
+
}), object({ success: literal(true) }), {
|
|
21196
|
+
kind: "mutation",
|
|
21197
|
+
auth: "admin"
|
|
21183
21198
|
}), method(object({
|
|
21184
21199
|
agentNodeId: string(),
|
|
21185
21200
|
reachableHost: string().nullable()
|
|
@@ -36920,6 +36935,12 @@ Object.freeze({
|
|
|
36920
36935
|
addonId: null,
|
|
36921
36936
|
access: "create"
|
|
36922
36937
|
},
|
|
36938
|
+
"pipelineOrchestrator.setAgentDecodeLimits": {
|
|
36939
|
+
capName: "pipeline-orchestrator",
|
|
36940
|
+
capScope: "system",
|
|
36941
|
+
addonId: null,
|
|
36942
|
+
access: "create"
|
|
36943
|
+
},
|
|
36923
36944
|
"pipelineOrchestrator.setAgentDetectWeight": {
|
|
36924
36945
|
capName: "pipeline-orchestrator",
|
|
36925
36946
|
capScope: "system",
|