File tree 1 file changed +1
-1
lines changed
packages/openapi-typescript-helpers
1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ export type HttpMethod = "get" | "put" | "post" | "delete" | "options" | "head"
7
7
export type OkStatus = 200 | 201 | 202 | 203 | 204 | 206 | 207 | "2XX" ;
8
8
// prettier-ignore
9
9
/** 4XX and 5XX statuses */
10
- export type ErrorStatus = 500 | '5XX' | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 429 | 431 | 444 | 450 | 451 | 497 | 498 | 499 | '4XX' | "default" ;
10
+ export type ErrorStatus = 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 510 | 511 | '5XX' | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 429 | 431 | 444 | 450 | 451 | 497 | 498 | 499 | '4XX' | "default" ;
11
11
12
12
// OpenAPI type helpers
13
13
You can’t perform that action at this time.
0 commit comments