@batchactions/state-sequelize 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.
- package/README.md +4 -0
- package/package.json +12 -6
package/README.md
CHANGED
|
@@ -67,6 +67,10 @@ await importer.start(async (record) => {
|
|
|
67
67
|
- `@batchactions/core` >= 0.0.1
|
|
68
68
|
- `sequelize` ^6.0.0
|
|
69
69
|
|
|
70
|
+
## Alternatives
|
|
71
|
+
|
|
72
|
+
If you prefer Prisma over Sequelize, use [`@batchactions/state-prisma`](../state-prisma/README.md) which implements the same `StateStore` and `DistributedStateStore` interfaces with Prisma v6/v7.
|
|
73
|
+
|
|
70
74
|
## Links
|
|
71
75
|
|
|
72
76
|
- Repository: https://github.com/vgpastor/batchactions/tree/main/packages/state-sequelize
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@batchactions/state-sequelize",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Sequelize
|
|
3
|
+
"version": "0.0.4",
|
|
4
|
+
"description": "Sequelize persistence adapter for batch jobs and distributed workers with state storage, atomic claims, and job recovery",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
@@ -28,12 +28,18 @@
|
|
|
28
28
|
"format:check": "prettier --check ."
|
|
29
29
|
},
|
|
30
30
|
"keywords": [
|
|
31
|
-
"batchactions",
|
|
32
31
|
"sequelize",
|
|
33
32
|
"state-store",
|
|
34
|
-
"distributed",
|
|
35
|
-
"persistence",
|
|
36
|
-
"
|
|
33
|
+
"distributed-state",
|
|
34
|
+
"job-persistence",
|
|
35
|
+
"batch-processing",
|
|
36
|
+
"distributed-workers",
|
|
37
|
+
"sql",
|
|
38
|
+
"mysql",
|
|
39
|
+
"postgresql",
|
|
40
|
+
"sqlite",
|
|
41
|
+
"typescript",
|
|
42
|
+
"nodejs"
|
|
37
43
|
],
|
|
38
44
|
"license": "MIT",
|
|
39
45
|
"author": "Victor Garcia <vgpastor@ingenierosweb.co>",
|