import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; import { CustomFieldOptionV1, CustomFieldOptionV1$Outbound } from "./customfieldoptionv1.js"; /** * Type of custom field */ export declare const CustomFieldTypeInfoV1FieldType: { readonly SingleSelect: "single_select"; readonly MultiSelect: "multi_select"; readonly Text: "text"; readonly Link: "link"; readonly Numeric: "numeric"; }; /** * Type of custom field */ export type CustomFieldTypeInfoV1FieldType = ClosedEnum; export type CustomFieldTypeInfoV1 = { /** * Description of the custom field */ description: string; /** * Type of custom field */ fieldType: CustomFieldTypeInfoV1FieldType; /** * Unique identifier for the custom field */ id: string; /** * Human readable name for the custom field */ name: string; /** * What options are available for this custom field, if this field has options */ options: Array; }; /** @internal */ export declare const CustomFieldTypeInfoV1FieldType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const CustomFieldTypeInfoV1FieldType$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace CustomFieldTypeInfoV1FieldType$ { /** @deprecated use `CustomFieldTypeInfoV1FieldType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly SingleSelect: "single_select"; readonly MultiSelect: "multi_select"; readonly Text: "text"; readonly Link: "link"; readonly Numeric: "numeric"; }>; /** @deprecated use `CustomFieldTypeInfoV1FieldType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly SingleSelect: "single_select"; readonly MultiSelect: "multi_select"; readonly Text: "text"; readonly Link: "link"; readonly Numeric: "numeric"; }>; } /** @internal */ export declare const CustomFieldTypeInfoV1$inboundSchema: z.ZodType; /** @internal */ export type CustomFieldTypeInfoV1$Outbound = { description: string; field_type: string; id: string; name: string; options: Array; }; /** @internal */ export declare const CustomFieldTypeInfoV1$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 CustomFieldTypeInfoV1$ { /** @deprecated use `CustomFieldTypeInfoV1$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CustomFieldTypeInfoV1$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CustomFieldTypeInfoV1$Outbound` instead. */ type Outbound = CustomFieldTypeInfoV1$Outbound; } //# sourceMappingURL=customfieldtypeinfov1.d.ts.map