@kernhq/module-mail 0.1.0 → 0.1.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kernhq/module-mail",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Kern mail module: outbound providers (SMTP/Mailgun/SES/Postmark/Resend), MJML templates, delivery queue, bounces & suppressions",
5
5
  "license": "AGPL-3.0-only",
6
6
  "type": "module",
@@ -21,11 +21,13 @@
21
21
  "exports": {
22
22
  "./contract": {
23
23
  "types": "./dist/contract.d.ts",
24
- "import": "./dist/contract.js"
24
+ "import": "./dist/contract.js",
25
+ "default": "./dist/contract.js"
25
26
  },
26
27
  "./server": {
27
28
  "types": "./dist/server/index.d.ts",
28
- "import": "./dist/server/index.js"
29
+ "import": "./dist/server/index.js",
30
+ "default": "./dist/server/index.js"
29
31
  },
30
32
  "./client": {
31
33
  "types": "./src/client/index.ts",
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import { SECRET_PLACEHOLDER } from '../contract.js'
2
+ import { SECRET_PLACEHOLDER } from '@kernhq/module-mail/contract'
3
3
 
4
4
  /**
5
5
  * Workspace email settings.
@@ -1,5 +1,5 @@
1
1
  import { defineClientModule } from '@kernhq/kernel/client'
2
- import { MODULE_ID } from '../contract.js'
2
+ import { MODULE_ID } from '@kernhq/module-mail/contract'
3
3
 
4
4
  /**
5
5
  * Mail's client surface. The module has no navigation of its own — outbound email is configuration,