drizzle-kit 0.24.0 → 0.24.1-781dea0
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/api.d.mts +10 -0
- package/api.d.ts +10 -0
- package/api.js +159 -107
- package/api.mjs +159 -107
- package/bin.cjs +1018 -478
- package/package.json +3 -3
- package/utils.js +2 -1
- package/utils.mjs +2 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "drizzle-kit",
|
3
|
-
"version": "0.24.
|
3
|
+
"version": "0.24.1-781dea0",
|
4
4
|
"homepage": "https://orm.drizzle.team",
|
5
5
|
"keywords": [
|
6
6
|
"drizzle",
|
@@ -42,7 +42,7 @@
|
|
42
42
|
"publish": "npm publish package.tgz"
|
43
43
|
},
|
44
44
|
"dependencies": {
|
45
|
-
"@drizzle-team/brocli": "^0.
|
45
|
+
"@drizzle-team/brocli": "^0.10.1",
|
46
46
|
"@esbuild-kit/esm-loader": "^2.5.5",
|
47
47
|
"esbuild": "^0.19.7",
|
48
48
|
"esbuild-register": "^3.5.0"
|
@@ -92,7 +92,7 @@
|
|
92
92
|
"hono": "^4.1.5",
|
93
93
|
"json-diff": "1.0.6",
|
94
94
|
"minimatch": "^7.4.3",
|
95
|
-
"mysql2": "
|
95
|
+
"mysql2": "3.3.3",
|
96
96
|
"node-fetch": "^3.3.2",
|
97
97
|
"pg": "^8.11.5",
|
98
98
|
"pluralize": "^8.0.0",
|
package/utils.js
CHANGED
@@ -5264,7 +5264,8 @@ var kitInternals2 = objectType({
|
|
5264
5264
|
objectType({
|
5265
5265
|
isArray: booleanType().optional(),
|
5266
5266
|
dimensions: numberType().optional(),
|
5267
|
-
rawType: stringType().optional()
|
5267
|
+
rawType: stringType().optional(),
|
5268
|
+
isDefaultAnExpression: booleanType().optional()
|
5268
5269
|
}).optional()
|
5269
5270
|
)
|
5270
5271
|
}).optional()
|
package/utils.mjs
CHANGED
@@ -5245,7 +5245,8 @@ var kitInternals2 = objectType({
|
|
5245
5245
|
objectType({
|
5246
5246
|
isArray: booleanType().optional(),
|
5247
5247
|
dimensions: numberType().optional(),
|
5248
|
-
rawType: stringType().optional()
|
5248
|
+
rawType: stringType().optional(),
|
5249
|
+
isDefaultAnExpression: booleanType().optional()
|
5249
5250
|
}).optional()
|
5250
5251
|
)
|
5251
5252
|
}).optional()
|