import * as z from "zod/v4"; import { ClosedEnum } from "../../types/enums.js"; export type CreateDomainEndpointGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export declare const CreateDomainEndpointKind: { readonly DeploymentPortal: "deployment_portal"; readonly WorkspacePackages: "workspace_packages"; readonly ManagerApi: "manager_api"; readonly DeploymentUrlBase: "deployment_url_base"; }; export type CreateDomainEndpointKind = ClosedEnum; export declare const CreateDomainEndpointType: { readonly Workspace: "workspace"; readonly Project: "project"; readonly Manager: "manager"; }; export type CreateDomainEndpointType = ClosedEnum; export type Owner = { type: CreateDomainEndpointType; id: string; }; export type CreateDomainEndpointRequestBody = { kind: CreateDomainEndpointKind; owner?: Owner | undefined; }; export type CreateDomainEndpointRequest = { /** * Unique identifier for the domain. */ id: string; requestBody?: CreateDomainEndpointRequestBody | undefined; }; /** @internal */ export declare const CreateDomainEndpointKind$outboundSchema: z.ZodEnum; /** @internal */ export declare const CreateDomainEndpointType$outboundSchema: z.ZodEnum; /** @internal */ export type Owner$Outbound = { type: string; id: string; }; /** @internal */ export declare const Owner$outboundSchema: z.ZodType; export declare function ownerToJSON(owner: Owner): string; /** @internal */ export type CreateDomainEndpointRequestBody$Outbound = { kind: string; owner?: Owner$Outbound | undefined; }; /** @internal */ export declare const CreateDomainEndpointRequestBody$outboundSchema: z.ZodType; export declare function createDomainEndpointRequestBodyToJSON(createDomainEndpointRequestBody: CreateDomainEndpointRequestBody): string; /** @internal */ export type CreateDomainEndpointRequest$Outbound = { id: string; RequestBody?: CreateDomainEndpointRequestBody$Outbound | undefined; }; /** @internal */ export declare const CreateDomainEndpointRequest$outboundSchema: z.ZodType; export declare function createDomainEndpointRequestToJSON(createDomainEndpointRequest: CreateDomainEndpointRequest): string; //# sourceMappingURL=createdomainendpoint.d.ts.map