drizzle-kit 0.22.0-5b09380 → 0.22.0-7a041f3
Sign up to get free protection for your applications and to get access to all the features.
- package/bin.cjs +16533 -8760
- package/index.d.mts +17 -17
- package/index.d.ts +17 -17
- package/package.json +10 -10
- package/payload.d.mts +122 -40
- package/payload.d.ts +122 -40
- package/payload.js +12983 -3660
- package/payload.mjs +12999 -3721
- package/utils.js +23 -2
- package/utils.mjs +23 -2
- package/utils-studio.js +0 -7896
- package/utils-studio.mjs +0 -7931
package/utils.js
CHANGED
@@ -4914,7 +4914,16 @@ var kitInternals = objectType({
|
|
4914
4914
|
objectType({ isDefaultAnExpression: booleanType().optional() }).optional()
|
4915
4915
|
)
|
4916
4916
|
}).optional()
|
4917
|
-
)
|
4917
|
+
).optional(),
|
4918
|
+
indexes: recordType(
|
4919
|
+
stringType(),
|
4920
|
+
objectType({
|
4921
|
+
columns: recordType(
|
4922
|
+
stringType(),
|
4923
|
+
objectType({ isExpression: booleanType().optional() }).optional()
|
4924
|
+
)
|
4925
|
+
}).optional()
|
4926
|
+
).optional()
|
4918
4927
|
}).optional();
|
4919
4928
|
var dialect = literalType("mysql");
|
4920
4929
|
var schemaHash = objectType({
|
@@ -5395,6 +5404,17 @@ var schemaInternalV52 = objectType({
|
|
5395
5404
|
columns: recordType(stringType(), stringType())
|
5396
5405
|
})
|
5397
5406
|
}).strict();
|
5407
|
+
var kitInternals3 = objectType({
|
5408
|
+
indexes: recordType(
|
5409
|
+
stringType(),
|
5410
|
+
objectType({
|
5411
|
+
columns: recordType(
|
5412
|
+
stringType(),
|
5413
|
+
objectType({ isExpression: booleanType().optional() }).optional()
|
5414
|
+
)
|
5415
|
+
}).optional()
|
5416
|
+
).optional()
|
5417
|
+
}).optional();
|
5398
5418
|
var latestVersion = literalType("6");
|
5399
5419
|
var schemaInternal2 = objectType({
|
5400
5420
|
version: latestVersion,
|
@@ -5404,7 +5424,8 @@ var schemaInternal2 = objectType({
|
|
5404
5424
|
_meta: objectType({
|
5405
5425
|
tables: recordType(stringType(), stringType()),
|
5406
5426
|
columns: recordType(stringType(), stringType())
|
5407
|
-
})
|
5427
|
+
}),
|
5428
|
+
internal: kitInternals3
|
5408
5429
|
}).strict();
|
5409
5430
|
var schemaV32 = schemaInternalV32.merge(schemaHash3).strict();
|
5410
5431
|
var schemaV42 = schemaInternalV42.merge(schemaHash3).strict();
|
package/utils.mjs
CHANGED
@@ -4904,7 +4904,16 @@ var kitInternals = objectType({
|
|
4904
4904
|
objectType({ isDefaultAnExpression: booleanType().optional() }).optional()
|
4905
4905
|
)
|
4906
4906
|
}).optional()
|
4907
|
-
)
|
4907
|
+
).optional(),
|
4908
|
+
indexes: recordType(
|
4909
|
+
stringType(),
|
4910
|
+
objectType({
|
4911
|
+
columns: recordType(
|
4912
|
+
stringType(),
|
4913
|
+
objectType({ isExpression: booleanType().optional() }).optional()
|
4914
|
+
)
|
4915
|
+
}).optional()
|
4916
|
+
).optional()
|
4908
4917
|
}).optional();
|
4909
4918
|
var dialect = literalType("mysql");
|
4910
4919
|
var schemaHash = objectType({
|
@@ -5385,6 +5394,17 @@ var schemaInternalV52 = objectType({
|
|
5385
5394
|
columns: recordType(stringType(), stringType())
|
5386
5395
|
})
|
5387
5396
|
}).strict();
|
5397
|
+
var kitInternals3 = objectType({
|
5398
|
+
indexes: recordType(
|
5399
|
+
stringType(),
|
5400
|
+
objectType({
|
5401
|
+
columns: recordType(
|
5402
|
+
stringType(),
|
5403
|
+
objectType({ isExpression: booleanType().optional() }).optional()
|
5404
|
+
)
|
5405
|
+
}).optional()
|
5406
|
+
).optional()
|
5407
|
+
}).optional();
|
5388
5408
|
var latestVersion = literalType("6");
|
5389
5409
|
var schemaInternal2 = objectType({
|
5390
5410
|
version: latestVersion,
|
@@ -5394,7 +5414,8 @@ var schemaInternal2 = objectType({
|
|
5394
5414
|
_meta: objectType({
|
5395
5415
|
tables: recordType(stringType(), stringType()),
|
5396
5416
|
columns: recordType(stringType(), stringType())
|
5397
|
-
})
|
5417
|
+
}),
|
5418
|
+
internal: kitInternals3
|
5398
5419
|
}).strict();
|
5399
5420
|
var schemaV32 = schemaInternalV32.merge(schemaHash3).strict();
|
5400
5421
|
var schemaV42 = schemaInternalV42.merge(schemaHash3).strict();
|