-
-
Notifications
You must be signed in to change notification settings - Fork 34
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
v10
is for Gisberta Salce Júnior
#864
Merged
Changes from 1 commit
Commits
Show all changes
50 commits
Select commit
Hold shift + click to select a range
172690b
Moving proprietary schemas into ez namespace. (#850)
RobinTail 92da319
Stop re-exporting `zod` (#865)
RobinTail 965c536
Making `express` a peer (#866)
RobinTail c135f51
Making typescript dev and peer. (#867)
RobinTail 23d43b6
Ref: listing the new dev dependencies more loose.
RobinTail 8e87583
Switching to `tsup` (#584)
RobinTail cfce36d
Min typescript version (peer) is 4.9.3.
RobinTail dbf4e46
Changelog: the upcoming version 10.0.0-beta1.
RobinTail b9e7614
Readme: changing the installation instruction and import examples.
RobinTail fd47774
10.0.0-beta1
RobinTail 64e9343
Integration and ESM tests: install peers according to the lib package…
RobinTail 20bbbce
Revert: no peers needed — it leads to lack of regular dependencies, l…
RobinTail 285916d
Immutable `withMeta` (#852)
RobinTail 92f54c3
Security: introducing the 10x.
RobinTail 4d52578
Merge branch 'v10-beta' of github.com:RobinTail/express-zod-api into …
RobinTail 8d38099
v10 is for Gisberta Salce Júnior.
RobinTail e4c8f9e
Changelog: upcoming 10.0.0-beta2.
RobinTail 4e432d7
10.0.0-beta2
RobinTail 722dcf0
Merge branch 'master' into v10-beta
RobinTail fa48450
Merge branch 'master' into v10-beta
RobinTail 627e827
Merge branch 'master' into v10-beta
RobinTail 9bfe2e4
Merge branch 'v10-beta' of github.com:RobinTail/express-zod-api into …
RobinTail 9502c52
Breaking: Client constructor now accepts object of parameters.
RobinTail 08fcfc0
Merge branch 'master' into v10-beta
RobinTail 9d3d95e
Changelog: upcoming 10.0.0-beta3.
RobinTail 0efd4b9
Readme: Listing the breaking change to Client.
RobinTail 1a6f1b8
Changelog: updating desc of 10.0.0-beta3.
RobinTail 7eb7a63
10.0.0-beta3
RobinTail 51a98d6
Fix .npmignore against prev ESM dist location.
RobinTail 82b89bc
Changelog: 10.0.0-beta4.
RobinTail f2785be
10.0.0-beta4
RobinTail c620eab
Fix dts path in package.json.
RobinTail 0e8e851
Switching to SWC 🐎 (#877)
RobinTail 7f60349
Merge branch 'master' into v10-beta
RobinTail 7617b4e
Merge branch 'master' into v10-beta
RobinTail 11e3a73
Merge branch 'master' into v10-beta
RobinTail 0a2b228
Test on 19.7.
RobinTail 7b48512
Security: update link.
RobinTail f70b08b
CHangelog: upcoming 10.0.0-beta5.
RobinTail e50a6a5
10.0.0-beta5
RobinTail b77a9b7
Revert "Test on 19.7."
RobinTail 8f1ec91
Revert "Revert "Test on 19.7.""
RobinTail 341b2b7
Merge branch 'master' into v10-beta
RobinTail 6d86852
Revert "Test on 19.7."
RobinTail 60a2107
Merge branch 'master' into v10-beta
RobinTail 61a3d74
Changelog: upcoming 10.0.0-beta6.
RobinTail 8203ed2
10.0.0-beta6
RobinTail 72edc01
Merge branch 'master' into v10-beta
RobinTail 11eac09
Merge branch 'master' into v10-beta
RobinTail e4e88ff
Setting the legacy v9 branch for running workflows.
RobinTail 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
Next
Next commit
Moving proprietary schemas into ez namespace. (#850)
- Loading branch information
commit 172690ba519059499d508e9d3e1c17944730ae41
There are no files selected for viewing
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
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
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { ZodDateIn } from "./date-in-schema"; | ||
import { ZodDateOut } from "./date-out-schema"; | ||
import { ZodFile } from "./file-schema"; | ||
import { ZodUpload } from "./upload-schema"; | ||
|
||
export namespace ez { | ||
export const file = ZodFile.create; | ||
export const upload = ZodUpload.create; | ||
export const dateIn = ZodDateIn.create; | ||
export const dateOut = ZodDateOut.create; | ||
} |
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
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
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
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
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
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.
ez
now