@camstack/addon-smtp-nodemailer 1.2.66 → 1.2.67
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 +21 -0
- package/dist/smtp.addon.mjs +21 -0
- package/package.json +1 -1
package/dist/smtp.addon.js
CHANGED
|
@@ -20377,6 +20377,14 @@ var AgentPipelineSettingsSchema = object({
|
|
|
20377
20377
|
/** Node is eligible to be the ingest / source-owner (serve the restream). */
|
|
20378
20378
|
ingest: boolean().optional(),
|
|
20379
20379
|
/**
|
|
20380
|
+
* This node's decode RAM budget, MB. Wins over the cluster
|
|
20381
|
+
* `nodeDecodeBudgetMb`; absent, the runner derives a share of the node's
|
|
20382
|
+
* own RAM unless the operator moved the cluster value (D365).
|
|
20383
|
+
*/
|
|
20384
|
+
decodeBudgetMb: number().int().min(1024).max(65536).optional(),
|
|
20385
|
+
/** This node's live decode-worker cap. Wins over the cluster `maxLiveDecodeWorkers`. */
|
|
20386
|
+
maxLiveDecodeWorkers: number().int().min(1).max(32).optional(),
|
|
20387
|
+
/**
|
|
20380
20388
|
* Operator override for the LAN host a cross-node decoder dials to reach
|
|
20381
20389
|
* THIS node's restream (Cluster UI). Absent → auto-detect: a remote runner
|
|
20382
20390
|
* falls back to its `CAMSTACK_HUB_URL`-derived host (the Moleculer address
|
|
@@ -20838,6 +20846,13 @@ method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
|
|
|
20838
20846
|
}), object({ success: literal(true) }), {
|
|
20839
20847
|
kind: "mutation",
|
|
20840
20848
|
auth: "admin"
|
|
20849
|
+
}), method(object({
|
|
20850
|
+
agentNodeId: string(),
|
|
20851
|
+
decodeBudgetMb: number().int().min(1024).max(65536).nullable().optional(),
|
|
20852
|
+
maxLiveDecodeWorkers: number().int().min(1).max(32).nullable().optional()
|
|
20853
|
+
}), object({ success: literal(true) }), {
|
|
20854
|
+
kind: "mutation",
|
|
20855
|
+
auth: "admin"
|
|
20841
20856
|
}), method(object({
|
|
20842
20857
|
agentNodeId: string(),
|
|
20843
20858
|
reachableHost: string().nullable()
|
|
@@ -33031,6 +33046,12 @@ Object.freeze({
|
|
|
33031
33046
|
addonId: null,
|
|
33032
33047
|
access: "create"
|
|
33033
33048
|
},
|
|
33049
|
+
"pipelineOrchestrator.setAgentDecodeLimits": {
|
|
33050
|
+
capName: "pipeline-orchestrator",
|
|
33051
|
+
capScope: "system",
|
|
33052
|
+
addonId: null,
|
|
33053
|
+
access: "create"
|
|
33054
|
+
},
|
|
33034
33055
|
"pipelineOrchestrator.setAgentDetectWeight": {
|
|
33035
33056
|
capName: "pipeline-orchestrator",
|
|
33036
33057
|
capScope: "system",
|
package/dist/smtp.addon.mjs
CHANGED
|
@@ -20375,6 +20375,14 @@ var AgentPipelineSettingsSchema = object({
|
|
|
20375
20375
|
/** Node is eligible to be the ingest / source-owner (serve the restream). */
|
|
20376
20376
|
ingest: boolean().optional(),
|
|
20377
20377
|
/**
|
|
20378
|
+
* This node's decode RAM budget, MB. Wins over the cluster
|
|
20379
|
+
* `nodeDecodeBudgetMb`; absent, the runner derives a share of the node's
|
|
20380
|
+
* own RAM unless the operator moved the cluster value (D365).
|
|
20381
|
+
*/
|
|
20382
|
+
decodeBudgetMb: number().int().min(1024).max(65536).optional(),
|
|
20383
|
+
/** This node's live decode-worker cap. Wins over the cluster `maxLiveDecodeWorkers`. */
|
|
20384
|
+
maxLiveDecodeWorkers: number().int().min(1).max(32).optional(),
|
|
20385
|
+
/**
|
|
20378
20386
|
* Operator override for the LAN host a cross-node decoder dials to reach
|
|
20379
20387
|
* THIS node's restream (Cluster UI). Absent → auto-detect: a remote runner
|
|
20380
20388
|
* falls back to its `CAMSTACK_HUB_URL`-derived host (the Moleculer address
|
|
@@ -20836,6 +20844,13 @@ method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
|
|
|
20836
20844
|
}), object({ success: literal(true) }), {
|
|
20837
20845
|
kind: "mutation",
|
|
20838
20846
|
auth: "admin"
|
|
20847
|
+
}), method(object({
|
|
20848
|
+
agentNodeId: string(),
|
|
20849
|
+
decodeBudgetMb: number().int().min(1024).max(65536).nullable().optional(),
|
|
20850
|
+
maxLiveDecodeWorkers: number().int().min(1).max(32).nullable().optional()
|
|
20851
|
+
}), object({ success: literal(true) }), {
|
|
20852
|
+
kind: "mutation",
|
|
20853
|
+
auth: "admin"
|
|
20839
20854
|
}), method(object({
|
|
20840
20855
|
agentNodeId: string(),
|
|
20841
20856
|
reachableHost: string().nullable()
|
|
@@ -33029,6 +33044,12 @@ Object.freeze({
|
|
|
33029
33044
|
addonId: null,
|
|
33030
33045
|
access: "create"
|
|
33031
33046
|
},
|
|
33047
|
+
"pipelineOrchestrator.setAgentDecodeLimits": {
|
|
33048
|
+
capName: "pipeline-orchestrator",
|
|
33049
|
+
capScope: "system",
|
|
33050
|
+
addonId: null,
|
|
33051
|
+
access: "create"
|
|
33052
|
+
},
|
|
33032
33053
|
"pipelineOrchestrator.setAgentDetectWeight": {
|
|
33033
33054
|
capName: "pipeline-orchestrator",
|
|
33034
33055
|
capScope: "system",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-smtp-nodemailer",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.67",
|
|
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",
|