import * as z from "zod/v4-mini"; import { CustomFieldDateProperties, CustomFieldDateProperties$Outbound } from "./customfielddateproperties.js"; export type CustomFieldUpdateDateMetadata = string | number | number | boolean; /** * Schema to update a custom field of type date. */ export type CustomFieldUpdateDate = { /** * 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; name?: string | null | undefined; slug?: string | null | undefined; type: "date"; properties?: CustomFieldDateProperties | null | undefined; }; /** @internal */ export type CustomFieldUpdateDateMetadata$Outbound = string | number | number | boolean; /** @internal */ export declare const CustomFieldUpdateDateMetadata$outboundSchema: z.ZodMiniType; export declare function customFieldUpdateDateMetadataToJSON(customFieldUpdateDateMetadata: CustomFieldUpdateDateMetadata): string; /** @internal */ export type CustomFieldUpdateDate$Outbound = { metadata?: { [k: string]: string | number | number | boolean; } | undefined; name?: string | null | undefined; slug?: string | null | undefined; type: "date"; properties?: CustomFieldDateProperties$Outbound | null | undefined; }; /** @internal */ export declare const CustomFieldUpdateDate$outboundSchema: z.ZodMiniType; export declare function customFieldUpdateDateToJSON(customFieldUpdateDate: CustomFieldUpdateDate): string; //# sourceMappingURL=customfieldupdatedate.d.ts.map