avancement planning

This commit is contained in:
2026-05-26 11:58:39 +02:00
parent 619a2b240a
commit 150b97cd2e
4892 changed files with 99214 additions and 429382 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
import { ZodFirstPartyTypeKind } from "zod";
import { ZodFirstPartyTypeKind } from "zod/v3";
import { setResponseValueAndErrors } from "../errorMessages.js";
import { parseDef } from "../parseDef.js";
export function parseArrayDef(def, refs) {
+1 -1
View File
@@ -1,4 +1,4 @@
import { ZodFirstPartyTypeKind, } from "zod";
import { ZodFirstPartyTypeKind, } from "zod/v3";
import { parseDef } from "../parseDef.js";
import { parseStringDef } from "./string.js";
import { parseBrandedDef } from "./branded.js";
-1
View File
@@ -184,7 +184,6 @@ export function parseStringDef(def, refs) {
case "trim":
break;
default:
/* c8 ignore next */
((_) => { })(check);
}
}
+1 -2
View File
@@ -1,4 +1,4 @@
import { ZodFirstPartyTypeKind } from "zod";
import { ZodFirstPartyTypeKind } from "zod/v3";
import { parseAnyDef } from "./parsers/any.js";
import { parseArrayDef } from "./parsers/array.js";
import { parseBigintDef } from "./parsers/bigint.js";
@@ -100,7 +100,6 @@ export const selectParser = (def, typeName, refs) => {
case ZodFirstPartyTypeKind.ZodSymbol:
return undefined;
default:
/* c8 ignore next */
return ((_) => undefined)(typeName);
}
};