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