import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Product, Product$Outbound } from "./product.js"; /** * Sent when a product is updated. * * @remarks * * **Discord & Slack support:** Basic */ export type WebhookProductUpdatedPayload = { type: "product.updated"; timestamp: Date; /** * A product. */ data: Product; }; /** @internal */ export declare const WebhookProductUpdatedPayload$inboundSchema: z.ZodMiniType; /** @internal */ export type WebhookProductUpdatedPayload$Outbound = { type: "product.updated"; timestamp: string; data: Product$Outbound; }; /** @internal */ export declare const WebhookProductUpdatedPayload$outboundSchema: z.ZodMiniType; export declare function webhookProductUpdatedPayloadToJSON(webhookProductUpdatedPayload: WebhookProductUpdatedPayload): string; export declare function webhookProductUpdatedPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookproductupdatedpayload.d.ts.map