/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import { ClosedEnum } from "../../types/enums.js"; /** * Type of event that triggered the webhook. */ export const WebhookEventTypeEnum = { TransactionCreated: "transaction_created", TransactionUpdated: "transaction_updated", TrackUpdated: "track_updated", BatchCreated: "batch_created", BatchPurchased: "batch_purchased", All: "all", } as const; /** * Type of event that triggered the webhook. */ export type WebhookEventTypeEnum = ClosedEnum; /** @internal */ export const WebhookEventTypeEnum$inboundSchema: z.ZodMiniEnum< typeof WebhookEventTypeEnum > = z.enum(WebhookEventTypeEnum); /** @internal */ export const WebhookEventTypeEnum$outboundSchema: z.ZodMiniEnum< typeof WebhookEventTypeEnum > = WebhookEventTypeEnum$inboundSchema;