-
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
[typescript] Utility types now considered when generating schemas (Issue #21317) #21414
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
+398
−1
Merged
Changes from 7 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
a231ab6
Added failing test to fix Record renaming issue
DavidGrath 9adc829
Typescript utility types now taken into account when generating. Addr…
DavidGrath 6dfc001
Ran generation script
DavidGrath f729421
Remove print statements
DavidGrath 7007105
Removed TS ANTLR. Added Utility Types Sample. Pending Regeneration
DavidGrath b8f5cdf
Generated samples for utility types
DavidGrath 7826ba6
Samples fix
DavidGrath 4a6cc5a
Removed TypeScript utility type samples. Other reviews applied
DavidGrath 8f77456
Merge branch 'master' into issue-21317
DavidGrath 600ad25
Merge branch 'master' into issue-21317
DavidGrath 572dd9e
Updated samples
DavidGrath a9fc23c
meta-codegen
DavidGrath 465e1c6
Merge branch 'master' into issue-21317
DavidGrath File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
bin/configs/typescript-fetch-utility-types-without-runtime.yaml
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| generatorName: typescript-fetch | ||
| outputDir: samples/client/petstore/typescript-fetch/builds/utility-types-without-runtime | ||
| inputSpec: modules/openapi-generator/src/test/resources/3_1/issue_21317.yaml | ||
| templateDir: modules/openapi-generator/src/main/resources/typescript-fetch | ||
| typeMappings: | ||
| object: Record<string, unknown> | ||
| UserSummary: Pick<User, "email"> | ||
| additionalProperties: | ||
| withoutRuntimeChecks: true | ||
|
|
||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| generatorName: typescript-fetch | ||
| outputDir: samples/client/petstore/typescript-fetch/builds/utility-types | ||
| inputSpec: modules/openapi-generator/src/test/resources/3_1/issue_21317.yaml | ||
| templateDir: modules/openapi-generator/src/main/resources/typescript-fetch | ||
| typeMappings: | ||
| object: Record<string, unknown> | ||
|
|
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
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for adding the sample configs here, but after looking at the updated unit test, which covers the relevant code changes, i would argue the sample configs bin/configs/typescript-fetch-utility-types-without-runtime.yaml and bin/configs/typescript-fetch-utility-types.yaml and the corresponding samples should be removed, since: