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 bd1ca95 commit 47c08edCopy full SHA for 47c08ed
lambdas/event-publisher/src/domain/output-schemas.ts
@@ -29,11 +29,11 @@ const $BaseDataFields = z.object({
29
id: z.string(),
30
clientId: z.string().optional(),
31
createdAt: z.string(),
32
- createdBy: z.string(),
+ createdBy: z.string().optional(),
33
name: z.string(),
34
templateStatus: z.enum(TEMPLATE_STATUS_LIST),
35
updatedAt: z.string(),
36
- updatedBy: z.string(),
+ updatedBy: z.string().optional(),
37
});
38
39
const $EmailDataFields = $BaseDataFields.merge(
0 commit comments