@kernhq/module-mail 0.2.0 → 0.2.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.2.0",
3
+ "version": "0.2.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",
@@ -5,7 +5,7 @@ export { createMailClient, type MailApi } from './api.js'
5
5
  * Mail's client surface is a typed API client and nothing else.
6
6
  *
7
7
  * There is no client module here: the app composes its own (`registry.ts` registers modules defined
8
- * in `app/src/lib/modules/*/client.ts`), because navigation labels have to go through the app's
8
+ * under `app/src/lib/modules`), because navigation labels have to go through the app's
9
9
  * message catalogue and its screens are app routes. A `defineClientModule` in this package would
10
10
  * never be registered and its `component` never rendered.
11
11
  */