import * as z from "zod"; export type EntityPropertySourceDtoIdTypeMapping = { /** * ID for the Statsig unit. */ statsigUnitID: string; /** * Column name linked to the ID. */ column: string; }; export type EntityPropertySourceDto = { /** * Unique identifier for the entity property source. */ name: string; /** * Detailed context and purpose of the entity property source. */ description: string; /** * Tags for categorization and search. */ tags: Array; /** * 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 EntityPropertySourceDtoIdTypeMapping$inboundSchema: z.ZodType; /** @internal */ export type EntityPropertySourceDtoIdTypeMapping$Outbound = { statsigUnitID: string; column: string; }; /** @internal */ export declare const EntityPropertySourceDtoIdTypeMapping$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 EntityPropertySourceDtoIdTypeMapping$ { /** @deprecated use `EntityPropertySourceDtoIdTypeMapping$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EntityPropertySourceDtoIdTypeMapping$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EntityPropertySourceDtoIdTypeMapping$Outbound` instead. */ type Outbound = EntityPropertySourceDtoIdTypeMapping$Outbound; } /** @internal */ export declare const EntityPropertySourceDto$inboundSchema: z.ZodType; /** @internal */ export type EntityPropertySourceDto$Outbound = { name: string; description: string; tags: Array; sql: string; timestampColumn?: string | undefined; timestampAsDay?: boolean | undefined; idTypeMapping: Array; }; /** @internal */ export declare const EntityPropertySourceDto$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 EntityPropertySourceDto$ { /** @deprecated use `EntityPropertySourceDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EntityPropertySourceDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EntityPropertySourceDto$Outbound` instead. */ type Outbound = EntityPropertySourceDto$Outbound; } //# sourceMappingURL=entitypropertysourcedto.d.ts.map