Fixes subscriber URL z type

pull/9078/head
Syed Ali Shahbaz 2022-05-19 16:40:27 +05:30 committed by GitHub
parent bc844f29ba
commit 95a1e32454
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ const schemaWebhookEditParams = z
.object({
payloadTemplate: z.string().optional(),
eventTriggers: z.string().optional(),
subscriberUrl: z.date().optional(),
subscriberUrl: z.string().optional(),
})
.strict();