@camstack/addon-export-alexa 1.1.14 → 1.1.15
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.
|
@@ -15248,7 +15248,10 @@ var AgentLoadSummarySchema = object({
|
|
|
15248
15248
|
online: boolean(),
|
|
15249
15249
|
load: RunnerLocalLoadSchema,
|
|
15250
15250
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
15251
|
-
score: number()
|
|
15251
|
+
score: number(),
|
|
15252
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
15253
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
15254
|
+
decodeHwaccel: string().nullable()
|
|
15252
15255
|
});
|
|
15253
15256
|
/**
|
|
15254
15257
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -17784,7 +17787,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
17784
17787
|
"libx264",
|
|
17785
17788
|
"libx265"
|
|
17786
17789
|
]);
|
|
17787
|
-
|
|
17790
|
+
object({
|
|
17788
17791
|
encoders: array(object({
|
|
17789
17792
|
encoder: HardwareEncoderIdSchema,
|
|
17790
17793
|
codec: _enum(["H264", "H265"]),
|
|
@@ -17803,15 +17806,7 @@ var HardwareEncodersSchema = object({
|
|
|
17803
17806
|
defaultH265: HardwareEncoderIdSchema,
|
|
17804
17807
|
probedAt: number()
|
|
17805
17808
|
});
|
|
17806
|
-
|
|
17807
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
17808
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
17809
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
17810
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
17811
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
17812
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
17813
|
-
*/
|
|
17814
|
-
var HardwareDecodeAccelsSchema = object({
|
|
17809
|
+
object({
|
|
17815
17810
|
methods: array(string()).readonly(),
|
|
17816
17811
|
probedAt: number()
|
|
17817
17812
|
});
|
|
@@ -17874,13 +17869,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
17874
17869
|
format: ModelFormatSchema,
|
|
17875
17870
|
reason: string()
|
|
17876
17871
|
});
|
|
17877
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
17878
|
-
kind: "mutation",
|
|
17879
|
-
auth: "admin"
|
|
17880
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
17881
|
-
kind: "mutation",
|
|
17882
|
-
auth: "admin"
|
|
17883
|
-
});
|
|
17872
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
17884
17873
|
var PtzPresetSchema = object({
|
|
17885
17874
|
id: string(),
|
|
17886
17875
|
name: string()
|
|
@@ -21505,30 +21494,6 @@ Object.freeze({
|
|
|
21505
21494
|
addonId: null,
|
|
21506
21495
|
access: "view"
|
|
21507
21496
|
},
|
|
21508
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
21509
|
-
capName: "platform-probe",
|
|
21510
|
-
capScope: "system",
|
|
21511
|
-
addonId: null,
|
|
21512
|
-
access: "view"
|
|
21513
|
-
},
|
|
21514
|
-
"platformProbe.getHardwareEncoders": {
|
|
21515
|
-
capName: "platform-probe",
|
|
21516
|
-
capScope: "system",
|
|
21517
|
-
addonId: null,
|
|
21518
|
-
access: "view"
|
|
21519
|
-
},
|
|
21520
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
21521
|
-
capName: "platform-probe",
|
|
21522
|
-
capScope: "system",
|
|
21523
|
-
addonId: null,
|
|
21524
|
-
access: "create"
|
|
21525
|
-
},
|
|
21526
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
21527
|
-
capName: "platform-probe",
|
|
21528
|
-
capScope: "system",
|
|
21529
|
-
addonId: null,
|
|
21530
|
-
access: "create"
|
|
21531
|
-
},
|
|
21532
21497
|
"platformProbe.resolveHwAccel": {
|
|
21533
21498
|
capName: "platform-probe",
|
|
21534
21499
|
capScope: "system",
|
|
@@ -15222,7 +15222,10 @@ var AgentLoadSummarySchema = object({
|
|
|
15222
15222
|
online: boolean(),
|
|
15223
15223
|
load: RunnerLocalLoadSchema,
|
|
15224
15224
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
15225
|
-
score: number()
|
|
15225
|
+
score: number(),
|
|
15226
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
15227
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
15228
|
+
decodeHwaccel: string().nullable()
|
|
15226
15229
|
});
|
|
15227
15230
|
/**
|
|
15228
15231
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -17758,7 +17761,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
17758
17761
|
"libx264",
|
|
17759
17762
|
"libx265"
|
|
17760
17763
|
]);
|
|
17761
|
-
|
|
17764
|
+
object({
|
|
17762
17765
|
encoders: array(object({
|
|
17763
17766
|
encoder: HardwareEncoderIdSchema,
|
|
17764
17767
|
codec: _enum(["H264", "H265"]),
|
|
@@ -17777,15 +17780,7 @@ var HardwareEncodersSchema = object({
|
|
|
17777
17780
|
defaultH265: HardwareEncoderIdSchema,
|
|
17778
17781
|
probedAt: number()
|
|
17779
17782
|
});
|
|
17780
|
-
|
|
17781
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
17782
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
17783
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
17784
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
17785
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
17786
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
17787
|
-
*/
|
|
17788
|
-
var HardwareDecodeAccelsSchema = object({
|
|
17783
|
+
object({
|
|
17789
17784
|
methods: array(string()).readonly(),
|
|
17790
17785
|
probedAt: number()
|
|
17791
17786
|
});
|
|
@@ -17848,13 +17843,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
17848
17843
|
format: ModelFormatSchema,
|
|
17849
17844
|
reason: string()
|
|
17850
17845
|
});
|
|
17851
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
17852
|
-
kind: "mutation",
|
|
17853
|
-
auth: "admin"
|
|
17854
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
17855
|
-
kind: "mutation",
|
|
17856
|
-
auth: "admin"
|
|
17857
|
-
});
|
|
17846
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
17858
17847
|
var PtzPresetSchema = object({
|
|
17859
17848
|
id: string(),
|
|
17860
17849
|
name: string()
|
|
@@ -21479,30 +21468,6 @@ Object.freeze({
|
|
|
21479
21468
|
addonId: null,
|
|
21480
21469
|
access: "view"
|
|
21481
21470
|
},
|
|
21482
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
21483
|
-
capName: "platform-probe",
|
|
21484
|
-
capScope: "system",
|
|
21485
|
-
addonId: null,
|
|
21486
|
-
access: "view"
|
|
21487
|
-
},
|
|
21488
|
-
"platformProbe.getHardwareEncoders": {
|
|
21489
|
-
capName: "platform-probe",
|
|
21490
|
-
capScope: "system",
|
|
21491
|
-
addonId: null,
|
|
21492
|
-
access: "view"
|
|
21493
|
-
},
|
|
21494
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
21495
|
-
capName: "platform-probe",
|
|
21496
|
-
capScope: "system",
|
|
21497
|
-
addonId: null,
|
|
21498
|
-
access: "create"
|
|
21499
|
-
},
|
|
21500
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
21501
|
-
capName: "platform-probe",
|
|
21502
|
-
capScope: "system",
|
|
21503
|
-
addonId: null,
|
|
21504
|
-
access: "create"
|
|
21505
|
-
},
|
|
21506
21471
|
"platformProbe.resolveHwAccel": {
|
|
21507
21472
|
capName: "platform-probe",
|
|
21508
21473
|
capScope: "system",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-export-alexa",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.15",
|
|
4
4
|
"description": "Alexa Smart Home Skill export — hub-side OAuth provider + directive handler. The companion AWS Lambda forwards Alexa directives to this addon's /addon/export-alexa/directive endpoint.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|