@nwire/dead-letter 0.7.0 → 0.7.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.
Files changed (2) hide show
  1. package/README.md +1 -16
  2. package/package.json +5 -3
package/README.md CHANGED
@@ -35,17 +35,7 @@ expect(entries.map((e) => e.actionName)).toContain("flakyAction");
35
35
 
36
36
  ## When to use
37
37
 
38
- Any production deployment — silently dropping retries-exhausted jobs is a production bug. Fits L3 and up.
39
-
40
- ## Standalone use
41
-
42
- For developers using `@nwire/dead-letter` **without the rest of Nwire** — pair it with any TypeScript project, any container, any HTTP framework.
43
-
44
- ```ts
45
- // See the package's main entry (src/) for the standalone surface.
46
- // The exports below work without @nwire/app or @nwire/forge.
47
- import {} from /* ...standalone exports... */ "@nwire/dead-letter";
48
- ```
38
+ Any production deployment — silently dropping retries-exhausted jobs is a production bug.
49
39
 
50
40
  ## Within nwire-app
51
41
 
@@ -59,8 +49,3 @@ const app = createApp({
59
49
  });
60
50
  // Adapter/plugin wiring happens here when applicable.
61
51
  ```
62
-
63
- ## See also
64
-
65
- - [Architecture sketch §05 — Foundation tier](../../architecture-sketch.html#packages)
66
- - Sibling packages: [@nwire/queue](../nwire-queue), [@nwire/queue-bullmq](../nwire-queue-bullmq)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nwire/dead-letter",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "Nwire — DLQ contract + InMemory default. Production adapters: @nwire/dlq-mongo, @nwire/dlq-bullmq. The runtime routes exhausted-retry failures here.",
5
5
  "keywords": [
6
6
  "dead-letter",
@@ -8,9 +8,11 @@
8
8
  "nwire",
9
9
  "reliability"
10
10
  ],
11
+ "license": "MIT",
11
12
  "files": [
12
13
  "dist",
13
- "README.md"
14
+ "README.md",
15
+ "LICENSE"
14
16
  ],
15
17
  "type": "module",
16
18
  "main": "./dist/dlq.js",
@@ -25,7 +27,7 @@
25
27
  "access": "public"
26
28
  },
27
29
  "dependencies": {
28
- "@nwire/envelope": "0.7.0"
30
+ "@nwire/envelope": "0.7.1"
29
31
  },
30
32
  "devDependencies": {
31
33
  "@types/node": "^22.19.9",