import * as z from "zod"; export type EmbeddedCatalogEntryV1 = { /** * Optional aliases that can be used to reference this entry */ aliases?: Array | undefined; /** * An optional alternative ID for this entry, which is ensured to be unique for the type */ externalId?: string | undefined; /** * ID of this catalog entry */ id: string; /** * Name is the human readable name of this entry */ name: string; }; /** @internal */ export declare const EmbeddedCatalogEntryV1$inboundSchema: z.ZodType; /** @internal */ export type EmbeddedCatalogEntryV1$Outbound = { aliases?: Array | undefined; external_id?: string | undefined; id: string; name: string; }; /** @internal */ export declare const EmbeddedCatalogEntryV1$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 EmbeddedCatalogEntryV1$ { /** @deprecated use `EmbeddedCatalogEntryV1$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EmbeddedCatalogEntryV1$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EmbeddedCatalogEntryV1$Outbound` instead. */ type Outbound = EmbeddedCatalogEntryV1$Outbound; } //# sourceMappingURL=embeddedcatalogentryv1.d.ts.map