@exulu/backend 2.3.0 → 3.0.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/dist/{chunk-2242AI5L.js → chunk-KFL7HIID.js} +3 -1
- package/dist/{convert-exulu-tools-to-ai-sdk-tools-C7L4PY6P.js → convert-exulu-tools-to-ai-sdk-tools-YY2WIMMJ.js} +1 -1
- package/dist/index.cjs +6955 -5146
- package/dist/index.d.cts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +6894 -5106
- package/ee/queues/decorator.ts +11 -0
- package/ee/queues/prune-job-results.test.ts +41 -0
- package/ee/queues/prune-job-results.ts +5 -4
- package/ee/schemas.ts +96 -1
- package/ee/workers.flow.test.ts +236 -0
- package/ee/workers.ts +409 -168
- package/package.json +6 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exulu/backend",
|
|
3
3
|
"author": "Qventu Bv.",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "3.0.0",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"private": false,
|
|
7
7
|
"publishConfig": {
|
|
@@ -66,9 +66,11 @@
|
|
|
66
66
|
"@types/express": "^5.0.1",
|
|
67
67
|
"@types/graphql-type-json": "^0.3.5",
|
|
68
68
|
"@types/jest": "^29.5.14",
|
|
69
|
+
"@types/mailparser": "^3.4.6",
|
|
69
70
|
"@types/multer": "^2.1.0",
|
|
70
71
|
"@types/node": "^22.14.0",
|
|
71
72
|
"@types/pg": "^8.15.1",
|
|
73
|
+
"@types/safe-regex": "^1.1.6",
|
|
72
74
|
"@types/supertest": "^6.0.2",
|
|
73
75
|
"@typescript-eslint/eslint-plugin": "^8.20.0",
|
|
74
76
|
"@typescript-eslint/parser": "^8.20.0",
|
|
@@ -120,6 +122,7 @@
|
|
|
120
122
|
"bash-tool": "^1.3.16",
|
|
121
123
|
"bcryptjs": "^3.0.2",
|
|
122
124
|
"body-parser": "^2.2.0",
|
|
125
|
+
"busboy": "^1.6.0",
|
|
123
126
|
"bullmq": "^5.48.1",
|
|
124
127
|
"bullmq-otel": "^1.0.1",
|
|
125
128
|
"class-validator": "^0.14.2",
|
|
@@ -143,6 +146,7 @@
|
|
|
143
146
|
"just-bash": "^2.14.0",
|
|
144
147
|
"knex": "^3.1.0",
|
|
145
148
|
"link": "^2.1.1",
|
|
149
|
+
"mailparser": "^3.9.14",
|
|
146
150
|
"mammoth": "^1.11.0",
|
|
147
151
|
"multer": "^2.1.1",
|
|
148
152
|
"natural": "^8.1.0",
|
|
@@ -155,6 +159,7 @@
|
|
|
155
159
|
"pgvector": "^0.2.0",
|
|
156
160
|
"redis": "^4.7.0",
|
|
157
161
|
"reflect-metadata": "^0.2.2",
|
|
162
|
+
"safe-regex": "^2.1.1",
|
|
158
163
|
"tiktoken": "^1.0.21",
|
|
159
164
|
"turndown": "^7.2.2",
|
|
160
165
|
"uuid": "^11.1.0",
|