@camstack/addon-smtp-nodemailer 1.1.20 → 1.1.21
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 +45 -3
- package/dist/smtp.addon.mjs +45 -3
- package/package.json +1 -1
package/dist/smtp.addon.js
CHANGED
|
@@ -4665,7 +4665,7 @@ function _instanceof(cls, params = {}) {
|
|
|
4665
4665
|
return inst;
|
|
4666
4666
|
}
|
|
4667
4667
|
//#endregion
|
|
4668
|
-
//#region ../types/dist/sleep-
|
|
4668
|
+
//#region ../types/dist/sleep-Baang_XW.mjs
|
|
4669
4669
|
var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
4670
4670
|
EventCategory["SystemBoot"] = "system.boot";
|
|
4671
4671
|
EventCategory["SystemAddonsReady"] = "system.addons-ready";
|
|
@@ -10701,7 +10701,15 @@ method(_void(), array(PipelineEngineChoiceSchema)), method(_void(), PipelineEngi
|
|
|
10701
10701
|
image: _instanceof(Uint8Array).optional(),
|
|
10702
10702
|
referenceImage: string().optional(),
|
|
10703
10703
|
deviceId: number().optional(),
|
|
10704
|
-
sessionId: string().optional()
|
|
10704
|
+
sessionId: string().optional(),
|
|
10705
|
+
/**
|
|
10706
|
+
* Execution plane. 'full' (default) runs the whole tree — benchmark,
|
|
10707
|
+
* reference-image, and detail-subtree calls. 'frame' is the live
|
|
10708
|
+
* per-frame dispatch: ONLY root-plane steps run; crop children
|
|
10709
|
+
* (inputClasses ≠ null) are skipped and served per-track via
|
|
10710
|
+
* pipelineRunner.runDetailSubtree (two-plane design).
|
|
10711
|
+
*/
|
|
10712
|
+
plane: _enum(["full", "frame"]).optional()
|
|
10705
10713
|
}), PipelineRunResultBridge, { kind: "mutation" }), method(object({
|
|
10706
10714
|
engine: PipelineEngineChoiceSchema.optional(),
|
|
10707
10715
|
steps: array(PipelineStepInputSchema).min(1),
|
|
@@ -10844,6 +10852,28 @@ var NativeCropResultSchema = object({
|
|
|
10844
10852
|
width: number().int().positive(),
|
|
10845
10853
|
height: number().int().positive()
|
|
10846
10854
|
});
|
|
10855
|
+
/** Parent detection context passed to `runDetailSubtree` — the crop's
|
|
10856
|
+
* originating detection, in FRAME-space coordinates. Reuses
|
|
10857
|
+
* `NativeCropBboxSchema`'s `{x,y,w,h}` shape (same numeric fields; here
|
|
10858
|
+
* the coordinates are frame-space rather than getNativeCrop's
|
|
10859
|
+
* normalized [0,1] convention). */
|
|
10860
|
+
var DetailParentSchema = object({
|
|
10861
|
+
bbox: NativeCropBboxSchema,
|
|
10862
|
+
className: string()
|
|
10863
|
+
});
|
|
10864
|
+
/** One child-step result from `runDetailSubtree` — an embedding, label,
|
|
10865
|
+
* or refined detection produced by running the crop-subtree on a
|
|
10866
|
+
* single tracked detection. */
|
|
10867
|
+
var DetailResultSchema = object({
|
|
10868
|
+
stepId: string(),
|
|
10869
|
+
className: string(),
|
|
10870
|
+
score: number(),
|
|
10871
|
+
/** FRAME-space bbox (already mapped back from crop space). */
|
|
10872
|
+
bbox: NativeCropBboxSchema.optional(),
|
|
10873
|
+
embedding: string().optional(),
|
|
10874
|
+
label: string().optional(),
|
|
10875
|
+
alignedCropJpeg: string().optional()
|
|
10876
|
+
});
|
|
10847
10877
|
/**
|
|
10848
10878
|
* Per-camera tunable ranges + defaults. Single source of truth used
|
|
10849
10879
|
* by both the Zod data schema (validation + default fallback) and
|
|
@@ -11104,7 +11134,13 @@ method(RunnerCameraConfigSchema, object({ success: literal(true) }), { kind: "mu
|
|
|
11104
11134
|
handle: FrameHandleSchema,
|
|
11105
11135
|
bbox: NativeCropBboxSchema,
|
|
11106
11136
|
maxWidth: number().int().positive().optional()
|
|
11107
|
-
}), NativeCropResultSchema.nullable())
|
|
11137
|
+
}), NativeCropResultSchema.nullable()), method(object({
|
|
11138
|
+
deviceId: number(),
|
|
11139
|
+
frameHandle: FrameHandleSchema.optional(),
|
|
11140
|
+
cropJpeg: string().optional(),
|
|
11141
|
+
parent: DetailParentSchema,
|
|
11142
|
+
steps: array(string()).optional()
|
|
11143
|
+
}), object({ details: array(DetailResultSchema) }).nullable(), { kind: "mutation" });
|
|
11108
11144
|
object({
|
|
11109
11145
|
detected: boolean(),
|
|
11110
11146
|
/** Ms epoch of the last detected-true observation. Null if never detected. */
|
|
@@ -21934,6 +21970,12 @@ Object.freeze({
|
|
|
21934
21970
|
addonId: null,
|
|
21935
21971
|
access: "create"
|
|
21936
21972
|
},
|
|
21973
|
+
"pipelineRunner.runDetailSubtree": {
|
|
21974
|
+
capName: "pipeline-runner",
|
|
21975
|
+
capScope: "system",
|
|
21976
|
+
addonId: null,
|
|
21977
|
+
access: "create"
|
|
21978
|
+
},
|
|
21937
21979
|
"plateGallery.correctPlateText": {
|
|
21938
21980
|
capName: "plate-gallery",
|
|
21939
21981
|
capScope: "system",
|
package/dist/smtp.addon.mjs
CHANGED
|
@@ -4663,7 +4663,7 @@ function _instanceof(cls, params = {}) {
|
|
|
4663
4663
|
return inst;
|
|
4664
4664
|
}
|
|
4665
4665
|
//#endregion
|
|
4666
|
-
//#region ../types/dist/sleep-
|
|
4666
|
+
//#region ../types/dist/sleep-Baang_XW.mjs
|
|
4667
4667
|
var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
4668
4668
|
EventCategory["SystemBoot"] = "system.boot";
|
|
4669
4669
|
EventCategory["SystemAddonsReady"] = "system.addons-ready";
|
|
@@ -10699,7 +10699,15 @@ method(_void(), array(PipelineEngineChoiceSchema)), method(_void(), PipelineEngi
|
|
|
10699
10699
|
image: _instanceof(Uint8Array).optional(),
|
|
10700
10700
|
referenceImage: string().optional(),
|
|
10701
10701
|
deviceId: number().optional(),
|
|
10702
|
-
sessionId: string().optional()
|
|
10702
|
+
sessionId: string().optional(),
|
|
10703
|
+
/**
|
|
10704
|
+
* Execution plane. 'full' (default) runs the whole tree — benchmark,
|
|
10705
|
+
* reference-image, and detail-subtree calls. 'frame' is the live
|
|
10706
|
+
* per-frame dispatch: ONLY root-plane steps run; crop children
|
|
10707
|
+
* (inputClasses ≠ null) are skipped and served per-track via
|
|
10708
|
+
* pipelineRunner.runDetailSubtree (two-plane design).
|
|
10709
|
+
*/
|
|
10710
|
+
plane: _enum(["full", "frame"]).optional()
|
|
10703
10711
|
}), PipelineRunResultBridge, { kind: "mutation" }), method(object({
|
|
10704
10712
|
engine: PipelineEngineChoiceSchema.optional(),
|
|
10705
10713
|
steps: array(PipelineStepInputSchema).min(1),
|
|
@@ -10842,6 +10850,28 @@ var NativeCropResultSchema = object({
|
|
|
10842
10850
|
width: number().int().positive(),
|
|
10843
10851
|
height: number().int().positive()
|
|
10844
10852
|
});
|
|
10853
|
+
/** Parent detection context passed to `runDetailSubtree` — the crop's
|
|
10854
|
+
* originating detection, in FRAME-space coordinates. Reuses
|
|
10855
|
+
* `NativeCropBboxSchema`'s `{x,y,w,h}` shape (same numeric fields; here
|
|
10856
|
+
* the coordinates are frame-space rather than getNativeCrop's
|
|
10857
|
+
* normalized [0,1] convention). */
|
|
10858
|
+
var DetailParentSchema = object({
|
|
10859
|
+
bbox: NativeCropBboxSchema,
|
|
10860
|
+
className: string()
|
|
10861
|
+
});
|
|
10862
|
+
/** One child-step result from `runDetailSubtree` — an embedding, label,
|
|
10863
|
+
* or refined detection produced by running the crop-subtree on a
|
|
10864
|
+
* single tracked detection. */
|
|
10865
|
+
var DetailResultSchema = object({
|
|
10866
|
+
stepId: string(),
|
|
10867
|
+
className: string(),
|
|
10868
|
+
score: number(),
|
|
10869
|
+
/** FRAME-space bbox (already mapped back from crop space). */
|
|
10870
|
+
bbox: NativeCropBboxSchema.optional(),
|
|
10871
|
+
embedding: string().optional(),
|
|
10872
|
+
label: string().optional(),
|
|
10873
|
+
alignedCropJpeg: string().optional()
|
|
10874
|
+
});
|
|
10845
10875
|
/**
|
|
10846
10876
|
* Per-camera tunable ranges + defaults. Single source of truth used
|
|
10847
10877
|
* by both the Zod data schema (validation + default fallback) and
|
|
@@ -11102,7 +11132,13 @@ method(RunnerCameraConfigSchema, object({ success: literal(true) }), { kind: "mu
|
|
|
11102
11132
|
handle: FrameHandleSchema,
|
|
11103
11133
|
bbox: NativeCropBboxSchema,
|
|
11104
11134
|
maxWidth: number().int().positive().optional()
|
|
11105
|
-
}), NativeCropResultSchema.nullable())
|
|
11135
|
+
}), NativeCropResultSchema.nullable()), method(object({
|
|
11136
|
+
deviceId: number(),
|
|
11137
|
+
frameHandle: FrameHandleSchema.optional(),
|
|
11138
|
+
cropJpeg: string().optional(),
|
|
11139
|
+
parent: DetailParentSchema,
|
|
11140
|
+
steps: array(string()).optional()
|
|
11141
|
+
}), object({ details: array(DetailResultSchema) }).nullable(), { kind: "mutation" });
|
|
11106
11142
|
object({
|
|
11107
11143
|
detected: boolean(),
|
|
11108
11144
|
/** Ms epoch of the last detected-true observation. Null if never detected. */
|
|
@@ -21932,6 +21968,12 @@ Object.freeze({
|
|
|
21932
21968
|
addonId: null,
|
|
21933
21969
|
access: "create"
|
|
21934
21970
|
},
|
|
21971
|
+
"pipelineRunner.runDetailSubtree": {
|
|
21972
|
+
capName: "pipeline-runner",
|
|
21973
|
+
capScope: "system",
|
|
21974
|
+
addonId: null,
|
|
21975
|
+
access: "create"
|
|
21976
|
+
},
|
|
21935
21977
|
"plateGallery.correctPlateText": {
|
|
21936
21978
|
capName: "plate-gallery",
|
|
21937
21979
|
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.21",
|
|
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",
|