@camstack/addon-smtp-nodemailer 1.1.15 → 1.1.16
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 +38 -1
- package/dist/smtp.addon.mjs +38 -1
- package/package.json +1 -1
package/dist/smtp.addon.js
CHANGED
|
@@ -14918,7 +14918,17 @@ var AgentAddonConfigSchema = object({
|
|
|
14918
14918
|
});
|
|
14919
14919
|
var AgentPipelineSettingsSchema = object({
|
|
14920
14920
|
addonDefaults: record(string(), AgentAddonConfigSchema).readonly(),
|
|
14921
|
-
maxCameras: number().int().nonnegative().nullable().default(null)
|
|
14921
|
+
maxCameras: number().int().nonnegative().nullable().default(null),
|
|
14922
|
+
/** Per-node detection weight (relative share for the quota balancer). */
|
|
14923
|
+
detectWeight: number().positive().optional(),
|
|
14924
|
+
/** Node is eligible to run the detection pipeline (decode + inference). */
|
|
14925
|
+
detect: boolean().optional(),
|
|
14926
|
+
/** Node is eligible to host decoder sessions. */
|
|
14927
|
+
decode: boolean().optional(),
|
|
14928
|
+
/** Node is eligible to run audio-analyzer sessions. */
|
|
14929
|
+
audio: boolean().optional(),
|
|
14930
|
+
/** Node is eligible to be the ingest / source-owner (serve the restream). */
|
|
14931
|
+
ingest: boolean().optional()
|
|
14922
14932
|
});
|
|
14923
14933
|
var CameraPipelineForAgentSchema = object({
|
|
14924
14934
|
steps: array(PipelineStepInputSchema).readonly(),
|
|
@@ -15224,6 +15234,21 @@ method(object({
|
|
|
15224
15234
|
}), object({ success: literal(true) }), {
|
|
15225
15235
|
kind: "mutation",
|
|
15226
15236
|
auth: "admin"
|
|
15237
|
+
}), method(object({
|
|
15238
|
+
agentNodeId: string(),
|
|
15239
|
+
detectWeight: number().positive().nullable()
|
|
15240
|
+
}), object({ success: literal(true) }), {
|
|
15241
|
+
kind: "mutation",
|
|
15242
|
+
auth: "admin"
|
|
15243
|
+
}), method(object({
|
|
15244
|
+
agentNodeId: string(),
|
|
15245
|
+
detect: boolean().nullable().optional(),
|
|
15246
|
+
decode: boolean().nullable().optional(),
|
|
15247
|
+
audio: boolean().nullable().optional(),
|
|
15248
|
+
ingest: boolean().nullable().optional()
|
|
15249
|
+
}), object({ success: literal(true) }), {
|
|
15250
|
+
kind: "mutation",
|
|
15251
|
+
auth: "admin"
|
|
15227
15252
|
}), method(object({ deviceId: number() }), CameraPipelineSettingsSchema.nullable()), method(object({
|
|
15228
15253
|
deviceId: number(),
|
|
15229
15254
|
addonId: string(),
|
|
@@ -21096,6 +21121,18 @@ Object.freeze({
|
|
|
21096
21121
|
addonId: null,
|
|
21097
21122
|
access: "create"
|
|
21098
21123
|
},
|
|
21124
|
+
"pipelineOrchestrator.setAgentCapabilities": {
|
|
21125
|
+
capName: "pipeline-orchestrator",
|
|
21126
|
+
capScope: "system",
|
|
21127
|
+
addonId: null,
|
|
21128
|
+
access: "create"
|
|
21129
|
+
},
|
|
21130
|
+
"pipelineOrchestrator.setAgentDetectWeight": {
|
|
21131
|
+
capName: "pipeline-orchestrator",
|
|
21132
|
+
capScope: "system",
|
|
21133
|
+
addonId: null,
|
|
21134
|
+
access: "create"
|
|
21135
|
+
},
|
|
21099
21136
|
"pipelineOrchestrator.setAgentMaxCameras": {
|
|
21100
21137
|
capName: "pipeline-orchestrator",
|
|
21101
21138
|
capScope: "system",
|
package/dist/smtp.addon.mjs
CHANGED
|
@@ -14916,7 +14916,17 @@ var AgentAddonConfigSchema = object({
|
|
|
14916
14916
|
});
|
|
14917
14917
|
var AgentPipelineSettingsSchema = object({
|
|
14918
14918
|
addonDefaults: record(string(), AgentAddonConfigSchema).readonly(),
|
|
14919
|
-
maxCameras: number().int().nonnegative().nullable().default(null)
|
|
14919
|
+
maxCameras: number().int().nonnegative().nullable().default(null),
|
|
14920
|
+
/** Per-node detection weight (relative share for the quota balancer). */
|
|
14921
|
+
detectWeight: number().positive().optional(),
|
|
14922
|
+
/** Node is eligible to run the detection pipeline (decode + inference). */
|
|
14923
|
+
detect: boolean().optional(),
|
|
14924
|
+
/** Node is eligible to host decoder sessions. */
|
|
14925
|
+
decode: boolean().optional(),
|
|
14926
|
+
/** Node is eligible to run audio-analyzer sessions. */
|
|
14927
|
+
audio: boolean().optional(),
|
|
14928
|
+
/** Node is eligible to be the ingest / source-owner (serve the restream). */
|
|
14929
|
+
ingest: boolean().optional()
|
|
14920
14930
|
});
|
|
14921
14931
|
var CameraPipelineForAgentSchema = object({
|
|
14922
14932
|
steps: array(PipelineStepInputSchema).readonly(),
|
|
@@ -15222,6 +15232,21 @@ method(object({
|
|
|
15222
15232
|
}), object({ success: literal(true) }), {
|
|
15223
15233
|
kind: "mutation",
|
|
15224
15234
|
auth: "admin"
|
|
15235
|
+
}), method(object({
|
|
15236
|
+
agentNodeId: string(),
|
|
15237
|
+
detectWeight: number().positive().nullable()
|
|
15238
|
+
}), object({ success: literal(true) }), {
|
|
15239
|
+
kind: "mutation",
|
|
15240
|
+
auth: "admin"
|
|
15241
|
+
}), method(object({
|
|
15242
|
+
agentNodeId: string(),
|
|
15243
|
+
detect: boolean().nullable().optional(),
|
|
15244
|
+
decode: boolean().nullable().optional(),
|
|
15245
|
+
audio: boolean().nullable().optional(),
|
|
15246
|
+
ingest: boolean().nullable().optional()
|
|
15247
|
+
}), object({ success: literal(true) }), {
|
|
15248
|
+
kind: "mutation",
|
|
15249
|
+
auth: "admin"
|
|
15225
15250
|
}), method(object({ deviceId: number() }), CameraPipelineSettingsSchema.nullable()), method(object({
|
|
15226
15251
|
deviceId: number(),
|
|
15227
15252
|
addonId: string(),
|
|
@@ -21094,6 +21119,18 @@ Object.freeze({
|
|
|
21094
21119
|
addonId: null,
|
|
21095
21120
|
access: "create"
|
|
21096
21121
|
},
|
|
21122
|
+
"pipelineOrchestrator.setAgentCapabilities": {
|
|
21123
|
+
capName: "pipeline-orchestrator",
|
|
21124
|
+
capScope: "system",
|
|
21125
|
+
addonId: null,
|
|
21126
|
+
access: "create"
|
|
21127
|
+
},
|
|
21128
|
+
"pipelineOrchestrator.setAgentDetectWeight": {
|
|
21129
|
+
capName: "pipeline-orchestrator",
|
|
21130
|
+
capScope: "system",
|
|
21131
|
+
addonId: null,
|
|
21132
|
+
access: "create"
|
|
21133
|
+
},
|
|
21097
21134
|
"pipelineOrchestrator.setAgentMaxCameras": {
|
|
21098
21135
|
capName: "pipeline-orchestrator",
|
|
21099
21136
|
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.16",
|
|
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",
|