@forklaunch/implementation-worker-database 0.1.4 → 0.1.6

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.
@@ -1,5 +1,5 @@
1
- export type WorkerOptions = {
2
- retries: number;
3
- interval: number;
1
+ export type DatabaseWorkerOptions = {
2
+ retries: number;
3
+ interval: number;
4
4
  };
5
- //# sourceMappingURL=databaseWorker.types.d.ts.map
5
+ //# sourceMappingURL=databaseWorker.types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"databaseWorker.types.d.ts","sourceRoot":"","sources":["../../types/databaseWorker.types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,GAAG;IAC1B,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC"}
1
+ {"version":3,"file":"databaseWorker.types.d.ts","sourceRoot":"","sources":["../../types/databaseWorker.types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,qBAAqB,GAAG;IAClC,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC"}
@@ -1,2 +1,2 @@
1
1
  export * from './databaseWorker.types';
2
- //# sourceMappingURL=index.d.ts.map
2
+ //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,3 @@
1
- declare const _default: import("vite").UserConfig;
1
+ declare const _default: import('vite').UserConfig;
2
2
  export default _default;
3
- //# sourceMappingURL=vitest.config.d.ts.map
3
+ //# sourceMappingURL=vitest.config.d.ts.map
@@ -1,7 +1,7 @@
1
1
  import { defineConfig } from 'vitest/config';
2
2
  export default defineConfig({
3
- test: {
4
- globals: true,
5
- exclude: ['**/lib/**', '**/node_modules/**']
6
- }
3
+ test: {
4
+ globals: true,
5
+ exclude: ['**/lib/**', '**/node_modules/**']
6
+ }
7
7
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forklaunch/implementation-worker-database",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "Database implementation for forklaunch workers",
5
5
  "homepage": "https://github.com/forklaunch/forklaunch-js#readme",
6
6
  "bugs": {
@@ -38,18 +38,18 @@
38
38
  "lib/**"
39
39
  ],
40
40
  "dependencies": {
41
- "@forklaunch/core": "^0.7.4",
42
- "@mikro-orm/core": "^6.4.13",
41
+ "@forklaunch/core": "^0.8.0",
42
+ "@mikro-orm/core": "^6.4.15",
43
43
  "@sinclair/typebox": "^0.34.33",
44
- "zod": "^3.24.3",
45
- "@forklaunch/interfaces-worker": "0.1.4"
44
+ "zod": "^3.25.32",
45
+ "@forklaunch/interfaces-worker": "0.1.5"
46
46
  },
47
47
  "devDependencies": {
48
48
  "depcheck": "^1.4.7",
49
- "eslint": "^9.25.0",
49
+ "eslint": "^9.27.0",
50
50
  "prettier": "^3.5.3",
51
- "typedoc": "^0.28.3",
52
- "typescript-eslint": "^8.30.1"
51
+ "typedoc": "^0.28.5",
52
+ "typescript-eslint": "^8.33.0"
53
53
  },
54
54
  "scripts": {
55
55
  "build": "tsc && if [ -f eject-package.bash ]; then pnpm package:eject; fi",