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,878 lines 116 kB
import * as z from "zod/v3";
import { ClosedEnum } from "../types/enums.js";
import { Result as SafeParseResult } from "../types/fp.js";
import { FlagJSONValue } from "./flagjsonvalue.js";
import { GetDeploymentResponseBodyAliasAssignedAt, GetDeploymentResponseBodyBuild, GetDeploymentResponseBodyBuilds, GetDeploymentResponseBodyChecksConclusion, GetDeploymentResponseBodyChecksState, GetDeploymentResponseBodyCreator, GetDeploymentResponseBodyImages, GetDeploymentResponseBodyIntegrations, GetDeploymentResponseBodyLambdas, GetDeploymentResponseBodyOomReport, GetDeploymentResponseBodyResourceConfig, GetDeploymentResponseBodyStatus, GetDeploymentResponseBodyTeam, GetDeploymentResponseBodyType, ResponseBodyAliasError, ResponseBodyAliasWarning, ResponseBodyCustomEnvironment, ResponseBodyProjectSettings, ResponseBodyReadyState, ResponseBodyTarget } from "./getdeploymentgitsourcedeploymentsresponse200type.js";
import { GetDeploymentMissingDeployments1, GetDeploymentMissingDeployments2, GetDeploymentResponseBodyAtproto, GetDeploymentResponseBodyCrons, GetDeploymentResponseBodyFunctions, GetDeploymentResponseBodyGitSource, GetDeploymentResponseBodyManualProvisioning, GetDeploymentResponseBodyNodeVersion, GetDeploymentResponseBodyOidcTokenClaims, GetDeploymentResponseBodyPlan, GetDeploymentResponseBodyReadySubstate, GetDeploymentResponseBodyRoutes, GetDeploymentResponseBodySource, GetDeploymentServicesBindings, GetDeploymentServicesDeploymentsBuilder, GetDeploymentServicesFunctions, GetDeploymentServicesHas, GetDeploymentServicesHeaders, ResponseBodyProject } from "./getdeploymentmissingdeployments1.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
export type GetDeploymentServicesMissing = GetDeploymentMissingDeployments1 | (GetDeploymentMissingDeployments2 & {
    type: "cookie";
}) | (GetDeploymentMissingDeployments2 & {
    type: "header";
}) | (GetDeploymentMissingDeployments2 & {
    type: "query";
});
export type GetDeploymentServicesRedirects = {
    source: string;
    destination: string;
    permanent?: boolean | undefined;
    statusCode?: number | undefined;
    has?: Array<GetDeploymentServicesHas> | undefined;
    missing?: Array<GetDeploymentMissingDeployments1 | (GetDeploymentMissingDeployments2 & {
        type: "cookie";
    }) | (GetDeploymentMissingDeployments2 & {
        type: "header";
    }) | (GetDeploymentMissingDeployments2 & {
        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 GetDeploymentDestinationDeploymentsType: {
    readonly Service: "service";
};
/**
 * Optional explicit format marker. The destination is identified by the presence of `service`, so `type` is no longer required.
 */
export type GetDeploymentDestinationDeploymentsType = ClosedEnum<typeof GetDeploymentDestinationDeploymentsType>;
export type GetDeploymentDestinationDeployments2 = {
    /**
     * Optional explicit format marker. The destination is identified by the presence of `service`, so `type` is no longer required.
     */
    type?: GetDeploymentDestinationDeploymentsType | undefined;
    service: string;
    /**
     * Routing-only path used to select a route inside the target service.
     */
    path?: string | undefined;
};
export type GetDeploymentServicesDestination = GetDeploymentDestinationDeployments2 | string;
export declare const GetDeploymentServicesDeploymentsResponse200Type: {
    readonly RequestPath: "request.path";
};
export type GetDeploymentServicesDeploymentsResponse200Type = ClosedEnum<typeof GetDeploymentServicesDeploymentsResponse200Type>;
export declare const GetDeploymentServicesOp: {
    readonly Set: "set";
};
export type GetDeploymentServicesOp = ClosedEnum<typeof GetDeploymentServicesOp>;
export type GetDeploymentServicesTransforms = {
    type: GetDeploymentServicesDeploymentsResponse200Type;
    op: GetDeploymentServicesOp;
    args: string;
    env?: Array<string> | undefined;
};
export declare const GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Type: {
    readonly Cookie: "cookie";
    readonly Header: "header";
    readonly Query: "query";
};
export type GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Type = ClosedEnum<typeof GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Type>;
export type GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHasEq = string | number;
export type GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHas2 = {
    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 GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBodyValue = string | GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHas2;
export type GetDeploymentHasDeploymentsResponse2 = {
    type: GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Type;
    key: string;
    value?: string | GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHas2 | undefined;
};
export type GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesEq = string | number;
export type GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Rewrites2 = {
    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 GetDeploymentHasDeploymentsResponse200ApplicationJSONValue = string | GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Rewrites2;
export type GetDeploymentHasDeploymentsResponse1 = {
    type: "host";
    value: string | GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Rewrites2;
};
export type GetDeploymentServicesDeploymentsHas = GetDeploymentHasDeploymentsResponse1 | (GetDeploymentHasDeploymentsResponse2 & {
    type: "cookie";
}) | (GetDeploymentHasDeploymentsResponse2 & {
    type: "header";
}) | (GetDeploymentHasDeploymentsResponse2 & {
    type: "query";
});
export declare const GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Type: {
    readonly Cookie: "cookie";
    readonly Header: "header";
    readonly Query: "query";
};
export type GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Type = ClosedEnum<typeof GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Type>;
export type GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2Eq = string | number;
export type GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing22 = {
    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 GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Value = string | GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing22;
export type GetDeploymentMissingDeploymentsResponse2 = {
    type: GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Type;
    key: string;
    value?: string | GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing22 | undefined;
};
export type GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissingEq = string | number;
export type GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2 = {
    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 GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBodyValue = string | GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2;
export type GetDeploymentMissingDeploymentsResponse1 = {
    type: "host";
    value: string | GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2;
};
export type GetDeploymentServicesDeploymentsMissing = GetDeploymentMissingDeploymentsResponse1 | (GetDeploymentMissingDeploymentsResponse2 & {
    type: "cookie";
}) | (GetDeploymentMissingDeploymentsResponse2 & {
    type: "header";
}) | (GetDeploymentMissingDeploymentsResponse2 & {
    type: "query";
});
export type GetDeploymentServicesRewrites = {
    source: string;
    destination: GetDeploymentDestinationDeployments2 | string;
    transforms?: Array<GetDeploymentServicesTransforms> | undefined;
    has?: Array<GetDeploymentHasDeploymentsResponse1 | (GetDeploymentHasDeploymentsResponse2 & {
        type: "cookie";
    }) | (GetDeploymentHasDeploymentsResponse2 & {
        type: "header";
    }) | (GetDeploymentHasDeploymentsResponse2 & {
        type: "query";
    })> | undefined;
    missing?: Array<GetDeploymentMissingDeploymentsResponse1 | (GetDeploymentMissingDeploymentsResponse2 & {
        type: "cookie";
    }) | (GetDeploymentMissingDeploymentsResponse2 & {
        type: "header";
    }) | (GetDeploymentMissingDeploymentsResponse2 & {
        type: "query";
    })> | undefined;
    statusCode?: number | undefined;
    env?: Array<string> | undefined;
    respectOriginCacheControl?: boolean | undefined;
};
export declare const GetDeploymentRoutesDeploymentsHandle: {
    readonly Error: "error";
    readonly Filesystem: "filesystem";
    readonly Hit: "hit";
    readonly Miss: "miss";
    readonly Resource: "resource";
    readonly Rewrite: "rewrite";
};
export type GetDeploymentRoutesDeploymentsHandle = ClosedEnum<typeof GetDeploymentRoutesDeploymentsHandle>;
export type GetDeploymentRoutesDeployments2 = {
    handle: GetDeploymentRoutesDeploymentsHandle;
    src?: string | undefined;
    dest?: string | undefined;
    status?: number | undefined;
};
export declare const GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2Type: {
    readonly Cookie: "cookie";
    readonly Header: "header";
    readonly Query: "query";
};
export type GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2Type = ClosedEnum<typeof GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2Type>;
export type GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Eq = string | number;
export type GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes12 = {
    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 GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesValue = string | GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes12;
export type GetDeploymentHasDeploymentsResponse200ApplicationJson2 = {
    type: GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2Type;
    key: string;
    value?: string | GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes12 | undefined;
};
export type GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesEq = string | number;
export type GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes2 = {
    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 GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2Value = string | GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes2;
export type GetDeploymentHasDeploymentsResponse200ApplicationJson1 = {
    type: "host";
    value: string | GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes2;
};
export type GetDeploymentRoutesDeploymentsHas = GetDeploymentHasDeploymentsResponse200ApplicationJson1 | (GetDeploymentHasDeploymentsResponse200ApplicationJson2 & {
    type: "cookie";
}) | (GetDeploymentHasDeploymentsResponse200ApplicationJson2 & {
    type: "header";
}) | (GetDeploymentHasDeploymentsResponse200ApplicationJson2 & {
    type: "query";
});
export declare const GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Services2Type: {
    readonly Cookie: "cookie";
    readonly Header: "header";
    readonly Query: "query";
};
export type GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Services2Type = ClosedEnum<typeof GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Services2Type>;
export type GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Missing2Eq = string | number;
export type GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Missing22 = {
    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 GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Services2Value = string | GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Missing22;
export type GetDeploymentMissingDeploymentsResponse200ApplicationJson2 = {
    type: GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Services2Type;
    key: string;
    value?: string | GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Missing22 | undefined;
};
export type GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1MissingEq = string | number;
export type GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Missing2 = {
    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 GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesValue = string | GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Missing2;
export type GetDeploymentMissingDeploymentsResponse200ApplicationJson1 = {
    type: "host";
    value: string | GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Missing2;
};
export type GetDeploymentRoutesDeploymentsMissing = GetDeploymentMissingDeploymentsResponse200ApplicationJson1 | (GetDeploymentMissingDeploymentsResponse200ApplicationJson2 & {
    type: "cookie";
}) | (GetDeploymentMissingDeploymentsResponse200ApplicationJson2 & {
    type: "header";
}) | (GetDeploymentMissingDeploymentsResponse200ApplicationJson2 & {
    type: "query";
});
export declare const GetDeploymentRoutesDeploymentsAction: {
    readonly Challenge: "challenge";
    readonly Deny: "deny";
};
export type GetDeploymentRoutesDeploymentsAction = ClosedEnum<typeof GetDeploymentRoutesDeploymentsAction>;
export type GetDeploymentRoutesDeploymentsMitigate = {
    action: GetDeploymentRoutesDeploymentsAction;
};
export declare const GetDeploymentTransformsDeploymentsResponse200Op: {
    readonly Set: "set";
};
export type GetDeploymentTransformsDeploymentsResponse200Op = ClosedEnum<typeof GetDeploymentTransformsDeploymentsResponse200Op>;
export type GetDeploymentTransformsDeployments2 = {
    type: "request.path";
    op: GetDeploymentTransformsDeploymentsResponse200Op;
    args: string;
    env?: Array<string> | undefined;
};
export declare const GetDeploymentTransformsDeploymentsResponse200Type: {
    readonly RequestHeaders: "request.headers";
    readonly RequestQuery: "request.query";
    readonly ResponseHeaders: "response.headers";
};
export type GetDeploymentTransformsDeploymentsResponse200Type = ClosedEnum<typeof GetDeploymentTransformsDeploymentsResponse200Type>;
export declare const GetDeploymentTransformsDeploymentsResponseOp: {
    readonly Append: "append";
    readonly Delete: "delete";
    readonly Set: "set";
};
export type GetDeploymentTransformsDeploymentsResponseOp = ClosedEnum<typeof GetDeploymentTransformsDeploymentsResponseOp>;
export type GetDeploymentKeyDeploymentsEq = string | number;
export type GetDeploymentKeyDeployments2 = {
    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 GetDeploymentTransformsDeploymentsKey = string | GetDeploymentKeyDeployments2;
export type GetDeploymentTransformsDeploymentsTarget = {
    key: string | GetDeploymentKeyDeployments2;
};
export type GetDeploymentTransformsDeploymentsArgs = string | Array<string>;
export type GetDeploymentTransformsDeployments1 = {
    type: GetDeploymentTransformsDeploymentsResponse200Type;
    op: GetDeploymentTransformsDeploymentsResponseOp;
    target: GetDeploymentTransformsDeploymentsTarget;
    args?: string | Array<string> | undefined;
    env?: Array<string> | undefined;
};
export type GetDeploymentRoutesDeploymentsTransforms = (GetDeploymentTransformsDeployments1 & {
    type: "request.headers";
}) | (GetDeploymentTransformsDeployments1 & {
    type: "request.query";
}) | (GetDeploymentTransformsDeployments1 & {
    type: "response.headers";
}) | GetDeploymentTransformsDeployments2;
export type GetDeploymentRoutesDeploymentsLocale = {
    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 GetDeploymentDestinationDeploymentsResponseType: {
    readonly Service: "service";
};
/**
 * Optional explicit format marker. The destination is identified by the presence of `service`, so `type` is no longer required.
 */
export type GetDeploymentDestinationDeploymentsResponseType = ClosedEnum<typeof GetDeploymentDestinationDeploymentsResponseType>;
export type GetDeploymentDestinationDeploymentsResponse2 = {
    /**
     * Optional explicit format marker. The destination is identified by the presence of `service`, so `type` is no longer required.
     */
    type?: GetDeploymentDestinationDeploymentsResponseType | undefined;
    service: string;
    /**
     * Routing-only path used to select a route inside the target service.
     */
    path?: string | undefined;
};
export type GetDeploymentRoutesDeploymentsDestination = GetDeploymentDestinationDeploymentsResponse2 | string;
export type GetDeploymentRoutesDeployments1 = {
    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<GetDeploymentHasDeploymentsResponse200ApplicationJson1 | (GetDeploymentHasDeploymentsResponse200ApplicationJson2 & {
        type: "cookie";
    }) | (GetDeploymentHasDeploymentsResponse200ApplicationJson2 & {
        type: "header";
    }) | (GetDeploymentHasDeploymentsResponse200ApplicationJson2 & {
        type: "query";
    })> | undefined;
    missing?: Array<GetDeploymentMissingDeploymentsResponse200ApplicationJson1 | (GetDeploymentMissingDeploymentsResponse200ApplicationJson2 & {
        type: "cookie";
    }) | (GetDeploymentMissingDeploymentsResponse200ApplicationJson2 & {
        type: "header";
    }) | (GetDeploymentMissingDeploymentsResponse200ApplicationJson2 & {
        type: "query";
    })> | undefined;
    mitigate?: GetDeploymentRoutesDeploymentsMitigate | undefined;
    transforms?: Array<(GetDeploymentTransformsDeployments1 & {
        type: "request.headers";
    }) | (GetDeploymentTransformsDeployments1 & {
        type: "request.query";
    }) | (GetDeploymentTransformsDeployments1 & {
        type: "response.headers";
    }) | GetDeploymentTransformsDeployments2> | undefined;
    env?: Array<string> | undefined;
    locale?: GetDeploymentRoutesDeploymentsLocale | 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?: GetDeploymentDestinationDeploymentsResponse2 | 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 GetDeploymentServicesRoutes = GetDeploymentRoutesDeployments1 | GetDeploymentRoutesDeployments2;
/**
 * Services detected during build from vercel.json experimentalServices or auto-detected from project structure. Used to inject service URLs as environment variables at runtime.
 */
export type GetDeploymentServices2 = {
    schema: "experimentalServicesV2";
    name: string;
    /**
     * Path to the service root, relative to the project root.
     */
    root: string;
    framework?: string | undefined;
    runtime?: string | undefined;
    /**
     * Resolved entrypoint, relative to the service root.
     */
    entrypoint?: string | undefined;
    /**
     * Command override for `runtime: "container"` services.
     */
    command?: Array<string> | undefined;
    /**
     * Builder selected by the resolver.
     */
    builder: GetDeploymentServicesDeploymentsBuilder;
    installCommand?: string | undefined;
    buildCommand?: string | undefined;
    devCommand?: string | undefined;
    ignoreCommand?: string | undefined;
    outputDirectory?: string | undefined;
    /**
     * Caller-side bindings to other services.
     */
    bindings?: Array<GetDeploymentServicesBindings> | undefined;
    /**
     * Function configuration scoped to this service.
     */
    functions?: {
        [k: string]: GetDeploymentServicesFunctions;
    } | undefined;
    headers?: Array<GetDeploymentServicesHeaders> | undefined;
    redirects?: Array<GetDeploymentServicesRedirects> | undefined;
    rewrites?: Array<GetDeploymentServicesRewrites> | undefined;
    routes?: Array<GetDeploymentRoutesDeployments1 | GetDeploymentRoutesDeployments2> | undefined;
    cleanUrls?: boolean | undefined;
    trailingSlash?: boolean | undefined;
};
export declare const GetDeploymentServicesType: {
    readonly Cron: "cron";
    readonly Job: "job";
    readonly Web: "web";
    readonly Worker: "worker";
};
export type GetDeploymentServicesType = ClosedEnum<typeof GetDeploymentServicesType>;
export declare const GetDeploymentServicesTrigger: {
    readonly Queue: "queue";
    readonly Schedule: "schedule";
    readonly Workflow: "workflow";
};
export type GetDeploymentServicesTrigger = ClosedEnum<typeof GetDeploymentServicesTrigger>;
export type GetDeploymentServicesIncludeFiles = string | Array<string>;
export type GetDeploymentServicesExcludeFiles = string | Array<string>;
export declare const GetDeploymentServicesDeploymentsArchitecture: {
    readonly Arm64: "arm64";
    readonly X8664: "x86_64";
};
export type GetDeploymentServicesDeploymentsArchitecture = ClosedEnum<typeof GetDeploymentServicesDeploymentsArchitecture>;
export declare const GetDeploymentMaxDurationDeploymentsResponse2: {
    readonly Max: "max";
};
export type GetDeploymentMaxDurationDeploymentsResponse2 = ClosedEnum<typeof GetDeploymentMaxDurationDeploymentsResponse2>;
export type GetDeploymentServicesDeploymentsMaxDuration = number | GetDeploymentMaxDurationDeploymentsResponse2;
export declare const GetDeploymentServicesDeploymentsMode: {
    readonly Strict: "strict";
};
export type GetDeploymentServicesDeploymentsMode = ClosedEnum<typeof GetDeploymentServicesDeploymentsMode>;
export type GetDeploymentServicesDeploymentsAffinity = {
    mode: GetDeploymentServicesDeploymentsMode;
};
export type GetDeploymentExperimentalTriggersDeploymentsResponse3 = {
    /**
     * 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 GetDeploymentExperimentalTriggersDeploymentsResponse2 = {
    /**
     * 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 GetDeploymentExperimentalTriggersDeploymentsResponse1 = {
    /**
     * 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 GetDeploymentServicesDeploymentsExperimentalTriggers = GetDeploymentExperimentalTriggersDeploymentsResponse1 | GetDeploymentExperimentalTriggersDeploymentsResponse2 | GetDeploymentExperimentalTriggersDeploymentsResponse3;
export type GetDeploymentServicesDeploymentsFunctions = {
    architecture?: GetDeploymentServicesDeploymentsArchitecture | undefined;
    memory?: number | undefined;
    maxDuration?: number | GetDeploymentMaxDurationDeploymentsResponse2 | undefined;
    affinity?: GetDeploymentServicesDeploymentsAffinity | undefined;
    maxConcurrency?: number | undefined;
    regions?: Array<string> | undefined;
    functionFailoverRegions?: Array<string> | undefined;
    runtime?: string | undefined;
    includeFiles?: string | undefined;
    excludeFiles?: string | undefined;
    experimentalTriggers?: Array<GetDeploymentExperimentalTriggersDeploymentsResponse1 | GetDeploymentExperimentalTriggersDeploymentsResponse2 | GetDeploymentExperimentalTriggersDeploymentsResponse3> | undefined;
    supportsCancellation?: boolean | undefined;
};
export type GetDeploymentServicesDeploymentsProjectSettings = {
    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 GetDeploymentServicesMiddlewareRuntime: {
    readonly Nodejs: "nodejs";
};
/**
 * Enforced runtime for explicitly configured Routing Middleware.
 */
export type GetDeploymentServicesMiddlewareRuntime = ClosedEnum<typeof GetDeploymentServicesMiddlewareRuntime>;
export type GetDeploymentServicesMiddlewareMatcher = string | Array<string>;
export type GetDeploymentServicesConfig = {
    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]: GetDeploymentServicesDeploymentsFunctions;
    } | undefined;
    projectSettings?: GetDeploymentServicesDeploymentsProjectSettings | 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?: GetDeploymentServicesMiddlewareRuntime | undefined;
    middlewareMatcher?: string | Array<string> | undefined;
    /**
     * Owning service name; scopes per-function config such as the v2beta consumer.
     */
    serviceName?: string | undefined;
};
export type GetDeploymentServicesBuilder = {
    use: string;
    src?: string | undefined;
    config?: GetDeploymentServicesConfig | undefined;
};
export declare const GetDeploymentServicesRoutePrefixSource: {
    readonly Configured: "configured";
    readonly Generated: "generated";
};
export type GetDeploymentServicesRoutePrefixSource = ClosedEnum<typeof GetDeploymentServicesRoutePrefixSource>;
export type GetDeploymentServicesSchedule = string | Array<string>;
export type GetDeploymentTopics2 = {
    topic: string;
    retryAfterSeconds?: number | undefined;
    initialDelaySeconds?: number | undefined;
};
export type GetDeploymentServicesTopics = Array<string> | Array<GetDeploymentTopics2>;
export declare const GetDeploymentServicesDeploymentsResponseType: {
    readonly ServiceRef: "service-ref";
};
export type GetDeploymentServicesDeploymentsResponseType = ClosedEnum<typeof GetDeploymentServicesDeploymentsResponseType>;
export type GetDeploymentServicesEnv = {
    type: GetDeploymentServicesDeploymentsResponseType;
    service: string;
};
/**
 * Services detected during build from vercel.json experimentalServices or auto-detected from project structure. Used to inject service URLs as environment variables at runtime.
 */
export type GetDeploymentServices1 = {
    schema: "experimentalServices";
    name: string;
    type: GetDeploymentServicesType;
    trigger?: GetDeploymentServicesTrigger | undefined;
    group?: string | undefined;
    workspace: string;
    entrypoint?: string | undefined;
    framework?: string | undefined;
    builder: GetDeploymentServicesBuilder;
    runtime?: string | undefined;
    buildCommand?: string | undefined;
    installCommand?: string | undefined;
    preDeployCommand?: string | undefined;
    routePrefix?: string | undefined;
    routePrefixSource?: GetDeploymentServicesRoutePrefixSource | undefined;
    subdomain?: string | undefined;
    schedule?: string | Array<string> | undefined;
    handlerFunction?: string | undefined;
    topics?: Array<string> | Array<GetDeploymentTopics2> | undefined;
    env?: {
        [k: string]: GetDeploymentServicesEnv;
    } | undefined;
};
export type GetDeploymentResponseBodyServices = GetDeploymentServices1 | GetDeploymentServices2;
export declare const GetDeploymentGitRepoDeploymentsResponseOwnerType: {
    readonly Team: "team";
    readonly User: "user";
};
export type GetDeploymentGitRepoDeploymentsResponseOwnerType = ClosedEnum<typeof GetDeploymentGitRepoDeploymentsResponseOwnerType>;
export type GetDeploymentGitRepo5 = {
    /**
     * Owner (namespace) slug.
     */
    owner: string;
    repo: string;
    /**
     * Origin repository id.
     */
    repoId: string;
    type: "cursor-origin";
    path: string;
    defaultBranch: string;
    name: string;
    private: boolean;
    ownerType: GetDeploymentGitRepoDeploymentsResponseOwnerType;
};
export declare const GetDeploymentGitRepoDeploymentsOwnerType: {
    readonly Team: "team";
    readonly User: "user";
};
export type GetDeploymentGitRepoDeploymentsOwnerType = ClosedEnum<typeof GetDeploymentGitRepoDeploymentsOwnerType>;
export type GetDeploymentGitRepo4 = {
    org: string;
    repo: string;
    type: "vercel";
    path: string;
    defaultBranch: string;
    name: string;
    private: boolean;
    ownerType: GetDeploymentGitRepoDeploymentsOwnerType;
};
export declare const GetDeploymentGitRepoOwnerType: {
    readonly Team: "team";
    readonly User: "user";
};
export type GetDeploymentGitRepoOwnerType = ClosedEnum<typeof GetDeploymentGitRepoOwnerType>;
export type GetDeploymentGitRepo3 = {
    owner: string;
    repoUuid: string;
    slug: string;
    type: "bitbucket";
    workspaceUuid: string;
    path: string;
    defaultBranch: string;
    name: string;
    private: boolean;
    ownerType: GetDeploymentGitRepoOwnerType;
};
export declare const GetDeploymentGitRepoDeploymentsResponse200ApplicationJSONOwnerType: {
    readonly Team: "team";
    readonly User: "user";
};
export type GetDeploymentGitRepoDeploymentsResponse200ApplicationJSONOwnerType = ClosedEnum<typeof GetDeploymentGitRepoDeploymentsResponse200ApplicationJSONOwnerType>;
export type GetDeploymentGitRepo2 = {
    org: string;
    repo: string;
    repoId: number;
    type: "github";
    repoOwnerId: number;
    path: string;
    defaultBranch: string;
    name: string;
    private: boolean;
    ownerType: GetDeploymentGitRepoDeploymentsResponse200ApplicationJSONOwnerType;
};
export declare const GetDeploymentGitRepoDeploymentsResponse200OwnerType: {
    readonly Team: "team";
    readonly User: "user";
};
export type GetDeploymentGitRepoDeploymentsResponse200OwnerType = ClosedEnum<typeof GetDeploymentGitRepoDeploymentsResponse200OwnerType>;
export type GetDeploymentGitRepo1 = {
    namespace: string;
    projectId: number;
    type: "gitlab";
    url: string;
    path: string;
    defaultBranch: string;
    name: string;
    private: boolean;
    ownerType: GetDeploymentGitRepoDeploymentsResponse200OwnerType;
};
export type GetDeploymentResponseBodyGitRepo = GetDeploymentGitRepo1 | GetDeploymentGitRepo2 | GetDeploymentGitRepo3 | GetDeploymentGitRepo4 | GetDeploymentGitRepo5;
/**
 * Flags defined in the Build Output API, used by this deployment. Primarily used by the Toolbar to know about the used flags.
 */
export type GetDeploymentFlags2 = {};
export type GetDeploymentFlagsOptions = {
    value: FlagJSONValue | null;
    label?: string | undefined;
};
export type GetDeploymentFlagsDefinitions = {
    options?: Array<GetDeploymentFlagsOptions> | undefined;
    url?: string | undefined;
    description?: string | undefined;
};
/**
 * Flags defined in the Build Output API, used by this deployment. Primarily used by the Toolbar to know about the used flags.
 */
export type GetDeploymentFlags1 = {
    definitions: {
        [k: string]: GetDeploymentFlagsDefinitions;
    };
};
export type GetDeploymentResponseBodyFlags = GetDeploymentFlags1 | Array<GetDeploymentFlags2>;
/**
 * The result of the microfrontends config upload during deployment creation / build. Only set for default app deployments. The config upload is attempted during deployment create, and then again during the build. If the config is not in the root directory, or the deployment is prebuilt, the config cannot be uploaded during deployment create. The upload during deployment build finds the config even if it's not in the root directory, as it has access to all files. Uploading the config during create is ideal, as then all child deployments are guaranteed to have access to the default app deployment config even if the default app has not yet started building. If the config is not uploaded, the child app will show as building until the config has been uploaded during the default app build. - `success` - The config was uploaded successfully, either when the deployment was created or during the build. - `waiting_on_build` - The config could not be uploaded during deployment create, will be attempted again during the build. - `no_config` - No config was found. Only set once the build has not found the config in any of the deployment's files. - `undefined` - Legacy deployments, or there was an error uploading the config during deployment create.
 */
export declare const GetDeploymentMicrofrontendsMfeConfigUploadState: {
    readonly NoConfig: "no_config";
    readonly Success: "success";
    readonly WaitingOnBuild: "waiting_on_build";
};
/**
 * The result of the microfrontends config upload during deployment creation / build. Only set for default app deployments. The config upload is attempted during deployment create, and then again during the build. If the config is not in the root directory, or the deployment is prebuilt, the config cannot be uploaded during deployment create. The upload during deployment build finds the config even if it's not in the root directory, as it has access to all files. Uploading the config during create is ideal, as then all child deployments are guaranteed to have access to the default app deployment config even if the default app has not yet started building. If the config is not uploaded, the child app will show as building until the config has been uploaded during the default app build. - `success` - The config was uploaded successfully, either when the deployment was created or during the build. - `waiting_on_build` - The config could not be uploaded during deployment create, will be attempted again during the build. - `no_config` - No config was found. Only set once the build has not found the config in any of the deployment's files. - `undefined` - Legacy deployments, or there was an error uploading the config during deployment create.
 */
export type GetDeploymentMicrofrontendsMfeConfigUploadState = ClosedEnum<typeof GetDeploymentMicrofrontendsMfeConfigUploadState>;
export type GetDeploymentMicrofrontends2 = {
    isDefaultApp: true;
    /**
     * The result of the microfrontends config upload during deployment creation / build. Only set for default app deployments. The config upload is attempted during deployment create, and then again during the build. If the config is not in the root directory, or the deployment is prebuilt, the config cannot be uploaded during deployment create. The upload during deployment build finds the config even if it's not in the root directory, as it has access to all files. Uploading the config during create is ideal, as then all child deployments are guaranteed to have access to the default app deployment config even if the default app has not yet started building. If the config is not uploaded, the child app will show as building until the config has been uploaded during the default app build. - `success` - The config was uploaded successfully, either when the deployment was created or during the build. - `waiting_on_build` - The config could not be uploaded during deployment create, will be attempted again during the build. - `no_config` - No config was found. Only set once the build has not found the config in any of the deployment's files. - `undefined` - Legacy deployments, or there was an error uploading the config during deployment create.
     */
    mfeConfigUploadState?: GetDeploymentMicrofrontendsMfeConfigUploadState | undefined;
    /**
     * The project name of the default app of this deployment's microfrontends group.
     */
    defaultAppProjectName: string;
    /**
     * A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI.
     */
    defaultRoute?: string | undefined;
    /**
     * The group of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together.
     */
    groupIds: Array<string>;
};
export type GetDeploymentMicrofrontends1 = {
    isDefaultApp?: false | undefined;
    /**
     * The project name of the default app of this deployment's microfrontends group.
     */
    defaultAppProjectName: string;
    /**
     * A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI.
     */
    defaultRoute?: string | undefined;
    /**
     * The group of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together.
     */
    groupIds: Array<string>;
};
export type GetDeploymentResponseBodyMicrofrontends = GetDeploymentMicrofrontends2 | GetDeploymentMicrofrontends1;
/**
 * The external platform that created the deployment (e.g. its display name).
 */
export type GetDeploymentResponseBodyDeploymentsResponseSource = {
    /**
     * Display name of the platform.
     */
    name: string;
};
/**
 * Whether the value is an opaque identifier or a URL.
 */
export declare const GetDeploymentResponseBodyDeploymentsResponse200ApplicationJSONType: {
    readonly Id: "id";
    readonly Url: "url";
};
/**
 * Whether the value is an opaque identifier or a URL.
 */
export type GetDeploymentResponseBodyDeploymentsResponse200ApplicationJSONType = ClosedEnum<typeof GetDeploymentResponseBodyDeploymentsResponse200ApplicationJSONType>;
/**
 * Reference back to the entity on the platform that initiated the deployment.
 */
export type GetDeploymentResponseBodyOrigin = {
    /**
     * Whether the value is an opaque identifier or a URL.
     */
    type: GetDeploymentResponseBodyDeploymentsResponse200ApplicationJSONType;
    /**
     * The identifier or URL pointing to the originating entity.
     */
    value: string;
};
/**
 * The user on the external platform who triggered the deployment.
 */
export type GetDeploymentResponseBodyDeploymentsCreator = {
    /**
     * Display name of the platform user.
     */
    name: string;
    /**
     * URL of the platform user's avatar image.
     */
    avatar?: string | undefined;
};
/**
 * Metadata about the source platform that triggered the deployment. Allows us to map a deployment back to a platform (e.g. the chat that created it)
 */
export type GetDeploymentResponseBodyPlatform = {
    /**
     * The external platform that created the deployment (e.g. its display name).
     */
    source: GetDeploymentResponseBodyDeploymentsResponseSource;
    /**
     * Reference back to the entity on the platform that initiated the deployment.
     */
    origin: GetDeploymentResponseBodyOrigin;
    /**
     * The user on the external platform who triggered the deployment.
     */
    creator: GetDeploymentResponseBodyDeploymentsCreator;
    /**
     * Arbitrary key-value metadata provided by the platform.
     */
    meta?: {
        [k: string]: string;
    } | undefined;
};
export declare const GetDeploymentResponseBodyFunctionType: {
    readonly Fluid: "fluid";
    readonly Standard: "standard";
};
export type GetDeploymentResponseBodyFunctionType = ClosedEnum<typeof GetDeploymentResponseBodyFunctionType>;
export declare const GetDeploymentResponseBodyFunctionMemoryType: {
    readonly Performance: "performance";
    readonly PerformanceXl: "performance_xl";
    readonly Standard: "standard";
    readonly StandardLegacy: "standard_legacy";
};
export type GetDeploymentResponseBodyFunctionMemoryType = ClosedEnum<typeof GetDeploymentResponseBodyFunctionMemoryType>;
/**
 * Build resource configuration snapshot for this deployment.
 */
export declare const GetDeploymentResponseBodyConfiguration: {
    readonly SkipNamespaceQueue: "SKIP_NAMESPACE_QUEUE";
    readonly WaitForNamespaceQueue: "WAIT_FOR_NAMESPACE_QUEUE";
};
/**
 * Build resource configuration snapshot for this deployment.
 */
export type GetDeploymentResponseBodyConfiguration = ClosedEnum<typeof GetDeploymentResponseBodyConfiguration>;
/**
 * Build resource configuration snapshot for this deployment.
 */
export type GetDeploymentResponseBodyBuildQueue = {
    /**
     * Build resource configuration snapshot for this deployment.
     */
    configuration?: GetDeploymentResponseBodyConfiguration | undefined;
};
/**
 * When elastic concurrency is used for this deployment, a value is set. The value tells the reason where the setting was coming from. - TEAM_SETTING: Inherited from team settings - PROJECT_SETTING: Inherited from project settings - SKIP_QUEUE: Manually triggered by user to skip the queues
 */
export declare const GetDeploymentResponseBodyElasticConcurrency: {
    readonly ProjectSetting: "PROJECT_SETTING";
    readonly SkipQueue: "SKIP_QUEUE";
    readonly TeamSetting: "TEAM_SETTING";
};
/**
 * When elastic concurrency is used for this deployment, a value is set. The value tells the reason where the setting was coming from. - TEAM_SETTING: Inherited from team settings - PROJECT_SETTING: Inherited from project settings - SKIP_QUEUE: Manually triggered by user to skip the queues
 */
export type GetDeploymentResponseBodyElasticConcurrency = ClosedEnum<typeof GetDeploymentResponseBodyElasticConcurrency>;
/**
 * Machine type that was used for the build.
 */
export declare const GetDeploymentResponseBodyDeploymentsPurchaseType: {
    readonly Basic: "basic";
    readonly Enhanced: "enhanced";
    readonly Standard: "standard";
    readonly Turbo: "turbo";
};
/**
 * Machine type that was used for the build.
 */
export type GetDeploymentResponseBodyDeploymentsPurchaseType = ClosedEnum<typeof GetDeploymentResponseBodyDeploymentsPurchaseType>;
export type GetDeploymentResponseBodyDeploymentsBuildMachine = {
    /**
     * Machine type that was used for the build.
     */
    purchaseType?: GetDeploymentResponseBodyDeploymentsPurchaseType | null | undefined;
};
/**
 * Build resource configuration snapshot for this deployment.
 */
export type GetDeploymentResponseBodyDeploymentsResourceConfig = {
    /**
     * Build resource configuration snapshot for this deployment.
     */
    buildQueue?: GetDeploymentResponseBodyBuildQueue | undefined;
    /**
     * When elastic concurrency is used for this deployment, a value is set. The value tells the reason where the setting was coming from. - TEAM_SETTING: Inherited from team settings - PROJECT_SETTING: Inherited from project settings - SKIP_QUEUE: Manually triggered by user to skip the queues
     */
    elasticConcurrency?: GetDeploymentResponseBodyElasticConcurrency | undefined;
    buildMachine?: GetDeploymentResponseBodyDeploymentsBuildMachine | undefined;
};
/**
 * Since February 2025 the configuration must include snapshot data at the time of deployment creation to capture properties for the /deployments/:id/config endpoint utilized for displaying Deployment Configuration on the frontend This is optional because older deployments may not have this data captured
 */
export type GetDeploymentResponseBodyConfig = {
    version?: number | undefined;
    functionType: GetDeploymentResponseBodyFunctionType;
    functionMemoryType: GetDeploymentResponseBodyFunctionMemoryType;
    functionTimeout: number | null;
    secureComputePrimaryRegion: string | null;
    secureComputeFallbackRegion: string | null;
    isUsingActiveCPU?: boolean | undefined;
    /**
     * Build resource configuration snapshot for this deployment.
     */
    resourceConfig?: GetDeploymentResponseBodyDeploymentsResourceConfig | undefined;
};
export declare const GetDeploymentResponseBodyDeploymentsResponseState: {
    readonly Failed: "failed";
    readonly Pending: "pending";
    readonly Succeeded: "succeeded";
};
export type GetDeploymentResponseBodyDeploymentsResponseState = ClosedEnum<typeof GetDeploymentResponseBodyDeploymentsResponseState>;
/**
 * Condensed check data. Retrieve individual check and check run data using api-checks v2 routes.
 */
export type GetDeploymentResponseBodyDeploymentAlias = {
    state: GetDeploymentResponseBodyDeploymentsResponseState;
    startedAt: number;
    completedAt?: number | undefined;
};
export type ResponseBodyChecks = {
    /**
     * Condensed check data. Retrieve individual check and check run data using api-checks v2 routes.
     */
    deploymentAlias: GetDeploymentResponseBodyDeploymentAlias;
};
/**
 * The NSNB decision code for the seat block. TODO: We should consolidate block types.
 */
export declare const GetDeploymentResponseBodyBlockCode: {
    readonly CommitAuthorRequired: "COMMIT_AUTHOR_REQUIRED";
    readonly TeamAccessRequired: "TEAM_ACCESS_REQUIRED";
};
/**
 * The NSNB decision code for the seat block. TODO: We should consolidate block types.
 */
export type GetDeploymentResponseBodyBlockCode = ClosedEnum<typeof GetDeploymentResponseBodyBlockCode>;
export type GetDeploymentResponseBodyGitUserId = string | number;
/**
 * The git provider type associated with gitUserId.
 */
export declare const GetDeploymentResponseBodyGitProvider: {
    readonly Bitbucket: "bitbucket";
    readonly Github: "github";
    readonly Gitlab: "gitlab";
};
/**
 * The git provider type associated with gitUserId.
 */
export type GetDeploymentResponseBodyGitProvider = ClosedEnum<typeof GetDeploymentResponseBodyGitProvider>;
/**
 * NSNB Blocked metadata
 */
export type GetDeploymentResponseBodySeatBlock = {
    /**
     * The NSNB decision code for the seat block. TODO: We should consolidate block types.
     */
    blockCode: GetDeploymentResponseBodyBlockCode;
    /**
     * The blocked vercel user ID.
     */
    userId?: string | undefined;
    /**
     * Determines if the user was verified during the block. In the git integration case, the commit sender was the author.
     */
    isVerified?: boolean | undefined;
    gitUserId?: string | number | undefined;
    /**
     * The git provider type associated with gitUserId.
     */
    gitProvider?: GetDeploymentResponseBodyGitProvider | undefined;
};
/**
 * Commit metadata from the git commit author
 */
export type GetDeploymentResponseBodyCommitMeta = {
    /**
     * Email from git commit author
     */
    email?: string | undefined;
    /**
     * Name from git commit author
     */
    name?: string | undefined;
    /**
     * Whether the commit was signed/verified (GitHub only, others return undefined)
     */
    isVerified?: boolean | undefined;
};
export type GetDeploymentResponseBodyId = string | number;
/**
 * Git provider user associated with the commit author email (only set if resolved)
 */
export type GetDeploymentResponseBodyGitUser = {
    id: string | number;
    /**
     * Git provider username/login
     */
    login: string;
    /**
     * User type
     */
    type?: string | undefined;
    /**
     * The git provider (github, gitlab, bitbucket)
     */
    provider?: string | undefined;
};
/**
 * Vercel user linked to the git provider account (only set if resolved)
 */
export type GetDeploymentResponseBodyVercelUser = {
    /**
     * Vercel user ID
     */
    id: string;
    /**
     * Vercel username
     */
    username: string;
    /**
     * Team roles at time of deployment
     */
    teamRoles?: Array<string> | undefined;
};
/**
 * Attribution metadata for the deployment, linking commit author to git and Vercel users. Only populated when the `enable-deployment-attribution` flag is enabled.
 */
export type GetDeploymentResponseBodyAttribution = {
    /**
     * Commit metadata from the git commit author
     */
    commitMeta?: GetDeploymentResponseBodyCommitMeta | undefined;
    /**
     * Git provider user associated with the commit author email (only set if resolved)
     */
    gitUser?: GetDeploymentResponseBodyGitUser | undefined;
    /**
     * Vercel user linked to the git provider account (only set if resolved)
     */
    vercelUser?: GetDeploymentResponseBodyVercelUser | undefined;
};
/**
 * Returns the deployment object for the authenticated owner, including private fields such as environment variables, build log URLs, and internal metadata.
 */
export type GetDeploymentResponseBody2 = {
    aliasAssignedAt?: GetDeploymentResponseBodyAliasAssignedAt | null | undefined;
    alwaysRefuseToBuild?: boolean | undefined;
    build: GetDeploymentResponseBodyBuild;
    buildArtifactUrls?: Array<string> | undefined;
    builds?: Array<GetDeploymentResponseBodyBuilds> | undefined;
    env: Array<string>;
    resourceConfig?: GetDeploymentResponseBodyResourceConfig | undefined;
    inspectorUrl: string | null;
    isInConcurrentBuildsQueue: boolean;
    isInSystemBuildsQueue: boolean;
    projectSettings: ResponseBodyProjectSettings;
    integrations?: GetDeploymentResponseBodyIntegrations | undefined;
    images?: GetDeploymentResponseBodyImages | undefined;
    /**
     * A list of all the aliases (default aliases, staging aliases and production aliases) that were assigned upon deployment creation
     */
    alias?: Array<string> | undefined;
    /**
     * A boolean that will be true when the aliases from the alias property were assigned successfully
     */
    aliasAssigned: boolean;
    bootedAt: number;
    buildingAt: number;
    /**
     * Since April 2025 it necessary for On-Demand Concurrency Minutes calculation
     */
    buildContainerFinishedAt?: number | undefined;
    buildSkipped: boolean;
    /**
     * Information about the deployment creator
     */
    creator: GetDeploymentResponseBodyCreator;
    initReadyAt?: number | undefined;
    isFirstBranchDeployment?: boolean | undefined;
    lambdas?: Array<GetDeploymentResponseBodyLambdas> | undefined;
    /**
     * A boolean representing if the deployment is public or not. By default this is `false`
     */
    public: boolean;
    ready?: number | undefined;
    status: GetDeploymentResponseBodyStatus;
    /**
     * The team that owns the deployment if any
     */
    team?: GetDeploymentResponseBodyTeam | undefined;
    /**
     * An array of domains that were provided by the user when creating the Deployment.
     */
    userAliases?: Array<string> | undefined;
    /**
     * Whether or not preview comments are enabled for the deployment
     */
    previewCommentsEnabled?: boolean | undefined;
    ttyBuildLogs?: boolean | undefined;
    customEnvironment?: ResponseBodyCustomEnvironment | undefined;
    oomReport?: GetDeploymentResponseBodyOomReport | undefined;
    readyStateReason?: string | undefined;
    /**
     * A string holding the unique ID of the deployment
     */
    id: string;
    /**
     * If defined, either `staging` if a staging alias in the format `<project>.<team>.now.sh` was assigned upon creation, or `production` if the aliases from `alias` were assigned. `null` value indicates the "preview" deployment.
     */
    target?: ResponseBodyTarget | null | undefined;
    /**
     * The state of the deployment depending on the process of deploying, or if it is ready or in an error state
     */
    readyState: ResponseBodyReadyState;
    /**
     * An object that will contain a `code` and a `message` when the aliasing fails, otherwise the value will be `null`
     */
    aliasError?: ResponseBodyAliasError | null | undefined;
    aliasWarning?: ResponseBodyAliasWarning | null | undefined;
    errorCode?: string | undefined;
    errorMessage?: string | null | undefined;
    /**
     * A number containing the date when the deployment was created in milliseconds
     */
    createdAt: number;
    /**
     * The name of the project associated with the deployment at the time that the deployment was created
     */
    name: string;
    type: GetDeploymentResponseBodyType;
    aliasFinal?: string | null | undefined;
    /**
     * applies to custom domains only, defaults to `true`
     */
    autoAssignCustomDomains?: boolean | undefined;
    automaticAliases?: Array<string> | undefined;
    buildErrorAt?: number | undefined;
    checksState?: GetDeploymentResponseBodyChecksState | undefined;
    checksConclusion?: GetDeploymentResponseBodyChecksConclusion | undefined;
    /**
     * A number containing the date when the deployment was deleted at milliseconds
     */
    deletedAt?: number | null | undefined;
    /**
     * Computed field that is only available for deployments with a microfrontend configuration.
     */
    defaultRoute?: string | undefined;
    canceledAt?: number | undefined;
    errorLink?: string | undefined;
    errorStep?: string | undefined;
    /**
     * Since November 2023 this field defines a set of regions that we will deploy the lambda to passively Lambdas will be deployed to these regions but only invoked if all of the primary `regions` are marked as out of service
     */
    passiveRegions?: Array<string> | undefined;
    gitSource?: GetDeploymentResponseBodyGitSource | undefined;
    /**
     * Present when deployment was created with manual provisioning enabled, either explicitly or via the experimental BYOC git flow. The deployment stays in INITIALIZING until /continue is called.
     */
    manualProvisioning?: GetDeploymentResponseBodyManualProvisioning | undefined;
    meta: {
        [k: string]: string;
    };
    originCacheRegion?: string | undefined;
    /**
     * If set it overrides the `projectSettings.nodeVersion` for this deployment.
     */
    nodeVersion?: GetDeploymentResponseBodyNodeVersion | undefined;
    /**
     * The public project information associated with the deployment.
     */
    project?: ResponseBodyProject | undefined;
    prebuilt?: boolean | undefined;
    /**
     * Substate of deployment when readyState is 'READY' Tracks whether or not deployment has seen production traffic: - STAGED: never seen production traffic - ROLLING: in the process of having production traffic gradually transitioned. - PROMOTED: has seen production traffic
     */
    readySubstate?: GetDeploymentResponseBodyReadySubstate | undefined;
    /**
     * The regions the deployment exists in
     */
    regions: Array<string>;
    /**
     * flag to indicate if the deployment was deleted by retention policy
     */
    softDeletedByRetention?: boolean | undefined;
    /**
     * Where was the deployment created from. Best-effort guess for metrics only — not authoritative; do not gate behavior on it.
     */
    source?: GetDeploymentResponseBodySource | undefined;
    /**
     * A number containing the date when the deployment was undeleted at milliseconds
     */
    undeletedAt?: number | undefined;
    /**
     * A string with the unique URL of the deployment
     */
    url: string;
    /**
     * Since January 2025 User-configured deployment ID for skew protection with pre-built deployments. This is set when users configure a custom deploymentId in their next.config.js file. This allows Next.js to use skew protection even when deployments are pre-built outside of Vercel's build system.
     */
    userConfiguredDeploymentId?: string | undefined;
    /**
     * The platform version that was used to create the deployment.
     */
    version: number;
    oidcTokenClaims?: GetDeploymentResponseBodyOidcTokenClaims | undefined;
    projectId: string;
    plan: GetDeploymentResponseBodyPlan;
    connectBuildsEnabled?: boolean | undefined;
    connectConfigurationId?: string | undefined;
    createdIn: string;
    crons?: Array<GetDeploymentResponseBodyCrons> | undefined;
    atproto?: GetDeploymentResponseBodyAtproto | undefined;
    functions?: {
        [k: string]: GetDeploymentResponseBodyFunctions;
    } | null | undefined;
    /**
     * Whether this deployment completed through the instant static fast path.
     */
    isInstantStatic?: boolean | undefined;
    monorepoManager?: string | null | undefined;
    ownerId: string;
    /**
     * Since November 2023 this field defines a Secure Compute network that will only be used to deploy passive lambdas to (as in passiveRegions)
     */
    passiveConnectConfigurationId?: string | undefined;
    routes: Array<GetDeploymentResponseBodyRoutes> | null;
    /**
     * Services detected during build from vercel.json experimentalServices or auto-detected from project structure. Used to inject service URLs as environment variables at runtime.
     */
    services?: Array<GetDeploymentServices1 | GetDeploymentServices2> | undefined;
    gitRepo?: GetDeploymentGitRepo1 | GetDeploymentGitRepo2 | GetDeploymentGitRepo3 | GetDeploymentGitRepo4 | GetDeploymentGitRepo5 | null | undefined;
    flags?: GetDeploymentFlags1 | Array<GetDeploymentFlags2> | undefined;
    microfrontends?: GetDeploymentMicrofrontends2 | GetDeploymentMicrofrontends1 | undefined;
    /**
     * Metadata about the source platform that triggered the deployment. Allows us to map a deployment back to a platform (e.g. the chat that created it)
     */
    platform?: GetDeploymentResponseBodyPlatform | undefined;
    /**
     * Since February 2025 the configuration must include snapshot data at the time of deployment creation to capture properties for the /deployments/:id/config endpoint utilized for displaying Deployment Configuration on the frontend This is optional because older deployments may not have this data captured
     */
    config?: GetDeploymentResponseBodyConfig | undefined;
    checks?: ResponseBodyChecks | undefined;
    /**
     * NSNB Blocked metadata
     */
    seatBlock?: GetDeploymentResponseBodySeatBlock | undefined;
    /**
     * Attribution metadata for the deployment, linking commit author to git and Vercel users. Only populated when the `enable-deployment-attribution` flag is enabled.
     */
    attribution?: GetDeploymentResponseBodyAttribution | undefined;
};
/**
 * If defined, either `staging` if a staging alias in the format `<project>.<team>.now.sh` was assigned upon creation, or `production` if the aliases from `alias` were assigned. `null` value indicates the "preview" deployment.
 */
export declare const GetDeploymentResponseBodyDeploymentsTarget: {
    readonly Production: "production";
    readonly Staging: "staging";
};
/**
 * If defined, either `staging` if a staging alias in the format `<project>.<team>.now.sh` was assigned upon creation, or `production` if the aliases from `alias` were assigned. `null` value indicates the "preview" deployment.
 */
export type GetDeploymentResponseBodyDeploymentsTarget = ClosedEnum<typeof GetDeploymentResponseBodyDeploymentsTarget>;
/**
 * The state of the deployment depending on the process of deploying, or if it is ready or in an error state
 */
export declare const GetDeploymentResponseBodyDeploymentsReadyState: {
    readonly Blocked: "BLOCKED";
    readonly Building: "BUILDING";
    readonly Canceled: "CANCELED";
    readonly Error: "ERROR";
    readonly Initializing: "INITIALIZING";
    readonly Queued: "QUEUED";
    readonly Ready: "READY";
};
/**
 * The state of the deployment depending on the process of deploying, or if it is ready or in an error state
 */
export type GetDeploymentResponseBodyDeploymentsReadyState = ClosedEnum<typeof GetDeploymentResponseBodyDeploymentsReadyState>;
/**
 * An object that will contain a `code` and a `message` when the aliasing fails, otherwise the value will be `null`
 */
export type GetDeploymentResponseBodyDeploymentsAliasError = {
    code: string;
    message: string;
};
export type GetDeploymentResponseBodyDeploymentsAliasWarning = {
    code: string;
    message: string;
    link?: string | undefined;
    action?: string | undefined;
};
/**
 * Returns the reduced deployment view for anonymous (`vcn_`) callers. Pool-team details are withheld.
 */
export type GetDeploymentResponseBody1 = {
    alias?: Array<string> | undefined;
    aliasAssigned: boolean;
    /**
     * A string holding the unique ID of the deployment
     */
    id: string;
    /**
     * If defined, either `staging` if a staging alias in the format `<project>.<team>.now.sh` was assigned upon creation, or `production` if the aliases from `alias` were assigned. `null` value indicates the "preview" deployment.
     */
    target?: GetDeploymentResponseBodyDeploymentsTarget | null | undefined;
    /**
     * The state of the deployment depending on the process of deploying, or if it is ready or in an error state
     */
    readyState: GetDeploymentResponseBodyDeploymentsReadyState;
    /**
     * An object that will contain a `code` and a `message` when the aliasing fails, otherwise the value will be `null`
     */
    aliasError?: GetDeploymentResponseBodyDeploymentsAliasError | null | undefined;
    aliasWarning?: GetDeploymentResponseBodyDeploymentsAliasWarning | null | undefined;
    errorCode?: string | undefined;
    errorMessage?: string | null | undefined;
};
/** @internal */
export declare const GetDeploymentServicesMissing$inboundSchema: z.ZodType<GetDeploymentServicesMissing, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesMissingFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesMissing, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesRedirects$inboundSchema: z.ZodType<GetDeploymentServicesRedirects, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesRedirectsFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesRedirects, SDKValidationError>;
/** @internal */
export declare const GetDeploymentDestinationDeploymentsType$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentDestinationDeploymentsType>;
/** @internal */
export declare const GetDeploymentDestinationDeployments2$inboundSchema: z.ZodType<GetDeploymentDestinationDeployments2, z.ZodTypeDef, unknown>;
export declare function getDeploymentDestinationDeployments2FromJSON(jsonString: string): SafeParseResult<GetDeploymentDestinationDeployments2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesDestination$inboundSchema: z.ZodType<GetDeploymentServicesDestination, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesDestinationFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesDestination, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesDeploymentsResponse200Type$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentServicesDeploymentsResponse200Type>;
/** @internal */
export declare const GetDeploymentServicesOp$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentServicesOp>;
/** @internal */
export declare const GetDeploymentServicesTransforms$inboundSchema: z.ZodType<GetDeploymentServicesTransforms, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesTransformsFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesTransforms, SDKValidationError>;
/** @internal */
export declare const GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Type$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Type>;
/** @internal */
export declare const GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHasEq$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHasEq, z.ZodTypeDef, unknown>;
export declare function getDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHasEqFromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHasEq, SDKValidationError>;
/** @internal */
export declare const GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHas2$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHas2, z.ZodTypeDef, unknown>;
export declare function getDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHas2FromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesHas2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBodyValue$inboundSchema: z.ZodType<GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBodyValue, z.ZodTypeDef, unknown>;
export declare function getDeploymentHasDeploymentsResponse200ApplicationJSONResponseBodyValueFromJSON(jsonString: string): SafeParseResult<GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBodyValue, SDKValidationError>;
/** @internal */
export declare const GetDeploymentHasDeploymentsResponse2$inboundSchema: z.ZodType<GetDeploymentHasDeploymentsResponse2, z.ZodTypeDef, unknown>;
export declare function getDeploymentHasDeploymentsResponse2FromJSON(jsonString: string): SafeParseResult<GetDeploymentHasDeploymentsResponse2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesEq$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesEq, z.ZodTypeDef, unknown>;
export declare function getDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesEqFromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesEq, SDKValidationError>;
/** @internal */
export declare const GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Rewrites2$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Rewrites2, z.ZodTypeDef, unknown>;
export declare function getDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Rewrites2FromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Rewrites2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentHasDeploymentsResponse200ApplicationJSONValue$inboundSchema: z.ZodType<GetDeploymentHasDeploymentsResponse200ApplicationJSONValue, z.ZodTypeDef, unknown>;
export declare function getDeploymentHasDeploymentsResponse200ApplicationJSONValueFromJSON(jsonString: string): SafeParseResult<GetDeploymentHasDeploymentsResponse200ApplicationJSONValue, SDKValidationError>;
/** @internal */
export declare const GetDeploymentHasDeploymentsResponse1$inboundSchema: z.ZodType<GetDeploymentHasDeploymentsResponse1, z.ZodTypeDef, unknown>;
export declare function getDeploymentHasDeploymentsResponse1FromJSON(jsonString: string): SafeParseResult<GetDeploymentHasDeploymentsResponse1, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesDeploymentsHas$inboundSchema: z.ZodType<GetDeploymentServicesDeploymentsHas, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesDeploymentsHasFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesDeploymentsHas, SDKValidationError>;
/** @internal */
export declare const GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Type$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Type>;
/** @internal */
export declare const GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2Eq$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2Eq, z.ZodTypeDef, unknown>;
export declare function getDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2EqFromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2Eq, SDKValidationError>;
/** @internal */
export declare const GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing22$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing22, z.ZodTypeDef, unknown>;
export declare function getDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing22FromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing22, SDKValidationError>;
/** @internal */
export declare const GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Value$inboundSchema: z.ZodType<GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Value, z.ZodTypeDef, unknown>;
export declare function getDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2ValueFromJSON(jsonString: string): SafeParseResult<GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Value, SDKValidationError>;
/** @internal */
export declare const GetDeploymentMissingDeploymentsResponse2$inboundSchema: z.ZodType<GetDeploymentMissingDeploymentsResponse2, z.ZodTypeDef, unknown>;
export declare function getDeploymentMissingDeploymentsResponse2FromJSON(jsonString: string): SafeParseResult<GetDeploymentMissingDeploymentsResponse2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissingEq$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissingEq, z.ZodTypeDef, unknown>;
export declare function getDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissingEqFromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissingEq, SDKValidationError>;
/** @internal */
export declare const GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2, z.ZodTypeDef, unknown>;
export declare function getDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2FromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RewritesMissing2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBodyValue$inboundSchema: z.ZodType<GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBodyValue, z.ZodTypeDef, unknown>;
export declare function getDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBodyValueFromJSON(jsonString: string): SafeParseResult<GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBodyValue, SDKValidationError>;
/** @internal */
export declare const GetDeploymentMissingDeploymentsResponse1$inboundSchema: z.ZodType<GetDeploymentMissingDeploymentsResponse1, z.ZodTypeDef, unknown>;
export declare function getDeploymentMissingDeploymentsResponse1FromJSON(jsonString: string): SafeParseResult<GetDeploymentMissingDeploymentsResponse1, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesDeploymentsMissing$inboundSchema: z.ZodType<GetDeploymentServicesDeploymentsMissing, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesDeploymentsMissingFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesDeploymentsMissing, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesRewrites$inboundSchema: z.ZodType<GetDeploymentServicesRewrites, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesRewritesFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesRewrites, SDKValidationError>;
/** @internal */
export declare const GetDeploymentRoutesDeploymentsHandle$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentRoutesDeploymentsHandle>;
/** @internal */
export declare const GetDeploymentRoutesDeployments2$inboundSchema: z.ZodType<GetDeploymentRoutesDeployments2, z.ZodTypeDef, unknown>;
export declare function getDeploymentRoutesDeployments2FromJSON(jsonString: string): SafeParseResult<GetDeploymentRoutesDeployments2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2Type$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2Type>;
/** @internal */
export declare const GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Eq$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Eq, z.ZodTypeDef, unknown>;
export declare function getDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1EqFromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Eq, SDKValidationError>;
/** @internal */
export declare const GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes12$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes12, z.ZodTypeDef, unknown>;
export declare function getDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes12FromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes12, SDKValidationError>;
/** @internal */
export declare const GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesValue$inboundSchema: z.ZodType<GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesValue, z.ZodTypeDef, unknown>;
export declare function getDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesValueFromJSON(jsonString: string): SafeParseResult<GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesValue, SDKValidationError>;
/** @internal */
export declare const GetDeploymentHasDeploymentsResponse200ApplicationJson2$inboundSchema: z.ZodType<GetDeploymentHasDeploymentsResponse200ApplicationJson2, z.ZodTypeDef, unknown>;
export declare function getDeploymentHasDeploymentsResponse200ApplicationJSON2FromJSON(jsonString: string): SafeParseResult<GetDeploymentHasDeploymentsResponse200ApplicationJson2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesEq$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesEq, z.ZodTypeDef, unknown>;
export declare function getDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesEqFromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesEq, SDKValidationError>;
/** @internal */
export declare const GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes2$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes2, z.ZodTypeDef, unknown>;
export declare function getDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes2FromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2Value$inboundSchema: z.ZodType<GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2Value, z.ZodTypeDef, unknown>;
export declare function getDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2ValueFromJSON(jsonString: string): SafeParseResult<GetDeploymentHasDeploymentsResponse200ApplicationJSONResponseBody2Services2Value, SDKValidationError>;
/** @internal */
export declare const GetDeploymentHasDeploymentsResponse200ApplicationJson1$inboundSchema: z.ZodType<GetDeploymentHasDeploymentsResponse200ApplicationJson1, z.ZodTypeDef, unknown>;
export declare function getDeploymentHasDeploymentsResponse200ApplicationJSON1FromJSON(jsonString: string): SafeParseResult<GetDeploymentHasDeploymentsResponse200ApplicationJson1, SDKValidationError>;
/** @internal */
export declare const GetDeploymentRoutesDeploymentsHas$inboundSchema: z.ZodType<GetDeploymentRoutesDeploymentsHas, z.ZodTypeDef, unknown>;
export declare function getDeploymentRoutesDeploymentsHasFromJSON(jsonString: string): SafeParseResult<GetDeploymentRoutesDeploymentsHas, SDKValidationError>;
/** @internal */
export declare const GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Services2Type$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Services2Type>;
/** @internal */
export declare const GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Missing2Eq$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Missing2Eq, z.ZodTypeDef, unknown>;
export declare function getDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Missing2EqFromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Missing2Eq, SDKValidationError>;
/** @internal */
export declare const GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Missing22$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Missing22, z.ZodTypeDef, unknown>;
export declare function getDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Missing22FromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Missing22, SDKValidationError>;
/** @internal */
export declare const GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Services2Value$inboundSchema: z.ZodType<GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Services2Value, z.ZodTypeDef, unknown>;
export declare function getDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Services2ValueFromJSON(jsonString: string): SafeParseResult<GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Services2Value, SDKValidationError>;
/** @internal */
export declare const GetDeploymentMissingDeploymentsResponse200ApplicationJson2$inboundSchema: z.ZodType<GetDeploymentMissingDeploymentsResponse200ApplicationJson2, z.ZodTypeDef, unknown>;
export declare function getDeploymentMissingDeploymentsResponse200ApplicationJSON2FromJSON(jsonString: string): SafeParseResult<GetDeploymentMissingDeploymentsResponse200ApplicationJson2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1MissingEq$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1MissingEq, z.ZodTypeDef, unknown>;
export declare function getDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1MissingEqFromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1MissingEq, SDKValidationError>;
/** @internal */
export declare const GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Missing2$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Missing2, z.ZodTypeDef, unknown>;
export declare function getDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Missing2FromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponse200ApplicationJSONResponseBody2Services2Routes1Missing2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesValue$inboundSchema: z.ZodType<GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesValue, z.ZodTypeDef, unknown>;
export declare function getDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesValueFromJSON(jsonString: string): SafeParseResult<GetDeploymentMissingDeploymentsResponse200ApplicationJSONResponseBody2Services2RoutesValue, SDKValidationError>;
/** @internal */
export declare const GetDeploymentMissingDeploymentsResponse200ApplicationJson1$inboundSchema: z.ZodType<GetDeploymentMissingDeploymentsResponse200ApplicationJson1, z.ZodTypeDef, unknown>;
export declare function getDeploymentMissingDeploymentsResponse200ApplicationJSON1FromJSON(jsonString: string): SafeParseResult<GetDeploymentMissingDeploymentsResponse200ApplicationJson1, SDKValidationError>;
/** @internal */
export declare const GetDeploymentRoutesDeploymentsMissing$inboundSchema: z.ZodType<GetDeploymentRoutesDeploymentsMissing, z.ZodTypeDef, unknown>;
export declare function getDeploymentRoutesDeploymentsMissingFromJSON(jsonString: string): SafeParseResult<GetDeploymentRoutesDeploymentsMissing, SDKValidationError>;
/** @internal */
export declare const GetDeploymentRoutesDeploymentsAction$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentRoutesDeploymentsAction>;
/** @internal */
export declare const GetDeploymentRoutesDeploymentsMitigate$inboundSchema: z.ZodType<GetDeploymentRoutesDeploymentsMitigate, z.ZodTypeDef, unknown>;
export declare function getDeploymentRoutesDeploymentsMitigateFromJSON(jsonString: string): SafeParseResult<GetDeploymentRoutesDeploymentsMitigate, SDKValidationError>;
/** @internal */
export declare const GetDeploymentTransformsDeploymentsResponse200Op$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentTransformsDeploymentsResponse200Op>;
/** @internal */
export declare const GetDeploymentTransformsDeployments2$inboundSchema: z.ZodType<GetDeploymentTransformsDeployments2, z.ZodTypeDef, unknown>;
export declare function getDeploymentTransformsDeployments2FromJSON(jsonString: string): SafeParseResult<GetDeploymentTransformsDeployments2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentTransformsDeploymentsResponse200Type$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentTransformsDeploymentsResponse200Type>;
/** @internal */
export declare const GetDeploymentTransformsDeploymentsResponseOp$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentTransformsDeploymentsResponseOp>;
/** @internal */
export declare const GetDeploymentKeyDeploymentsEq$inboundSchema: z.ZodType<GetDeploymentKeyDeploymentsEq, z.ZodTypeDef, unknown>;
export declare function getDeploymentKeyDeploymentsEqFromJSON(jsonString: string): SafeParseResult<GetDeploymentKeyDeploymentsEq, SDKValidationError>;
/** @internal */
export declare const GetDeploymentKeyDeployments2$inboundSchema: z.ZodType<GetDeploymentKeyDeployments2, z.ZodTypeDef, unknown>;
export declare function getDeploymentKeyDeployments2FromJSON(jsonString: string): SafeParseResult<GetDeploymentKeyDeployments2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentTransformsDeploymentsKey$inboundSchema: z.ZodType<GetDeploymentTransformsDeploymentsKey, z.ZodTypeDef, unknown>;
export declare function getDeploymentTransformsDeploymentsKeyFromJSON(jsonString: string): SafeParseResult<GetDeploymentTransformsDeploymentsKey, SDKValidationError>;
/** @internal */
export declare const GetDeploymentTransformsDeploymentsTarget$inboundSchema: z.ZodType<GetDeploymentTransformsDeploymentsTarget, z.ZodTypeDef, unknown>;
export declare function getDeploymentTransformsDeploymentsTargetFromJSON(jsonString: string): SafeParseResult<GetDeploymentTransformsDeploymentsTarget, SDKValidationError>;
/** @internal */
export declare const GetDeploymentTransformsDeploymentsArgs$inboundSchema: z.ZodType<GetDeploymentTransformsDeploymentsArgs, z.ZodTypeDef, unknown>;
export declare function getDeploymentTransformsDeploymentsArgsFromJSON(jsonString: string): SafeParseResult<GetDeploymentTransformsDeploymentsArgs, SDKValidationError>;
/** @internal */
export declare const GetDeploymentTransformsDeployments1$inboundSchema: z.ZodType<GetDeploymentTransformsDeployments1, z.ZodTypeDef, unknown>;
export declare function getDeploymentTransformsDeployments1FromJSON(jsonString: string): SafeParseResult<GetDeploymentTransformsDeployments1, SDKValidationError>;
/** @internal */
export declare const GetDeploymentRoutesDeploymentsTransforms$inboundSchema: z.ZodType<GetDeploymentRoutesDeploymentsTransforms, z.ZodTypeDef, unknown>;
export declare function getDeploymentRoutesDeploymentsTransformsFromJSON(jsonString: string): SafeParseResult<GetDeploymentRoutesDeploymentsTransforms, SDKValidationError>;
/** @internal */
export declare const GetDeploymentRoutesDeploymentsLocale$inboundSchema: z.ZodType<GetDeploymentRoutesDeploymentsLocale, z.ZodTypeDef, unknown>;
export declare function getDeploymentRoutesDeploymentsLocaleFromJSON(jsonString: string): SafeParseResult<GetDeploymentRoutesDeploymentsLocale, SDKValidationError>;
/** @internal */
export declare const GetDeploymentDestinationDeploymentsResponseType$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentDestinationDeploymentsResponseType>;
/** @internal */
export declare const GetDeploymentDestinationDeploymentsResponse2$inboundSchema: z.ZodType<GetDeploymentDestinationDeploymentsResponse2, z.ZodTypeDef, unknown>;
export declare function getDeploymentDestinationDeploymentsResponse2FromJSON(jsonString: string): SafeParseResult<GetDeploymentDestinationDeploymentsResponse2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentRoutesDeploymentsDestination$inboundSchema: z.ZodType<GetDeploymentRoutesDeploymentsDestination, z.ZodTypeDef, unknown>;
export declare function getDeploymentRoutesDeploymentsDestinationFromJSON(jsonString: string): SafeParseResult<GetDeploymentRoutesDeploymentsDestination, SDKValidationError>;
/** @internal */
export declare const GetDeploymentRoutesDeployments1$inboundSchema: z.ZodType<GetDeploymentRoutesDeployments1, z.ZodTypeDef, unknown>;
export declare function getDeploymentRoutesDeployments1FromJSON(jsonString: string): SafeParseResult<GetDeploymentRoutesDeployments1, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesRoutes$inboundSchema: z.ZodType<GetDeploymentServicesRoutes, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesRoutesFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesRoutes, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServices2$inboundSchema: z.ZodType<GetDeploymentServices2, z.ZodTypeDef, unknown>;
export declare function getDeploymentServices2FromJSON(jsonString: string): SafeParseResult<GetDeploymentServices2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesType$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentServicesType>;
/** @internal */
export declare const GetDeploymentServicesTrigger$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentServicesTrigger>;
/** @internal */
export declare const GetDeploymentServicesIncludeFiles$inboundSchema: z.ZodType<GetDeploymentServicesIncludeFiles, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesIncludeFilesFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesIncludeFiles, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesExcludeFiles$inboundSchema: z.ZodType<GetDeploymentServicesExcludeFiles, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesExcludeFilesFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesExcludeFiles, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesDeploymentsArchitecture$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentServicesDeploymentsArchitecture>;
/** @internal */
export declare const GetDeploymentMaxDurationDeploymentsResponse2$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentMaxDurationDeploymentsResponse2>;
/** @internal */
export declare const GetDeploymentServicesDeploymentsMaxDuration$inboundSchema: z.ZodType<GetDeploymentServicesDeploymentsMaxDuration, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesDeploymentsMaxDurationFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesDeploymentsMaxDuration, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesDeploymentsMode$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentServicesDeploymentsMode>;
/** @internal */
export declare const GetDeploymentServicesDeploymentsAffinity$inboundSchema: z.ZodType<GetDeploymentServicesDeploymentsAffinity, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesDeploymentsAffinityFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesDeploymentsAffinity, SDKValidationError>;
/** @internal */
export declare const GetDeploymentExperimentalTriggersDeploymentsResponse3$inboundSchema: z.ZodType<GetDeploymentExperimentalTriggersDeploymentsResponse3, z.ZodTypeDef, unknown>;
export declare function getDeploymentExperimentalTriggersDeploymentsResponse3FromJSON(jsonString: string): SafeParseResult<GetDeploymentExperimentalTriggersDeploymentsResponse3, SDKValidationError>;
/** @internal */
export declare const GetDeploymentExperimentalTriggersDeploymentsResponse2$inboundSchema: z.ZodType<GetDeploymentExperimentalTriggersDeploymentsResponse2, z.ZodTypeDef, unknown>;
export declare function getDeploymentExperimentalTriggersDeploymentsResponse2FromJSON(jsonString: string): SafeParseResult<GetDeploymentExperimentalTriggersDeploymentsResponse2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentExperimentalTriggersDeploymentsResponse1$inboundSchema: z.ZodType<GetDeploymentExperimentalTriggersDeploymentsResponse1, z.ZodTypeDef, unknown>;
export declare function getDeploymentExperimentalTriggersDeploymentsResponse1FromJSON(jsonString: string): SafeParseResult<GetDeploymentExperimentalTriggersDeploymentsResponse1, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesDeploymentsExperimentalTriggers$inboundSchema: z.ZodType<GetDeploymentServicesDeploymentsExperimentalTriggers, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesDeploymentsExperimentalTriggersFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesDeploymentsExperimentalTriggers, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesDeploymentsFunctions$inboundSchema: z.ZodType<GetDeploymentServicesDeploymentsFunctions, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesDeploymentsFunctionsFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesDeploymentsFunctions, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesDeploymentsProjectSettings$inboundSchema: z.ZodType<GetDeploymentServicesDeploymentsProjectSettings, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesDeploymentsProjectSettingsFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesDeploymentsProjectSettings, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesMiddlewareRuntime$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentServicesMiddlewareRuntime>;
/** @internal */
export declare const GetDeploymentServicesMiddlewareMatcher$inboundSchema: z.ZodType<GetDeploymentServicesMiddlewareMatcher, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesMiddlewareMatcherFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesMiddlewareMatcher, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesConfig$inboundSchema: z.ZodType<GetDeploymentServicesConfig, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesConfigFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesConfig, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesBuilder$inboundSchema: z.ZodType<GetDeploymentServicesBuilder, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesBuilderFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesBuilder, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesRoutePrefixSource$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentServicesRoutePrefixSource>;
/** @internal */
export declare const GetDeploymentServicesSchedule$inboundSchema: z.ZodType<GetDeploymentServicesSchedule, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesScheduleFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesSchedule, SDKValidationError>;
/** @internal */
export declare const GetDeploymentTopics2$inboundSchema: z.ZodType<GetDeploymentTopics2, z.ZodTypeDef, unknown>;
export declare function getDeploymentTopics2FromJSON(jsonString: string): SafeParseResult<GetDeploymentTopics2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesTopics$inboundSchema: z.ZodType<GetDeploymentServicesTopics, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesTopicsFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesTopics, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServicesDeploymentsResponseType$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentServicesDeploymentsResponseType>;
/** @internal */
export declare const GetDeploymentServicesEnv$inboundSchema: z.ZodType<GetDeploymentServicesEnv, z.ZodTypeDef, unknown>;
export declare function getDeploymentServicesEnvFromJSON(jsonString: string): SafeParseResult<GetDeploymentServicesEnv, SDKValidationError>;
/** @internal */
export declare const GetDeploymentServices1$inboundSchema: z.ZodType<GetDeploymentServices1, z.ZodTypeDef, unknown>;
export declare function getDeploymentServices1FromJSON(jsonString: string): SafeParseResult<GetDeploymentServices1, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyServices$inboundSchema: z.ZodType<GetDeploymentResponseBodyServices, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyServicesFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyServices, SDKValidationError>;
/** @internal */
export declare const GetDeploymentGitRepoDeploymentsResponseOwnerType$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitRepoDeploymentsResponseOwnerType>;
/** @internal */
export declare const GetDeploymentGitRepo5$inboundSchema: z.ZodType<GetDeploymentGitRepo5, z.ZodTypeDef, unknown>;
export declare function getDeploymentGitRepo5FromJSON(jsonString: string): SafeParseResult<GetDeploymentGitRepo5, SDKValidationError>;
/** @internal */
export declare const GetDeploymentGitRepoDeploymentsOwnerType$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitRepoDeploymentsOwnerType>;
/** @internal */
export declare const GetDeploymentGitRepo4$inboundSchema: z.ZodType<GetDeploymentGitRepo4, z.ZodTypeDef, unknown>;
export declare function getDeploymentGitRepo4FromJSON(jsonString: string): SafeParseResult<GetDeploymentGitRepo4, SDKValidationError>;
/** @internal */
export declare const GetDeploymentGitRepoOwnerType$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitRepoOwnerType>;
/** @internal */
export declare const GetDeploymentGitRepo3$inboundSchema: z.ZodType<GetDeploymentGitRepo3, z.ZodTypeDef, unknown>;
export declare function getDeploymentGitRepo3FromJSON(jsonString: string): SafeParseResult<GetDeploymentGitRepo3, SDKValidationError>;
/** @internal */
export declare const GetDeploymentGitRepoDeploymentsResponse200ApplicationJSONOwnerType$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitRepoDeploymentsResponse200ApplicationJSONOwnerType>;
/** @internal */
export declare const GetDeploymentGitRepo2$inboundSchema: z.ZodType<GetDeploymentGitRepo2, z.ZodTypeDef, unknown>;
export declare function getDeploymentGitRepo2FromJSON(jsonString: string): SafeParseResult<GetDeploymentGitRepo2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentGitRepoDeploymentsResponse200OwnerType$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitRepoDeploymentsResponse200OwnerType>;
/** @internal */
export declare const GetDeploymentGitRepo1$inboundSchema: z.ZodType<GetDeploymentGitRepo1, z.ZodTypeDef, unknown>;
export declare function getDeploymentGitRepo1FromJSON(jsonString: string): SafeParseResult<GetDeploymentGitRepo1, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyGitRepo$inboundSchema: z.ZodType<GetDeploymentResponseBodyGitRepo, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyGitRepoFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyGitRepo, SDKValidationError>;
/** @internal */
export declare const GetDeploymentFlags2$inboundSchema: z.ZodType<GetDeploymentFlags2, z.ZodTypeDef, unknown>;
export declare function getDeploymentFlags2FromJSON(jsonString: string): SafeParseResult<GetDeploymentFlags2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentFlagsOptions$inboundSchema: z.ZodType<GetDeploymentFlagsOptions, z.ZodTypeDef, unknown>;
export declare function getDeploymentFlagsOptionsFromJSON(jsonString: string): SafeParseResult<GetDeploymentFlagsOptions, SDKValidationError>;
/** @internal */
export declare const GetDeploymentFlagsDefinitions$inboundSchema: z.ZodType<GetDeploymentFlagsDefinitions, z.ZodTypeDef, unknown>;
export declare function getDeploymentFlagsDefinitionsFromJSON(jsonString: string): SafeParseResult<GetDeploymentFlagsDefinitions, SDKValidationError>;
/** @internal */
export declare const GetDeploymentFlags1$inboundSchema: z.ZodType<GetDeploymentFlags1, z.ZodTypeDef, unknown>;
export declare function getDeploymentFlags1FromJSON(jsonString: string): SafeParseResult<GetDeploymentFlags1, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyFlags$inboundSchema: z.ZodType<GetDeploymentResponseBodyFlags, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyFlagsFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyFlags, SDKValidationError>;
/** @internal */
export declare const GetDeploymentMicrofrontendsMfeConfigUploadState$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentMicrofrontendsMfeConfigUploadState>;
/** @internal */
export declare const GetDeploymentMicrofrontends2$inboundSchema: z.ZodType<GetDeploymentMicrofrontends2, z.ZodTypeDef, unknown>;
export declare function getDeploymentMicrofrontends2FromJSON(jsonString: string): SafeParseResult<GetDeploymentMicrofrontends2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentMicrofrontends1$inboundSchema: z.ZodType<GetDeploymentMicrofrontends1, z.ZodTypeDef, unknown>;
export declare function getDeploymentMicrofrontends1FromJSON(jsonString: string): SafeParseResult<GetDeploymentMicrofrontends1, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyMicrofrontends$inboundSchema: z.ZodType<GetDeploymentResponseBodyMicrofrontends, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyMicrofrontendsFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyMicrofrontends, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyDeploymentsResponseSource$inboundSchema: z.ZodType<GetDeploymentResponseBodyDeploymentsResponseSource, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyDeploymentsResponseSourceFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyDeploymentsResponseSource, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyDeploymentsResponse200ApplicationJSONType$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentResponseBodyDeploymentsResponse200ApplicationJSONType>;
/** @internal */
export declare const GetDeploymentResponseBodyOrigin$inboundSchema: z.ZodType<GetDeploymentResponseBodyOrigin, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyOriginFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyOrigin, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyDeploymentsCreator$inboundSchema: z.ZodType<GetDeploymentResponseBodyDeploymentsCreator, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyDeploymentsCreatorFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyDeploymentsCreator, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyPlatform$inboundSchema: z.ZodType<GetDeploymentResponseBodyPlatform, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyPlatformFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyPlatform, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyFunctionType$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentResponseBodyFunctionType>;
/** @internal */
export declare const GetDeploymentResponseBodyFunctionMemoryType$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentResponseBodyFunctionMemoryType>;
/** @internal */
export declare const GetDeploymentResponseBodyConfiguration$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentResponseBodyConfiguration>;
/** @internal */
export declare const GetDeploymentResponseBodyBuildQueue$inboundSchema: z.ZodType<GetDeploymentResponseBodyBuildQueue, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyBuildQueueFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyBuildQueue, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyElasticConcurrency$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentResponseBodyElasticConcurrency>;
/** @internal */
export declare const GetDeploymentResponseBodyDeploymentsPurchaseType$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentResponseBodyDeploymentsPurchaseType>;
/** @internal */
export declare const GetDeploymentResponseBodyDeploymentsBuildMachine$inboundSchema: z.ZodType<GetDeploymentResponseBodyDeploymentsBuildMachine, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyDeploymentsBuildMachineFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyDeploymentsBuildMachine, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyDeploymentsResourceConfig$inboundSchema: z.ZodType<GetDeploymentResponseBodyDeploymentsResourceConfig, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyDeploymentsResourceConfigFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyDeploymentsResourceConfig, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyConfig$inboundSchema: z.ZodType<GetDeploymentResponseBodyConfig, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyConfigFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyConfig, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyDeploymentsResponseState$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentResponseBodyDeploymentsResponseState>;
/** @internal */
export declare const GetDeploymentResponseBodyDeploymentAlias$inboundSchema: z.ZodType<GetDeploymentResponseBodyDeploymentAlias, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyDeploymentAliasFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyDeploymentAlias, SDKValidationError>;
/** @internal */
export declare const ResponseBodyChecks$inboundSchema: z.ZodType<ResponseBodyChecks, z.ZodTypeDef, unknown>;
export declare function responseBodyChecksFromJSON(jsonString: string): SafeParseResult<ResponseBodyChecks, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyBlockCode$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentResponseBodyBlockCode>;
/** @internal */
export declare const GetDeploymentResponseBodyGitUserId$inboundSchema: z.ZodType<GetDeploymentResponseBodyGitUserId, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyGitUserIdFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyGitUserId, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyGitProvider$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentResponseBodyGitProvider>;
/** @internal */
export declare const GetDeploymentResponseBodySeatBlock$inboundSchema: z.ZodType<GetDeploymentResponseBodySeatBlock, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodySeatBlockFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodySeatBlock, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyCommitMeta$inboundSchema: z.ZodType<GetDeploymentResponseBodyCommitMeta, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyCommitMetaFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyCommitMeta, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyId$inboundSchema: z.ZodType<GetDeploymentResponseBodyId, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyIdFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyId, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyGitUser$inboundSchema: z.ZodType<GetDeploymentResponseBodyGitUser, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyGitUserFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyGitUser, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyVercelUser$inboundSchema: z.ZodType<GetDeploymentResponseBodyVercelUser, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyVercelUserFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyVercelUser, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyAttribution$inboundSchema: z.ZodType<GetDeploymentResponseBodyAttribution, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyAttributionFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyAttribution, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBody2$inboundSchema: z.ZodType<GetDeploymentResponseBody2, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBody2FromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBody2, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyDeploymentsTarget$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentResponseBodyDeploymentsTarget>;
/** @internal */
export declare const GetDeploymentResponseBodyDeploymentsReadyState$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentResponseBodyDeploymentsReadyState>;
/** @internal */
export declare const GetDeploymentResponseBodyDeploymentsAliasError$inboundSchema: z.ZodType<GetDeploymentResponseBodyDeploymentsAliasError, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyDeploymentsAliasErrorFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyDeploymentsAliasError, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBodyDeploymentsAliasWarning$inboundSchema: z.ZodType<GetDeploymentResponseBodyDeploymentsAliasWarning, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBodyDeploymentsAliasWarningFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyDeploymentsAliasWarning, SDKValidationError>;
/** @internal */
export declare const GetDeploymentResponseBody1$inboundSchema: z.ZodType<GetDeploymentResponseBody1, z.ZodTypeDef, unknown>;
export declare function getDeploymentResponseBody1FromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBody1, SDKValidationError>;
//# sourceMappingURL=getdeploymentresponsebody1.d.ts.map