Add new OpenAPI 2.0 and 3.0 specifications, including comprehensive type definitions and example files. Update .gitignore and bunfig.toml, and remove obsolete MIGRATION.md. Enhance README with additional usage examples and clarify type definitions.

This commit is contained in:
Luke Hagar
2025-09-25 14:57:24 +00:00
parent 3d0a7a3e3f
commit adc25abc0b
181 changed files with 30313 additions and 14953 deletions

10
2.0/data-types/index.ts Normal file
View File

@@ -0,0 +1,10 @@
// Base schema properties
export type { ArraySchema } from "./array";
export type { BooleanSchema } from "./boolean";
export type { FileSchema } from "./file";
export type { IntegerSchema } from "./integer";
export type { NumberSchema } from "./number";
export type { ObjectSchema } from "./object";
// Individual schema types
export type { StringSchema } from "./string";