@camstack/addon-provider-rtsp 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/addon.js +21 -0
- package/dist/addon.mjs +21 -0
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -20780,6 +20780,14 @@ var AgentPipelineSettingsSchema = object({
|
|
|
20780
20780
|
/** Node is eligible to be the ingest / source-owner (serve the restream). */
|
|
20781
20781
|
ingest: boolean().optional(),
|
|
20782
20782
|
/**
|
|
20783
|
+
* This node's decode RAM budget, MB. Wins over the cluster
|
|
20784
|
+
* `nodeDecodeBudgetMb`; absent, the runner derives a share of the node's
|
|
20785
|
+
* own RAM unless the operator moved the cluster value (D365).
|
|
20786
|
+
*/
|
|
20787
|
+
decodeBudgetMb: number().int().min(1024).max(65536).optional(),
|
|
20788
|
+
/** This node's live decode-worker cap. Wins over the cluster `maxLiveDecodeWorkers`. */
|
|
20789
|
+
maxLiveDecodeWorkers: number().int().min(1).max(32).optional(),
|
|
20790
|
+
/**
|
|
20783
20791
|
* Operator override for the LAN host a cross-node decoder dials to reach
|
|
20784
20792
|
* THIS node's restream (Cluster UI). Absent → auto-detect: a remote runner
|
|
20785
20793
|
* falls back to its `CAMSTACK_HUB_URL`-derived host (the Moleculer address
|
|
@@ -21241,6 +21249,13 @@ method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
|
|
|
21241
21249
|
}), object({ success: literal(true) }), {
|
|
21242
21250
|
kind: "mutation",
|
|
21243
21251
|
auth: "admin"
|
|
21252
|
+
}), method(object({
|
|
21253
|
+
agentNodeId: string(),
|
|
21254
|
+
decodeBudgetMb: number().int().min(1024).max(65536).nullable().optional(),
|
|
21255
|
+
maxLiveDecodeWorkers: number().int().min(1).max(32).nullable().optional()
|
|
21256
|
+
}), object({ success: literal(true) }), {
|
|
21257
|
+
kind: "mutation",
|
|
21258
|
+
auth: "admin"
|
|
21244
21259
|
}), method(object({
|
|
21245
21260
|
agentNodeId: string(),
|
|
21246
21261
|
reachableHost: string().nullable()
|
|
@@ -37378,6 +37393,12 @@ Object.freeze({
|
|
|
37378
37393
|
addonId: null,
|
|
37379
37394
|
access: "create"
|
|
37380
37395
|
},
|
|
37396
|
+
"pipelineOrchestrator.setAgentDecodeLimits": {
|
|
37397
|
+
capName: "pipeline-orchestrator",
|
|
37398
|
+
capScope: "system",
|
|
37399
|
+
addonId: null,
|
|
37400
|
+
access: "create"
|
|
37401
|
+
},
|
|
37381
37402
|
"pipelineOrchestrator.setAgentDetectWeight": {
|
|
37382
37403
|
capName: "pipeline-orchestrator",
|
|
37383
37404
|
capScope: "system",
|
package/dist/addon.mjs
CHANGED
|
@@ -20756,6 +20756,14 @@ var AgentPipelineSettingsSchema = object({
|
|
|
20756
20756
|
/** Node is eligible to be the ingest / source-owner (serve the restream). */
|
|
20757
20757
|
ingest: boolean().optional(),
|
|
20758
20758
|
/**
|
|
20759
|
+
* This node's decode RAM budget, MB. Wins over the cluster
|
|
20760
|
+
* `nodeDecodeBudgetMb`; absent, the runner derives a share of the node's
|
|
20761
|
+
* own RAM unless the operator moved the cluster value (D365).
|
|
20762
|
+
*/
|
|
20763
|
+
decodeBudgetMb: number().int().min(1024).max(65536).optional(),
|
|
20764
|
+
/** This node's live decode-worker cap. Wins over the cluster `maxLiveDecodeWorkers`. */
|
|
20765
|
+
maxLiveDecodeWorkers: number().int().min(1).max(32).optional(),
|
|
20766
|
+
/**
|
|
20759
20767
|
* Operator override for the LAN host a cross-node decoder dials to reach
|
|
20760
20768
|
* THIS node's restream (Cluster UI). Absent → auto-detect: a remote runner
|
|
20761
20769
|
* falls back to its `CAMSTACK_HUB_URL`-derived host (the Moleculer address
|
|
@@ -21217,6 +21225,13 @@ method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
|
|
|
21217
21225
|
}), object({ success: literal(true) }), {
|
|
21218
21226
|
kind: "mutation",
|
|
21219
21227
|
auth: "admin"
|
|
21228
|
+
}), method(object({
|
|
21229
|
+
agentNodeId: string(),
|
|
21230
|
+
decodeBudgetMb: number().int().min(1024).max(65536).nullable().optional(),
|
|
21231
|
+
maxLiveDecodeWorkers: number().int().min(1).max(32).nullable().optional()
|
|
21232
|
+
}), object({ success: literal(true) }), {
|
|
21233
|
+
kind: "mutation",
|
|
21234
|
+
auth: "admin"
|
|
21220
21235
|
}), method(object({
|
|
21221
21236
|
agentNodeId: string(),
|
|
21222
21237
|
reachableHost: string().nullable()
|
|
@@ -37354,6 +37369,12 @@ Object.freeze({
|
|
|
37354
37369
|
addonId: null,
|
|
37355
37370
|
access: "create"
|
|
37356
37371
|
},
|
|
37372
|
+
"pipelineOrchestrator.setAgentDecodeLimits": {
|
|
37373
|
+
capName: "pipeline-orchestrator",
|
|
37374
|
+
capScope: "system",
|
|
37375
|
+
addonId: null,
|
|
37376
|
+
access: "create"
|
|
37377
|
+
},
|
|
37357
37378
|
"pipelineOrchestrator.setAgentDetectWeight": {
|
|
37358
37379
|
capName: "pipeline-orchestrator",
|
|
37359
37380
|
capScope: "system",
|