import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * Which category of resource */ export declare const CatalogResourceV2Category: { readonly Primitive: "primitive"; readonly Custom: "custom"; readonly External: "external"; }; /** * Which category of resource */ export type CatalogResourceV2Category = ClosedEnum; export type CatalogResourceV2 = { /** * Which category of resource */ category: CatalogResourceV2Category; /** * Human readable description for this resource */ description: string; /** * Label for this catalog resource type */ label: string; /** * Catalog type name for this resource */ type: string; /** * Documentation for the literal string value of this resource */ valueDocstring: string; }; /** @internal */ export declare const CatalogResourceV2Category$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const CatalogResourceV2Category$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace CatalogResourceV2Category$ { /** @deprecated use `CatalogResourceV2Category$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Primitive: "primitive"; readonly Custom: "custom"; readonly External: "external"; }>; /** @deprecated use `CatalogResourceV2Category$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Primitive: "primitive"; readonly Custom: "custom"; readonly External: "external"; }>; } /** @internal */ export declare const CatalogResourceV2$inboundSchema: z.ZodType; /** @internal */ export type CatalogResourceV2$Outbound = { category: string; description: string; label: string; type: string; value_docstring: string; }; /** @internal */ export declare const CatalogResourceV2$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 CatalogResourceV2$ { /** @deprecated use `CatalogResourceV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CatalogResourceV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CatalogResourceV2$Outbound` instead. */ type Outbound = CatalogResourceV2$Outbound; } //# sourceMappingURL=catalogresourcev2.d.ts.map