@camstack/addon-mqtt-broker 1.1.14 → 1.1.15
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/mqtt-broker.addon.js +7 -42
- package/dist/mqtt-broker.addon.mjs +7 -42
- package/package.json +1 -1
|
@@ -15069,7 +15069,10 @@ var AgentLoadSummarySchema = object({
|
|
|
15069
15069
|
online: boolean(),
|
|
15070
15070
|
load: RunnerLocalLoadSchema,
|
|
15071
15071
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
15072
|
-
score: number()
|
|
15072
|
+
score: number(),
|
|
15073
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
15074
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
15075
|
+
decodeHwaccel: string().nullable()
|
|
15073
15076
|
});
|
|
15074
15077
|
/**
|
|
15075
15078
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -17605,7 +17608,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
17605
17608
|
"libx264",
|
|
17606
17609
|
"libx265"
|
|
17607
17610
|
]);
|
|
17608
|
-
|
|
17611
|
+
object({
|
|
17609
17612
|
encoders: array(object({
|
|
17610
17613
|
encoder: HardwareEncoderIdSchema,
|
|
17611
17614
|
codec: _enum(["H264", "H265"]),
|
|
@@ -17624,15 +17627,7 @@ var HardwareEncodersSchema = object({
|
|
|
17624
17627
|
defaultH265: HardwareEncoderIdSchema,
|
|
17625
17628
|
probedAt: number()
|
|
17626
17629
|
});
|
|
17627
|
-
|
|
17628
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
17629
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
17630
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
17631
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
17632
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
17633
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
17634
|
-
*/
|
|
17635
|
-
var HardwareDecodeAccelsSchema = object({
|
|
17630
|
+
object({
|
|
17636
17631
|
methods: array(string()).readonly(),
|
|
17637
17632
|
probedAt: number()
|
|
17638
17633
|
});
|
|
@@ -17695,13 +17690,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
17695
17690
|
format: ModelFormatSchema,
|
|
17696
17691
|
reason: string()
|
|
17697
17692
|
});
|
|
17698
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
17699
|
-
kind: "mutation",
|
|
17700
|
-
auth: "admin"
|
|
17701
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
17702
|
-
kind: "mutation",
|
|
17703
|
-
auth: "admin"
|
|
17704
|
-
});
|
|
17693
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
17705
17694
|
var PtzPresetSchema = object({
|
|
17706
17695
|
id: string(),
|
|
17707
17696
|
name: string()
|
|
@@ -21326,30 +21315,6 @@ Object.freeze({
|
|
|
21326
21315
|
addonId: null,
|
|
21327
21316
|
access: "view"
|
|
21328
21317
|
},
|
|
21329
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
21330
|
-
capName: "platform-probe",
|
|
21331
|
-
capScope: "system",
|
|
21332
|
-
addonId: null,
|
|
21333
|
-
access: "view"
|
|
21334
|
-
},
|
|
21335
|
-
"platformProbe.getHardwareEncoders": {
|
|
21336
|
-
capName: "platform-probe",
|
|
21337
|
-
capScope: "system",
|
|
21338
|
-
addonId: null,
|
|
21339
|
-
access: "view"
|
|
21340
|
-
},
|
|
21341
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
21342
|
-
capName: "platform-probe",
|
|
21343
|
-
capScope: "system",
|
|
21344
|
-
addonId: null,
|
|
21345
|
-
access: "create"
|
|
21346
|
-
},
|
|
21347
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
21348
|
-
capName: "platform-probe",
|
|
21349
|
-
capScope: "system",
|
|
21350
|
-
addonId: null,
|
|
21351
|
-
access: "create"
|
|
21352
|
-
},
|
|
21353
21318
|
"platformProbe.resolveHwAccel": {
|
|
21354
21319
|
capName: "platform-probe",
|
|
21355
21320
|
capScope: "system",
|
|
@@ -15064,7 +15064,10 @@ var AgentLoadSummarySchema = object({
|
|
|
15064
15064
|
online: boolean(),
|
|
15065
15065
|
load: RunnerLocalLoadSchema,
|
|
15066
15066
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
15067
|
-
score: number()
|
|
15067
|
+
score: number(),
|
|
15068
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
15069
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
15070
|
+
decodeHwaccel: string().nullable()
|
|
15068
15071
|
});
|
|
15069
15072
|
/**
|
|
15070
15073
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -17600,7 +17603,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
17600
17603
|
"libx264",
|
|
17601
17604
|
"libx265"
|
|
17602
17605
|
]);
|
|
17603
|
-
|
|
17606
|
+
object({
|
|
17604
17607
|
encoders: array(object({
|
|
17605
17608
|
encoder: HardwareEncoderIdSchema,
|
|
17606
17609
|
codec: _enum(["H264", "H265"]),
|
|
@@ -17619,15 +17622,7 @@ var HardwareEncodersSchema = object({
|
|
|
17619
17622
|
defaultH265: HardwareEncoderIdSchema,
|
|
17620
17623
|
probedAt: number()
|
|
17621
17624
|
});
|
|
17622
|
-
|
|
17623
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
17624
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
17625
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
17626
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
17627
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
17628
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
17629
|
-
*/
|
|
17630
|
-
var HardwareDecodeAccelsSchema = object({
|
|
17625
|
+
object({
|
|
17631
17626
|
methods: array(string()).readonly(),
|
|
17632
17627
|
probedAt: number()
|
|
17633
17628
|
});
|
|
@@ -17690,13 +17685,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
17690
17685
|
format: ModelFormatSchema,
|
|
17691
17686
|
reason: string()
|
|
17692
17687
|
});
|
|
17693
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
17694
|
-
kind: "mutation",
|
|
17695
|
-
auth: "admin"
|
|
17696
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
17697
|
-
kind: "mutation",
|
|
17698
|
-
auth: "admin"
|
|
17699
|
-
});
|
|
17688
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
17700
17689
|
var PtzPresetSchema = object({
|
|
17701
17690
|
id: string(),
|
|
17702
17691
|
name: string()
|
|
@@ -21321,30 +21310,6 @@ Object.freeze({
|
|
|
21321
21310
|
addonId: null,
|
|
21322
21311
|
access: "view"
|
|
21323
21312
|
},
|
|
21324
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
21325
|
-
capName: "platform-probe",
|
|
21326
|
-
capScope: "system",
|
|
21327
|
-
addonId: null,
|
|
21328
|
-
access: "view"
|
|
21329
|
-
},
|
|
21330
|
-
"platformProbe.getHardwareEncoders": {
|
|
21331
|
-
capName: "platform-probe",
|
|
21332
|
-
capScope: "system",
|
|
21333
|
-
addonId: null,
|
|
21334
|
-
access: "view"
|
|
21335
|
-
},
|
|
21336
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
21337
|
-
capName: "platform-probe",
|
|
21338
|
-
capScope: "system",
|
|
21339
|
-
addonId: null,
|
|
21340
|
-
access: "create"
|
|
21341
|
-
},
|
|
21342
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
21343
|
-
capName: "platform-probe",
|
|
21344
|
-
capScope: "system",
|
|
21345
|
-
addonId: null,
|
|
21346
|
-
access: "create"
|
|
21347
|
-
},
|
|
21348
21313
|
"platformProbe.resolveHwAccel": {
|
|
21349
21314
|
capName: "platform-probe",
|
|
21350
21315
|
capScope: "system",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-mqtt-broker",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.15",
|
|
4
4
|
"description": "MQTT broker registry addon for CamStack — manages external broker entries + an optional embedded aedes broker. Consumers spin up their own `mqtt.js` clients via the `mqtt-broker` cap.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|