UNPKG

@vercel/sdk

Version:

<p align="center"> <a href="https://vercel.com"> <img src="https://assets.vercel.com/image/upload/v1588805858/repositories/vercel/logo.png" height="96"> <h3 align="center">Vercel</h3> </a> <p align="center">Develop. Preview. Ship.</p> </p>

1,476 lines 100 kB
import * as z from "zod/v3";
import { ClosedEnum } from "../types/enums.js";
import { Result as SafeParseResult } from "../types/fp.js";
import { CreateDeploymentHasDeploymentsType, CreateDeploymentRoutes2, CreateDeploymentRoutes3 } from "./createdeploymenthasdeploymentstype.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
export type CreateDeploymentValueDeploymentsEq = string | number;
export type CreateDeploymentValueDeployments2 = {
    eq?: string | number | undefined;
    neq?: string | undefined;
    inc?: Array<string> | undefined;
    ninc?: Array<string> | undefined;
    pre?: string | undefined;
    suf?: string | undefined;
    re?: string | undefined;
    gt?: number | undefined;
    gte?: number | undefined;
    lt?: number | undefined;
    lte?: number | undefined;
};
export type CreateDeploymentHasDeploymentsValue = string | CreateDeploymentValueDeployments2;
export type CreateDeploymentHas2 = {
    type: CreateDeploymentHasDeploymentsType;
    key: string;
    value?: string | CreateDeploymentValueDeployments2 | undefined;
};
export type CreateDeploymentValueEq = string | number;
export type CreateDeploymentValue2 = {
    eq?: string | number | undefined;
    neq?: string | undefined;
    inc?: Array<string> | undefined;
    ninc?: Array<string> | undefined;
    pre?: string | undefined;
    suf?: string | undefined;
    re?: string | undefined;
    gt?: number | undefined;
    gte?: number | undefined;
    lt?: number | undefined;
    lte?: number | undefined;
};
export type CreateDeploymentHasValue = string | CreateDeploymentValue2;
export type CreateDeploymentHas1 = {
    type: "host";
    value: string | CreateDeploymentValue2;
};
export type CreateDeploymentRoutesHas = CreateDeploymentHas1 | (CreateDeploymentHas2 & {
    type: "cookie";
}) | (CreateDeploymentHas2 & {
    type: "header";
}) | (CreateDeploymentHas2 & {
    type: "query";
});
export declare const CreateDeploymentMissingDeploymentsType: {
    readonly Cookie: "cookie";
    readonly Header: "header";
    readonly Query: "query";
};
export type CreateDeploymentMissingDeploymentsType = ClosedEnum<typeof CreateDeploymentMissingDeploymentsType>;
export type CreateDeploymentValueDeploymentsResponse200Eq = string | number;
export type CreateDeploymentValueDeploymentsResponse2002 = {
    eq?: string | number | undefined;
    neq?: string | undefined;
    inc?: Array<string> | undefined;
    ninc?: Array<string> | undefined;
    pre?: string | undefined;
    suf?: string | undefined;
    re?: string | undefined;
    gt?: number | undefined;
    gte?: number | undefined;
    lt?: number | undefined;
    lte?: number | undefined;
};
export type CreateDeploymentMissingDeploymentsValue = string | CreateDeploymentValueDeploymentsResponse2002;
export type CreateDeploymentMissing2 = {
    type: CreateDeploymentMissingDeploymentsType;
    key: string;
    value?: string | CreateDeploymentValueDeploymentsResponse2002 | undefined;
};
export type CreateDeploymentValueDeploymentsResponseEq = string | number;
export type CreateDeploymentValueDeploymentsResponse2 = {
    eq?: string | number | undefined;
    neq?: string | undefined;
    inc?: Array<string> | undefined;
    ninc?: Array<string> | undefined;
    pre?: string | undefined;
    suf?: string | undefined;
    re?: string | undefined;
    gt?: number | undefined;
    gte?: number | undefined;
    lt?: number | undefined;
    lte?: number | undefined;
};
export type CreateDeploymentMissingValue = string | CreateDeploymentValueDeploymentsResponse2;
export type CreateDeploymentMissing1 = {
    type: "host";
    value: string | CreateDeploymentValueDeploymentsResponse2;
};
export type CreateDeploymentRoutesMissing = CreateDeploymentMissing1 | (CreateDeploymentMissing2 & {
    type: "cookie";
}) | (CreateDeploymentMissing2 & {
    type: "header";
}) | (CreateDeploymentMissing2 & {
    type: "query";
});
export declare const CreateDeploymentRoutesAction: {
    readonly Challenge: "challenge";
    readonly Deny: "deny";
};
export type CreateDeploymentRoutesAction = ClosedEnum<typeof CreateDeploymentRoutesAction>;
export type CreateDeploymentRoutesMitigate = {
    action: CreateDeploymentRoutesAction;
};
export declare const CreateDeploymentTransformsDeploymentsOp: {
    readonly Set: "set";
};
export type CreateDeploymentTransformsDeploymentsOp = ClosedEnum<typeof CreateDeploymentTransformsDeploymentsOp>;
export type CreateDeploymentTransforms2 = {
    type: "request.path";
    op: CreateDeploymentTransformsDeploymentsOp;
    args: string;
    env?: Array<string> | undefined;
};
export declare const CreateDeploymentTransformsType: {
    readonly RequestHeaders: "request.headers";
    readonly RequestQuery: "request.query";
    readonly ResponseHeaders: "response.headers";
};
export type CreateDeploymentTransformsType = ClosedEnum<typeof CreateDeploymentTransformsType>;
export declare const CreateDeploymentTransformsOp: {
    readonly Append: "append";
    readonly Delete: "delete";
    readonly Set: "set";
};
export type CreateDeploymentTransformsOp = ClosedEnum<typeof CreateDeploymentTransformsOp>;
export type CreateDeploymentKeyEq = string | number;
export type CreateDeploymentKey2 = {
    eq?: string | number | undefined;
    neq?: string | undefined;
    inc?: Array<string> | undefined;
    ninc?: Array<string> | undefined;
    pre?: string | undefined;
    suf?: string | undefined;
    gt?: number | undefined;
    gte?: number | undefined;
    lt?: number | undefined;
    lte?: number | undefined;
};
export type CreateDeploymentTransformsKey = string | CreateDeploymentKey2;
export type CreateDeploymentTransformsTarget = {
    key: string | CreateDeploymentKey2;
};
export type CreateDeploymentTransformsArgs = string | Array<string>;
export type CreateDeploymentTransforms1 = {
    type: CreateDeploymentTransformsType;
    op: CreateDeploymentTransformsOp;
    target: CreateDeploymentTransformsTarget;
    args?: string | Array<string> | undefined;
    env?: Array<string> | undefined;
};
export type CreateDeploymentRoutesTransforms = (CreateDeploymentTransforms1 & {
    type: "request.headers";
}) | (CreateDeploymentTransforms1 & {
    type: "request.query";
}) | (CreateDeploymentTransforms1 & {
    type: "response.headers";
}) | CreateDeploymentTransforms2;
export type RoutesLocale = {
    redirect?: {
        [k: string]: string;
    } | undefined;
    cookie?: string | undefined;
};
/**
 * Optional explicit format marker. The destination is identified by the presence of `service`, so `type` is no longer required.
 */
export declare const CreateDeploymentDestinationType: {
    readonly Service: "service";
};
/**
 * Optional explicit format marker. The destination is identified by the presence of `service`, so `type` is no longer required.
 */
export type CreateDeploymentDestinationType = ClosedEnum<typeof CreateDeploymentDestinationType>;
export type CreateDeploymentDestination2 = {
    /**
     * Optional explicit format marker. The destination is identified by the presence of `service`, so `type` is no longer required.
     */
    type?: CreateDeploymentDestinationType | undefined;
    service: string;
    /**
     * Routing-only path used to select a route inside the target service.
     */
    path?: string | undefined;
};
export type CreateDeploymentRoutesDestination = CreateDeploymentDestination2 | string;
export type CreateDeploymentRoutes1 = {
    src: string;
    dest?: string | undefined;
    headers?: {
        [k: string]: string;
    } | undefined;
    methods?: Array<string> | undefined;
    continue?: boolean | undefined;
    override?: boolean | undefined;
    caseSensitive?: boolean | undefined;
    check?: boolean | undefined;
    important?: boolean | undefined;
    status?: number | undefined;
    has?: Array<CreateDeploymentHas1 | (CreateDeploymentHas2 & {
        type: "cookie";
    }) | (CreateDeploymentHas2 & {
        type: "header";
    }) | (CreateDeploymentHas2 & {
        type: "query";
    })> | undefined;
    missing?: Array<CreateDeploymentMissing1 | (CreateDeploymentMissing2 & {
        type: "cookie";
    }) | (CreateDeploymentMissing2 & {
        type: "header";
    }) | (CreateDeploymentMissing2 & {
        type: "query";
    })> | undefined;
    mitigate?: CreateDeploymentRoutesMitigate | undefined;
    transforms?: Array<(CreateDeploymentTransforms1 & {
        type: "request.headers";
    }) | (CreateDeploymentTransforms1 & {
        type: "request.query";
    }) | (CreateDeploymentTransforms1 & {
        type: "response.headers";
    }) | CreateDeploymentTransforms2> | undefined;
    env?: Array<string> | undefined;
    locale?: RoutesLocale | undefined;
    /**
     * Aliases for `src`, `dest`, and `status`. These provide consistency with the `rewrites`, `redirects`, and `headers` fields which use `source`, `destination`, and `statusCode`. During normalization, the string forms are converted to their canonical forms (`src`, `dest`, `status`) and stripped from the route object. `destination` may also be a service-targeted object, in which case routing is delegated into the named service's internal route table and the object is preserved as-is (not folded into `dest`).
     */
    source?: string | undefined;
    destination?: CreateDeploymentDestination2 | string | undefined;
    statusCode?: number | undefined;
    /**
     * A middleware key within the `output` key under the build result. Overrides a `middleware` definition.
     */
    middlewarePath?: string | undefined;
    /**
     * The original middleware matchers.
     */
    middlewareRawSrc?: Array<string> | undefined;
    /**
     * A middleware index in the `middleware` key under the build result
     */
    middleware?: number | undefined;
    respectOriginCacheControl?: boolean | undefined;
};
export type ResponseBodyRoutes = CreateDeploymentRoutes3 | CreateDeploymentRoutes1 | CreateDeploymentRoutes2;
export type CreateDeploymentServicesDeploymentsIncludeFiles = string | Array<string>;
export type CreateDeploymentServicesDeploymentsExcludeFiles = string | Array<string>;
export declare const CreateDeploymentServicesDeploymentsArchitecture: {
    readonly Arm64: "arm64";
    readonly X8664: "x86_64";
};
export type CreateDeploymentServicesDeploymentsArchitecture = ClosedEnum<typeof CreateDeploymentServicesDeploymentsArchitecture>;
export declare const CreateDeploymentMaxDurationDeploymentsResponse2: {
    readonly Max: "max";
};
export type CreateDeploymentMaxDurationDeploymentsResponse2 = ClosedEnum<typeof CreateDeploymentMaxDurationDeploymentsResponse2>;
export type CreateDeploymentServicesDeploymentsMaxDuration = number | CreateDeploymentMaxDurationDeploymentsResponse2;
export declare const CreateDeploymentServicesDeploymentsMode: {
    readonly Strict: "strict";
};
export type CreateDeploymentServicesDeploymentsMode = ClosedEnum<typeof CreateDeploymentServicesDeploymentsMode>;
export type CreateDeploymentServicesDeploymentsAffinity = {
    mode: CreateDeploymentServicesDeploymentsMode;
};
export type CreateDeploymentExperimentalTriggersDeploymentsResponse3 = {
    /**
     * Event type - must be "schedule/v1beta" (REQUIRED)
     */
    type: "schedule/v1beta";
};
/**
 * Queue trigger input event for v2beta (from vercel.json config). Consumer name is implicitly derived from the function path. Only one trigger per function is allowed.
 */
export type CreateDeploymentExperimentalTriggersDeploymentsResponse2 = {
    /**
     * Event type - must be "queue/v2beta" (REQUIRED)
     */
    type: "queue/v2beta";
    /**
     * Name of the queue topic to consume from (REQUIRED)
     */
    topic: string;
    /**
     * Maximum number of delivery attempts for message processing (OPTIONAL) This represents the total number of times a message can be delivered, not the number of retries. Must be at least 1 if specified. Behavior when not specified depends on the server's default configuration.
     */
    maxDeliveries?: number | undefined;
    /**
     * Delay in seconds before retrying failed executions (OPTIONAL) Behavior when not specified depends on the server's default configuration.
     */
    retryAfterSeconds?: number | undefined;
    /**
     * Initial delay in seconds before first execution attempt (OPTIONAL) Must be 0 or greater. Use 0 for no initial delay. Behavior when not specified depends on the server's default configuration.
     */
    initialDelaySeconds?: number | undefined;
    /**
     * Maximum number of concurrent executions for this consumer (OPTIONAL) Must be at least 1 if specified. Behavior when not specified depends on the server's default configuration.
     */
    maxConcurrency?: number | undefined;
};
/**
 * Queue trigger input event for v1beta (from vercel.json config). Requires explicit consumer name.
 */
export type CreateDeploymentExperimentalTriggersDeploymentsResponse1 = {
    /**
     * Event type - must be "queue/v1beta" (REQUIRED)
     */
    type: "queue/v1beta";
    /**
     * Name of the consumer group for this trigger (REQUIRED)
     */
    consumer: string;
    /**
     * Name of the queue topic to consume from (REQUIRED)
     */
    topic: string;
    /**
     * Maximum number of delivery attempts for message processing (OPTIONAL) This represents the total number of times a message can be delivered, not the number of retries. Must be at least 1 if specified. Behavior when not specified depends on the server's default configuration.
     */
    maxDeliveries?: number | undefined;
    /**
     * Delay in seconds before retrying failed executions (OPTIONAL) Behavior when not specified depends on the server's default configuration.
     */
    retryAfterSeconds?: number | undefined;
    /**
     * Initial delay in seconds before first execution attempt (OPTIONAL) Must be 0 or greater. Use 0 for no initial delay. Behavior when not specified depends on the server's default configuration.
     */
    initialDelaySeconds?: number | undefined;
    /**
     * Maximum number of concurrent executions for this consumer (OPTIONAL) Must be at least 1 if specified. Behavior when not specified depends on the server's default configuration.
     */
    maxConcurrency?: number | undefined;
};
export type CreateDeploymentServicesDeploymentsExperimentalTriggers = CreateDeploymentExperimentalTriggersDeploymentsResponse1 | CreateDeploymentExperimentalTriggersDeploymentsResponse2 | CreateDeploymentExperimentalTriggersDeploymentsResponse3;
export type CreateDeploymentServicesDeploymentsFunctions = {
    architecture?: CreateDeploymentServicesDeploymentsArchitecture | undefined;
    memory?: number | undefined;
    maxDuration?: number | CreateDeploymentMaxDurationDeploymentsResponse2 | undefined;
    affinity?: CreateDeploymentServicesDeploymentsAffinity | undefined;
    maxConcurrency?: number | undefined;
    regions?: Array<string> | undefined;
    functionFailoverRegions?: Array<string> | undefined;
    runtime?: string | undefined;
    includeFiles?: string | undefined;
    excludeFiles?: string | undefined;
    experimentalTriggers?: Array<CreateDeploymentExperimentalTriggersDeploymentsResponse1 | CreateDeploymentExperimentalTriggersDeploymentsResponse2 | CreateDeploymentExperimentalTriggersDeploymentsResponse3> | undefined;
    supportsCancellation?: boolean | undefined;
};
export type CreateDeploymentServicesDeploymentsProjectSettings = {
    framework?: string | null | undefined;
    devCommand?: string | null | undefined;
    installCommand?: string | null | undefined;
    buildCommand?: string | null | undefined;
    outputDirectory?: string | null | undefined;
    rootDirectory?: string | null | undefined;
    nodeVersion?: string | undefined;
    monorepoManager?: string | null | undefined;
    createdAt?: number | undefined;
    autoExposeSystemEnvs?: boolean | undefined;
    sourceFilesOutsideRootDirectory?: boolean | undefined;
    directoryListing?: boolean | undefined;
    gitForkProtection?: boolean | undefined;
    commandForIgnoringBuildStep?: string | null | undefined;
};
/**
 * Enforced runtime for explicitly configured Routing Middleware.
 */
export declare const CreateDeploymentServicesDeploymentsMiddlewareRuntime: {
    readonly Nodejs: "nodejs";
};
/**
 * Enforced runtime for explicitly configured Routing Middleware.
 */
export type CreateDeploymentServicesDeploymentsMiddlewareRuntime = ClosedEnum<typeof CreateDeploymentServicesDeploymentsMiddlewareRuntime>;
export type CreateDeploymentServicesDeploymentsMiddlewareMatcher = string | Array<string>;
export type CreateDeploymentServicesDeploymentsConfig = {
    bunVersion?: string | undefined;
    maxLambdaSize?: string | undefined;
    includeFiles?: string | Array<string> | undefined;
    excludeFiles?: string | Array<string> | undefined;
    bundle?: boolean | undefined;
    ldsflags?: string | undefined;
    helpers?: boolean | undefined;
    rust?: string | undefined;
    debug?: boolean | undefined;
    zeroConfig?: boolean | undefined;
    import?: {
        [k: string]: string;
    } | undefined;
    functions?: {
        [k: string]: CreateDeploymentServicesDeploymentsFunctions;
    } | undefined;
    projectSettings?: CreateDeploymentServicesDeploymentsProjectSettings | undefined;
    outputDirectory?: string | undefined;
    installCommand?: string | undefined;
    buildCommand?: string | undefined;
    devCommand?: string | undefined;
    framework?: string | null | undefined;
    nodeVersion?: string | undefined;
    middleware?: boolean | undefined;
    /**
     * Enforced runtime for explicitly configured Routing Middleware.
     */
    middlewareRuntime?: CreateDeploymentServicesDeploymentsMiddlewareRuntime | undefined;
    middlewareMatcher?: string | Array<string> | undefined;
    /**
     * Owning service name; scopes per-function config such as the v2beta consumer.
     */
    serviceName?: string | undefined;
    /**
     * Buildpack runtime slug (e.g. "ruby").
     */
    buildpack?: string | undefined;
};
/**
 * Builder selected by the resolver.
 */
export type CreateDeploymentServicesDeploymentsBuilder = {
    use: string;
    src?: string | undefined;
    config?: CreateDeploymentServicesDeploymentsConfig | undefined;
};
/**
 * If present, must be `"service"` for Service-to-Service HTTP bindings.
 */
export declare const CreateDeploymentServicesDeploymentsResponseType: {
    readonly Service: "service";
};
/**
 * If present, must be `"service"` for Service-to-Service HTTP bindings.
 */
export type CreateDeploymentServicesDeploymentsResponseType = ClosedEnum<typeof CreateDeploymentServicesDeploymentsResponseType>;
/**
 * Generated value shape, must be `"url"`.
 */
export declare const ServicesFormat: {
    readonly Url: "url";
};
/**
 * Generated value shape, must be `"url"`.
 */
export type ServicesFormat = ClosedEnum<typeof ServicesFormat>;
/**
 * Caller-side bindings to other services.
 */
export type ServicesBindings = {
    /**
     * If present, must be `"service"` for Service-to-Service HTTP bindings.
     */
    type?: CreateDeploymentServicesDeploymentsResponseType | undefined;
    /**
     * Target service name from `services`.
     */
    service: string;
    /**
     * Generated value shape, must be `"url"`.
     */
    format: ServicesFormat;
    /**
     * Environment variable name that will store the generated value
     */
    env: string;
};
export declare const CreateDeploymentServicesArchitecture: {
    readonly Arm64: "arm64";
    readonly X8664: "x86_64";
};
export type CreateDeploymentServicesArchitecture = ClosedEnum<typeof CreateDeploymentServicesArchitecture>;
export declare const CreateDeploymentMaxDurationDeployments2: {
    readonly Max: "max";
};
export type CreateDeploymentMaxDurationDeployments2 = ClosedEnum<typeof CreateDeploymentMaxDurationDeployments2>;
export type CreateDeploymentServicesMaxDuration = number | CreateDeploymentMaxDurationDeployments2;
export declare const CreateDeploymentServicesMode: {
    readonly Strict: "strict";
};
export type CreateDeploymentServicesMode = ClosedEnum<typeof CreateDeploymentServicesMode>;
export type CreateDeploymentServicesAffinity = {
    mode: CreateDeploymentServicesMode;
};
export type CreateDeploymentExperimentalTriggersDeployments3 = {
    /**
     * Event type - must be "schedule/v1beta" (REQUIRED)
     */
    type: "schedule/v1beta";
};
/**
 * Queue trigger input event for v2beta (from vercel.json config). Consumer name is implicitly derived from the function path. Only one trigger per function is allowed.
 */
export type CreateDeploymentExperimentalTriggersDeployments2 = {
    /**
     * Event type - must be "queue/v2beta" (REQUIRED)
     */
    type: "queue/v2beta";
    /**
     * Name of the queue topic to consume from (REQUIRED)
     */
    topic: string;
    /**
     * Maximum number of delivery attempts for message processing (OPTIONAL) This represents the total number of times a message can be delivered, not the number of retries. Must be at least 1 if specified. Behavior when not specified depends on the server's default configuration.
     */
    maxDeliveries?: number | undefined;
    /**
     * Delay in seconds before retrying failed executions (OPTIONAL) Behavior when not specified depends on the server's default configuration.
     */
    retryAfterSeconds?: number | undefined;
    /**
     * Initial delay in seconds before first execution attempt (OPTIONAL) Must be 0 or greater. Use 0 for no initial delay. Behavior when not specified depends on the server's default configuration.
     */
    initialDelaySeconds?: number | undefined;
    /**
     * Maximum number of concurrent executions for this consumer (OPTIONAL) Must be at least 1 if specified. Behavior when not specified depends on the server's default configuration.
     */
    maxConcurrency?: number | undefined;
};
/**
 * Queue trigger input event for v1beta (from vercel.json config). Requires explicit consumer name.
 */
export type CreateDeploymentExperimentalTriggersDeployments1 = {
    /**
     * Event type - must be "queue/v1beta" (REQUIRED)
     */
    type: "queue/v1beta";
    /**
     * Name of the consumer group for this trigger (REQUIRED)
     */
    consumer: string;
    /**
     * Name of the queue topic to consume from (REQUIRED)
     */
    topic: string;
    /**
     * Maximum number of delivery attempts for message processing (OPTIONAL) This represents the total number of times a message can be delivered, not the number of retries. Must be at least 1 if specified. Behavior when not specified depends on the server's default configuration.
     */
    maxDeliveries?: number | undefined;
    /**
     * Delay in seconds before retrying failed executions (OPTIONAL) Behavior when not specified depends on the server's default configuration.
     */
    retryAfterSeconds?: number | undefined;
    /**
     * Initial delay in seconds before first execution attempt (OPTIONAL) Must be 0 or greater. Use 0 for no initial delay. Behavior when not specified depends on the server's default configuration.
     */
    initialDelaySeconds?: number | undefined;
    /**
     * Maximum number of concurrent executions for this consumer (OPTIONAL) Must be at least 1 if specified. Behavior when not specified depends on the server's default configuration.
     */
    maxConcurrency?: number | undefined;
};
export type CreateDeploymentServicesExperimentalTriggers = CreateDeploymentExperimentalTriggersDeployments1 | CreateDeploymentExperimentalTriggersDeployments2 | CreateDeploymentExperimentalTriggersDeployments3;
/**
 * Function configuration scoped to this service.
 */
export type CreateDeploymentServicesFunctions = {
    architecture?: CreateDeploymentServicesArchitecture | undefined;
    memory?: number | undefined;
    maxDuration?: number | CreateDeploymentMaxDurationDeployments2 | undefined;
    affinity?: CreateDeploymentServicesAffinity | undefined;
    maxConcurrency?: number | undefined;
    regions?: Array<string> | undefined;
    functionFailoverRegions?: Array<string> | undefined;
    runtime?: string | undefined;
    includeFiles?: string | undefined;
    excludeFiles?: string | undefined;
    experimentalTriggers?: Array<CreateDeploymentExperimentalTriggersDeployments1 | CreateDeploymentExperimentalTriggersDeployments2 | CreateDeploymentExperimentalTriggersDeployments3> | undefined;
    supportsCancellation?: boolean | undefined;
};
export type CreateDeploymentServicesDeploymentsHeaders = {
    key: string;
    value: string;
};
export declare const CreateDeploymentHasDeploymentsResponse200Type: {
    readonly Cookie: "cookie";
    readonly Header: "header";
    readonly Query: "query";
};
export type CreateDeploymentHasDeploymentsResponse200Type = ClosedEnum<typeof CreateDeploymentHasDeploymentsResponse200Type>;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBodyEq = string | number;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2 = {
    eq?: string | number | undefined;
    neq?: string | undefined;
    inc?: Array<string> | undefined;
    ninc?: Array<string> | undefined;
    pre?: string | undefined;
    suf?: string | undefined;
    re?: string | undefined;
    gt?: number | undefined;
    gte?: number | undefined;
    lt?: number | undefined;
    lte?: number | undefined;
};
export type CreateDeploymentHasDeploymentsResponse200Value = string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2;
export type CreateDeploymentHasDeployments2 = {
    type: CreateDeploymentHasDeploymentsResponse200Type;
    key: string;
    value?: string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2 | undefined;
};
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONEq = string | number;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJson2 = {
    eq?: string | number | undefined;
    neq?: string | undefined;
    inc?: Array<string> | undefined;
    ninc?: Array<string> | undefined;
    pre?: string | undefined;
    suf?: string | undefined;
    re?: string | undefined;
    gt?: number | undefined;
    gte?: number | undefined;
    lt?: number | undefined;
    lte?: number | undefined;
};
export type CreateDeploymentHasDeploymentsResponseValue = string | CreateDeploymentValueDeploymentsResponse200ApplicationJson2;
export type CreateDeploymentHasDeployments1 = {
    type: "host";
    value: string | CreateDeploymentValueDeploymentsResponse200ApplicationJson2;
};
export type CreateDeploymentServicesHas = CreateDeploymentHasDeployments1 | (CreateDeploymentHasDeployments2 & {
    type: "cookie";
}) | (CreateDeploymentHasDeployments2 & {
    type: "header";
}) | (CreateDeploymentHasDeployments2 & {
    type: "query";
});
export declare const CreateDeploymentMissingDeploymentsResponse200Type: {
    readonly Cookie: "cookie";
    readonly Header: "header";
    readonly Query: "query";
};
export type CreateDeploymentMissingDeploymentsResponse200Type = ClosedEnum<typeof CreateDeploymentMissingDeploymentsResponse200Type>;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2ServicesEq = string | number;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2 = {
    eq?: string | number | undefined;
    neq?: string | undefined;
    inc?: Array<string> | undefined;
    ninc?: Array<string> | undefined;
    pre?: string | undefined;
    suf?: string | undefined;
    re?: string | undefined;
    gt?: number | undefined;
    gte?: number | undefined;
    lt?: number | undefined;
    lte?: number | undefined;
};
export type CreateDeploymentMissingDeploymentsResponse200Value = string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2;
export type CreateDeploymentMissingDeployments2 = {
    type: CreateDeploymentMissingDeploymentsResponse200Type;
    key: string;
    value?: string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2 | undefined;
};
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Eq = string | number;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody22 = {
    eq?: string | number | undefined;
    neq?: string | undefined;
    inc?: Array<string> | undefined;
    ninc?: Array<string> | undefined;
    pre?: string | undefined;
    suf?: string | undefined;
    re?: string | undefined;
    gt?: number | undefined;
    gte?: number | undefined;
    lt?: number | undefined;
    lte?: number | undefined;
};
export type CreateDeploymentMissingDeploymentsResponseValue = string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody22;
export type CreateDeploymentMissingDeployments1 = {
    type: "host";
    value: string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody22;
};
export type CreateDeploymentServicesMissing = CreateDeploymentMissingDeployments1 | (CreateDeploymentMissingDeployments2 & {
    type: "cookie";
}) | (CreateDeploymentMissingDeployments2 & {
    type: "header";
}) | (CreateDeploymentMissingDeployments2 & {
    type: "query";
});
export type CreateDeploymentServicesHeaders = {
    source: string;
    headers: Array<CreateDeploymentServicesDeploymentsHeaders>;
    has?: Array<CreateDeploymentHasDeployments1 | (CreateDeploymentHasDeployments2 & {
        type: "cookie";
    }) | (CreateDeploymentHasDeployments2 & {
        type: "header";
    }) | (CreateDeploymentHasDeployments2 & {
        type: "query";
    })> | undefined;
    missing?: Array<CreateDeploymentMissingDeployments1 | (CreateDeploymentMissingDeployments2 & {
        type: "cookie";
    }) | (CreateDeploymentMissingDeployments2 & {
        type: "header";
    }) | (CreateDeploymentMissingDeployments2 & {
        type: "query";
    })> | undefined;
};
export declare const CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBodyType: {
    readonly Cookie: "cookie";
    readonly Header: "header";
    readonly Query: "query";
};
export type CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBodyType = ClosedEnum<typeof CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBodyType>;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsEq = string | number;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Redirects2 = {
    eq?: string | number | undefined;
    neq?: string | undefined;
    inc?: Array<string> | undefined;
    ninc?: Array<string> | undefined;
    pre?: string | undefined;
    suf?: string | undefined;
    re?: string | undefined;
    gt?: number | undefined;
    gte?: number | undefined;
    lt?: number | undefined;
    lte?: number | undefined;
};
export type CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBodyValue = string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Redirects2;
export type CreateDeploymentHasDeploymentsResponse2 = {
    type: CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBodyType;
    key: string;
    value?: string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Redirects2 | undefined;
};
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Eq = string | number;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services22 = {
    eq?: string | number | undefined;
    neq?: string | undefined;
    inc?: Array<string> | undefined;
    ninc?: Array<string> | undefined;
    pre?: string | undefined;
    suf?: string | undefined;
    re?: string | undefined;
    gt?: number | undefined;
    gte?: number | undefined;
    lt?: number | undefined;
    lte?: number | undefined;
};
export type CreateDeploymentHasDeploymentsResponse200ApplicationJSONValue = string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services22;
export type CreateDeploymentHasDeploymentsResponse1 = {
    type: "host";
    value: string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services22;
};
export type CreateDeploymentServicesDeploymentsHas = CreateDeploymentHasDeploymentsResponse1 | (CreateDeploymentHasDeploymentsResponse2 & {
    type: "cookie";
}) | (CreateDeploymentHasDeploymentsResponse2 & {
    type: "header";
}) | (CreateDeploymentHasDeploymentsResponse2 & {
    type: "query";
});
export declare const CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBodyType: {
    readonly Cookie: "cookie";
    readonly Header: "header";
    readonly Query: "query";
};
export type CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBodyType = ClosedEnum<typeof CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBodyType>;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissing2Eq = string | number;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissing22 = {
    eq?: string | number | undefined;
    neq?: string | undefined;
    inc?: Array<string> | undefined;
    ninc?: Array<string> | undefined;
    pre?: string | undefined;
    suf?: string | undefined;
    re?: string | undefined;
    gt?: number | undefined;
    gte?: number | undefined;
    lt?: number | undefined;
    lte?: number | undefined;
};
export type CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBodyValue = string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissing22;
export type CreateDeploymentMissingDeploymentsResponse2 = {
    type: CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBodyType;
    key: string;
    value?: string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissing22 | undefined;
};
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissingEq = string | number;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissing2 = {
    eq?: string | number | undefined;
    neq?: string | undefined;
    inc?: Array<string> | undefined;
    ninc?: Array<string> | undefined;
    pre?: string | undefined;
    suf?: string | undefined;
    re?: string | undefined;
    gt?: number | undefined;
    gte?: number | undefined;
    lt?: number | undefined;
    lte?: number | undefined;
};
export type CreateDeploymentMissingDeploymentsResponse200ApplicationJSONValue = string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissing2;
export type CreateDeploymentMissingDeploymentsResponse1 = {
    type: "host";
    value: string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissing2;
};
export type CreateDeploymentServicesDeploymentsMissing = CreateDeploymentMissingDeploymentsResponse1 | (CreateDeploymentMissingDeploymentsResponse2 & {
    type: "cookie";
}) | (CreateDeploymentMissingDeploymentsResponse2 & {
    type: "header";
}) | (CreateDeploymentMissingDeploymentsResponse2 & {
    type: "query";
});
export type CreateDeploymentServicesRedirects = {
    source: string;
    destination: string;
    permanent?: boolean | undefined;
    statusCode?: number | undefined;
    has?: Array<CreateDeploymentHasDeploymentsResponse1 | (CreateDeploymentHasDeploymentsResponse2 & {
        type: "cookie";
    }) | (CreateDeploymentHasDeploymentsResponse2 & {
        type: "header";
    }) | (CreateDeploymentHasDeploymentsResponse2 & {
        type: "query";
    })> | undefined;
    missing?: Array<CreateDeploymentMissingDeploymentsResponse1 | (CreateDeploymentMissingDeploymentsResponse2 & {
        type: "cookie";
    }) | (CreateDeploymentMissingDeploymentsResponse2 & {
        type: "header";
    }) | (CreateDeploymentMissingDeploymentsResponse2 & {
        type: "query";
    })> | undefined;
    env?: Array<string> | undefined;
};
/**
 * Optional explicit format marker. The destination is identified by the presence of `service`, so `type` is no longer required.
 */
export declare const CreateDeploymentDestinationDeploymentsType: {
    readonly Service: "service";
};
/**
 * Optional explicit format marker. The destination is identified by the presence of `service`, so `type` is no longer required.
 */
export type CreateDeploymentDestinationDeploymentsType = ClosedEnum<typeof CreateDeploymentDestinationDeploymentsType>;
export type CreateDeploymentDestinationDeployments2 = {
    /**
     * Optional explicit format marker. The destination is identified by the presence of `service`, so `type` is no longer required.
     */
    type?: CreateDeploymentDestinationDeploymentsType | undefined;
    service: string;
    /**
     * Routing-only path used to select a route inside the target service.
     */
    path?: string | undefined;
};
export type CreateDeploymentServicesDestination = CreateDeploymentDestinationDeployments2 | string;
export declare const CreateDeploymentServicesDeploymentsResponse200Type: {
    readonly RequestPath: "request.path";
};
export type CreateDeploymentServicesDeploymentsResponse200Type = ClosedEnum<typeof CreateDeploymentServicesDeploymentsResponse200Type>;
export declare const CreateDeploymentServicesOp: {
    readonly Set: "set";
};
export type CreateDeploymentServicesOp = ClosedEnum<typeof CreateDeploymentServicesOp>;
export type CreateDeploymentServicesTransforms = {
    type: CreateDeploymentServicesDeploymentsResponse200Type;
    op: CreateDeploymentServicesOp;
    args: string;
    env?: Array<string> | undefined;
};
export declare const CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2ServicesType: {
    readonly Cookie: "cookie";
    readonly Header: "header";
    readonly Query: "query";
};
export type CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2ServicesType = ClosedEnum<typeof CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2ServicesType>;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHasEq = string | number;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHas2 = {
    eq?: string | number | undefined;
    neq?: string | undefined;
    inc?: Array<string> | undefined;
    ninc?: Array<string> | undefined;
    pre?: string | undefined;
    suf?: string | undefined;
    re?: string | undefined;
    gt?: number | undefined;
    gte?: number | undefined;
    lt?: number | undefined;
    lte?: number | undefined;
};
export type CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2ServicesValue = string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHas2;
export type CreateDeploymentHasDeploymentsResponse2002 = {
    type: CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2ServicesType;
    key: string;
    value?: string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHas2 | undefined;
};
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesEq = string | number;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Rewrites2 = {
    eq?: string | number | undefined;
    neq?: string | undefined;
    inc?: Array<string> | undefined;
    ninc?: Array<string> | undefined;
    pre?: string | undefined;
    suf?: string | undefined;
    re?: string | undefined;
    gt?: number | undefined;
    gte?: number | undefined;
    lt?: number | undefined;
    lte?: number | undefined;
};
export type CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Value = string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Rewrites2;
export type CreateDeploymentHasDeploymentsResponse2001 = {
    type: "host";
    value: string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Rewrites2;
};
export type CreateDeploymentServicesDeploymentsResponseHas = CreateDeploymentHasDeploymentsResponse2001 | (CreateDeploymentHasDeploymentsResponse2002 & {
    type: "cookie";
}) | (CreateDeploymentHasDeploymentsResponse2002 & {
    type: "header";
}) | (CreateDeploymentHasDeploymentsResponse2002 & {
    type: "query";
});
export declare const CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2ServicesType: {
    readonly Cookie: "cookie";
    readonly Header: "header";
    readonly Query: "query";
};
export type CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2ServicesType = ClosedEnum<typeof CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2ServicesType>;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2Eq = string | number;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing22 = {
    eq?: string | number | undefined;
    neq?: string | undefined;
    inc?: Array<string> | undefined;
    ninc?: Array<string> | undefined;
    pre?: string | undefined;
    suf?: string | undefined;
    re?: string | undefined;
    gt?: number | undefined;
    gte?: number | undefined;
    lt?: number | undefined;
    lte?: number | undefined;
};
export type CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2ServicesValue = string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing22;
export type CreateDeploymentMissingDeploymentsResponse2002 = {
    type: CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2ServicesType;
    key: string;
    value?: string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing22 | undefined;
};
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissingEq = string | number;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2 = {
    eq?: string | number | undefined;
    neq?: string | undefined;
    inc?: Array<string> | undefined;
    ninc?: Array<string> | undefined;
    pre?: string | undefined;
    suf?: string | undefined;
    re?: string | undefined;
    gt?: number | undefined;
    gte?: number | undefined;
    lt?: number | undefined;
    lte?: number | undefined;
};
export type CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Value = string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2;
export type CreateDeploymentMissingDeploymentsResponse2001 = {
    type: "host";
    value: string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2;
};
export type CreateDeploymentServicesDeploymentsResponseMissing = CreateDeploymentMissingDeploymentsResponse2001 | (CreateDeploymentMissingDeploymentsResponse2002 & {
    type: "cookie";
}) | (CreateDeploymentMissingDeploymentsResponse2002 & {
    type: "header";
}) | (CreateDeploymentMissingDeploymentsResponse2002 & {
    type: "query";
});
export type ServicesRewrites = {
    source: string;
    destination: CreateDeploymentDestinationDeployments2 | string;
    transforms?: Array<CreateDeploymentServicesTransforms> | undefined;
    has?: Array<CreateDeploymentHasDeploymentsResponse2001 | (CreateDeploymentHasDeploymentsResponse2002 & {
        type: "cookie";
    }) | (CreateDeploymentHasDeploymentsResponse2002 & {
        type: "header";
    }) | (CreateDeploymentHasDeploymentsResponse2002 & {
        type: "query";
    })> | undefined;
    missing?: Array<CreateDeploymentMissingDeploymentsResponse2001 | (CreateDeploymentMissingDeploymentsResponse2002 & {
        type: "cookie";
    }) | (CreateDeploymentMissingDeploymentsResponse2002 & {
        type: "header";
    }) | (CreateDeploymentMissingDeploymentsResponse2002 & {
        type: "query";
    })> | undefined;
    statusCode?: number | undefined;
    env?: Array<string> | undefined;
    respectOriginCacheControl?: boolean | undefined;
};
export declare const CreateDeploymentRoutesHandle: {
    readonly Error: "error";
    readonly Filesystem: "filesystem";
    readonly Hit: "hit";
    readonly Miss: "miss";
    readonly Resource: "resource";
    readonly Rewrite: "rewrite";
};
export type CreateDeploymentRoutesHandle = ClosedEnum<typeof CreateDeploymentRoutesHandle>;
export type CreateDeploymentRoutesDeployments2 = {
    handle: CreateDeploymentRoutesHandle;
    src?: string | undefined;
    dest?: string | undefined;
    status?: number | undefined;
};
export declare const CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesType: {
    readonly Cookie: "cookie";
    readonly Header: "header";
    readonly Query: "query";
};
export type CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesType = ClosedEnum<typeof CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesType>;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Eq = string | number;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes12 = {
    eq?: string | number | undefined;
    neq?: string | undefined;
    inc?: Array<string> | undefined;
    ninc?: Array<string> | undefined;
    pre?: string | undefined;
    suf?: string | undefined;
    re?: string | undefined;
    gt?: number | undefined;
    gte?: number | undefined;
    lt?: number | undefined;
    lte?: number | undefined;
};
export type CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesValue = string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes12;
export type CreateDeploymentHasDeploymentsResponse200ApplicationJson2 = {
    type: CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesType;
    key: string;
    value?: string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes12 | undefined;
};
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesEq = string | number;
export type CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes2 = {
    eq?: string | number | undefined;
    neq?: string | undefined;
    inc?: Array<string> | undefined;
    ninc?: Array<string> | undefined;
    pre?: string | undefined;
    suf?: string | undefined;
    re?: string | undefined;
    gt?: number | undefined;
    gte?: number | undefined;
    lt?: number | undefined;
    lte?: number | undefined;
};
export type CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2Value = string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes2;
export type CreateDeploymentHasDeploymentsResponse200ApplicationJson1 = {
    type: "host";
    value: string | CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes2;
};
export type CreateDeploymentRoutesDeploymentsHas = CreateDeploymentHasDeploymentsResponse200ApplicationJson1 | (CreateDeploymentHasDeploymentsResponse200ApplicationJson2 & {
    type: "cookie";
}) | (CreateDeploymentHasDeploymentsResponse200ApplicationJson2 & {
    type: "header";
}) | (CreateDeploymentHasDeploymentsResponse200ApplicationJson2 & {
    type: "query";
});
/** @internal */
export declare const CreateDeploymentValueDeploymentsEq$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsEq, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsEqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsEq, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeployments2$inboundSchema: z.ZodType<CreateDeploymentValueDeployments2, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeployments2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeployments2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeploymentsValue$inboundSchema: z.ZodType<CreateDeploymentHasDeploymentsValue, z.ZodTypeDef, unknown>;
export declare function createDeploymentHasDeploymentsValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasDeploymentsValue, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHas2$inboundSchema: z.ZodType<CreateDeploymentHas2, z.ZodTypeDef, unknown>;
export declare function createDeploymentHas2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentHas2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueEq$inboundSchema: z.ZodType<CreateDeploymentValueEq, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueEqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueEq, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValue2$inboundSchema: z.ZodType<CreateDeploymentValue2, z.ZodTypeDef, unknown>;
export declare function createDeploymentValue2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValue2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasValue$inboundSchema: z.ZodType<CreateDeploymentHasValue, z.ZodTypeDef, unknown>;
export declare function createDeploymentHasValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasValue, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHas1$inboundSchema: z.ZodType<CreateDeploymentHas1, z.ZodTypeDef, unknown>;
export declare function createDeploymentHas1FromJSON(jsonString: string): SafeParseResult<CreateDeploymentHas1, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentRoutesHas$inboundSchema: z.ZodType<CreateDeploymentRoutesHas, z.ZodTypeDef, unknown>;
export declare function createDeploymentRoutesHasFromJSON(jsonString: string): SafeParseResult<CreateDeploymentRoutesHas, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissingDeploymentsType$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentMissingDeploymentsType>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200Eq$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200Eq, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200EqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200Eq, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse2002$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2002, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse2002FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse2002, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissingDeploymentsValue$inboundSchema: z.ZodType<CreateDeploymentMissingDeploymentsValue, z.ZodTypeDef, unknown>;
export declare function createDeploymentMissingDeploymentsValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentMissingDeploymentsValue, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissing2$inboundSchema: z.ZodType<CreateDeploymentMissing2, z.ZodTypeDef, unknown>;
export declare function createDeploymentMissing2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentMissing2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponseEq$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponseEq, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponseEqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponseEq, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse2$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissingValue$inboundSchema: z.ZodType<CreateDeploymentMissingValue, z.ZodTypeDef, unknown>;
export declare function createDeploymentMissingValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentMissingValue, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissing1$inboundSchema: z.ZodType<CreateDeploymentMissing1, z.ZodTypeDef, unknown>;
export declare function createDeploymentMissing1FromJSON(jsonString: string): SafeParseResult<CreateDeploymentMissing1, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentRoutesMissing$inboundSchema: z.ZodType<CreateDeploymentRoutesMissing, z.ZodTypeDef, unknown>;
export declare function createDeploymentRoutesMissingFromJSON(jsonString: string): SafeParseResult<CreateDeploymentRoutesMissing, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentRoutesAction$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentRoutesAction>;
/** @internal */
export declare const CreateDeploymentRoutesMitigate$inboundSchema: z.ZodType<CreateDeploymentRoutesMitigate, z.ZodTypeDef, unknown>;
export declare function createDeploymentRoutesMitigateFromJSON(jsonString: string): SafeParseResult<CreateDeploymentRoutesMitigate, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentTransformsDeploymentsOp$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentTransformsDeploymentsOp>;
/** @internal */
export declare const CreateDeploymentTransforms2$inboundSchema: z.ZodType<CreateDeploymentTransforms2, z.ZodTypeDef, unknown>;
export declare function createDeploymentTransforms2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentTransforms2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentTransformsType$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentTransformsType>;
/** @internal */
export declare const CreateDeploymentTransformsOp$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentTransformsOp>;
/** @internal */
export declare const CreateDeploymentKeyEq$inboundSchema: z.ZodType<CreateDeploymentKeyEq, z.ZodTypeDef, unknown>;
export declare function createDeploymentKeyEqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentKeyEq, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentKey2$inboundSchema: z.ZodType<CreateDeploymentKey2, z.ZodTypeDef, unknown>;
export declare function createDeploymentKey2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentKey2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentTransformsKey$inboundSchema: z.ZodType<CreateDeploymentTransformsKey, z.ZodTypeDef, unknown>;
export declare function createDeploymentTransformsKeyFromJSON(jsonString: string): SafeParseResult<CreateDeploymentTransformsKey, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentTransformsTarget$inboundSchema: z.ZodType<CreateDeploymentTransformsTarget, z.ZodTypeDef, unknown>;
export declare function createDeploymentTransformsTargetFromJSON(jsonString: string): SafeParseResult<CreateDeploymentTransformsTarget, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentTransformsArgs$inboundSchema: z.ZodType<CreateDeploymentTransformsArgs, z.ZodTypeDef, unknown>;
export declare function createDeploymentTransformsArgsFromJSON(jsonString: string): SafeParseResult<CreateDeploymentTransformsArgs, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentTransforms1$inboundSchema: z.ZodType<CreateDeploymentTransforms1, z.ZodTypeDef, unknown>;
export declare function createDeploymentTransforms1FromJSON(jsonString: string): SafeParseResult<CreateDeploymentTransforms1, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentRoutesTransforms$inboundSchema: z.ZodType<CreateDeploymentRoutesTransforms, z.ZodTypeDef, unknown>;
export declare function createDeploymentRoutesTransformsFromJSON(jsonString: string): SafeParseResult<CreateDeploymentRoutesTransforms, SDKValidationError>;
/** @internal */
export declare const RoutesLocale$inboundSchema: z.ZodType<RoutesLocale, z.ZodTypeDef, unknown>;
export declare function routesLocaleFromJSON(jsonString: string): SafeParseResult<RoutesLocale, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentDestinationType$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentDestinationType>;
/** @internal */
export declare const CreateDeploymentDestination2$inboundSchema: z.ZodType<CreateDeploymentDestination2, z.ZodTypeDef, unknown>;
export declare function createDeploymentDestination2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentDestination2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentRoutesDestination$inboundSchema: z.ZodType<CreateDeploymentRoutesDestination, z.ZodTypeDef, unknown>;
export declare function createDeploymentRoutesDestinationFromJSON(jsonString: string): SafeParseResult<CreateDeploymentRoutesDestination, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentRoutes1$inboundSchema: z.ZodType<CreateDeploymentRoutes1, z.ZodTypeDef, unknown>;
export declare function createDeploymentRoutes1FromJSON(jsonString: string): SafeParseResult<CreateDeploymentRoutes1, SDKValidationError>;
/** @internal */
export declare const ResponseBodyRoutes$inboundSchema: z.ZodType<ResponseBodyRoutes, z.ZodTypeDef, unknown>;
export declare function responseBodyRoutesFromJSON(jsonString: string): SafeParseResult<ResponseBodyRoutes, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsIncludeFiles$inboundSchema: z.ZodType<CreateDeploymentServicesDeploymentsIncludeFiles, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesDeploymentsIncludeFilesFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesDeploymentsIncludeFiles, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsExcludeFiles$inboundSchema: z.ZodType<CreateDeploymentServicesDeploymentsExcludeFiles, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesDeploymentsExcludeFilesFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesDeploymentsExcludeFiles, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsArchitecture$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentServicesDeploymentsArchitecture>;
/** @internal */
export declare const CreateDeploymentMaxDurationDeploymentsResponse2$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentMaxDurationDeploymentsResponse2>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsMaxDuration$inboundSchema: z.ZodType<CreateDeploymentServicesDeploymentsMaxDuration, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesDeploymentsMaxDurationFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesDeploymentsMaxDuration, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsMode$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentServicesDeploymentsMode>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsAffinity$inboundSchema: z.ZodType<CreateDeploymentServicesDeploymentsAffinity, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesDeploymentsAffinityFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesDeploymentsAffinity, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentExperimentalTriggersDeploymentsResponse3$inboundSchema: z.ZodType<CreateDeploymentExperimentalTriggersDeploymentsResponse3, z.ZodTypeDef, unknown>;
export declare function createDeploymentExperimentalTriggersDeploymentsResponse3FromJSON(jsonString: string): SafeParseResult<CreateDeploymentExperimentalTriggersDeploymentsResponse3, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentExperimentalTriggersDeploymentsResponse2$inboundSchema: z.ZodType<CreateDeploymentExperimentalTriggersDeploymentsResponse2, z.ZodTypeDef, unknown>;
export declare function createDeploymentExperimentalTriggersDeploymentsResponse2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentExperimentalTriggersDeploymentsResponse2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentExperimentalTriggersDeploymentsResponse1$inboundSchema: z.ZodType<CreateDeploymentExperimentalTriggersDeploymentsResponse1, z.ZodTypeDef, unknown>;
export declare function createDeploymentExperimentalTriggersDeploymentsResponse1FromJSON(jsonString: string): SafeParseResult<CreateDeploymentExperimentalTriggersDeploymentsResponse1, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsExperimentalTriggers$inboundSchema: z.ZodType<CreateDeploymentServicesDeploymentsExperimentalTriggers, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesDeploymentsExperimentalTriggersFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesDeploymentsExperimentalTriggers, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsFunctions$inboundSchema: z.ZodType<CreateDeploymentServicesDeploymentsFunctions, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesDeploymentsFunctionsFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesDeploymentsFunctions, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsProjectSettings$inboundSchema: z.ZodType<CreateDeploymentServicesDeploymentsProjectSettings, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesDeploymentsProjectSettingsFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesDeploymentsProjectSettings, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsMiddlewareRuntime$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentServicesDeploymentsMiddlewareRuntime>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsMiddlewareMatcher$inboundSchema: z.ZodType<CreateDeploymentServicesDeploymentsMiddlewareMatcher, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesDeploymentsMiddlewareMatcherFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesDeploymentsMiddlewareMatcher, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsConfig$inboundSchema: z.ZodType<CreateDeploymentServicesDeploymentsConfig, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesDeploymentsConfigFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesDeploymentsConfig, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsBuilder$inboundSchema: z.ZodType<CreateDeploymentServicesDeploymentsBuilder, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesDeploymentsBuilderFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesDeploymentsBuilder, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsResponseType$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentServicesDeploymentsResponseType>;
/** @internal */
export declare const ServicesFormat$inboundSchema: z.ZodNativeEnum<typeof ServicesFormat>;
/** @internal */
export declare const ServicesBindings$inboundSchema: z.ZodType<ServicesBindings, z.ZodTypeDef, unknown>;
export declare function servicesBindingsFromJSON(jsonString: string): SafeParseResult<ServicesBindings, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesArchitecture$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentServicesArchitecture>;
/** @internal */
export declare const CreateDeploymentMaxDurationDeployments2$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentMaxDurationDeployments2>;
/** @internal */
export declare const CreateDeploymentServicesMaxDuration$inboundSchema: z.ZodType<CreateDeploymentServicesMaxDuration, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesMaxDurationFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesMaxDuration, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesMode$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentServicesMode>;
/** @internal */
export declare const CreateDeploymentServicesAffinity$inboundSchema: z.ZodType<CreateDeploymentServicesAffinity, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesAffinityFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesAffinity, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentExperimentalTriggersDeployments3$inboundSchema: z.ZodType<CreateDeploymentExperimentalTriggersDeployments3, z.ZodTypeDef, unknown>;
export declare function createDeploymentExperimentalTriggersDeployments3FromJSON(jsonString: string): SafeParseResult<CreateDeploymentExperimentalTriggersDeployments3, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentExperimentalTriggersDeployments2$inboundSchema: z.ZodType<CreateDeploymentExperimentalTriggersDeployments2, z.ZodTypeDef, unknown>;
export declare function createDeploymentExperimentalTriggersDeployments2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentExperimentalTriggersDeployments2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentExperimentalTriggersDeployments1$inboundSchema: z.ZodType<CreateDeploymentExperimentalTriggersDeployments1, z.ZodTypeDef, unknown>;
export declare function createDeploymentExperimentalTriggersDeployments1FromJSON(jsonString: string): SafeParseResult<CreateDeploymentExperimentalTriggersDeployments1, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesExperimentalTriggers$inboundSchema: z.ZodType<CreateDeploymentServicesExperimentalTriggers, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesExperimentalTriggersFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesExperimentalTriggers, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesFunctions$inboundSchema: z.ZodType<CreateDeploymentServicesFunctions, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesFunctionsFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesFunctions, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsHeaders$inboundSchema: z.ZodType<CreateDeploymentServicesDeploymentsHeaders, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesDeploymentsHeadersFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesDeploymentsHeaders, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeploymentsResponse200Type$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentHasDeploymentsResponse200Type>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBodyEq$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBodyEq, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBodyEqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBodyEq, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeploymentsResponse200Value$inboundSchema: z.ZodType<CreateDeploymentHasDeploymentsResponse200Value, z.ZodTypeDef, unknown>;
export declare function createDeploymentHasDeploymentsResponse200ValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasDeploymentsResponse200Value, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeployments2$inboundSchema: z.ZodType<CreateDeploymentHasDeployments2, z.ZodTypeDef, unknown>;
export declare function createDeploymentHasDeployments2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasDeployments2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONEq$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONEq, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONEqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONEq, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJson2$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJson2, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSON2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJson2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeploymentsResponseValue$inboundSchema: z.ZodType<CreateDeploymentHasDeploymentsResponseValue, z.ZodTypeDef, unknown>;
export declare function createDeploymentHasDeploymentsResponseValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasDeploymentsResponseValue, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeployments1$inboundSchema: z.ZodType<CreateDeploymentHasDeployments1, z.ZodTypeDef, unknown>;
export declare function createDeploymentHasDeployments1FromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasDeployments1, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesHas$inboundSchema: z.ZodType<CreateDeploymentServicesHas, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesHasFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesHas, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissingDeploymentsResponse200Type$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentMissingDeploymentsResponse200Type>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2ServicesEq$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2ServicesEq, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2ServicesEqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2ServicesEq, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissingDeploymentsResponse200Value$inboundSchema: z.ZodType<CreateDeploymentMissingDeploymentsResponse200Value, z.ZodTypeDef, unknown>;
export declare function createDeploymentMissingDeploymentsResponse200ValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentMissingDeploymentsResponse200Value, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissingDeployments2$inboundSchema: z.ZodType<CreateDeploymentMissingDeployments2, z.ZodTypeDef, unknown>;
export declare function createDeploymentMissingDeployments2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentMissingDeployments2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Eq$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Eq, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2EqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Eq, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody22$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody22, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody22FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody22, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissingDeploymentsResponseValue$inboundSchema: z.ZodType<CreateDeploymentMissingDeploymentsResponseValue, z.ZodTypeDef, unknown>;
export declare function createDeploymentMissingDeploymentsResponseValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentMissingDeploymentsResponseValue, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissingDeployments1$inboundSchema: z.ZodType<CreateDeploymentMissingDeployments1, z.ZodTypeDef, unknown>;
export declare function createDeploymentMissingDeployments1FromJSON(jsonString: string): SafeParseResult<CreateDeploymentMissingDeployments1, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesMissing$inboundSchema: z.ZodType<CreateDeploymentServicesMissing, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesMissingFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesMissing, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesHeaders$inboundSchema: z.ZodType<CreateDeploymentServicesHeaders, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesHeadersFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesHeaders, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBodyType$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBodyType>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsEq$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsEq, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsEqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsEq, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Redirects2$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Redirects2, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Redirects2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Redirects2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBodyValue$inboundSchema: z.ZodType<CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBodyValue, z.ZodTypeDef, unknown>;
export declare function createDeploymentHasDeploymentsResponse200ApplicationJSONResponseBodyValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBodyValue, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeploymentsResponse2$inboundSchema: z.ZodType<CreateDeploymentHasDeploymentsResponse2, z.ZodTypeDef, unknown>;
export declare function createDeploymentHasDeploymentsResponse2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasDeploymentsResponse2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Eq$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Eq, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2EqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Eq, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services22$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services22, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services22FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services22, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeploymentsResponse200ApplicationJSONValue$inboundSchema: z.ZodType<CreateDeploymentHasDeploymentsResponse200ApplicationJSONValue, z.ZodTypeDef, unknown>;
export declare function createDeploymentHasDeploymentsResponse200ApplicationJSONValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasDeploymentsResponse200ApplicationJSONValue, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeploymentsResponse1$inboundSchema: z.ZodType<CreateDeploymentHasDeploymentsResponse1, z.ZodTypeDef, unknown>;
export declare function createDeploymentHasDeploymentsResponse1FromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasDeploymentsResponse1, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsHas$inboundSchema: z.ZodType<CreateDeploymentServicesDeploymentsHas, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesDeploymentsHasFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesDeploymentsHas, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBodyType$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBodyType>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissing2Eq$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissing2Eq, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissing2EqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissing2Eq, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissing22$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissing22, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissing22FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissing22, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBodyValue$inboundSchema: z.ZodType<CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBodyValue, z.ZodTypeDef, unknown>;
export declare function createDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBodyValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBodyValue, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissingDeploymentsResponse2$inboundSchema: z.ZodType<CreateDeploymentMissingDeploymentsResponse2, z.ZodTypeDef, unknown>;
export declare function createDeploymentMissingDeploymentsResponse2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentMissingDeploymentsResponse2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissingEq$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissingEq, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissingEqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissingEq, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissing2$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissing2, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissing2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RedirectsMissing2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissingDeploymentsResponse200ApplicationJSONValue$inboundSchema: z.ZodType<CreateDeploymentMissingDeploymentsResponse200ApplicationJSONValue, z.ZodTypeDef, unknown>;
export declare function createDeploymentMissingDeploymentsResponse200ApplicationJSONValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentMissingDeploymentsResponse200ApplicationJSONValue, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissingDeploymentsResponse1$inboundSchema: z.ZodType<CreateDeploymentMissingDeploymentsResponse1, z.ZodTypeDef, unknown>;
export declare function createDeploymentMissingDeploymentsResponse1FromJSON(jsonString: string): SafeParseResult<CreateDeploymentMissingDeploymentsResponse1, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsMissing$inboundSchema: z.ZodType<CreateDeploymentServicesDeploymentsMissing, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesDeploymentsMissingFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesDeploymentsMissing, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesRedirects$inboundSchema: z.ZodType<CreateDeploymentServicesRedirects, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesRedirectsFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesRedirects, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentDestinationDeploymentsType$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentDestinationDeploymentsType>;
/** @internal */
export declare const CreateDeploymentDestinationDeployments2$inboundSchema: z.ZodType<CreateDeploymentDestinationDeployments2, z.ZodTypeDef, unknown>;
export declare function createDeploymentDestinationDeployments2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentDestinationDeployments2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesDestination$inboundSchema: z.ZodType<CreateDeploymentServicesDestination, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesDestinationFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesDestination, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsResponse200Type$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentServicesDeploymentsResponse200Type>;
/** @internal */
export declare const CreateDeploymentServicesOp$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentServicesOp>;
/** @internal */
export declare const CreateDeploymentServicesTransforms$inboundSchema: z.ZodType<CreateDeploymentServicesTransforms, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesTransformsFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesTransforms, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2ServicesType$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2ServicesType>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHasEq$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHasEq, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHasEqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHasEq, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHas2$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHas2, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHas2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHas2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2ServicesValue$inboundSchema: z.ZodType<CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2ServicesValue, z.ZodTypeDef, unknown>;
export declare function createDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2ServicesValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2ServicesValue, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeploymentsResponse2002$inboundSchema: z.ZodType<CreateDeploymentHasDeploymentsResponse2002, z.ZodTypeDef, unknown>;
export declare function createDeploymentHasDeploymentsResponse2002FromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasDeploymentsResponse2002, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesEq$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesEq, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesEqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesEq, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Rewrites2$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Rewrites2, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Rewrites2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Rewrites2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Value$inboundSchema: z.ZodType<CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Value, z.ZodTypeDef, unknown>;
export declare function createDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2ValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Value, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeploymentsResponse2001$inboundSchema: z.ZodType<CreateDeploymentHasDeploymentsResponse2001, z.ZodTypeDef, unknown>;
export declare function createDeploymentHasDeploymentsResponse2001FromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasDeploymentsResponse2001, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsResponseHas$inboundSchema: z.ZodType<CreateDeploymentServicesDeploymentsResponseHas, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesDeploymentsResponseHasFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesDeploymentsResponseHas, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2ServicesType$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2ServicesType>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2Eq$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2Eq, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2EqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2Eq, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing22$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing22, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing22FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing22, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2ServicesValue$inboundSchema: z.ZodType<CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2ServicesValue, z.ZodTypeDef, unknown>;
export declare function createDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2ServicesValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2ServicesValue, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissingDeploymentsResponse2002$inboundSchema: z.ZodType<CreateDeploymentMissingDeploymentsResponse2002, z.ZodTypeDef, unknown>;
export declare function createDeploymentMissingDeploymentsResponse2002FromJSON(jsonString: string): SafeParseResult<CreateDeploymentMissingDeploymentsResponse2002, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissingEq$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissingEq, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissingEqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissingEq, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Value$inboundSchema: z.ZodType<CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Value, z.ZodTypeDef, unknown>;
export declare function createDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2ValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Value, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentMissingDeploymentsResponse2001$inboundSchema: z.ZodType<CreateDeploymentMissingDeploymentsResponse2001, z.ZodTypeDef, unknown>;
export declare function createDeploymentMissingDeploymentsResponse2001FromJSON(jsonString: string): SafeParseResult<CreateDeploymentMissingDeploymentsResponse2001, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentServicesDeploymentsResponseMissing$inboundSchema: z.ZodType<CreateDeploymentServicesDeploymentsResponseMissing, z.ZodTypeDef, unknown>;
export declare function createDeploymentServicesDeploymentsResponseMissingFromJSON(jsonString: string): SafeParseResult<CreateDeploymentServicesDeploymentsResponseMissing, SDKValidationError>;
/** @internal */
export declare const ServicesRewrites$inboundSchema: z.ZodType<ServicesRewrites, z.ZodTypeDef, unknown>;
export declare function servicesRewritesFromJSON(jsonString: string): SafeParseResult<ServicesRewrites, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentRoutesHandle$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentRoutesHandle>;
/** @internal */
export declare const CreateDeploymentRoutesDeployments2$inboundSchema: z.ZodType<CreateDeploymentRoutesDeployments2, z.ZodTypeDef, unknown>;
export declare function createDeploymentRoutesDeployments2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentRoutesDeployments2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesType$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesType>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Eq$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Eq, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1EqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Eq, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes12$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes12, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes12FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes12, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesValue$inboundSchema: z.ZodType<CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesValue, z.ZodTypeDef, unknown>;
export declare function createDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesValue, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeploymentsResponse200ApplicationJson2$inboundSchema: z.ZodType<CreateDeploymentHasDeploymentsResponse200ApplicationJson2, z.ZodTypeDef, unknown>;
export declare function createDeploymentHasDeploymentsResponse200ApplicationJSON2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasDeploymentsResponse200ApplicationJson2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesEq$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesEq, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesEqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesEq, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes2$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes2, z.ZodTypeDef, unknown>;
export declare function createDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes2, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2Value$inboundSchema: z.ZodType<CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2Value, z.ZodTypeDef, unknown>;
export declare function createDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2ValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2Value, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentHasDeploymentsResponse200ApplicationJson1$inboundSchema: z.ZodType<CreateDeploymentHasDeploymentsResponse200ApplicationJson1, z.ZodTypeDef, unknown>;
export declare function createDeploymentHasDeploymentsResponse200ApplicationJSON1FromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasDeploymentsResponse200ApplicationJson1, SDKValidationError>;
/** @internal */
export declare const CreateDeploymentRoutesDeploymentsHas$inboundSchema: z.ZodType<CreateDeploymentRoutesDeploymentsHas, z.ZodTypeDef, unknown>;
export declare function createDeploymentRoutesDeploymentsHasFromJSON(jsonString: string): SafeParseResult<CreateDeploymentRoutesDeploymentsHas, SDKValidationError>;
//# sourceMappingURL=createdeploymentroutesdeploymentshas.d.ts.map