-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[Versioned HTTP] Add response runtime and type-level validation #153011
Merged
jloleysens
merged 16 commits into
elastic:main
from
jloleysens:add-response-validation-to-versioned-router
Mar 13, 2023
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
08353d5
updated experimental versioned route types to include "out" runtime a…
jloleysens b1d4084
make "in" and "out" optional rather than `| false`
jloleysens 397cfe5
do not use "undefined" type
jloleysens a677581
sigh, should probably allow route validation function
jloleysens d782bce
fix ts
jloleysens 7cc5347
some more TS fixes to narrow down types for inferences
jloleysens 116ac30
[CI] Auto-commit changed files from 'node scripts/lint_ts_projects --…
kibanamachine 4c625c3
address nits
jloleysens 4bdfb87
minor refactor: move type utility to shared package
jloleysens 705b7e8
[CI] Auto-commit changed files from 'node scripts/lint_ts_projects --…
kibanamachine 23faaff
refactor in=>request and out=>response
jloleysens 7f5165a
Merge branch 'main' into add-response-validation-to-versioned-router
jloleysens d9ff379
Merge branch 'main' into add-response-validation-to-versioned-router
jloleysens 7a60b06
added doc comment
jloleysens 1bb6cee
input=>request output=>response
jloleysens 002519f
added @experimental
jloleysens 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
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
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 |
---|---|---|
|
@@ -140,3 +140,14 @@ export type DeepPartialObject<T> = { [P in keyof T]+?: DeepPartial<T[P]> }; | |
export type { DotObject, DedotObject } from './src/dot'; | ||
|
||
export type ArrayElement<A> = A extends ReadonlyArray<infer T> ? T : never; | ||
|
||
/** | ||
* Takes a type and makes selected properties required. | ||
* | ||
* @example | ||
* interface Foo { bar?: string } | ||
* const foo: WithRequiredProperty<Foo, 'bar'> = { bar: 'baz' } | ||
*/ | ||
export type WithRequiredProperty<Type, Key extends keyof Type> = Omit<Type, Key> & { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We'll need to add a test if the type starts getting used a lot. |
||
[Property in Key]-?: Type[Property]; | ||
}; |
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.
👍