@digilogiclabs/platform-core 1.16.0 → 1.17.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/auth.d.mts +26 -5
- package/dist/auth.d.ts +26 -5
- package/dist/auth.js +17 -11
- package/dist/auth.js.map +1 -1
- package/dist/auth.mjs +17 -11
- package/dist/auth.mjs.map +1 -1
- package/dist/migrate.js +0 -0
- package/package.json +11 -11
package/dist/migrate.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digilogiclabs/platform-core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.17.0",
|
|
4
4
|
"description": "Vendor-agnostic infrastructure abstraction layer for DLL Platform",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"platform",
|
|
@@ -61,6 +61,15 @@
|
|
|
61
61
|
"dist",
|
|
62
62
|
"README.md"
|
|
63
63
|
],
|
|
64
|
+
"scripts": {
|
|
65
|
+
"build": "tsup",
|
|
66
|
+
"dev": "tsup --watch",
|
|
67
|
+
"type-check": "tsc --noEmit",
|
|
68
|
+
"test": "node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run",
|
|
69
|
+
"test:ci": "node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run --exclude tests/rag.test.ts",
|
|
70
|
+
"test:watch": "vitest",
|
|
71
|
+
"benchmark": "tsx benchmarks/benchmark.ts"
|
|
72
|
+
},
|
|
64
73
|
"dependencies": {
|
|
65
74
|
"zod": "^4.1.0"
|
|
66
75
|
},
|
|
@@ -195,14 +204,5 @@
|
|
|
195
204
|
"pg": {
|
|
196
205
|
"optional": true
|
|
197
206
|
}
|
|
198
|
-
},
|
|
199
|
-
"scripts": {
|
|
200
|
-
"build": "tsup",
|
|
201
|
-
"dev": "tsup --watch",
|
|
202
|
-
"type-check": "tsc --noEmit",
|
|
203
|
-
"test": "node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run",
|
|
204
|
-
"test:ci": "node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run --exclude tests/rag.test.ts",
|
|
205
|
-
"test:watch": "vitest",
|
|
206
|
-
"benchmark": "tsx benchmarks/benchmark.ts"
|
|
207
207
|
}
|
|
208
|
-
}
|
|
208
|
+
}
|