import * as z from "zod"; import { EngineParamBindingPayloadV2, EngineParamBindingPayloadV2$Outbound } from "./engineparambindingpayloadv2.js"; export type UpdateEntryRequestBody = { /** * Optional aliases that can be used to reference this entry */ aliases?: Array | undefined; /** * Values of this entry */ attributeValues: { [k: string]: EngineParamBindingPayloadV2; }; /** * 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 UpdateEntryRequestBody$inboundSchema: z.ZodType; /** @internal */ export type UpdateEntryRequestBody$Outbound = { aliases?: Array | undefined; attribute_values: { [k: string]: EngineParamBindingPayloadV2$Outbound; }; external_id?: string | undefined; name: string; rank?: number | undefined; }; /** @internal */ export declare const UpdateEntryRequestBody$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 UpdateEntryRequestBody$ { /** @deprecated use `UpdateEntryRequestBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateEntryRequestBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateEntryRequestBody$Outbound` instead. */ type Outbound = UpdateEntryRequestBody$Outbound; } //# sourceMappingURL=updateentryrequestbody.d.ts.map