@camstack/addon-smtp-nodemailer 1.1.17 → 1.1.19
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 +9 -1
- package/dist/smtp.addon.mjs +9 -1
- package/package.json +1 -1
package/dist/smtp.addon.js
CHANGED
|
@@ -16609,7 +16609,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
16609
16609
|
latestVersion: string().nullable(),
|
|
16610
16610
|
hasUpdate: boolean(),
|
|
16611
16611
|
/** Optional manifest description for the row tooltip. */
|
|
16612
|
-
description: string().optional()
|
|
16612
|
+
description: string().optional(),
|
|
16613
|
+
/**
|
|
16614
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
16615
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
16616
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
16617
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
16618
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
16619
|
+
*/
|
|
16620
|
+
buildId: string().nullable()
|
|
16613
16621
|
});
|
|
16614
16622
|
var LogStreamEntrySchema = object({
|
|
16615
16623
|
timestamp: string(),
|
package/dist/smtp.addon.mjs
CHANGED
|
@@ -16607,7 +16607,15 @@ var FrameworkPackageStatusSchema = object({
|
|
|
16607
16607
|
latestVersion: string().nullable(),
|
|
16608
16608
|
hasUpdate: boolean(),
|
|
16609
16609
|
/** Optional manifest description for the row tooltip. */
|
|
16610
|
-
description: string().optional()
|
|
16610
|
+
description: string().optional(),
|
|
16611
|
+
/**
|
|
16612
|
+
* Content build-id (md5 of the resolved `dist/` tree) of the code the hub
|
|
16613
|
+
* ACTUALLY loaded. Framework packages ship code changes without always
|
|
16614
|
+
* bumping `currentVersion`, so semver alone hides "same version, new code".
|
|
16615
|
+
* `null` when the dist can't be hashed (not installed / empty). The admin-UI
|
|
16616
|
+
* surfaces this so a stale-code hub is visible even at an unchanged version.
|
|
16617
|
+
*/
|
|
16618
|
+
buildId: string().nullable()
|
|
16611
16619
|
});
|
|
16612
16620
|
var LogStreamEntrySchema = object({
|
|
16613
16621
|
timestamp: string(),
|
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.19",
|
|
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",
|