@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,480 lines • 66.2 kB
TypeScript
import * as z from "zod/v3";
import { ClosedEnum } from "../types/enums.js";
import { Result as SafeParseResult } from "../types/fp.js";
import { Consent } from "./consent.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndFortyFour = {
projectId?: string | undefined;
projectName: string;
consent: Consent;
};
export declare const ReasonCode: {
readonly Backoffice: "BACKOFFICE";
readonly BudgetReached: "BUDGET_REACHED";
readonly PublicApi: "PUBLIC_API";
};
export type ReasonCode = ClosedEnum<typeof ReasonCode>;
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndFortyThree = {
projectId: string;
reasonCode?: ReasonCode | undefined;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndFortyTwo = {
projectId: string;
expiresAt: number;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndFortyOne = {
projectId: string;
};
export declare const PasswordProtection2: {
readonly All: "all";
readonly AllExceptCustomDomains: "all_except_custom_domains";
readonly Preview: "preview";
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
};
export type PasswordProtection2 = ClosedEnum<typeof PasswordProtection2>;
export declare const PasswordProtectionDeploymentType: {
readonly All: "all";
readonly AllExceptCustomDomains: "all_except_custom_domains";
readonly Preview: "preview";
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
};
export type PasswordProtectionDeploymentType = ClosedEnum<typeof PasswordProtectionDeploymentType>;
export type PasswordProtection1 = {
deploymentType: PasswordProtectionDeploymentType;
};
export type PayloadPasswordProtection = PasswordProtection1 | PasswordProtection2;
export declare const OldPasswordProtection2: {
readonly All: "all";
readonly AllExceptCustomDomains: "all_except_custom_domains";
readonly Preview: "preview";
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
};
export type OldPasswordProtection2 = ClosedEnum<typeof OldPasswordProtection2>;
export declare const OldPasswordProtectionDeploymentType: {
readonly All: "all";
readonly AllExceptCustomDomains: "all_except_custom_domains";
readonly Preview: "preview";
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
};
export type OldPasswordProtectionDeploymentType = ClosedEnum<typeof OldPasswordProtectionDeploymentType>;
export type OldPasswordProtection1 = {
deploymentType: OldPasswordProtectionDeploymentType;
};
export type OldPasswordProtection = OldPasswordProtection1 | OldPasswordProtection2;
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndForty = {
projectId?: string | undefined;
projectName?: string | undefined;
passwordProtection: PasswordProtection1 | PasswordProtection2 | null;
oldPasswordProtection: OldPasswordProtection1 | OldPasswordProtection2 | null;
};
export type Paths = {
value: string;
};
export type OptionsAllowlist = {
paths: Array<Paths>;
};
export type PayloadPaths = {
value: string;
};
export type OldOptionsAllowlist = {
paths: Array<PayloadPaths>;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndThirtyNine = {
projectId: string;
projectName: string;
optionsAllowlist?: OptionsAllowlist | null | undefined;
oldOptionsAllowlist?: OldOptionsAllowlist | null | undefined;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndThirtyEight = {
source: string;
projectId: string;
projectName: string;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndThirtySeven = {
previousProjectId?: string | undefined;
newProjectId?: string | undefined;
previousProjectName: string;
newProjectName: string;
destinationAccountName: string;
transferId?: string | undefined;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndThirtySix = {
projectId: string;
projectName: string;
originAccountName: string;
destinationAccountName: string;
destinationAccountId: string;
transferId?: string | undefined;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndThirtyFive = {
previousProjectId?: string | undefined;
projectName: string;
destinationAccountName: string | null;
transferId?: string | undefined;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndThirtyFour = {
previousProjectId?: string | undefined;
newProjectId?: string | undefined;
previousProjectName: string;
newProjectName: string;
originAccountName: string;
transferId?: string | undefined;
};
export type UserEventPayload233Project = {
id: string;
name: string;
};
export declare const UserEventPayload233Role: {
readonly Admin: "ADMIN";
readonly ProjectDeveloper: "PROJECT_DEVELOPER";
readonly ProjectGuest: "PROJECT_GUEST";
readonly ProjectViewer: "PROJECT_VIEWER";
};
export type UserEventPayload233Role = ClosedEnum<typeof UserEventPayload233Role>;
export declare const PayloadPreviousRole: {
readonly Admin: "ADMIN";
readonly ProjectDeveloper: "PROJECT_DEVELOPER";
readonly ProjectGuest: "PROJECT_GUEST";
readonly ProjectViewer: "PROJECT_VIEWER";
};
export type PayloadPreviousRole = ClosedEnum<typeof PayloadPreviousRole>;
export type PayloadProjectMembership = {
role?: UserEventPayload233Role | undefined;
uid?: string | undefined;
createdAt?: number | undefined;
username?: string | undefined;
previousRole?: PayloadPreviousRole | undefined;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndThirtyThree = {
project: UserEventPayload233Project;
projectMembership: PayloadProjectMembership;
};
export type UserEventPayload232Project = {
name: string;
id?: string | undefined;
};
export declare const UserEventPayload232Role: {
readonly Admin: "ADMIN";
readonly ProjectDeveloper: "PROJECT_DEVELOPER";
readonly ProjectGuest: "PROJECT_GUEST";
readonly ProjectViewer: "PROJECT_VIEWER";
};
export type UserEventPayload232Role = ClosedEnum<typeof UserEventPayload232Role>;
export type RemovedMembership = {
role: UserEventPayload232Role;
uid: string;
createdAt: number;
username?: string | undefined;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndThirtyTwo = {
project: UserEventPayload232Project;
removedMembership: RemovedMembership;
};
export declare const UserEventPayload231Role: {
readonly Admin: "ADMIN";
readonly ProjectDeveloper: "PROJECT_DEVELOPER";
readonly ProjectGuest: "PROJECT_GUEST";
readonly ProjectViewer: "PROJECT_VIEWER";
};
export type UserEventPayload231Role = ClosedEnum<typeof UserEventPayload231Role>;
export type UserEventPayload231Project = {
name: string;
role: UserEventPayload231Role;
invitedUserName: string;
id?: string | undefined;
invitedUserId?: string | undefined;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndThirtyOne = {
project: UserEventPayload231Project;
};
export type UserEventPayload230Project = {
name: string;
id?: string | undefined;
};
export declare const UserEventPayloadRole: {
readonly Admin: "ADMIN";
readonly ProjectDeveloper: "PROJECT_DEVELOPER";
readonly ProjectGuest: "PROJECT_GUEST";
readonly ProjectViewer: "PROJECT_VIEWER";
};
export type UserEventPayloadRole = ClosedEnum<typeof UserEventPayloadRole>;
export type ProjectMembership = {
role: UserEventPayloadRole;
uid: string;
createdAt: number;
username?: string | undefined;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndThirty = {
project: UserEventPayload230Project;
projectMembership: ProjectMembership | null;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndTwentyNine = {
projectId: string;
projectName: string;
target: string;
domain: string;
configuredBy?: string | null | undefined;
prevConfiguredBy?: string | null | undefined;
};
export declare const UserEventPayload228Role: {
readonly Admin: "ADMIN";
readonly ProjectDeveloper: "PROJECT_DEVELOPER";
readonly ProjectGuest: "PROJECT_GUEST";
readonly ProjectViewer: "PROJECT_VIEWER";
};
export type UserEventPayload228Role = ClosedEnum<typeof UserEventPayload228Role>;
export type PayloadProjects = {
projectId: string;
role: UserEventPayload228Role;
membershipCreatedAt: number;
};
export type TeamMembership = {
uid: string;
username?: string | undefined;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndTwentyEight = {
projects: Array<PayloadProjects>;
teamMembership?: TeamMembership | undefined;
directoryType?: string | undefined;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndTwentySeven = {
projectId: string;
projectName: string;
domain: string;
redirect?: string | null | undefined;
redirectStatusCode?: number | null | undefined;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndTwentySix = {
oldProjectId: string;
oldProjectName: string;
newProjectId: string;
newProjectName: string;
domain: string;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndTwentyFive = {
projectId: string;
projectName: string;
domain: string;
target: string;
redirect?: string | null | undefined;
redirectStatusCode?: number | null | undefined;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndTwentyFour = {
projectId: string;
projectName: string;
domain: string;
target: string;
redirect: string | null;
redirectStatusCode: number | null;
gitBranch: string | null;
configuredBy?: string | undefined;
};
export type UserEventPayload223Previous = {
commandForIgnoringBuildStep?: string | undefined;
};
export type UserEventPayload223Next = {
commandForIgnoringBuildStep?: string | undefined;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndTwentyThree = {
projectId: string;
projectName: string;
previous: UserEventPayload223Previous;
next: UserEventPayload223Next;
};
export type ConsolidatedGitCommitStatus = {
enabled: boolean;
propagateFailures: boolean;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndTwentyTwo = {
projectId: string;
projectName: string;
consolidatedGitCommitStatus: ConsolidatedGitCommitStatus | null;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndTwentyOne = {
projectId: string;
projectName: string;
gitLFS: boolean;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndTwenty = {
projectId: string;
projectName: string;
gitCommitStatus: boolean;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndNineteen = {
disableRepositoryDispatchEvents: boolean;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndEighteen = {
requireVerifiedCommits: boolean;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndSeventeen = {
projectId: string;
projectName: string;
requireVerifiedCommits: boolean | null;
};
export declare const CreateDeployments: {
readonly Disabled: "disabled";
readonly Enabled: "enabled";
};
export type CreateDeployments = ClosedEnum<typeof CreateDeployments>;
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndSixteen = {
projectId: string;
projectName: string;
createDeployments: CreateDeployments;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndFifteen = {
projectId: string;
projectName: string;
disableRepositoryDispatchEvents: boolean;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndFourteen = {
projectId: string;
projectName: string;
onCommit: boolean;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndThirteen = {
projectId: string;
projectName: string;
onPullRequest: boolean;
};
export declare const GitProvider: {
readonly Bitbucket: "bitbucket";
readonly Github: "github";
readonly GithubCustomHost: "github-custom-host";
readonly GithubLimited: "github-limited";
readonly Gitlab: "gitlab";
readonly Vercel: "vercel";
};
export type GitProvider = ClosedEnum<typeof GitProvider>;
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndTwelve = {
projectId: string;
projectName: string;
gitProvider: GitProvider;
gitRepoId: string;
gitRepositoryName: string;
};
export declare const UserEventPayloadGitProvider: {
readonly Bitbucket: "bitbucket";
readonly Github: "github";
readonly GithubCustomHost: "github-custom-host";
readonly GithubLimited: "github-limited";
readonly Gitlab: "gitlab";
readonly Vercel: "vercel";
};
export type UserEventPayloadGitProvider = ClosedEnum<typeof UserEventPayloadGitProvider>;
export type UserEventPayload211Previous = {
gitProvider: UserEventPayloadGitProvider;
gitRepoId: string;
gitRepositoryName: string;
};
export declare const PayloadGitProvider: {
readonly Bitbucket: "bitbucket";
readonly Github: "github";
readonly GithubCustomHost: "github-custom-host";
readonly GithubLimited: "github-limited";
readonly Gitlab: "gitlab";
readonly Vercel: "vercel";
};
export type PayloadGitProvider = ClosedEnum<typeof PayloadGitProvider>;
export type UserEventPayload211Next = {
gitProvider: PayloadGitProvider;
gitRepoId: string;
gitRepositoryName: string;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndEleven = {
projectId: string;
projectName: string;
previous?: UserEventPayload211Previous | undefined;
next: UserEventPayload211Next;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndTen = {
projectId: string;
projectName: string;
newProjectName: string;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndNine = {
projectId: string;
projectName: string;
previewDeploymentSuffix: string | null;
};
export type UserEventPayload208Previous = {
functionZeroConfigFailover: boolean | null;
};
export type UserEventPayload208Next = {
functionZeroConfigFailover: boolean;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndEight = {
projectId: string;
projectName: string;
previous: UserEventPayload208Previous;
next: UserEventPayload208Next;
};
export type UserEventPayload207Previous = {
functionDefaultRegions: Array<string> | null;
};
export type UserEventPayload207Next = {
functionDefaultRegions: Array<string>;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndSeven = {
projectId: string;
projectName: string;
previous: UserEventPayload207Previous;
next: UserEventPayload207Next;
};
export type UserEventPayload206Previous = {
functionDefaultMemoryType: string | null;
};
export type UserEventPayload206Next = {
functionDefaultMemoryType: string;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndSix = {
projectId: string;
projectName: string;
previous: UserEventPayload206Previous;
next: UserEventPayload206Next;
};
export type UserEventPayload205Previous = {
functionDefaultTimeout: number | null;
};
export type UserEventPayload205Next = {
functionDefaultTimeout: number;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndFive = {
projectId: string;
projectName: string;
previous: UserEventPayload205Previous;
next: UserEventPayload205Next;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndFour = {
projectName?: string | undefined;
projectId: string;
enableFunctionsBeta: boolean;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndThree = {
projectId: string;
projectName: string;
customEnvironmentId: string;
customEnvironmentSlug: string;
};
/**
* The type of matching to perform
*/
export declare const UserEventPayload202Type: {
readonly EndsWith: "endsWith";
readonly Equals: "equals";
readonly StartsWith: "startsWith";
};
/**
* The type of matching to perform
*/
export type UserEventPayload202Type = ClosedEnum<typeof UserEventPayload202Type>;
export type BranchMatcher = {
/**
* The type of matching to perform
*/
type: UserEventPayload202Type;
/**
* The pattern to match against branch names
*/
pattern: string;
};
export type UserEventPayload202Previous = {
branchMatcher?: BranchMatcher | undefined;
};
/**
* The type of matching to perform
*/
export declare const UserEventPayload202NextType: {
readonly EndsWith: "endsWith";
readonly Equals: "equals";
readonly StartsWith: "startsWith";
};
/**
* The type of matching to perform
*/
export type UserEventPayload202NextType = ClosedEnum<typeof UserEventPayload202NextType>;
export type PayloadBranchMatcher = {
/**
* The type of matching to perform
*/
type: UserEventPayload202NextType;
/**
* The pattern to match against branch names
*/
pattern: string;
};
export type UserEventPayload202Next = {
branchMatcher?: PayloadBranchMatcher | undefined;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndTwo = {
projectId: string;
projectName: string;
customEnvironmentId: string;
customEnvironmentSlug: string;
previous: UserEventPayload202Previous;
next: UserEventPayload202Next;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundredAndOne = {
projectId: string;
projectName: string;
previewDeploymentsEnabled: boolean;
};
/**
* The payload of the event, if requested.
*/
export type TwoHundred = {
projectId: string;
projectName: string;
autoAssignCustomDomains: boolean;
};
export declare const BuildQueueConfiguration: {
readonly SkipNamespaceQueue: "SKIP_NAMESPACE_QUEUE";
readonly WaitForNamespaceQueue: "WAIT_FOR_NAMESPACE_QUEUE";
};
export type BuildQueueConfiguration = ClosedEnum<typeof BuildQueueConfiguration>;
export declare const OldBuildQueueConfiguration: {
readonly SkipNamespaceQueue: "SKIP_NAMESPACE_QUEUE";
readonly WaitForNamespaceQueue: "WAIT_FOR_NAMESPACE_QUEUE";
};
export type OldBuildQueueConfiguration = ClosedEnum<typeof OldBuildQueueConfiguration>;
/**
* The payload of the event, if requested.
*/
export type OneHundredAndNinetyNine = {
projectId: string;
projectName: string;
elasticConcurrencyEnabled: boolean;
oldElasticConcurrencyEnabled: boolean;
buildQueueConfiguration?: BuildQueueConfiguration | undefined;
oldBuildQueueConfiguration?: OldBuildQueueConfiguration | undefined;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndNinetyEight = {
name: string;
ownerId: string;
};
export declare const UserEventPayload197Action: {
readonly Disabled: "disabled";
readonly Enabled: "enabled";
};
export type UserEventPayload197Action = ClosedEnum<typeof UserEventPayload197Action>;
/**
* The payload of the event, if requested.
*/
export type OneHundredAndNinetySeven = {
projectId: string;
projectName: string;
action: UserEventPayload197Action;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndNinetySix = {
projectName?: string | undefined;
projectId: string;
};
export type UserEventPayload195Team = {
id: string;
name: string;
};
export declare const EnvId2: {
readonly Preview: "preview";
readonly Production: "production";
};
export type EnvId2 = ClosedEnum<typeof EnvId2>;
export type EnvId = string | EnvId2;
export type Aws = {
subnetIds: Array<string>;
securityGroupId?: string | undefined;
};
export type OldConnectConfigurations = {
envId: string | EnvId2;
connectConfigurationId: string;
dc?: string | undefined;
passive: boolean;
buildsEnabled: boolean;
aws?: Aws | undefined;
createdAt: number;
updatedAt: number;
};
export declare const UserEventEnvId2: {
readonly Preview: "preview";
readonly Production: "production";
};
export type UserEventEnvId2 = ClosedEnum<typeof UserEventEnvId2>;
export type PayloadEnvId = string | UserEventEnvId2;
export type PayloadAws = {
subnetIds: Array<string>;
securityGroupId?: string | undefined;
};
export type NewConnectConfigurations = {
envId: string | UserEventEnvId2;
connectConfigurationId: string;
dc?: string | undefined;
passive: boolean;
buildsEnabled: boolean;
aws?: PayloadAws | undefined;
createdAt: number;
updatedAt: number;
};
export type UserEventPayload195Project = {
id: string;
name?: string | undefined;
oldConnectConfigurations: Array<OldConnectConfigurations> | null;
newConnectConfigurations: Array<NewConnectConfigurations> | null;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndNinetyFive = {
team: UserEventPayload195Team;
project: UserEventPayload195Project;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndNinetyFour = {
projectId?: string | undefined;
projectName?: string | undefined;
target?: Array<string> | undefined;
updated?: boolean | undefined;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndNinetyThree = {
projectId?: string | undefined;
projectName?: string | undefined;
certId?: string | undefined;
origin?: string | undefined;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndNinetyTwo = {
projectId?: string | undefined;
projectName: string;
previousBuildMachineType?: string | undefined;
nextBuildMachineType: string;
previousBuildMachineSelection: string;
nextBuildMachineSelection: string;
isSystemInitiated?: boolean | undefined;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndNinetyOne = {
projectId: string;
projectName: string;
sourceFilesOutsideRootDirectory: boolean;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndNinety = {
projectId: string;
projectName: string;
productionDeploymentsFastLane: boolean;
};
export type UserEventPayload189Previous = {};
export type UserEventPayload189Next = {};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndEightyNine = {
projectId: string;
projectName: string;
previous: UserEventPayload189Previous;
next: UserEventPayload189Next;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndEightyEight = {
projectId: string;
projectName: string;
enableExternalRewriteCaching: boolean;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndEightySeven = {
projectId: string;
projectName: string;
enableAffectedProjectsDeployments: boolean;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndEightySix = {
projectId: string;
projectName: string;
avatar?: string | null | undefined;
};
export declare const UserEventPayload185Action: {
readonly Disabled: "disabled";
readonly Enabled: "enabled";
readonly Regenerated: "regenerated";
readonly Updated: "updated";
};
export type UserEventPayload185Action = ClosedEnum<typeof UserEventPayload185Action>;
/**
* The payload of the event, if requested.
*/
export type OneHundredAndEightyFive = {
projectId: string;
projectName: string;
action: UserEventPayload185Action;
isEnvVar?: boolean | undefined;
note?: string | undefined;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndEightyFour = {
projectName?: string | undefined;
projectId: string;
projectAnalytics?: {
[k: string]: any;
} | undefined;
prevProjectAnalytics?: {
[k: string]: any;
} | null | undefined;
};
export type ProjectAnalytics = {
id: string;
canceledAt?: number | null | undefined;
disabledAt: number;
enabledAt: number;
paidAt?: number | undefined;
sampleRatePercent?: number | null | undefined;
spendLimitInDollars?: number | null | undefined;
};
export type PrevProjectAnalytics = {
id: string;
canceledAt?: number | null | undefined;
disabledAt: number;
enabledAt: number;
paidAt?: number | undefined;
sampleRatePercent?: number | null | undefined;
spendLimitInDollars?: number | null | undefined;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndEightyThree = {
projectName?: string | undefined;
projectId: string;
projectAnalytics: ProjectAnalytics | null;
prevProjectAnalytics: PrevProjectAnalytics | null;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndEightyTwo = {
projectId: string;
projectName: string;
directoryListing: boolean;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndEightyOne = {
projectId?: string | undefined;
projectName: string;
branch: string;
};
export type PayloadPrivateLinkEndpoint = {
id: string;
name: string;
environmentIds?: Array<string> | undefined;
privateDnsNames?: Array<string> | undefined;
};
export type PreviousEndpoint = {
name: string;
environmentIds?: Array<string> | undefined;
privateDnsNames?: Array<string> | undefined;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndEighty = {
privateLinkEndpoint: PayloadPrivateLinkEndpoint;
projectId: string;
previousEndpoint: PreviousEndpoint;
};
export type UserEventPayloadPrev = {
id: string;
name: string;
projectId: string;
vercelRegion: string;
awsServiceName: string;
privateDnsNames?: Array<string> | undefined;
};
export type Current = {
id: string;
name: string;
projectId: string;
vercelRegion: string;
awsServiceName: string;
privateDnsNames?: Array<string> | undefined;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndSeventyNine = {
prev: UserEventPayloadPrev;
current: Current;
};
export type PrivateLinkEndpoint = {
id: string;
name: string;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndSeventyEight = {
privateLinkEndpoint: PrivateLinkEndpoint;
projectId: string;
};
export type Endpoint = {
id: string;
name: string;
projectId: string;
vercelRegion: string;
awsServiceName: string;
privateDnsNames?: Array<string> | undefined;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndSeventySeven = {
endpoint: Endpoint;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndSeventySix = {
previewDeploymentSuffix?: string | null | undefined;
previousPreviewDeploymentSuffix?: string | null | undefined;
};
/**
* The payload of the event, if requested.
*/
export type OneHundredAndSeventyFive = {
price?: number | undefined;
currency?: string | undefined;
enabled?: boolean | undefined;
};
export declare const UserEventPayload174Role: {
readonly Billing: "BILLING";
readonly Contributor: "CONTRIBUTOR";
readonly Developer: "DEVELOPER";
readonly Member: "MEMBER";
readonly Owner: "OWNER";
readonly Security: "SECURITY";
readonly Viewer: "VIEWER";
readonly ViewerForPlus: "VIEWER_FOR_PLUS";
};
export type UserEventPayload174Role = ClosedEnum<typeof UserEventPayload174Role>;
export declare const UserEventPayloadOrigin: {
readonly AccountUpdate: "account-update";
readonly Bitbucket: "bitbucket";
readonly Dsync: "dsync";
readonly Feedback: "feedback";
readonly Github: "github";
readonly Gitlab: "gitlab";
readonly Import: "import";
readonly Link: "link";
readonly Mail: "mail";
readonly NsnbAutoApprove: "nsnb-auto-approve";
readonly NsnbHobbyUpgrade: "nsnb-hobby-upgrade";
readonly NsnbInvite: "nsnb-invite";
readonly NsnbRedeploy: "nsnb-redeploy";
readonly NsnbRedeployAttributionCard: "nsnb-redeploy-attribution-card";
readonly NsnbRequestAccess: "nsnb-request-access";
readonly NsnbViewerUpgrade: "nsnb-viewer-upgrade";
readonly OrganizationTeams: "organization-teams";
readonly Saml: "saml";
readonly Teams: "teams";
};
export type UserEventPayloadOrigin = ClosedEnum<typeof UserEventPayloadOrigin>;
export type PayloadGitUserId = string | number;
export type PayloadJoinedFrom = {
origin: UserEventPayloadOrigin;
commitId?: string | undefined;
repoId?: string | undefined;
repoPath?: string | undefined;
gitUserId?: string | number | undefined;
gitUserLogin?: string | undefined;
ssoUserId?: string | undefined;
ssoConnectedAt?: number | undefined;
idpUserId?: string | undefined;
dsyncUserId?: string | undefined;
dsyncConnectedAt?: number | undefined;
};
export type RemovedUsers = {
role: UserEventPayload174Role;
confirmed: boolean;
confirmedAt?: number | undefined;
joinedFrom?: PayloadJoinedFrom | undefined;
};
/** @internal */
export declare const TwoHundredAndFortyFour$inboundSchema: z.ZodType<TwoHundredAndFortyFour, z.ZodTypeDef, unknown>;
export declare function twoHundredAndFortyFourFromJSON(jsonString: string): SafeParseResult<TwoHundredAndFortyFour, SDKValidationError>;
/** @internal */
export declare const ReasonCode$inboundSchema: z.ZodNativeEnum<typeof ReasonCode>;
/** @internal */
export declare const TwoHundredAndFortyThree$inboundSchema: z.ZodType<TwoHundredAndFortyThree, z.ZodTypeDef, unknown>;
export declare function twoHundredAndFortyThreeFromJSON(jsonString: string): SafeParseResult<TwoHundredAndFortyThree, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndFortyTwo$inboundSchema: z.ZodType<TwoHundredAndFortyTwo, z.ZodTypeDef, unknown>;
export declare function twoHundredAndFortyTwoFromJSON(jsonString: string): SafeParseResult<TwoHundredAndFortyTwo, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndFortyOne$inboundSchema: z.ZodType<TwoHundredAndFortyOne, z.ZodTypeDef, unknown>;
export declare function twoHundredAndFortyOneFromJSON(jsonString: string): SafeParseResult<TwoHundredAndFortyOne, SDKValidationError>;
/** @internal */
export declare const PasswordProtection2$inboundSchema: z.ZodNativeEnum<typeof PasswordProtection2>;
/** @internal */
export declare const PasswordProtectionDeploymentType$inboundSchema: z.ZodNativeEnum<typeof PasswordProtectionDeploymentType>;
/** @internal */
export declare const PasswordProtection1$inboundSchema: z.ZodType<PasswordProtection1, z.ZodTypeDef, unknown>;
export declare function passwordProtection1FromJSON(jsonString: string): SafeParseResult<PasswordProtection1, SDKValidationError>;
/** @internal */
export declare const PayloadPasswordProtection$inboundSchema: z.ZodType<PayloadPasswordProtection, z.ZodTypeDef, unknown>;
export declare function payloadPasswordProtectionFromJSON(jsonString: string): SafeParseResult<PayloadPasswordProtection, SDKValidationError>;
/** @internal */
export declare const OldPasswordProtection2$inboundSchema: z.ZodNativeEnum<typeof OldPasswordProtection2>;
/** @internal */
export declare const OldPasswordProtectionDeploymentType$inboundSchema: z.ZodNativeEnum<typeof OldPasswordProtectionDeploymentType>;
/** @internal */
export declare const OldPasswordProtection1$inboundSchema: z.ZodType<OldPasswordProtection1, z.ZodTypeDef, unknown>;
export declare function oldPasswordProtection1FromJSON(jsonString: string): SafeParseResult<OldPasswordProtection1, SDKValidationError>;
/** @internal */
export declare const OldPasswordProtection$inboundSchema: z.ZodType<OldPasswordProtection, z.ZodTypeDef, unknown>;
export declare function oldPasswordProtectionFromJSON(jsonString: string): SafeParseResult<OldPasswordProtection, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndForty$inboundSchema: z.ZodType<TwoHundredAndForty, z.ZodTypeDef, unknown>;
export declare function twoHundredAndFortyFromJSON(jsonString: string): SafeParseResult<TwoHundredAndForty, SDKValidationError>;
/** @internal */
export declare const Paths$inboundSchema: z.ZodType<Paths, z.ZodTypeDef, unknown>;
export declare function pathsFromJSON(jsonString: string): SafeParseResult<Paths, SDKValidationError>;
/** @internal */
export declare const OptionsAllowlist$inboundSchema: z.ZodType<OptionsAllowlist, z.ZodTypeDef, unknown>;
export declare function optionsAllowlistFromJSON(jsonString: string): SafeParseResult<OptionsAllowlist, SDKValidationError>;
/** @internal */
export declare const PayloadPaths$inboundSchema: z.ZodType<PayloadPaths, z.ZodTypeDef, unknown>;
export declare function payloadPathsFromJSON(jsonString: string): SafeParseResult<PayloadPaths, SDKValidationError>;
/** @internal */
export declare const OldOptionsAllowlist$inboundSchema: z.ZodType<OldOptionsAllowlist, z.ZodTypeDef, unknown>;
export declare function oldOptionsAllowlistFromJSON(jsonString: string): SafeParseResult<OldOptionsAllowlist, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndThirtyNine$inboundSchema: z.ZodType<TwoHundredAndThirtyNine, z.ZodTypeDef, unknown>;
export declare function twoHundredAndThirtyNineFromJSON(jsonString: string): SafeParseResult<TwoHundredAndThirtyNine, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndThirtyEight$inboundSchema: z.ZodType<TwoHundredAndThirtyEight, z.ZodTypeDef, unknown>;
export declare function twoHundredAndThirtyEightFromJSON(jsonString: string): SafeParseResult<TwoHundredAndThirtyEight, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndThirtySeven$inboundSchema: z.ZodType<TwoHundredAndThirtySeven, z.ZodTypeDef, unknown>;
export declare function twoHundredAndThirtySevenFromJSON(jsonString: string): SafeParseResult<TwoHundredAndThirtySeven, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndThirtySix$inboundSchema: z.ZodType<TwoHundredAndThirtySix, z.ZodTypeDef, unknown>;
export declare function twoHundredAndThirtySixFromJSON(jsonString: string): SafeParseResult<TwoHundredAndThirtySix, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndThirtyFive$inboundSchema: z.ZodType<TwoHundredAndThirtyFive, z.ZodTypeDef, unknown>;
export declare function twoHundredAndThirtyFiveFromJSON(jsonString: string): SafeParseResult<TwoHundredAndThirtyFive, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndThirtyFour$inboundSchema: z.ZodType<TwoHundredAndThirtyFour, z.ZodTypeDef, unknown>;
export declare function twoHundredAndThirtyFourFromJSON(jsonString: string): SafeParseResult<TwoHundredAndThirtyFour, SDKValidationError>;
/** @internal */
export declare const UserEventPayload233Project$inboundSchema: z.ZodType<UserEventPayload233Project, z.ZodTypeDef, unknown>;
export declare function userEventPayload233ProjectFromJSON(jsonString: string): SafeParseResult<UserEventPayload233Project, SDKValidationError>;
/** @internal */
export declare const UserEventPayload233Role$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload233Role>;
/** @internal */
export declare const PayloadPreviousRole$inboundSchema: z.ZodNativeEnum<typeof PayloadPreviousRole>;
/** @internal */
export declare const PayloadProjectMembership$inboundSchema: z.ZodType<PayloadProjectMembership, z.ZodTypeDef, unknown>;
export declare function payloadProjectMembershipFromJSON(jsonString: string): SafeParseResult<PayloadProjectMembership, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndThirtyThree$inboundSchema: z.ZodType<TwoHundredAndThirtyThree, z.ZodTypeDef, unknown>;
export declare function twoHundredAndThirtyThreeFromJSON(jsonString: string): SafeParseResult<TwoHundredAndThirtyThree, SDKValidationError>;
/** @internal */
export declare const UserEventPayload232Project$inboundSchema: z.ZodType<UserEventPayload232Project, z.ZodTypeDef, unknown>;
export declare function userEventPayload232ProjectFromJSON(jsonString: string): SafeParseResult<UserEventPayload232Project, SDKValidationError>;
/** @internal */
export declare const UserEventPayload232Role$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload232Role>;
/** @internal */
export declare const RemovedMembership$inboundSchema: z.ZodType<RemovedMembership, z.ZodTypeDef, unknown>;
export declare function removedMembershipFromJSON(jsonString: string): SafeParseResult<RemovedMembership, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndThirtyTwo$inboundSchema: z.ZodType<TwoHundredAndThirtyTwo, z.ZodTypeDef, unknown>;
export declare function twoHundredAndThirtyTwoFromJSON(jsonString: string): SafeParseResult<TwoHundredAndThirtyTwo, SDKValidationError>;
/** @internal */
export declare const UserEventPayload231Role$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload231Role>;
/** @internal */
export declare const UserEventPayload231Project$inboundSchema: z.ZodType<UserEventPayload231Project, z.ZodTypeDef, unknown>;
export declare function userEventPayload231ProjectFromJSON(jsonString: string): SafeParseResult<UserEventPayload231Project, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndThirtyOne$inboundSchema: z.ZodType<TwoHundredAndThirtyOne, z.ZodTypeDef, unknown>;
export declare function twoHundredAndThirtyOneFromJSON(jsonString: string): SafeParseResult<TwoHundredAndThirtyOne, SDKValidationError>;
/** @internal */
export declare const UserEventPayload230Project$inboundSchema: z.ZodType<UserEventPayload230Project, z.ZodTypeDef, unknown>;
export declare function userEventPayload230ProjectFromJSON(jsonString: string): SafeParseResult<UserEventPayload230Project, SDKValidationError>;
/** @internal */
export declare const UserEventPayloadRole$inboundSchema: z.ZodNativeEnum<typeof UserEventPayloadRole>;
/** @internal */
export declare const ProjectMembership$inboundSchema: z.ZodType<ProjectMembership, z.ZodTypeDef, unknown>;
export declare function projectMembershipFromJSON(jsonString: string): SafeParseResult<ProjectMembership, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndThirty$inboundSchema: z.ZodType<TwoHundredAndThirty, z.ZodTypeDef, unknown>;
export declare function twoHundredAndThirtyFromJSON(jsonString: string): SafeParseResult<TwoHundredAndThirty, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndTwentyNine$inboundSchema: z.ZodType<TwoHundredAndTwentyNine, z.ZodTypeDef, unknown>;
export declare function twoHundredAndTwentyNineFromJSON(jsonString: string): SafeParseResult<TwoHundredAndTwentyNine, SDKValidationError>;
/** @internal */
export declare const UserEventPayload228Role$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload228Role>;
/** @internal */
export declare const PayloadProjects$inboundSchema: z.ZodType<PayloadProjects, z.ZodTypeDef, unknown>;
export declare function payloadProjectsFromJSON(jsonString: string): SafeParseResult<PayloadProjects, SDKValidationError>;
/** @internal */
export declare const TeamMembership$inboundSchema: z.ZodType<TeamMembership, z.ZodTypeDef, unknown>;
export declare function teamMembershipFromJSON(jsonString: string): SafeParseResult<TeamMembership, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndTwentyEight$inboundSchema: z.ZodType<TwoHundredAndTwentyEight, z.ZodTypeDef, unknown>;
export declare function twoHundredAndTwentyEightFromJSON(jsonString: string): SafeParseResult<TwoHundredAndTwentyEight, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndTwentySeven$inboundSchema: z.ZodType<TwoHundredAndTwentySeven, z.ZodTypeDef, unknown>;
export declare function twoHundredAndTwentySevenFromJSON(jsonString: string): SafeParseResult<TwoHundredAndTwentySeven, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndTwentySix$inboundSchema: z.ZodType<TwoHundredAndTwentySix, z.ZodTypeDef, unknown>;
export declare function twoHundredAndTwentySixFromJSON(jsonString: string): SafeParseResult<TwoHundredAndTwentySix, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndTwentyFive$inboundSchema: z.ZodType<TwoHundredAndTwentyFive, z.ZodTypeDef, unknown>;
export declare function twoHundredAndTwentyFiveFromJSON(jsonString: string): SafeParseResult<TwoHundredAndTwentyFive, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndTwentyFour$inboundSchema: z.ZodType<TwoHundredAndTwentyFour, z.ZodTypeDef, unknown>;
export declare function twoHundredAndTwentyFourFromJSON(jsonString: string): SafeParseResult<TwoHundredAndTwentyFour, SDKValidationError>;
/** @internal */
export declare const UserEventPayload223Previous$inboundSchema: z.ZodType<UserEventPayload223Previous, z.ZodTypeDef, unknown>;
export declare function userEventPayload223PreviousFromJSON(jsonString: string): SafeParseResult<UserEventPayload223Previous, SDKValidationError>;
/** @internal */
export declare const UserEventPayload223Next$inboundSchema: z.ZodType<UserEventPayload223Next, z.ZodTypeDef, unknown>;
export declare function userEventPayload223NextFromJSON(jsonString: string): SafeParseResult<UserEventPayload223Next, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndTwentyThree$inboundSchema: z.ZodType<TwoHundredAndTwentyThree, z.ZodTypeDef, unknown>;
export declare function twoHundredAndTwentyThreeFromJSON(jsonString: string): SafeParseResult<TwoHundredAndTwentyThree, SDKValidationError>;
/** @internal */
export declare const ConsolidatedGitCommitStatus$inboundSchema: z.ZodType<ConsolidatedGitCommitStatus, z.ZodTypeDef, unknown>;
export declare function consolidatedGitCommitStatusFromJSON(jsonString: string): SafeParseResult<ConsolidatedGitCommitStatus, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndTwentyTwo$inboundSchema: z.ZodType<TwoHundredAndTwentyTwo, z.ZodTypeDef, unknown>;
export declare function twoHundredAndTwentyTwoFromJSON(jsonString: string): SafeParseResult<TwoHundredAndTwentyTwo, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndTwentyOne$inboundSchema: z.ZodType<TwoHundredAndTwentyOne, z.ZodTypeDef, unknown>;
export declare function twoHundredAndTwentyOneFromJSON(jsonString: string): SafeParseResult<TwoHundredAndTwentyOne, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndTwenty$inboundSchema: z.ZodType<TwoHundredAndTwenty, z.ZodTypeDef, unknown>;
export declare function twoHundredAndTwentyFromJSON(jsonString: string): SafeParseResult<TwoHundredAndTwenty, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndNineteen$inboundSchema: z.ZodType<TwoHundredAndNineteen, z.ZodTypeDef, unknown>;
export declare function twoHundredAndNineteenFromJSON(jsonString: string): SafeParseResult<TwoHundredAndNineteen, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndEighteen$inboundSchema: z.ZodType<TwoHundredAndEighteen, z.ZodTypeDef, unknown>;
export declare function twoHundredAndEighteenFromJSON(jsonString: string): SafeParseResult<TwoHundredAndEighteen, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndSeventeen$inboundSchema: z.ZodType<TwoHundredAndSeventeen, z.ZodTypeDef, unknown>;
export declare function twoHundredAndSeventeenFromJSON(jsonString: string): SafeParseResult<TwoHundredAndSeventeen, SDKValidationError>;
/** @internal */
export declare const CreateDeployments$inboundSchema: z.ZodNativeEnum<typeof CreateDeployments>;
/** @internal */
export declare const TwoHundredAndSixteen$inboundSchema: z.ZodType<TwoHundredAndSixteen, z.ZodTypeDef, unknown>;
export declare function twoHundredAndSixteenFromJSON(jsonString: string): SafeParseResult<TwoHundredAndSixteen, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndFifteen$inboundSchema: z.ZodType<TwoHundredAndFifteen, z.ZodTypeDef, unknown>;
export declare function twoHundredAndFifteenFromJSON(jsonString: string): SafeParseResult<TwoHundredAndFifteen, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndFourteen$inboundSchema: z.ZodType<TwoHundredAndFourteen, z.ZodTypeDef, unknown>;
export declare function twoHundredAndFourteenFromJSON(jsonString: string): SafeParseResult<TwoHundredAndFourteen, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndThirteen$inboundSchema: z.ZodType<TwoHundredAndThirteen, z.ZodTypeDef, unknown>;
export declare function twoHundredAndThirteenFromJSON(jsonString: string): SafeParseResult<TwoHundredAndThirteen, SDKValidationError>;
/** @internal */
export declare const GitProvider$inboundSchema: z.ZodNativeEnum<typeof GitProvider>;
/** @internal */
export declare const TwoHundredAndTwelve$inboundSchema: z.ZodType<TwoHundredAndTwelve, z.ZodTypeDef, unknown>;
export declare function twoHundredAndTwelveFromJSON(jsonString: string): SafeParseResult<TwoHundredAndTwelve, SDKValidationError>;
/** @internal */
export declare const UserEventPayloadGitProvider$inboundSchema: z.ZodNativeEnum<typeof UserEventPayloadGitProvider>;
/** @internal */
export declare const UserEventPayload211Previous$inboundSchema: z.ZodType<UserEventPayload211Previous, z.ZodTypeDef, unknown>;
export declare function userEventPayload211PreviousFromJSON(jsonString: string): SafeParseResult<UserEventPayload211Previous, SDKValidationError>;
/** @internal */
export declare const PayloadGitProvider$inboundSchema: z.ZodNativeEnum<typeof PayloadGitProvider>;
/** @internal */
export declare const UserEventPayload211Next$inboundSchema: z.ZodType<UserEventPayload211Next, z.ZodTypeDef, unknown>;
export declare function userEventPayload211NextFromJSON(jsonString: string): SafeParseResult<UserEventPayload211Next, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndEleven$inboundSchema: z.ZodType<TwoHundredAndEleven, z.ZodTypeDef, unknown>;
export declare function twoHundredAndElevenFromJSON(jsonString: string): SafeParseResult<TwoHundredAndEleven, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndTen$inboundSchema: z.ZodType<TwoHundredAndTen, z.ZodTypeDef, unknown>;
export declare function twoHundredAndTenFromJSON(jsonString: string): SafeParseResult<TwoHundredAndTen, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndNine$inboundSchema: z.ZodType<TwoHundredAndNine, z.ZodTypeDef, unknown>;
export declare function twoHundredAndNineFromJSON(jsonString: string): SafeParseResult<TwoHundredAndNine, SDKValidationError>;
/** @internal */
export declare const UserEventPayload208Previous$inboundSchema: z.ZodType<UserEventPayload208Previous, z.ZodTypeDef, unknown>;
export declare function userEventPayload208PreviousFromJSON(jsonString: string): SafeParseResult<UserEventPayload208Previous, SDKValidationError>;
/** @internal */
export declare const UserEventPayload208Next$inboundSchema: z.ZodType<UserEventPayload208Next, z.ZodTypeDef, unknown>;
export declare function userEventPayload208NextFromJSON(jsonString: string): SafeParseResult<UserEventPayload208Next, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndEight$inboundSchema: z.ZodType<TwoHundredAndEight, z.ZodTypeDef, unknown>;
export declare function twoHundredAndEightFromJSON(jsonString: string): SafeParseResult<TwoHundredAndEight, SDKValidationError>;
/** @internal */
export declare const UserEventPayload207Previous$inboundSchema: z.ZodType<UserEventPayload207Previous, z.ZodTypeDef, unknown>;
export declare function userEventPayload207PreviousFromJSON(jsonString: string): SafeParseResult<UserEventPayload207Previous, SDKValidationError>;
/** @internal */
export declare const UserEventPayload207Next$inboundSchema: z.ZodType<UserEventPayload207Next, z.ZodTypeDef, unknown>;
export declare function userEventPayload207NextFromJSON(jsonString: string): SafeParseResult<UserEventPayload207Next, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndSeven$inboundSchema: z.ZodType<TwoHundredAndSeven, z.ZodTypeDef, unknown>;
export declare function twoHundredAndSevenFromJSON(jsonString: string): SafeParseResult<TwoHundredAndSeven, SDKValidationError>;
/** @internal */
export declare const UserEventPayload206Previous$inboundSchema: z.ZodType<UserEventPayload206Previous, z.ZodTypeDef, unknown>;
export declare function userEventPayload206PreviousFromJSON(jsonString: string): SafeParseResult<UserEventPayload206Previous, SDKValidationError>;
/** @internal */
export declare const UserEventPayload206Next$inboundSchema: z.ZodType<UserEventPayload206Next, z.ZodTypeDef, unknown>;
export declare function userEventPayload206NextFromJSON(jsonString: string): SafeParseResult<UserEventPayload206Next, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndSix$inboundSchema: z.ZodType<TwoHundredAndSix, z.ZodTypeDef, unknown>;
export declare function twoHundredAndSixFromJSON(jsonString: string): SafeParseResult<TwoHundredAndSix, SDKValidationError>;
/** @internal */
export declare const UserEventPayload205Previous$inboundSchema: z.ZodType<UserEventPayload205Previous, z.ZodTypeDef, unknown>;
export declare function userEventPayload205PreviousFromJSON(jsonString: string): SafeParseResult<UserEventPayload205Previous, SDKValidationError>;
/** @internal */
export declare const UserEventPayload205Next$inboundSchema: z.ZodType<UserEventPayload205Next, z.ZodTypeDef, unknown>;
export declare function userEventPayload205NextFromJSON(jsonString: string): SafeParseResult<UserEventPayload205Next, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndFive$inboundSchema: z.ZodType<TwoHundredAndFive, z.ZodTypeDef, unknown>;
export declare function twoHundredAndFiveFromJSON(jsonString: string): SafeParseResult<TwoHundredAndFive, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndFour$inboundSchema: z.ZodType<TwoHundredAndFour, z.ZodTypeDef, unknown>;
export declare function twoHundredAndFourFromJSON(jsonString: string): SafeParseResult<TwoHundredAndFour, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndThree$inboundSchema: z.ZodType<TwoHundredAndThree, z.ZodTypeDef, unknown>;
export declare function twoHundredAndThreeFromJSON(jsonString: string): SafeParseResult<TwoHundredAndThree, SDKValidationError>;
/** @internal */
export declare const UserEventPayload202Type$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload202Type>;
/** @internal */
export declare const BranchMatcher$inboundSchema: z.ZodType<BranchMatcher, z.ZodTypeDef, unknown>;
export declare function branchMatcherFromJSON(jsonString: string): SafeParseResult<BranchMatcher, SDKValidationError>;
/** @internal */
export declare const UserEventPayload202Previous$inboundSchema: z.ZodType<UserEventPayload202Previous, z.ZodTypeDef, unknown>;
export declare function userEventPayload202PreviousFromJSON(jsonString: string): SafeParseResult<UserEventPayload202Previous, SDKValidationError>;
/** @internal */
export declare const UserEventPayload202NextType$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload202NextType>;
/** @internal */
export declare const PayloadBranchMatcher$inboundSchema: z.ZodType<PayloadBranchMatcher, z.ZodTypeDef, unknown>;
export declare function payloadBranchMatcherFromJSON(jsonString: string): SafeParseResult<PayloadBranchMatcher, SDKValidationError>;
/** @internal */
export declare const UserEventPayload202Next$inboundSchema: z.ZodType<UserEventPayload202Next, z.ZodTypeDef, unknown>;
export declare function userEventPayload202NextFromJSON(jsonString: string): SafeParseResult<UserEventPayload202Next, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndTwo$inboundSchema: z.ZodType<TwoHundredAndTwo, z.ZodTypeDef, unknown>;
export declare function twoHundredAndTwoFromJSON(jsonString: string): SafeParseResult<TwoHundredAndTwo, SDKValidationError>;
/** @internal */
export declare const TwoHundredAndOne$inboundSchema: z.ZodType<TwoHundredAndOne, z.ZodTypeDef, unknown>;
export declare function twoHundredAndOneFromJSON(jsonString: string): SafeParseResult<TwoHundredAndOne, SDKValidationError>;
/** @internal */
export declare const TwoHundred$inboundSchema: z.ZodType<TwoHundred, z.ZodTypeDef, unknown>;
export declare function twoHundredFromJSON(jsonString: string): SafeParseResult<TwoHundred, SDKValidationError>;
/** @internal */
export declare const BuildQueueConfiguration$inboundSchema: z.ZodNativeEnum<typeof BuildQueueConfiguration>;
/** @internal */
export declare const OldBuildQueueConfiguration$inboundSchema: z.ZodNativeEnum<typeof OldBuildQueueConfiguration>;
/** @internal */
export declare const OneHundredAndNinetyNine$inboundSchema: z.ZodType<OneHundredAndNinetyNine, z.ZodTypeDef, unknown>;
export declare function oneHundredAndNinetyNineFromJSON(jsonString: string): SafeParseResult<OneHundredAndNinetyNine, SDKValidationError>;
/** @internal */
export declare const OneHundredAndNinetyEight$inboundSchema: z.ZodType<OneHundredAndNinetyEight, z.ZodTypeDef, unknown>;
export declare function oneHundredAndNinetyEightFromJSON(jsonString: string): SafeParseResult<OneHundredAndNinetyEight, SDKValidationError>;
/** @internal */
export declare const UserEventPayload197Action$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload197Action>;
/** @internal */
export declare const OneHundredAndNinetySeven$inboundSchema: z.ZodType<OneHundredAndNinetySeven, z.ZodTypeDef, unknown>;
export declare function oneHundredAndNinetySevenFromJSON(jsonString: string): SafeParseResult<OneHundredAndNinetySeven, SDKValidationError>;
/** @internal */
export declare const OneHundredAndNinetySix$inboundSchema: z.ZodType<OneHundredAndNinetySix, z.ZodTypeDef, unknown>;
export declare function oneHundredAndNinetySixFromJSON(jsonString: string): SafeParseResult<OneHundredAndNinetySix, SDKValidationError>;
/** @internal */
export declare const UserEventPayload195Team$inboundSchema: z.ZodType<UserEventPayload195Team, z.ZodTypeDef, unknown>;
export declare function userEventPayload195TeamFromJSON(jsonString: string): SafeParseResult<UserEventPayload195Team, SDKValidationError>;
/** @internal */
export declare const EnvId2$inboundSchema: z.ZodNativeEnum<typeof EnvId2>;
/** @internal */
export declare const EnvId$inboundSchema: z.ZodType<EnvId, z.ZodTypeDef, unknown>;
export declare function envIdFromJSON(jsonString: string): SafeParseResult<EnvId, SDKValidationError>;
/** @internal */
export declare const Aws$inboundSchema: z.ZodType<Aws, z.ZodTypeDef, unknown>;
export declare function awsFromJSON(jsonString: string): SafeParseResult<Aws, SDKValidationError>;
/** @internal */
export declare const OldConnectConfigurations$inboundSchema: z.ZodType<OldConnectConfigurations, z.ZodTypeDef, unknown>;
export declare function oldConnectConfigurationsFromJSON(jsonString: string): SafeParseResult<OldConnectConfigurations, SDKValidationError>;
/** @internal */
export declare const UserEventEnvId2$inboundSchema: z.ZodNativeEnum<typeof UserEventEnvId2>;
/** @internal */
export declare const PayloadEnvId$inboundSchema: z.ZodType<PayloadEnvId, z.ZodTypeDef, unknown>;
export declare function payloadEnvIdFromJSON(jsonString: string): SafeParseResult<PayloadEnvId, SDKValidationError>;
/** @internal */
export declare const PayloadAws$inboundSchema: z.ZodType<PayloadAws, z.ZodTypeDef, unknown>;
export declare function payloadAwsFromJSON(jsonString: string): SafeParseResult<PayloadAws, SDKValidationError>;
/** @internal */
export declare const NewConnectConfigurations$inboundSchema: z.ZodType<NewConnectConfigurations, z.ZodTypeDef, unknown>;
export declare function newConnectConfigurationsFromJSON(jsonString: string): SafeParseResult<NewConnectConfigurations, SDKValidationError>;
/** @internal */
export declare const UserEventPayload195Project$inboundSchema: z.ZodType<UserEventPayload195Project, z.ZodTypeDef, unknown>;
export declare function userEventPayload195ProjectFromJSON(jsonString: string): SafeParseResult<UserEventPayload195Project, SDKValidationError>;
/** @internal */
export declare const OneHundredAndNinetyFive$inboundSchema: z.ZodType<OneHundredAndNinetyFive, z.ZodTypeDef, unknown>;
export declare function oneHundredAndNinetyFiveFromJSON(jsonString: string): SafeParseResult<OneHundredAndNinetyFive, SDKValidationError>;
/** @internal */
export declare const OneHundredAndNinetyFour$inboundSchema: z.ZodType<OneHundredAndNinetyFour, z.ZodTypeDef, unknown>;
export declare function oneHundredAndNinetyFourFromJSON(jsonString: string): SafeParseResult<OneHundredAndNinetyFour, SDKValidationError>;
/** @internal */
export declare const OneHundredAndNinetyThree$inboundSchema: z.ZodType<OneHundredAndNinetyThree, z.ZodTypeDef, unknown>;
export declare function oneHundredAndNinetyThreeFromJSON(jsonString: string): SafeParseResult<OneHundredAndNinetyThree, SDKValidationError>;
/** @internal */
export declare const OneHundredAndNinetyTwo$inboundSchema: z.ZodType<OneHundredAndNinetyTwo, z.ZodTypeDef, unknown>;
export declare function oneHundredAndNinetyTwoFromJSON(jsonString: string): SafeParseResult<OneHundredAndNinetyTwo, SDKValidationError>;
/** @internal */
export declare const OneHundredAndNinetyOne$inboundSchema: z.ZodType<OneHundredAndNinetyOne, z.ZodTypeDef, unknown>;
export declare function oneHundredAndNinetyOneFromJSON(jsonString: string): SafeParseResult<OneHundredAndNinetyOne, SDKValidationError>;
/** @internal */
export declare const OneHundredAndNinety$inboundSchema: z.ZodType<OneHundredAndNinety, z.ZodTypeDef, unknown>;
export declare function oneHundredAndNinetyFromJSON(jsonString: string): SafeParseResult<OneHundredAndNinety, SDKValidationError>;
/** @internal */
export declare const UserEventPayload189Previous$inboundSchema: z.ZodType<UserEventPayload189Previous, z.ZodTypeDef, unknown>;
export declare function userEventPayload189PreviousFromJSON(jsonString: string): SafeParseResult<UserEventPayload189Previous, SDKValidationError>;
/** @internal */
export declare const UserEventPayload189Next$inboundSchema: z.ZodType<UserEventPayload189Next, z.ZodTypeDef, unknown>;
export declare function userEventPayload189NextFromJSON(jsonString: string): SafeParseResult<UserEventPayload189Next, SDKValidationError>;
/** @internal */
export declare const OneHundredAndEightyNine$inboundSchema: z.ZodType<OneHundredAndEightyNine, z.ZodTypeDef, unknown>;
export declare function oneHundredAndEightyNineFromJSON(jsonString: string): SafeParseResult<OneHundredAndEightyNine, SDKValidationError>;
/** @internal */
export declare const OneHundredAndEightyEight$inboundSchema: z.ZodType<OneHundredAndEightyEight, z.ZodTypeDef, unknown>;
export declare function oneHundredAndEightyEightFromJSON(jsonString: string): SafeParseResult<OneHundredAndEightyEight, SDKValidationError>;
/** @internal */
export declare const OneHundredAndEightySeven$inboundSchema: z.ZodType<OneHundredAndEightySeven, z.ZodTypeDef, unknown>;
export declare function oneHundredAndEightySevenFromJSON(jsonString: string): SafeParseResult<OneHundredAndEightySeven, SDKValidationError>;
/** @internal */
export declare const OneHundredAndEightySix$inboundSchema: z.ZodType<OneHundredAndEightySix, z.ZodTypeDef, unknown>;
export declare function oneHundredAndEightySixFromJSON(jsonString: string): SafeParseResult<OneHundredAndEightySix, SDKValidationError>;
/** @internal */
export declare const UserEventPayload185Action$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload185Action>;
/** @internal */
export declare const OneHundredAndEightyFive$inboundSchema: z.ZodType<OneHundredAndEightyFive, z.ZodTypeDef, unknown>;
export declare function oneHundredAndEightyFiveFromJSON(jsonString: string): SafeParseResult<OneHundredAndEightyFive, SDKValidationError>;
/** @internal */
export declare const OneHundredAndEightyFour$inboundSchema: z.ZodType<OneHundredAndEightyFour, z.ZodTypeDef, unknown>;
export declare function oneHundredAndEightyFourFromJSON(jsonString: string): SafeParseResult<OneHundredAndEightyFour, SDKValidationError>;
/** @internal */
export declare const ProjectAnalytics$inboundSchema: z.ZodType<ProjectAnalytics, z.ZodTypeDef, unknown>;
export declare function projectAnalyticsFromJSON(jsonString: string): SafeParseResult<ProjectAnalytics, SDKValidationError>;
/** @internal */
export declare const PrevProjectAnalytics$inboundSchema: z.ZodType<PrevProjectAnalytics, z.ZodTypeDef, unknown>;
export declare function prevProjectAnalyticsFromJSON(jsonString: string): SafeParseResult<PrevProjectAnalytics, SDKValidationError>;
/** @internal */
export declare const OneHundredAndEightyThree$inboundSchema: z.ZodType<OneHundredAndEightyThree, z.ZodTypeDef, unknown>;
export declare function oneHundredAndEightyThreeFromJSON(jsonString: string): SafeParseResult<OneHundredAndEightyThree, SDKValidationError>;
/** @internal */
export declare const OneHundredAndEightyTwo$inboundSchema: z.ZodType<OneHundredAndEightyTwo, z.ZodTypeDef, unknown>;
export declare function oneHundredAndEightyTwoFromJSON(jsonString: string): SafeParseResult<OneHundredAndEightyTwo, SDKValidationError>;
/** @internal */
export declare const OneHundredAndEightyOne$inboundSchema: z.ZodType<OneHundredAndEightyOne, z.ZodTypeDef, unknown>;
export declare function oneHundredAndEightyOneFromJSON(jsonString: string): SafeParseResult<OneHundredAndEightyOne, SDKValidationError>;
/** @internal */
export declare const PayloadPrivateLinkEndpoint$inboundSchema: z.ZodType<PayloadPrivateLinkEndpoint, z.ZodTypeDef, unknown>;
export declare function payloadPrivateLinkEndpointFromJSON(jsonString: string): SafeParseResult<PayloadPrivateLinkEndpoint, SDKValidationError>;
/** @internal */
export declare const PreviousEndpoint$inboundSchema: z.ZodType<PreviousEndpoint, z.ZodTypeDef, unknown>;
export declare function previousEndpointFromJSON(jsonString: string): SafeParseResult<PreviousEndpoint, SDKValidationError>;
/** @internal */
export declare const OneHundredAndEighty$inboundSchema: z.ZodType<OneHundredAndEighty, z.ZodTypeDef, unknown>;
export declare function oneHundredAndEightyFromJSON(jsonString: string): SafeParseResult<OneHundredAndEighty, SDKValidationError>;
/** @internal */
export declare const UserEventPayloadPrev$inboundSchema: z.ZodType<UserEventPayloadPrev, z.ZodTypeDef, unknown>;
export declare function userEventPayloadPrevFromJSON(jsonString: string): SafeParseResult<UserEventPayloadPrev, SDKValidationError>;
/** @internal */
export declare const Current$inboundSchema: z.ZodType<Current, z.ZodTypeDef, unknown>;
export declare function currentFromJSON(jsonString: string): SafeParseResult<Current, SDKValidationError>;
/** @internal */
export declare const OneHundredAndSeventyNine$inboundSchema: z.ZodType<OneHundredAndSeventyNine, z.ZodTypeDef, unknown>;
export declare function oneHundredAndSeventyNineFromJSON(jsonString: string): SafeParseResult<OneHundredAndSeventyNine, SDKValidationError>;
/** @internal */
export declare const PrivateLinkEndpoint$inboundSchema: z.ZodType<PrivateLinkEndpoint, z.ZodTypeDef, unknown>;
export declare function privateLinkEndpointFromJSON(jsonString: string): SafeParseResult<PrivateLinkEndpoint, SDKValidationError>;
/** @internal */
export declare const OneHundredAndSeventyEight$inboundSchema: z.ZodType<OneHundredAndSeventyEight, z.ZodTypeDef, unknown>;
export declare function oneHundredAndSeventyEightFromJSON(jsonString: string): SafeParseResult<OneHundredAndSeventyEight, SDKValidationError>;
/** @internal */
export declare const Endpoint$inboundSchema: z.ZodType<Endpoint, z.ZodTypeDef, unknown>;
export declare function endpointFromJSON(jsonString: string): SafeParseResult<Endpoint, SDKValidationError>;
/** @internal */
export declare const OneHundredAndSeventySeven$inboundSchema: z.ZodType<OneHundredAndSeventySeven, z.ZodTypeDef, unknown>;
export declare function oneHundredAndSeventySevenFromJSON(jsonString: string): SafeParseResult<OneHundredAndSeventySeven, SDKValidationError>;
/** @internal */
export declare const OneHundredAndSeventySix$inboundSchema: z.ZodType<OneHundredAndSeventySix, z.ZodTypeDef, unknown>;
export declare function oneHundredAndSeventySixFromJSON(jsonString: string): SafeParseResult<OneHundredAndSeventySix, SDKValidationError>;
/** @internal */
export declare const OneHundredAndSeventyFive$inboundSchema: z.ZodType<OneHundredAndSeventyFive, z.ZodTypeDef, unknown>;
export declare function oneHundredAndSeventyFiveFromJSON(jsonString: string): SafeParseResult<OneHundredAndSeventyFive, SDKValidationError>;
/** @internal */
export declare const UserEventPayload174Role$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload174Role>;
/** @internal */
export declare const UserEventPayloadOrigin$inboundSchema: z.ZodNativeEnum<typeof UserEventPayloadOrigin>;
/** @internal */
export declare const PayloadGitUserId$inboundSchema: z.ZodType<PayloadGitUserId, z.ZodTypeDef, unknown>;
export declare function payloadGitUserIdFromJSON(jsonString: string): SafeParseResult<PayloadGitUserId, SDKValidationError>;
/** @internal */
export declare const PayloadJoinedFrom$inboundSchema: z.ZodType<PayloadJoinedFrom, z.ZodTypeDef, unknown>;
export declare function payloadJoinedFromFromJSON(jsonString: string): SafeParseResult<PayloadJoinedFrom, SDKValidationError>;
/** @internal */
export declare const RemovedUsers$inboundSchema: z.ZodType<RemovedUsers, z.ZodTypeDef, unknown>;
export declare function removedUsersFromJSON(jsonString: string): SafeParseResult<RemovedUsers, SDKValidationError>;
//# sourceMappingURL=removedusers.d.ts.map