import * as z from "zod"; export type EntityPropertySourceQueryUpdateDtoIdTypeMapping = { /** * ID for the Statsig unit. */ statsigUnitID: string; /** * Column name linked to the ID. */ column: string; }; export type EntityPropertySourceQueryUpdateDto = { /** * Optional new name for the entity property source. */ name?: string | undefined; /** * Optional updated context for the entity property source. */ description?: string | undefined; /** * Optional updated 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 EntityPropertySourceQueryUpdateDtoIdTypeMapping$inboundSchema: z.ZodType; /** @internal */ export type EntityPropertySourceQueryUpdateDtoIdTypeMapping$Outbound = { statsigUnitID: string; column: string; }; /** @internal */ export declare const EntityPropertySourceQueryUpdateDtoIdTypeMapping$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 EntityPropertySourceQueryUpdateDtoIdTypeMapping$ { /** @deprecated use `EntityPropertySourceQueryUpdateDtoIdTypeMapping$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EntityPropertySourceQueryUpdateDtoIdTypeMapping$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EntityPropertySourceQueryUpdateDtoIdTypeMapping$Outbound` instead. */ type Outbound = EntityPropertySourceQueryUpdateDtoIdTypeMapping$Outbound; } /** @internal */ export declare const EntityPropertySourceQueryUpdateDto$inboundSchema: z.ZodType; /** @internal */ export type EntityPropertySourceQueryUpdateDto$Outbound = { name?: string | undefined; description?: string | undefined; tags?: Array | undefined; sql: string; timestampColumn?: string | undefined; timestampAsDay?: boolean | undefined; idTypeMapping: Array; }; /** @internal */ export declare const EntityPropertySourceQueryUpdateDto$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 EntityPropertySourceQueryUpdateDto$ { /** @deprecated use `EntityPropertySourceQueryUpdateDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EntityPropertySourceQueryUpdateDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EntityPropertySourceQueryUpdateDto$Outbound` instead. */ type Outbound = EntityPropertySourceQueryUpdateDto$Outbound; } //# sourceMappingURL=entitypropertysourcequeryupdatedto.d.ts.map