@camstack/addon-matter-broker 0.1.12 → 0.1.13

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
@@ -17975,7 +17975,10 @@ var AgentLoadSummarySchema = object({
17975
17975
  online: boolean(),
17976
17976
  load: RunnerLocalLoadSchema,
17977
17977
  /** Computed score used by the L2 capacity balancer (lower = less loaded). */
17978
- score: number()
17978
+ score: number(),
17979
+ /** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
17980
+ * when not yet probed — for the cluster Pipeline table UI (P0.2). */
17981
+ decodeHwaccel: string$2().nullable()
17979
17982
  });
17980
17983
  /**
17981
17984
  * Aggregate metrics across the whole detection cluster. Replaces the legacy
@@ -20528,7 +20531,7 @@ var HardwareEncoderIdSchema = _enum([
20528
20531
  "libx264",
20529
20532
  "libx265"
20530
20533
  ]);
20531
- var HardwareEncodersSchema = object({
20534
+ object({
20532
20535
  encoders: array(object({
20533
20536
  encoder: HardwareEncoderIdSchema,
20534
20537
  codec: _enum(["H264", "H265"]),
@@ -20547,15 +20550,7 @@ var HardwareEncodersSchema = object({
20547
20550
  defaultH265: HardwareEncoderIdSchema,
20548
20551
  probedAt: number()
20549
20552
  });
20550
- /**
20551
- * Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
20552
- * methods the configured ffmpeg binary actually supports (parsed from
20553
- * `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
20554
- * egress never spends a spawn on a backend this build cannot offer. Per-stream
20555
- * decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
20556
- * software fallback — this only filters out wholly-unsupported backends.
20557
- */
20558
- var HardwareDecodeAccelsSchema = object({
20553
+ object({
20559
20554
  methods: array(string$2()).readonly(),
20560
20555
  probedAt: number()
20561
20556
  });
@@ -20618,13 +20613,7 @@ var ResolvedInferenceConfigSchema = object({
20618
20613
  format: ModelFormatSchema,
20619
20614
  reason: string$2()
20620
20615
  });
20621
- method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema), method(_void(), HardwareEncodersSchema), method(_void(), HardwareEncodersSchema, {
20622
- kind: "mutation",
20623
- auth: "admin"
20624
- }), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
20625
- kind: "mutation",
20626
- auth: "admin"
20627
- });
20616
+ method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
20628
20617
  var PtzPresetSchema = object({
20629
20618
  id: string$2(),
20630
20619
  name: string$2()
@@ -24249,30 +24238,6 @@ Object.freeze({
24249
24238
  addonId: null,
24250
24239
  access: "view"
24251
24240
  },
24252
- "platformProbe.getHardwareDecodeAccels": {
24253
- capName: "platform-probe",
24254
- capScope: "system",
24255
- addonId: null,
24256
- access: "view"
24257
- },
24258
- "platformProbe.getHardwareEncoders": {
24259
- capName: "platform-probe",
24260
- capScope: "system",
24261
- addonId: null,
24262
- access: "view"
24263
- },
24264
- "platformProbe.refreshHardwareDecodeAccels": {
24265
- capName: "platform-probe",
24266
- capScope: "system",
24267
- addonId: null,
24268
- access: "create"
24269
- },
24270
- "platformProbe.refreshHardwareEncoders": {
24271
- capName: "platform-probe",
24272
- capScope: "system",
24273
- addonId: null,
24274
- access: "create"
24275
- },
24276
24241
  "platformProbe.resolveHwAccel": {
24277
24242
  capName: "platform-probe",
24278
24243
  capScope: "system",
package/dist/addon.mjs CHANGED
@@ -17973,7 +17973,10 @@ var AgentLoadSummarySchema = object({
17973
17973
  online: boolean(),
17974
17974
  load: RunnerLocalLoadSchema,
17975
17975
  /** Computed score used by the L2 capacity balancer (lower = less loaded). */
17976
- score: number()
17976
+ score: number(),
17977
+ /** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
17978
+ * when not yet probed — for the cluster Pipeline table UI (P0.2). */
17979
+ decodeHwaccel: string$2().nullable()
17977
17980
  });
17978
17981
  /**
17979
17982
  * Aggregate metrics across the whole detection cluster. Replaces the legacy
@@ -20526,7 +20529,7 @@ var HardwareEncoderIdSchema = _enum([
20526
20529
  "libx264",
20527
20530
  "libx265"
20528
20531
  ]);
20529
- var HardwareEncodersSchema = object({
20532
+ object({
20530
20533
  encoders: array(object({
20531
20534
  encoder: HardwareEncoderIdSchema,
20532
20535
  codec: _enum(["H264", "H265"]),
@@ -20545,15 +20548,7 @@ var HardwareEncodersSchema = object({
20545
20548
  defaultH265: HardwareEncoderIdSchema,
20546
20549
  probedAt: number()
20547
20550
  });
20548
- /**
20549
- * Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
20550
- * methods the configured ffmpeg binary actually supports (parsed from
20551
- * `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
20552
- * egress never spends a spawn on a backend this build cannot offer. Per-stream
20553
- * decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
20554
- * software fallback — this only filters out wholly-unsupported backends.
20555
- */
20556
- var HardwareDecodeAccelsSchema = object({
20551
+ object({
20557
20552
  methods: array(string$2()).readonly(),
20558
20553
  probedAt: number()
20559
20554
  });
@@ -20616,13 +20611,7 @@ var ResolvedInferenceConfigSchema = object({
20616
20611
  format: ModelFormatSchema,
20617
20612
  reason: string$2()
20618
20613
  });
20619
- method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema), method(_void(), HardwareEncodersSchema), method(_void(), HardwareEncodersSchema, {
20620
- kind: "mutation",
20621
- auth: "admin"
20622
- }), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
20623
- kind: "mutation",
20624
- auth: "admin"
20625
- });
20614
+ method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
20626
20615
  var PtzPresetSchema = object({
20627
20616
  id: string$2(),
20628
20617
  name: string$2()
@@ -24247,30 +24236,6 @@ Object.freeze({
24247
24236
  addonId: null,
24248
24237
  access: "view"
24249
24238
  },
24250
- "platformProbe.getHardwareDecodeAccels": {
24251
- capName: "platform-probe",
24252
- capScope: "system",
24253
- addonId: null,
24254
- access: "view"
24255
- },
24256
- "platformProbe.getHardwareEncoders": {
24257
- capName: "platform-probe",
24258
- capScope: "system",
24259
- addonId: null,
24260
- access: "view"
24261
- },
24262
- "platformProbe.refreshHardwareDecodeAccels": {
24263
- capName: "platform-probe",
24264
- capScope: "system",
24265
- addonId: null,
24266
- access: "create"
24267
- },
24268
- "platformProbe.refreshHardwareEncoders": {
24269
- capName: "platform-probe",
24270
- capScope: "system",
24271
- addonId: null,
24272
- access: "create"
24273
- },
24274
24239
  "platformProbe.resolveHwAccel": {
24275
24240
  capName: "platform-probe",
24276
24241
  capScope: "system",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-matter-broker",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Matter broker addon for CamStack — owns a Matter fabric (commissioning + the long-lived controller) via the matter.js controller and brokers commissioned Matter nodes into CamStack",
5
5
  "keywords": [
6
6
  "camstack",