Skip to content

Releases: Himenon/openapi-typescript-code-generator

@himenon/openapi-typescript-code-generator@0.18.0

26 Apr 08:53
Compare
Choose a tag to compare

Features

  • feat: support enum boolean union types #76
schemas:
    BooleanEnumType3:
      type: boolean
      enum: [true, false]
export type BooleanEnumType3 = true | false;

@himenon/openapi-typescript-code-generator@0.17.0

31 Mar 15:50
Compare
Choose a tag to compare

Features

  • feat: add title in comment #75

@himenon/openapi-typescript-code-generator@0.16.2

31 Mar 11:30
Compare
Choose a tag to compare
@himenon/openapi-typescript-code-generator@0.16.2

@himenon/openapi-typescript-code-generator@0.16.1

22 Mar 01:17
Compare
Choose a tag to compare

Others

  • chore(pnpm): update package manager #73

@himenon/openapi-typescript-code-generator@0.16.0

08 Mar 01:16
Compare
Choose a tag to compare

Features

  • feat: Updated behaviour of AdditionalProperties when owning OptionalPropery #72

@himenon/openapi-typescript-code-generator@0.15.0

30 Jan 09:58
Compare
Choose a tag to compare

Features

  • feat: Make the behavior of anyOf equivalent to oneOf (#70)

@himenon/openapi-typescript-code-generator@0.14.0

27 Jan 08:34
Compare
Choose a tag to compare

Features

  • feat: If the type cannot be estimated, set it to any (#69)

@himenon/openapi-typescript-code-generator@0.13.2

17 Jan 06:49
Compare
Choose a tag to compare

Bug Fix

  • fix(query-parameter): Support element access #68

@himenon/openapi-typescript-code-generator@0.13.1

17 Jan 06:23
Compare
Choose a tag to compare

Bug Fix

  • fix(path-parameter): Support element access #67

@himenon/openapi-typescript-code-generator@0.13.0

06 Dec 09:58
Compare
Choose a tag to compare

Features

  • OpenApi.Document can be specified directly as entryPoint in CodeGenerator (#66)
import { CodeGenerator } from "@himenon/openapi-typescript-code-generator";

const openApiSchema = {}; // your open api schema
const codeGenerator = new CodeGenerator(openApiSchema);