@camstack/addon-smtp-nodemailer 1.0.0 → 1.0.2

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.
@@ -12242,7 +12242,7 @@ method(_void(), DeviceExportStatusSchema), method(_void(), array(DeviceKindSchem
12242
12242
  * rebuilds without manual reload.
12243
12243
  *
12244
12244
  * The hub-local builtin `addon-pages-aggregator` (see
12245
- * `@camstack/core/builtins/addon-pages-aggregator`) registers the
12245
+ * `@camstack/system/builtins/addon-pages-aggregator`) registers the
12246
12246
  * provider. Splitting the public aggregator from the raw collection
12247
12247
  * keeps both ends in codegen — there's no hand-written
12248
12248
  * `addon-pages.router.ts` wrapper anymore.
@@ -12425,7 +12425,7 @@ method(_void(), array(WidgetMetadataSchema).readonly());
12425
12425
  * manual reload — same scheme used by `addon-pages`.
12426
12426
  *
12427
12427
  * The hub-local builtin `addon-widgets-aggregator` (see
12428
- * `@camstack/core/builtins/addon-widgets-aggregator`) registers the
12428
+ * `@camstack/system/builtins/addon-widgets-aggregator`) registers the
12429
12429
  * provider. Splitting the public aggregator from the raw collection
12430
12430
  * keeps both ends in codegen — there's no hand-written wrapper.
12431
12431
  */
@@ -15136,7 +15136,7 @@ method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema)
15136
15136
  * clients — they reverse-connect to the hub. Exposing their interfaces
15137
15137
  * via the same surface would leak internal topology with no upside.
15138
15138
  *
15139
- * Implementation in `@camstack/core/builtins/local-network/`.
15139
+ * Implementation in `@camstack/system/builtins/local-network/`.
15140
15140
  */
15141
15141
  /** Coarse classification derived from the interface name + IP range. */
15142
15142
  var InterfaceKindEnum = _enum([
@@ -15683,7 +15683,7 @@ method(_void(), FeatureManifestSchema), method(_void(), HealthStatusSchema), met
15683
15683
  * jitter, and observed/peak bandwidth per device + per client.
15684
15684
  *
15685
15685
  * Implementation lives in the server's `NetworkQualityService` (thin
15686
- * wrapper over the shared `NetworkQualityTracker` from `@camstack/core`).
15686
+ * wrapper over the shared `NetworkQualityTracker` from `@camstack/system`).
15687
15687
  * The provider is registered from `trpc.router.ts` against the existing
15688
15688
  * service instance — no addon owns this state.
15689
15689
  *
@@ -12240,7 +12240,7 @@ method(_void(), DeviceExportStatusSchema), method(_void(), array(DeviceKindSchem
12240
12240
  * rebuilds without manual reload.
12241
12241
  *
12242
12242
  * The hub-local builtin `addon-pages-aggregator` (see
12243
- * `@camstack/core/builtins/addon-pages-aggregator`) registers the
12243
+ * `@camstack/system/builtins/addon-pages-aggregator`) registers the
12244
12244
  * provider. Splitting the public aggregator from the raw collection
12245
12245
  * keeps both ends in codegen — there's no hand-written
12246
12246
  * `addon-pages.router.ts` wrapper anymore.
@@ -12423,7 +12423,7 @@ method(_void(), array(WidgetMetadataSchema).readonly());
12423
12423
  * manual reload — same scheme used by `addon-pages`.
12424
12424
  *
12425
12425
  * The hub-local builtin `addon-widgets-aggregator` (see
12426
- * `@camstack/core/builtins/addon-widgets-aggregator`) registers the
12426
+ * `@camstack/system/builtins/addon-widgets-aggregator`) registers the
12427
12427
  * provider. Splitting the public aggregator from the raw collection
12428
12428
  * keeps both ends in codegen — there's no hand-written wrapper.
12429
12429
  */
@@ -15134,7 +15134,7 @@ method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema)
15134
15134
  * clients — they reverse-connect to the hub. Exposing their interfaces
15135
15135
  * via the same surface would leak internal topology with no upside.
15136
15136
  *
15137
- * Implementation in `@camstack/core/builtins/local-network/`.
15137
+ * Implementation in `@camstack/system/builtins/local-network/`.
15138
15138
  */
15139
15139
  /** Coarse classification derived from the interface name + IP range. */
15140
15140
  var InterfaceKindEnum = _enum([
@@ -15681,7 +15681,7 @@ method(_void(), FeatureManifestSchema), method(_void(), HealthStatusSchema), met
15681
15681
  * jitter, and observed/peak bandwidth per device + per client.
15682
15682
  *
15683
15683
  * Implementation lives in the server's `NetworkQualityService` (thin
15684
- * wrapper over the shared `NetworkQualityTracker` from `@camstack/core`).
15684
+ * wrapper over the shared `NetworkQualityTracker` from `@camstack/system`).
15685
15685
  * The provider is registered from `trpc.router.ts` against the existing
15686
15686
  * service instance — no addon owns this state.
15687
15687
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-smtp-nodemailer",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
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",
@@ -50,7 +50,7 @@
50
50
  "typecheck": "tsc --noEmit"
51
51
  },
52
52
  "peerDependencies": {
53
- "@camstack/types": "^0.1.0"
53
+ "@camstack/types": "*"
54
54
  },
55
55
  "dependencies": {
56
56
  "nodemailer": "^9.0.1",