@marlinjai/mail-contract 0.2.0
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/LICENSE +21 -0
- package/README.md +20 -0
- package/dist/index.d.mts +76753 -0
- package/dist/index.d.ts +76753 -0
- package/dist/index.js +5084 -0
- package/dist/index.mjs +4631 -0
- package/package.json +51 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 marlinjai
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# @marlinjai/mail-contract
|
|
2
|
+
|
|
3
|
+
The version 1 Application Programming Interface (API) contract of the Lumitra Mail service: [zod](https://zod.dev) schemas and TypeScript types for every request, response, error and webhook, the route table, and the webhook signing helpers.
|
|
4
|
+
|
|
5
|
+
The service, [`@marlinjai/mail-sdk`](https://www.npmjs.com/package/@marlinjai/mail-sdk) and the dashboard all import these definitions instead of keeping their own copies, so a shape is defined exactly once. Its only runtime dependency is zod, and it uses no Node.js built-ins, so it runs in Node.js, browsers and edge runtimes.
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pnpm add @marlinjai/mail-contract zod
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Most applications use `@marlinjai/mail-sdk`, which builds on this package. Import the contract directly to validate data at your own boundary, or to verify webhooks without the SDK:
|
|
12
|
+
|
|
13
|
+
- request and response schemas and their types, per resource (workspaces, templates, providers, contacts, mailings, webhooks, unsubscribe)
|
|
14
|
+
- the error codes and error body (`ErrorCodeSchema`, `errorBody`, `statusForError`)
|
|
15
|
+
- the route table (`matchRoute`, `buildPath`, `acceptsIdempotencyKey`)
|
|
16
|
+
- webhook signing and verification (`signWebhook`, `verifyWebhook`): the signature is `v1=<hex>` over `${timestamp}.${rawBody}`, checked in constant time, with a 300 second tolerance
|
|
17
|
+
|
|
18
|
+
## License
|
|
19
|
+
|
|
20
|
+
MIT
|