import * as z from "zod/v4-mini"; import { CustomFieldDateProperties, CustomFieldDateProperties$Outbound } from "./customfielddateproperties.js"; export type CustomFieldCreateDateMetadata = string | number | number | boolean; /** * Schema to create a custom field of type date. */ export type CustomFieldCreateDate = { /** * Key-value object allowing you to store additional information. * * @remarks * * The key must be a string with a maximum length of **40 characters**. * The value must be either: * * * A string with a maximum length of **500 characters** * * An integer * * A floating-point number * * A boolean * * You can store up to **50 key-value pairs**. */ metadata?: { [k: string]: string | number | number | boolean; } | undefined; type: "date"; /** * Identifier of the custom field. It'll be used as key when storing the value. Must be unique across the organization.It can only contain ASCII letters, numbers and hyphens. */ slug: string; /** * Name of the custom field. */ name: string; /** * The ID of the organization owning the custom field. **Required unless you use an organization token.** */ organizationId?: string | null | undefined; properties: CustomFieldDateProperties; }; /** @internal */ export type CustomFieldCreateDateMetadata$Outbound = string | number | number | boolean; /** @internal */ export declare const CustomFieldCreateDateMetadata$outboundSchema: z.ZodMiniType; export declare function customFieldCreateDateMetadataToJSON(customFieldCreateDateMetadata: CustomFieldCreateDateMetadata): string; /** @internal */ export type CustomFieldCreateDate$Outbound = { metadata?: { [k: string]: string | number | number | boolean; } | undefined; type: "date"; slug: string; name: string; organization_id?: string | null | undefined; properties: CustomFieldDateProperties$Outbound; }; /** @internal */ export declare const CustomFieldCreateDate$outboundSchema: z.ZodMiniType; export declare function customFieldCreateDateToJSON(customFieldCreateDate: CustomFieldCreateDate): string; //# sourceMappingURL=customfieldcreatedate.d.ts.map