PDPA Features: ✅ Cookie consent banner ✅ Consent logging API ✅ Admin dashboard ✅ Privacy Policy ✅ Terms & Conditions Technical: ✅ Astro 5.x + Tailwind v4 ✅ Docker on port 80 ✅ SQLite database ✅ 15 pages built Ready for Easypanel deployment.
22 lines
609 B
JavaScript
22 lines
609 B
JavaScript
export function parseLiteralDef(def, refs) {
|
|
const parsedType = typeof def.value;
|
|
if (parsedType !== "bigint" &&
|
|
parsedType !== "number" &&
|
|
parsedType !== "boolean" &&
|
|
parsedType !== "string") {
|
|
return {
|
|
type: Array.isArray(def.value) ? "array" : "object",
|
|
};
|
|
}
|
|
if (refs.target === "openApi3") {
|
|
return {
|
|
type: parsedType === "bigint" ? "integer" : parsedType,
|
|
enum: [def.value],
|
|
};
|
|
}
|
|
return {
|
|
type: parsedType === "bigint" ? "integer" : parsedType,
|
|
const: def.value,
|
|
};
|
|
}
|