Refactor routing in App component to enhance navigation and improve error handling by integrating dynamic routes and updating the NotFound route.
This commit is contained in:
29
node_modules/zod-to-json-schema/dist/cjs/parsers/map.js
generated
vendored
Normal file
29
node_modules/zod-to-json-schema/dist/cjs/parsers/map.js
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.parseMapDef = void 0;
|
||||
const parseDef_js_1 = require("../parseDef.js");
|
||||
const record_js_1 = require("./record.js");
|
||||
function parseMapDef(def, refs) {
|
||||
if (refs.mapStrategy === "record") {
|
||||
return (0, record_js_1.parseRecordDef)(def, refs);
|
||||
}
|
||||
const keys = (0, parseDef_js_1.parseDef)(def.keyType._def, {
|
||||
...refs,
|
||||
currentPath: [...refs.currentPath, "items", "items", "0"],
|
||||
}) || {};
|
||||
const values = (0, parseDef_js_1.parseDef)(def.valueType._def, {
|
||||
...refs,
|
||||
currentPath: [...refs.currentPath, "items", "items", "1"],
|
||||
}) || {};
|
||||
return {
|
||||
type: "array",
|
||||
maxItems: 125,
|
||||
items: {
|
||||
type: "array",
|
||||
items: [keys, values],
|
||||
minItems: 2,
|
||||
maxItems: 2,
|
||||
},
|
||||
};
|
||||
}
|
||||
exports.parseMapDef = parseMapDef;
|
Reference in New Issue
Block a user