@camstack/addon-provider-reolink 1.2.90 → 1.2.91

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 CHANGED
@@ -21369,6 +21369,14 @@ var AgentPipelineSettingsSchema = object({
21369
21369
  /** Node is eligible to be the ingest / source-owner (serve the restream). */
21370
21370
  ingest: boolean().optional(),
21371
21371
  /**
21372
+ * This node's decode RAM budget, MB. Wins over the cluster
21373
+ * `nodeDecodeBudgetMb`; absent, the runner derives a share of the node's
21374
+ * own RAM unless the operator moved the cluster value (D365).
21375
+ */
21376
+ decodeBudgetMb: number().int().min(1024).max(65536).optional(),
21377
+ /** This node's live decode-worker cap. Wins over the cluster `maxLiveDecodeWorkers`. */
21378
+ maxLiveDecodeWorkers: number().int().min(1).max(32).optional(),
21379
+ /**
21372
21380
  * Operator override for the LAN host a cross-node decoder dials to reach
21373
21381
  * THIS node's restream (Cluster UI). Absent → auto-detect: a remote runner
21374
21382
  * falls back to its `CAMSTACK_HUB_URL`-derived host (the Moleculer address
@@ -21830,6 +21838,13 @@ method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
21830
21838
  }), object({ success: literal(true) }), {
21831
21839
  kind: "mutation",
21832
21840
  auth: "admin"
21841
+ }), method(object({
21842
+ agentNodeId: string(),
21843
+ decodeBudgetMb: number().int().min(1024).max(65536).nullable().optional(),
21844
+ maxLiveDecodeWorkers: number().int().min(1).max(32).nullable().optional()
21845
+ }), object({ success: literal(true) }), {
21846
+ kind: "mutation",
21847
+ auth: "admin"
21833
21848
  }), method(object({
21834
21849
  agentNodeId: string(),
21835
21850
  reachableHost: string().nullable()
@@ -38356,6 +38371,12 @@ Object.freeze({
38356
38371
  addonId: null,
38357
38372
  access: "create"
38358
38373
  },
38374
+ "pipelineOrchestrator.setAgentDecodeLimits": {
38375
+ capName: "pipeline-orchestrator",
38376
+ capScope: "system",
38377
+ addonId: null,
38378
+ access: "create"
38379
+ },
38359
38380
  "pipelineOrchestrator.setAgentDetectWeight": {
38360
38381
  capName: "pipeline-orchestrator",
38361
38382
  capScope: "system",
package/dist/addon.mjs CHANGED
@@ -21364,6 +21364,14 @@ var AgentPipelineSettingsSchema = object({
21364
21364
  /** Node is eligible to be the ingest / source-owner (serve the restream). */
21365
21365
  ingest: boolean().optional(),
21366
21366
  /**
21367
+ * This node's decode RAM budget, MB. Wins over the cluster
21368
+ * `nodeDecodeBudgetMb`; absent, the runner derives a share of the node's
21369
+ * own RAM unless the operator moved the cluster value (D365).
21370
+ */
21371
+ decodeBudgetMb: number().int().min(1024).max(65536).optional(),
21372
+ /** This node's live decode-worker cap. Wins over the cluster `maxLiveDecodeWorkers`. */
21373
+ maxLiveDecodeWorkers: number().int().min(1).max(32).optional(),
21374
+ /**
21367
21375
  * Operator override for the LAN host a cross-node decoder dials to reach
21368
21376
  * THIS node's restream (Cluster UI). Absent → auto-detect: a remote runner
21369
21377
  * falls back to its `CAMSTACK_HUB_URL`-derived host (the Moleculer address
@@ -21825,6 +21833,13 @@ method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
21825
21833
  }), object({ success: literal(true) }), {
21826
21834
  kind: "mutation",
21827
21835
  auth: "admin"
21836
+ }), method(object({
21837
+ agentNodeId: string(),
21838
+ decodeBudgetMb: number().int().min(1024).max(65536).nullable().optional(),
21839
+ maxLiveDecodeWorkers: number().int().min(1).max(32).nullable().optional()
21840
+ }), object({ success: literal(true) }), {
21841
+ kind: "mutation",
21842
+ auth: "admin"
21828
21843
  }), method(object({
21829
21844
  agentNodeId: string(),
21830
21845
  reachableHost: string().nullable()
@@ -38351,6 +38366,12 @@ Object.freeze({
38351
38366
  addonId: null,
38352
38367
  access: "create"
38353
38368
  },
38369
+ "pipelineOrchestrator.setAgentDecodeLimits": {
38370
+ capName: "pipeline-orchestrator",
38371
+ capScope: "system",
38372
+ addonId: null,
38373
+ access: "create"
38374
+ },
38354
38375
  "pipelineOrchestrator.setAgentDetectWeight": {
38355
38376
  capName: "pipeline-orchestrator",
38356
38377
  capScope: "system",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-provider-reolink",
3
- "version": "1.2.90",
3
+ "version": "1.2.91",
4
4
  "description": "Reolink camera device provider addon for CamStack — native Baichuan protocol",
5
5
  "keywords": [
6
6
  "camstack",