import * as z from "zod"; export type IdTypeMapping = { /** * ID for the Statsig unit. */ statsigUnitID: string; /** * Column name linked to the ID. */ column: string; }; export type EntityPropertySourceCreationDto = { /** * Unique identifier for the entity property source. */ name: string; /** * Optional detailed context for the entity property source. */ description?: string | undefined; /** * Optional tags for categorization. */ tags?: Array | undefined; /** * SQL query defining the data source. */ sql: string; /** * Optional column name for timestamp. */ timestampColumn?: string | undefined; /** * Indicates if the timestamp is treated as a day. */ timestampAsDay?: boolean | undefined; /** * Mappings of Statsig units to their columns. */ idTypeMapping: Array; }; /** @internal */ export declare const IdTypeMapping$inboundSchema: z.ZodType; /** @internal */ export type IdTypeMapping$Outbound = { statsigUnitID: string; column: string; }; /** @internal */ export declare const IdTypeMapping$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 IdTypeMapping$ { /** @deprecated use `IdTypeMapping$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IdTypeMapping$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IdTypeMapping$Outbound` instead. */ type Outbound = IdTypeMapping$Outbound; } /** @internal */ export declare const EntityPropertySourceCreationDto$inboundSchema: z.ZodType; /** @internal */ export type EntityPropertySourceCreationDto$Outbound = { name: string; description?: string | undefined; tags?: Array | undefined; sql: string; timestampColumn?: string | undefined; timestampAsDay?: boolean | undefined; idTypeMapping: Array; }; /** @internal */ export declare const EntityPropertySourceCreationDto$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 EntityPropertySourceCreationDto$ { /** @deprecated use `EntityPropertySourceCreationDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EntityPropertySourceCreationDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EntityPropertySourceCreationDto$Outbound` instead. */ type Outbound = EntityPropertySourceCreationDto$Outbound; } //# sourceMappingURL=entitypropertysourcecreationdto.d.ts.map