import * as z from "zod"; export type LoggedEventDto = { /** * The timestamp when the event occurred, represented as a string. */ timestamp: string; /** * The name of the event (e.g., "add_to_cart"). */ name: string; /** * The source of the event, indicating where it was triggered from. */ source: string; /** * The value associated with the event, providing additional context. */ value: string; /** * The ID of the user who triggered the event. */ userID: string; }; /** @internal */ export declare const LoggedEventDto$inboundSchema: z.ZodType; /** @internal */ export type LoggedEventDto$Outbound = { timestamp: string; name: string; source: string; value: string; userID: string; }; /** @internal */ export declare const LoggedEventDto$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace LoggedEventDto$ { /** @deprecated use `LoggedEventDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LoggedEventDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LoggedEventDto$Outbound` instead. */ type Outbound = LoggedEventDto$Outbound; } //# sourceMappingURL=loggedeventdto.d.ts.map