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:
21
node_modules/zod-to-json-schema/dist/esm/parsers/literal.js
generated
vendored
Normal file
21
node_modules/zod-to-json-schema/dist/esm/parsers/literal.js
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
export function parseLiteralDef(def, refs) {
|
||||
const parsedType = typeof def.value;
|
||||
if (parsedType !== "bigint" &&
|
||||
parsedType !== "number" &&
|
||||
parsedType !== "boolean" &&
|
||||
parsedType !== "string") {
|
||||
return {
|
||||
type: Array.isArray(def.value) ? "array" : "object",
|
||||
};
|
||||
}
|
||||
if (refs.target === "openApi3") {
|
||||
return {
|
||||
type: parsedType === "bigint" ? "integer" : parsedType,
|
||||
enum: [def.value],
|
||||
};
|
||||
}
|
||||
return {
|
||||
type: parsedType === "bigint" ? "integer" : parsedType,
|
||||
const: def.value,
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user