-
Notifications
You must be signed in to change notification settings - Fork 161
feat(parser): support Standard Schema and upgrade to Zod v4 #4164
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
Merged
Changes from 10 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
55238ce
feat(parser): switch to standard schemas
dreamorosi 016cf3f
chore: types
dreamorosi 646af57
chore: conditional types
dreamorosi 0eb0d0c
chore: upgrade v4 & update tests/envelopes
dreamorosi a6e7aee
chore: coverage
dreamorosi 5654eb2
chore: peer dep
dreamorosi d4c2c4a
docs: update parser docs
dreamorosi 4be266b
chore: readme
dreamorosi abd5e48
chore: fix type check
dreamorosi 9f19e2b
Merge branch 'main' into feat/parser_standard_schema
dreamorosi 4982e5c
Update parser.md
dreamorosi 3617a52
Update parser.md
dreamorosi a65ac0c
Update parser.md
dreamorosi e0b96a0
Update parser.md
dreamorosi 34aa8fe
Update parser.md
dreamorosi 9b7d641
Update README.md
dreamorosi a4f2f1b
Update README.md
dreamorosi 5e911c3
Update README.md
dreamorosi d31fe8a
Update docs/features/parser.md
dreamorosi 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import { Logger } from '@aws-lambda-powertools/logger'; | ||
import { parser } from '@aws-lambda-powertools/parser/middleware'; | ||
import middy from '@middy/core'; | ||
import { | ||
array, | ||
number, | ||
object, | ||
optional, | ||
pipe, | ||
string, | ||
toMinValue, | ||
} from 'valibot'; | ||
|
||
const logger = new Logger(); | ||
|
||
const orderSchema = object({ | ||
id: pipe(number(), toMinValue(0)), | ||
description: string(), | ||
items: array( | ||
object({ | ||
id: pipe(number(), toMinValue(0)), | ||
quantity: pipe(number(), toMinValue(1)), | ||
description: string(), | ||
}) | ||
), | ||
optionalField: optional(string()), | ||
}); | ||
|
||
export const handler = middy() | ||
.use(parser({ schema: orderSchema })) | ||
.handler(async (event): Promise<void> => { | ||
for (const item of event.items) { | ||
// item is parsed as OrderItem | ||
logger.info('Processing item', { item }); | ||
} | ||
}); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.
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.
Uh oh!
There was an error while loading. Please reload this page.