Brian Archbold
Results
2
issues of
Brian Archbold
https://www.serverless.com/framework/docs/providers/aws/guide/deploying can we introduce the option to allow `deploymentMethod` for the serverless `provider` configuration? I apologize if this work is planned/scheduled or this isn't the means by which I should...
Hi, I have a schema like so: ```typescript const bananaSchema = z.object({ type: z.literal('fruit'), subType: z.literal('banana'), value: z.string(), }); const orangeSchema = z.object({ type: z.literal('fruit'), subType: z.literal('orange'), value: z.string(), });...