Closed rojiwon123 closed 1 year ago
현재 1.0.1 기준으로 @Body나 @TypedBody를 사용하지 않고 POST sdk를 만들면 Input type은 안생기는데, stringify는 Input타입을 사용하고 있는 버그가 발생했습니다.
at v1.0.1, If i don't use Body in POST api. sdk generated like that. Input type is undefined, but stringify use the type.
export namespace signInGithub { export type Output = IAuthUsecase.SignInResponse; export const METHOD = "POST" as const; export const PATH: string = "/sign-in/github"; export const ENCRYPTED: Fetcher.IEncrypted = { request: false, response: false, }; export function path(): string { return `/sign-in/github`; } export const stringify = (input: Input) => typia.assertStringify(input); // Inpu is undefined type. }
제가 생각한 수정 방향입니다!
개발자가 body를 사용하지 않는 POST API를 설계했을 때,
When a developer designs a POST API without using a body,
Originally posted by @industriously in https://github.com/samchon/nestia/issues/266#issuecomment-1456823891
Will fix by second way. Thanks for report
현재 1.0.1 기준으로 @Body나 @TypedBody를 사용하지 않고 POST sdk를 만들면 Input type은 안생기는데, stringify는 Input타입을 사용하고 있는 버그가 발생했습니다.
at v1.0.1, If i don't use Body in POST api. sdk generated like that. Input type is undefined, but stringify use the type.
제가 생각한 수정 방향입니다!
개발자가 body를 사용하지 않는 POST API를 설계했을 때,
When a developer designs a POST API without using a body,
Originally posted by @industriously in https://github.com/samchon/nestia/issues/266#issuecomment-1456823891