import * as z from "zod"; import { EngineParamBindingPayloadV2, EngineParamBindingPayloadV2$Outbound } from "./engineparambindingpayloadv2.js"; export type CreateEntryRequestBody = { /** * Optional aliases that can be used to reference this entry */ aliases?: Array | undefined; /** * Values of this entry */ attributeValues: { [k: string]: EngineParamBindingPayloadV2; }; /** * ID of this catalog type */ catalogTypeId: string; /** * An optional alternative ID for this entry, which is ensured to be unique for the type */ externalId?: string | undefined; /** * Name is the human readable name of this entry */ name: string; /** * When catalog type is ranked, this is used to help order things */ rank?: number | undefined; }; /** @internal */ export declare const CreateEntryRequestBody$inboundSchema: z.ZodType; /** @internal */ export type CreateEntryRequestBody$Outbound = { aliases?: Array | undefined; attribute_values: { [k: string]: EngineParamBindingPayloadV2$Outbound; }; catalog_type_id: string; external_id?: string | undefined; name: string; rank?: number | undefined; }; /** @internal */ export declare const CreateEntryRequestBody$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 CreateEntryRequestBody$ { /** @deprecated use `CreateEntryRequestBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CreateEntryRequestBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CreateEntryRequestBody$Outbound` instead. */ type Outbound = CreateEntryRequestBody$Outbound; } //# sourceMappingURL=createentryrequestbody.d.ts.map