@camstack/addon-notifiers 1.1.16 → 1.1.17
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 +7 -42
- package/dist/addon.mjs +7 -42
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -15166,7 +15166,10 @@ var AgentLoadSummarySchema = object({
|
|
|
15166
15166
|
online: boolean(),
|
|
15167
15167
|
load: RunnerLocalLoadSchema,
|
|
15168
15168
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
15169
|
-
score: number()
|
|
15169
|
+
score: number(),
|
|
15170
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
15171
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
15172
|
+
decodeHwaccel: string().nullable()
|
|
15170
15173
|
});
|
|
15171
15174
|
/**
|
|
15172
15175
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -17702,7 +17705,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
17702
17705
|
"libx264",
|
|
17703
17706
|
"libx265"
|
|
17704
17707
|
]);
|
|
17705
|
-
|
|
17708
|
+
object({
|
|
17706
17709
|
encoders: array(object({
|
|
17707
17710
|
encoder: HardwareEncoderIdSchema,
|
|
17708
17711
|
codec: _enum(["H264", "H265"]),
|
|
@@ -17721,15 +17724,7 @@ var HardwareEncodersSchema = object({
|
|
|
17721
17724
|
defaultH265: HardwareEncoderIdSchema,
|
|
17722
17725
|
probedAt: number()
|
|
17723
17726
|
});
|
|
17724
|
-
|
|
17725
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
17726
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
17727
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
17728
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
17729
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
17730
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
17731
|
-
*/
|
|
17732
|
-
var HardwareDecodeAccelsSchema = object({
|
|
17727
|
+
object({
|
|
17733
17728
|
methods: array(string()).readonly(),
|
|
17734
17729
|
probedAt: number()
|
|
17735
17730
|
});
|
|
@@ -17792,13 +17787,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
17792
17787
|
format: ModelFormatSchema,
|
|
17793
17788
|
reason: string()
|
|
17794
17789
|
});
|
|
17795
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
17796
|
-
kind: "mutation",
|
|
17797
|
-
auth: "admin"
|
|
17798
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
17799
|
-
kind: "mutation",
|
|
17800
|
-
auth: "admin"
|
|
17801
|
-
});
|
|
17790
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
17802
17791
|
var PtzPresetSchema = object({
|
|
17803
17792
|
id: string(),
|
|
17804
17793
|
name: string()
|
|
@@ -21423,30 +21412,6 @@ Object.freeze({
|
|
|
21423
21412
|
addonId: null,
|
|
21424
21413
|
access: "view"
|
|
21425
21414
|
},
|
|
21426
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
21427
|
-
capName: "platform-probe",
|
|
21428
|
-
capScope: "system",
|
|
21429
|
-
addonId: null,
|
|
21430
|
-
access: "view"
|
|
21431
|
-
},
|
|
21432
|
-
"platformProbe.getHardwareEncoders": {
|
|
21433
|
-
capName: "platform-probe",
|
|
21434
|
-
capScope: "system",
|
|
21435
|
-
addonId: null,
|
|
21436
|
-
access: "view"
|
|
21437
|
-
},
|
|
21438
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
21439
|
-
capName: "platform-probe",
|
|
21440
|
-
capScope: "system",
|
|
21441
|
-
addonId: null,
|
|
21442
|
-
access: "create"
|
|
21443
|
-
},
|
|
21444
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
21445
|
-
capName: "platform-probe",
|
|
21446
|
-
capScope: "system",
|
|
21447
|
-
addonId: null,
|
|
21448
|
-
access: "create"
|
|
21449
|
-
},
|
|
21450
21415
|
"platformProbe.resolveHwAccel": {
|
|
21451
21416
|
capName: "platform-probe",
|
|
21452
21417
|
capScope: "system",
|
package/dist/addon.mjs
CHANGED
|
@@ -15162,7 +15162,10 @@ var AgentLoadSummarySchema = object({
|
|
|
15162
15162
|
online: boolean(),
|
|
15163
15163
|
load: RunnerLocalLoadSchema,
|
|
15164
15164
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
15165
|
-
score: number()
|
|
15165
|
+
score: number(),
|
|
15166
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
15167
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
15168
|
+
decodeHwaccel: string().nullable()
|
|
15166
15169
|
});
|
|
15167
15170
|
/**
|
|
15168
15171
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -17698,7 +17701,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
17698
17701
|
"libx264",
|
|
17699
17702
|
"libx265"
|
|
17700
17703
|
]);
|
|
17701
|
-
|
|
17704
|
+
object({
|
|
17702
17705
|
encoders: array(object({
|
|
17703
17706
|
encoder: HardwareEncoderIdSchema,
|
|
17704
17707
|
codec: _enum(["H264", "H265"]),
|
|
@@ -17717,15 +17720,7 @@ var HardwareEncodersSchema = object({
|
|
|
17717
17720
|
defaultH265: HardwareEncoderIdSchema,
|
|
17718
17721
|
probedAt: number()
|
|
17719
17722
|
});
|
|
17720
|
-
|
|
17721
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
17722
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
17723
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
17724
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
17725
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
17726
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
17727
|
-
*/
|
|
17728
|
-
var HardwareDecodeAccelsSchema = object({
|
|
17723
|
+
object({
|
|
17729
17724
|
methods: array(string()).readonly(),
|
|
17730
17725
|
probedAt: number()
|
|
17731
17726
|
});
|
|
@@ -17788,13 +17783,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
17788
17783
|
format: ModelFormatSchema,
|
|
17789
17784
|
reason: string()
|
|
17790
17785
|
});
|
|
17791
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
17792
|
-
kind: "mutation",
|
|
17793
|
-
auth: "admin"
|
|
17794
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
17795
|
-
kind: "mutation",
|
|
17796
|
-
auth: "admin"
|
|
17797
|
-
});
|
|
17786
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
17798
17787
|
var PtzPresetSchema = object({
|
|
17799
17788
|
id: string(),
|
|
17800
17789
|
name: string()
|
|
@@ -21419,30 +21408,6 @@ Object.freeze({
|
|
|
21419
21408
|
addonId: null,
|
|
21420
21409
|
access: "view"
|
|
21421
21410
|
},
|
|
21422
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
21423
|
-
capName: "platform-probe",
|
|
21424
|
-
capScope: "system",
|
|
21425
|
-
addonId: null,
|
|
21426
|
-
access: "view"
|
|
21427
|
-
},
|
|
21428
|
-
"platformProbe.getHardwareEncoders": {
|
|
21429
|
-
capName: "platform-probe",
|
|
21430
|
-
capScope: "system",
|
|
21431
|
-
addonId: null,
|
|
21432
|
-
access: "view"
|
|
21433
|
-
},
|
|
21434
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
21435
|
-
capName: "platform-probe",
|
|
21436
|
-
capScope: "system",
|
|
21437
|
-
addonId: null,
|
|
21438
|
-
access: "create"
|
|
21439
|
-
},
|
|
21440
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
21441
|
-
capName: "platform-probe",
|
|
21442
|
-
capScope: "system",
|
|
21443
|
-
addonId: null,
|
|
21444
|
-
access: "create"
|
|
21445
|
-
},
|
|
21446
21411
|
"platformProbe.resolveHwAccel": {
|
|
21447
21412
|
capName: "platform-probe",
|
|
21448
21413
|
capScope: "system",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-notifiers",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.17",
|
|
4
4
|
"description": "System notifiers addon for CamStack — a `notification-output` collection provider hosting per-kind notifier adapters (ntfy, pushover, gotify, telegram, discord, webhook, zentik).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|