Dan Haughey

Results 3 issues of Dan Haughey

Serverless is throwing a warning when it validates its configuration before deployment: ``` Serverless: Configuration warning at 'functions.foo': unrecognized property 'deadLetter' ``` Excerpt from `serverless.yml`: ```yml functions: foo: handler: src/handlers/events/foo.bar...

Fixes the error discussed in https://github.com/sst/ion/issues/1144

In Zod v4, the single argument overload of `z.record()` has been dropped: https://zod.dev/v4/changelog?id=drops-single-argument-usage This PR supplies `z.string()` as the key instead of using the single argument overload, which is equivalent,...