@camstack/addon-smtp-nodemailer 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.
- package/dist/smtp.addon.js +7 -42
- package/dist/smtp.addon.mjs +7 -42
- package/package.json +1 -1
package/dist/smtp.addon.js
CHANGED
|
@@ -14993,7 +14993,10 @@ var AgentLoadSummarySchema = object({
|
|
|
14993
14993
|
online: boolean(),
|
|
14994
14994
|
load: RunnerLocalLoadSchema,
|
|
14995
14995
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
14996
|
-
score: number()
|
|
14996
|
+
score: number(),
|
|
14997
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
14998
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
14999
|
+
decodeHwaccel: string().nullable()
|
|
14997
15000
|
});
|
|
14998
15001
|
/**
|
|
14999
15002
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -17542,7 +17545,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
17542
17545
|
"libx264",
|
|
17543
17546
|
"libx265"
|
|
17544
17547
|
]);
|
|
17545
|
-
|
|
17548
|
+
object({
|
|
17546
17549
|
encoders: array(object({
|
|
17547
17550
|
encoder: HardwareEncoderIdSchema,
|
|
17548
17551
|
codec: _enum(["H264", "H265"]),
|
|
@@ -17561,15 +17564,7 @@ var HardwareEncodersSchema = object({
|
|
|
17561
17564
|
defaultH265: HardwareEncoderIdSchema,
|
|
17562
17565
|
probedAt: number()
|
|
17563
17566
|
});
|
|
17564
|
-
|
|
17565
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
17566
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
17567
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
17568
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
17569
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
17570
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
17571
|
-
*/
|
|
17572
|
-
var HardwareDecodeAccelsSchema = object({
|
|
17567
|
+
object({
|
|
17573
17568
|
methods: array(string()).readonly(),
|
|
17574
17569
|
probedAt: number()
|
|
17575
17570
|
});
|
|
@@ -17632,13 +17627,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
17632
17627
|
format: ModelFormatSchema,
|
|
17633
17628
|
reason: string()
|
|
17634
17629
|
});
|
|
17635
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
17636
|
-
kind: "mutation",
|
|
17637
|
-
auth: "admin"
|
|
17638
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
17639
|
-
kind: "mutation",
|
|
17640
|
-
auth: "admin"
|
|
17641
|
-
});
|
|
17630
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
17642
17631
|
var PtzPresetSchema = object({
|
|
17643
17632
|
id: string(),
|
|
17644
17633
|
name: string()
|
|
@@ -21263,30 +21252,6 @@ Object.freeze({
|
|
|
21263
21252
|
addonId: null,
|
|
21264
21253
|
access: "view"
|
|
21265
21254
|
},
|
|
21266
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
21267
|
-
capName: "platform-probe",
|
|
21268
|
-
capScope: "system",
|
|
21269
|
-
addonId: null,
|
|
21270
|
-
access: "view"
|
|
21271
|
-
},
|
|
21272
|
-
"platformProbe.getHardwareEncoders": {
|
|
21273
|
-
capName: "platform-probe",
|
|
21274
|
-
capScope: "system",
|
|
21275
|
-
addonId: null,
|
|
21276
|
-
access: "view"
|
|
21277
|
-
},
|
|
21278
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
21279
|
-
capName: "platform-probe",
|
|
21280
|
-
capScope: "system",
|
|
21281
|
-
addonId: null,
|
|
21282
|
-
access: "create"
|
|
21283
|
-
},
|
|
21284
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
21285
|
-
capName: "platform-probe",
|
|
21286
|
-
capScope: "system",
|
|
21287
|
-
addonId: null,
|
|
21288
|
-
access: "create"
|
|
21289
|
-
},
|
|
21290
21255
|
"platformProbe.resolveHwAccel": {
|
|
21291
21256
|
capName: "platform-probe",
|
|
21292
21257
|
capScope: "system",
|
package/dist/smtp.addon.mjs
CHANGED
|
@@ -14991,7 +14991,10 @@ var AgentLoadSummarySchema = object({
|
|
|
14991
14991
|
online: boolean(),
|
|
14992
14992
|
load: RunnerLocalLoadSchema,
|
|
14993
14993
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
14994
|
-
score: number()
|
|
14994
|
+
score: number(),
|
|
14995
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
14996
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
14997
|
+
decodeHwaccel: string().nullable()
|
|
14995
14998
|
});
|
|
14996
14999
|
/**
|
|
14997
15000
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -17540,7 +17543,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
17540
17543
|
"libx264",
|
|
17541
17544
|
"libx265"
|
|
17542
17545
|
]);
|
|
17543
|
-
|
|
17546
|
+
object({
|
|
17544
17547
|
encoders: array(object({
|
|
17545
17548
|
encoder: HardwareEncoderIdSchema,
|
|
17546
17549
|
codec: _enum(["H264", "H265"]),
|
|
@@ -17559,15 +17562,7 @@ var HardwareEncodersSchema = object({
|
|
|
17559
17562
|
defaultH265: HardwareEncoderIdSchema,
|
|
17560
17563
|
probedAt: number()
|
|
17561
17564
|
});
|
|
17562
|
-
|
|
17563
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
17564
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
17565
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
17566
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
17567
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
17568
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
17569
|
-
*/
|
|
17570
|
-
var HardwareDecodeAccelsSchema = object({
|
|
17565
|
+
object({
|
|
17571
17566
|
methods: array(string()).readonly(),
|
|
17572
17567
|
probedAt: number()
|
|
17573
17568
|
});
|
|
@@ -17630,13 +17625,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
17630
17625
|
format: ModelFormatSchema,
|
|
17631
17626
|
reason: string()
|
|
17632
17627
|
});
|
|
17633
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
17634
|
-
kind: "mutation",
|
|
17635
|
-
auth: "admin"
|
|
17636
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
17637
|
-
kind: "mutation",
|
|
17638
|
-
auth: "admin"
|
|
17639
|
-
});
|
|
17628
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
17640
17629
|
var PtzPresetSchema = object({
|
|
17641
17630
|
id: string(),
|
|
17642
17631
|
name: string()
|
|
@@ -21261,30 +21250,6 @@ Object.freeze({
|
|
|
21261
21250
|
addonId: null,
|
|
21262
21251
|
access: "view"
|
|
21263
21252
|
},
|
|
21264
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
21265
|
-
capName: "platform-probe",
|
|
21266
|
-
capScope: "system",
|
|
21267
|
-
addonId: null,
|
|
21268
|
-
access: "view"
|
|
21269
|
-
},
|
|
21270
|
-
"platformProbe.getHardwareEncoders": {
|
|
21271
|
-
capName: "platform-probe",
|
|
21272
|
-
capScope: "system",
|
|
21273
|
-
addonId: null,
|
|
21274
|
-
access: "view"
|
|
21275
|
-
},
|
|
21276
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
21277
|
-
capName: "platform-probe",
|
|
21278
|
-
capScope: "system",
|
|
21279
|
-
addonId: null,
|
|
21280
|
-
access: "create"
|
|
21281
|
-
},
|
|
21282
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
21283
|
-
capName: "platform-probe",
|
|
21284
|
-
capScope: "system",
|
|
21285
|
-
addonId: null,
|
|
21286
|
-
access: "create"
|
|
21287
|
-
},
|
|
21288
21253
|
"platformProbe.resolveHwAccel": {
|
|
21289
21254
|
capName: "platform-probe",
|
|
21290
21255
|
capScope: "system",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-smtp-nodemailer",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.15",
|
|
4
4
|
"description": "SMTP email provider addon for CamStack — wraps `nodemailer` and registers a `smtp-provider` cap collection entry. Used by magic-link login + notifier addons.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|