-
-
Notifications
You must be signed in to change notification settings - Fork 159
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
Namespace separation #751
Merged
Merged
Namespace separation #751
Conversation
This file contains 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
Benchmark stringify functions, especially vs `class-transformer`
Close #570 - support custom random generation
Close #575 - new function `literals()`
Fix #573 - exact import path generation
Prepare #574 - benchmark in each process
Develop #578 - utilize `is()` in `assert()` and `validate()`
Fix #573 - unable to run setup on Macbook + `pnpm`
…pt-tw-5.1.6 Update typescript requirement from ^5.1.5 to ^5.1.6
Add generation mode on playground website
`typia` could not validate recursive intersection type like below. Of course, below type is an extremely crazy case, but as goal of `typia` is to supporting every TypeScript types, I've fixed it. ```typescript export type ISetupConfig = | ({ type: 'Main'; } & ISetupConfigMain) | ({ type: 'Before'; } & ISetupConfigBefore) | ({ type: 'After'; } & ISetupConfigAfter); export type ISetupConfigMain = { content: ISetupConfig; }; export type ISetupConfigBefore = { content: ISetupConfig; }; export type ISetupConfigAfter = { content: ISetupConfig; }; ```
Fix #695 - support recursive intersection type
When repeated type comes recurrying both Array and Object types at the same time, comment tags could not be parsed. Fixed such bug since 4.1.3 update.
Fix #704 - comment tags when repeated type comes
Fix #706 - support `exactOptionalPropertyTypes` option
Make literals work with null
In TypeScript, the word `package` was one of reserved keywords that could not declare as a variable. Have not known it for a long time \o/.
Add `package` word on reserved keywords.
Separated some functions under `json` and `misc` for `protobuf`.
samchon
added
documentation
Improvements or additions to documentation
enhancement
New feature or request
labels
Aug 8, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.
Separated some functions under
json
andmisc
forprotobuf
.When
protobuf
features come intotypia
, name of JSON related functions would be similar withprotobuf
. Also, when more features likecbor
,messagePack
andgql
come, naming global functions of the root scope would be much different.typia
is not a library for only runtime validation and JSON serialization more.Therefore, decided to separate namespaces like below.