import * as z from "zod"; export type AssignmentSourceCreationDtoIdTypeMapping = { /** * ID for the Statsig unit. */ statsigUnitID: string; /** * Column name associated with the ID type mapping. */ column: string; }; export type AssignmentSourceCreationDto = { /** * Unique identifier for the assignment source. */ name: string; /** * Optional detailed context for the assignment source. */ description?: string | undefined; /** * Marks the assignment source as verified for internal trustworthiness. */ isVerified?: boolean | undefined; /** * Optional tags for categorization. */ tags?: Array | undefined; /** * SQL query defining the data source for assignments. */ sql: string; /** * Column name representing the timestamp of assignments. */ timestampColumn: string; /** * Column name for the experiment ID associated with the assignments. */ experimentIDColumn: string; /** * Column name for the group ID linked to the assignments. */ groupIDColumn: string; /** * Mappings of Statsig units to their respective columns. */ idTypeMapping: Array; }; /** @internal */ export declare const AssignmentSourceCreationDtoIdTypeMapping$inboundSchema: z.ZodType; /** @internal */ export type AssignmentSourceCreationDtoIdTypeMapping$Outbound = { statsigUnitID: string; column: string; }; /** @internal */ export declare const AssignmentSourceCreationDtoIdTypeMapping$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 AssignmentSourceCreationDtoIdTypeMapping$ { /** @deprecated use `AssignmentSourceCreationDtoIdTypeMapping$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AssignmentSourceCreationDtoIdTypeMapping$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AssignmentSourceCreationDtoIdTypeMapping$Outbound` instead. */ type Outbound = AssignmentSourceCreationDtoIdTypeMapping$Outbound; } /** @internal */ export declare const AssignmentSourceCreationDto$inboundSchema: z.ZodType; /** @internal */ export type AssignmentSourceCreationDto$Outbound = { name: string; description?: string | undefined; isVerified?: boolean | undefined; tags?: Array | undefined; sql: string; timestampColumn: string; experimentIDColumn: string; groupIDColumn: string; idTypeMapping: Array; }; /** @internal */ export declare const AssignmentSourceCreationDto$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 AssignmentSourceCreationDto$ { /** @deprecated use `AssignmentSourceCreationDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AssignmentSourceCreationDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AssignmentSourceCreationDto$Outbound` instead. */ type Outbound = AssignmentSourceCreationDto$Outbound; } //# sourceMappingURL=assignmentsourcecreationdto.d.ts.map