This repository was archived by the owner on Mar 20, 2026. It is now read-only.
Tags: samchon/openapi
Tags
HTTP migration writese plugin properties on comment. (#223) * HTTP migration writese plugin properties on comment. * Update src/composers/HttpMigrateRouteComposer.ts Co-authored-by: Copilot <[email protected]> --------- Co-authored-by: Copilot <[email protected]>
Remake `IGeminiSchema` by schema model change. (#209) * Remake `IGeminiSchema` by schema model change. * validated gemini * complete main logic * `additionalProperties := false` * rollback `additionalProperties ??= false` * Update src/composers/llm/ChatGptSchemaComposer.ts Co-authored-by: Copilot <[email protected]> * fix title * fix the problems * remove `default` in GPT schema again * fix test functions * trace it again * fix again * fix $ref description issue of OpenAI * complete with testing and documentation * fix documentation * only strict mode transforms description * Fix grammers * fix README * fis schema problem * prepare publishing * complete README * fix schema specification --------- Co-authored-by: Copilot <[email protected]>
`IChatGptSchema.title` in description as JSDocTag. (#194) * `IChatGptSchema.title` in description as JSDocTag. ```txt Some description. @title some title ``` Also, this strategy would be adjusted to the `typia` too. `typia` will no more define `IJsonSchema.title` from description comment. It will compose `IJsonSchema.title` only by `@title` tag. ```typescript export interface Something { /** * The first line is not title. */ first: string; /** * The title only comes from JSDocTag like below. * * @title this is the title */ second: number; } ``` * Fix test program error
PreviousNext