hysteria-orm 11.0.3 → 11.0.4
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/lib/cli.js +19 -19
- package/lib/cli.js.map +1 -1
- package/lib/index.cjs +27 -27
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +46 -28
- package/lib/index.d.ts +46 -28
- package/lib/index.js +27 -27
- package/lib/index.js.map +1 -1
- package/package.json +12 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hysteria-orm",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Yet another orm for Javascript and Typescript no one asked for",
|
|
6
6
|
"type": "module",
|
|
@@ -93,7 +93,8 @@
|
|
|
93
93
|
"tsup": "^8.5.1",
|
|
94
94
|
"tsx": "^4.21.0",
|
|
95
95
|
"typeorm": "^0.3.28",
|
|
96
|
-
"typescript": "^6.0.2"
|
|
96
|
+
"typescript": "^6.0.2",
|
|
97
|
+
"zod": "^4.4.3"
|
|
97
98
|
},
|
|
98
99
|
"dependencies": {
|
|
99
100
|
"commander": "^14.0.3",
|
|
@@ -104,12 +105,13 @@
|
|
|
104
105
|
"esbuild": "^0.28.0",
|
|
105
106
|
"ioredis": "^5.10.1",
|
|
106
107
|
"mongodb": "^7.1.1",
|
|
107
|
-
"oracledb": "^6.10.0",
|
|
108
108
|
"mssql": "^12.2.1",
|
|
109
109
|
"mysql2": "^3.20.0",
|
|
110
|
+
"oracledb": "^6.10.0",
|
|
110
111
|
"pg": "^8.20.0",
|
|
111
112
|
"sqlite3": "^6.0.1",
|
|
112
|
-
"typescript": "^6.0.2"
|
|
113
|
+
"typescript": "^6.0.2",
|
|
114
|
+
"zod": "^4.4.3"
|
|
113
115
|
},
|
|
114
116
|
"peerDependenciesMeta": {
|
|
115
117
|
"esbuild": {
|
|
@@ -121,15 +123,15 @@
|
|
|
121
123
|
"mongodb": {
|
|
122
124
|
"optional": true
|
|
123
125
|
},
|
|
124
|
-
"oracledb": {
|
|
125
|
-
"optional": true
|
|
126
|
-
},
|
|
127
126
|
"mssql": {
|
|
128
127
|
"optional": true
|
|
129
128
|
},
|
|
130
129
|
"mysql2": {
|
|
131
130
|
"optional": true
|
|
132
131
|
},
|
|
132
|
+
"oracledb": {
|
|
133
|
+
"optional": true
|
|
134
|
+
},
|
|
133
135
|
"pg": {
|
|
134
136
|
"optional": true
|
|
135
137
|
},
|
|
@@ -138,6 +140,9 @@
|
|
|
138
140
|
},
|
|
139
141
|
"typescript": {
|
|
140
142
|
"optional": true
|
|
143
|
+
},
|
|
144
|
+
"zod": {
|
|
145
|
+
"optional": true
|
|
141
146
|
}
|
|
142
147
|
},
|
|
143
148
|
"keywords": [
|