@zenstackhq/orm 3.6.4 → 3.7.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/common-types.cjs +23 -0
- package/dist/common-types.cjs.map +1 -0
- package/dist/common-types.d.cts +25 -0
- package/dist/common-types.d.mts +25 -0
- package/dist/common-types.mjs +17 -0
- package/dist/common-types.mjs.map +1 -0
- package/dist/index.cjs +408 -111
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +364 -69
- package/dist/index.d.mts +366 -71
- package/dist/index.mjs +534 -239
- package/dist/index.mjs.map +1 -1
- package/package.json +21 -10
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@zenstackhq/orm",
|
|
3
3
|
"displayName": "ZenStack ORM",
|
|
4
4
|
"description": "ZenStack ORM",
|
|
5
|
-
"version": "3.
|
|
5
|
+
"version": "3.7.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "ZenStack Team",
|
|
@@ -89,6 +89,16 @@
|
|
|
89
89
|
"default": "./dist/helpers.cjs"
|
|
90
90
|
}
|
|
91
91
|
},
|
|
92
|
+
"./common-types": {
|
|
93
|
+
"import": {
|
|
94
|
+
"types": "./dist/common-types.d.mts",
|
|
95
|
+
"default": "./dist/common-types.mjs"
|
|
96
|
+
},
|
|
97
|
+
"require": {
|
|
98
|
+
"types": "./dist/common-types.d.cts",
|
|
99
|
+
"default": "./dist/common-types.cjs"
|
|
100
|
+
}
|
|
101
|
+
},
|
|
92
102
|
"./package.json": {
|
|
93
103
|
"import": "./package.json",
|
|
94
104
|
"require": "./package.json"
|
|
@@ -99,7 +109,7 @@
|
|
|
99
109
|
"cuid": "^3.0.0",
|
|
100
110
|
"decimal.js": "^10.4.3",
|
|
101
111
|
"json-stable-stringify": "^1.3.0",
|
|
102
|
-
"kysely": "~0.
|
|
112
|
+
"kysely": "~0.29.0",
|
|
103
113
|
"nanoid": "^5.0.9",
|
|
104
114
|
"postgres-array": "^3.0.4",
|
|
105
115
|
"toposort": "^2.0.2",
|
|
@@ -107,9 +117,9 @@
|
|
|
107
117
|
"ulid": "^3.0.0",
|
|
108
118
|
"uuid": "^11.0.5",
|
|
109
119
|
"zod-validation-error": "^4.0.1",
|
|
110
|
-
"@zenstackhq/common-helpers": "3.
|
|
111
|
-
"@zenstackhq/schema": "3.
|
|
112
|
-
"@zenstackhq/zod": "3.
|
|
120
|
+
"@zenstackhq/common-helpers": "3.7.0",
|
|
121
|
+
"@zenstackhq/schema": "3.7.0",
|
|
122
|
+
"@zenstackhq/zod": "3.7.0"
|
|
113
123
|
},
|
|
114
124
|
"peerDependencies": {
|
|
115
125
|
"better-sqlite3": "^12.5.0",
|
|
@@ -139,16 +149,17 @@
|
|
|
139
149
|
"@types/toposort": "^2.0.7",
|
|
140
150
|
"tsx": "^4.19.2",
|
|
141
151
|
"zod": "^4.1.0",
|
|
142
|
-
"@zenstackhq/
|
|
143
|
-
"@zenstackhq/
|
|
144
|
-
"@zenstackhq/
|
|
145
|
-
"@zenstackhq/vitest-config": "3.
|
|
152
|
+
"@zenstackhq/eslint-config": "3.7.0",
|
|
153
|
+
"@zenstackhq/tsdown-config": "3.7.0",
|
|
154
|
+
"@zenstackhq/typescript-config": "3.7.0",
|
|
155
|
+
"@zenstackhq/vitest-config": "3.7.0"
|
|
146
156
|
},
|
|
147
157
|
"funding": "https://github.com/sponsors/zenstackhq",
|
|
148
158
|
"scripts": {
|
|
149
159
|
"build": "tsc --noEmit && tsdown",
|
|
150
160
|
"watch": "tsdown --watch",
|
|
151
161
|
"lint": "eslint src --ext ts",
|
|
152
|
-
"pack": "pnpm pack"
|
|
162
|
+
"pack": "pnpm pack",
|
|
163
|
+
"test:generate": "tsx ../../scripts/test-generate.ts . --generate-models"
|
|
153
164
|
}
|
|
154
165
|
}
|