Skip to content

Releases: Himenon/openapi-typescript-code-generator

@himenon/[email protected]

29 Nov 08:02
Compare
Choose a tag to compare

@himenon/[email protected]

29 Nov 07:03
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: https://github.com/Himenon/openapi-typescript-code-generator/compare/@himenon/[email protected]...@himenon/[email protected]

@himenon/[email protected]

29 Nov 06:54
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: https://github.com/Himenon/openapi-typescript-code-generator/compare/@himenon/[email protected]...@himenon/[email protected]

@himenon/[email protected]

23 Jun 12:35
Compare
Choose a tag to compare

@himenon/[email protected]

17 May 12:26
Compare
Choose a tag to compare

@himenon/[email protected]

04 Apr 10:17
Compare
Choose a tag to compare

What's Changed

  • fix: type of style property in requestEncodings by @Thiry1 in #110

New Contributors

Full Changelog: https://github.com/Himenon/openapi-typescript-code-generator/compare/@himenon/[email protected]...@himenon/[email protected]

@himenon/[email protected]

@himenon/[email protected]

01 Apr 11:35
Compare
Choose a tag to compare

@himenon/[email protected]

01 Apr 10:07
Compare
Choose a tag to compare

Breaking Change

  • Update Api Client Arguments Interface #106

Playground: v0.24.0

New

export interface RequestArgs {
    httpMethod: HttpMethod;
    url: string;
    headers: ObjectLike | any;
    requestBody: ObjectLike | any;
    queryParameters: QueryParameters | undefined;
}
export interface ApiClient<RequestOption> {
    request: <T = SuccessResponses>(requestArgs: RequestArgs, options?: RequestOption) => T;
}

Old

export interface ApiClient<RequestOption> {
    request: <T = SuccessResponses>(httpMethod: HttpMethod, url: string, headers: ObjectLike | any, requestBody: ObjectLike | any, queryParameters: QueryParameters | undefined, options?: RequestOption) => Promise<T>;
}

What's Changed

Full Changelog: https://github.com/Himenon/openapi-typescript-code-generator/compare/@himenon/[email protected]...@himenon/[email protected]

@himenon/[email protected]

20 Mar 23:35
Compare
Choose a tag to compare