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:
47
node_modules/openai/_vendor/zod-to-json-schema/parsers/date.mjs
generated
vendored
Normal file
47
node_modules/openai/_vendor/zod-to-json-schema/parsers/date.mjs
generated
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
import { setResponseValueAndErrors } from "../errorMessages.mjs";
|
||||
export function parseDateDef(def, refs, overrideDateStrategy) {
|
||||
const strategy = overrideDateStrategy ?? refs.dateStrategy;
|
||||
if (Array.isArray(strategy)) {
|
||||
return {
|
||||
anyOf: strategy.map((item, i) => parseDateDef(def, refs, item)),
|
||||
};
|
||||
}
|
||||
switch (strategy) {
|
||||
case 'string':
|
||||
case 'format:date-time':
|
||||
return {
|
||||
type: 'string',
|
||||
format: 'date-time',
|
||||
};
|
||||
case 'format:date':
|
||||
return {
|
||||
type: 'string',
|
||||
format: 'date',
|
||||
};
|
||||
case 'integer':
|
||||
return integerDateParser(def, refs);
|
||||
}
|
||||
}
|
||||
const integerDateParser = (def, refs) => {
|
||||
const res = {
|
||||
type: 'integer',
|
||||
format: 'unix-time',
|
||||
};
|
||||
if (refs.target === 'openApi3') {
|
||||
return res;
|
||||
}
|
||||
for (const check of def.checks) {
|
||||
switch (check.kind) {
|
||||
case 'min':
|
||||
setResponseValueAndErrors(res, 'minimum', check.value, // This is in milliseconds
|
||||
check.message, refs);
|
||||
break;
|
||||
case 'max':
|
||||
setResponseValueAndErrors(res, 'maximum', check.value, // This is in milliseconds
|
||||
check.message, refs);
|
||||
break;
|
||||
}
|
||||
}
|
||||
return res;
|
||||
};
|
||||
//# sourceMappingURL=date.mjs.map
|
||||
Reference in New Issue
Block a user