drizzle-kit 0.20.17-c50cacb → 0.20.17-cab52ad
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/bin.cjs +249 -243
- package/package.json +1 -1
- package/payload.js +342 -342
- package/payload.mjs +342 -342
- package/utils-studio.js +6 -9
- package/utils-studio.mjs +6 -9
- package/utils.js +5 -8
- package/utils.mjs +5 -8
package/utils-studio.js
CHANGED
|
@@ -573,7 +573,7 @@ var init_global = __esm({
|
|
|
573
573
|
}
|
|
574
574
|
});
|
|
575
575
|
|
|
576
|
-
// node_modules/.pnpm/zod@3.23.
|
|
576
|
+
// node_modules/.pnpm/zod@3.23.5/node_modules/zod/lib/index.mjs
|
|
577
577
|
function getErrorMap() {
|
|
578
578
|
return overrideErrorMap;
|
|
579
579
|
}
|
|
@@ -744,7 +744,7 @@ function createZodEnum(values, params) {
|
|
|
744
744
|
}
|
|
745
745
|
var util, objectUtil, ZodParsedType, getParsedType, ZodIssueCode, ZodError, errorMap, overrideErrorMap, makeIssue, ParseStatus, INVALID, DIRTY, OK, isAborted, isDirty, isValid, isAsync, errorUtil, _ZodEnum_cache, _ZodNativeEnum_cache, ParseInputLazyPath, handleResult, ZodType, cuidRegex, cuid2Regex, ulidRegex, uuidRegex, nanoidRegex, durationRegex, emailRegex, _emojiRegex, emojiRegex, ipv4Regex, ipv6Regex, base64Regex, dateRegexSource, dateRegex, ZodString, ZodNumber, ZodBigInt, ZodBoolean, ZodDate, ZodSymbol, ZodUndefined, ZodNull, ZodAny, ZodUnknown, ZodNever, ZodVoid, ZodArray, ZodObject, ZodUnion, getDiscriminator, ZodDiscriminatedUnion, ZodIntersection, ZodTuple, ZodRecord, ZodMap, ZodSet, ZodFunction, ZodLazy, ZodLiteral, ZodEnum, ZodNativeEnum, ZodPromise, ZodEffects, ZodOptional, ZodNullable, ZodDefault, ZodCatch, ZodNaN, BRAND, ZodBranded, ZodPipeline, ZodReadonly, late, ZodFirstPartyTypeKind, stringType, numberType, nanType, bigIntType, booleanType, dateType, symbolType, undefinedType, nullType, anyType, unknownType, neverType, voidType, arrayType, objectType, strictObjectType, unionType, discriminatedUnionType, intersectionType, tupleType, recordType, mapType, setType, functionType, lazyType, literalType, enumType, nativeEnumType, promiseType, effectsType, optionalType, nullableType, preprocessType, pipelineType;
|
|
746
746
|
var init_lib = __esm({
|
|
747
|
-
"node_modules/.pnpm/zod@3.23.
|
|
747
|
+
"node_modules/.pnpm/zod@3.23.5/node_modules/zod/lib/index.mjs"() {
|
|
748
748
|
(function(util2) {
|
|
749
749
|
util2.assertEqual = (val) => val;
|
|
750
750
|
function assertIs(_arg) {
|
|
@@ -4240,13 +4240,10 @@ var init_lib = __esm({
|
|
|
4240
4240
|
ZodReadonly = class extends ZodType {
|
|
4241
4241
|
_parse(input) {
|
|
4242
4242
|
const result = this._def.innerType._parse(input);
|
|
4243
|
-
|
|
4244
|
-
|
|
4245
|
-
|
|
4246
|
-
|
|
4247
|
-
return data;
|
|
4248
|
-
};
|
|
4249
|
-
return isAsync(result) ? result.then((data) => freeze(data)) : freeze(result);
|
|
4243
|
+
if (isValid(result)) {
|
|
4244
|
+
result.value = Object.freeze(result.value);
|
|
4245
|
+
}
|
|
4246
|
+
return result;
|
|
4250
4247
|
}
|
|
4251
4248
|
unwrap() {
|
|
4252
4249
|
return this._def.innerType;
|
package/utils-studio.mjs
CHANGED
|
@@ -574,7 +574,7 @@ var init_global = __esm({
|
|
|
574
574
|
}
|
|
575
575
|
});
|
|
576
576
|
|
|
577
|
-
// node_modules/.pnpm/zod@3.23.
|
|
577
|
+
// node_modules/.pnpm/zod@3.23.5/node_modules/zod/lib/index.mjs
|
|
578
578
|
function getErrorMap() {
|
|
579
579
|
return overrideErrorMap;
|
|
580
580
|
}
|
|
@@ -745,7 +745,7 @@ function createZodEnum(values, params) {
|
|
|
745
745
|
}
|
|
746
746
|
var util, objectUtil, ZodParsedType, getParsedType, ZodIssueCode, ZodError, errorMap, overrideErrorMap, makeIssue, ParseStatus, INVALID, DIRTY, OK, isAborted, isDirty, isValid, isAsync, errorUtil, _ZodEnum_cache, _ZodNativeEnum_cache, ParseInputLazyPath, handleResult, ZodType, cuidRegex, cuid2Regex, ulidRegex, uuidRegex, nanoidRegex, durationRegex, emailRegex, _emojiRegex, emojiRegex, ipv4Regex, ipv6Regex, base64Regex, dateRegexSource, dateRegex, ZodString, ZodNumber, ZodBigInt, ZodBoolean, ZodDate, ZodSymbol, ZodUndefined, ZodNull, ZodAny, ZodUnknown, ZodNever, ZodVoid, ZodArray, ZodObject, ZodUnion, getDiscriminator, ZodDiscriminatedUnion, ZodIntersection, ZodTuple, ZodRecord, ZodMap, ZodSet, ZodFunction, ZodLazy, ZodLiteral, ZodEnum, ZodNativeEnum, ZodPromise, ZodEffects, ZodOptional, ZodNullable, ZodDefault, ZodCatch, ZodNaN, BRAND, ZodBranded, ZodPipeline, ZodReadonly, late, ZodFirstPartyTypeKind, stringType, numberType, nanType, bigIntType, booleanType, dateType, symbolType, undefinedType, nullType, anyType, unknownType, neverType, voidType, arrayType, objectType, strictObjectType, unionType, discriminatedUnionType, intersectionType, tupleType, recordType, mapType, setType, functionType, lazyType, literalType, enumType, nativeEnumType, promiseType, effectsType, optionalType, nullableType, preprocessType, pipelineType;
|
|
747
747
|
var init_lib = __esm({
|
|
748
|
-
"node_modules/.pnpm/zod@3.23.
|
|
748
|
+
"node_modules/.pnpm/zod@3.23.5/node_modules/zod/lib/index.mjs"() {
|
|
749
749
|
(function(util2) {
|
|
750
750
|
util2.assertEqual = (val) => val;
|
|
751
751
|
function assertIs(_arg) {
|
|
@@ -4241,13 +4241,10 @@ var init_lib = __esm({
|
|
|
4241
4241
|
ZodReadonly = class extends ZodType {
|
|
4242
4242
|
_parse(input) {
|
|
4243
4243
|
const result = this._def.innerType._parse(input);
|
|
4244
|
-
|
|
4245
|
-
|
|
4246
|
-
|
|
4247
|
-
|
|
4248
|
-
return data;
|
|
4249
|
-
};
|
|
4250
|
-
return isAsync(result) ? result.then((data) => freeze(data)) : freeze(result);
|
|
4244
|
+
if (isValid(result)) {
|
|
4245
|
+
result.value = Object.freeze(result.value);
|
|
4246
|
+
}
|
|
4247
|
+
return result;
|
|
4251
4248
|
}
|
|
4252
4249
|
unwrap() {
|
|
4253
4250
|
return this._def.innerType;
|
package/utils.js
CHANGED
|
@@ -1079,7 +1079,7 @@ var info = (msg, greyMsg = "") => {
|
|
|
1079
1079
|
var originUUID = "00000000-0000-0000-0000-000000000000";
|
|
1080
1080
|
var snapshotVersion = "6";
|
|
1081
1081
|
|
|
1082
|
-
// node_modules/.pnpm/zod@3.23.
|
|
1082
|
+
// node_modules/.pnpm/zod@3.23.5/node_modules/zod/lib/index.mjs
|
|
1083
1083
|
var util;
|
|
1084
1084
|
(function(util2) {
|
|
1085
1085
|
util2.assertEqual = (val) => val;
|
|
@@ -4749,13 +4749,10 @@ var ZodPipeline = class _ZodPipeline extends ZodType {
|
|
|
4749
4749
|
var ZodReadonly = class extends ZodType {
|
|
4750
4750
|
_parse(input) {
|
|
4751
4751
|
const result = this._def.innerType._parse(input);
|
|
4752
|
-
|
|
4753
|
-
|
|
4754
|
-
|
|
4755
|
-
|
|
4756
|
-
return data;
|
|
4757
|
-
};
|
|
4758
|
-
return isAsync(result) ? result.then((data) => freeze(data)) : freeze(result);
|
|
4752
|
+
if (isValid(result)) {
|
|
4753
|
+
result.value = Object.freeze(result.value);
|
|
4754
|
+
}
|
|
4755
|
+
return result;
|
|
4759
4756
|
}
|
|
4760
4757
|
unwrap() {
|
|
4761
4758
|
return this._def.innerType;
|
package/utils.mjs
CHANGED
|
@@ -1070,7 +1070,7 @@ var info = (msg, greyMsg = "") => {
|
|
|
1070
1070
|
var originUUID = "00000000-0000-0000-0000-000000000000";
|
|
1071
1071
|
var snapshotVersion = "6";
|
|
1072
1072
|
|
|
1073
|
-
// node_modules/.pnpm/zod@3.23.
|
|
1073
|
+
// node_modules/.pnpm/zod@3.23.5/node_modules/zod/lib/index.mjs
|
|
1074
1074
|
var util;
|
|
1075
1075
|
(function(util2) {
|
|
1076
1076
|
util2.assertEqual = (val) => val;
|
|
@@ -4740,13 +4740,10 @@ var ZodPipeline = class _ZodPipeline extends ZodType {
|
|
|
4740
4740
|
var ZodReadonly = class extends ZodType {
|
|
4741
4741
|
_parse(input) {
|
|
4742
4742
|
const result = this._def.innerType._parse(input);
|
|
4743
|
-
|
|
4744
|
-
|
|
4745
|
-
|
|
4746
|
-
|
|
4747
|
-
return data;
|
|
4748
|
-
};
|
|
4749
|
-
return isAsync(result) ? result.then((data) => freeze(data)) : freeze(result);
|
|
4743
|
+
if (isValid(result)) {
|
|
4744
|
+
result.value = Object.freeze(result.value);
|
|
4745
|
+
}
|
|
4746
|
+
return result;
|
|
4750
4747
|
}
|
|
4751
4748
|
unwrap() {
|
|
4752
4749
|
return this._def.innerType;
|