feat(auth): implement user authentication system
This commit is contained in:
parent
4847ab793a
commit
25cea4fbe8
12051 changed files with 1462377 additions and 0 deletions
12
backend/node_modules/zod/v4/classic/from-json-schema.d.cts
generated
vendored
Normal file
12
backend/node_modules/zod/v4/classic/from-json-schema.d.cts
generated
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import type * as JSONSchema from "../core/json-schema.cjs";
|
||||
import { type $ZodRegistry } from "../core/registries.cjs";
|
||||
import type { ZodType } from "./schemas.cjs";
|
||||
type JSONSchemaVersion = "draft-2020-12" | "draft-7" | "draft-4" | "openapi-3.0";
|
||||
interface FromJSONSchemaParams {
|
||||
defaultTarget?: JSONSchemaVersion;
|
||||
registry?: $ZodRegistry<any>;
|
||||
}
|
||||
/**
|
||||
* Converts a JSON Schema to a Zod schema. This function should be considered semi-experimental. It's behavior is liable to change. */
|
||||
export declare function fromJSONSchema(schema: JSONSchema.JSONSchema | boolean, params?: FromJSONSchemaParams): ZodType;
|
||||
export {};
|
||||
Loading…
Add table
Add a link
Reference in a new issue