@batchactions/distributed 0.0.3 → 0.0.4

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 +5 -1
  2. package/package.json +10 -6
package/README.md CHANGED
@@ -10,10 +10,14 @@ Use this package when one process is not enough and you need multiple workers (L
10
10
  npm install @batchactions/distributed @batchactions/core @batchactions/import
11
11
  ```
12
12
 
13
- You also need a `DistributedStateStore` implementation, for example:
13
+ You also need a `DistributedStateStore` implementation. Choose one:
14
14
 
15
15
  ```bash
16
+ # Option A: Sequelize
16
17
  npm install @batchactions/state-sequelize sequelize
18
+
19
+ # Option B: Prisma (v6 or v7)
20
+ npm install @batchactions/state-prisma
17
21
  ```
18
22
 
19
23
  ## Processing Model
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@batchactions/distributed",
3
- "version": "0.0.3",
4
- "description": "Distributed parallel batch processing for @batchactions/core with fan-out workers",
3
+ "version": "0.0.4",
4
+ "description": "Distributed worker orchestration for TypeScript batch imports with parallel processing, serverless fan-out, and atomic batch claiming",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  ".": {
@@ -28,13 +28,17 @@
28
28
  "format:check": "prettier --check ."
29
29
  },
30
30
  "keywords": [
31
- "batchactions",
32
- "distributed",
33
- "parallel",
31
+ "distributed-processing",
32
+ "distributed-workers",
33
+ "worker-orchestration",
34
34
  "batch-processing",
35
+ "parallel-processing",
35
36
  "serverless",
36
37
  "lambda",
37
- "worker"
38
+ "queue-workers",
39
+ "typescript",
40
+ "nodejs",
41
+ "etl"
38
42
  ],
39
43
  "license": "MIT",
40
44
  "author": "Victor Garcia <vgpastor@ingenierosweb.co>",