@camstack/addon-agent-ui 1.2.71 → 1.2.72
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 +22 -1
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -20359,6 +20359,14 @@ var AgentPipelineSettingsSchema = object({
|
|
|
20359
20359
|
/** Node is eligible to be the ingest / source-owner (serve the restream). */
|
|
20360
20360
|
ingest: boolean().optional(),
|
|
20361
20361
|
/**
|
|
20362
|
+
* This node's decode RAM budget, MB. Wins over the cluster
|
|
20363
|
+
* `nodeDecodeBudgetMb`; absent, the runner derives a share of the node's
|
|
20364
|
+
* own RAM unless the operator moved the cluster value (D365).
|
|
20365
|
+
*/
|
|
20366
|
+
decodeBudgetMb: number().int().min(1024).max(65536).optional(),
|
|
20367
|
+
/** This node's live decode-worker cap. Wins over the cluster `maxLiveDecodeWorkers`. */
|
|
20368
|
+
maxLiveDecodeWorkers: number().int().min(1).max(32).optional(),
|
|
20369
|
+
/**
|
|
20362
20370
|
* Operator override for the LAN host a cross-node decoder dials to reach
|
|
20363
20371
|
* THIS node's restream (Cluster UI). Absent → auto-detect: a remote runner
|
|
20364
20372
|
* falls back to its `CAMSTACK_HUB_URL`-derived host (the Moleculer address
|
|
@@ -20820,6 +20828,13 @@ method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
|
|
|
20820
20828
|
}), object({ success: literal(true) }), {
|
|
20821
20829
|
kind: "mutation",
|
|
20822
20830
|
auth: "admin"
|
|
20831
|
+
}), method(object({
|
|
20832
|
+
agentNodeId: string(),
|
|
20833
|
+
decodeBudgetMb: number().int().min(1024).max(65536).nullable().optional(),
|
|
20834
|
+
maxLiveDecodeWorkers: number().int().min(1).max(32).nullable().optional()
|
|
20835
|
+
}), object({ success: literal(true) }), {
|
|
20836
|
+
kind: "mutation",
|
|
20837
|
+
auth: "admin"
|
|
20823
20838
|
}), method(object({
|
|
20824
20839
|
agentNodeId: string(),
|
|
20825
20840
|
reachableHost: string().nullable()
|
|
@@ -33000,6 +33015,12 @@ Object.freeze({
|
|
|
33000
33015
|
addonId: null,
|
|
33001
33016
|
access: "create"
|
|
33002
33017
|
},
|
|
33018
|
+
"pipelineOrchestrator.setAgentDecodeLimits": {
|
|
33019
|
+
capName: "pipeline-orchestrator",
|
|
33020
|
+
capScope: "system",
|
|
33021
|
+
addonId: null,
|
|
33022
|
+
access: "create"
|
|
33023
|
+
},
|
|
33003
33024
|
"pipelineOrchestrator.setAgentDetectWeight": {
|
|
33004
33025
|
capName: "pipeline-orchestrator",
|
|
33005
33026
|
capScope: "system",
|
|
@@ -37415,7 +37436,7 @@ var AgentUIAddon = class extends BaseAddon {
|
|
|
37415
37436
|
capability: adminUiCapability,
|
|
37416
37437
|
provider: {
|
|
37417
37438
|
getStaticDir: async () => ({ staticDir: path.resolve(__dirname) }),
|
|
37418
|
-
getVersion: async () => ({ version: "1.2.
|
|
37439
|
+
getVersion: async () => ({ version: "1.2.72" })
|
|
37419
37440
|
}
|
|
37420
37441
|
}];
|
|
37421
37442
|
}
|