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 new product is created. * * @remarks * * **Discord & Slack support:** Basic */ export type WebhookProductCreatedPayload = { type: "product.created"; timestamp: Date; /** * A product. */ data: Product; }; /** @internal */ export declare const WebhookProductCreatedPayload$inboundSchema: z.ZodMiniType; /** @internal */ export type WebhookProductCreatedPayload$Outbound = { type: "product.created"; timestamp: string; data: Product$Outbound; }; /** @internal */ export declare const WebhookProductCreatedPayload$outboundSchema: z.ZodMiniType; export declare function webhookProductCreatedPayloadToJSON(webhookProductCreatedPayload: WebhookProductCreatedPayload): string; export declare function webhookProductCreatedPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookproductcreatedpayload.d.ts.map