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:
21
node_modules/openai/_vendor/zod-to-json-schema/Refs.d.mts
generated
vendored
Normal file
21
node_modules/openai/_vendor/zod-to-json-schema/Refs.d.mts
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
import type { ZodTypeDef } from 'zod';
|
||||
import { Options, Targets } from "./Options.mjs";
|
||||
import { JsonSchema7Type } from "./parseDef.mjs";
|
||||
export type Refs = {
|
||||
seen: Map<ZodTypeDef, Seen>;
|
||||
/**
|
||||
* Set of all the `$ref`s we created, e.g. `Set(['#/$defs/ui'])`
|
||||
* this notable does not include any `definitions` that were
|
||||
* explicitly given as an option.
|
||||
*/
|
||||
seenRefs: Set<string>;
|
||||
currentPath: string[];
|
||||
propertyPath: string[] | undefined;
|
||||
} & Options<Targets>;
|
||||
export type Seen = {
|
||||
def: ZodTypeDef;
|
||||
path: string[];
|
||||
jsonSchema: JsonSchema7Type | undefined;
|
||||
};
|
||||
export declare const getRefs: (options?: string | Partial<Options<Targets>>) => Refs;
|
||||
//# sourceMappingURL=Refs.d.mts.map
|
||||
Reference in New Issue
Block a user