drizzle-kit 0.20.17-c347d7b → 0.20.17-d1b2821
Sign up to get free protection for your applications and to get access to all the features.
- package/bin.cjs +14976 -16094
- package/cli/commands/migrate.d.ts +39 -39
- package/cli/commands/mysqlIntrospect.d.ts +8 -8
- package/cli/commands/pgIntrospect.d.ts +7 -7
- package/cli/commands/sqliteIntrospect.d.ts +12 -12
- package/cli/commands/utils.d.ts +1 -123
- package/cli/connections.d.ts +2 -7
- package/cli/validations/cli.d.ts +51 -51
- package/cli/validations/common.d.ts +32 -32
- package/cli/validations/mysql.d.ts +4 -4
- package/cli/validations/pg.d.ts +4 -4
- package/cli/views.d.ts +0 -6
- package/index.d.mts +3 -5
- package/index.d.ts +3 -5
- package/package.json +2 -2
- package/payload.js +430 -1096
- package/payload.mjs +233 -899
- package/schemaValidator.d.ts +215 -215
- package/serializer/mysqlSchema.d.ts +890 -890
- package/serializer/pgSchema.d.ts +734 -734
- package/serializer/sqliteSchema.d.ts +457 -457
- package/serializer/studio.d.ts +1 -3
- package/snapshotsDiffer.d.ts +314 -314
- package/utils-studio.js +837 -945
- package/utils-studio.mjs +810 -918
- package/utils.js +214 -839
- package/utils.mjs +189 -814
- package/cli/validations/studio.d.ts +0 -92
package/payload.js
CHANGED
@@ -34,7 +34,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
34
34
|
));
|
35
35
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
36
36
|
|
37
|
-
// node_modules/.pnpm/chalk@5.
|
37
|
+
// node_modules/.pnpm/chalk@5.2.0/node_modules/chalk/source/vendor/ansi-styles/index.js
|
38
38
|
function assembleStyles() {
|
39
39
|
const codes = /* @__PURE__ */ new Map();
|
40
40
|
for (const [groupName, group] of Object.entries(styles)) {
|
@@ -151,7 +151,7 @@ function assembleStyles() {
|
|
151
151
|
}
|
152
152
|
var ANSI_BACKGROUND_OFFSET, wrapAnsi16, wrapAnsi256, wrapAnsi16m, styles, modifierNames, foregroundColorNames, backgroundColorNames, colorNames, ansiStyles, ansi_styles_default;
|
153
153
|
var init_ansi_styles = __esm({
|
154
|
-
"node_modules/.pnpm/chalk@5.
|
154
|
+
"node_modules/.pnpm/chalk@5.2.0/node_modules/chalk/source/vendor/ansi-styles/index.js"() {
|
155
155
|
ANSI_BACKGROUND_OFFSET = 10;
|
156
156
|
wrapAnsi16 = (offset = 0) => (code) => `\x1B[${code + offset}m`;
|
157
157
|
wrapAnsi256 = (offset = 0) => (code) => `\x1B[${38 + offset};5;${code}m`;
|
@@ -225,7 +225,7 @@ var init_ansi_styles = __esm({
|
|
225
225
|
}
|
226
226
|
});
|
227
227
|
|
228
|
-
// node_modules/.pnpm/chalk@5.
|
228
|
+
// node_modules/.pnpm/chalk@5.2.0/node_modules/chalk/source/vendor/supports-color/index.js
|
229
229
|
function hasFlag(flag, argv = globalThis.Deno ? globalThis.Deno.args : import_node_process.default.argv) {
|
230
230
|
const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
|
231
231
|
const position = argv.indexOf(prefix + flag);
|
@@ -289,7 +289,7 @@ function _supportsColor(haveStream, { streamIsTTY, sniffFlags = true } = {}) {
|
|
289
289
|
return 1;
|
290
290
|
}
|
291
291
|
if ("CI" in env) {
|
292
|
-
if ("GITHUB_ACTIONS" in env
|
292
|
+
if ("GITHUB_ACTIONS" in env) {
|
293
293
|
return 3;
|
294
294
|
}
|
295
295
|
if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI", "BUILDKITE", "DRONE"].some((sign) => sign in env) || env.CI_NAME === "codeship") {
|
@@ -337,7 +337,7 @@ function createSupportsColor(stream, options = {}) {
|
|
337
337
|
}
|
338
338
|
var import_node_process, import_node_os, import_node_tty, env, flagForceColor, supportsColor, supports_color_default;
|
339
339
|
var init_supports_color = __esm({
|
340
|
-
"node_modules/.pnpm/chalk@5.
|
340
|
+
"node_modules/.pnpm/chalk@5.2.0/node_modules/chalk/source/vendor/supports-color/index.js"() {
|
341
341
|
import_node_process = __toESM(require("node:process"), 1);
|
342
342
|
import_node_os = __toESM(require("node:os"), 1);
|
343
343
|
import_node_tty = __toESM(require("node:tty"), 1);
|
@@ -355,7 +355,7 @@ var init_supports_color = __esm({
|
|
355
355
|
}
|
356
356
|
});
|
357
357
|
|
358
|
-
// node_modules/.pnpm/chalk@5.
|
358
|
+
// node_modules/.pnpm/chalk@5.2.0/node_modules/chalk/source/utilities.js
|
359
359
|
function stringReplaceAll(string, substring, replacer) {
|
360
360
|
let index4 = string.indexOf(substring);
|
361
361
|
if (index4 === -1) {
|
@@ -385,20 +385,21 @@ function stringEncaseCRLFWithFirstIndex(string, prefix, postfix, index4) {
|
|
385
385
|
return returnValue;
|
386
386
|
}
|
387
387
|
var init_utilities = __esm({
|
388
|
-
"node_modules/.pnpm/chalk@5.
|
388
|
+
"node_modules/.pnpm/chalk@5.2.0/node_modules/chalk/source/utilities.js"() {
|
389
389
|
}
|
390
390
|
});
|
391
391
|
|
392
|
-
// node_modules/.pnpm/chalk@5.
|
392
|
+
// node_modules/.pnpm/chalk@5.2.0/node_modules/chalk/source/index.js
|
393
393
|
function createChalk(options) {
|
394
394
|
return chalkFactory(options);
|
395
395
|
}
|
396
396
|
var stdoutColor, stderrColor, GENERATOR, STYLER, IS_EMPTY, levelMapping, styles2, applyOptions, chalkFactory, getModelAnsi, usedModels, proto, createStyler, createBuilder, applyStyle, chalk, chalkStderr, source_default;
|
397
397
|
var init_source = __esm({
|
398
|
-
"node_modules/.pnpm/chalk@5.
|
398
|
+
"node_modules/.pnpm/chalk@5.2.0/node_modules/chalk/source/index.js"() {
|
399
399
|
init_ansi_styles();
|
400
400
|
init_supports_color();
|
401
401
|
init_utilities();
|
402
|
+
init_ansi_styles();
|
402
403
|
({ stdout: stdoutColor, stderr: stderrColor } = supports_color_default);
|
403
404
|
GENERATOR = Symbol("GENERATOR");
|
404
405
|
STYLER = Symbol("STYLER");
|
@@ -546,10 +547,10 @@ var init_source = __esm({
|
|
546
547
|
|
547
548
|
// node_modules/.pnpm/hanji@0.0.5/node_modules/hanji/readline.js
|
548
549
|
var require_readline = __commonJS({
|
549
|
-
"node_modules/.pnpm/hanji@0.0.5/node_modules/hanji/readline.js"(
|
550
|
+
"node_modules/.pnpm/hanji@0.0.5/node_modules/hanji/readline.js"(exports) {
|
550
551
|
"use strict";
|
551
|
-
Object.defineProperty(
|
552
|
-
|
552
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
553
|
+
exports.prepareReadLine = void 0;
|
553
554
|
var prepareReadLine = () => {
|
554
555
|
const stdin = process.stdin;
|
555
556
|
const stdout = process.stdout;
|
@@ -565,13 +566,13 @@ var require_readline = __commonJS({
|
|
565
566
|
closable: rl
|
566
567
|
};
|
567
568
|
};
|
568
|
-
|
569
|
+
exports.prepareReadLine = prepareReadLine;
|
569
570
|
}
|
570
571
|
});
|
571
572
|
|
572
573
|
// node_modules/.pnpm/sisteransi@1.0.5/node_modules/sisteransi/src/index.js
|
573
574
|
var require_src = __commonJS({
|
574
|
-
"node_modules/.pnpm/sisteransi@1.0.5/node_modules/sisteransi/src/index.js"(
|
575
|
+
"node_modules/.pnpm/sisteransi@1.0.5/node_modules/sisteransi/src/index.js"(exports, module2) {
|
575
576
|
"use strict";
|
576
577
|
var ESC = "\x1B";
|
577
578
|
var CSI = `${ESC}[`;
|
@@ -632,10 +633,10 @@ var require_src = __commonJS({
|
|
632
633
|
|
633
634
|
// node_modules/.pnpm/hanji@0.0.5/node_modules/hanji/utils.js
|
634
635
|
var require_utils = __commonJS({
|
635
|
-
"node_modules/.pnpm/hanji@0.0.5/node_modules/hanji/utils.js"(
|
636
|
+
"node_modules/.pnpm/hanji@0.0.5/node_modules/hanji/utils.js"(exports) {
|
636
637
|
"use strict";
|
637
|
-
Object.defineProperty(
|
638
|
-
|
638
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
639
|
+
exports.clear = void 0;
|
639
640
|
var sisteransi_1 = require_src();
|
640
641
|
var strip = (str) => {
|
641
642
|
const pattern = [
|
@@ -656,13 +657,13 @@ var require_utils = __commonJS({
|
|
656
657
|
}
|
657
658
|
return sisteransi_1.erase.lines(rows);
|
658
659
|
};
|
659
|
-
|
660
|
+
exports.clear = clear;
|
660
661
|
}
|
661
662
|
});
|
662
663
|
|
663
664
|
// node_modules/.pnpm/lodash.throttle@4.1.1/node_modules/lodash.throttle/index.js
|
664
665
|
var require_lodash = __commonJS({
|
665
|
-
"node_modules/.pnpm/lodash.throttle@4.1.1/node_modules/lodash.throttle/index.js"(
|
666
|
+
"node_modules/.pnpm/lodash.throttle@4.1.1/node_modules/lodash.throttle/index.js"(exports, module2) {
|
666
667
|
var FUNC_ERROR_TEXT = "Expected a function";
|
667
668
|
var NAN = 0 / 0;
|
668
669
|
var symbolTag = "[object Symbol]";
|
@@ -810,9 +811,9 @@ var require_lodash = __commonJS({
|
|
810
811
|
|
811
812
|
// node_modules/.pnpm/hanji@0.0.5/node_modules/hanji/index.js
|
812
813
|
var require_hanji = __commonJS({
|
813
|
-
"node_modules/.pnpm/hanji@0.0.5/node_modules/hanji/index.js"(
|
814
|
+
"node_modules/.pnpm/hanji@0.0.5/node_modules/hanji/index.js"(exports) {
|
814
815
|
"use strict";
|
815
|
-
var __awaiter =
|
816
|
+
var __awaiter = exports && exports.__awaiter || function(thisArg, _arguments, P, generator) {
|
816
817
|
function adopt(value) {
|
817
818
|
return value instanceof P ? value : new P(function(resolve) {
|
818
819
|
resolve(value);
|
@@ -839,11 +840,11 @@ var require_hanji = __commonJS({
|
|
839
840
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
840
841
|
});
|
841
842
|
};
|
842
|
-
var __importDefault =
|
843
|
+
var __importDefault = exports && exports.__importDefault || function(mod) {
|
843
844
|
return mod && mod.__esModule ? mod : { "default": mod };
|
844
845
|
};
|
845
|
-
Object.defineProperty(
|
846
|
-
|
846
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
847
|
+
exports.onTerminate = exports.renderWithTask = exports.render = exports.TaskTerminal = exports.TaskView = exports.Terminal = exports.deferred = exports.SelectState = exports.Prompt = void 0;
|
847
848
|
var readline_1 = require_readline();
|
848
849
|
var sisteransi_1 = require_src();
|
849
850
|
var utils_1 = require_utils();
|
@@ -878,7 +879,7 @@ var require_hanji = __commonJS({
|
|
878
879
|
this.inputCallbacks.forEach((it) => it(str, key));
|
879
880
|
}
|
880
881
|
};
|
881
|
-
|
882
|
+
exports.Prompt = Prompt3;
|
882
883
|
var SelectState3 = class {
|
883
884
|
constructor(items) {
|
884
885
|
this.items = items;
|
@@ -906,7 +907,7 @@ var require_hanji = __commonJS({
|
|
906
907
|
return false;
|
907
908
|
}
|
908
909
|
};
|
909
|
-
|
910
|
+
exports.SelectState = SelectState3;
|
910
911
|
var deferred = () => {
|
911
912
|
let resolve;
|
912
913
|
let reject;
|
@@ -920,7 +921,7 @@ var require_hanji = __commonJS({
|
|
920
921
|
promise
|
921
922
|
};
|
922
923
|
};
|
923
|
-
|
924
|
+
exports.deferred = deferred;
|
924
925
|
var Terminal = class {
|
925
926
|
constructor(view, stdin, stdout, closable) {
|
926
927
|
this.view = view;
|
@@ -965,7 +966,7 @@ var require_hanji = __commonJS({
|
|
965
966
|
};
|
966
967
|
this.stdin.on("keypress", keypress);
|
967
968
|
this.view.attach(this);
|
968
|
-
const { resolve, promise } = (0,
|
969
|
+
const { resolve, promise } = (0, exports.deferred)();
|
969
970
|
this.resolve = resolve;
|
970
971
|
this.promise = promise;
|
971
972
|
this.renderFunc = (0, lodash_throttle_1.default)((str) => {
|
@@ -996,7 +997,7 @@ var require_hanji = __commonJS({
|
|
996
997
|
this.renderFunc(`${clearPrefix}${string}`);
|
997
998
|
}
|
998
999
|
};
|
999
|
-
|
1000
|
+
exports.Terminal = Terminal;
|
1000
1001
|
var TaskView2 = class {
|
1001
1002
|
constructor() {
|
1002
1003
|
this.attachCallbacks = [];
|
@@ -1021,7 +1022,7 @@ var require_hanji = __commonJS({
|
|
1021
1022
|
}
|
1022
1023
|
}
|
1023
1024
|
};
|
1024
|
-
|
1025
|
+
exports.TaskView = TaskView2;
|
1025
1026
|
var TaskTerminal = class {
|
1026
1027
|
constructor(view, stdout) {
|
1027
1028
|
this.view = view;
|
@@ -1042,7 +1043,7 @@ var require_hanji = __commonJS({
|
|
1042
1043
|
this.stdout.write(`${clearPrefix}${string}`);
|
1043
1044
|
}
|
1044
1045
|
};
|
1045
|
-
|
1046
|
+
exports.TaskTerminal = TaskTerminal;
|
1046
1047
|
function render6(view) {
|
1047
1048
|
const { stdin, stdout, closable } = (0, readline_1.prepareReadLine)();
|
1048
1049
|
if (view instanceof Prompt3) {
|
@@ -1055,7 +1056,7 @@ var require_hanji = __commonJS({
|
|
1055
1056
|
closable.close();
|
1056
1057
|
return;
|
1057
1058
|
}
|
1058
|
-
|
1059
|
+
exports.render = render6;
|
1059
1060
|
function renderWithTask2(view, task) {
|
1060
1061
|
return __awaiter(this, void 0, void 0, function* () {
|
1061
1062
|
const terminal = new TaskTerminal(view, process.stdout);
|
@@ -1065,12 +1066,12 @@ var require_hanji = __commonJS({
|
|
1065
1066
|
return result;
|
1066
1067
|
});
|
1067
1068
|
}
|
1068
|
-
|
1069
|
+
exports.renderWithTask = renderWithTask2;
|
1069
1070
|
var terminateHandler;
|
1070
1071
|
function onTerminate(callback) {
|
1071
1072
|
terminateHandler = callback;
|
1072
1073
|
}
|
1073
|
-
|
1074
|
+
exports.onTerminate = onTerminate;
|
1074
1075
|
}
|
1075
1076
|
});
|
1076
1077
|
|
@@ -1109,12 +1110,11 @@ var init_global = __esm({
|
|
1109
1110
|
}
|
1110
1111
|
});
|
1111
1112
|
|
1112
|
-
// node_modules/.pnpm/zod@3.
|
1113
|
+
// node_modules/.pnpm/zod@3.20.2/node_modules/zod/lib/index.mjs
|
1113
1114
|
function getErrorMap() {
|
1114
1115
|
return overrideErrorMap;
|
1115
1116
|
}
|
1116
1117
|
function addIssueToContext(ctx, issueData) {
|
1117
|
-
const overrideMap = getErrorMap();
|
1118
1118
|
const issue = makeIssue({
|
1119
1119
|
issueData,
|
1120
1120
|
data: ctx.data,
|
@@ -1122,29 +1122,13 @@ function addIssueToContext(ctx, issueData) {
|
|
1122
1122
|
errorMaps: [
|
1123
1123
|
ctx.common.contextualErrorMap,
|
1124
1124
|
ctx.schemaErrorMap,
|
1125
|
-
|
1126
|
-
|
1125
|
+
getErrorMap(),
|
1126
|
+
errorMap
|
1127
1127
|
// then global default map
|
1128
1128
|
].filter((x) => !!x)
|
1129
1129
|
});
|
1130
1130
|
ctx.common.issues.push(issue);
|
1131
1131
|
}
|
1132
|
-
function __classPrivateFieldGet(receiver, state, kind, f) {
|
1133
|
-
if (kind === "a" && !f)
|
1134
|
-
throw new TypeError("Private accessor was defined without a getter");
|
1135
|
-
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
|
1136
|
-
throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
1137
|
-
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
1138
|
-
}
|
1139
|
-
function __classPrivateFieldSet(receiver, state, value, kind, f) {
|
1140
|
-
if (kind === "m")
|
1141
|
-
throw new TypeError("Private method is not writable");
|
1142
|
-
if (kind === "a" && !f)
|
1143
|
-
throw new TypeError("Private accessor was defined without a setter");
|
1144
|
-
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
|
1145
|
-
throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
1146
|
-
return kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value), value;
|
1147
|
-
}
|
1148
1132
|
function processCreateParams(params) {
|
1149
1133
|
if (!params)
|
1150
1134
|
return {};
|
@@ -1155,50 +1139,15 @@ function processCreateParams(params) {
|
|
1155
1139
|
if (errorMap2)
|
1156
1140
|
return { errorMap: errorMap2, description };
|
1157
1141
|
const customMap = (iss, ctx) => {
|
1158
|
-
var _a, _b;
|
1159
|
-
const { message } = params;
|
1160
|
-
if (iss.code === "invalid_enum_value") {
|
1161
|
-
return { message: message !== null && message !== void 0 ? message : ctx.defaultError };
|
1162
|
-
}
|
1163
|
-
if (typeof ctx.data === "undefined") {
|
1164
|
-
return { message: (_a = message !== null && message !== void 0 ? message : required_error) !== null && _a !== void 0 ? _a : ctx.defaultError };
|
1165
|
-
}
|
1166
1142
|
if (iss.code !== "invalid_type")
|
1167
1143
|
return { message: ctx.defaultError };
|
1168
|
-
|
1144
|
+
if (typeof ctx.data === "undefined") {
|
1145
|
+
return { message: required_error !== null && required_error !== void 0 ? required_error : ctx.defaultError };
|
1146
|
+
}
|
1147
|
+
return { message: invalid_type_error !== null && invalid_type_error !== void 0 ? invalid_type_error : ctx.defaultError };
|
1169
1148
|
};
|
1170
1149
|
return { errorMap: customMap, description };
|
1171
1150
|
}
|
1172
|
-
function timeRegexSource(args) {
|
1173
|
-
let regex = `([01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d`;
|
1174
|
-
if (args.precision) {
|
1175
|
-
regex = `${regex}\\.\\d{${args.precision}}`;
|
1176
|
-
} else if (args.precision == null) {
|
1177
|
-
regex = `${regex}(\\.\\d+)?`;
|
1178
|
-
}
|
1179
|
-
return regex;
|
1180
|
-
}
|
1181
|
-
function timeRegex(args) {
|
1182
|
-
return new RegExp(`^${timeRegexSource(args)}$`);
|
1183
|
-
}
|
1184
|
-
function datetimeRegex(args) {
|
1185
|
-
let regex = `${dateRegexSource}T${timeRegexSource(args)}`;
|
1186
|
-
const opts = [];
|
1187
|
-
opts.push(args.local ? `Z?` : `Z`);
|
1188
|
-
if (args.offset)
|
1189
|
-
opts.push(`([+-]\\d{2}:?\\d{2})`);
|
1190
|
-
regex = `${regex}(${opts.join("|")})`;
|
1191
|
-
return new RegExp(`^${regex}$`);
|
1192
|
-
}
|
1193
|
-
function isValidIP(ip, version) {
|
1194
|
-
if ((version === "v4" || !version) && ipv4Regex.test(ip)) {
|
1195
|
-
return true;
|
1196
|
-
}
|
1197
|
-
if ((version === "v6" || !version) && ipv6Regex.test(ip)) {
|
1198
|
-
return true;
|
1199
|
-
}
|
1200
|
-
return false;
|
1201
|
-
}
|
1202
1151
|
function floatSafeRemainder(val, step) {
|
1203
1152
|
const valDecCount = (val.toString().split(".")[1] || "").length;
|
1204
1153
|
const stepDecCount = (step.toString().split(".")[1] || "").length;
|
@@ -1219,10 +1168,7 @@ function deepPartialify(schema4) {
|
|
1219
1168
|
shape: () => newShape
|
1220
1169
|
});
|
1221
1170
|
} else if (schema4 instanceof ZodArray) {
|
1222
|
-
return
|
1223
|
-
...schema4._def,
|
1224
|
-
type: deepPartialify(schema4.element)
|
1225
|
-
});
|
1171
|
+
return ZodArray.create(deepPartialify(schema4.element));
|
1226
1172
|
} else if (schema4 instanceof ZodOptional) {
|
1227
1173
|
return ZodOptional.create(deepPartialify(schema4.unwrap()));
|
1228
1174
|
} else if (schema4 instanceof ZodNullable) {
|
@@ -1278,9 +1224,9 @@ function createZodEnum(values, params) {
|
|
1278
1224
|
...processCreateParams(params)
|
1279
1225
|
});
|
1280
1226
|
}
|
1281
|
-
var util,
|
1227
|
+
var util, ZodParsedType, getParsedType, ZodIssueCode, ZodError, errorMap, overrideErrorMap, makeIssue, ParseStatus, INVALID, DIRTY, OK, isAborted, isDirty, isValid, isAsync, errorUtil, ParseInputLazyPath, handleResult, ZodType, cuidRegex, uuidRegex, emailRegex, datetimeRegex, ZodString, ZodNumber, ZodBigInt, ZodBoolean, ZodDate, ZodSymbol, ZodUndefined, ZodNull, ZodAny, ZodUnknown, ZodNever, ZodVoid, ZodArray, objectUtil, AugmentFactory, ZodObject, ZodUnion, getDiscriminator, ZodDiscriminatedUnion, ZodIntersection, ZodTuple, ZodRecord, ZodMap, ZodSet, ZodFunction, ZodLazy, ZodLiteral, ZodEnum, ZodNativeEnum, ZodPromise, ZodEffects, ZodOptional, ZodNullable, ZodDefault, ZodCatch, ZodNaN, BRAND, ZodBranded, ZodPipeline, 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, coerce;
|
1282
1228
|
var init_lib = __esm({
|
1283
|
-
"node_modules/.pnpm/zod@3.
|
1229
|
+
"node_modules/.pnpm/zod@3.20.2/node_modules/zod/lib/index.mjs"() {
|
1284
1230
|
(function(util2) {
|
1285
1231
|
util2.assertEqual = (val) => val;
|
1286
1232
|
function assertIs(_arg) {
|
@@ -1338,15 +1284,6 @@ var init_lib = __esm({
|
|
1338
1284
|
return value;
|
1339
1285
|
};
|
1340
1286
|
})(util || (util = {}));
|
1341
|
-
(function(objectUtil2) {
|
1342
|
-
objectUtil2.mergeShapes = (first, second) => {
|
1343
|
-
return {
|
1344
|
-
...first,
|
1345
|
-
...second
|
1346
|
-
// second overwrites first
|
1347
|
-
};
|
1348
|
-
};
|
1349
|
-
})(objectUtil || (objectUtil = {}));
|
1350
1287
|
ZodParsedType = util.arrayToEnum([
|
1351
1288
|
"string",
|
1352
1289
|
"nan",
|
@@ -1428,7 +1365,7 @@ var init_lib = __esm({
|
|
1428
1365
|
"not_multiple_of",
|
1429
1366
|
"not_finite"
|
1430
1367
|
]);
|
1431
|
-
ZodError = class
|
1368
|
+
ZodError = class extends Error {
|
1432
1369
|
constructor(issues) {
|
1433
1370
|
super();
|
1434
1371
|
this.issues = [];
|
@@ -1486,11 +1423,6 @@ var init_lib = __esm({
|
|
1486
1423
|
processError(this);
|
1487
1424
|
return fieldErrors;
|
1488
1425
|
}
|
1489
|
-
static assert(value) {
|
1490
|
-
if (!(value instanceof _ZodError)) {
|
1491
|
-
throw new Error(`Not a ZodError: ${value}`);
|
1492
|
-
}
|
1493
|
-
}
|
1494
1426
|
toString() {
|
1495
1427
|
return this.message;
|
1496
1428
|
}
|
@@ -1557,12 +1489,7 @@ var init_lib = __esm({
|
|
1557
1489
|
break;
|
1558
1490
|
case ZodIssueCode.invalid_string:
|
1559
1491
|
if (typeof issue.validation === "object") {
|
1560
|
-
if ("
|
1561
|
-
message = `Invalid input: must include "${issue.validation.includes}"`;
|
1562
|
-
if (typeof issue.validation.position === "number") {
|
1563
|
-
message = `${message} at one or more positions greater than or equal to ${issue.validation.position}`;
|
1564
|
-
}
|
1565
|
-
} else if ("startsWith" in issue.validation) {
|
1492
|
+
if ("startsWith" in issue.validation) {
|
1566
1493
|
message = `Invalid input: must start with "${issue.validation.startsWith}"`;
|
1567
1494
|
} else if ("endsWith" in issue.validation) {
|
1568
1495
|
message = `Invalid input: must end with "${issue.validation.endsWith}"`;
|
@@ -1583,7 +1510,7 @@ var init_lib = __esm({
|
|
1583
1510
|
else if (issue.type === "number")
|
1584
1511
|
message = `Number must be ${issue.exact ? `exactly equal to ` : issue.inclusive ? `greater than or equal to ` : `greater than `}${issue.minimum}`;
|
1585
1512
|
else if (issue.type === "date")
|
1586
|
-
message = `Date must be ${issue.exact ? `exactly equal to ` : issue.inclusive ? `greater than or equal to ` : `greater than `}${new Date(
|
1513
|
+
message = `Date must be ${issue.exact ? `exactly equal to ` : issue.inclusive ? `greater than or equal to ` : `greater than `}${new Date(issue.minimum)}`;
|
1587
1514
|
else
|
1588
1515
|
message = "Invalid input";
|
1589
1516
|
break;
|
@@ -1594,10 +1521,8 @@ var init_lib = __esm({
|
|
1594
1521
|
message = `String must contain ${issue.exact ? `exactly` : issue.inclusive ? `at most` : `under`} ${issue.maximum} character(s)`;
|
1595
1522
|
else if (issue.type === "number")
|
1596
1523
|
message = `Number must be ${issue.exact ? `exactly` : issue.inclusive ? `less than or equal to` : `less than`} ${issue.maximum}`;
|
1597
|
-
else if (issue.type === "bigint")
|
1598
|
-
message = `BigInt must be ${issue.exact ? `exactly` : issue.inclusive ? `less than or equal to` : `less than`} ${issue.maximum}`;
|
1599
1524
|
else if (issue.type === "date")
|
1600
|
-
message = `Date must be ${issue.exact ? `exactly` : issue.inclusive ? `smaller than or equal to` : `smaller than`} ${new Date(
|
1525
|
+
message = `Date must be ${issue.exact ? `exactly` : issue.inclusive ? `smaller than or equal to` : `smaller than`} ${new Date(issue.maximum)}`;
|
1601
1526
|
else
|
1602
1527
|
message = "Invalid input";
|
1603
1528
|
break;
|
@@ -1627,13 +1552,6 @@ var init_lib = __esm({
|
|
1627
1552
|
...issueData,
|
1628
1553
|
path: fullPath
|
1629
1554
|
};
|
1630
|
-
if (issueData.message !== void 0) {
|
1631
|
-
return {
|
1632
|
-
...issueData,
|
1633
|
-
path: fullPath,
|
1634
|
-
message: issueData.message
|
1635
|
-
};
|
1636
|
-
}
|
1637
1555
|
let errorMessage = "";
|
1638
1556
|
const maps = errorMaps.filter((m) => !!m).slice().reverse();
|
1639
1557
|
for (const map of maps) {
|
@@ -1642,7 +1560,7 @@ var init_lib = __esm({
|
|
1642
1560
|
return {
|
1643
1561
|
...issueData,
|
1644
1562
|
path: fullPath,
|
1645
|
-
message: errorMessage
|
1563
|
+
message: issueData.message || errorMessage
|
1646
1564
|
};
|
1647
1565
|
};
|
1648
1566
|
ParseStatus = class _ParseStatus {
|
@@ -1671,11 +1589,9 @@ var init_lib = __esm({
|
|
1671
1589
|
static async mergeObjectAsync(status, pairs) {
|
1672
1590
|
const syncPairs = [];
|
1673
1591
|
for (const pair of pairs) {
|
1674
|
-
const key = await pair.key;
|
1675
|
-
const value = await pair.value;
|
1676
1592
|
syncPairs.push({
|
1677
|
-
key,
|
1678
|
-
value
|
1593
|
+
key: await pair.key,
|
1594
|
+
value: await pair.value
|
1679
1595
|
});
|
1680
1596
|
}
|
1681
1597
|
return _ParseStatus.mergeObjectSync(status, syncPairs);
|
@@ -1692,7 +1608,7 @@ var init_lib = __esm({
|
|
1692
1608
|
status.dirty();
|
1693
1609
|
if (value.status === "dirty")
|
1694
1610
|
status.dirty();
|
1695
|
-
if (
|
1611
|
+
if (typeof value.value !== "undefined" || pair.alwaysSet) {
|
1696
1612
|
finalObject[key.value] = value.value;
|
1697
1613
|
}
|
1698
1614
|
}
|
@@ -1707,28 +1623,20 @@ var init_lib = __esm({
|
|
1707
1623
|
isAborted = (x) => x.status === "aborted";
|
1708
1624
|
isDirty = (x) => x.status === "dirty";
|
1709
1625
|
isValid = (x) => x.status === "valid";
|
1710
|
-
isAsync = (x) => typeof Promise !==
|
1626
|
+
isAsync = (x) => typeof Promise !== void 0 && x instanceof Promise;
|
1711
1627
|
(function(errorUtil2) {
|
1712
1628
|
errorUtil2.errToObj = (message) => typeof message === "string" ? { message } : message || {};
|
1713
1629
|
errorUtil2.toString = (message) => typeof message === "string" ? message : message === null || message === void 0 ? void 0 : message.message;
|
1714
1630
|
})(errorUtil || (errorUtil = {}));
|
1715
1631
|
ParseInputLazyPath = class {
|
1716
1632
|
constructor(parent, value, path2, key) {
|
1717
|
-
this._cachedPath = [];
|
1718
1633
|
this.parent = parent;
|
1719
1634
|
this.data = value;
|
1720
1635
|
this._path = path2;
|
1721
1636
|
this._key = key;
|
1722
1637
|
}
|
1723
1638
|
get path() {
|
1724
|
-
|
1725
|
-
if (this._key instanceof Array) {
|
1726
|
-
this._cachedPath.push(...this._path, ...this._key);
|
1727
|
-
} else {
|
1728
|
-
this._cachedPath.push(...this._path, this._key);
|
1729
|
-
}
|
1730
|
-
}
|
1731
|
-
return this._cachedPath;
|
1639
|
+
return this._path.concat(this._key);
|
1732
1640
|
}
|
1733
1641
|
};
|
1734
1642
|
handleResult = (ctx, result) => {
|
@@ -1738,16 +1646,8 @@ var init_lib = __esm({
|
|
1738
1646
|
if (!ctx.common.issues.length) {
|
1739
1647
|
throw new Error("Validation failed but no issues detected.");
|
1740
1648
|
}
|
1741
|
-
|
1742
|
-
|
1743
|
-
get error() {
|
1744
|
-
if (this._error)
|
1745
|
-
return this._error;
|
1746
|
-
const error2 = new ZodError(ctx.common.issues);
|
1747
|
-
this._error = error2;
|
1748
|
-
return this._error;
|
1749
|
-
}
|
1750
|
-
};
|
1649
|
+
const error2 = new ZodError(ctx.common.issues);
|
1650
|
+
return { success: false, error: error2 };
|
1751
1651
|
}
|
1752
1652
|
};
|
1753
1653
|
ZodType = class {
|
@@ -1775,7 +1675,6 @@ var init_lib = __esm({
|
|
1775
1675
|
this.catch = this.catch.bind(this);
|
1776
1676
|
this.describe = this.describe.bind(this);
|
1777
1677
|
this.pipe = this.pipe.bind(this);
|
1778
|
-
this.readonly = this.readonly.bind(this);
|
1779
1678
|
this.isNullable = this.isNullable.bind(this);
|
1780
1679
|
this.isOptional = this.isOptional.bind(this);
|
1781
1680
|
}
|
@@ -1920,29 +1819,28 @@ var init_lib = __esm({
|
|
1920
1819
|
return this._refinement(refinement);
|
1921
1820
|
}
|
1922
1821
|
optional() {
|
1923
|
-
return ZodOptional.create(this
|
1822
|
+
return ZodOptional.create(this);
|
1924
1823
|
}
|
1925
1824
|
nullable() {
|
1926
|
-
return ZodNullable.create(this
|
1825
|
+
return ZodNullable.create(this);
|
1927
1826
|
}
|
1928
1827
|
nullish() {
|
1929
|
-
return this.
|
1828
|
+
return this.optional().nullable();
|
1930
1829
|
}
|
1931
1830
|
array() {
|
1932
|
-
return ZodArray.create(this
|
1831
|
+
return ZodArray.create(this);
|
1933
1832
|
}
|
1934
1833
|
promise() {
|
1935
|
-
return ZodPromise.create(this
|
1834
|
+
return ZodPromise.create(this);
|
1936
1835
|
}
|
1937
1836
|
or(option) {
|
1938
|
-
return ZodUnion.create([this, option]
|
1837
|
+
return ZodUnion.create([this, option]);
|
1939
1838
|
}
|
1940
1839
|
and(incoming) {
|
1941
|
-
return ZodIntersection.create(this, incoming
|
1840
|
+
return ZodIntersection.create(this, incoming);
|
1942
1841
|
}
|
1943
1842
|
transform(transform) {
|
1944
1843
|
return new ZodEffects({
|
1945
|
-
...processCreateParams(this._def),
|
1946
1844
|
schema: this,
|
1947
1845
|
typeName: ZodFirstPartyTypeKind.ZodEffects,
|
1948
1846
|
effect: { type: "transform", transform }
|
@@ -1951,7 +1849,6 @@ var init_lib = __esm({
|
|
1951
1849
|
default(def) {
|
1952
1850
|
const defaultValueFunc = typeof def === "function" ? def : () => def;
|
1953
1851
|
return new ZodDefault({
|
1954
|
-
...processCreateParams(this._def),
|
1955
1852
|
innerType: this,
|
1956
1853
|
defaultValue: defaultValueFunc,
|
1957
1854
|
typeName: ZodFirstPartyTypeKind.ZodDefault
|
@@ -1961,15 +1858,14 @@ var init_lib = __esm({
|
|
1961
1858
|
return new ZodBranded({
|
1962
1859
|
typeName: ZodFirstPartyTypeKind.ZodBranded,
|
1963
1860
|
type: this,
|
1964
|
-
...processCreateParams(
|
1861
|
+
...processCreateParams(void 0)
|
1965
1862
|
});
|
1966
1863
|
}
|
1967
1864
|
catch(def) {
|
1968
|
-
const
|
1865
|
+
const defaultValueFunc = typeof def === "function" ? def : () => def;
|
1969
1866
|
return new ZodCatch({
|
1970
|
-
...processCreateParams(this._def),
|
1971
1867
|
innerType: this,
|
1972
|
-
|
1868
|
+
defaultValue: defaultValueFunc,
|
1973
1869
|
typeName: ZodFirstPartyTypeKind.ZodCatch
|
1974
1870
|
});
|
1975
1871
|
}
|
@@ -1983,9 +1879,6 @@ var init_lib = __esm({
|
|
1983
1879
|
pipe(target) {
|
1984
1880
|
return ZodPipeline.create(this, target);
|
1985
1881
|
}
|
1986
|
-
readonly() {
|
1987
|
-
return ZodReadonly.create(this);
|
1988
|
-
}
|
1989
1882
|
isOptional() {
|
1990
1883
|
return this.safeParse(void 0).success;
|
1991
1884
|
}
|
@@ -1994,19 +1887,43 @@ var init_lib = __esm({
|
|
1994
1887
|
}
|
1995
1888
|
};
|
1996
1889
|
cuidRegex = /^c[^\s-]{8,}$/i;
|
1997
|
-
|
1998
|
-
|
1999
|
-
|
2000
|
-
|
2001
|
-
|
2002
|
-
|
2003
|
-
|
2004
|
-
|
2005
|
-
|
2006
|
-
|
2007
|
-
|
2008
|
-
|
1890
|
+
uuidRegex = /^([a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[a-f0-9]{4}-[a-f0-9]{12}|00000000-0000-0000-0000-000000000000)$/i;
|
1891
|
+
emailRegex = /^(([^<>()[\]\.,;:\s@\"]+(\.[^<>()[\]\.,;:\s@\"]+)*)|(\".+\"))@(([^<>()[\]\.,;:\s@\"]+\.)+[^<>()[\]\.,;:\s@\"]{2,})$/i;
|
1892
|
+
datetimeRegex = (args) => {
|
1893
|
+
if (args.precision) {
|
1894
|
+
if (args.offset) {
|
1895
|
+
return new RegExp(`^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{${args.precision}}(([+-]\\d{2}:\\d{2})|Z)$`);
|
1896
|
+
} else {
|
1897
|
+
return new RegExp(`^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{${args.precision}}Z$`);
|
1898
|
+
}
|
1899
|
+
} else if (args.precision === 0) {
|
1900
|
+
if (args.offset) {
|
1901
|
+
return new RegExp(`^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(([+-]\\d{2}:\\d{2})|Z)$`);
|
1902
|
+
} else {
|
1903
|
+
return new RegExp(`^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$`);
|
1904
|
+
}
|
1905
|
+
} else {
|
1906
|
+
if (args.offset) {
|
1907
|
+
return new RegExp(`^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(\\.\\d+)?(([+-]\\d{2}:\\d{2})|Z)$`);
|
1908
|
+
} else {
|
1909
|
+
return new RegExp(`^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(\\.\\d+)?Z$`);
|
1910
|
+
}
|
1911
|
+
}
|
1912
|
+
};
|
2009
1913
|
ZodString = class _ZodString extends ZodType {
|
1914
|
+
constructor() {
|
1915
|
+
super(...arguments);
|
1916
|
+
this._regex = (regex, validation, message) => this.refinement((data) => regex.test(data), {
|
1917
|
+
validation,
|
1918
|
+
code: ZodIssueCode.invalid_string,
|
1919
|
+
...errorUtil.errToObj(message)
|
1920
|
+
});
|
1921
|
+
this.nonempty = (message) => this.min(1, errorUtil.errToObj(message));
|
1922
|
+
this.trim = () => new _ZodString({
|
1923
|
+
...this._def,
|
1924
|
+
checks: [...this._def.checks, { kind: "trim" }]
|
1925
|
+
});
|
1926
|
+
}
|
2010
1927
|
_parse(input) {
|
2011
1928
|
if (this._def.coerce) {
|
2012
1929
|
input.data = String(input.data);
|
@@ -2014,11 +1931,15 @@ var init_lib = __esm({
|
|
2014
1931
|
const parsedType = this._getType(input);
|
2015
1932
|
if (parsedType !== ZodParsedType.string) {
|
2016
1933
|
const ctx2 = this._getOrReturnCtx(input);
|
2017
|
-
addIssueToContext(
|
2018
|
-
|
2019
|
-
|
2020
|
-
|
2021
|
-
|
1934
|
+
addIssueToContext(
|
1935
|
+
ctx2,
|
1936
|
+
{
|
1937
|
+
code: ZodIssueCode.invalid_type,
|
1938
|
+
expected: ZodParsedType.string,
|
1939
|
+
received: ctx2.parsedType
|
1940
|
+
}
|
1941
|
+
//
|
1942
|
+
);
|
2022
1943
|
return INVALID;
|
2023
1944
|
}
|
2024
1945
|
const status = new ParseStatus();
|
@@ -2086,19 +2007,6 @@ var init_lib = __esm({
|
|
2086
2007
|
});
|
2087
2008
|
status.dirty();
|
2088
2009
|
}
|
2089
|
-
} else if (check.kind === "emoji") {
|
2090
|
-
if (!emojiRegex) {
|
2091
|
-
emojiRegex = new RegExp(_emojiRegex, "u");
|
2092
|
-
}
|
2093
|
-
if (!emojiRegex.test(input.data)) {
|
2094
|
-
ctx = this._getOrReturnCtx(input, ctx);
|
2095
|
-
addIssueToContext(ctx, {
|
2096
|
-
validation: "emoji",
|
2097
|
-
code: ZodIssueCode.invalid_string,
|
2098
|
-
message: check.message
|
2099
|
-
});
|
2100
|
-
status.dirty();
|
2101
|
-
}
|
2102
2010
|
} else if (check.kind === "uuid") {
|
2103
2011
|
if (!uuidRegex.test(input.data)) {
|
2104
2012
|
ctx = this._getOrReturnCtx(input, ctx);
|
@@ -2109,16 +2017,6 @@ var init_lib = __esm({
|
|
2109
2017
|
});
|
2110
2018
|
status.dirty();
|
2111
2019
|
}
|
2112
|
-
} else if (check.kind === "nanoid") {
|
2113
|
-
if (!nanoidRegex.test(input.data)) {
|
2114
|
-
ctx = this._getOrReturnCtx(input, ctx);
|
2115
|
-
addIssueToContext(ctx, {
|
2116
|
-
validation: "nanoid",
|
2117
|
-
code: ZodIssueCode.invalid_string,
|
2118
|
-
message: check.message
|
2119
|
-
});
|
2120
|
-
status.dirty();
|
2121
|
-
}
|
2122
2020
|
} else if (check.kind === "cuid") {
|
2123
2021
|
if (!cuidRegex.test(input.data)) {
|
2124
2022
|
ctx = this._getOrReturnCtx(input, ctx);
|
@@ -2129,26 +2027,6 @@ var init_lib = __esm({
|
|
2129
2027
|
});
|
2130
2028
|
status.dirty();
|
2131
2029
|
}
|
2132
|
-
} else if (check.kind === "cuid2") {
|
2133
|
-
if (!cuid2Regex.test(input.data)) {
|
2134
|
-
ctx = this._getOrReturnCtx(input, ctx);
|
2135
|
-
addIssueToContext(ctx, {
|
2136
|
-
validation: "cuid2",
|
2137
|
-
code: ZodIssueCode.invalid_string,
|
2138
|
-
message: check.message
|
2139
|
-
});
|
2140
|
-
status.dirty();
|
2141
|
-
}
|
2142
|
-
} else if (check.kind === "ulid") {
|
2143
|
-
if (!ulidRegex.test(input.data)) {
|
2144
|
-
ctx = this._getOrReturnCtx(input, ctx);
|
2145
|
-
addIssueToContext(ctx, {
|
2146
|
-
validation: "ulid",
|
2147
|
-
code: ZodIssueCode.invalid_string,
|
2148
|
-
message: check.message
|
2149
|
-
});
|
2150
|
-
status.dirty();
|
2151
|
-
}
|
2152
2030
|
} else if (check.kind === "url") {
|
2153
2031
|
try {
|
2154
2032
|
new URL(input.data);
|
@@ -2175,20 +2053,6 @@ var init_lib = __esm({
|
|
2175
2053
|
}
|
2176
2054
|
} else if (check.kind === "trim") {
|
2177
2055
|
input.data = input.data.trim();
|
2178
|
-
} else if (check.kind === "includes") {
|
2179
|
-
if (!input.data.includes(check.value, check.position)) {
|
2180
|
-
ctx = this._getOrReturnCtx(input, ctx);
|
2181
|
-
addIssueToContext(ctx, {
|
2182
|
-
code: ZodIssueCode.invalid_string,
|
2183
|
-
validation: { includes: check.value, position: check.position },
|
2184
|
-
message: check.message
|
2185
|
-
});
|
2186
|
-
status.dirty();
|
2187
|
-
}
|
2188
|
-
} else if (check.kind === "toLowerCase") {
|
2189
|
-
input.data = input.data.toLowerCase();
|
2190
|
-
} else if (check.kind === "toUpperCase") {
|
2191
|
-
input.data = input.data.toUpperCase();
|
2192
2056
|
} else if (check.kind === "startsWith") {
|
2193
2057
|
if (!input.data.startsWith(check.value)) {
|
2194
2058
|
ctx = this._getOrReturnCtx(input, ctx);
|
@@ -2220,71 +2084,12 @@ var init_lib = __esm({
|
|
2220
2084
|
});
|
2221
2085
|
status.dirty();
|
2222
2086
|
}
|
2223
|
-
} else if (check.kind === "date") {
|
2224
|
-
const regex = dateRegex;
|
2225
|
-
if (!regex.test(input.data)) {
|
2226
|
-
ctx = this._getOrReturnCtx(input, ctx);
|
2227
|
-
addIssueToContext(ctx, {
|
2228
|
-
code: ZodIssueCode.invalid_string,
|
2229
|
-
validation: "date",
|
2230
|
-
message: check.message
|
2231
|
-
});
|
2232
|
-
status.dirty();
|
2233
|
-
}
|
2234
|
-
} else if (check.kind === "time") {
|
2235
|
-
const regex = timeRegex(check);
|
2236
|
-
if (!regex.test(input.data)) {
|
2237
|
-
ctx = this._getOrReturnCtx(input, ctx);
|
2238
|
-
addIssueToContext(ctx, {
|
2239
|
-
code: ZodIssueCode.invalid_string,
|
2240
|
-
validation: "time",
|
2241
|
-
message: check.message
|
2242
|
-
});
|
2243
|
-
status.dirty();
|
2244
|
-
}
|
2245
|
-
} else if (check.kind === "duration") {
|
2246
|
-
if (!durationRegex.test(input.data)) {
|
2247
|
-
ctx = this._getOrReturnCtx(input, ctx);
|
2248
|
-
addIssueToContext(ctx, {
|
2249
|
-
validation: "duration",
|
2250
|
-
code: ZodIssueCode.invalid_string,
|
2251
|
-
message: check.message
|
2252
|
-
});
|
2253
|
-
status.dirty();
|
2254
|
-
}
|
2255
|
-
} else if (check.kind === "ip") {
|
2256
|
-
if (!isValidIP(input.data, check.version)) {
|
2257
|
-
ctx = this._getOrReturnCtx(input, ctx);
|
2258
|
-
addIssueToContext(ctx, {
|
2259
|
-
validation: "ip",
|
2260
|
-
code: ZodIssueCode.invalid_string,
|
2261
|
-
message: check.message
|
2262
|
-
});
|
2263
|
-
status.dirty();
|
2264
|
-
}
|
2265
|
-
} else if (check.kind === "base64") {
|
2266
|
-
if (!base64Regex.test(input.data)) {
|
2267
|
-
ctx = this._getOrReturnCtx(input, ctx);
|
2268
|
-
addIssueToContext(ctx, {
|
2269
|
-
validation: "base64",
|
2270
|
-
code: ZodIssueCode.invalid_string,
|
2271
|
-
message: check.message
|
2272
|
-
});
|
2273
|
-
status.dirty();
|
2274
|
-
}
|
2275
2087
|
} else {
|
2276
2088
|
util.assertNever(check);
|
2277
2089
|
}
|
2278
2090
|
}
|
2279
2091
|
return { status: status.value, value: input.data };
|
2280
2092
|
}
|
2281
|
-
_regex(regex, validation, message) {
|
2282
|
-
return this.refinement((data) => regex.test(data), {
|
2283
|
-
validation,
|
2284
|
-
code: ZodIssueCode.invalid_string,
|
2285
|
-
...errorUtil.errToObj(message)
|
2286
|
-
});
|
2287
|
-
}
|
2288
2093
|
_addCheck(check) {
|
2289
2094
|
return new _ZodString({
|
2290
2095
|
...this._def,
|
@@ -2297,38 +2102,19 @@ var init_lib = __esm({
|
|
2297
2102
|
url(message) {
|
2298
2103
|
return this._addCheck({ kind: "url", ...errorUtil.errToObj(message) });
|
2299
2104
|
}
|
2300
|
-
emoji(message) {
|
2301
|
-
return this._addCheck({ kind: "emoji", ...errorUtil.errToObj(message) });
|
2302
|
-
}
|
2303
2105
|
uuid(message) {
|
2304
2106
|
return this._addCheck({ kind: "uuid", ...errorUtil.errToObj(message) });
|
2305
2107
|
}
|
2306
|
-
nanoid(message) {
|
2307
|
-
return this._addCheck({ kind: "nanoid", ...errorUtil.errToObj(message) });
|
2308
|
-
}
|
2309
2108
|
cuid(message) {
|
2310
2109
|
return this._addCheck({ kind: "cuid", ...errorUtil.errToObj(message) });
|
2311
2110
|
}
|
2312
|
-
cuid2(message) {
|
2313
|
-
return this._addCheck({ kind: "cuid2", ...errorUtil.errToObj(message) });
|
2314
|
-
}
|
2315
|
-
ulid(message) {
|
2316
|
-
return this._addCheck({ kind: "ulid", ...errorUtil.errToObj(message) });
|
2317
|
-
}
|
2318
|
-
base64(message) {
|
2319
|
-
return this._addCheck({ kind: "base64", ...errorUtil.errToObj(message) });
|
2320
|
-
}
|
2321
|
-
ip(options) {
|
2322
|
-
return this._addCheck({ kind: "ip", ...errorUtil.errToObj(options) });
|
2323
|
-
}
|
2324
2111
|
datetime(options) {
|
2325
|
-
var _a
|
2112
|
+
var _a;
|
2326
2113
|
if (typeof options === "string") {
|
2327
2114
|
return this._addCheck({
|
2328
2115
|
kind: "datetime",
|
2329
2116
|
precision: null,
|
2330
2117
|
offset: false,
|
2331
|
-
local: false,
|
2332
2118
|
message: options
|
2333
2119
|
});
|
2334
2120
|
}
|
@@ -2336,30 +2122,9 @@ var init_lib = __esm({
|
|
2336
2122
|
kind: "datetime",
|
2337
2123
|
precision: typeof (options === null || options === void 0 ? void 0 : options.precision) === "undefined" ? null : options === null || options === void 0 ? void 0 : options.precision,
|
2338
2124
|
offset: (_a = options === null || options === void 0 ? void 0 : options.offset) !== null && _a !== void 0 ? _a : false,
|
2339
|
-
local: (_b = options === null || options === void 0 ? void 0 : options.local) !== null && _b !== void 0 ? _b : false,
|
2340
2125
|
...errorUtil.errToObj(options === null || options === void 0 ? void 0 : options.message)
|
2341
2126
|
});
|
2342
2127
|
}
|
2343
|
-
date(message) {
|
2344
|
-
return this._addCheck({ kind: "date", message });
|
2345
|
-
}
|
2346
|
-
time(options) {
|
2347
|
-
if (typeof options === "string") {
|
2348
|
-
return this._addCheck({
|
2349
|
-
kind: "time",
|
2350
|
-
precision: null,
|
2351
|
-
message: options
|
2352
|
-
});
|
2353
|
-
}
|
2354
|
-
return this._addCheck({
|
2355
|
-
kind: "time",
|
2356
|
-
precision: typeof (options === null || options === void 0 ? void 0 : options.precision) === "undefined" ? null : options === null || options === void 0 ? void 0 : options.precision,
|
2357
|
-
...errorUtil.errToObj(options === null || options === void 0 ? void 0 : options.message)
|
2358
|
-
});
|
2359
|
-
}
|
2360
|
-
duration(message) {
|
2361
|
-
return this._addCheck({ kind: "duration", ...errorUtil.errToObj(message) });
|
2362
|
-
}
|
2363
2128
|
regex(regex, message) {
|
2364
2129
|
return this._addCheck({
|
2365
2130
|
kind: "regex",
|
@@ -2367,14 +2132,6 @@ var init_lib = __esm({
|
|
2367
2132
|
...errorUtil.errToObj(message)
|
2368
2133
|
});
|
2369
2134
|
}
|
2370
|
-
includes(value, options) {
|
2371
|
-
return this._addCheck({
|
2372
|
-
kind: "includes",
|
2373
|
-
value,
|
2374
|
-
position: options === null || options === void 0 ? void 0 : options.position,
|
2375
|
-
...errorUtil.errToObj(options === null || options === void 0 ? void 0 : options.message)
|
2376
|
-
});
|
2377
|
-
}
|
2378
2135
|
startsWith(value, message) {
|
2379
2136
|
return this._addCheck({
|
2380
2137
|
kind: "startsWith",
|
@@ -2410,73 +2167,21 @@ var init_lib = __esm({
|
|
2410
2167
|
...errorUtil.errToObj(message)
|
2411
2168
|
});
|
2412
2169
|
}
|
2413
|
-
/**
|
2414
|
-
* @deprecated Use z.string().min(1) instead.
|
2415
|
-
* @see {@link ZodString.min}
|
2416
|
-
*/
|
2417
|
-
nonempty(message) {
|
2418
|
-
return this.min(1, errorUtil.errToObj(message));
|
2419
|
-
}
|
2420
|
-
trim() {
|
2421
|
-
return new _ZodString({
|
2422
|
-
...this._def,
|
2423
|
-
checks: [...this._def.checks, { kind: "trim" }]
|
2424
|
-
});
|
2425
|
-
}
|
2426
|
-
toLowerCase() {
|
2427
|
-
return new _ZodString({
|
2428
|
-
...this._def,
|
2429
|
-
checks: [...this._def.checks, { kind: "toLowerCase" }]
|
2430
|
-
});
|
2431
|
-
}
|
2432
|
-
toUpperCase() {
|
2433
|
-
return new _ZodString({
|
2434
|
-
...this._def,
|
2435
|
-
checks: [...this._def.checks, { kind: "toUpperCase" }]
|
2436
|
-
});
|
2437
|
-
}
|
2438
2170
|
get isDatetime() {
|
2439
2171
|
return !!this._def.checks.find((ch) => ch.kind === "datetime");
|
2440
2172
|
}
|
2441
|
-
get isDate() {
|
2442
|
-
return !!this._def.checks.find((ch) => ch.kind === "date");
|
2443
|
-
}
|
2444
|
-
get isTime() {
|
2445
|
-
return !!this._def.checks.find((ch) => ch.kind === "time");
|
2446
|
-
}
|
2447
|
-
get isDuration() {
|
2448
|
-
return !!this._def.checks.find((ch) => ch.kind === "duration");
|
2449
|
-
}
|
2450
2173
|
get isEmail() {
|
2451
2174
|
return !!this._def.checks.find((ch) => ch.kind === "email");
|
2452
2175
|
}
|
2453
2176
|
get isURL() {
|
2454
2177
|
return !!this._def.checks.find((ch) => ch.kind === "url");
|
2455
2178
|
}
|
2456
|
-
get isEmoji() {
|
2457
|
-
return !!this._def.checks.find((ch) => ch.kind === "emoji");
|
2458
|
-
}
|
2459
2179
|
get isUUID() {
|
2460
2180
|
return !!this._def.checks.find((ch) => ch.kind === "uuid");
|
2461
2181
|
}
|
2462
|
-
get isNANOID() {
|
2463
|
-
return !!this._def.checks.find((ch) => ch.kind === "nanoid");
|
2464
|
-
}
|
2465
2182
|
get isCUID() {
|
2466
2183
|
return !!this._def.checks.find((ch) => ch.kind === "cuid");
|
2467
2184
|
}
|
2468
|
-
get isCUID2() {
|
2469
|
-
return !!this._def.checks.find((ch) => ch.kind === "cuid2");
|
2470
|
-
}
|
2471
|
-
get isULID() {
|
2472
|
-
return !!this._def.checks.find((ch) => ch.kind === "ulid");
|
2473
|
-
}
|
2474
|
-
get isIP() {
|
2475
|
-
return !!this._def.checks.find((ch) => ch.kind === "ip");
|
2476
|
-
}
|
2477
|
-
get isBase64() {
|
2478
|
-
return !!this._def.checks.find((ch) => ch.kind === "base64");
|
2479
|
-
}
|
2480
2185
|
get minLength() {
|
2481
2186
|
let min = null;
|
2482
2187
|
for (const ch of this._def.checks) {
|
@@ -2678,19 +2383,6 @@ var init_lib = __esm({
|
|
2678
2383
|
message: errorUtil.toString(message)
|
2679
2384
|
});
|
2680
2385
|
}
|
2681
|
-
safe(message) {
|
2682
|
-
return this._addCheck({
|
2683
|
-
kind: "min",
|
2684
|
-
inclusive: true,
|
2685
|
-
value: Number.MIN_SAFE_INTEGER,
|
2686
|
-
message: errorUtil.toString(message)
|
2687
|
-
})._addCheck({
|
2688
|
-
kind: "max",
|
2689
|
-
inclusive: true,
|
2690
|
-
value: Number.MAX_SAFE_INTEGER,
|
2691
|
-
message: errorUtil.toString(message)
|
2692
|
-
});
|
2693
|
-
}
|
2694
2386
|
get minValue() {
|
2695
2387
|
let min = null;
|
2696
2388
|
for (const ch of this._def.checks) {
|
@@ -2712,22 +2404,7 @@ var init_lib = __esm({
|
|
2712
2404
|
return max;
|
2713
2405
|
}
|
2714
2406
|
get isInt() {
|
2715
|
-
return !!this._def.checks.find((ch) => ch.kind === "int"
|
2716
|
-
}
|
2717
|
-
get isFinite() {
|
2718
|
-
let max = null, min = null;
|
2719
|
-
for (const ch of this._def.checks) {
|
2720
|
-
if (ch.kind === "finite" || ch.kind === "int" || ch.kind === "multipleOf") {
|
2721
|
-
return true;
|
2722
|
-
} else if (ch.kind === "min") {
|
2723
|
-
if (min === null || ch.value > min)
|
2724
|
-
min = ch.value;
|
2725
|
-
} else if (ch.kind === "max") {
|
2726
|
-
if (max === null || ch.value < max)
|
2727
|
-
max = ch.value;
|
2728
|
-
}
|
2729
|
-
}
|
2730
|
-
return Number.isFinite(min) && Number.isFinite(max);
|
2407
|
+
return !!this._def.checks.find((ch) => ch.kind === "int");
|
2731
2408
|
}
|
2732
2409
|
};
|
2733
2410
|
ZodNumber.create = (params) => {
|
@@ -2738,167 +2415,27 @@ var init_lib = __esm({
|
|
2738
2415
|
...processCreateParams(params)
|
2739
2416
|
});
|
2740
2417
|
};
|
2741
|
-
ZodBigInt = class
|
2742
|
-
constructor() {
|
2743
|
-
super(...arguments);
|
2744
|
-
this.min = this.gte;
|
2745
|
-
this.max = this.lte;
|
2746
|
-
}
|
2418
|
+
ZodBigInt = class extends ZodType {
|
2747
2419
|
_parse(input) {
|
2748
2420
|
if (this._def.coerce) {
|
2749
2421
|
input.data = BigInt(input.data);
|
2750
2422
|
}
|
2751
2423
|
const parsedType = this._getType(input);
|
2752
2424
|
if (parsedType !== ZodParsedType.bigint) {
|
2753
|
-
const
|
2754
|
-
addIssueToContext(
|
2425
|
+
const ctx = this._getOrReturnCtx(input);
|
2426
|
+
addIssueToContext(ctx, {
|
2755
2427
|
code: ZodIssueCode.invalid_type,
|
2756
2428
|
expected: ZodParsedType.bigint,
|
2757
|
-
received:
|
2429
|
+
received: ctx.parsedType
|
2758
2430
|
});
|
2759
2431
|
return INVALID;
|
2760
2432
|
}
|
2761
|
-
|
2762
|
-
const status = new ParseStatus();
|
2763
|
-
for (const check of this._def.checks) {
|
2764
|
-
if (check.kind === "min") {
|
2765
|
-
const tooSmall = check.inclusive ? input.data < check.value : input.data <= check.value;
|
2766
|
-
if (tooSmall) {
|
2767
|
-
ctx = this._getOrReturnCtx(input, ctx);
|
2768
|
-
addIssueToContext(ctx, {
|
2769
|
-
code: ZodIssueCode.too_small,
|
2770
|
-
type: "bigint",
|
2771
|
-
minimum: check.value,
|
2772
|
-
inclusive: check.inclusive,
|
2773
|
-
message: check.message
|
2774
|
-
});
|
2775
|
-
status.dirty();
|
2776
|
-
}
|
2777
|
-
} else if (check.kind === "max") {
|
2778
|
-
const tooBig = check.inclusive ? input.data > check.value : input.data >= check.value;
|
2779
|
-
if (tooBig) {
|
2780
|
-
ctx = this._getOrReturnCtx(input, ctx);
|
2781
|
-
addIssueToContext(ctx, {
|
2782
|
-
code: ZodIssueCode.too_big,
|
2783
|
-
type: "bigint",
|
2784
|
-
maximum: check.value,
|
2785
|
-
inclusive: check.inclusive,
|
2786
|
-
message: check.message
|
2787
|
-
});
|
2788
|
-
status.dirty();
|
2789
|
-
}
|
2790
|
-
} else if (check.kind === "multipleOf") {
|
2791
|
-
if (input.data % check.value !== BigInt(0)) {
|
2792
|
-
ctx = this._getOrReturnCtx(input, ctx);
|
2793
|
-
addIssueToContext(ctx, {
|
2794
|
-
code: ZodIssueCode.not_multiple_of,
|
2795
|
-
multipleOf: check.value,
|
2796
|
-
message: check.message
|
2797
|
-
});
|
2798
|
-
status.dirty();
|
2799
|
-
}
|
2800
|
-
} else {
|
2801
|
-
util.assertNever(check);
|
2802
|
-
}
|
2803
|
-
}
|
2804
|
-
return { status: status.value, value: input.data };
|
2805
|
-
}
|
2806
|
-
gte(value, message) {
|
2807
|
-
return this.setLimit("min", value, true, errorUtil.toString(message));
|
2808
|
-
}
|
2809
|
-
gt(value, message) {
|
2810
|
-
return this.setLimit("min", value, false, errorUtil.toString(message));
|
2811
|
-
}
|
2812
|
-
lte(value, message) {
|
2813
|
-
return this.setLimit("max", value, true, errorUtil.toString(message));
|
2814
|
-
}
|
2815
|
-
lt(value, message) {
|
2816
|
-
return this.setLimit("max", value, false, errorUtil.toString(message));
|
2817
|
-
}
|
2818
|
-
setLimit(kind, value, inclusive, message) {
|
2819
|
-
return new _ZodBigInt({
|
2820
|
-
...this._def,
|
2821
|
-
checks: [
|
2822
|
-
...this._def.checks,
|
2823
|
-
{
|
2824
|
-
kind,
|
2825
|
-
value,
|
2826
|
-
inclusive,
|
2827
|
-
message: errorUtil.toString(message)
|
2828
|
-
}
|
2829
|
-
]
|
2830
|
-
});
|
2831
|
-
}
|
2832
|
-
_addCheck(check) {
|
2833
|
-
return new _ZodBigInt({
|
2834
|
-
...this._def,
|
2835
|
-
checks: [...this._def.checks, check]
|
2836
|
-
});
|
2837
|
-
}
|
2838
|
-
positive(message) {
|
2839
|
-
return this._addCheck({
|
2840
|
-
kind: "min",
|
2841
|
-
value: BigInt(0),
|
2842
|
-
inclusive: false,
|
2843
|
-
message: errorUtil.toString(message)
|
2844
|
-
});
|
2845
|
-
}
|
2846
|
-
negative(message) {
|
2847
|
-
return this._addCheck({
|
2848
|
-
kind: "max",
|
2849
|
-
value: BigInt(0),
|
2850
|
-
inclusive: false,
|
2851
|
-
message: errorUtil.toString(message)
|
2852
|
-
});
|
2853
|
-
}
|
2854
|
-
nonpositive(message) {
|
2855
|
-
return this._addCheck({
|
2856
|
-
kind: "max",
|
2857
|
-
value: BigInt(0),
|
2858
|
-
inclusive: true,
|
2859
|
-
message: errorUtil.toString(message)
|
2860
|
-
});
|
2861
|
-
}
|
2862
|
-
nonnegative(message) {
|
2863
|
-
return this._addCheck({
|
2864
|
-
kind: "min",
|
2865
|
-
value: BigInt(0),
|
2866
|
-
inclusive: true,
|
2867
|
-
message: errorUtil.toString(message)
|
2868
|
-
});
|
2869
|
-
}
|
2870
|
-
multipleOf(value, message) {
|
2871
|
-
return this._addCheck({
|
2872
|
-
kind: "multipleOf",
|
2873
|
-
value,
|
2874
|
-
message: errorUtil.toString(message)
|
2875
|
-
});
|
2876
|
-
}
|
2877
|
-
get minValue() {
|
2878
|
-
let min = null;
|
2879
|
-
for (const ch of this._def.checks) {
|
2880
|
-
if (ch.kind === "min") {
|
2881
|
-
if (min === null || ch.value > min)
|
2882
|
-
min = ch.value;
|
2883
|
-
}
|
2884
|
-
}
|
2885
|
-
return min;
|
2886
|
-
}
|
2887
|
-
get maxValue() {
|
2888
|
-
let max = null;
|
2889
|
-
for (const ch of this._def.checks) {
|
2890
|
-
if (ch.kind === "max") {
|
2891
|
-
if (max === null || ch.value < max)
|
2892
|
-
max = ch.value;
|
2893
|
-
}
|
2894
|
-
}
|
2895
|
-
return max;
|
2433
|
+
return OK(input.data);
|
2896
2434
|
}
|
2897
2435
|
};
|
2898
2436
|
ZodBigInt.create = (params) => {
|
2899
2437
|
var _a;
|
2900
2438
|
return new ZodBigInt({
|
2901
|
-
checks: [],
|
2902
2439
|
typeName: ZodFirstPartyTypeKind.ZodBigInt,
|
2903
2440
|
coerce: (_a = params === null || params === void 0 ? void 0 : params.coerce) !== null && _a !== void 0 ? _a : false,
|
2904
2441
|
...processCreateParams(params)
|
@@ -3224,13 +2761,13 @@ var init_lib = __esm({
|
|
3224
2761
|
}
|
3225
2762
|
}
|
3226
2763
|
if (ctx.common.async) {
|
3227
|
-
return Promise.all(
|
2764
|
+
return Promise.all(ctx.data.map((item, i) => {
|
3228
2765
|
return def.type._parseAsync(new ParseInputLazyPath(ctx, item, ctx.path, i));
|
3229
2766
|
})).then((result2) => {
|
3230
2767
|
return ParseStatus.mergeArray(status, result2);
|
3231
2768
|
});
|
3232
2769
|
}
|
3233
|
-
const result =
|
2770
|
+
const result = ctx.data.map((item, i) => {
|
3234
2771
|
return def.type._parseSync(new ParseInputLazyPath(ctx, item, ctx.path, i));
|
3235
2772
|
});
|
3236
2773
|
return ParseStatus.mergeArray(status, result);
|
@@ -3270,12 +2807,31 @@ var init_lib = __esm({
|
|
3270
2807
|
...processCreateParams(params)
|
3271
2808
|
});
|
3272
2809
|
};
|
2810
|
+
(function(objectUtil2) {
|
2811
|
+
objectUtil2.mergeShapes = (first, second) => {
|
2812
|
+
return {
|
2813
|
+
...first,
|
2814
|
+
...second
|
2815
|
+
// second overwrites first
|
2816
|
+
};
|
2817
|
+
};
|
2818
|
+
})(objectUtil || (objectUtil = {}));
|
2819
|
+
AugmentFactory = (def) => (augmentation) => {
|
2820
|
+
return new ZodObject({
|
2821
|
+
...def,
|
2822
|
+
shape: () => ({
|
2823
|
+
...def.shape(),
|
2824
|
+
...augmentation
|
2825
|
+
})
|
2826
|
+
});
|
2827
|
+
};
|
3273
2828
|
ZodObject = class _ZodObject extends ZodType {
|
3274
2829
|
constructor() {
|
3275
2830
|
super(...arguments);
|
3276
2831
|
this._cached = null;
|
3277
2832
|
this.nonstrict = this.passthrough;
|
3278
|
-
this.augment = this.
|
2833
|
+
this.augment = AugmentFactory(this._def);
|
2834
|
+
this.extend = AugmentFactory(this._def);
|
3279
2835
|
}
|
3280
2836
|
_getCached() {
|
3281
2837
|
if (this._cached !== null)
|
@@ -3356,10 +2912,9 @@ var init_lib = __esm({
|
|
3356
2912
|
const syncPairs = [];
|
3357
2913
|
for (const pair of pairs) {
|
3358
2914
|
const key = await pair.key;
|
3359
|
-
const value = await pair.value;
|
3360
2915
|
syncPairs.push({
|
3361
2916
|
key,
|
3362
|
-
value,
|
2917
|
+
value: await pair.value,
|
3363
2918
|
alwaysSet: pair.alwaysSet
|
3364
2919
|
});
|
3365
2920
|
}
|
@@ -3406,31 +2961,8 @@ var init_lib = __esm({
|
|
3406
2961
|
unknownKeys: "passthrough"
|
3407
2962
|
});
|
3408
2963
|
}
|
3409
|
-
|
3410
|
-
|
3411
|
-
// <Augmentation extends ZodRawShape>(
|
3412
|
-
// augmentation: Augmentation
|
3413
|
-
// ): ZodObject<
|
3414
|
-
// extendShape<ReturnType<Def["shape"]>, Augmentation>,
|
3415
|
-
// Def["unknownKeys"],
|
3416
|
-
// Def["catchall"]
|
3417
|
-
// > => {
|
3418
|
-
// return new ZodObject({
|
3419
|
-
// ...def,
|
3420
|
-
// shape: () => ({
|
3421
|
-
// ...def.shape(),
|
3422
|
-
// ...augmentation,
|
3423
|
-
// }),
|
3424
|
-
// }) as any;
|
3425
|
-
// };
|
3426
|
-
extend(augmentation) {
|
3427
|
-
return new _ZodObject({
|
3428
|
-
...this._def,
|
3429
|
-
shape: () => ({
|
3430
|
-
...this._def.shape(),
|
3431
|
-
...augmentation
|
3432
|
-
})
|
3433
|
-
});
|
2964
|
+
setKey(key, schema4) {
|
2965
|
+
return this.augment({ [key]: schema4 });
|
3434
2966
|
}
|
3435
2967
|
/**
|
3436
2968
|
* Prior to zod@1.0.12 there was a bug in the
|
@@ -3441,73 +2973,11 @@ var init_lib = __esm({
|
|
3441
2973
|
const merged = new _ZodObject({
|
3442
2974
|
unknownKeys: merging._def.unknownKeys,
|
3443
2975
|
catchall: merging._def.catchall,
|
3444
|
-
shape: () => (
|
3445
|
-
...this._def.shape(),
|
3446
|
-
...merging._def.shape()
|
3447
|
-
}),
|
2976
|
+
shape: () => objectUtil.mergeShapes(this._def.shape(), merging._def.shape()),
|
3448
2977
|
typeName: ZodFirstPartyTypeKind.ZodObject
|
3449
2978
|
});
|
3450
2979
|
return merged;
|
3451
2980
|
}
|
3452
|
-
// merge<
|
3453
|
-
// Incoming extends AnyZodObject,
|
3454
|
-
// Augmentation extends Incoming["shape"],
|
3455
|
-
// NewOutput extends {
|
3456
|
-
// [k in keyof Augmentation | keyof Output]: k extends keyof Augmentation
|
3457
|
-
// ? Augmentation[k]["_output"]
|
3458
|
-
// : k extends keyof Output
|
3459
|
-
// ? Output[k]
|
3460
|
-
// : never;
|
3461
|
-
// },
|
3462
|
-
// NewInput extends {
|
3463
|
-
// [k in keyof Augmentation | keyof Input]: k extends keyof Augmentation
|
3464
|
-
// ? Augmentation[k]["_input"]
|
3465
|
-
// : k extends keyof Input
|
3466
|
-
// ? Input[k]
|
3467
|
-
// : never;
|
3468
|
-
// }
|
3469
|
-
// >(
|
3470
|
-
// merging: Incoming
|
3471
|
-
// ): ZodObject<
|
3472
|
-
// extendShape<T, ReturnType<Incoming["_def"]["shape"]>>,
|
3473
|
-
// Incoming["_def"]["unknownKeys"],
|
3474
|
-
// Incoming["_def"]["catchall"],
|
3475
|
-
// NewOutput,
|
3476
|
-
// NewInput
|
3477
|
-
// > {
|
3478
|
-
// const merged: any = new ZodObject({
|
3479
|
-
// unknownKeys: merging._def.unknownKeys,
|
3480
|
-
// catchall: merging._def.catchall,
|
3481
|
-
// shape: () =>
|
3482
|
-
// objectUtil.mergeShapes(this._def.shape(), merging._def.shape()),
|
3483
|
-
// typeName: ZodFirstPartyTypeKind.ZodObject,
|
3484
|
-
// }) as any;
|
3485
|
-
// return merged;
|
3486
|
-
// }
|
3487
|
-
setKey(key, schema4) {
|
3488
|
-
return this.augment({ [key]: schema4 });
|
3489
|
-
}
|
3490
|
-
// merge<Incoming extends AnyZodObject>(
|
3491
|
-
// merging: Incoming
|
3492
|
-
// ): //ZodObject<T & Incoming["_shape"], UnknownKeys, Catchall> = (merging) => {
|
3493
|
-
// ZodObject<
|
3494
|
-
// extendShape<T, ReturnType<Incoming["_def"]["shape"]>>,
|
3495
|
-
// Incoming["_def"]["unknownKeys"],
|
3496
|
-
// Incoming["_def"]["catchall"]
|
3497
|
-
// > {
|
3498
|
-
// // const mergedShape = objectUtil.mergeShapes(
|
3499
|
-
// // this._def.shape(),
|
3500
|
-
// // merging._def.shape()
|
3501
|
-
// // );
|
3502
|
-
// const merged: any = new ZodObject({
|
3503
|
-
// unknownKeys: merging._def.unknownKeys,
|
3504
|
-
// catchall: merging._def.catchall,
|
3505
|
-
// shape: () =>
|
3506
|
-
// objectUtil.mergeShapes(this._def.shape(), merging._def.shape()),
|
3507
|
-
// typeName: ZodFirstPartyTypeKind.ZodObject,
|
3508
|
-
// }) as any;
|
3509
|
-
// return merged;
|
3510
|
-
// }
|
3511
2981
|
catchall(index4) {
|
3512
2982
|
return new _ZodObject({
|
3513
2983
|
...this._def,
|
@@ -3516,10 +2986,9 @@ var init_lib = __esm({
|
|
3516
2986
|
}
|
3517
2987
|
pick(mask) {
|
3518
2988
|
const shape = {};
|
3519
|
-
util.objectKeys(mask).
|
3520
|
-
if (
|
2989
|
+
util.objectKeys(mask).map((key) => {
|
2990
|
+
if (this.shape[key])
|
3521
2991
|
shape[key] = this.shape[key];
|
3522
|
-
}
|
3523
2992
|
});
|
3524
2993
|
return new _ZodObject({
|
3525
2994
|
...this._def,
|
@@ -3528,8 +2997,8 @@ var init_lib = __esm({
|
|
3528
2997
|
}
|
3529
2998
|
omit(mask) {
|
3530
2999
|
const shape = {};
|
3531
|
-
util.objectKeys(this.shape).
|
3532
|
-
if (
|
3000
|
+
util.objectKeys(this.shape).map((key) => {
|
3001
|
+
if (util.objectKeys(mask).indexOf(key) === -1) {
|
3533
3002
|
shape[key] = this.shape[key];
|
3534
3003
|
}
|
3535
3004
|
});
|
@@ -3538,22 +3007,29 @@ var init_lib = __esm({
|
|
3538
3007
|
shape: () => shape
|
3539
3008
|
});
|
3540
3009
|
}
|
3541
|
-
/**
|
3542
|
-
* @deprecated
|
3543
|
-
*/
|
3544
3010
|
deepPartial() {
|
3545
3011
|
return deepPartialify(this);
|
3546
3012
|
}
|
3547
3013
|
partial(mask) {
|
3548
3014
|
const newShape = {};
|
3549
|
-
|
3550
|
-
|
3551
|
-
|
3552
|
-
|
3553
|
-
|
3015
|
+
if (mask) {
|
3016
|
+
util.objectKeys(this.shape).map((key) => {
|
3017
|
+
if (util.objectKeys(mask).indexOf(key) === -1) {
|
3018
|
+
newShape[key] = this.shape[key];
|
3019
|
+
} else {
|
3020
|
+
newShape[key] = this.shape[key].optional();
|
3021
|
+
}
|
3022
|
+
});
|
3023
|
+
return new _ZodObject({
|
3024
|
+
...this._def,
|
3025
|
+
shape: () => newShape
|
3026
|
+
});
|
3027
|
+
} else {
|
3028
|
+
for (const key in this.shape) {
|
3029
|
+
const fieldSchema = this.shape[key];
|
3554
3030
|
newShape[key] = fieldSchema.optional();
|
3555
3031
|
}
|
3556
|
-
}
|
3032
|
+
}
|
3557
3033
|
return new _ZodObject({
|
3558
3034
|
...this._def,
|
3559
3035
|
shape: () => newShape
|
@@ -3561,10 +3037,21 @@ var init_lib = __esm({
|
|
3561
3037
|
}
|
3562
3038
|
required(mask) {
|
3563
3039
|
const newShape = {};
|
3564
|
-
|
3565
|
-
|
3566
|
-
|
3567
|
-
|
3040
|
+
if (mask) {
|
3041
|
+
util.objectKeys(this.shape).map((key) => {
|
3042
|
+
if (util.objectKeys(mask).indexOf(key) === -1) {
|
3043
|
+
newShape[key] = this.shape[key];
|
3044
|
+
} else {
|
3045
|
+
const fieldSchema = this.shape[key];
|
3046
|
+
let newField = fieldSchema;
|
3047
|
+
while (newField instanceof ZodOptional) {
|
3048
|
+
newField = newField._def.innerType;
|
3049
|
+
}
|
3050
|
+
newShape[key] = newField;
|
3051
|
+
}
|
3052
|
+
});
|
3053
|
+
} else {
|
3054
|
+
for (const key in this.shape) {
|
3568
3055
|
const fieldSchema = this.shape[key];
|
3569
3056
|
let newField = fieldSchema;
|
3570
3057
|
while (newField instanceof ZodOptional) {
|
@@ -3572,7 +3059,7 @@ var init_lib = __esm({
|
|
3572
3059
|
}
|
3573
3060
|
newShape[key] = newField;
|
3574
3061
|
}
|
3575
|
-
}
|
3062
|
+
}
|
3576
3063
|
return new _ZodObject({
|
3577
3064
|
...this._def,
|
3578
3065
|
shape: () => newShape
|
@@ -3710,25 +3197,15 @@ var init_lib = __esm({
|
|
3710
3197
|
} else if (type instanceof ZodEnum) {
|
3711
3198
|
return type.options;
|
3712
3199
|
} else if (type instanceof ZodNativeEnum) {
|
3713
|
-
return
|
3200
|
+
return Object.keys(type.enum);
|
3714
3201
|
} else if (type instanceof ZodDefault) {
|
3715
3202
|
return getDiscriminator(type._def.innerType);
|
3716
3203
|
} else if (type instanceof ZodUndefined) {
|
3717
3204
|
return [void 0];
|
3718
3205
|
} else if (type instanceof ZodNull) {
|
3719
3206
|
return [null];
|
3720
|
-
} else if (type instanceof ZodOptional) {
|
3721
|
-
return [void 0, ...getDiscriminator(type.unwrap())];
|
3722
|
-
} else if (type instanceof ZodNullable) {
|
3723
|
-
return [null, ...getDiscriminator(type.unwrap())];
|
3724
|
-
} else if (type instanceof ZodBranded) {
|
3725
|
-
return getDiscriminator(type.unwrap());
|
3726
|
-
} else if (type instanceof ZodReadonly) {
|
3727
|
-
return getDiscriminator(type.unwrap());
|
3728
|
-
} else if (type instanceof ZodCatch) {
|
3729
|
-
return getDiscriminator(type._def.innerType);
|
3730
3207
|
} else {
|
3731
|
-
return
|
3208
|
+
return null;
|
3732
3209
|
}
|
3733
3210
|
};
|
3734
3211
|
ZodDiscriminatedUnion = class _ZodDiscriminatedUnion extends ZodType {
|
@@ -3788,7 +3265,7 @@ var init_lib = __esm({
|
|
3788
3265
|
const optionsMap = /* @__PURE__ */ new Map();
|
3789
3266
|
for (const type of options) {
|
3790
3267
|
const discriminatorValues = getDiscriminator(type.shape[discriminator]);
|
3791
|
-
if (!discriminatorValues
|
3268
|
+
if (!discriminatorValues) {
|
3792
3269
|
throw new Error(`A discriminator value for key \`${discriminator}\` could not be extracted from all schema options`);
|
3793
3270
|
}
|
3794
3271
|
for (const value of discriminatorValues) {
|
@@ -3892,7 +3369,7 @@ var init_lib = __esm({
|
|
3892
3369
|
});
|
3893
3370
|
status.dirty();
|
3894
3371
|
}
|
3895
|
-
const items =
|
3372
|
+
const items = ctx.data.map((item, itemIndex) => {
|
3896
3373
|
const schema4 = this._def.items[itemIndex] || this._def.rest;
|
3897
3374
|
if (!schema4)
|
3898
3375
|
return null;
|
@@ -3950,8 +3427,7 @@ var init_lib = __esm({
|
|
3950
3427
|
for (const key in ctx.data) {
|
3951
3428
|
pairs.push({
|
3952
3429
|
key: keyType._parse(new ParseInputLazyPath(ctx, key, ctx.path, key)),
|
3953
|
-
value: valueType._parse(new ParseInputLazyPath(ctx, ctx.data[key], ctx.path, key))
|
3954
|
-
alwaysSet: key in ctx.data
|
3430
|
+
value: valueType._parse(new ParseInputLazyPath(ctx, ctx.data[key], ctx.path, key))
|
3955
3431
|
});
|
3956
3432
|
}
|
3957
3433
|
if (ctx.common.async) {
|
@@ -3981,12 +3457,6 @@ var init_lib = __esm({
|
|
3981
3457
|
}
|
3982
3458
|
};
|
3983
3459
|
ZodMap = class extends ZodType {
|
3984
|
-
get keySchema() {
|
3985
|
-
return this._def.keyType;
|
3986
|
-
}
|
3987
|
-
get valueSchema() {
|
3988
|
-
return this._def.valueType;
|
3989
|
-
}
|
3990
3460
|
_parse(input) {
|
3991
3461
|
const { status, ctx } = this._processInputParams(input);
|
3992
3462
|
if (ctx.parsedType !== ZodParsedType.map) {
|
@@ -4181,29 +3651,27 @@ var init_lib = __esm({
|
|
4181
3651
|
const params = { errorMap: ctx.common.contextualErrorMap };
|
4182
3652
|
const fn = ctx.data;
|
4183
3653
|
if (this._def.returns instanceof ZodPromise) {
|
4184
|
-
|
4185
|
-
return OK(async function(...args) {
|
3654
|
+
return OK(async (...args) => {
|
4186
3655
|
const error2 = new ZodError([]);
|
4187
|
-
const parsedArgs = await
|
3656
|
+
const parsedArgs = await this._def.args.parseAsync(args, params).catch((e) => {
|
4188
3657
|
error2.addIssue(makeArgsIssue(args, e));
|
4189
3658
|
throw error2;
|
4190
3659
|
});
|
4191
|
-
const result = await
|
4192
|
-
const parsedReturns = await
|
3660
|
+
const result = await fn(...parsedArgs);
|
3661
|
+
const parsedReturns = await this._def.returns._def.type.parseAsync(result, params).catch((e) => {
|
4193
3662
|
error2.addIssue(makeReturnsIssue(result, e));
|
4194
3663
|
throw error2;
|
4195
3664
|
});
|
4196
3665
|
return parsedReturns;
|
4197
3666
|
});
|
4198
3667
|
} else {
|
4199
|
-
|
4200
|
-
|
4201
|
-
const parsedArgs = me._def.args.safeParse(args, params);
|
3668
|
+
return OK((...args) => {
|
3669
|
+
const parsedArgs = this._def.args.safeParse(args, params);
|
4202
3670
|
if (!parsedArgs.success) {
|
4203
3671
|
throw new ZodError([makeArgsIssue(args, parsedArgs.error)]);
|
4204
3672
|
}
|
4205
|
-
const result =
|
4206
|
-
const parsedReturns =
|
3673
|
+
const result = fn(...parsedArgs.data);
|
3674
|
+
const parsedReturns = this._def.returns.safeParse(result, params);
|
4207
3675
|
if (!parsedReturns.success) {
|
4208
3676
|
throw new ZodError([makeReturnsIssue(result, parsedReturns.error)]);
|
4209
3677
|
}
|
@@ -4268,7 +3736,6 @@ var init_lib = __esm({
|
|
4268
3736
|
if (input.data !== this._def.value) {
|
4269
3737
|
const ctx = this._getOrReturnCtx(input);
|
4270
3738
|
addIssueToContext(ctx, {
|
4271
|
-
received: ctx.data,
|
4272
3739
|
code: ZodIssueCode.invalid_literal,
|
4273
3740
|
expected: this._def.value
|
4274
3741
|
});
|
@@ -4287,11 +3754,7 @@ var init_lib = __esm({
|
|
4287
3754
|
...processCreateParams(params)
|
4288
3755
|
});
|
4289
3756
|
};
|
4290
|
-
ZodEnum = class
|
4291
|
-
constructor() {
|
4292
|
-
super(...arguments);
|
4293
|
-
_ZodEnum_cache.set(this, void 0);
|
4294
|
-
}
|
3757
|
+
ZodEnum = class extends ZodType {
|
4295
3758
|
_parse(input) {
|
4296
3759
|
if (typeof input.data !== "string") {
|
4297
3760
|
const ctx = this._getOrReturnCtx(input);
|
@@ -4303,10 +3766,7 @@ var init_lib = __esm({
|
|
4303
3766
|
});
|
4304
3767
|
return INVALID;
|
4305
3768
|
}
|
4306
|
-
if (
|
4307
|
-
__classPrivateFieldSet(this, _ZodEnum_cache, new Set(this._def.values), "f");
|
4308
|
-
}
|
4309
|
-
if (!__classPrivateFieldGet(this, _ZodEnum_cache, "f").has(input.data)) {
|
3769
|
+
if (this._def.values.indexOf(input.data) === -1) {
|
4310
3770
|
const ctx = this._getOrReturnCtx(input);
|
4311
3771
|
const expectedValues = this._def.values;
|
4312
3772
|
addIssueToContext(ctx, {
|
@@ -4342,26 +3802,9 @@ var init_lib = __esm({
|
|
4342
3802
|
}
|
4343
3803
|
return enumValues;
|
4344
3804
|
}
|
4345
|
-
extract(values, newDef = this._def) {
|
4346
|
-
return _ZodEnum.create(values, {
|
4347
|
-
...this._def,
|
4348
|
-
...newDef
|
4349
|
-
});
|
4350
|
-
}
|
4351
|
-
exclude(values, newDef = this._def) {
|
4352
|
-
return _ZodEnum.create(this.options.filter((opt) => !values.includes(opt)), {
|
4353
|
-
...this._def,
|
4354
|
-
...newDef
|
4355
|
-
});
|
4356
|
-
}
|
4357
3805
|
};
|
4358
|
-
_ZodEnum_cache = /* @__PURE__ */ new WeakMap();
|
4359
3806
|
ZodEnum.create = createZodEnum;
|
4360
3807
|
ZodNativeEnum = class extends ZodType {
|
4361
|
-
constructor() {
|
4362
|
-
super(...arguments);
|
4363
|
-
_ZodNativeEnum_cache.set(this, void 0);
|
4364
|
-
}
|
4365
3808
|
_parse(input) {
|
4366
3809
|
const nativeEnumValues = util.getValidEnumValues(this._def.values);
|
4367
3810
|
const ctx = this._getOrReturnCtx(input);
|
@@ -4374,10 +3817,7 @@ var init_lib = __esm({
|
|
4374
3817
|
});
|
4375
3818
|
return INVALID;
|
4376
3819
|
}
|
4377
|
-
if (
|
4378
|
-
__classPrivateFieldSet(this, _ZodNativeEnum_cache, new Set(util.getValidEnumValues(this._def.values)), "f");
|
4379
|
-
}
|
4380
|
-
if (!__classPrivateFieldGet(this, _ZodNativeEnum_cache, "f").has(input.data)) {
|
3820
|
+
if (nativeEnumValues.indexOf(input.data) === -1) {
|
4381
3821
|
const expectedValues = util.objectValues(nativeEnumValues);
|
4382
3822
|
addIssueToContext(ctx, {
|
4383
3823
|
received: ctx.data,
|
@@ -4392,7 +3832,6 @@ var init_lib = __esm({
|
|
4392
3832
|
return this._def.values;
|
4393
3833
|
}
|
4394
3834
|
};
|
4395
|
-
_ZodNativeEnum_cache = /* @__PURE__ */ new WeakMap();
|
4396
3835
|
ZodNativeEnum.create = (values, params) => {
|
4397
3836
|
return new ZodNativeEnum({
|
4398
3837
|
values,
|
@@ -4401,9 +3840,6 @@ var init_lib = __esm({
|
|
4401
3840
|
});
|
4402
3841
|
};
|
4403
3842
|
ZodPromise = class extends ZodType {
|
4404
|
-
unwrap() {
|
4405
|
-
return this._def.type;
|
4406
|
-
}
|
4407
3843
|
_parse(input) {
|
4408
3844
|
const { ctx } = this._processInputParams(input);
|
4409
3845
|
if (ctx.parsedType !== ZodParsedType.promise && ctx.common.async === false) {
|
@@ -4440,56 +3876,38 @@ var init_lib = __esm({
|
|
4440
3876
|
_parse(input) {
|
4441
3877
|
const { status, ctx } = this._processInputParams(input);
|
4442
3878
|
const effect = this._def.effect || null;
|
4443
|
-
const checkCtx = {
|
4444
|
-
addIssue: (arg) => {
|
4445
|
-
addIssueToContext(ctx, arg);
|
4446
|
-
if (arg.fatal) {
|
4447
|
-
status.abort();
|
4448
|
-
} else {
|
4449
|
-
status.dirty();
|
4450
|
-
}
|
4451
|
-
},
|
4452
|
-
get path() {
|
4453
|
-
return ctx.path;
|
4454
|
-
}
|
4455
|
-
};
|
4456
|
-
checkCtx.addIssue = checkCtx.addIssue.bind(checkCtx);
|
4457
3879
|
if (effect.type === "preprocess") {
|
4458
|
-
const processed = effect.transform(ctx.data
|
3880
|
+
const processed = effect.transform(ctx.data);
|
4459
3881
|
if (ctx.common.async) {
|
4460
|
-
return Promise.resolve(processed).then(
|
4461
|
-
|
4462
|
-
return INVALID;
|
4463
|
-
const result = await this._def.schema._parseAsync({
|
3882
|
+
return Promise.resolve(processed).then((processed2) => {
|
3883
|
+
return this._def.schema._parseAsync({
|
4464
3884
|
data: processed2,
|
4465
3885
|
path: ctx.path,
|
4466
3886
|
parent: ctx
|
4467
3887
|
});
|
4468
|
-
if (result.status === "aborted")
|
4469
|
-
return INVALID;
|
4470
|
-
if (result.status === "dirty")
|
4471
|
-
return DIRTY(result.value);
|
4472
|
-
if (status.value === "dirty")
|
4473
|
-
return DIRTY(result.value);
|
4474
|
-
return result;
|
4475
3888
|
});
|
4476
3889
|
} else {
|
4477
|
-
|
4478
|
-
return INVALID;
|
4479
|
-
const result = this._def.schema._parseSync({
|
3890
|
+
return this._def.schema._parseSync({
|
4480
3891
|
data: processed,
|
4481
3892
|
path: ctx.path,
|
4482
3893
|
parent: ctx
|
4483
3894
|
});
|
4484
|
-
if (result.status === "aborted")
|
4485
|
-
return INVALID;
|
4486
|
-
if (result.status === "dirty")
|
4487
|
-
return DIRTY(result.value);
|
4488
|
-
if (status.value === "dirty")
|
4489
|
-
return DIRTY(result.value);
|
4490
|
-
return result;
|
4491
3895
|
}
|
4492
3896
|
}
|
3897
|
+
const checkCtx = {
|
3898
|
+
addIssue: (arg) => {
|
3899
|
+
addIssueToContext(ctx, arg);
|
3900
|
+
if (arg.fatal) {
|
3901
|
+
status.abort();
|
3902
|
+
} else {
|
3903
|
+
status.dirty();
|
3904
|
+
}
|
3905
|
+
},
|
3906
|
+
get path() {
|
3907
|
+
return ctx.path;
|
3908
|
+
}
|
3909
|
+
};
|
3910
|
+
checkCtx.addIssue = checkCtx.addIssue.bind(checkCtx);
|
4493
3911
|
if (effect.type === "refinement") {
|
4494
3912
|
const executeRefinement = (acc) => {
|
4495
3913
|
const result = effect.refinement(acc, checkCtx);
|
@@ -4632,45 +4050,26 @@ var init_lib = __esm({
|
|
4632
4050
|
ZodCatch = class extends ZodType {
|
4633
4051
|
_parse(input) {
|
4634
4052
|
const { ctx } = this._processInputParams(input);
|
4635
|
-
const newCtx = {
|
4636
|
-
...ctx,
|
4637
|
-
common: {
|
4638
|
-
...ctx.common,
|
4639
|
-
issues: []
|
4640
|
-
}
|
4641
|
-
};
|
4642
4053
|
const result = this._def.innerType._parse({
|
4643
|
-
data:
|
4644
|
-
path:
|
4645
|
-
parent:
|
4646
|
-
...newCtx
|
4647
|
-
}
|
4054
|
+
data: ctx.data,
|
4055
|
+
path: ctx.path,
|
4056
|
+
parent: ctx
|
4648
4057
|
});
|
4649
4058
|
if (isAsync(result)) {
|
4650
4059
|
return result.then((result2) => {
|
4651
4060
|
return {
|
4652
4061
|
status: "valid",
|
4653
|
-
value: result2.status === "valid" ? result2.value : this._def.
|
4654
|
-
get error() {
|
4655
|
-
return new ZodError(newCtx.common.issues);
|
4656
|
-
},
|
4657
|
-
input: newCtx.data
|
4658
|
-
})
|
4062
|
+
value: result2.status === "valid" ? result2.value : this._def.defaultValue()
|
4659
4063
|
};
|
4660
4064
|
});
|
4661
4065
|
} else {
|
4662
4066
|
return {
|
4663
4067
|
status: "valid",
|
4664
|
-
value: result.status === "valid" ? result.value : this._def.
|
4665
|
-
get error() {
|
4666
|
-
return new ZodError(newCtx.common.issues);
|
4667
|
-
},
|
4668
|
-
input: newCtx.data
|
4669
|
-
})
|
4068
|
+
value: result.status === "valid" ? result.value : this._def.defaultValue()
|
4670
4069
|
};
|
4671
4070
|
}
|
4672
4071
|
}
|
4673
|
-
|
4072
|
+
removeDefault() {
|
4674
4073
|
return this._def.innerType;
|
4675
4074
|
}
|
4676
4075
|
};
|
@@ -4678,7 +4077,7 @@ var init_lib = __esm({
|
|
4678
4077
|
return new ZodCatch({
|
4679
4078
|
innerType: type,
|
4680
4079
|
typeName: ZodFirstPartyTypeKind.ZodCatch,
|
4681
|
-
|
4080
|
+
defaultValue: typeof params.default === "function" ? params.default : () => params.default,
|
4682
4081
|
...processCreateParams(params)
|
4683
4082
|
});
|
4684
4083
|
};
|
@@ -4773,25 +4172,6 @@ var init_lib = __esm({
|
|
4773
4172
|
});
|
4774
4173
|
}
|
4775
4174
|
};
|
4776
|
-
ZodReadonly = class extends ZodType {
|
4777
|
-
_parse(input) {
|
4778
|
-
const result = this._def.innerType._parse(input);
|
4779
|
-
if (isValid(result)) {
|
4780
|
-
result.value = Object.freeze(result.value);
|
4781
|
-
}
|
4782
|
-
return result;
|
4783
|
-
}
|
4784
|
-
unwrap() {
|
4785
|
-
return this._def.innerType;
|
4786
|
-
}
|
4787
|
-
};
|
4788
|
-
ZodReadonly.create = (type, params) => {
|
4789
|
-
return new ZodReadonly({
|
4790
|
-
innerType: type,
|
4791
|
-
typeName: ZodFirstPartyTypeKind.ZodReadonly,
|
4792
|
-
...processCreateParams(params)
|
4793
|
-
});
|
4794
|
-
};
|
4795
4175
|
late = {
|
4796
4176
|
object: ZodObject.lazycreate
|
4797
4177
|
};
|
@@ -4831,7 +4211,6 @@ var init_lib = __esm({
|
|
4831
4211
|
ZodFirstPartyTypeKind2["ZodPromise"] = "ZodPromise";
|
4832
4212
|
ZodFirstPartyTypeKind2["ZodBranded"] = "ZodBranded";
|
4833
4213
|
ZodFirstPartyTypeKind2["ZodPipeline"] = "ZodPipeline";
|
4834
|
-
ZodFirstPartyTypeKind2["ZodReadonly"] = "ZodReadonly";
|
4835
4214
|
})(ZodFirstPartyTypeKind || (ZodFirstPartyTypeKind = {}));
|
4836
4215
|
stringType = ZodString.create;
|
4837
4216
|
numberType = ZodNumber.create;
|
@@ -4870,10 +4249,7 @@ var init_lib = __esm({
|
|
4870
4249
|
coerce = {
|
4871
4250
|
string: (arg) => ZodString.create({ ...arg, coerce: true }),
|
4872
4251
|
number: (arg) => ZodNumber.create({ ...arg, coerce: true }),
|
4873
|
-
boolean: (arg) => ZodBoolean.create({
|
4874
|
-
...arg,
|
4875
|
-
coerce: true
|
4876
|
-
}),
|
4252
|
+
boolean: (arg) => ZodBoolean.create({ ...arg, coerce: true }),
|
4877
4253
|
bigint: (arg) => ZodBigInt.create({ ...arg, coerce: true }),
|
4878
4254
|
date: (arg) => ZodDate.create({ ...arg, coerce: true })
|
4879
4255
|
};
|
@@ -5695,6 +5071,7 @@ var init_utils = __esm({
|
|
5695
5071
|
init_mysqlSchema();
|
5696
5072
|
init_pgSchema();
|
5697
5073
|
init_sqliteSchema();
|
5074
|
+
init_source();
|
5698
5075
|
init_global();
|
5699
5076
|
copy = (it) => {
|
5700
5077
|
return JSON.parse(JSON.stringify(it));
|
@@ -5899,9 +5276,10 @@ var init_serializer = __esm({
|
|
5899
5276
|
"src/serializer/index.ts"() {
|
5900
5277
|
"use strict";
|
5901
5278
|
glob = __toESM(require("glob"));
|
5279
|
+
init_source();
|
5902
5280
|
init_views();
|
5903
|
-
sqlToStr = (
|
5904
|
-
return
|
5281
|
+
sqlToStr = (sql2) => {
|
5282
|
+
return sql2.toQuery({
|
5905
5283
|
escapeName: () => {
|
5906
5284
|
throw new Error("we don't support params for `sql` default values");
|
5907
5285
|
},
|
@@ -6186,33 +5564,6 @@ var init_cli = __esm({
|
|
6186
5564
|
}
|
6187
5565
|
});
|
6188
5566
|
|
6189
|
-
// src/cli/validations/studio.ts
|
6190
|
-
var credentials, studioCliParams, studioConfig;
|
6191
|
-
var init_studio = __esm({
|
6192
|
-
"src/cli/validations/studio.ts"() {
|
6193
|
-
"use strict";
|
6194
|
-
init_lib();
|
6195
|
-
init_mysql();
|
6196
|
-
init_sqlite();
|
6197
|
-
init_schemaValidator();
|
6198
|
-
init_pg();
|
6199
|
-
credentials = intersectionType(
|
6200
|
-
postgresCredentials,
|
6201
|
-
mysqlCredentials,
|
6202
|
-
sqliteCredentials
|
6203
|
-
);
|
6204
|
-
studioCliParams = objectType({
|
6205
|
-
port: coerce.number().optional().default(4983),
|
6206
|
-
host: stringType().optional().default("127.0.0.1"),
|
6207
|
-
config: stringType().optional()
|
6208
|
-
});
|
6209
|
-
studioConfig = objectType({
|
6210
|
-
dialect: dialect3,
|
6211
|
-
schema: unionType([stringType(), stringType().array()])
|
6212
|
-
});
|
6213
|
-
}
|
6214
|
-
});
|
6215
|
-
|
6216
5567
|
// src/cli/commands/_es5.ts
|
6217
5568
|
var es5_exports = {};
|
6218
5569
|
__export(es5_exports, {
|
@@ -6229,7 +5580,7 @@ var init_es5 = __esm({
|
|
6229
5580
|
|
6230
5581
|
// node_modules/.pnpm/ms@2.1.2/node_modules/ms/index.js
|
6231
5582
|
var require_ms = __commonJS({
|
6232
|
-
"node_modules/.pnpm/ms@2.1.2/node_modules/ms/index.js"(
|
5583
|
+
"node_modules/.pnpm/ms@2.1.2/node_modules/ms/index.js"(exports, module2) {
|
6233
5584
|
var s = 1e3;
|
6234
5585
|
var m = s * 60;
|
6235
5586
|
var h = m * 60;
|
@@ -6345,7 +5696,7 @@ var require_ms = __commonJS({
|
|
6345
5696
|
|
6346
5697
|
// node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/common.js
|
6347
5698
|
var require_common = __commonJS({
|
6348
|
-
"node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/common.js"(
|
5699
|
+
"node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/common.js"(exports, module2) {
|
6349
5700
|
function setup(env2) {
|
6350
5701
|
createDebug.debug = createDebug;
|
6351
5702
|
createDebug.default = createDebug;
|
@@ -6508,13 +5859,13 @@ var require_common = __commonJS({
|
|
6508
5859
|
|
6509
5860
|
// node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/browser.js
|
6510
5861
|
var require_browser = __commonJS({
|
6511
|
-
"node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/browser.js"(
|
6512
|
-
|
6513
|
-
|
6514
|
-
|
6515
|
-
|
6516
|
-
|
6517
|
-
|
5862
|
+
"node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/browser.js"(exports, module2) {
|
5863
|
+
exports.formatArgs = formatArgs;
|
5864
|
+
exports.save = save;
|
5865
|
+
exports.load = load;
|
5866
|
+
exports.useColors = useColors;
|
5867
|
+
exports.storage = localstorage();
|
5868
|
+
exports.destroy = /* @__PURE__ */ (() => {
|
6518
5869
|
let warned = false;
|
6519
5870
|
return () => {
|
6520
5871
|
if (!warned) {
|
@@ -6523,7 +5874,7 @@ var require_browser = __commonJS({
|
|
6523
5874
|
}
|
6524
5875
|
};
|
6525
5876
|
})();
|
6526
|
-
|
5877
|
+
exports.colors = [
|
6527
5878
|
"#0000CC",
|
6528
5879
|
"#0000FF",
|
6529
5880
|
"#0033CC",
|
@@ -6634,14 +5985,14 @@ var require_browser = __commonJS({
|
|
6634
5985
|
});
|
6635
5986
|
args.splice(lastC, 0, c);
|
6636
5987
|
}
|
6637
|
-
|
5988
|
+
exports.log = console.debug || console.log || (() => {
|
6638
5989
|
});
|
6639
5990
|
function save(namespaces) {
|
6640
5991
|
try {
|
6641
5992
|
if (namespaces) {
|
6642
|
-
|
5993
|
+
exports.storage.setItem("debug", namespaces);
|
6643
5994
|
} else {
|
6644
|
-
|
5995
|
+
exports.storage.removeItem("debug");
|
6645
5996
|
}
|
6646
5997
|
} catch (error2) {
|
6647
5998
|
}
|
@@ -6649,7 +6000,7 @@ var require_browser = __commonJS({
|
|
6649
6000
|
function load() {
|
6650
6001
|
let r;
|
6651
6002
|
try {
|
6652
|
-
r =
|
6003
|
+
r = exports.storage.getItem("debug");
|
6653
6004
|
} catch (error2) {
|
6654
6005
|
}
|
6655
6006
|
if (!r && typeof process !== "undefined" && "env" in process) {
|
@@ -6663,7 +6014,7 @@ var require_browser = __commonJS({
|
|
6663
6014
|
} catch (error2) {
|
6664
6015
|
}
|
6665
6016
|
}
|
6666
|
-
module2.exports = require_common()(
|
6017
|
+
module2.exports = require_common()(exports);
|
6667
6018
|
var { formatters } = module2.exports;
|
6668
6019
|
formatters.j = function(v) {
|
6669
6020
|
try {
|
@@ -6677,7 +6028,7 @@ var require_browser = __commonJS({
|
|
6677
6028
|
|
6678
6029
|
// node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag/index.js
|
6679
6030
|
var require_has_flag = __commonJS({
|
6680
|
-
"node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag/index.js"(
|
6031
|
+
"node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag/index.js"(exports, module2) {
|
6681
6032
|
"use strict";
|
6682
6033
|
module2.exports = (flag, argv = process.argv) => {
|
6683
6034
|
const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
|
@@ -6690,7 +6041,7 @@ var require_has_flag = __commonJS({
|
|
6690
6041
|
|
6691
6042
|
// node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/index.js
|
6692
6043
|
var require_supports_color = __commonJS({
|
6693
|
-
"node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/index.js"(
|
6044
|
+
"node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/index.js"(exports, module2) {
|
6694
6045
|
"use strict";
|
6695
6046
|
var os2 = require("os");
|
6696
6047
|
var tty2 = require("tty");
|
@@ -6792,25 +6143,25 @@ var require_supports_color = __commonJS({
|
|
6792
6143
|
|
6793
6144
|
// node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/node.js
|
6794
6145
|
var require_node = __commonJS({
|
6795
|
-
"node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/node.js"(
|
6146
|
+
"node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/node.js"(exports, module2) {
|
6796
6147
|
var tty2 = require("tty");
|
6797
6148
|
var util2 = require("util");
|
6798
|
-
|
6799
|
-
|
6800
|
-
|
6801
|
-
|
6802
|
-
|
6803
|
-
|
6804
|
-
|
6149
|
+
exports.init = init;
|
6150
|
+
exports.log = log;
|
6151
|
+
exports.formatArgs = formatArgs;
|
6152
|
+
exports.save = save;
|
6153
|
+
exports.load = load;
|
6154
|
+
exports.useColors = useColors;
|
6155
|
+
exports.destroy = util2.deprecate(
|
6805
6156
|
() => {
|
6806
6157
|
},
|
6807
6158
|
"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."
|
6808
6159
|
);
|
6809
|
-
|
6160
|
+
exports.colors = [6, 2, 3, 4, 5, 1];
|
6810
6161
|
try {
|
6811
6162
|
const supportsColor2 = require_supports_color();
|
6812
6163
|
if (supportsColor2 && (supportsColor2.stderr || supportsColor2).level >= 2) {
|
6813
|
-
|
6164
|
+
exports.colors = [
|
6814
6165
|
20,
|
6815
6166
|
21,
|
6816
6167
|
26,
|
@@ -6891,7 +6242,7 @@ var require_node = __commonJS({
|
|
6891
6242
|
}
|
6892
6243
|
} catch (error2) {
|
6893
6244
|
}
|
6894
|
-
|
6245
|
+
exports.inspectOpts = Object.keys(process.env).filter((key) => {
|
6895
6246
|
return /^debug_/i.test(key);
|
6896
6247
|
}).reduce((obj, key) => {
|
6897
6248
|
const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_2, k) => {
|
@@ -6911,7 +6262,7 @@ var require_node = __commonJS({
|
|
6911
6262
|
return obj;
|
6912
6263
|
}, {});
|
6913
6264
|
function useColors() {
|
6914
|
-
return "colors" in
|
6265
|
+
return "colors" in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty2.isatty(process.stderr.fd);
|
6915
6266
|
}
|
6916
6267
|
function formatArgs(args) {
|
6917
6268
|
const { namespace: name, useColors: useColors2 } = this;
|
@@ -6926,7 +6277,7 @@ var require_node = __commonJS({
|
|
6926
6277
|
}
|
6927
6278
|
}
|
6928
6279
|
function getDate() {
|
6929
|
-
if (
|
6280
|
+
if (exports.inspectOpts.hideDate) {
|
6930
6281
|
return "";
|
6931
6282
|
}
|
6932
6283
|
return (/* @__PURE__ */ new Date()).toISOString() + " ";
|
@@ -6946,12 +6297,12 @@ var require_node = __commonJS({
|
|
6946
6297
|
}
|
6947
6298
|
function init(debug) {
|
6948
6299
|
debug.inspectOpts = {};
|
6949
|
-
const keys = Object.keys(
|
6300
|
+
const keys = Object.keys(exports.inspectOpts);
|
6950
6301
|
for (let i = 0; i < keys.length; i++) {
|
6951
|
-
debug.inspectOpts[keys[i]] =
|
6302
|
+
debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];
|
6952
6303
|
}
|
6953
6304
|
}
|
6954
|
-
module2.exports = require_common()(
|
6305
|
+
module2.exports = require_common()(exports);
|
6955
6306
|
var { formatters } = module2.exports;
|
6956
6307
|
formatters.o = function(v) {
|
6957
6308
|
this.inspectOpts.colors = this.useColors;
|
@@ -6966,7 +6317,7 @@ var require_node = __commonJS({
|
|
6966
6317
|
|
6967
6318
|
// node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/index.js
|
6968
6319
|
var require_src2 = __commonJS({
|
6969
|
-
"node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/index.js"(
|
6320
|
+
"node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/index.js"(exports, module2) {
|
6970
6321
|
if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
|
6971
6322
|
module2.exports = require_browser();
|
6972
6323
|
} else {
|
@@ -6975,11 +6326,11 @@ var require_src2 = __commonJS({
|
|
6975
6326
|
}
|
6976
6327
|
});
|
6977
6328
|
|
6978
|
-
// node_modules/.pnpm/esbuild-register@3.5.0_esbuild@0.19.
|
6329
|
+
// node_modules/.pnpm/esbuild-register@3.5.0_esbuild@0.19.7/node_modules/esbuild-register/dist/node.js
|
6979
6330
|
var require_node2 = __commonJS({
|
6980
|
-
"node_modules/.pnpm/esbuild-register@3.5.0_esbuild@0.19.
|
6331
|
+
"node_modules/.pnpm/esbuild-register@3.5.0_esbuild@0.19.7/node_modules/esbuild-register/dist/node.js"(exports) {
|
6981
6332
|
"use strict";
|
6982
|
-
Object.defineProperty(
|
6333
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6983
6334
|
function _interopRequireDefault2(obj) {
|
6984
6335
|
return obj && obj.__esModule ? obj : { default: obj };
|
6985
6336
|
}
|
@@ -7008,15 +6359,15 @@ var require_node2 = __commonJS({
|
|
7008
6359
|
var __toModule = (module22) => {
|
7009
6360
|
return __exportStar(__markAsModule(__defProp2(module22 != null ? __create2(__getProtoOf2(module22)) : {}, "default", module22 && module22.__esModule && "default" in module22 ? { get: () => module22.default, enumerable: true } : { value: module22, enumerable: true })), module22);
|
7010
6361
|
};
|
7011
|
-
var require_base64 = __commonJS2((
|
6362
|
+
var require_base64 = __commonJS2((exports2) => {
|
7012
6363
|
var intToCharMap = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");
|
7013
|
-
|
6364
|
+
exports2.encode = function(number) {
|
7014
6365
|
if (0 <= number && number < intToCharMap.length) {
|
7015
6366
|
return intToCharMap[number];
|
7016
6367
|
}
|
7017
6368
|
throw new TypeError("Must be between 0 and 63: " + number);
|
7018
6369
|
};
|
7019
|
-
|
6370
|
+
exports2.decode = function(charCode) {
|
7020
6371
|
var bigA = 65;
|
7021
6372
|
var bigZ = 90;
|
7022
6373
|
var littleA = 97;
|
@@ -7045,7 +6396,7 @@ var require_node2 = __commonJS({
|
|
7045
6396
|
return -1;
|
7046
6397
|
};
|
7047
6398
|
});
|
7048
|
-
var require_base64_vlq = __commonJS2((
|
6399
|
+
var require_base64_vlq = __commonJS2((exports2) => {
|
7049
6400
|
var base64 = require_base64();
|
7050
6401
|
var VLQ_BASE_SHIFT = 5;
|
7051
6402
|
var VLQ_BASE = 1 << VLQ_BASE_SHIFT;
|
@@ -7059,7 +6410,7 @@ var require_node2 = __commonJS({
|
|
7059
6410
|
var shifted = aValue >> 1;
|
7060
6411
|
return isNegative ? -shifted : shifted;
|
7061
6412
|
}
|
7062
|
-
|
6413
|
+
exports2.encode = function base64VLQ_encode(aValue) {
|
7063
6414
|
var encoded = "";
|
7064
6415
|
var digit;
|
7065
6416
|
var vlq = toVLQSigned(aValue);
|
@@ -7073,7 +6424,7 @@ var require_node2 = __commonJS({
|
|
7073
6424
|
} while (vlq > 0);
|
7074
6425
|
return encoded;
|
7075
6426
|
};
|
7076
|
-
|
6427
|
+
exports2.decode = function base64VLQ_decode(aStr, aIndex, aOutParam) {
|
7077
6428
|
var strLen = aStr.length;
|
7078
6429
|
var result = 0;
|
7079
6430
|
var shift = 0;
|
@@ -7095,7 +6446,7 @@ var require_node2 = __commonJS({
|
|
7095
6446
|
aOutParam.rest = aIndex;
|
7096
6447
|
};
|
7097
6448
|
});
|
7098
|
-
var require_util = __commonJS2((
|
6449
|
+
var require_util = __commonJS2((exports2) => {
|
7099
6450
|
function getArg(aArgs, aName, aDefaultValue) {
|
7100
6451
|
if (aName in aArgs) {
|
7101
6452
|
return aArgs[aName];
|
@@ -7105,7 +6456,7 @@ var require_node2 = __commonJS({
|
|
7105
6456
|
throw new Error('"' + aName + '" is a required argument.');
|
7106
6457
|
}
|
7107
6458
|
}
|
7108
|
-
|
6459
|
+
exports2.getArg = getArg;
|
7109
6460
|
var urlRegexp = /^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.-]*)(?::(\d+))?(.*)$/;
|
7110
6461
|
var dataUrlRegexp = /^data:.+\,.+$/;
|
7111
6462
|
function urlParse(aUrl) {
|
@@ -7121,7 +6472,7 @@ var require_node2 = __commonJS({
|
|
7121
6472
|
path: match2[5]
|
7122
6473
|
};
|
7123
6474
|
}
|
7124
|
-
|
6475
|
+
exports2.urlParse = urlParse;
|
7125
6476
|
function urlGenerate(aParsedUrl) {
|
7126
6477
|
var url = "";
|
7127
6478
|
if (aParsedUrl.scheme) {
|
@@ -7142,7 +6493,7 @@ var require_node2 = __commonJS({
|
|
7142
6493
|
}
|
7143
6494
|
return url;
|
7144
6495
|
}
|
7145
|
-
|
6496
|
+
exports2.urlGenerate = urlGenerate;
|
7146
6497
|
function normalize(aPath) {
|
7147
6498
|
var path2 = aPath;
|
7148
6499
|
var url = urlParse(aPath);
|
@@ -7152,7 +6503,7 @@ var require_node2 = __commonJS({
|
|
7152
6503
|
}
|
7153
6504
|
path2 = url.path;
|
7154
6505
|
}
|
7155
|
-
var isAbsolute =
|
6506
|
+
var isAbsolute = exports2.isAbsolute(path2);
|
7156
6507
|
var parts = path2.split(/\/+/);
|
7157
6508
|
for (var part, up = 0, i = parts.length - 1; i >= 0; i--) {
|
7158
6509
|
part = parts[i];
|
@@ -7180,7 +6531,7 @@ var require_node2 = __commonJS({
|
|
7180
6531
|
}
|
7181
6532
|
return path2;
|
7182
6533
|
}
|
7183
|
-
|
6534
|
+
exports2.normalize = normalize;
|
7184
6535
|
function join2(aRoot, aPath) {
|
7185
6536
|
if (aRoot === "") {
|
7186
6537
|
aRoot = ".";
|
@@ -7213,8 +6564,8 @@ var require_node2 = __commonJS({
|
|
7213
6564
|
}
|
7214
6565
|
return joined;
|
7215
6566
|
}
|
7216
|
-
|
7217
|
-
|
6567
|
+
exports2.join = join2;
|
6568
|
+
exports2.isAbsolute = function(aPath) {
|
7218
6569
|
return aPath.charAt(0) === "/" || urlRegexp.test(aPath);
|
7219
6570
|
};
|
7220
6571
|
function relative(aRoot, aPath) {
|
@@ -7236,7 +6587,7 @@ var require_node2 = __commonJS({
|
|
7236
6587
|
}
|
7237
6588
|
return Array(level + 1).join("../") + aPath.substr(aRoot.length + 1);
|
7238
6589
|
}
|
7239
|
-
|
6590
|
+
exports2.relative = relative;
|
7240
6591
|
var supportsNullProto = function() {
|
7241
6592
|
var obj = /* @__PURE__ */ Object.create(null);
|
7242
6593
|
return !("__proto__" in obj);
|
@@ -7250,14 +6601,14 @@ var require_node2 = __commonJS({
|
|
7250
6601
|
}
|
7251
6602
|
return aStr;
|
7252
6603
|
}
|
7253
|
-
|
6604
|
+
exports2.toSetString = supportsNullProto ? identity : toSetString;
|
7254
6605
|
function fromSetString(aStr) {
|
7255
6606
|
if (isProtoString(aStr)) {
|
7256
6607
|
return aStr.slice(1);
|
7257
6608
|
}
|
7258
6609
|
return aStr;
|
7259
6610
|
}
|
7260
|
-
|
6611
|
+
exports2.fromSetString = supportsNullProto ? identity : fromSetString;
|
7261
6612
|
function isProtoString(s) {
|
7262
6613
|
if (!s) {
|
7263
6614
|
return false;
|
@@ -7299,7 +6650,7 @@ var require_node2 = __commonJS({
|
|
7299
6650
|
}
|
7300
6651
|
return strcmp(mappingA.name, mappingB.name);
|
7301
6652
|
}
|
7302
|
-
|
6653
|
+
exports2.compareByOriginalPositions = compareByOriginalPositions;
|
7303
6654
|
function compareByGeneratedPositionsDeflated(mappingA, mappingB, onlyCompareGenerated) {
|
7304
6655
|
var cmp = mappingA.generatedLine - mappingB.generatedLine;
|
7305
6656
|
if (cmp !== 0) {
|
@@ -7323,7 +6674,7 @@ var require_node2 = __commonJS({
|
|
7323
6674
|
}
|
7324
6675
|
return strcmp(mappingA.name, mappingB.name);
|
7325
6676
|
}
|
7326
|
-
|
6677
|
+
exports2.compareByGeneratedPositionsDeflated = compareByGeneratedPositionsDeflated;
|
7327
6678
|
function strcmp(aStr1, aStr2) {
|
7328
6679
|
if (aStr1 === aStr2) {
|
7329
6680
|
return 0;
|
@@ -7362,11 +6713,11 @@ var require_node2 = __commonJS({
|
|
7362
6713
|
}
|
7363
6714
|
return strcmp(mappingA.name, mappingB.name);
|
7364
6715
|
}
|
7365
|
-
|
6716
|
+
exports2.compareByGeneratedPositionsInflated = compareByGeneratedPositionsInflated;
|
7366
6717
|
function parseSourceMapInput(str) {
|
7367
6718
|
return JSON.parse(str.replace(/^\)]}'[^\n]*\n/, ""));
|
7368
6719
|
}
|
7369
|
-
|
6720
|
+
exports2.parseSourceMapInput = parseSourceMapInput;
|
7370
6721
|
function computeSourceURL(sourceRoot, sourceURL, sourceMapURL) {
|
7371
6722
|
sourceURL = sourceURL || "";
|
7372
6723
|
if (sourceRoot) {
|
@@ -7390,9 +6741,9 @@ var require_node2 = __commonJS({
|
|
7390
6741
|
}
|
7391
6742
|
return normalize(sourceURL);
|
7392
6743
|
}
|
7393
|
-
|
6744
|
+
exports2.computeSourceURL = computeSourceURL;
|
7394
6745
|
});
|
7395
|
-
var require_array_set = __commonJS2((
|
6746
|
+
var require_array_set = __commonJS2((exports2) => {
|
7396
6747
|
var util2 = require_util();
|
7397
6748
|
var has = Object.prototype.hasOwnProperty;
|
7398
6749
|
var hasNativeMap = typeof Map !== "undefined";
|
@@ -7456,9 +6807,9 @@ var require_node2 = __commonJS({
|
|
7456
6807
|
ArraySet.prototype.toArray = function ArraySet_toArray() {
|
7457
6808
|
return this._array.slice();
|
7458
6809
|
};
|
7459
|
-
|
6810
|
+
exports2.ArraySet = ArraySet;
|
7460
6811
|
});
|
7461
|
-
var require_mapping_list = __commonJS2((
|
6812
|
+
var require_mapping_list = __commonJS2((exports2) => {
|
7462
6813
|
var util2 = require_util();
|
7463
6814
|
function generatedPositionAfter(mappingA, mappingB) {
|
7464
6815
|
var lineA = mappingA.generatedLine;
|
@@ -7491,9 +6842,9 @@ var require_node2 = __commonJS({
|
|
7491
6842
|
}
|
7492
6843
|
return this._array;
|
7493
6844
|
};
|
7494
|
-
|
6845
|
+
exports2.MappingList = MappingList;
|
7495
6846
|
});
|
7496
|
-
var require_source_map_generator = __commonJS2((
|
6847
|
+
var require_source_map_generator = __commonJS2((exports2) => {
|
7497
6848
|
var base64VLQ = require_base64_vlq();
|
7498
6849
|
var util2 = require_util();
|
7499
6850
|
var ArraySet = require_array_set().ArraySet;
|
@@ -7759,11 +7110,11 @@ var require_node2 = __commonJS({
|
|
7759
7110
|
SourceMapGenerator.prototype.toString = function SourceMapGenerator_toString() {
|
7760
7111
|
return JSON.stringify(this.toJSON());
|
7761
7112
|
};
|
7762
|
-
|
7113
|
+
exports2.SourceMapGenerator = SourceMapGenerator;
|
7763
7114
|
});
|
7764
|
-
var require_binary_search = __commonJS2((
|
7765
|
-
|
7766
|
-
|
7115
|
+
var require_binary_search = __commonJS2((exports2) => {
|
7116
|
+
exports2.GREATEST_LOWER_BOUND = 1;
|
7117
|
+
exports2.LEAST_UPPER_BOUND = 2;
|
7767
7118
|
function recursiveSearch(aLow, aHigh, aNeedle, aHaystack, aCompare, aBias) {
|
7768
7119
|
var mid = Math.floor((aHigh - aLow) / 2) + aLow;
|
7769
7120
|
var cmp = aCompare(aNeedle, aHaystack[mid], true);
|
@@ -7773,7 +7124,7 @@ var require_node2 = __commonJS({
|
|
7773
7124
|
if (aHigh - mid > 1) {
|
7774
7125
|
return recursiveSearch(mid, aHigh, aNeedle, aHaystack, aCompare, aBias);
|
7775
7126
|
}
|
7776
|
-
if (aBias ==
|
7127
|
+
if (aBias == exports2.LEAST_UPPER_BOUND) {
|
7777
7128
|
return aHigh < aHaystack.length ? aHigh : -1;
|
7778
7129
|
} else {
|
7779
7130
|
return mid;
|
@@ -7782,18 +7133,18 @@ var require_node2 = __commonJS({
|
|
7782
7133
|
if (mid - aLow > 1) {
|
7783
7134
|
return recursiveSearch(aLow, mid, aNeedle, aHaystack, aCompare, aBias);
|
7784
7135
|
}
|
7785
|
-
if (aBias ==
|
7136
|
+
if (aBias == exports2.LEAST_UPPER_BOUND) {
|
7786
7137
|
return mid;
|
7787
7138
|
} else {
|
7788
7139
|
return aLow < 0 ? -1 : aLow;
|
7789
7140
|
}
|
7790
7141
|
}
|
7791
7142
|
}
|
7792
|
-
|
7143
|
+
exports2.search = function search(aNeedle, aHaystack, aCompare, aBias) {
|
7793
7144
|
if (aHaystack.length === 0) {
|
7794
7145
|
return -1;
|
7795
7146
|
}
|
7796
|
-
var index4 = recursiveSearch(-1, aHaystack.length, aNeedle, aHaystack, aCompare, aBias ||
|
7147
|
+
var index4 = recursiveSearch(-1, aHaystack.length, aNeedle, aHaystack, aCompare, aBias || exports2.GREATEST_LOWER_BOUND);
|
7797
7148
|
if (index4 < 0) {
|
7798
7149
|
return -1;
|
7799
7150
|
}
|
@@ -7806,7 +7157,7 @@ var require_node2 = __commonJS({
|
|
7806
7157
|
return index4;
|
7807
7158
|
};
|
7808
7159
|
});
|
7809
|
-
var require_quick_sort = __commonJS2((
|
7160
|
+
var require_quick_sort = __commonJS2((exports2) => {
|
7810
7161
|
function swap(ary, x, y) {
|
7811
7162
|
var temp = ary[x];
|
7812
7163
|
ary[x] = ary[y];
|
@@ -7833,11 +7184,11 @@ var require_node2 = __commonJS({
|
|
7833
7184
|
doQuickSort(ary, comparator, q + 1, r);
|
7834
7185
|
}
|
7835
7186
|
}
|
7836
|
-
|
7187
|
+
exports2.quickSort = function(ary, comparator) {
|
7837
7188
|
doQuickSort(ary, comparator, 0, ary.length - 1);
|
7838
7189
|
};
|
7839
7190
|
});
|
7840
|
-
var require_source_map_consumer = __commonJS2((
|
7191
|
+
var require_source_map_consumer = __commonJS2((exports2) => {
|
7841
7192
|
var util2 = require_util();
|
7842
7193
|
var binarySearch = require_binary_search();
|
7843
7194
|
var ArraySet = require_array_set().ArraySet;
|
@@ -7954,7 +7305,7 @@ var require_node2 = __commonJS({
|
|
7954
7305
|
}
|
7955
7306
|
return mappings;
|
7956
7307
|
};
|
7957
|
-
|
7308
|
+
exports2.SourceMapConsumer = SourceMapConsumer;
|
7958
7309
|
function BasicSourceMapConsumer(aSourceMap, aSourceMapURL) {
|
7959
7310
|
var sourceMap = aSourceMap;
|
7960
7311
|
if (typeof aSourceMap === "string") {
|
@@ -8250,7 +7601,7 @@ var require_node2 = __commonJS({
|
|
8250
7601
|
lastColumn: null
|
8251
7602
|
};
|
8252
7603
|
};
|
8253
|
-
|
7604
|
+
exports2.BasicSourceMapConsumer = BasicSourceMapConsumer;
|
8254
7605
|
function IndexedSourceMapConsumer(aSourceMap, aSourceMapURL) {
|
8255
7606
|
var sourceMap = aSourceMap;
|
8256
7607
|
if (typeof aSourceMap === "string") {
|
@@ -8402,9 +7753,9 @@ var require_node2 = __commonJS({
|
|
8402
7753
|
quickSort(this.__generatedMappings, util2.compareByGeneratedPositionsDeflated);
|
8403
7754
|
quickSort(this.__originalMappings, util2.compareByOriginalPositions);
|
8404
7755
|
};
|
8405
|
-
|
7756
|
+
exports2.IndexedSourceMapConsumer = IndexedSourceMapConsumer;
|
8406
7757
|
});
|
8407
|
-
var require_source_node = __commonJS2((
|
7758
|
+
var require_source_node = __commonJS2((exports2) => {
|
8408
7759
|
var SourceMapGenerator = require_source_map_generator().SourceMapGenerator;
|
8409
7760
|
var util2 = require_util();
|
8410
7761
|
var REGEX_NEWLINE = /(\r?\n)/;
|
@@ -8654,14 +8005,14 @@ var require_node2 = __commonJS({
|
|
8654
8005
|
});
|
8655
8006
|
return { code: generated.code, map: map2 };
|
8656
8007
|
};
|
8657
|
-
|
8008
|
+
exports2.SourceNode = SourceNode;
|
8658
8009
|
});
|
8659
|
-
var require_source_map = __commonJS2((
|
8660
|
-
|
8661
|
-
|
8662
|
-
|
8010
|
+
var require_source_map = __commonJS2((exports2) => {
|
8011
|
+
exports2.SourceMapGenerator = require_source_map_generator().SourceMapGenerator;
|
8012
|
+
exports2.SourceMapConsumer = require_source_map_consumer().SourceMapConsumer;
|
8013
|
+
exports2.SourceNode = require_source_node().SourceNode;
|
8663
8014
|
});
|
8664
|
-
var require_buffer_from = __commonJS2((
|
8015
|
+
var require_buffer_from = __commonJS2((exports2, module22) => {
|
8665
8016
|
var toString = Object.prototype.toString;
|
8666
8017
|
var isModern = typeof Buffer.alloc === "function" && typeof Buffer.allocUnsafe === "function" && typeof Buffer.from === "function";
|
8667
8018
|
function isArrayBuffer(input) {
|
@@ -8706,7 +8057,7 @@ var require_node2 = __commonJS({
|
|
8706
8057
|
}
|
8707
8058
|
module22.exports = bufferFrom;
|
8708
8059
|
});
|
8709
|
-
var require_source_map_support = __commonJS2((
|
8060
|
+
var require_source_map_support = __commonJS2((exports2, module22) => {
|
8710
8061
|
var SourceMapConsumer = require_source_map().SourceMapConsumer;
|
8711
8062
|
var path2 = require("path");
|
8712
8063
|
var fs3;
|
@@ -9080,11 +8431,11 @@ var require_node2 = __commonJS({
|
|
9080
8431
|
}
|
9081
8432
|
var originalRetrieveFileHandlers = retrieveFileHandlers.slice(0);
|
9082
8433
|
var originalRetrieveMapHandlers = retrieveMapHandlers.slice(0);
|
9083
|
-
|
9084
|
-
|
9085
|
-
|
9086
|
-
|
9087
|
-
|
8434
|
+
exports2.wrapCallSite = wrapCallSite;
|
8435
|
+
exports2.getErrorSource = getErrorSource;
|
8436
|
+
exports2.mapSourcePosition = mapSourcePosition;
|
8437
|
+
exports2.retrieveSourceMap = retrieveSourceMap;
|
8438
|
+
exports2.install = function(options) {
|
9088
8439
|
options = options || {};
|
9089
8440
|
if (options.environment) {
|
9090
8441
|
environment = options.environment;
|
@@ -9138,7 +8489,7 @@ var require_node2 = __commonJS({
|
|
9138
8489
|
}
|
9139
8490
|
}
|
9140
8491
|
};
|
9141
|
-
|
8492
|
+
exports2.resetRetrieveHandlers = function() {
|
9142
8493
|
retrieveFileHandlers.length = 0;
|
9143
8494
|
retrieveMapHandlers.length = 0;
|
9144
8495
|
retrieveFileHandlers = originalRetrieveFileHandlers.slice(0);
|
@@ -9147,16 +8498,16 @@ var require_node2 = __commonJS({
|
|
9147
8498
|
retrieveFile = handlerExec(retrieveFileHandlers);
|
9148
8499
|
};
|
9149
8500
|
});
|
9150
|
-
var require_node_modules_regexp = __commonJS2((
|
8501
|
+
var require_node_modules_regexp = __commonJS2((exports2, module22) => {
|
9151
8502
|
"use strict";
|
9152
8503
|
module22.exports = /^(?:.*[\\\/])?node_modules(?:[\\\/].*)?$/;
|
9153
8504
|
});
|
9154
|
-
var require_lib = __commonJS2((
|
8505
|
+
var require_lib = __commonJS2((exports2, module22) => {
|
9155
8506
|
"use strict";
|
9156
|
-
Object.defineProperty(
|
8507
|
+
Object.defineProperty(exports2, "__esModule", {
|
9157
8508
|
value: true
|
9158
8509
|
});
|
9159
|
-
|
8510
|
+
exports2.addHook = addHook2;
|
9160
8511
|
var _module = _interopRequireDefault(require("module"));
|
9161
8512
|
var _path = _interopRequireDefault(require("path"));
|
9162
8513
|
var _nodeModulesRegexp = _interopRequireDefault(require_node_modules_regexp());
|
@@ -9229,12 +8580,12 @@ var require_node2 = __commonJS({
|
|
9229
8580
|
};
|
9230
8581
|
}
|
9231
8582
|
});
|
9232
|
-
var require_lib2 = __commonJS2((
|
8583
|
+
var require_lib2 = __commonJS2((exports2, module22) => {
|
9233
8584
|
"use strict";
|
9234
|
-
Object.defineProperty(
|
8585
|
+
Object.defineProperty(exports2, "__esModule", {
|
9235
8586
|
value: true
|
9236
8587
|
});
|
9237
|
-
|
8588
|
+
exports2.default = void 0;
|
9238
8589
|
var _fs = _interopRequireDefault(require("fs"));
|
9239
8590
|
var _path = _interopRequireDefault(require("path"));
|
9240
8591
|
function _interopRequireDefault(obj) {
|
@@ -9242,13 +8593,13 @@ var require_node2 = __commonJS({
|
|
9242
8593
|
}
|
9243
8594
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
|
9244
8595
|
try {
|
9245
|
-
var
|
9246
|
-
var value =
|
8596
|
+
var info3 = gen[key](arg);
|
8597
|
+
var value = info3.value;
|
9247
8598
|
} catch (error2) {
|
9248
8599
|
reject(error2);
|
9249
8600
|
return;
|
9250
8601
|
}
|
9251
|
-
if (
|
8602
|
+
if (info3.done) {
|
9252
8603
|
resolve(value);
|
9253
8604
|
} else {
|
9254
8605
|
Promise.resolve(value).then(_next, _throw);
|
@@ -9576,14 +8927,14 @@ var require_node2 = __commonJS({
|
|
9576
8927
|
return options;
|
9577
8928
|
}
|
9578
8929
|
};
|
9579
|
-
|
8930
|
+
exports2.default = JoyCon2;
|
9580
8931
|
module22.exports = JoyCon2;
|
9581
8932
|
module22.exports.default = JoyCon2;
|
9582
8933
|
});
|
9583
|
-
var require_filesystem = __commonJS2((
|
8934
|
+
var require_filesystem = __commonJS2((exports2) => {
|
9584
8935
|
"use strict";
|
9585
|
-
Object.defineProperty(
|
9586
|
-
|
8936
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
8937
|
+
exports2.removeExtension = exports2.fileExistsAsync = exports2.readJsonFromDiskAsync = exports2.readJsonFromDiskSync = exports2.fileExistsSync = void 0;
|
9587
8938
|
var fs3 = require("fs");
|
9588
8939
|
function fileExistsSync(path2) {
|
9589
8940
|
if (!fs3.existsSync(path2)) {
|
@@ -9596,14 +8947,14 @@ var require_node2 = __commonJS({
|
|
9596
8947
|
return false;
|
9597
8948
|
}
|
9598
8949
|
}
|
9599
|
-
|
8950
|
+
exports2.fileExistsSync = fileExistsSync;
|
9600
8951
|
function readJsonFromDiskSync(packageJsonPath) {
|
9601
8952
|
if (!fs3.existsSync(packageJsonPath)) {
|
9602
8953
|
return void 0;
|
9603
8954
|
}
|
9604
8955
|
return require(packageJsonPath);
|
9605
8956
|
}
|
9606
|
-
|
8957
|
+
exports2.readJsonFromDiskSync = readJsonFromDiskSync;
|
9607
8958
|
function readJsonFromDiskAsync(path2, callback) {
|
9608
8959
|
fs3.readFile(path2, "utf8", function(err, result) {
|
9609
8960
|
if (err || !result) {
|
@@ -9613,7 +8964,7 @@ var require_node2 = __commonJS({
|
|
9613
8964
|
return callback(void 0, json);
|
9614
8965
|
});
|
9615
8966
|
}
|
9616
|
-
|
8967
|
+
exports2.readJsonFromDiskAsync = readJsonFromDiskAsync;
|
9617
8968
|
function fileExistsAsync(path2, callback2) {
|
9618
8969
|
fs3.stat(path2, function(err, stats) {
|
9619
8970
|
if (err) {
|
@@ -9622,16 +8973,16 @@ var require_node2 = __commonJS({
|
|
9622
8973
|
callback2(void 0, stats ? stats.isFile() : false);
|
9623
8974
|
});
|
9624
8975
|
}
|
9625
|
-
|
8976
|
+
exports2.fileExistsAsync = fileExistsAsync;
|
9626
8977
|
function removeExtension(path2) {
|
9627
8978
|
return path2.substring(0, path2.lastIndexOf(".")) || path2;
|
9628
8979
|
}
|
9629
|
-
|
8980
|
+
exports2.removeExtension = removeExtension;
|
9630
8981
|
});
|
9631
|
-
var require_mapping_entry = __commonJS2((
|
8982
|
+
var require_mapping_entry = __commonJS2((exports2) => {
|
9632
8983
|
"use strict";
|
9633
|
-
Object.defineProperty(
|
9634
|
-
|
8984
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
8985
|
+
exports2.getAbsoluteMappingEntries = void 0;
|
9635
8986
|
var path2 = require("path");
|
9636
8987
|
function getAbsoluteMappingEntries(absoluteBaseUrl, paths, addMatchAll) {
|
9637
8988
|
var sortedKeys = sortByLongestPrefix(Object.keys(paths));
|
@@ -9653,7 +9004,7 @@ var require_node2 = __commonJS({
|
|
9653
9004
|
}
|
9654
9005
|
return absolutePaths;
|
9655
9006
|
}
|
9656
|
-
|
9007
|
+
exports2.getAbsoluteMappingEntries = getAbsoluteMappingEntries;
|
9657
9008
|
function sortByLongestPrefix(arr) {
|
9658
9009
|
return arr.concat().sort(function(a, b) {
|
9659
9010
|
return getPrefixLength(b) - getPrefixLength(a);
|
@@ -9664,10 +9015,10 @@ var require_node2 = __commonJS({
|
|
9664
9015
|
return pattern.substr(0, prefixLength).length;
|
9665
9016
|
}
|
9666
9017
|
});
|
9667
|
-
var require_try_path = __commonJS2((
|
9018
|
+
var require_try_path = __commonJS2((exports2) => {
|
9668
9019
|
"use strict";
|
9669
|
-
Object.defineProperty(
|
9670
|
-
|
9020
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
9021
|
+
exports2.exhaustiveTypeException = exports2.getStrippedPath = exports2.getPathsToTry = void 0;
|
9671
9022
|
var path2 = require("path");
|
9672
9023
|
var path_1 = require("path");
|
9673
9024
|
var filesystem_1 = require_filesystem();
|
@@ -9703,15 +9054,15 @@ var require_node2 = __commonJS({
|
|
9703
9054
|
}
|
9704
9055
|
return pathsToTry.length === 0 ? void 0 : pathsToTry;
|
9705
9056
|
}
|
9706
|
-
|
9057
|
+
exports2.getPathsToTry = getPathsToTry;
|
9707
9058
|
function getStrippedPath(tryPath) {
|
9708
9059
|
return tryPath.type === "index" ? (0, path_1.dirname)(tryPath.path) : tryPath.type === "file" ? tryPath.path : tryPath.type === "extension" ? (0, filesystem_1.removeExtension)(tryPath.path) : tryPath.type === "package" ? tryPath.path : exhaustiveTypeException(tryPath.type);
|
9709
9060
|
}
|
9710
|
-
|
9061
|
+
exports2.getStrippedPath = getStrippedPath;
|
9711
9062
|
function exhaustiveTypeException(check) {
|
9712
9063
|
throw new Error("Unknown type ".concat(check));
|
9713
9064
|
}
|
9714
|
-
|
9065
|
+
exports2.exhaustiveTypeException = exhaustiveTypeException;
|
9715
9066
|
function matchStar(pattern, search) {
|
9716
9067
|
if (search.length < pattern.length) {
|
9717
9068
|
return void 0;
|
@@ -9734,10 +9085,10 @@ var require_node2 = __commonJS({
|
|
9734
9085
|
return search.substr(star2, search.length - part2.length);
|
9735
9086
|
}
|
9736
9087
|
});
|
9737
|
-
var require_match_path_sync = __commonJS2((
|
9088
|
+
var require_match_path_sync = __commonJS2((exports2) => {
|
9738
9089
|
"use strict";
|
9739
|
-
Object.defineProperty(
|
9740
|
-
|
9090
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
9091
|
+
exports2.matchFromAbsolutePaths = exports2.createMatchPath = void 0;
|
9741
9092
|
var path2 = require("path");
|
9742
9093
|
var Filesystem = require_filesystem();
|
9743
9094
|
var MappingEntry = require_mapping_entry();
|
@@ -9754,7 +9105,7 @@ var require_node2 = __commonJS({
|
|
9754
9105
|
return matchFromAbsolutePaths(absolutePaths, requestedModule, readJson, fileExists, extensions, mainFields);
|
9755
9106
|
};
|
9756
9107
|
}
|
9757
|
-
|
9108
|
+
exports2.createMatchPath = createMatchPath2;
|
9758
9109
|
function matchFromAbsolutePaths(absolutePathMappings, requestedModule, readJson, fileExists, extensions, mainFields) {
|
9759
9110
|
if (readJson === void 0) {
|
9760
9111
|
readJson = Filesystem.readJsonFromDiskSync;
|
@@ -9774,7 +9125,7 @@ var require_node2 = __commonJS({
|
|
9774
9125
|
}
|
9775
9126
|
return findFirstExistingPath(tryPaths, readJson, fileExists, mainFields);
|
9776
9127
|
}
|
9777
|
-
|
9128
|
+
exports2.matchFromAbsolutePaths = matchFromAbsolutePaths;
|
9778
9129
|
function findFirstExistingMainFieldMappedFile(packageJson, mainFields, packageJsonPath, fileExists) {
|
9779
9130
|
for (var index4 = 0; index4 < mainFields.length; index4++) {
|
9780
9131
|
var mainFieldSelector = mainFields[index4];
|
@@ -9818,10 +9169,10 @@ var require_node2 = __commonJS({
|
|
9818
9169
|
return void 0;
|
9819
9170
|
}
|
9820
9171
|
});
|
9821
|
-
var require_match_path_async = __commonJS2((
|
9172
|
+
var require_match_path_async = __commonJS2((exports2) => {
|
9822
9173
|
"use strict";
|
9823
|
-
Object.defineProperty(
|
9824
|
-
|
9174
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
9175
|
+
exports2.matchFromAbsolutePathsAsync = exports2.createMatchPathAsync = void 0;
|
9825
9176
|
var path2 = require("path");
|
9826
9177
|
var TryPath = require_try_path();
|
9827
9178
|
var MappingEntry = require_mapping_entry();
|
@@ -9838,7 +9189,7 @@ var require_node2 = __commonJS({
|
|
9838
9189
|
return matchFromAbsolutePathsAsync(absolutePaths, requestedModule, readJson, fileExists, extensions, callback, mainFields);
|
9839
9190
|
};
|
9840
9191
|
}
|
9841
|
-
|
9192
|
+
exports2.createMatchPathAsync = createMatchPathAsync;
|
9842
9193
|
function matchFromAbsolutePathsAsync(absolutePathMappings, requestedModule, readJson, fileExists, extensions, callback, mainFields) {
|
9843
9194
|
if (readJson === void 0) {
|
9844
9195
|
readJson = Filesystem.readJsonFromDiskAsync;
|
@@ -9858,7 +9209,7 @@ var require_node2 = __commonJS({
|
|
9858
9209
|
}
|
9859
9210
|
findFirstExistingPath(tryPaths, readJson, fileExists, callback, 0, mainFields);
|
9860
9211
|
}
|
9861
|
-
|
9212
|
+
exports2.matchFromAbsolutePathsAsync = matchFromAbsolutePathsAsync;
|
9862
9213
|
function findFirstExistingMainFieldMappedFile(packageJson, mainFields, packageJsonPath, fileExistsAsync, doneCallback, index4) {
|
9863
9214
|
if (index4 === void 0) {
|
9864
9215
|
index4 = 0;
|
@@ -9931,12 +9282,12 @@ var require_node2 = __commonJS({
|
|
9931
9282
|
}
|
9932
9283
|
}
|
9933
9284
|
});
|
9934
|
-
var require_unicode = __commonJS2((
|
9285
|
+
var require_unicode = __commonJS2((exports2, module22) => {
|
9935
9286
|
module22.exports.Space_Separator = /[\u1680\u2000-\u200A\u202F\u205F\u3000]/;
|
9936
9287
|
module22.exports.ID_Start = /[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u08A0-\u08B4\u08B6-\u08BD\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312E\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FEA\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC03-\uDC37\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDF00-\uDF19]|\uD806[\uDCA0-\uDCDF\uDCFF\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE83\uDE86-\uDE89\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50\uDF93-\uDF9F\uDFE0\uDFE1]|\uD821[\uDC00-\uDFEC]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00-\uDD1E\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]/;
|
9937
9288
|
module22.exports.ID_Continue = /[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05F0-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u0800-\u082D\u0840-\u085B\u0860-\u086A\u08A0-\u08B4\u08B6-\u08BD\u08D4-\u08E1\u08E3-\u0963\u0966-\u096F\u0971-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u09FC\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0AF9-\u0AFF\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C00-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C60-\u0C63\u0C66-\u0C6F\u0C80-\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D00-\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D54-\u0D57\u0D5F-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB9\u0EBB-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u1820-\u1877\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19D9\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1AB0-\u1ABD\u1B00-\u1B4B\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1C80-\u1C88\u1CD0-\u1CD2\u1CD4-\u1CF9\u1D00-\u1DF9\u1DFB-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u2E2F\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099\u309A\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312E\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FEA\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA827\uA840-\uA873\uA880-\uA8C5\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA8FD\uA900-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uA9E0-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDDFD\uDE80-\uDE9C\uDEA0-\uDED0\uDEE0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF7A\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00-\uDE03\uDE05\uDE06\uDE0C-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE38-\uDE3A\uDE3F\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE6\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC00-\uDC46\uDC66-\uDC6F\uDC7F-\uDCBA\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD00-\uDD34\uDD36-\uDD3F\uDD50-\uDD73\uDD76\uDD80-\uDDC4\uDDCA-\uDDCC\uDDD0-\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE37\uDE3E\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEEA\uDEF0-\uDEF9\uDF00-\uDF03\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3C-\uDF44\uDF47\uDF48\uDF4B-\uDF4D\uDF50\uDF57\uDF5D-\uDF63\uDF66-\uDF6C\uDF70-\uDF74]|\uD805[\uDC00-\uDC4A\uDC50-\uDC59\uDC80-\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDB5\uDDB8-\uDDC0\uDDD8-\uDDDD\uDE00-\uDE40\uDE44\uDE50-\uDE59\uDE80-\uDEB7\uDEC0-\uDEC9\uDF00-\uDF19\uDF1D-\uDF2B\uDF30-\uDF39]|\uD806[\uDCA0-\uDCE9\uDCFF\uDE00-\uDE3E\uDE47\uDE50-\uDE83\uDE86-\uDE99\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC36\uDC38-\uDC40\uDC50-\uDC59\uDC72-\uDC8F\uDC92-\uDCA7\uDCA9-\uDCB6\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD36\uDD3A\uDD3C\uDD3D\uDD3F-\uDD47\uDD50-\uDD59]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDED0-\uDEED\uDEF0-\uDEF4\uDF00-\uDF36\uDF40-\uDF43\uDF50-\uDF59\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50-\uDF7E\uDF8F-\uDF9F\uDFE0\uDFE1]|\uD821[\uDC00-\uDFEC]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00-\uDD1E\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99\uDC9D\uDC9E]|\uD834[\uDD65-\uDD69\uDD6D-\uDD72\uDD7B-\uDD82\uDD85-\uDD8B\uDDAA-\uDDAD\uDE42-\uDE44]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD836[\uDE00-\uDE36\uDE3B-\uDE6C\uDE75\uDE84\uDE9B-\uDE9F\uDEA1-\uDEAF]|\uD838[\uDC00-\uDC06\uDC08-\uDC18\uDC1B-\uDC21\uDC23\uDC24\uDC26-\uDC2A]|\uD83A[\uDC00-\uDCC4\uDCD0-\uDCD6\uDD00-\uDD4A\uDD50-\uDD59]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uDB40[\uDD00-\uDDEF]/;
|
9938
9289
|
});
|
9939
|
-
var require_util2 = __commonJS2((
|
9290
|
+
var require_util2 = __commonJS2((exports2, module22) => {
|
9940
9291
|
var unicode = require_unicode();
|
9941
9292
|
module22.exports = {
|
9942
9293
|
isSpaceSeparator(c) {
|
@@ -9956,7 +9307,7 @@ var require_node2 = __commonJS({
|
|
9956
9307
|
}
|
9957
9308
|
};
|
9958
9309
|
});
|
9959
|
-
var require_parse = __commonJS2((
|
9310
|
+
var require_parse = __commonJS2((exports2, module22) => {
|
9960
9311
|
var util2 = require_util2();
|
9961
9312
|
var source;
|
9962
9313
|
var parseState;
|
@@ -10799,7 +10150,7 @@ var require_node2 = __commonJS({
|
|
10799
10150
|
return err;
|
10800
10151
|
}
|
10801
10152
|
});
|
10802
|
-
var require_stringify = __commonJS2((
|
10153
|
+
var require_stringify = __commonJS2((exports2, module22) => {
|
10803
10154
|
var util2 = require_util2();
|
10804
10155
|
module22.exports = function stringify(value, replacer, space) {
|
10805
10156
|
const stack = [];
|
@@ -11014,7 +10365,7 @@ var require_node2 = __commonJS({
|
|
11014
10365
|
}
|
11015
10366
|
};
|
11016
10367
|
});
|
11017
|
-
var require_lib3 = __commonJS2((
|
10368
|
+
var require_lib3 = __commonJS2((exports2, module22) => {
|
11018
10369
|
var parse = require_parse();
|
11019
10370
|
var stringify = require_stringify();
|
11020
10371
|
var JSON5 = {
|
@@ -11023,7 +10374,7 @@ var require_node2 = __commonJS({
|
|
11023
10374
|
};
|
11024
10375
|
module22.exports = JSON5;
|
11025
10376
|
});
|
11026
|
-
var require_strip_bom = __commonJS2((
|
10377
|
+
var require_strip_bom = __commonJS2((exports2, module22) => {
|
11027
10378
|
"use strict";
|
11028
10379
|
module22.exports = (x) => {
|
11029
10380
|
if (typeof x !== "string") {
|
@@ -11035,9 +10386,9 @@ var require_node2 = __commonJS({
|
|
11035
10386
|
return x;
|
11036
10387
|
};
|
11037
10388
|
});
|
11038
|
-
var require_tsconfig_loader = __commonJS2((
|
10389
|
+
var require_tsconfig_loader = __commonJS2((exports2) => {
|
11039
10390
|
"use strict";
|
11040
|
-
var __assign =
|
10391
|
+
var __assign = exports2 && exports2.__assign || function() {
|
11041
10392
|
__assign = Object.assign || function(t) {
|
11042
10393
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
11043
10394
|
s = arguments[i];
|
@@ -11049,8 +10400,8 @@ var require_node2 = __commonJS({
|
|
11049
10400
|
};
|
11050
10401
|
return __assign.apply(this, arguments);
|
11051
10402
|
};
|
11052
|
-
Object.defineProperty(
|
11053
|
-
|
10403
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
10404
|
+
exports2.loadTsconfig = exports2.walkForTsConfig = exports2.tsConfigLoader = void 0;
|
11054
10405
|
var path2 = require("path");
|
11055
10406
|
var fs3 = require("fs");
|
11056
10407
|
var JSON5 = require_lib3();
|
@@ -11062,7 +10413,7 @@ var require_node2 = __commonJS({
|
|
11062
10413
|
var loadResult = loadSync(cwd, TS_NODE_PROJECT, TS_NODE_BASEURL);
|
11063
10414
|
return loadResult;
|
11064
10415
|
}
|
11065
|
-
|
10416
|
+
exports2.tsConfigLoader = tsConfigLoader;
|
11066
10417
|
function loadSyncDefault(cwd, filename, baseUrl) {
|
11067
10418
|
var configPath = resolveConfigPath(cwd, filename);
|
11068
10419
|
if (!configPath) {
|
@@ -11108,7 +10459,7 @@ var require_node2 = __commonJS({
|
|
11108
10459
|
}
|
11109
10460
|
return walkForTsConfig(parentDirectory, readdirSync);
|
11110
10461
|
}
|
11111
|
-
|
10462
|
+
exports2.walkForTsConfig = walkForTsConfig;
|
11112
10463
|
function loadTsconfig(configFilePath, existsSync, readFileSync) {
|
11113
10464
|
if (existsSync === void 0) {
|
11114
10465
|
existsSync = fs3.existsSync;
|
@@ -11143,7 +10494,7 @@ var require_node2 = __commonJS({
|
|
11143
10494
|
}
|
11144
10495
|
return config;
|
11145
10496
|
}
|
11146
|
-
|
10497
|
+
exports2.loadTsconfig = loadTsconfig;
|
11147
10498
|
function loadTsconfigFromExtends(configFilePath, extendedConfigValue, existsSync, readFileSync) {
|
11148
10499
|
var _a;
|
11149
10500
|
if (typeof extendedConfigValue === "string" && extendedConfigValue.indexOf(".json") === -1) {
|
@@ -11167,10 +10518,10 @@ var require_node2 = __commonJS({
|
|
11167
10518
|
return __assign(__assign(__assign({}, base), config), { compilerOptions: __assign(__assign({}, base.compilerOptions), config.compilerOptions) });
|
11168
10519
|
}
|
11169
10520
|
});
|
11170
|
-
var require_config_loader = __commonJS2((
|
10521
|
+
var require_config_loader = __commonJS2((exports2) => {
|
11171
10522
|
"use strict";
|
11172
|
-
Object.defineProperty(
|
11173
|
-
|
10523
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
10524
|
+
exports2.configLoader = exports2.loadConfig = void 0;
|
11174
10525
|
var TsConfigLoader2 = require_tsconfig_loader();
|
11175
10526
|
var path2 = require("path");
|
11176
10527
|
function loadConfig2(cwd) {
|
@@ -11179,7 +10530,7 @@ var require_node2 = __commonJS({
|
|
11179
10530
|
}
|
11180
10531
|
return configLoader({ cwd });
|
11181
10532
|
}
|
11182
|
-
|
10533
|
+
exports2.loadConfig = loadConfig2;
|
11183
10534
|
function configLoader(_a) {
|
11184
10535
|
var cwd = _a.cwd, explicitParams = _a.explicitParams, _b = _a.tsConfigLoader, tsConfigLoader = _b === void 0 ? TsConfigLoader2.tsConfigLoader : _b;
|
11185
10536
|
if (explicitParams) {
|
@@ -11215,9 +10566,9 @@ var require_node2 = __commonJS({
|
|
11215
10566
|
addMatchAll: loadResult.baseUrl !== void 0
|
11216
10567
|
};
|
11217
10568
|
}
|
11218
|
-
|
10569
|
+
exports2.configLoader = configLoader;
|
11219
10570
|
});
|
11220
|
-
var require_minimist = __commonJS2((
|
10571
|
+
var require_minimist = __commonJS2((exports2, module22) => {
|
11221
10572
|
"use strict";
|
11222
10573
|
function hasKey(obj, keys) {
|
11223
10574
|
var o = obj;
|
@@ -11435,9 +10786,9 @@ var require_node2 = __commonJS({
|
|
11435
10786
|
return argv;
|
11436
10787
|
};
|
11437
10788
|
});
|
11438
|
-
var require_register = __commonJS2((
|
10789
|
+
var require_register = __commonJS2((exports2) => {
|
11439
10790
|
"use strict";
|
11440
|
-
var __spreadArray =
|
10791
|
+
var __spreadArray = exports2 && exports2.__spreadArray || function(to, from, pack) {
|
11441
10792
|
if (pack || arguments.length === 2)
|
11442
10793
|
for (var i = 0, l = from.length, ar; i < l; i++) {
|
11443
10794
|
if (ar || !(i in from)) {
|
@@ -11448,8 +10799,8 @@ var require_node2 = __commonJS({
|
|
11448
10799
|
}
|
11449
10800
|
return to.concat(ar || Array.prototype.slice.call(from));
|
11450
10801
|
};
|
11451
|
-
Object.defineProperty(
|
11452
|
-
|
10802
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
10803
|
+
exports2.register = void 0;
|
11453
10804
|
var match_path_sync_1 = require_match_path_sync();
|
11454
10805
|
var config_loader_1 = require_config_loader();
|
11455
10806
|
var noOp2 = function() {
|
@@ -11537,32 +10888,32 @@ var require_node2 = __commonJS({
|
|
11537
10888
|
Module._resolveFilename = originalResolveFilename;
|
11538
10889
|
};
|
11539
10890
|
}
|
11540
|
-
|
10891
|
+
exports2.register = register2;
|
11541
10892
|
});
|
11542
|
-
var require_lib4 = __commonJS2((
|
10893
|
+
var require_lib4 = __commonJS2((exports2) => {
|
11543
10894
|
"use strict";
|
11544
|
-
Object.defineProperty(
|
11545
|
-
|
10895
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
10896
|
+
exports2.loadConfig = exports2.register = exports2.matchFromAbsolutePathsAsync = exports2.createMatchPathAsync = exports2.matchFromAbsolutePaths = exports2.createMatchPath = void 0;
|
11546
10897
|
var match_path_sync_1 = require_match_path_sync();
|
11547
|
-
Object.defineProperty(
|
10898
|
+
Object.defineProperty(exports2, "createMatchPath", { enumerable: true, get: function() {
|
11548
10899
|
return match_path_sync_1.createMatchPath;
|
11549
10900
|
} });
|
11550
|
-
Object.defineProperty(
|
10901
|
+
Object.defineProperty(exports2, "matchFromAbsolutePaths", { enumerable: true, get: function() {
|
11551
10902
|
return match_path_sync_1.matchFromAbsolutePaths;
|
11552
10903
|
} });
|
11553
10904
|
var match_path_async_1 = require_match_path_async();
|
11554
|
-
Object.defineProperty(
|
10905
|
+
Object.defineProperty(exports2, "createMatchPathAsync", { enumerable: true, get: function() {
|
11555
10906
|
return match_path_async_1.createMatchPathAsync;
|
11556
10907
|
} });
|
11557
|
-
Object.defineProperty(
|
10908
|
+
Object.defineProperty(exports2, "matchFromAbsolutePathsAsync", { enumerable: true, get: function() {
|
11558
10909
|
return match_path_async_1.matchFromAbsolutePathsAsync;
|
11559
10910
|
} });
|
11560
10911
|
var register_1 = require_register();
|
11561
|
-
Object.defineProperty(
|
10912
|
+
Object.defineProperty(exports2, "register", { enumerable: true, get: function() {
|
11562
10913
|
return register_1.register;
|
11563
10914
|
} });
|
11564
10915
|
var config_loader_1 = require_config_loader();
|
11565
|
-
Object.defineProperty(
|
10916
|
+
Object.defineProperty(exports2, "loadConfig", { enumerable: true, get: function() {
|
11566
10917
|
return config_loader_1.loadConfig;
|
11567
10918
|
} });
|
11568
10919
|
});
|
@@ -11828,16 +11179,17 @@ var require_node2 = __commonJS({
|
|
11828
11179
|
}
|
11829
11180
|
};
|
11830
11181
|
}
|
11831
|
-
|
11182
|
+
exports.register = register;
|
11832
11183
|
}
|
11833
11184
|
});
|
11834
11185
|
|
11835
11186
|
// src/cli/commands/utils.ts
|
11836
|
-
var import_hanji2, assertES5, safeRegister
|
11187
|
+
var import_hanji2, assertES5, safeRegister;
|
11837
11188
|
var init_utils2 = __esm({
|
11838
11189
|
"src/cli/commands/utils.ts"() {
|
11839
11190
|
"use strict";
|
11840
11191
|
init_serializer();
|
11192
|
+
init_source();
|
11841
11193
|
init_views();
|
11842
11194
|
import_hanji2 = __toESM(require_hanji());
|
11843
11195
|
init_global();
|
@@ -11845,11 +11197,8 @@ var init_utils2 = __esm({
|
|
11845
11197
|
init_pg();
|
11846
11198
|
init_sqlite();
|
11847
11199
|
init_common();
|
11848
|
-
init_schemaValidator();
|
11849
11200
|
init_cli();
|
11850
11201
|
init_outputs();
|
11851
|
-
init_studio();
|
11852
|
-
init_lib();
|
11853
11202
|
assertES5 = async (unregister) => {
|
11854
11203
|
try {
|
11855
11204
|
init_es5();
|
@@ -11891,17 +11240,6 @@ var init_utils2 = __esm({
|
|
11891
11240
|
await assertES5(res.unregister);
|
11892
11241
|
return res;
|
11893
11242
|
};
|
11894
|
-
migrateCliParams = objectType({
|
11895
|
-
config: stringType().optional()
|
11896
|
-
});
|
11897
|
-
migrateConfig = objectType({
|
11898
|
-
dialect: dialect3,
|
11899
|
-
out: stringType().optional().default("drizzle"),
|
11900
|
-
migrations: objectType({
|
11901
|
-
table: stringType().optional(),
|
11902
|
-
schema: stringType().optional()
|
11903
|
-
}).optional()
|
11904
|
-
});
|
11905
11243
|
}
|
11906
11244
|
});
|
11907
11245
|
|
@@ -11913,11 +11251,11 @@ var init_pgImports = __esm({
|
|
11913
11251
|
import_pg_core = require("drizzle-orm/pg-core");
|
11914
11252
|
import_drizzle_orm = require("drizzle-orm");
|
11915
11253
|
init_utils2();
|
11916
|
-
prepareFromExports = (
|
11254
|
+
prepareFromExports = (exports) => {
|
11917
11255
|
const tables = [];
|
11918
11256
|
const enums = [];
|
11919
11257
|
const schemas = [];
|
11920
|
-
const i0values = Object.values(
|
11258
|
+
const i0values = Object.values(exports);
|
11921
11259
|
i0values.forEach((t) => {
|
11922
11260
|
if ((0, import_pg_core.isPgEnum)(t)) {
|
11923
11261
|
enums.push(t);
|
@@ -12611,7 +11949,7 @@ var init_migrationPreparator = __esm({
|
|
12611
11949
|
|
12612
11950
|
// node_modules/.pnpm/balanced-match@1.0.2/node_modules/balanced-match/index.js
|
12613
11951
|
var require_balanced_match = __commonJS({
|
12614
|
-
"node_modules/.pnpm/balanced-match@1.0.2/node_modules/balanced-match/index.js"(
|
11952
|
+
"node_modules/.pnpm/balanced-match@1.0.2/node_modules/balanced-match/index.js"(exports, module2) {
|
12615
11953
|
"use strict";
|
12616
11954
|
module2.exports = balanced;
|
12617
11955
|
function balanced(a, b, str) {
|
@@ -12671,7 +12009,7 @@ var require_balanced_match = __commonJS({
|
|
12671
12009
|
|
12672
12010
|
// node_modules/.pnpm/brace-expansion@2.0.1/node_modules/brace-expansion/index.js
|
12673
12011
|
var require_brace_expansion = __commonJS({
|
12674
|
-
"node_modules/.pnpm/brace-expansion@2.0.1/node_modules/brace-expansion/index.js"(
|
12012
|
+
"node_modules/.pnpm/brace-expansion@2.0.1/node_modules/brace-expansion/index.js"(exports, module2) {
|
12675
12013
|
var balanced = require_balanced_match();
|
12676
12014
|
module2.exports = expandTop;
|
12677
12015
|
var escSlash = "\0SLASH" + Math.random() + "\0";
|
@@ -12820,10 +12158,10 @@ var require_brace_expansion = __commonJS({
|
|
12820
12158
|
}
|
12821
12159
|
});
|
12822
12160
|
|
12823
|
-
// node_modules/.pnpm/minimatch@7.4.
|
12161
|
+
// node_modules/.pnpm/minimatch@7.4.3/node_modules/minimatch/dist/mjs/brace-expressions.js
|
12824
12162
|
var posixClasses, braceEscape, regexpEscape, rangesToString, parseClass;
|
12825
12163
|
var init_brace_expressions = __esm({
|
12826
|
-
"node_modules/.pnpm/minimatch@7.4.
|
12164
|
+
"node_modules/.pnpm/minimatch@7.4.3/node_modules/minimatch/dist/mjs/brace-expressions.js"() {
|
12827
12165
|
posixClasses = {
|
12828
12166
|
"[:alnum:]": ["\\p{L}\\p{Nl}\\p{Nd}", true],
|
12829
12167
|
"[:alpha:]": ["\\p{L}\\p{Nl}", true],
|
@@ -12935,30 +12273,30 @@ var init_brace_expressions = __esm({
|
|
12935
12273
|
}
|
12936
12274
|
});
|
12937
12275
|
|
12938
|
-
// node_modules/.pnpm/minimatch@7.4.
|
12276
|
+
// node_modules/.pnpm/minimatch@7.4.3/node_modules/minimatch/dist/mjs/escape.js
|
12939
12277
|
var escape;
|
12940
12278
|
var init_escape = __esm({
|
12941
|
-
"node_modules/.pnpm/minimatch@7.4.
|
12279
|
+
"node_modules/.pnpm/minimatch@7.4.3/node_modules/minimatch/dist/mjs/escape.js"() {
|
12942
12280
|
escape = (s, { windowsPathsNoEscape = false } = {}) => {
|
12943
12281
|
return windowsPathsNoEscape ? s.replace(/[?*()[\]]/g, "[$&]") : s.replace(/[?*()[\]\\]/g, "\\$&");
|
12944
12282
|
};
|
12945
12283
|
}
|
12946
12284
|
});
|
12947
12285
|
|
12948
|
-
// node_modules/.pnpm/minimatch@7.4.
|
12286
|
+
// node_modules/.pnpm/minimatch@7.4.3/node_modules/minimatch/dist/mjs/unescape.js
|
12949
12287
|
var unescape;
|
12950
12288
|
var init_unescape = __esm({
|
12951
|
-
"node_modules/.pnpm/minimatch@7.4.
|
12289
|
+
"node_modules/.pnpm/minimatch@7.4.3/node_modules/minimatch/dist/mjs/unescape.js"() {
|
12952
12290
|
unescape = (s, { windowsPathsNoEscape = false } = {}) => {
|
12953
12291
|
return windowsPathsNoEscape ? s.replace(/\[([^\/\\])\]/g, "$1") : s.replace(/((?!\\).|^)\[([^\/\\])\]/g, "$1$2").replace(/\\([^\/])/g, "$1");
|
12954
12292
|
};
|
12955
12293
|
}
|
12956
12294
|
});
|
12957
12295
|
|
12958
|
-
// node_modules/.pnpm/minimatch@7.4.
|
12296
|
+
// node_modules/.pnpm/minimatch@7.4.3/node_modules/minimatch/dist/mjs/index.js
|
12959
12297
|
var import_brace_expansion, minimatch, starDotExtRE, starDotExtTest, starDotExtTestDot, starDotExtTestNocase, starDotExtTestNocaseDot, starDotStarRE, starDotStarTest, starDotStarTestDot, dotStarRE, dotStarTest, starRE, starTest, starTestDot, qmarksRE, qmarksTestNocase, qmarksTestNocaseDot, qmarksTestDot, qmarksTest, qmarksTestNoExt, qmarksTestNoExtDot, defaultPlatform, path, sep, GLOBSTAR, plTypes, qmark, star, twoStarDot, twoStarNoDot, charSet, reSpecials, addPatternStartSet, filter, ext, defaults, braceExpand, MAX_PATTERN_LENGTH, assertValidPattern, makeRe, match, globUnescape, globMagic, regExpEscape, Minimatch;
|
12960
12298
|
var init_mjs = __esm({
|
12961
|
-
"node_modules/.pnpm/minimatch@7.4.
|
12299
|
+
"node_modules/.pnpm/minimatch@7.4.3/node_modules/minimatch/dist/mjs/index.js"() {
|
12962
12300
|
import_brace_expansion = __toESM(require_brace_expansion(), 1);
|
12963
12301
|
init_brace_expressions();
|
12964
12302
|
init_escape();
|
@@ -17598,12 +16936,12 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
|
|
17598
16936
|
const tableNameWithSchema = statement.schema ? `"${statement.schema}"."${tableFrom}"` : `"${tableFrom}"`;
|
17599
16937
|
const tableToNameWithSchema = schemaTo ? `"${schemaTo}"."${tableTo}"` : `"${tableTo}"`;
|
17600
16938
|
const alterStatement = `ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT "${name}" FOREIGN KEY (${fromColumnsString}) REFERENCES ${tableToNameWithSchema}(${toColumnsString})${onDeleteStatement}${onUpdateStatement}`;
|
17601
|
-
let
|
17602
|
-
|
17603
|
-
|
17604
|
-
|
17605
|
-
|
17606
|
-
return
|
16939
|
+
let sql2 = "DO $$ BEGIN\n";
|
16940
|
+
sql2 += " " + alterStatement + ";\n";
|
16941
|
+
sql2 += "EXCEPTION\n";
|
16942
|
+
sql2 += " WHEN duplicate_object THEN null;\n";
|
16943
|
+
sql2 += "END $$;\n";
|
16944
|
+
return sql2;
|
17607
16945
|
}
|
17608
16946
|
};
|
17609
16947
|
SqliteCreateForeignKeyConvertor = class extends Convertor {
|
@@ -17649,7 +16987,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
|
|
17649
16987
|
const newFk = PgSquasher.unsquashFK(statement.data);
|
17650
16988
|
const oldFk = PgSquasher.unsquashFK(statement.oldFkey);
|
17651
16989
|
const tableNameWithSchema = statement.schema ? `"${statement.schema}"."${oldFk.tableFrom}"` : `"${oldFk.tableFrom}"`;
|
17652
|
-
let
|
16990
|
+
let sql2 = `ALTER TABLE ${tableNameWithSchema} DROP CONSTRAINT "${oldFk.name}";
|
17653
16991
|
`;
|
17654
16992
|
const onDeleteStatement = newFk.onDelete ? ` ON DELETE ${newFk.onDelete}` : "";
|
17655
16993
|
const onUpdateStatement = newFk.onUpdate ? ` ON UPDATE ${newFk.onUpdate}` : "";
|
@@ -17658,12 +16996,12 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
|
|
17658
16996
|
const tableFromNameWithSchema = oldFk.schemaTo ? `"${oldFk.schemaTo}"."${oldFk.tableFrom}"` : `"${oldFk.tableFrom}"`;
|
17659
16997
|
const tableToNameWithSchema = newFk.schemaTo ? `"${newFk.schemaTo}"."${newFk.tableFrom}"` : `"${newFk.tableFrom}"`;
|
17660
16998
|
const alterStatement = `ALTER TABLE ${tableFromNameWithSchema} ADD CONSTRAINT "${newFk.name}" FOREIGN KEY (${fromColumnsString}) REFERENCES ${tableToNameWithSchema}(${toColumnsString})${onDeleteStatement}${onUpdateStatement}`;
|
17661
|
-
|
17662
|
-
|
17663
|
-
|
17664
|
-
|
17665
|
-
|
17666
|
-
return
|
16999
|
+
sql2 += "DO $$ BEGIN\n";
|
17000
|
+
sql2 += " " + alterStatement + ";\n";
|
17001
|
+
sql2 += "EXCEPTION\n";
|
17002
|
+
sql2 += " WHEN duplicate_object THEN null;\n";
|
17003
|
+
sql2 += "END $$;\n";
|
17004
|
+
return sql2;
|
17667
17005
|
}
|
17668
17006
|
};
|
17669
17007
|
SqliteAlterForeignKeyConvertor = class extends Convertor {
|
@@ -18030,9 +17368,7 @@ function mapSqlToSqliteType(sqlType) {
|
|
18030
17368
|
return "text";
|
18031
17369
|
} else if (lowered.startsWith("blob")) {
|
18032
17370
|
return "blob";
|
18033
|
-
} else if (["real", "double", "double precision", "float"].some(
|
18034
|
-
(it) => lowered.startsWith(it)
|
18035
|
-
)) {
|
17371
|
+
} else if (["real", "double", "double precision", "float"].some((it) => lowered.startsWith(it))) {
|
18036
17372
|
return "real";
|
18037
17373
|
} else {
|
18038
17374
|
return "numeric";
|
@@ -18219,7 +17555,7 @@ The unique constraint ${source_default.underline.blue(
|
|
18219
17555
|
`SELECT
|
18220
17556
|
m.name as "tableName", p.name as "columnName", p.type as "columnType", p."notnull" as "notNull", p.dflt_value as "defaultValue", p.pk as pk
|
18221
17557
|
FROM sqlite_master AS m JOIN pragma_table_info(m.name) AS p
|
18222
|
-
WHERE m.type = 'table' and m.tbl_name != 'sqlite_sequence' and m.tbl_name != 'sqlite_stat1' and m.tbl_name != '_litestream_seq' and m.tbl_name != '_litestream_lock' and m.tbl_name != 'libsql_wasm_func_table'
|
17558
|
+
WHERE m.type = 'table' and m.tbl_name != 'sqlite_sequence' and m.tbl_name != 'sqlite_stat1' and m.tbl_name != '_litestream_seq' and m.tbl_name != '_litestream_lock' and m.tbl_name != 'libsql_wasm_func_table';
|
18223
17559
|
`
|
18224
17560
|
);
|
18225
17561
|
const tablesWithSeq = [];
|
@@ -18933,9 +18269,9 @@ var init_sqliteImports = __esm({
|
|
18933
18269
|
import_sqlite_core2 = require("drizzle-orm/sqlite-core");
|
18934
18270
|
import_drizzle_orm6 = require("drizzle-orm");
|
18935
18271
|
init_utils2();
|
18936
|
-
prepareFromExports2 = (
|
18272
|
+
prepareFromExports2 = (exports) => {
|
18937
18273
|
const tables = [];
|
18938
|
-
const i0values = Object.values(
|
18274
|
+
const i0values = Object.values(exports);
|
18939
18275
|
i0values.forEach((t) => {
|
18940
18276
|
if ((0, import_drizzle_orm6.is)(t, import_sqlite_core2.SQLiteTable)) {
|
18941
18277
|
tables.push(t);
|
@@ -18971,9 +18307,9 @@ var init_mysqlImports = __esm({
|
|
18971
18307
|
import_mysql_core3 = require("drizzle-orm/mysql-core");
|
18972
18308
|
import_drizzle_orm7 = require("drizzle-orm");
|
18973
18309
|
init_utils2();
|
18974
|
-
prepareFromExports3 = (
|
18310
|
+
prepareFromExports3 = (exports) => {
|
18975
18311
|
const tables = [];
|
18976
|
-
const i0values = Object.values(
|
18312
|
+
const i0values = Object.values(exports);
|
18977
18313
|
i0values.forEach((t) => {
|
18978
18314
|
if ((0, import_drizzle_orm7.is)(t, import_mysql_core3.MySqlTable)) {
|
18979
18315
|
tables.push(t);
|
@@ -20041,6 +19377,7 @@ var logSuggestionsAndReturn = async (connection, statements, json1, json2, meta)
|
|
20041
19377
|
init_mysqlSerializer();
|
20042
19378
|
init_global();
|
20043
19379
|
init_migrate();
|
19380
|
+
var import_drizzle_orm8 = require("drizzle-orm");
|
20044
19381
|
var generateDrizzleJson = (imports, prevId) => {
|
20045
19382
|
const prepared = prepareFromExports(imports);
|
20046
19383
|
const id = (0, import_crypto.randomUUID)();
|
@@ -20075,10 +19412,9 @@ var generateMigration = async (prev, cur) => {
|
|
20075
19412
|
};
|
20076
19413
|
var pushSchema = async (imports, drizzleInstance) => {
|
20077
19414
|
const { applyPgSnapshotsDiff: applyPgSnapshotsDiff2 } = await Promise.resolve().then(() => (init_snapshotsDiffer(), snapshotsDiffer_exports));
|
20078
|
-
const { sql } = await import("drizzle-orm");
|
20079
19415
|
const db = {
|
20080
19416
|
query: async (query, params) => {
|
20081
|
-
const res = await drizzleInstance.execute(sql.raw(query));
|
19417
|
+
const res = await drizzleInstance.execute(import_drizzle_orm8.sql.raw(query));
|
20082
19418
|
return res.rows;
|
20083
19419
|
}
|
20084
19420
|
};
|
@@ -20137,14 +19473,13 @@ var generateSQLiteMigration = async (prev, cur) => {
|
|
20137
19473
|
};
|
20138
19474
|
var pushSQLiteSchema = async (imports, drizzleInstance) => {
|
20139
19475
|
const { applySqliteSnapshotsDiff: applySqliteSnapshotsDiff2 } = await Promise.resolve().then(() => (init_snapshotsDiffer(), snapshotsDiffer_exports));
|
20140
|
-
const { sql } = await import("drizzle-orm");
|
20141
19476
|
const db = {
|
20142
19477
|
query: async (query, params) => {
|
20143
|
-
const res = drizzleInstance.all(sql.raw(query));
|
19478
|
+
const res = drizzleInstance.all(import_drizzle_orm8.sql.raw(query));
|
20144
19479
|
return res;
|
20145
19480
|
},
|
20146
19481
|
run: async (query) => {
|
20147
|
-
return Promise.resolve(drizzleInstance.run(sql.raw(query))).then(
|
19482
|
+
return Promise.resolve(drizzleInstance.run(import_drizzle_orm8.sql.raw(query))).then(
|
20148
19483
|
() => {
|
20149
19484
|
}
|
20150
19485
|
);
|
@@ -20211,10 +19546,9 @@ var pushMySQLSchema = async (imports, drizzleInstance, databaseName) => {
|
|
20211
19546
|
const { applyMysqlSnapshotsDiff: applyMysqlSnapshotsDiff2 } = await Promise.resolve().then(() => (init_snapshotsDiffer(), snapshotsDiffer_exports));
|
20212
19547
|
const { logSuggestionsAndReturn: logSuggestionsAndReturn3 } = await Promise.resolve().then(() => (init_mysqlPushUtils(), mysqlPushUtils_exports));
|
20213
19548
|
const { mysqlPushIntrospect: mysqlPushIntrospect2 } = await Promise.resolve().then(() => (init_mysqlIntrospect(), mysqlIntrospect_exports));
|
20214
|
-
const { sql } = await import("drizzle-orm");
|
20215
19549
|
const db = {
|
20216
19550
|
query: async (query, params) => {
|
20217
|
-
const res = await drizzleInstance.execute(sql.raw(query));
|
19551
|
+
const res = await drizzleInstance.execute(import_drizzle_orm8.sql.raw(query));
|
20218
19552
|
return res[0];
|
20219
19553
|
}
|
20220
19554
|
};
|