Initial commit: KidsAI Explorer with complete functionality
- Complete KidsAI Explorer application - Multi-language support (English/German) - AI-powered educational guidance using OpenAI - Interactive chat interface for children - Proper placeholder translation fixes - Mobile-responsive design - Educational framework for critical thinking
This commit is contained in:
16
node_modules/openai/_vendor/zod-to-json-schema/parsers/date.d.ts
generated
vendored
Normal file
16
node_modules/openai/_vendor/zod-to-json-schema/parsers/date.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
import { ZodDateDef } from 'zod';
|
||||
import { Refs } from "../Refs.js";
|
||||
import { ErrorMessages } from "../errorMessages.js";
|
||||
import { JsonSchema7NumberType } from "./number.js";
|
||||
import { DateStrategy } from "../Options.js";
|
||||
export type JsonSchema7DateType = {
|
||||
type: 'integer' | 'string';
|
||||
format: 'unix-time' | 'date-time' | 'date';
|
||||
minimum?: number;
|
||||
maximum?: number;
|
||||
errorMessage?: ErrorMessages<JsonSchema7NumberType>;
|
||||
} | {
|
||||
anyOf: JsonSchema7DateType[];
|
||||
};
|
||||
export declare function parseDateDef(def: ZodDateDef, refs: Refs, overrideDateStrategy?: DateStrategy): JsonSchema7DateType;
|
||||
//# sourceMappingURL=date.d.ts.map
|
||||
Reference in New Issue
Block a user