-
## Question
I am attempting to use TypedBody with assertEqual instead of the default assert in a Nest.js application. Here's what I tried:
```
@TypedRoute.Put()
update(
@TypedBody…
-
this is interface generated by @nestia/migrated.
1. If there is no description for the IAddress type, one of the descriptions for the properties within the type will be used.
2. nullable is not …
-
If there is no description for a schema, and there are descriptions for the sub-properties of the schema, one of the sub-property descriptions will be used as the schema's description. As a result, it…
-
1. support string type at error body.
as-is
```ts
export declare function TypedException(status: number | "2XX" | "3XX" | "4XX" | "5XX", description?: string | undefined): MethodDecorator;
```
…
-
## Question
I want to wrapping TypedRoute Decorator with another custom decorator.
But , If I try wrap, Nestia generate Error
Error: Error on nestia.core.TypedRoute.Post(): no transform has been c…
-
Swagger always requires the 'name' property to be mandatory for parameters.
in swagger editor error
// related json
// fixed json
-
I am very interested in Application Transformer, and converting TS types into json-schema/openapi.
I would like to be able to use `TSON.application` with a generic like so:
```ts
function toJso…
-
# How to implement various authentication patterns used in nestjs with nestia? '
Does it support the same kinds of guards we write for passport js with nestjs?If it does, how to pass the Bearer to…
-
```ts
@TypedRoute.Delete('/photo')
async deletePhotos(
@Req() req: USER_TYPE, //extends Request
@TypedQuery() params: ExcelPhotoDeleteBody,
): Promise {
console.log(req.query.fil…
-
## Question
How to apply Hot Reload?
https://docs.nestjs.com/recipes/hot-reload
I don't know how to configure