@camstack/addon-advanced-notifier 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
|
@@ -15000,7 +15000,10 @@ var AgentLoadSummarySchema = object({
|
|
|
15000
15000
|
online: boolean(),
|
|
15001
15001
|
load: RunnerLocalLoadSchema,
|
|
15002
15002
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
15003
|
-
score: number()
|
|
15003
|
+
score: number(),
|
|
15004
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
15005
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
15006
|
+
decodeHwaccel: string().nullable()
|
|
15004
15007
|
});
|
|
15005
15008
|
/**
|
|
15006
15009
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -17536,7 +17539,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
17536
17539
|
"libx264",
|
|
17537
17540
|
"libx265"
|
|
17538
17541
|
]);
|
|
17539
|
-
|
|
17542
|
+
object({
|
|
17540
17543
|
encoders: array(object({
|
|
17541
17544
|
encoder: HardwareEncoderIdSchema,
|
|
17542
17545
|
codec: _enum(["H264", "H265"]),
|
|
@@ -17555,15 +17558,7 @@ var HardwareEncodersSchema = object({
|
|
|
17555
17558
|
defaultH265: HardwareEncoderIdSchema,
|
|
17556
17559
|
probedAt: number()
|
|
17557
17560
|
});
|
|
17558
|
-
|
|
17559
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
17560
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
17561
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
17562
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
17563
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
17564
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
17565
|
-
*/
|
|
17566
|
-
var HardwareDecodeAccelsSchema = object({
|
|
17561
|
+
object({
|
|
17567
17562
|
methods: array(string()).readonly(),
|
|
17568
17563
|
probedAt: number()
|
|
17569
17564
|
});
|
|
@@ -17626,13 +17621,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
17626
17621
|
format: ModelFormatSchema,
|
|
17627
17622
|
reason: string()
|
|
17628
17623
|
});
|
|
17629
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
17630
|
-
kind: "mutation",
|
|
17631
|
-
auth: "admin"
|
|
17632
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
17633
|
-
kind: "mutation",
|
|
17634
|
-
auth: "admin"
|
|
17635
|
-
});
|
|
17624
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
17636
17625
|
var PtzPresetSchema = object({
|
|
17637
17626
|
id: string(),
|
|
17638
17627
|
name: string()
|
|
@@ -21257,30 +21246,6 @@ Object.freeze({
|
|
|
21257
21246
|
addonId: null,
|
|
21258
21247
|
access: "view"
|
|
21259
21248
|
},
|
|
21260
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
21261
|
-
capName: "platform-probe",
|
|
21262
|
-
capScope: "system",
|
|
21263
|
-
addonId: null,
|
|
21264
|
-
access: "view"
|
|
21265
|
-
},
|
|
21266
|
-
"platformProbe.getHardwareEncoders": {
|
|
21267
|
-
capName: "platform-probe",
|
|
21268
|
-
capScope: "system",
|
|
21269
|
-
addonId: null,
|
|
21270
|
-
access: "view"
|
|
21271
|
-
},
|
|
21272
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
21273
|
-
capName: "platform-probe",
|
|
21274
|
-
capScope: "system",
|
|
21275
|
-
addonId: null,
|
|
21276
|
-
access: "create"
|
|
21277
|
-
},
|
|
21278
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
21279
|
-
capName: "platform-probe",
|
|
21280
|
-
capScope: "system",
|
|
21281
|
-
addonId: null,
|
|
21282
|
-
access: "create"
|
|
21283
|
-
},
|
|
21284
21249
|
"platformProbe.resolveHwAccel": {
|
|
21285
21250
|
capName: "platform-probe",
|
|
21286
21251
|
capScope: "system",
|
package/dist/addon.mjs
CHANGED
|
@@ -14996,7 +14996,10 @@ var AgentLoadSummarySchema = object({
|
|
|
14996
14996
|
online: boolean(),
|
|
14997
14997
|
load: RunnerLocalLoadSchema,
|
|
14998
14998
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
14999
|
-
score: number()
|
|
14999
|
+
score: number(),
|
|
15000
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
15001
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
15002
|
+
decodeHwaccel: string().nullable()
|
|
15000
15003
|
});
|
|
15001
15004
|
/**
|
|
15002
15005
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -17532,7 +17535,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
17532
17535
|
"libx264",
|
|
17533
17536
|
"libx265"
|
|
17534
17537
|
]);
|
|
17535
|
-
|
|
17538
|
+
object({
|
|
17536
17539
|
encoders: array(object({
|
|
17537
17540
|
encoder: HardwareEncoderIdSchema,
|
|
17538
17541
|
codec: _enum(["H264", "H265"]),
|
|
@@ -17551,15 +17554,7 @@ var HardwareEncodersSchema = object({
|
|
|
17551
17554
|
defaultH265: HardwareEncoderIdSchema,
|
|
17552
17555
|
probedAt: number()
|
|
17553
17556
|
});
|
|
17554
|
-
|
|
17555
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
17556
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
17557
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
17558
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
17559
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
17560
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
17561
|
-
*/
|
|
17562
|
-
var HardwareDecodeAccelsSchema = object({
|
|
17557
|
+
object({
|
|
17563
17558
|
methods: array(string()).readonly(),
|
|
17564
17559
|
probedAt: number()
|
|
17565
17560
|
});
|
|
@@ -17622,13 +17617,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
17622
17617
|
format: ModelFormatSchema,
|
|
17623
17618
|
reason: string()
|
|
17624
17619
|
});
|
|
17625
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
17626
|
-
kind: "mutation",
|
|
17627
|
-
auth: "admin"
|
|
17628
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
17629
|
-
kind: "mutation",
|
|
17630
|
-
auth: "admin"
|
|
17631
|
-
});
|
|
17620
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
17632
17621
|
var PtzPresetSchema = object({
|
|
17633
17622
|
id: string(),
|
|
17634
17623
|
name: string()
|
|
@@ -21253,30 +21242,6 @@ Object.freeze({
|
|
|
21253
21242
|
addonId: null,
|
|
21254
21243
|
access: "view"
|
|
21255
21244
|
},
|
|
21256
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
21257
|
-
capName: "platform-probe",
|
|
21258
|
-
capScope: "system",
|
|
21259
|
-
addonId: null,
|
|
21260
|
-
access: "view"
|
|
21261
|
-
},
|
|
21262
|
-
"platformProbe.getHardwareEncoders": {
|
|
21263
|
-
capName: "platform-probe",
|
|
21264
|
-
capScope: "system",
|
|
21265
|
-
addonId: null,
|
|
21266
|
-
access: "view"
|
|
21267
|
-
},
|
|
21268
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
21269
|
-
capName: "platform-probe",
|
|
21270
|
-
capScope: "system",
|
|
21271
|
-
addonId: null,
|
|
21272
|
-
access: "create"
|
|
21273
|
-
},
|
|
21274
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
21275
|
-
capName: "platform-probe",
|
|
21276
|
-
capScope: "system",
|
|
21277
|
-
addonId: null,
|
|
21278
|
-
access: "create"
|
|
21279
|
-
},
|
|
21280
21245
|
"platformProbe.resolveHwAccel": {
|
|
21281
21246
|
capName: "platform-probe",
|
|
21282
21247
|
capScope: "system",
|