import type { z } from 'zod' import type { contactsSchema, eventtrackingsSchema, messagesSchema } from '../schemas/index.ts' export type WebhookTypes = { contacts: z.TypeOf messages: z.TypeOf eventtrackings: z.TypeOf } export const webhookTypes = ['contacts', 'messages', 'eventtrackings'] as const satisfies Array