@camstack/addon-provider-velux 0.1.1 → 0.1.2
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
|
@@ -17895,7 +17895,10 @@ var AgentLoadSummarySchema = object({
|
|
|
17895
17895
|
online: boolean(),
|
|
17896
17896
|
load: RunnerLocalLoadSchema,
|
|
17897
17897
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
17898
|
-
score: number()
|
|
17898
|
+
score: number(),
|
|
17899
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
17900
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
17901
|
+
decodeHwaccel: string().nullable()
|
|
17899
17902
|
});
|
|
17900
17903
|
/**
|
|
17901
17904
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -20431,7 +20434,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
20431
20434
|
"libx264",
|
|
20432
20435
|
"libx265"
|
|
20433
20436
|
]);
|
|
20434
|
-
|
|
20437
|
+
object({
|
|
20435
20438
|
encoders: array(object({
|
|
20436
20439
|
encoder: HardwareEncoderIdSchema,
|
|
20437
20440
|
codec: _enum(["H264", "H265"]),
|
|
@@ -20450,15 +20453,7 @@ var HardwareEncodersSchema = object({
|
|
|
20450
20453
|
defaultH265: HardwareEncoderIdSchema,
|
|
20451
20454
|
probedAt: number()
|
|
20452
20455
|
});
|
|
20453
|
-
|
|
20454
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
20455
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
20456
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
20457
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
20458
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
20459
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
20460
|
-
*/
|
|
20461
|
-
var HardwareDecodeAccelsSchema = object({
|
|
20456
|
+
object({
|
|
20462
20457
|
methods: array(string()).readonly(),
|
|
20463
20458
|
probedAt: number()
|
|
20464
20459
|
});
|
|
@@ -20521,13 +20516,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
20521
20516
|
format: ModelFormatSchema,
|
|
20522
20517
|
reason: string()
|
|
20523
20518
|
});
|
|
20524
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
20525
|
-
kind: "mutation",
|
|
20526
|
-
auth: "admin"
|
|
20527
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
20528
|
-
kind: "mutation",
|
|
20529
|
-
auth: "admin"
|
|
20530
|
-
});
|
|
20519
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
20531
20520
|
var PtzPresetSchema = object({
|
|
20532
20521
|
id: string(),
|
|
20533
20522
|
name: string()
|
|
@@ -24152,30 +24141,6 @@ Object.freeze({
|
|
|
24152
24141
|
addonId: null,
|
|
24153
24142
|
access: "view"
|
|
24154
24143
|
},
|
|
24155
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
24156
|
-
capName: "platform-probe",
|
|
24157
|
-
capScope: "system",
|
|
24158
|
-
addonId: null,
|
|
24159
|
-
access: "view"
|
|
24160
|
-
},
|
|
24161
|
-
"platformProbe.getHardwareEncoders": {
|
|
24162
|
-
capName: "platform-probe",
|
|
24163
|
-
capScope: "system",
|
|
24164
|
-
addonId: null,
|
|
24165
|
-
access: "view"
|
|
24166
|
-
},
|
|
24167
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
24168
|
-
capName: "platform-probe",
|
|
24169
|
-
capScope: "system",
|
|
24170
|
-
addonId: null,
|
|
24171
|
-
access: "create"
|
|
24172
|
-
},
|
|
24173
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
24174
|
-
capName: "platform-probe",
|
|
24175
|
-
capScope: "system",
|
|
24176
|
-
addonId: null,
|
|
24177
|
-
access: "create"
|
|
24178
|
-
},
|
|
24179
24144
|
"platformProbe.resolveHwAccel": {
|
|
24180
24145
|
capName: "platform-probe",
|
|
24181
24146
|
capScope: "system",
|
package/dist/addon.mjs
CHANGED
|
@@ -17894,7 +17894,10 @@ var AgentLoadSummarySchema = object({
|
|
|
17894
17894
|
online: boolean(),
|
|
17895
17895
|
load: RunnerLocalLoadSchema,
|
|
17896
17896
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
17897
|
-
score: number()
|
|
17897
|
+
score: number(),
|
|
17898
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
17899
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
17900
|
+
decodeHwaccel: string().nullable()
|
|
17898
17901
|
});
|
|
17899
17902
|
/**
|
|
17900
17903
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -20430,7 +20433,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
20430
20433
|
"libx264",
|
|
20431
20434
|
"libx265"
|
|
20432
20435
|
]);
|
|
20433
|
-
|
|
20436
|
+
object({
|
|
20434
20437
|
encoders: array(object({
|
|
20435
20438
|
encoder: HardwareEncoderIdSchema,
|
|
20436
20439
|
codec: _enum(["H264", "H265"]),
|
|
@@ -20449,15 +20452,7 @@ var HardwareEncodersSchema = object({
|
|
|
20449
20452
|
defaultH265: HardwareEncoderIdSchema,
|
|
20450
20453
|
probedAt: number()
|
|
20451
20454
|
});
|
|
20452
|
-
|
|
20453
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
20454
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
20455
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
20456
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
20457
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
20458
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
20459
|
-
*/
|
|
20460
|
-
var HardwareDecodeAccelsSchema = object({
|
|
20455
|
+
object({
|
|
20461
20456
|
methods: array(string()).readonly(),
|
|
20462
20457
|
probedAt: number()
|
|
20463
20458
|
});
|
|
@@ -20520,13 +20515,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
20520
20515
|
format: ModelFormatSchema,
|
|
20521
20516
|
reason: string()
|
|
20522
20517
|
});
|
|
20523
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
20524
|
-
kind: "mutation",
|
|
20525
|
-
auth: "admin"
|
|
20526
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
20527
|
-
kind: "mutation",
|
|
20528
|
-
auth: "admin"
|
|
20529
|
-
});
|
|
20518
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
20530
20519
|
var PtzPresetSchema = object({
|
|
20531
20520
|
id: string(),
|
|
20532
20521
|
name: string()
|
|
@@ -24151,30 +24140,6 @@ Object.freeze({
|
|
|
24151
24140
|
addonId: null,
|
|
24152
24141
|
access: "view"
|
|
24153
24142
|
},
|
|
24154
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
24155
|
-
capName: "platform-probe",
|
|
24156
|
-
capScope: "system",
|
|
24157
|
-
addonId: null,
|
|
24158
|
-
access: "view"
|
|
24159
|
-
},
|
|
24160
|
-
"platformProbe.getHardwareEncoders": {
|
|
24161
|
-
capName: "platform-probe",
|
|
24162
|
-
capScope: "system",
|
|
24163
|
-
addonId: null,
|
|
24164
|
-
access: "view"
|
|
24165
|
-
},
|
|
24166
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
24167
|
-
capName: "platform-probe",
|
|
24168
|
-
capScope: "system",
|
|
24169
|
-
addonId: null,
|
|
24170
|
-
access: "create"
|
|
24171
|
-
},
|
|
24172
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
24173
|
-
capName: "platform-probe",
|
|
24174
|
-
capScope: "system",
|
|
24175
|
-
addonId: null,
|
|
24176
|
-
access: "create"
|
|
24177
|
-
},
|
|
24178
24143
|
"platformProbe.resolveHwAccel": {
|
|
24179
24144
|
capName: "platform-probe",
|
|
24180
24145
|
capScope: "system",
|
package/package.json
CHANGED