Skip to content
This repository was archived by the owner on Mar 20, 2026. It is now read-only.

Tags: samchon/openapi

Tags

v6.0.1

Toggle v6.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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]>

v6.0.0

Toggle v6.0.0's commit message
fix README table align

v5.1.0

Toggle v5.1.0's commit message
ugrade node version

v5.0.1

Toggle v5.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix gemini schema rule: allow constraint (#211)

* Fix gemini schema rule: allow constraint

* new file archiving

v5.0.0

Toggle v5.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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]>

v4.8.0

Toggle v4.8.0's commit message
publish 4.8

v4.7.2

Toggle v4.7.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix duplicated `IHttpMigrateRoute.accessor`. (#208)

* Fix duplicated `IHttpMigrateRoute.accessor`.

* Fix test function

* Fix typos

v4.7.1

Toggle v4.7.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Publish v4.7.1

v4.6.0

Toggle v4.6.0's commit message
Publish v4.6

v4.5.0

Toggle v4.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
`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