@camstack/addon-export-ha-mqtt 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.
@@ -15032,7 +15032,10 @@ var AgentLoadSummarySchema = object({
15032
15032
  online: boolean(),
15033
15033
  load: RunnerLocalLoadSchema,
15034
15034
  /** Computed score used by the L2 capacity balancer (lower = less loaded). */
15035
- score: number$1()
15035
+ score: number$1(),
15036
+ /** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
15037
+ * when not yet probed — for the cluster Pipeline table UI (P0.2). */
15038
+ decodeHwaccel: string().nullable()
15036
15039
  });
15037
15040
  /**
15038
15041
  * Aggregate metrics across the whole detection cluster. Replaces the legacy
@@ -17568,7 +17571,7 @@ var HardwareEncoderIdSchema = _enum([
17568
17571
  "libx264",
17569
17572
  "libx265"
17570
17573
  ]);
17571
- var HardwareEncodersSchema = object({
17574
+ object({
17572
17575
  encoders: array(object({
17573
17576
  encoder: HardwareEncoderIdSchema,
17574
17577
  codec: _enum(["H264", "H265"]),
@@ -17587,15 +17590,7 @@ var HardwareEncodersSchema = object({
17587
17590
  defaultH265: HardwareEncoderIdSchema,
17588
17591
  probedAt: number$1()
17589
17592
  });
17590
- /**
17591
- * Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
17592
- * methods the configured ffmpeg binary actually supports (parsed from
17593
- * `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
17594
- * egress never spends a spawn on a backend this build cannot offer. Per-stream
17595
- * decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
17596
- * software fallback — this only filters out wholly-unsupported backends.
17597
- */
17598
- var HardwareDecodeAccelsSchema = object({
17593
+ object({
17599
17594
  methods: array(string()).readonly(),
17600
17595
  probedAt: number$1()
17601
17596
  });
@@ -17658,13 +17653,7 @@ var ResolvedInferenceConfigSchema = object({
17658
17653
  format: ModelFormatSchema,
17659
17654
  reason: string()
17660
17655
  });
17661
- method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema), method(_void(), HardwareEncodersSchema), method(_void(), HardwareEncodersSchema, {
17662
- kind: "mutation",
17663
- auth: "admin"
17664
- }), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
17665
- kind: "mutation",
17666
- auth: "admin"
17667
- });
17656
+ method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
17668
17657
  var PtzPresetSchema = object({
17669
17658
  id: string(),
17670
17659
  name: string()
@@ -21289,30 +21278,6 @@ Object.freeze({
21289
21278
  addonId: null,
21290
21279
  access: "view"
21291
21280
  },
21292
- "platformProbe.getHardwareDecodeAccels": {
21293
- capName: "platform-probe",
21294
- capScope: "system",
21295
- addonId: null,
21296
- access: "view"
21297
- },
21298
- "platformProbe.getHardwareEncoders": {
21299
- capName: "platform-probe",
21300
- capScope: "system",
21301
- addonId: null,
21302
- access: "view"
21303
- },
21304
- "platformProbe.refreshHardwareDecodeAccels": {
21305
- capName: "platform-probe",
21306
- capScope: "system",
21307
- addonId: null,
21308
- access: "create"
21309
- },
21310
- "platformProbe.refreshHardwareEncoders": {
21311
- capName: "platform-probe",
21312
- capScope: "system",
21313
- addonId: null,
21314
- access: "create"
21315
- },
21316
21281
  "platformProbe.resolveHwAccel": {
21317
21282
  capName: "platform-probe",
21318
21283
  capScope: "system",
@@ -15030,7 +15030,10 @@ var AgentLoadSummarySchema = object({
15030
15030
  online: boolean(),
15031
15031
  load: RunnerLocalLoadSchema,
15032
15032
  /** Computed score used by the L2 capacity balancer (lower = less loaded). */
15033
- score: number$1()
15033
+ score: number$1(),
15034
+ /** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
15035
+ * when not yet probed — for the cluster Pipeline table UI (P0.2). */
15036
+ decodeHwaccel: string().nullable()
15034
15037
  });
15035
15038
  /**
15036
15039
  * Aggregate metrics across the whole detection cluster. Replaces the legacy
@@ -17566,7 +17569,7 @@ var HardwareEncoderIdSchema = _enum([
17566
17569
  "libx264",
17567
17570
  "libx265"
17568
17571
  ]);
17569
- var HardwareEncodersSchema = object({
17572
+ object({
17570
17573
  encoders: array(object({
17571
17574
  encoder: HardwareEncoderIdSchema,
17572
17575
  codec: _enum(["H264", "H265"]),
@@ -17585,15 +17588,7 @@ var HardwareEncodersSchema = object({
17585
17588
  defaultH265: HardwareEncoderIdSchema,
17586
17589
  probedAt: number$1()
17587
17590
  });
17588
- /**
17589
- * Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
17590
- * methods the configured ffmpeg binary actually supports (parsed from
17591
- * `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
17592
- * egress never spends a spawn on a backend this build cannot offer. Per-stream
17593
- * decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
17594
- * software fallback — this only filters out wholly-unsupported backends.
17595
- */
17596
- var HardwareDecodeAccelsSchema = object({
17591
+ object({
17597
17592
  methods: array(string()).readonly(),
17598
17593
  probedAt: number$1()
17599
17594
  });
@@ -17656,13 +17651,7 @@ var ResolvedInferenceConfigSchema = object({
17656
17651
  format: ModelFormatSchema,
17657
17652
  reason: string()
17658
17653
  });
17659
- method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema), method(_void(), HardwareEncodersSchema), method(_void(), HardwareEncodersSchema, {
17660
- kind: "mutation",
17661
- auth: "admin"
17662
- }), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
17663
- kind: "mutation",
17664
- auth: "admin"
17665
- });
17654
+ method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
17666
17655
  var PtzPresetSchema = object({
17667
17656
  id: string(),
17668
17657
  name: string()
@@ -21287,30 +21276,6 @@ Object.freeze({
21287
21276
  addonId: null,
21288
21277
  access: "view"
21289
21278
  },
21290
- "platformProbe.getHardwareDecodeAccels": {
21291
- capName: "platform-probe",
21292
- capScope: "system",
21293
- addonId: null,
21294
- access: "view"
21295
- },
21296
- "platformProbe.getHardwareEncoders": {
21297
- capName: "platform-probe",
21298
- capScope: "system",
21299
- addonId: null,
21300
- access: "view"
21301
- },
21302
- "platformProbe.refreshHardwareDecodeAccels": {
21303
- capName: "platform-probe",
21304
- capScope: "system",
21305
- addonId: null,
21306
- access: "create"
21307
- },
21308
- "platformProbe.refreshHardwareEncoders": {
21309
- capName: "platform-probe",
21310
- capScope: "system",
21311
- addonId: null,
21312
- access: "create"
21313
- },
21314
21279
  "platformProbe.resolveHwAccel": {
21315
21280
  capName: "platform-probe",
21316
21281
  capScope: "system",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-export-ha-mqtt",
3
- "version": "1.1.14",
3
+ "version": "1.1.15",
4
4
  "description": "HomeAssistant MQTT discovery exporter for CamStack devices. Publishes discovery topics so HA auto-creates entities for exposed cameras/switches/intercoms/sensors.",
5
5
  "keywords": [
6
6
  "camstack",