acacode / acacode/swagger-typescript-api

application/json content type is not set for body that only has one field

未关闭
#684 1 条评论 1 个 reaction 已指派 0 人 在 GitHub 查看
主要语言
TypeScript
星标
4.1k
派生
436
PR 合并指标
30 天内没有已合并 PR

描述

this is one of our endpoints with a body that may accept two fields:
```ts
/**
* No description
*
* @tags Custodians
* @name PostSecuredCustodiansCreate
* @request POST:/v1/secured/custodians/create
*/
postSecuredCustodiansCreate = (
body: {
name: string;
notes?: string;
},
params: RequestParams = {}
) =>
this.request<
{
status: 'ok';
data: {
id: string;
/** @format date-time */
createdAt: string;
/** @format date-time */
updatedAt: string;
name: string;
notes?: string;
};
},
any
>({
path: `/v1/secured/custodians/create`,
method: 'POST',
body: body,
type: ContentType.Json,
format: 'json',
...params,
});
```

and in the same file, any endpoint that requires one field has missing `type` in request options:

```ts
/**
* No description
*
* @tags Custodians
* @name PostSecuredCustodiansGet
* @request POST:/v1/secured/custodians/get
*/
postSecuredCustodiansGet = (
body: {
id: string;
},
params: RequestParams = {}
) =>
this.request<
{
status: 'ok';
data: {
id: string;
/** @format date-time */
createdAt: string;
/** @format date-time */
updatedAt: string;
name: string;
notes?: string;
};
},
any
>({
path: `/v1/secured/custodians/get`,
method: 'POST',
body: body,
format: 'json',
...params,
}); // `type` arg is missing from here, client tries to send the body as text
```

贡献指南

这个仓库没有索引到贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。