-
-
Notifications
You must be signed in to change notification settings - Fork 395
feat: add an option to disable throwing an error when !request.ok #297
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hello @RoCat ! Thanks for this feature request, can you switch target branch from |
Hi, change done ;) |
Thank you! |
grandsilence
pushed a commit
to grandsilence/swagger-typescript-api-nextgen
that referenced
this pull request
May 16, 2022
…ot true (acacode#297) Co-authored-by: rcatoio <[email protected]> Co-authored-by: Sergey S. Volkov <[email protected]>
js2me
added a commit
that referenced
this pull request
Aug 15, 2022
* Feature: allow passing "patch" option to "swagger2openapi" (#283) Co-authored-by: cassel <[email protected]> * Loads prettier config from user's project (#286) * fix: problem with missing HttpResponse type with --to-js option * fix: missing extractRequestBody field in type * fix(reject): fix reject and exit with code 1 if error (#295) * fix(reject): fix reject and exit with code 1 if error * feat: add a parameter to sort types and types properties (#299) Co-authored-by: rcatoio <[email protected]> * feat: add an option to disable throwing an error when request.ok is not true (#297) Co-authored-by: rcatoio <[email protected]> Co-authored-by: Sergey S. Volkov <[email protected]> * fix: fix missing `title` of object type (#303) * chore: refresh auto generated code; chore: add axios to dev deps * bump: up to 9.3.0 * bump: up to 9.3.1; fix: axios * chore: fix typo (#376) * 304 Support readOnly properties (#365) * allow mutually exclusive input options (#327) Co-authored-by: Sergey S. Volkov <[email protected]> * Update fetch-http-client.eta (#329) * BREAKING_CHANGE: add --extract-response-body option; bump: version to 9.4.0 * feat: added authorization token to headers Co-authored-by: MarcinFilipek <[email protected]> * feat: --extract-response-error option * chore: refresh code gen tests * fix: change COMPLEX_NOT_OF to COMPLEX_NOT (#356) * Fix request format and allow for files in request - With code review changes (#350) * fix pick format allow for file array in form data requests * fixed code review suggestions Co-authored-by: Daniele De Matteo <[email protected]> Co-authored-by: Sergey S. Volkov <[email protected]> * Pass through required properties to allOf/anyOf/oneOf children (#342) * Pass through required properties to allOf children * extend fix to anyOf and oneOf * fix: account for children making parent fields required Co-authored-by: Anders Cassidy <[email protected]> Co-authored-by: Daniel Playfair Cal <[email protected]> Co-authored-by: Sergey S. Volkov <[email protected]> * Add option to change main Api class name (#320) * Update api.eta * Update index.d.ts * Update index.js * Update index.js * Update config.js Co-authored-by: Sergey S. Volkov <[email protected]> * fix: missing stringifyFormItem method; bump: up version to 10.0.0 * docs: update docs, changelog, fix: problem with complex types (makeAddRequiredToChildSchema) Co-authored-by: Xavier Cassel <[email protected]> Co-authored-by: cassel <[email protected]> Co-authored-by: Adrian Wieprzkowicz <[email protected]> Co-authored-by: EvgenBabenko <[email protected]> Co-authored-by: RoCat <[email protected]> Co-authored-by: rcatoio <[email protected]> Co-authored-by: 卡色 <[email protected]> Co-authored-by: 江麻妞 <[email protected]> Co-authored-by: Kasper Moskwiak <[email protected]> Co-authored-by: Ben Watkins <[email protected]> Co-authored-by: bonukai <[email protected]> Co-authored-by: baggoedw <[email protected]> Co-authored-by: Marcus Dunn <[email protected]> Co-authored-by: Daniele De Matteo <[email protected]> Co-authored-by: Daniel Playfair Cal <[email protected]> Co-authored-by: Anders Cassidy <[email protected]> Co-authored-by: Daniel Playfair Cal <[email protected]>
Would love to see this option added to generateApi as well 🥳 EDIT: Actually, it seems to be working already, it's just missing from the typescript declaration (index.d.ts). |
It still isn't in the type definitions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In my app i have a lot of "normal" HTTP errors (e.g. 404 when no "object" found etc...).
It's a pain to alway surround API call with try / catch (or then / catch) to avoid code crash when a simple if(response.ok) will be enough.
I added "disableThrowOnError" option to remove the throw error behavior on fetch-http-client.
Default value is false, then the current behavior remain unchanged.