@camstack/addon-decoder-nodeav 1.2.67 → 1.2.68

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/index.js CHANGED
@@ -20486,6 +20486,14 @@ var AgentPipelineSettingsSchema = object({
20486
20486
  /** Node is eligible to be the ingest / source-owner (serve the restream). */
20487
20487
  ingest: boolean().optional(),
20488
20488
  /**
20489
+ * This node's decode RAM budget, MB. Wins over the cluster
20490
+ * `nodeDecodeBudgetMb`; absent, the runner derives a share of the node's
20491
+ * own RAM unless the operator moved the cluster value (D365).
20492
+ */
20493
+ decodeBudgetMb: number().int().min(1024).max(65536).optional(),
20494
+ /** This node's live decode-worker cap. Wins over the cluster `maxLiveDecodeWorkers`. */
20495
+ maxLiveDecodeWorkers: number().int().min(1).max(32).optional(),
20496
+ /**
20489
20497
  * Operator override for the LAN host a cross-node decoder dials to reach
20490
20498
  * THIS node's restream (Cluster UI). Absent → auto-detect: a remote runner
20491
20499
  * falls back to its `CAMSTACK_HUB_URL`-derived host (the Moleculer address
@@ -20947,6 +20955,13 @@ method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
20947
20955
  }), object({ success: literal(true) }), {
20948
20956
  kind: "mutation",
20949
20957
  auth: "admin"
20958
+ }), method(object({
20959
+ agentNodeId: string(),
20960
+ decodeBudgetMb: number().int().min(1024).max(65536).nullable().optional(),
20961
+ maxLiveDecodeWorkers: number().int().min(1).max(32).nullable().optional()
20962
+ }), object({ success: literal(true) }), {
20963
+ kind: "mutation",
20964
+ auth: "admin"
20950
20965
  }), method(object({
20951
20966
  agentNodeId: string(),
20952
20967
  reachableHost: string().nullable()
@@ -33127,6 +33142,12 @@ Object.freeze({
33127
33142
  addonId: null,
33128
33143
  access: "create"
33129
33144
  },
33145
+ "pipelineOrchestrator.setAgentDecodeLimits": {
33146
+ capName: "pipeline-orchestrator",
33147
+ capScope: "system",
33148
+ addonId: null,
33149
+ access: "create"
33150
+ },
33130
33151
  "pipelineOrchestrator.setAgentDetectWeight": {
33131
33152
  capName: "pipeline-orchestrator",
33132
33153
  capScope: "system",
package/dist/index.mjs CHANGED
@@ -20482,6 +20482,14 @@ var AgentPipelineSettingsSchema = object({
20482
20482
  /** Node is eligible to be the ingest / source-owner (serve the restream). */
20483
20483
  ingest: boolean().optional(),
20484
20484
  /**
20485
+ * This node's decode RAM budget, MB. Wins over the cluster
20486
+ * `nodeDecodeBudgetMb`; absent, the runner derives a share of the node's
20487
+ * own RAM unless the operator moved the cluster value (D365).
20488
+ */
20489
+ decodeBudgetMb: number().int().min(1024).max(65536).optional(),
20490
+ /** This node's live decode-worker cap. Wins over the cluster `maxLiveDecodeWorkers`. */
20491
+ maxLiveDecodeWorkers: number().int().min(1).max(32).optional(),
20492
+ /**
20485
20493
  * Operator override for the LAN host a cross-node decoder dials to reach
20486
20494
  * THIS node's restream (Cluster UI). Absent → auto-detect: a remote runner
20487
20495
  * falls back to its `CAMSTACK_HUB_URL`-derived host (the Moleculer address
@@ -20943,6 +20951,13 @@ method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
20943
20951
  }), object({ success: literal(true) }), {
20944
20952
  kind: "mutation",
20945
20953
  auth: "admin"
20954
+ }), method(object({
20955
+ agentNodeId: string(),
20956
+ decodeBudgetMb: number().int().min(1024).max(65536).nullable().optional(),
20957
+ maxLiveDecodeWorkers: number().int().min(1).max(32).nullable().optional()
20958
+ }), object({ success: literal(true) }), {
20959
+ kind: "mutation",
20960
+ auth: "admin"
20946
20961
  }), method(object({
20947
20962
  agentNodeId: string(),
20948
20963
  reachableHost: string().nullable()
@@ -33123,6 +33138,12 @@ Object.freeze({
33123
33138
  addonId: null,
33124
33139
  access: "create"
33125
33140
  },
33141
+ "pipelineOrchestrator.setAgentDecodeLimits": {
33142
+ capName: "pipeline-orchestrator",
33143
+ capScope: "system",
33144
+ addonId: null,
33145
+ access: "create"
33146
+ },
33126
33147
  "pipelineOrchestrator.setAgentDetectWeight": {
33127
33148
  capName: "pipeline-orchestrator",
33128
33149
  capScope: "system",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-decoder-nodeav",
3
- "version": "1.2.67",
3
+ "version": "1.2.68",
4
4
  "description": "Standalone in-process node-av decoder addon for CamStack",
5
5
  "keywords": [
6
6
  "camstack",