@rvoh/psychic-workers 2.0.0-alpha.2 → 2.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/cjs/src/package-exports/index.js +2 -1
- package/dist/cjs/src/package-exports/types.js +1 -1
- package/dist/esm/src/package-exports/index.js +2 -1
- package/dist/esm/src/package-exports/types.js +1 -1
- package/dist/types/src/package-exports/index.d.ts +2 -1
- package/dist/types/src/package-exports/types.d.ts +1 -1
- package/package.json +5 -5
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
export { default as background, Background } from '../background/index.js';
|
|
2
1
|
export { default as BaseBackgroundedModel } from '../background/BaseBackgroundedModel.js';
|
|
3
2
|
export { default as BaseBackgroundedService } from '../background/BaseBackgroundedService.js';
|
|
4
3
|
export { default as BaseScheduledService } from '../background/BaseScheduledService.js';
|
|
4
|
+
export { default as background, Background } from '../background/index.js';
|
|
5
|
+
export { default as PsychicAppWorkers } from '../psychic-app-workers/index.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export {};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
export { default as background, Background } from '../background/index.js';
|
|
2
1
|
export { default as BaseBackgroundedModel } from '../background/BaseBackgroundedModel.js';
|
|
3
2
|
export { default as BaseBackgroundedService } from '../background/BaseBackgroundedService.js';
|
|
4
3
|
export { default as BaseScheduledService } from '../background/BaseScheduledService.js';
|
|
4
|
+
export { default as background, Background } from '../background/index.js';
|
|
5
|
+
export { default as PsychicAppWorkers } from '../psychic-app-workers/index.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export {};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
export { default as background, Background } from '../background/index.js';
|
|
2
1
|
export { default as BaseBackgroundedModel } from '../background/BaseBackgroundedModel.js';
|
|
3
2
|
export { default as BaseBackgroundedService } from '../background/BaseBackgroundedService.js';
|
|
4
3
|
export { default as BaseScheduledService } from '../background/BaseScheduledService.js';
|
|
4
|
+
export { default as background, Background } from '../background/index.js';
|
|
5
|
+
export { default as PsychicAppWorkers } from '../psychic-app-workers/index.js';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { type BullMQNativeWorkerOptions, type PsychicBackgroundNativeBullMQOptions, type PsychicBackgroundSimpleOptions, type PsychicBackgroundWorkstreamOptions, type QueueOptionsWithConnectionInstance, type RedisOrRedisClusterConnection, type TransitionalPsychicBackgroundSimpleOptions, } from '../psychic-app-workers/index.js';
|
|
2
2
|
export { type BackgroundJobConfig, type BackgroundQueuePriority } from '../types/background.js';
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@rvoh/psychic-workers",
|
|
4
4
|
"description": "Background job system for Psychic applications",
|
|
5
|
-
"version": "2.0.0
|
|
5
|
+
"version": "2.0.0",
|
|
6
6
|
"author": "RVO Health",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -52,16 +52,16 @@
|
|
|
52
52
|
"dev-worker": "NODE_ENV=development WORKER_COUNT=1 tsx ./test-app/worker.ts"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@rvoh/dream": "^2.0.0
|
|
56
|
-
"@rvoh/psychic": "^2.0.0
|
|
55
|
+
"@rvoh/dream": "^2.0.0",
|
|
56
|
+
"@rvoh/psychic": "^2.0.0",
|
|
57
57
|
"bullmq": "*",
|
|
58
58
|
"ioredis": "*"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@eslint/js": "=9.0.0",
|
|
62
|
-
"@rvoh/dream": "^2.0.0
|
|
62
|
+
"@rvoh/dream": "^2.0.0",
|
|
63
63
|
"@rvoh/dream-spec-helpers": "^1.2.1",
|
|
64
|
-
"@rvoh/psychic": "^2.0.0
|
|
64
|
+
"@rvoh/psychic": "^2.0.0",
|
|
65
65
|
"@rvoh/psychic-spec-helpers": "^1.1.3",
|
|
66
66
|
"@socket.io/redis-adapter": "^8.3.0",
|
|
67
67
|
"@socket.io/redis-emitter": "^5.1.0",
|