import * as z from "zod"; export type AssignmentSourceQueryUpdateDtoIdTypeMapping = { /** * ID for the Statsig unit. */ statsigUnitID: string; /** * Column name associated with the ID type mapping. */ column: string; }; export type AssignmentSourceQueryUpdateDto = { /** * Optional new name for the assignment source. */ name?: string | undefined; /** * Optional updated context for the assignment source. */ description?: string | undefined; /** * Marks the assignment source as verified for internal trustworthiness. */ isVerified?: boolean | undefined; /** * Optional updated 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 AssignmentSourceQueryUpdateDtoIdTypeMapping$inboundSchema: z.ZodType; /** @internal */ export type AssignmentSourceQueryUpdateDtoIdTypeMapping$Outbound = { statsigUnitID: string; column: string; }; /** @internal */ export declare const AssignmentSourceQueryUpdateDtoIdTypeMapping$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 AssignmentSourceQueryUpdateDtoIdTypeMapping$ { /** @deprecated use `AssignmentSourceQueryUpdateDtoIdTypeMapping$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AssignmentSourceQueryUpdateDtoIdTypeMapping$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AssignmentSourceQueryUpdateDtoIdTypeMapping$Outbound` instead. */ type Outbound = AssignmentSourceQueryUpdateDtoIdTypeMapping$Outbound; } /** @internal */ export declare const AssignmentSourceQueryUpdateDto$inboundSchema: z.ZodType; /** @internal */ export type AssignmentSourceQueryUpdateDto$Outbound = { name?: string | undefined; description?: string | undefined; isVerified?: boolean | undefined; tags?: Array | undefined; sql: string; timestampColumn: string; experimentIDColumn: string; groupIDColumn: string; idTypeMapping: Array; }; /** @internal */ export declare const AssignmentSourceQueryUpdateDto$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 AssignmentSourceQueryUpdateDto$ { /** @deprecated use `AssignmentSourceQueryUpdateDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AssignmentSourceQueryUpdateDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AssignmentSourceQueryUpdateDto$Outbound` instead. */ type Outbound = AssignmentSourceQueryUpdateDto$Outbound; } //# sourceMappingURL=assignmentsourcequeryupdatedto.d.ts.map