acacode / acacode/swagger-typescript-api

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

Offen
#684 1 Kommentar 1 Reaktion 0 zugewiesene Personen Auf GitHub ansehen
Vorherrschende Sprache
TypeScript
Sterne
4.1k
Forks
436
PR-Merge-Kennzahlen
Keine gemergten PRs in 30 T.

Beschreibung

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
```

Beitragsleitfaden

Für dieses Repository ist kein Beitragsleitfaden indexiert

Bewertung

Dieses Issue wurde noch nicht bewertet.

Neue Issues direkt in Ihr Postfach

Eine kurze Übersicht über anfängerfreundliche GitHub-Issues.