We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91a1ec4 commit cefcbdbCopy full SHA for cefcbdb
packages/parser/src/schemas/sqs.ts
@@ -9,8 +9,8 @@ const SqsMsgAttributeDataTypeSchema = z.union([
9
]);
10
11
const SqsMsgAttributeSchema = z.object({
12
- stringValue: z.string().optional(),
13
- binaryValue: z.string().optional(),
+ stringValue: z.string().optional().nullable(),
+ binaryValue: z.string().optional().nullable(),
14
stringListValues: z.array(z.string()).optional(),
15
binaryListValues: z.array(z.string()).optional(),
16
dataType: SqsMsgAttributeDataTypeSchema,
0 commit comments