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