@camstack/addon-import-alexa 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 +7 -42
- package/dist/addon.mjs +7 -42
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -18136,7 +18136,10 @@ var AgentLoadSummarySchema = object({
|
|
|
18136
18136
|
online: boolean(),
|
|
18137
18137
|
load: RunnerLocalLoadSchema,
|
|
18138
18138
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
18139
|
-
score: number()
|
|
18139
|
+
score: number(),
|
|
18140
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
18141
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
18142
|
+
decodeHwaccel: string().nullable()
|
|
18140
18143
|
});
|
|
18141
18144
|
/**
|
|
18142
18145
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -20689,7 +20692,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
20689
20692
|
"libx264",
|
|
20690
20693
|
"libx265"
|
|
20691
20694
|
]);
|
|
20692
|
-
|
|
20695
|
+
object({
|
|
20693
20696
|
encoders: array(object({
|
|
20694
20697
|
encoder: HardwareEncoderIdSchema,
|
|
20695
20698
|
codec: _enum(["H264", "H265"]),
|
|
@@ -20708,15 +20711,7 @@ var HardwareEncodersSchema = object({
|
|
|
20708
20711
|
defaultH265: HardwareEncoderIdSchema,
|
|
20709
20712
|
probedAt: number()
|
|
20710
20713
|
});
|
|
20711
|
-
|
|
20712
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
20713
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
20714
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
20715
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
20716
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
20717
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
20718
|
-
*/
|
|
20719
|
-
var HardwareDecodeAccelsSchema = object({
|
|
20714
|
+
object({
|
|
20720
20715
|
methods: array(string()).readonly(),
|
|
20721
20716
|
probedAt: number()
|
|
20722
20717
|
});
|
|
@@ -20779,13 +20774,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
20779
20774
|
format: ModelFormatSchema,
|
|
20780
20775
|
reason: string()
|
|
20781
20776
|
});
|
|
20782
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
20783
|
-
kind: "mutation",
|
|
20784
|
-
auth: "admin"
|
|
20785
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
20786
|
-
kind: "mutation",
|
|
20787
|
-
auth: "admin"
|
|
20788
|
-
});
|
|
20777
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
20789
20778
|
var PtzPresetSchema = object({
|
|
20790
20779
|
id: string(),
|
|
20791
20780
|
name: string()
|
|
@@ -24410,30 +24399,6 @@ Object.freeze({
|
|
|
24410
24399
|
addonId: null,
|
|
24411
24400
|
access: "view"
|
|
24412
24401
|
},
|
|
24413
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
24414
|
-
capName: "platform-probe",
|
|
24415
|
-
capScope: "system",
|
|
24416
|
-
addonId: null,
|
|
24417
|
-
access: "view"
|
|
24418
|
-
},
|
|
24419
|
-
"platformProbe.getHardwareEncoders": {
|
|
24420
|
-
capName: "platform-probe",
|
|
24421
|
-
capScope: "system",
|
|
24422
|
-
addonId: null,
|
|
24423
|
-
access: "view"
|
|
24424
|
-
},
|
|
24425
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
24426
|
-
capName: "platform-probe",
|
|
24427
|
-
capScope: "system",
|
|
24428
|
-
addonId: null,
|
|
24429
|
-
access: "create"
|
|
24430
|
-
},
|
|
24431
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
24432
|
-
capName: "platform-probe",
|
|
24433
|
-
capScope: "system",
|
|
24434
|
-
addonId: null,
|
|
24435
|
-
access: "create"
|
|
24436
|
-
},
|
|
24437
24402
|
"platformProbe.resolveHwAccel": {
|
|
24438
24403
|
capName: "platform-probe",
|
|
24439
24404
|
capScope: "system",
|
package/dist/addon.mjs
CHANGED
|
@@ -18136,7 +18136,10 @@ var AgentLoadSummarySchema = object({
|
|
|
18136
18136
|
online: boolean(),
|
|
18137
18137
|
load: RunnerLocalLoadSchema,
|
|
18138
18138
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
18139
|
-
score: number()
|
|
18139
|
+
score: number(),
|
|
18140
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
18141
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
18142
|
+
decodeHwaccel: string().nullable()
|
|
18140
18143
|
});
|
|
18141
18144
|
/**
|
|
18142
18145
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -20689,7 +20692,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
20689
20692
|
"libx264",
|
|
20690
20693
|
"libx265"
|
|
20691
20694
|
]);
|
|
20692
|
-
|
|
20695
|
+
object({
|
|
20693
20696
|
encoders: array(object({
|
|
20694
20697
|
encoder: HardwareEncoderIdSchema,
|
|
20695
20698
|
codec: _enum(["H264", "H265"]),
|
|
@@ -20708,15 +20711,7 @@ var HardwareEncodersSchema = object({
|
|
|
20708
20711
|
defaultH265: HardwareEncoderIdSchema,
|
|
20709
20712
|
probedAt: number()
|
|
20710
20713
|
});
|
|
20711
|
-
|
|
20712
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
20713
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
20714
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
20715
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
20716
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
20717
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
20718
|
-
*/
|
|
20719
|
-
var HardwareDecodeAccelsSchema = object({
|
|
20714
|
+
object({
|
|
20720
20715
|
methods: array(string()).readonly(),
|
|
20721
20716
|
probedAt: number()
|
|
20722
20717
|
});
|
|
@@ -20779,13 +20774,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
20779
20774
|
format: ModelFormatSchema,
|
|
20780
20775
|
reason: string()
|
|
20781
20776
|
});
|
|
20782
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
20783
|
-
kind: "mutation",
|
|
20784
|
-
auth: "admin"
|
|
20785
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
20786
|
-
kind: "mutation",
|
|
20787
|
-
auth: "admin"
|
|
20788
|
-
});
|
|
20777
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
20789
20778
|
var PtzPresetSchema = object({
|
|
20790
20779
|
id: string(),
|
|
20791
20780
|
name: string()
|
|
@@ -24410,30 +24399,6 @@ Object.freeze({
|
|
|
24410
24399
|
addonId: null,
|
|
24411
24400
|
access: "view"
|
|
24412
24401
|
},
|
|
24413
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
24414
|
-
capName: "platform-probe",
|
|
24415
|
-
capScope: "system",
|
|
24416
|
-
addonId: null,
|
|
24417
|
-
access: "view"
|
|
24418
|
-
},
|
|
24419
|
-
"platformProbe.getHardwareEncoders": {
|
|
24420
|
-
capName: "platform-probe",
|
|
24421
|
-
capScope: "system",
|
|
24422
|
-
addonId: null,
|
|
24423
|
-
access: "view"
|
|
24424
|
-
},
|
|
24425
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
24426
|
-
capName: "platform-probe",
|
|
24427
|
-
capScope: "system",
|
|
24428
|
-
addonId: null,
|
|
24429
|
-
access: "create"
|
|
24430
|
-
},
|
|
24431
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
24432
|
-
capName: "platform-probe",
|
|
24433
|
-
capScope: "system",
|
|
24434
|
-
addonId: null,
|
|
24435
|
-
access: "create"
|
|
24436
|
-
},
|
|
24437
24402
|
"platformProbe.resolveHwAccel": {
|
|
24438
24403
|
capName: "platform-probe",
|
|
24439
24404
|
capScope: "system",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-import-alexa",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "Alexa device-import provider for CamStack — imports the smart-home devices in a user's Alexa account via the unofficial alexa-remote2 cookie/token client (the inverse of the Alexa exporter)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|