import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * Type of custom field */ export declare const CreateRequestBody4FieldType: { readonly SingleSelect: "single_select"; readonly MultiSelect: "multi_select"; readonly Text: "text"; readonly Link: "link"; readonly Numeric: "numeric"; }; /** * Type of custom field */ export type CreateRequestBody4FieldType = ClosedEnum; export type CreateRequestBody4 = { /** * Description of the custom field */ description: string; /** * Type of custom field */ fieldType: CreateRequestBody4FieldType; /** * Human readable name for the custom field */ name: string; }; /** @internal */ export declare const CreateRequestBody4FieldType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const CreateRequestBody4FieldType$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 CreateRequestBody4FieldType$ { /** @deprecated use `CreateRequestBody4FieldType$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 `CreateRequestBody4FieldType$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 CreateRequestBody4$inboundSchema: z.ZodType; /** @internal */ export type CreateRequestBody4$Outbound = { description: string; field_type: string; name: string; }; /** @internal */ export declare const CreateRequestBody4$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 CreateRequestBody4$ { /** @deprecated use `CreateRequestBody4$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CreateRequestBody4$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CreateRequestBody4$Outbound` instead. */ type Outbound = CreateRequestBody4$Outbound; } //# sourceMappingURL=createrequestbody4.d.ts.map