more debug

pull/9078/head
Syed Ali Shahbaz 2022-05-26 12:03:14 +05:30 committed by GitHub
parent 4737778dc1
commit d372c4c526
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -21,9 +21,9 @@ const schemaWebhookBaseBodyParams = Webhook.pick({
export const schemaWebhookCreateParams = z
.object({
subscriberUrl: z.string().url(),
eventTriggers: z.any(),
eventTriggers: z.string().array(),
active: z.boolean(),
payloadTemplate: z.string().nullable(),
payloadTemplate: z.string().optional().nullable(),
eventTypeId: z.number().optional(),
appId: z.string().optional().nullable(),
})