@camstack/addon-smtp-nodemailer 1.1.9 → 1.1.10
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 +11 -0
- package/dist/smtp.addon.mjs +11 -0
- package/package.json +1 -1
package/dist/smtp.addon.js
CHANGED
|
@@ -15476,6 +15476,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
15476
15476
|
iconUrl: string().nullable(),
|
|
15477
15477
|
color: string(),
|
|
15478
15478
|
instanceMode: string(),
|
|
15479
|
+
/**
|
|
15480
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
15481
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
15482
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
15483
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
15484
|
+
*/
|
|
15485
|
+
mode: _enum([
|
|
15486
|
+
"standalone",
|
|
15487
|
+
"account",
|
|
15488
|
+
"broker"
|
|
15489
|
+
]),
|
|
15479
15490
|
discoveryMode: string(),
|
|
15480
15491
|
/**
|
|
15481
15492
|
* Which integration-marker cap the addon declared, so the wizard can
|
package/dist/smtp.addon.mjs
CHANGED
|
@@ -15474,6 +15474,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
15474
15474
|
iconUrl: string().nullable(),
|
|
15475
15475
|
color: string(),
|
|
15476
15476
|
instanceMode: string(),
|
|
15477
|
+
/**
|
|
15478
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
15479
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
15480
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
15481
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
15482
|
+
*/
|
|
15483
|
+
mode: _enum([
|
|
15484
|
+
"standalone",
|
|
15485
|
+
"account",
|
|
15486
|
+
"broker"
|
|
15487
|
+
]),
|
|
15477
15488
|
discoveryMode: string(),
|
|
15478
15489
|
/**
|
|
15479
15490
|
* Which integration-marker cap the addon declared, so the wizard can
|
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.10",
|
|
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",
|