@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,657 lines • 108 kB
TypeScript
import * as z from "zod/v3";
import { ClosedEnum } from "../types/enums.js";
import { Result as SafeParseResult } from "../types/fp.js";
import { ACLAction } from "./aclaction.js";
import { GetMicrofrontendsInGroupBuildMachineType, GetMicrofrontendsInGroupFunctionDefaultMemoryType } from "./getmicrofrontendsingroupbuildmachinetype.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
export declare const GetMicrofrontendsInGroupBuildMachineSelection: {
readonly Elastic: "elastic";
readonly Fixed: "fixed";
};
export type GetMicrofrontendsInGroupBuildMachineSelection = ClosedEnum<typeof GetMicrofrontendsInGroupBuildMachineSelection>;
export declare const GetMicrofrontendsInGroupBuildMachineElasticReason: {
readonly BasicFloor: "basic-floor";
readonly BuildTimeoutFailure: "build-timeout-failure";
readonly EnospcFailure: "enospc-failure";
readonly EnterpriseFloor: "enterprise-floor";
readonly HighPeakDisk: "high-peak-disk";
readonly HighPeakMemory: "high-peak-memory";
readonly LongBuildDuration: "long-build-duration";
readonly OomFailure: "oom-failure";
readonly ShortBuildDuration: "short-build-duration";
readonly SustainedHighCpu: "sustained-high-cpu";
};
export type GetMicrofrontendsInGroupBuildMachineElasticReason = ClosedEnum<typeof GetMicrofrontendsInGroupBuildMachineElasticReason>;
export declare const GetMicrofrontendsInGroupMicrofrontendsConfiguration: {
readonly SkipNamespaceQueue: "SKIP_NAMESPACE_QUEUE";
readonly WaitForNamespaceQueue: "WAIT_FOR_NAMESPACE_QUEUE";
};
export type GetMicrofrontendsInGroupMicrofrontendsConfiguration = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsConfiguration>;
export type GetMicrofrontendsInGroupMicrofrontendsBuildQueue = {
configuration?: GetMicrofrontendsInGroupMicrofrontendsConfiguration | undefined;
};
export type GetMicrofrontendsInGroupDefaultResourceConfig = {
fluid?: boolean | undefined;
functionDefaultRegions: Array<string>;
functionDefaultTimeout?: number | undefined;
functionDefaultMemoryType?: GetMicrofrontendsInGroupFunctionDefaultMemoryType | undefined;
functionZeroConfigFailover?: boolean | undefined;
elasticConcurrencyEnabled?: boolean | undefined;
buildMachineType?: GetMicrofrontendsInGroupBuildMachineType | undefined;
buildMachineSelection?: GetMicrofrontendsInGroupBuildMachineSelection | undefined;
buildMachineElasticLastUpdated?: number | undefined;
buildMachineElasticReason?: GetMicrofrontendsInGroupBuildMachineElasticReason | undefined;
isNSNBDisabled?: boolean | undefined;
buildQueue?: GetMicrofrontendsInGroupMicrofrontendsBuildQueue | undefined;
enableFunctionsBeta?: boolean | undefined;
};
export type GetMicrofrontendsInGroupStaticIps = {
builds: boolean;
enabled: boolean;
regions: Array<string>;
};
export declare const GetMicrofrontendsInGroupMicrofrontendsDeploymentType: {
readonly All: "all";
readonly AllExceptCustomDomains: "all_except_custom_domains";
readonly Preview: "preview";
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
};
export type GetMicrofrontendsInGroupMicrofrontendsDeploymentType = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsDeploymentType>;
export declare const GetMicrofrontendsInGroupCve55182MigrationAppliedFrom: {
readonly All: "all";
readonly AllExceptCustomDomains: "all_except_custom_domains";
readonly Preview: "preview";
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
};
export type GetMicrofrontendsInGroupCve55182MigrationAppliedFrom = ClosedEnum<typeof GetMicrofrontendsInGroupCve55182MigrationAppliedFrom>;
export declare const GetMicrofrontendsInGroupApril2026SecurityIncidentMigrationAppliedFrom: {
readonly All: "all";
readonly AllExceptCustomDomains: "all_except_custom_domains";
readonly Preview: "preview";
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
};
export type GetMicrofrontendsInGroupApril2026SecurityIncidentMigrationAppliedFrom = ClosedEnum<typeof GetMicrofrontendsInGroupApril2026SecurityIncidentMigrationAppliedFrom>;
export type GetMicrofrontendsInGroupSsoProtection = {
deploymentType: GetMicrofrontendsInGroupMicrofrontendsDeploymentType;
cve55182MigrationAppliedFrom?: GetMicrofrontendsInGroupCve55182MigrationAppliedFrom | null | undefined;
april2026SecurityIncidentMigrationAppliedFrom?: GetMicrofrontendsInGroupApril2026SecurityIncidentMigrationAppliedFrom | null | undefined;
};
export type GetMicrofrontendsInGroupAliasAssigned = number | boolean;
export type GetMicrofrontendsInGroupMicrofrontendsAliasError = {
code: string;
message: string;
};
/**
* The type of matching to perform
*/
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsTargetsType: {
readonly EndsWith: "endsWith";
readonly Equals: "equals";
readonly StartsWith: "startsWith";
};
/**
* The type of matching to perform
*/
export type GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsTargetsType = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsTargetsType>;
export type GetMicrofrontendsInGroupMicrofrontendsResponseBranchMatcher = {
/**
* The type of matching to perform
*/
type: GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsTargetsType;
/**
* The pattern to match against branch names
*/
pattern: string;
};
export type GetMicrofrontendsInGroupMicrofrontendsBuilds = {
use: string;
src?: string | undefined;
dest?: string | undefined;
};
export declare const GetMicrofrontendsInGroupMicrofrontendsChecksConclusion: {
readonly Canceled: "canceled";
readonly Failed: "failed";
readonly Skipped: "skipped";
readonly Succeeded: "succeeded";
};
export type GetMicrofrontendsInGroupMicrofrontendsChecksConclusion = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsChecksConclusion>;
export declare const GetMicrofrontendsInGroupMicrofrontendsChecksState: {
readonly Completed: "completed";
readonly Registered: "registered";
readonly Running: "running";
};
export type GetMicrofrontendsInGroupMicrofrontendsChecksState = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsChecksState>;
export type GetMicrofrontendsInGroupMicrofrontendsResponseCreator = {
email: string;
githubLogin?: string | undefined;
gitlabLogin?: string | undefined;
uid: string;
username: string;
};
export type GetMicrofrontendsInGroupMicrofrontendsOidcTokenClaims = {
iss: string;
sub: string;
scope: string;
aud: string;
owner: string;
ownerId: string;
project: string;
projectId: string;
environment: string;
customEnvironmentId?: string | undefined;
mfeGroupIds?: Array<string> | undefined;
plan?: string | undefined;
};
export declare const GetMicrofrontendsInGroupMicrofrontendsPlan: {
readonly Enterprise: "enterprise";
readonly Hobby: "hobby";
readonly Pro: "pro";
};
export type GetMicrofrontendsInGroupMicrofrontendsPlan = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsPlan>;
export declare const GetMicrofrontendsInGroupMicrofrontendsReadyState: {
readonly Blocked: "BLOCKED";
readonly Building: "BUILDING";
readonly Canceled: "CANCELED";
readonly Error: "ERROR";
readonly Initializing: "INITIALIZING";
readonly Queued: "QUEUED";
readonly Ready: "READY";
};
export type GetMicrofrontendsInGroupMicrofrontendsReadyState = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsReadyState>;
export declare const GetMicrofrontendsInGroupMicrofrontendsReadySubstate: {
readonly Promoted: "PROMOTED";
readonly Rolling: "ROLLING";
readonly Staged: "STAGED";
};
export type GetMicrofrontendsInGroupMicrofrontendsReadySubstate = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsReadySubstate>;
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200Type: {
readonly Lambdas: "LAMBDAS";
};
export type GetMicrofrontendsInGroupMicrofrontendsResponse200Type = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200Type>;
export type GetMicrofrontendsInGroupTargets = {
id: string;
alias?: Array<string> | undefined;
aliasAssigned?: number | boolean | null | undefined;
aliasError?: GetMicrofrontendsInGroupMicrofrontendsAliasError | null | undefined;
aliasFinal?: string | null | undefined;
automaticAliases?: Array<string> | undefined;
branchMatcher?: GetMicrofrontendsInGroupMicrofrontendsResponseBranchMatcher | undefined;
buildingAt?: number | undefined;
builds?: Array<GetMicrofrontendsInGroupMicrofrontendsBuilds> | undefined;
checksConclusion?: GetMicrofrontendsInGroupMicrofrontendsChecksConclusion | undefined;
checksState?: GetMicrofrontendsInGroupMicrofrontendsChecksState | undefined;
connectBuildsEnabled?: boolean | undefined;
connectConfigurationId?: string | undefined;
createdAt: number;
createdIn: string;
creator: GetMicrofrontendsInGroupMicrofrontendsResponseCreator | null;
deletedAt?: number | undefined;
deploymentHostname: string;
forced?: boolean | undefined;
name: string;
meta?: {
[k: string]: string;
} | undefined;
monorepoManager?: string | null | undefined;
oidcTokenClaims?: GetMicrofrontendsInGroupMicrofrontendsOidcTokenClaims | undefined;
plan: GetMicrofrontendsInGroupMicrofrontendsPlan;
/**
* Whether or not preview comments are enabled for the deployment
*/
previewCommentsEnabled?: boolean | undefined;
private: boolean;
readyAt?: number | undefined;
readyState: GetMicrofrontendsInGroupMicrofrontendsReadyState;
readySubstate?: GetMicrofrontendsInGroupMicrofrontendsReadySubstate | undefined;
requestedAt?: number | undefined;
target?: string | null | undefined;
teamId?: string | null | undefined;
type: GetMicrofrontendsInGroupMicrofrontendsResponse200Type;
url: string;
/**
* Present for user creators; omitted for app/integration/system creators.
*/
userId?: string | undefined;
withCache?: boolean | undefined;
};
export type GetMicrofrontendsInGroupPermissions = {
aliasProject?: Array<ACLAction> | undefined;
aliasProtectionBypass?: Array<ACLAction> | undefined;
bulkRedirects?: Array<ACLAction> | undefined;
buildMachine?: Array<ACLAction> | undefined;
connectConfigurationLink?: Array<ACLAction> | undefined;
dataCacheNamespace?: Array<ACLAction> | undefined;
deployment?: Array<ACLAction> | undefined;
deploymentBuildLogs?: Array<ACLAction> | undefined;
deploymentCheck?: Array<ACLAction> | undefined;
deploymentCheckPreview?: Array<ACLAction> | undefined;
deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
deploymentProductionGit?: Array<ACLAction> | undefined;
deploymentV0?: Array<ACLAction> | undefined;
deploymentPreview?: Array<ACLAction> | undefined;
deploymentPrivate?: Array<ACLAction> | undefined;
deploymentPromote?: Array<ACLAction> | undefined;
deploymentRollback?: Array<ACLAction> | undefined;
edgeCacheNamespace?: Array<ACLAction> | undefined;
environments?: Array<ACLAction> | undefined;
job?: Array<ACLAction> | undefined;
logs?: Array<ACLAction> | undefined;
logsPreset?: Array<ACLAction> | undefined;
observabilityData?: Array<ACLAction> | undefined;
onDemandBuild?: Array<ACLAction> | undefined;
onDemandConcurrency?: Array<ACLAction> | undefined;
optionsAllowlist?: Array<ACLAction> | undefined;
passwordProtection?: Array<ACLAction> | undefined;
privateLinkEndpoint?: Array<ACLAction> | undefined;
productionAliasProtectionBypass?: Array<ACLAction> | undefined;
productionShareableLink?: Array<ACLAction> | undefined;
project?: Array<ACLAction> | undefined;
projectAccessGroup?: Array<ACLAction> | undefined;
projectAnalyticsSampling?: Array<ACLAction> | undefined;
projectAnalyticsUsage?: Array<ACLAction> | undefined;
projectCheck?: Array<ACLAction> | undefined;
projectCheckRun?: Array<ACLAction> | undefined;
projectDeploymentExpiration?: Array<ACLAction> | undefined;
projectDeploymentHook?: Array<ACLAction> | undefined;
projectDeploymentProtectionStrict?: Array<ACLAction> | undefined;
projectDomain?: Array<ACLAction> | undefined;
projectDomainCheckConfig?: Array<ACLAction> | undefined;
projectDomainMove?: Array<ACLAction> | undefined;
projectDomainVerify?: Array<ACLAction> | undefined;
projectEvent?: Array<ACLAction> | undefined;
projectEnvVars?: Array<ACLAction> | undefined;
projectEnvVarsProduction?: Array<ACLAction> | undefined;
projectEnvVarsUnownedByIntegration?: Array<ACLAction> | undefined;
projectFlags?: Array<ACLAction> | undefined;
projectFlagsProduction?: Array<ACLAction> | undefined;
projectFlagsSDKKey?: Array<ACLAction> | undefined;
projectFromV0?: Array<ACLAction> | undefined;
projectId?: Array<ACLAction> | undefined;
projectIntegrationConfiguration?: Array<ACLAction> | undefined;
projectLink?: Array<ACLAction> | undefined;
projectMember?: Array<ACLAction> | undefined;
projectMonitoring?: Array<ACLAction> | undefined;
projectOIDCToken?: Array<ACLAction> | undefined;
projectPermissions?: Array<ACLAction> | undefined;
projectProductionBranch?: Array<ACLAction> | undefined;
projectProtectionBypass?: Array<ACLAction> | undefined;
projectRollingRelease?: Array<ACLAction> | undefined;
projectRoutes?: Array<ACLAction> | undefined;
projectSupportCase?: Array<ACLAction> | undefined;
projectSupportCaseComment?: Array<ACLAction> | undefined;
projectTier?: Array<ACLAction> | undefined;
projectTransfer?: Array<ACLAction> | undefined;
projectTransferOut?: Array<ACLAction> | undefined;
projectUsage?: Array<ACLAction> | undefined;
pageIntegrity?: Array<ACLAction> | undefined;
seawallConfig?: Array<ACLAction> | undefined;
securityPlusConfiguration?: Array<ACLAction> | undefined;
shareableLink?: Array<ACLAction> | undefined;
shareableLinkStrict?: Array<ACLAction> | undefined;
sharedEnvVarConnection?: Array<ACLAction> | undefined;
skewProtection?: Array<ACLAction> | undefined;
analytics?: Array<ACLAction> | undefined;
trustedIps?: Array<ACLAction> | undefined;
trustedSources?: Array<ACLAction> | undefined;
v0Chat?: Array<ACLAction> | undefined;
vercelAuth?: Array<ACLAction> | undefined;
vercelRun?: Array<ACLAction> | undefined;
webAnalytics?: Array<ACLAction> | undefined;
workflowRunData?: Array<ACLAction> | undefined;
oauth2Connection?: Array<ACLAction> | undefined;
user?: Array<ACLAction> | undefined;
userConnection?: Array<ACLAction> | undefined;
userMfaConfiguration?: Array<ACLAction> | undefined;
userPreference?: Array<ACLAction> | undefined;
userSudo?: Array<ACLAction> | undefined;
webAuthn?: Array<ACLAction> | undefined;
accessGroup?: Array<ACLAction> | undefined;
agent?: Array<ACLAction> | undefined;
aiGatewayApiKey?: Array<ACLAction> | undefined;
aiGatewayApiKeyBypassAll?: Array<ACLAction> | undefined;
aiGatewayApiKeyOwnedBySelf?: Array<ACLAction> | undefined;
aiGatewayApiKeySpendAttribution?: Array<ACLAction> | undefined;
aiGatewayApiKeyZdrExemption?: Array<ACLAction> | undefined;
aiGatewayBudget?: Array<ACLAction> | undefined;
aiGatewayCredits?: Array<ACLAction> | undefined;
aiGatewayPrivateModels?: Array<ACLAction> | undefined;
aiGatewayGuardrails?: Array<ACLAction> | undefined;
aiGatewayRules?: Array<ACLAction> | undefined;
aiGatewaySettings?: Array<ACLAction> | undefined;
aiGatewayTranscripts?: Array<ACLAction> | undefined;
aiGatewayTranscriptsSettings?: Array<ACLAction> | undefined;
aiGatewayUsage?: Array<ACLAction> | undefined;
aiGatewayVirtualModelConfigs?: Array<ACLAction> | undefined;
alerts?: Array<ACLAction> | undefined;
alertRules?: Array<ACLAction> | undefined;
aliasGlobal?: Array<ACLAction> | undefined;
analyticsSampling?: Array<ACLAction> | undefined;
analyticsUsage?: Array<ACLAction> | undefined;
apiKey?: Array<ACLAction> | undefined;
apiKeyAiGateway?: Array<ACLAction> | undefined;
apiKeyOwnedBySelf?: Array<ACLAction> | undefined;
oauth2Application?: Array<ACLAction> | undefined;
vercelAppInstallation?: Array<ACLAction> | undefined;
vercelAppInstallationRequest?: Array<ACLAction> | undefined;
auditLog?: Array<ACLAction> | undefined;
automation?: Array<ACLAction> | undefined;
billingAddress?: Array<ACLAction> | undefined;
billingInformation?: Array<ACLAction> | undefined;
billingInvoice?: Array<ACLAction> | undefined;
billingInvoiceEmailRecipient?: Array<ACLAction> | undefined;
billingInvoiceLanguage?: Array<ACLAction> | undefined;
billingPlan?: Array<ACLAction> | undefined;
billingPurchaseOrder?: Array<ACLAction> | undefined;
billingRefund?: Array<ACLAction> | undefined;
billingTaxId?: Array<ACLAction> | undefined;
blob?: Array<ACLAction> | undefined;
blobStoreTokenSet?: Array<ACLAction> | undefined;
budget?: Array<ACLAction> | undefined;
cacheArtifact?: Array<ACLAction> | undefined;
cacheArtifactUsageEvent?: Array<ACLAction> | undefined;
codeChecks?: Array<ACLAction> | undefined;
codeOwners?: Array<ACLAction> | undefined;
ciInvocations?: Array<ACLAction> | undefined;
ciLogs?: Array<ACLAction> | undefined;
concurrentBuilds?: Array<ACLAction> | undefined;
connect?: Array<ACLAction> | undefined;
connectConfiguration?: Array<ACLAction> | undefined;
connectLogs?: Array<ACLAction> | undefined;
connexClient?: Array<ACLAction> | undefined;
connexClientProject?: Array<ACLAction> | undefined;
connexContact?: Array<ACLAction> | undefined;
connexInstallation?: Array<ACLAction> | undefined;
connexToken?: Array<ACLAction> | undefined;
buildMachineDefault?: Array<ACLAction> | undefined;
cursorOriginInstallation?: Array<ACLAction> | undefined;
dataCacheBillingSettings?: Array<ACLAction> | undefined;
defaultDeploymentProtection?: Array<ACLAction> | undefined;
deploymentPolicy?: Array<ACLAction> | undefined;
domain?: Array<ACLAction> | undefined;
domainAcceptDelegation?: Array<ACLAction> | undefined;
domainAuthCodes?: Array<ACLAction> | undefined;
domainCertificate?: Array<ACLAction> | undefined;
domainCheckConfig?: Array<ACLAction> | undefined;
domainMove?: Array<ACLAction> | undefined;
domainPurchase?: Array<ACLAction> | undefined;
domainRecord?: Array<ACLAction> | undefined;
domainTransferIn?: Array<ACLAction> | undefined;
drain?: Array<ACLAction> | undefined;
edgeConfig?: Array<ACLAction> | undefined;
edgeConfigItem?: Array<ACLAction> | undefined;
edgeConfigSchema?: Array<ACLAction> | undefined;
edgeConfigToken?: Array<ACLAction> | undefined;
endpointVerification?: Array<ACLAction> | undefined;
event?: Array<ACLAction> | undefined;
fileUpload?: Array<ACLAction> | undefined;
flagsExplorerSubscription?: Array<ACLAction> | undefined;
gitRepository?: Array<ACLAction> | undefined;
imageOptimizationNewPrice?: Array<ACLAction> | undefined;
integration?: Array<ACLAction> | undefined;
integrationAccount?: Array<ACLAction> | undefined;
integrationConfiguration?: Array<ACLAction> | undefined;
integrationConfigurationProjects?: Array<ACLAction> | undefined;
integrationConfigurationRole?: Array<ACLAction> | undefined;
integrationConfigurationTransfer?: Array<ACLAction> | undefined;
integrationDeploymentAction?: Array<ACLAction> | undefined;
integrationEvent?: Array<ACLAction> | undefined;
integrationLog?: Array<ACLAction> | undefined;
integrationResource?: Array<ACLAction> | undefined;
integrationResourceData?: Array<ACLAction> | undefined;
integrationResourceReplCommand?: Array<ACLAction> | undefined;
integrationResourceSecrets?: Array<ACLAction> | undefined;
integrationSSOSession?: Array<ACLAction> | undefined;
integrationStrict?: Array<ACLAction> | undefined;
integrationStoreTokenSet?: Array<ACLAction> | undefined;
integrationVercelConfigurationOverride?: Array<ACLAction> | undefined;
integrationPullRequest?: Array<ACLAction> | undefined;
ipBlocking?: Array<ACLAction> | undefined;
jobGlobal?: Array<ACLAction> | undefined;
kmsIssuer?: Array<ACLAction> | undefined;
kmsProjectGrant?: Array<ACLAction> | undefined;
logDrain?: Array<ACLAction> | undefined;
marketplaceBillingData?: Array<ACLAction> | undefined;
marketplaceExperimentationEdgeConfigData?: Array<ACLAction> | undefined;
marketplaceExperimentationItem?: Array<ACLAction> | undefined;
marketplaceFlexCommit?: Array<ACLAction> | undefined;
marketplaceInstallationMember?: Array<ACLAction> | undefined;
marketplaceInvoice?: Array<ACLAction> | undefined;
marketplaceSettings?: Array<ACLAction> | undefined;
monitoring?: Array<ACLAction> | undefined;
monitoringAlert?: Array<ACLAction> | undefined;
monitoringChart?: Array<ACLAction> | undefined;
monitoringQuery?: Array<ACLAction> | undefined;
monitoringSettings?: Array<ACLAction> | undefined;
notificationCustomerBudget?: Array<ACLAction> | undefined;
notificationDeploymentFailed?: Array<ACLAction> | undefined;
notificationDomainConfiguration?: Array<ACLAction> | undefined;
notificationDomainExpire?: Array<ACLAction> | undefined;
notificationDomainMoved?: Array<ACLAction> | undefined;
notificationDomainPurchase?: Array<ACLAction> | undefined;
notificationDomainRenewal?: Array<ACLAction> | undefined;
notificationDomainTransfer?: Array<ACLAction> | undefined;
notificationDomainUnverified?: Array<ACLAction> | undefined;
notificationMonitoringAlert?: Array<ACLAction> | undefined;
notificationPaymentFailed?: Array<ACLAction> | undefined;
notificationPreferences?: Array<ACLAction> | undefined;
notificationStatementOfReasons?: Array<ACLAction> | undefined;
notificationUsageAlert?: Array<ACLAction> | undefined;
oidcFederationPolicy?: Array<ACLAction> | undefined;
observabilityConfiguration?: Array<ACLAction> | undefined;
observabilityFunnel?: Array<ACLAction> | undefined;
observabilityNotebook?: Array<ACLAction> | undefined;
openTelemetryEndpoint?: Array<ACLAction> | undefined;
ownEvent?: Array<ACLAction> | undefined;
organization?: Array<ACLAction> | undefined;
organizationDomain?: Array<ACLAction> | undefined;
organizationTeam?: Array<ACLAction> | undefined;
passwordProtectionInvoiceItem?: Array<ACLAction> | undefined;
paymentMethod?: Array<ACLAction> | undefined;
permissions?: Array<ACLAction> | undefined;
postgres?: Array<ACLAction> | undefined;
postgresStoreTokenSet?: Array<ACLAction> | undefined;
previewDeploymentSuffix?: Array<ACLAction> | undefined;
privateCloudAccount?: Array<ACLAction> | undefined;
projectTransferIn?: Array<ACLAction> | undefined;
projectTransferRequest?: Array<ACLAction> | undefined;
proTrialOnboarding?: Array<ACLAction> | undefined;
rateLimit?: Array<ACLAction> | undefined;
redis?: Array<ACLAction> | undefined;
redisStoreTokenSet?: Array<ACLAction> | undefined;
remoteCaching?: Array<ACLAction> | undefined;
repository?: Array<ACLAction> | undefined;
samlConfig?: Array<ACLAction> | undefined;
secret?: Array<ACLAction> | undefined;
securityConfig?: Array<ACLAction> | undefined;
sensitiveEnvironmentVariablePolicy?: Array<ACLAction> | undefined;
sharedEnvVars?: Array<ACLAction> | undefined;
sharedEnvVarsProduction?: Array<ACLAction> | undefined;
space?: Array<ACLAction> | undefined;
spaceRun?: Array<ACLAction> | undefined;
storeIsLocked?: Array<ACLAction> | undefined;
storeTokenSetSensitive?: Array<ACLAction> | undefined;
storeTransfer?: Array<ACLAction> | undefined;
supportCase?: Array<ACLAction> | undefined;
supportCaseComment?: Array<ACLAction> | undefined;
team?: Array<ACLAction> | undefined;
teamAccessRequest?: Array<ACLAction> | undefined;
teamFellowMembership?: Array<ACLAction> | undefined;
teamGitExclusivity?: Array<ACLAction> | undefined;
teamInvite?: Array<ACLAction> | undefined;
teamInviteCode?: Array<ACLAction> | undefined;
teamInviteLink?: Array<ACLAction> | undefined;
teamJoin?: Array<ACLAction> | undefined;
teamMemberMfaStatus?: Array<ACLAction> | undefined;
teamMicrofrontends?: Array<ACLAction> | undefined;
teamOwnMembership?: Array<ACLAction> | undefined;
teamOwnMembershipDisconnectSAML?: Array<ACLAction> | undefined;
teamSudo?: Array<ACLAction> | undefined;
teamTokenInvalidation?: Array<ACLAction> | undefined;
token?: Array<ACLAction> | undefined;
toolbarComment?: Array<ACLAction> | undefined;
usage?: Array<ACLAction> | undefined;
usageCycle?: Array<ACLAction> | undefined;
vcrRepository?: Array<ACLAction> | undefined;
vpcPeeringConnection?: Array<ACLAction> | undefined;
webAnalyticsPlan?: Array<ACLAction> | undefined;
webhook?: Array<ACLAction> | undefined;
webhookEvent?: Array<ACLAction> | undefined;
};
export type GetMicrofrontendsInGroupLastRollbackTarget = {};
export declare const GetMicrofrontendsInGroupJobStatus: {
readonly Failed: "failed";
readonly InProgress: "in-progress";
readonly Pending: "pending";
readonly Skipped: "skipped";
readonly Succeeded: "succeeded";
};
export type GetMicrofrontendsInGroupJobStatus = ClosedEnum<typeof GetMicrofrontendsInGroupJobStatus>;
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONType: {
readonly Promote: "promote";
readonly Rollback: "rollback";
};
export type GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONType = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONType>;
export type GetMicrofrontendsInGroupLastAliasRequest = {
fromDeploymentId: string | null;
toDeploymentId: string;
/**
* If rolling back from a rolling release, fromDeploymentId captures the "base" of that rolling release, and fromRollingReleaseId captures the "target" of that rolling release.
*/
fromRollingReleaseId?: string | undefined;
jobStatus: GetMicrofrontendsInGroupJobStatus;
requestedAt: number;
type: GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONType;
};
export type GetMicrofrontendsInGroupProtectionBypass2 = {
createdAt: number;
createdBy: string;
scope: "automation-bypass";
/**
* When there was only one bypass, it was automatically set as an env var on deployments. With multiple bypasses, there is always one bypass that is selected as the default, and gets set as an env var on deployments. As this is a new field, undefined means that the bypass is the env var. If there are any automation bypasses, exactly one must be the env var.
*/
isEnvVar?: boolean | undefined;
/**
* Optional note about the bypass to be displayed in the UI
*/
note?: string | undefined;
};
export type GetMicrofrontendsInGroupProtectionBypass1 = {
createdAt: number;
createdBy: string;
scope: "integration-automation-bypass";
integrationId: string;
configurationId: string;
};
export type GetMicrofrontendsInGroupProtectionBypass = GetMicrofrontendsInGroupProtectionBypass1 | GetMicrofrontendsInGroupProtectionBypass2;
export declare const GetMicrofrontendsInGroupTrustedIpsDeploymentType: {
readonly All: "all";
readonly AllExceptCustomDomains: "all_except_custom_domains";
readonly Preview: "preview";
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
readonly Production: "production";
};
export type GetMicrofrontendsInGroupTrustedIpsDeploymentType = ClosedEnum<typeof GetMicrofrontendsInGroupTrustedIpsDeploymentType>;
export type GetMicrofrontendsInGroupTrustedIps2 = {
deploymentType: GetMicrofrontendsInGroupTrustedIpsDeploymentType;
};
export declare const GetMicrofrontendsInGroupTrustedIpsMicrofrontendsDeploymentType: {
readonly All: "all";
readonly AllExceptCustomDomains: "all_except_custom_domains";
readonly Preview: "preview";
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
readonly Production: "production";
};
export type GetMicrofrontendsInGroupTrustedIpsMicrofrontendsDeploymentType = ClosedEnum<typeof GetMicrofrontendsInGroupTrustedIpsMicrofrontendsDeploymentType>;
export type GetMicrofrontendsInGroupTrustedIpsAddresses = {
value: string;
note?: string | undefined;
};
export declare const GetMicrofrontendsInGroupTrustedIpsProtectionMode: {
readonly Additional: "additional";
readonly Exclusive: "exclusive";
};
export type GetMicrofrontendsInGroupTrustedIpsProtectionMode = ClosedEnum<typeof GetMicrofrontendsInGroupTrustedIpsProtectionMode>;
export type GetMicrofrontendsInGroupTrustedIps1 = {
deploymentType: GetMicrofrontendsInGroupTrustedIpsMicrofrontendsDeploymentType;
addresses: Array<GetMicrofrontendsInGroupTrustedIpsAddresses>;
protectionMode: GetMicrofrontendsInGroupTrustedIpsProtectionMode;
};
export type GetMicrofrontendsInGroupTrustedIps = GetMicrofrontendsInGroupTrustedIps1 | GetMicrofrontendsInGroupTrustedIps2;
export declare const GetMicrofrontendsInGroupFromMicrofrontendsPreset: {
readonly AllCustom: "all-custom";
};
export type GetMicrofrontendsInGroupFromMicrofrontendsPreset = ClosedEnum<typeof GetMicrofrontendsInGroupFromMicrofrontendsPreset>;
/**
* The source envs on the trusted project that are allowed to access `to`.
*/
export type GetMicrofrontendsInGroupFrom2 = {
/**
* System environment slugs (`production`, `preview`) and/or custom environment slugs defined on the referenced project.
*/
slugs?: Array<string> | undefined;
preset: GetMicrofrontendsInGroupFromMicrofrontendsPreset;
};
export declare const GetMicrofrontendsInGroupFromPreset: {
readonly AllCustom: "all-custom";
};
export type GetMicrofrontendsInGroupFromPreset = ClosedEnum<typeof GetMicrofrontendsInGroupFromPreset>;
/**
* The source envs on the trusted project that are allowed to access `to`.
*/
export type GetMicrofrontendsInGroupFrom1 = {
/**
* System environment slugs (`production`, `preview`) and/or custom environment slugs defined on the referenced project.
*/
slugs: Array<string>;
preset?: GetMicrofrontendsInGroupFromPreset | undefined;
};
export type GetMicrofrontendsInGroupFrom = GetMicrofrontendsInGroupFrom1 | GetMicrofrontendsInGroupFrom2;
export declare const GetMicrofrontendsInGroupToMicrofrontendsResponsePreset: {
readonly AllCustom: "all-custom";
};
export type GetMicrofrontendsInGroupToMicrofrontendsResponsePreset = ClosedEnum<typeof GetMicrofrontendsInGroupToMicrofrontendsResponsePreset>;
/**
* The target envs on the current project that may be accessed.
*/
export type GetMicrofrontendsInGroupToMicrofrontends2 = {
/**
* System environment slugs (`production`, `preview`) and/or custom environment slugs defined on the referenced project.
*/
slugs?: Array<string> | undefined;
preset: GetMicrofrontendsInGroupToMicrofrontendsResponsePreset;
};
export declare const GetMicrofrontendsInGroupToMicrofrontendsResponse200Preset: {
readonly AllCustom: "all-custom";
};
export type GetMicrofrontendsInGroupToMicrofrontendsResponse200Preset = ClosedEnum<typeof GetMicrofrontendsInGroupToMicrofrontendsResponse200Preset>;
/**
* The target envs on the current project that may be accessed.
*/
export type GetMicrofrontendsInGroupToMicrofrontends1 = {
/**
* System environment slugs (`production`, `preview`) and/or custom environment slugs defined on the referenced project.
*/
slugs: Array<string>;
preset?: GetMicrofrontendsInGroupToMicrofrontendsResponse200Preset | undefined;
};
export type GetMicrofrontendsInGroupMicrofrontendsTo = GetMicrofrontendsInGroupToMicrofrontends1 | GetMicrofrontendsInGroupToMicrofrontends2;
/**
* Optional overrides for the default same-env-by-slug matching. Provide explicit rules to allow cross-env access or presets.
*/
export type GetMicrofrontendsInGroupCustomAllow = {
from: GetMicrofrontendsInGroupFrom1 | GetMicrofrontendsInGroupFrom2;
to: GetMicrofrontendsInGroupToMicrofrontends1 | GetMicrofrontendsInGroupToMicrofrontends2;
};
export type GetMicrofrontendsInGroupMicrofrontendsProjects = {
label?: string | undefined;
/**
* Optional overrides for the default same-env-by-slug matching. Provide explicit rules to allow cross-env access or presets.
*/
customAllow?: Array<GetMicrofrontendsInGroupCustomAllow> | undefined;
};
export declare const GetMicrofrontendsInGroupToMicrofrontendsPreset: {
readonly AllCustom: "all-custom";
};
export type GetMicrofrontendsInGroupToMicrofrontendsPreset = ClosedEnum<typeof GetMicrofrontendsInGroupToMicrofrontendsPreset>;
/**
* The target envs on the current project that may be accessed.
*/
export type GetMicrofrontendsInGroupTo2 = {
/**
* System environment slugs (`production`, `preview`) and/or custom environment slugs defined on the referenced project.
*/
slugs?: Array<string> | undefined;
preset: GetMicrofrontendsInGroupToMicrofrontendsPreset;
};
export declare const GetMicrofrontendsInGroupToPreset: {
readonly AllCustom: "all-custom";
};
export type GetMicrofrontendsInGroupToPreset = ClosedEnum<typeof GetMicrofrontendsInGroupToPreset>;
/**
* The target envs on the current project that may be accessed.
*/
export type GetMicrofrontendsInGroupTo1 = {
/**
* System environment slugs (`production`, `preview`) and/or custom environment slugs defined on the referenced project.
*/
slugs: Array<string>;
preset?: GetMicrofrontendsInGroupToPreset | undefined;
};
export type GetMicrofrontendsInGroupTo = GetMicrofrontendsInGroupTo1 | GetMicrofrontendsInGroupTo2;
export type GetMicrofrontendsInGroupOidcProviders = {
to: GetMicrofrontendsInGroupTo1 | GetMicrofrontendsInGroupTo2;
label?: string | undefined;
claims: {
[k: string]: Array<string>;
};
};
export type GetMicrofrontendsInGroupTrustedSources = {
/**
* Allow same-team Vercel CI access to preview deployments built from the CI run's repository, using the deployment source rather than the current project repository link. Defaults to enabled when not stored; omitted or null Trusted Sources updates preserve the stored value.
*/
enableVercelCiSameRepository?: boolean | undefined;
projects?: {
[k: string]: GetMicrofrontendsInGroupMicrofrontendsProjects;
} | undefined;
oidcProviders?: {
[k: string]: Array<GetMicrofrontendsInGroupOidcProviders>;
} | undefined;
};
export type GetMicrofrontendsInGroupGitComments = {
/**
* Whether the Vercel bot should comment on PRs
*/
onPullRequest: boolean;
/**
* Whether the Vercel bot should comment on commits
*/
onCommit: boolean;
};
/**
* Whether the Vercel bot should automatically create GitHub deployments https://docs.github.com/en/rest/deployments/deployments#about-deployments NOTE: repository-dispatch events should be used instead
*/
export declare const GetMicrofrontendsInGroupCreateDeployments: {
readonly Disabled: "disabled";
readonly Enabled: "enabled";
};
/**
* Whether the Vercel bot should automatically create GitHub deployments https://docs.github.com/en/rest/deployments/deployments#about-deployments NOTE: repository-dispatch events should be used instead
*/
export type GetMicrofrontendsInGroupCreateDeployments = ClosedEnum<typeof GetMicrofrontendsInGroupCreateDeployments>;
/**
* Configuration for consolidated git commit status reporting. When enabled, Vercel will post a single consolidated commit status instead of individual statuses for each deployment.
*/
export type GetMicrofrontendsInGroupConsolidatedGitCommitStatus = {
/**
* Whether consolidated commit status is enabled.
*/
enabled: boolean;
/**
* Whether to propagate individual deployment failures to the consolidated status.
*/
propagateFailures: boolean;
};
export type GetMicrofrontendsInGroupGitProviderOptions = {
/**
* Whether the Vercel bot should automatically create GitHub deployments https://docs.github.com/en/rest/deployments/deployments#about-deployments NOTE: repository-dispatch events should be used instead
*/
createDeployments: GetMicrofrontendsInGroupCreateDeployments;
/**
* Whether the Vercel bot should not automatically create GitHub repository-dispatch events on deployment events. https://vercel.com/docs/git/vercel-for-github#repository-dispatch-events - `true`: disable repository-dispatch events for this project (explicit override of the team setting). - `false`: enable repository-dispatch events for this project (explicit override of the team setting). - absent: inherit from `team.disableRepositoryDispatchEvents`.
*/
disableRepositoryDispatchEvents?: boolean | undefined;
/**
* Whether the project requires commits to be signed & verified before deployments will be created. - `true`: require verified commits for this project (explicit override of the team setting). - `false`: do not require verified commits (explicit override of the team setting). - absent: inherit from `team.requireVerifiedCommits`.
*/
requireVerifiedCommits?: boolean | undefined;
/**
* Whether Vercel should post commit statuses for this project. When omitted, commit statuses remain enabled.
*/
gitCommitStatus?: boolean | undefined;
/**
* Configuration for consolidated git commit status reporting. When enabled, Vercel will post a single consolidated commit status instead of individual statuses for each deployment.
*/
consolidatedGitCommitStatus?: GetMicrofrontendsInGroupConsolidatedGitCommitStatus | undefined;
};
export type GetMicrofrontendsInGroupWebAnalytics = {
id: string;
disabledAt?: number | undefined;
canceledAt?: number | undefined;
enabledAt?: number | undefined;
hasData?: true | undefined;
};
export declare const GetMicrofrontendsInGroupMicrofrontendsAction: {
readonly Allow: "allow";
readonly Bypass: "bypass";
readonly Challenge: "challenge";
readonly Deny: "deny";
readonly Log: "log";
readonly RateLimit: "rate_limit";
readonly Redirect: "redirect";
};
export type GetMicrofrontendsInGroupMicrofrontendsAction = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsAction>;
export declare const GetMicrofrontendsInGroupAlgo: {
readonly FixedWindow: "fixed_window";
readonly TokenBucket: "token_bucket";
};
export type GetMicrofrontendsInGroupAlgo = ClosedEnum<typeof GetMicrofrontendsInGroupAlgo>;
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityRulesetsAction: {
readonly Challenge: "challenge";
readonly Deny: "deny";
readonly Log: "log";
readonly RateLimit: "rate_limit";
};
export type GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityRulesetsAction = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityRulesetsAction>;
export type GetMicrofrontendsInGroupRateLimit = {
algo: GetMicrofrontendsInGroupAlgo;
window: number;
limit: number;
keys: Array<string>;
action?: GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityRulesetsAction | null | undefined;
};
export type GetMicrofrontendsInGroupRedirect = {
location: string;
permanent: boolean;
};
export declare const GetMicrofrontendsInGroupLogHeadersMicrofrontends2: {
readonly Wildcard: "*";
};
export type GetMicrofrontendsInGroupLogHeadersMicrofrontends2 = ClosedEnum<typeof GetMicrofrontendsInGroupLogHeadersMicrofrontends2>;
export type GetMicrofrontendsInGroupMicrofrontendsLogHeaders = Array<string> | GetMicrofrontendsInGroupLogHeadersMicrofrontends2;
export type GetMicrofrontendsInGroupRulesets = {
action: GetMicrofrontendsInGroupMicrofrontendsAction;
rateLimit?: GetMicrofrontendsInGroupRateLimit | null | undefined;
redirect?: GetMicrofrontendsInGroupRedirect | null | undefined;
actionDuration?: string | null | undefined;
bypassSystem?: boolean | null | undefined;
logHeaders?: Array<string> | GetMicrofrontendsInGroupLogHeadersMicrofrontends2 | undefined;
};
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityManagedRulesAction: {
readonly Challenge: "challenge";
readonly Deny: "deny";
readonly Log: "log";
};
export type GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityManagedRulesAction = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityManagedRulesAction>;
export type GetMicrofrontendsInGroupVercelRuleset = {
active: boolean;
action?: GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityManagedRulesAction | undefined;
};
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityManagedRulesTrafficSourcesAction: {
readonly Challenge: "challenge";
readonly Deny: "deny";
readonly Log: "log";
};
export type GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityManagedRulesTrafficSourcesAction = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityManagedRulesTrafficSourcesAction>;
export type GetMicrofrontendsInGroupTrafficSources = {
active: boolean;
action?: GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityManagedRulesTrafficSourcesAction | undefined;
};
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyAction: {
readonly Challenge: "challenge";
readonly Deny: "deny";
readonly Log: "log";
};
export type GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyAction = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyAction>;
export type GetMicrofrontendsInGroupBotFilter = {
active: boolean;
action?: GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyAction | undefined;
};
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsAction: {
readonly Challenge: "challenge";
readonly Deny: "deny";
readonly Log: "log";
};
export type GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsAction = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsAction>;
export type GetMicrofrontendsInGroupAiBots = {
active: boolean;
action?: GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsAction | undefined;
};
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityAction: {
readonly Challenge: "challenge";
readonly Deny: "deny";
readonly Log: "log";
};
export type GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityAction = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityAction>;
export type GetMicrofrontendsInGroupOwasp = {
active: boolean;
action?: GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityAction | undefined;
};
export type GetMicrofrontendsInGroupManagedRules = {
vercelRuleset: GetMicrofrontendsInGroupVercelRuleset;
trafficSources: GetMicrofrontendsInGroupTrafficSources;
botFilter: GetMicrofrontendsInGroupBotFilter;
aiBots: GetMicrofrontendsInGroupAiBots;
owasp: GetMicrofrontendsInGroupOwasp;
};
export declare const GetMicrofrontendsInGroupLogHeaders2: {
readonly Wildcard: "*";
};
export type GetMicrofrontendsInGroupLogHeaders2 = ClosedEnum<typeof GetMicrofrontendsInGroupLogHeaders2>;
export type GetMicrofrontendsInGroupLogHeaders = Array<string> | GetMicrofrontendsInGroupLogHeaders2;
export type GetMicrofrontendsInGroupSecurityPlusMetadata = {
updatedAt: number;
/**
* Timestamp when the feature was first enabled. Never changes after initial enablement.
*/
firstEnabledAt?: number | undefined;
};
export type GetMicrofrontendsInGroupSecurity = {
attackModeEnabled?: boolean | undefined;
attackModeUpdatedAt?: number | undefined;
firewallEnabled?: boolean | undefined;
firewallUpdatedAt?: number | undefined;
attackModeActiveUntil?: number | null | undefined;
firewallConfigVersion?: number | undefined;
rulesets?: {
[k: string]: GetMicrofrontendsInGroupRulesets;
} | undefined;
firewallSeawallEnabled?: boolean | undefined;
ja3Enabled?: boolean | undefined;
ja4Enabled?: boolean | undefined;
firewallBypassIps?: Array<string> | undefined;
managedRules?: GetMicrofrontendsInGroupManagedRules | null | undefined;
botIdEnabled?: boolean | undefined;
logHeaders?: Array<string> | GetMicrofrontendsInGroupLogHeaders2 | undefined;
securityPlus?: boolean | undefined;
securityPlusMetadata?: GetMicrofrontendsInGroupSecurityPlusMetadata | undefined;
/**
* Whether Page Integrity is enabled for this project. Used by the metadata service to gate DynamoDB lookups against the page-integrity-inventory table.
*/
pageIntegrityEnabled?: boolean | undefined;
};
/**
* - team: `https://oidc.vercel.com/[team_slug]` - global: `https://oidc.vercel.com`
*/
export declare const GetMicrofrontendsInGroupIssuerMode: {
readonly Global: "global";
readonly Team: "team";
};
/**
* - team: `https://oidc.vercel.com/[team_slug]` - global: `https://oidc.vercel.com`
*/
export type GetMicrofrontendsInGroupIssuerMode = ClosedEnum<typeof GetMicrofrontendsInGroupIssuerMode>;
export type GetMicrofrontendsInGroupOidcTokenConfig = {
/**
* Whether or not to generate OpenID Connect JSON Web Tokens.
*/
enabled?: boolean | undefined;
/**
* - team: `https://oidc.vercel.com/[team_slug]` - global: `https://oidc.vercel.com`
*/
issuerMode?: GetMicrofrontendsInGroupIssuerMode | undefined;
};
/**
* Allowlist entry for GitLab, which uses nested groups rather than a flat org/repo. `namespace` is the full group path (e.g. `group` or `group/subgroup`); `project` is the leaf project name. Omit `project` to match any project under the namespace. Namespace is matched case-insensitively.
*/
export type GetMicrofrontendsInGroupSources2 = {
provider: "gitlab";
namespace: string;
project?: string | undefined;
};
export declare const GetMicrofrontendsInGroupSourcesMicrofrontendsProvider: {
readonly Bitbucket: "bitbucket";
readonly Github: "github";
};
export type GetMicrofrontendsInGroupSourcesMicrofrontendsProvider = ClosedEnum<typeof GetMicrofrontendsInGroupSourcesMicrofrontendsProvider>;
/**
* Allowlist entry for GitHub and Bitbucket, whose repos are identified by a flat `org`/`repo` (Bitbucket's workspace/owner maps to `org`, its repo slug to `repo`). Omit `repo` to match any repo in the org. Org is matched case-insensitively.
*/
export type GetMicrofrontendsInGroupSources1 = {
provider: GetMicrofrontendsInGroupSourcesMicrofrontendsProvider;
org: string;
repo?: string | undefined;
};
export type GetMicrofrontendsInGroupSources = (GetMicrofrontendsInGroupSources1 & {
provider: "bitbucket";
}) | (GetMicrofrontendsInGroupSources1 & {
provider: "github";
}) | GetMicrofrontendsInGroupSources2;
export type GetMicrofrontendsInGroupEnvironmentsMicrofrontends2 = {
type: "custom";
environmentId: string;
};
export declare const GetMicrofrontendsInGroupEnvironmentsMicrofrontendsTarget: {
readonly Preview: "preview";
readonly Production: "production";
};
export type GetMicrofrontendsInGroupEnvironmentsMicrofrontendsTarget = ClosedEnum<typeof GetMicrofrontendsInGroupEnvironmentsMicrofrontendsTarget>;
export type GetMicrofrontendsInGroupEnvironments1 = {
type: "system";
target: GetMicrofrontendsInGroupEnvironmentsMicrofrontendsTarget;
};
export type GetMicrofrontendsInGroupEnvironments = GetMicrofrontendsInGroupEnvironments1 | GetMicrofrontendsInGroupEnvironmentsMicrofrontends2;
/**
* `enabled: true` with empty `sources` is deny-all.
*/
export type GetMicrofrontendsInGroupGitSources = {
sources: Array<(GetMicrofrontendsInGroupSources1 & {
provider: "bitbucket";
}) | (GetMicrofrontendsInGroupSources1 & {
provider: "github";
}) | GetMicrofrontendsInGroupSources2>;
enabled: boolean;
environments: Array<GetMicrofrontendsInGroupEnvironments1 | GetMicrofrontendsInGroupEnvironmentsMicrofrontends2>;
};
/**
* Customer-configurable deployment sources. Every deploy classifies to exactly one. JSON schema in `packages/deployment-policy/schemas/body.ts` enumerates exactly these values. - `'git'` — git provider webhook. - `'cli'` — Vercel CLI (legacy classic-token CLI and SIWV CLI both). - `'rest-api'` — direct user/team-token REST upload. Does NOT cover deploy hooks, Marketplace integrations, or first-party app tokens. - `'deploy-hook'` — project deploy-hook URL. The URL is the credential. - `'integration'` — third-party Marketplace actor: Marketplace integration token, user-delegated OAuth from a Marketplace app, or an unrecognized third-party Vercel App. First-party Vercel Apps are never `'integration'`. - `'v0'` — the v0 product surface (entitlement-gated). v0 deploys through the CLI under the hood, but classifies as its own source so a team can allow or deny v0 independently of `'cli'`. First-party Vercel apps (Toolbar, etc.) classify as `'first-party'` — see `ClassifiedSource` in `./checks`. They're not in this union because they aren't customer-configurable; they bypass `checkDeploymentSources` entirely. v0 is intentionally NOT among them: like the CLI, it's a real product surface and is policy-controllable.
*/
export declare const GetMicrofrontendsInGroupMicrofrontendsSources: {
readonly Cli: "cli";
readonly DeployHook: "deploy-hook";
readonly Git: "git";
readonly Integration: "integration";
readonly RestApi: "rest-api";
readonly V0: "v0";
};
/**
* Customer-configurable deployment sources. Every deploy classifies to exactly one. JSON schema in `packages/deployment-policy/schemas/body.ts` enumerates exactly these values. - `'git'` — git provider webhook. - `'cli'` — Vercel CLI (legacy classic-token CLI and SIWV CLI both). - `'rest-api'` — direct user/team-token REST upload. Does NOT cover deploy hooks, Marketplace integrations, or first-party app tokens. - `'deploy-hook'` — project deploy-hook URL. The URL is the credential. - `'integration'` — third-party Marketplace actor: Marketplace integration token, user-delegated OAuth from a Marketplace app, or an unrecognized third-party Vercel App. First-party Vercel Apps are never `'integration'`. - `'v0'` — the v0 product surface (entitlement-gated). v0 deploys through the CLI under the hood, but classifies as its own source so a team can allow or deny v0 independently of `'cli'`. First-party Vercel apps (Toolbar, etc.) classify as `'first-party'` — see `ClassifiedSource` in `./checks`. They're not in this union because they aren't customer-configurable; they bypass `checkDeploymentSources` entirely. v0 is intentionally NOT among them: like the CLI, it's a real product surface and is policy-controllable.
*/
export type GetMicrofrontendsInGroupMicrofrontendsSources = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsSources>;
export type GetMicrofrontendsInGroupEnvironments2 = {
type: "custom";
environmentId: string;
};
export declare const GetMicrofrontendsInGroupEnvironmentsTarget: {
readonly Preview: "preview";
readonly Production: "production";
};
export type GetMicrofrontendsInGroupEnvironmentsTarget = ClosedEnum<typeof GetMicrofrontendsInGroupEnvironmentsTarget>;
export type GetMicrofrontendsInGroupEnvironmentsMicrofrontends1 = {
type: "system";
target: GetMicrofrontendsInGroupEnvironmentsTarget;
};
export type GetMicrofrontendsInGroupMicrofrontendsEnvironments = GetMicrofrontendsInGroupEnvironmentsMicrofrontends1 | GetMicrofrontendsInGroupEnvironments2;
/**
* `enabled: true` with empty `sources` is deny-all.
*/
export type GetMicrofrontendsInGroupDeploymentSources = {
sources: Array<GetMicrofrontendsInGroupMicrofrontendsSources>;
enabled: boolean;
environments: Array<GetMicrofrontendsInGroupEnvironmentsMicrofrontends1 | GetMicrofrontendsInGroupEnvironments2>;
};
/**
* Project shape. `null` on a rule list clears the project's override for that rule type (fall back to team for every env); omitting is equivalent. Setting `deploymentPolicy` itself to `null` clears every override at once. Kept structurally distinct from {@link TeamDeploymentPolicy} so the two storage locations don't share a type by accident.
*/
export type GetMicrofrontendsInGroupDeploymentPolicy = {
gitSources?: Array<GetMicrofrontendsInGroupGitSources> | null | undefined;
deploymentSources?: Array<GetMicrofrontendsInGroupDeploymentSources> | null | undefined;
};
export declare const GetMicrofrontendsInGroupTier: {
readonly Advanced: "advanced";
readonly Critical: "critical";
readonly Priority: "priority";
};
export type GetMicrofrontendsInGroupTier = ClosedEnum<typeof GetMicrofrontendsInGroupTier>;
/**
* Billing mode. Always 'flat' for flat-rate projects.
*/
export declare const GetMicrofrontendsInGroupKind: {
readonly Flat: "flat";
};
/**
* Billing mode. Always 'flat' for flat-rate projects.
*/
export type GetMicrofrontendsInGroupKind = ClosedEnum<typeof GetMicrofrontendsInGroupKind>;
export type GetMicrofrontendsInGroupUsageStatus = {
/**
* Billing mode. Always 'flat' for flat-rate projects.
*/
kind: GetMicrofrontendsInGroupKind;
/**
* Timestamp until which the project has exceeded its CDN allowance.
*/
exceededAllowanceUntil?: number | undefined;
/**
* Timestamp until which throttling is bypassed (project pays list rates for overage).
*/
bypassThrottleUntil?: number | undefined;
/**
* Per-project throttle, set explicitly for this project (e.g. via the per-project Flat Rate CDN endpoint).
*/
throttled?: boolean | undefined;
/**
* Synced from `team.billing.usageStatus.throttled`. When `true`, the team has throttled all of its projects regardless of `throttled`. The effective throttle the CDN enforces is `throttled || teamThrottled`.
*/
teamThrottled?: boolean | undefined;
};
export type GetMicrofrontendsInGroupFeatures = {
webAnalytics?: boolean | undefined;
};
export type GetMicrofrontendsInGroupHistory = {
scanner: string;
reason: string;
by: string;
byId: string;
at: number;
};
export declare const GetMicrofrontendsInGroupMicrofrontendsResponseAction: {
readonly Blocked: "blocked";
};
export type GetMicrofrontendsInGroupMicrofrontendsResponseAction = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponseAction>;
export type GetMicrofrontendsInGroupBlock = {
action: GetMicrofrontendsInGroupMicrofrontendsResponseAction;
reason: string;
statusCode: number;
createdAt: number;
caseId?: string | undefined;
actor?: string | undefined;
comment?: string | undefined;
ineligibleForAppeal?: boolean | undefined;
isCascading?: boolean | undefined;
};
export type GetMicrofrontendsInGroupHasMicrofrontendsResponse200Value = {
eq: string;
};
export type GetMicrofrontendsInGroupHasMicrofrontends2 = {
type: "host";
value: GetMicrofrontendsInGroupHasMicrofrontendsResponse200Value;
};
export declare const GetMicrofrontendsInGroupHasMicrofrontendsResponseKey: {
readonly XVercelIpCountry: "x-vercel-ip-country";
};
export type GetMicrofrontendsInGroupHasMicrofrontendsResponseKey = ClosedEnum<typeof GetMicrofrontendsInGroupHasMicrofrontendsResponseKey>;
export type GetMicrofrontendsInGroupHasMicrofrontendsResponseValue = {
eq: string;
};
export type GetMicrofrontendsInGroupHasMicrofrontends1 = {
type: "header";
key: GetMicrofrontendsInGroupHasMicrofrontendsResponseKey;
value: GetMicrofrontendsInGroupHasMicrofrontendsResponseValue;
};
export type GetMicrofrontendsInGroupRouteHas = GetMicrofrontendsInGroupHasMicrofrontends1 | GetMicrofrontendsInGroupHasMicrofrontends2;
export declare const GetMicrofrontendsInGroupRouteAction: {
readonly BlockLegalCwc: "block_legal_cwc";
};
export type GetMicrofrontendsInGroupRouteAction = ClosedEnum<typeof GetMicrofrontendsInGroupRouteAction>;
export type GetMicrofrontendsInGroupRouteMitigate = {
action: GetMicrofrontendsInGroupRouteAction;
};
export type GetMicrofrontendsInGroupRoute2 = {
has: Array<GetMicrofrontendsInGroupHasMicrofrontends1 | GetMicrofrontendsInGroupHasMicrofrontends2>;
mitigate: GetMicrofrontendsInGroupRouteMitigate;
src?: string | undefined;
};
export type GetMicrofrontendsInGroupRoute1 = {
src: string;
status: number;
expiry?: number | undefined;
};
export type GetMicrofrontendsInGroupBlockHistoryMicrofrontendsRoute = GetMicrofrontendsInGroupRoute1 | GetMicrofrontendsInGroupRoute2;
export type GetMicrofrontendsInGroupBlockHistory4 = {
action: "route-unblocked";
route: GetMicrofrontendsInGroupRoute1 | GetMicrofrontendsInGroupRoute2;
statusCode?: number | undefined;
createdAt: number;
caseId?: string | undefined;
actor?: string | undefined;
comment?: string | undefined;
ineligibleForAppeal?: boolean | undefined;
isCascading?: boolean | undefined;
};
export type GetMicrofrontendsInGroupHasMicrofrontendsResponse200ApplicationJSONResponseBodyValue = {
eq: string;
};
export type GetMicrofrontendsInGroupHasMicrofrontendsResponse2 = {
type: "host";
value: GetMicrofrontendsInGroupHasMicrofrontendsResponse200ApplicationJSONResponseBodyValue;
};
export declare const GetMicrofrontendsInGroupHasMicrofrontendsKey: {
readonly XVercelIpCountry: "x-vercel-ip-country";
};
export type GetMicrofrontendsInGroupHasMicrofrontendsKey = ClosedEnum<typeof GetMicrofrontendsInGroupHasMicrofrontendsKey>;
export type GetMicrofrontendsInGroupHasMicrofrontendsResponse200ApplicationJSONValue = {
eq: string;
};
export type GetMicrofrontendsInGroupHasMicrofrontendsResponse1 = {
type: "header";
key: GetMicrofrontendsInGroupHasMicrofrontendsKey;
value: GetMicrofrontendsInGroupHasMicrofrontendsResponse200ApplicationJSONValue;
};
export type GetMicrofrontendsInGroupRouteMicrofrontendsHas = GetMicrofrontendsInGroupHasMicrofrontendsResponse1 | GetMicrofrontendsInGroupHasMicrofrontendsResponse2;
export declare const GetMicrofrontendsInGroupRouteMicrofrontendsAction: {
readonly BlockLegalCwc: "block_legal_cwc";
};
export type GetMicrofrontendsInGroupRouteMicrofrontendsAction = ClosedEnum<typeof GetMicrofrontendsInGroupRouteMicrofrontendsAction>;
export type GetMicrofrontendsInGroupRouteMicrofrontendsMitigate = {
action: GetMicrofrontendsInGroupRouteMicrofrontendsAction;
};
export type GetMicrofrontendsInGroupRouteMicrofrontends2 = {
has: Array<GetMicrofrontendsInGroupHasMicrofrontendsResponse1 | GetMicrofrontendsInGroupHasMicrofrontendsResponse2>;
mitigate: GetMicrofrontendsInGroupRouteMicrofrontendsMitigate;
src?: string | undefined;
};
export type GetMicrofrontendsInGroupRouteMicrofrontends1 = {
src: string;
status: number;
expiry?: number | undefined;
};
export type GetMicrofrontendsInGroupBlockHistoryRoute = GetMicrofrontendsInGroupRouteMicrofrontends1 | GetMicrofrontendsInGroupRouteMicrofrontends2;
export type GetMicrofrontendsInGroupBlockHistory3 = {
action: "route-blocked";
route: GetMicrofrontendsInGroupRouteMicrofrontends1 | GetMicrofrontendsInGroupRouteMicrofrontends2;
reason: string;
createdAt: number;
caseId?: string | undefined;
actor?: string | undefined;
comment?: string | undefined;
ineligibleForAppeal?: boolean | undefined;
isCascading?: boolean | undefined;
};
export type GetMicrofrontendsInGroupBlockHistory2 = {
action: "unblocked";
createdAt: number;
caseId?: string | undefined;
actor?: string | undefined;
comment?: string | undefined;
ineligibleForAppeal?: boolean | undefined;
isCascading?: boolean | undefined;
};
export type GetMicrofrontendsInGroupBlockHistory1 = {
action: "blocked";
reason: string;
statusCode: number;
createdAt: number;
caseId?: string | undefined;
actor?: string | undefined;
comment?: string | undefined;
ineligibleForAppeal?: boolean | undefined;
isCascading?: boolean | undefined;
};
export type GetMicrofrontendsInGroupBlockHistory = GetMicrofrontendsInGroupBlockHistory1 | GetMicrofrontendsInGroupBlockHistory2 | GetMicrofrontendsInGroupBlockHistory3 | GetMicrofrontendsInGroupBlockHistory4;
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200Action: {
readonly AddDeploymentInterstitial: "add-deployment-interstitial";
readonly AddProjectInterstitial: "add-project-interstitial";
readonly RemoveDeploymentInterstitial: "remove-deployment-interstitial";
readonly RemoveProjectInterstitial: "remove-project-interstitial";
};
export type GetMicrofrontendsInGroupMicrofrontendsResponse200Action = ClosedEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200Action>;
export type GetMicrofrontendsInGroupInterstitialHistory = {
action: GetMicrofrontendsInGroupMicrofrontendsResponse200Action;
createdAt: number;
caseId?: string | undefined;
reason?: string | undefined;
actor?: string | undefined;
comment?: string | undefined;
};
export type GetMicrofrontendsInGroupAbuse = {
scanner?: string | undefined;
history: Array<GetMicrofrontendsInGroupHistory>;
updatedAt: number;
block?: GetMicrofrontendsInGroupBlock | undefined;
blockHistory?: Array<GetMicrofrontendsInGroupBlockHistory1 | GetMicrofrontendsInGroupBlockHistory2 | GetMicrofrontendsInGroupBlockHistory3 | GetMicrofrontendsInGroupBlockHistory4> | undefined;
interstitial?: boolean | undefined;
interstitialHistory?: Array<GetMicrofrontendsInGroupInterstitialHistory> | undefined;
};
export type GetMicrofrontendsInGroupHasMicrofrontendsValue = {
eq: string;
};
export type GetMicrofrontendsInGroupHas2 = {
type: "host";
value: GetMicrofrontendsInGroupHasMicrofrontendsValue;
};
export declare const GetMicrofrontendsInGroupHasKey: {
readonly XVercelIpCountry: "x-vercel-ip-country";
};
export type GetMicrofrontendsInGroupHasKey = ClosedEnum<typeof GetMicrofrontendsInGroupHasKey>;
export type GetMicrofrontendsInGroupHasValue = {
eq: string;
};
export type GetMicrofrontendsInGroupHas1 = {
type: "header";
key: GetMicrofrontendsInGroupHasKey;
value: GetMicrofrontendsInGroupHasValue;
};
export type GetMicrofrontendsInGroupInternalRoutesHas = GetMicrofrontendsInGroupHas1 | GetMicrofrontendsInGroupHas2;
export declare const GetMicrofrontendsInGroupInternalRoutesAction: {
readonly BlockLegalCwc: "block_legal_cwc";
};
export type GetMicrofrontendsInGroupInternalRoutesAction = ClosedEnum<typeof GetMicrofrontendsInGroupInternalRoutesAction>;
export type GetMicrofrontendsInGroupInternalRoutesMitigate = {
action: GetMicrofrontendsInGroupInternalRoutesAction;
};
export type GetMicrofrontendsInGroupInternalRoutes2 = {
has: Array<GetMicrofrontendsInGroupHas1 | GetMicrofrontendsInGroupHas2>;
mitigate: GetMicrofrontendsInGroupInternalRoutesMitigate;
src?: string | undefined;
};
/** @internal */
export declare const GetMicrofrontendsInGroupBuildMachineSelection$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupBuildMachineSelection>;
/** @internal */
export declare const GetMicrofrontendsInGroupBuildMachineElasticReason$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupBuildMachineElasticReason>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsConfiguration$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsConfiguration>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsBuildQueue$inboundSchema: z.ZodType<GetMicrofrontendsInGroupMicrofrontendsBuildQueue, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupMicrofrontendsBuildQueueFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupMicrofrontendsBuildQueue, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupDefaultResourceConfig$inboundSchema: z.ZodType<GetMicrofrontendsInGroupDefaultResourceConfig, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupDefaultResourceConfigFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupDefaultResourceConfig, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupStaticIps$inboundSchema: z.ZodType<GetMicrofrontendsInGroupStaticIps, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupStaticIpsFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupStaticIps, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsDeploymentType$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsDeploymentType>;
/** @internal */
export declare const GetMicrofrontendsInGroupCve55182MigrationAppliedFrom$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupCve55182MigrationAppliedFrom>;
/** @internal */
export declare const GetMicrofrontendsInGroupApril2026SecurityIncidentMigrationAppliedFrom$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupApril2026SecurityIncidentMigrationAppliedFrom>;
/** @internal */
export declare const GetMicrofrontendsInGroupSsoProtection$inboundSchema: z.ZodType<GetMicrofrontendsInGroupSsoProtection, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupSsoProtectionFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupSsoProtection, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupAliasAssigned$inboundSchema: z.ZodType<GetMicrofrontendsInGroupAliasAssigned, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupAliasAssignedFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupAliasAssigned, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsAliasError$inboundSchema: z.ZodType<GetMicrofrontendsInGroupMicrofrontendsAliasError, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupMicrofrontendsAliasErrorFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupMicrofrontendsAliasError, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsTargetsType$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsTargetsType>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsResponseBranchMatcher$inboundSchema: z.ZodType<GetMicrofrontendsInGroupMicrofrontendsResponseBranchMatcher, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupMicrofrontendsResponseBranchMatcherFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupMicrofrontendsResponseBranchMatcher, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsBuilds$inboundSchema: z.ZodType<GetMicrofrontendsInGroupMicrofrontendsBuilds, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupMicrofrontendsBuildsFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupMicrofrontendsBuilds, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsChecksConclusion$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsChecksConclusion>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsChecksState$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsChecksState>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsResponseCreator$inboundSchema: z.ZodType<GetMicrofrontendsInGroupMicrofrontendsResponseCreator, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupMicrofrontendsResponseCreatorFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupMicrofrontendsResponseCreator, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsOidcTokenClaims$inboundSchema: z.ZodType<GetMicrofrontendsInGroupMicrofrontendsOidcTokenClaims, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupMicrofrontendsOidcTokenClaimsFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupMicrofrontendsOidcTokenClaims, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsPlan$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsPlan>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsReadyState$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsReadyState>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsReadySubstate$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsReadySubstate>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200Type$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200Type>;
/** @internal */
export declare const GetMicrofrontendsInGroupTargets$inboundSchema: z.ZodType<GetMicrofrontendsInGroupTargets, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupTargetsFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupTargets, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupPermissions$inboundSchema: z.ZodType<GetMicrofrontendsInGroupPermissions, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupPermissionsFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupPermissions, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupLastRollbackTarget$inboundSchema: z.ZodType<GetMicrofrontendsInGroupLastRollbackTarget, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupLastRollbackTargetFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupLastRollbackTarget, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupJobStatus$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupJobStatus>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONType$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONType>;
/** @internal */
export declare const GetMicrofrontendsInGroupLastAliasRequest$inboundSchema: z.ZodType<GetMicrofrontendsInGroupLastAliasRequest, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupLastAliasRequestFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupLastAliasRequest, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupProtectionBypass2$inboundSchema: z.ZodType<GetMicrofrontendsInGroupProtectionBypass2, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupProtectionBypass2FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupProtectionBypass2, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupProtectionBypass1$inboundSchema: z.ZodType<GetMicrofrontendsInGroupProtectionBypass1, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupProtectionBypass1FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupProtectionBypass1, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupProtectionBypass$inboundSchema: z.ZodType<GetMicrofrontendsInGroupProtectionBypass, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupProtectionBypassFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupProtectionBypass, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupTrustedIpsDeploymentType$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupTrustedIpsDeploymentType>;
/** @internal */
export declare const GetMicrofrontendsInGroupTrustedIps2$inboundSchema: z.ZodType<GetMicrofrontendsInGroupTrustedIps2, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupTrustedIps2FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupTrustedIps2, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupTrustedIpsMicrofrontendsDeploymentType$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupTrustedIpsMicrofrontendsDeploymentType>;
/** @internal */
export declare const GetMicrofrontendsInGroupTrustedIpsAddresses$inboundSchema: z.ZodType<GetMicrofrontendsInGroupTrustedIpsAddresses, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupTrustedIpsAddressesFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupTrustedIpsAddresses, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupTrustedIpsProtectionMode$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupTrustedIpsProtectionMode>;
/** @internal */
export declare const GetMicrofrontendsInGroupTrustedIps1$inboundSchema: z.ZodType<GetMicrofrontendsInGroupTrustedIps1, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupTrustedIps1FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupTrustedIps1, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupTrustedIps$inboundSchema: z.ZodType<GetMicrofrontendsInGroupTrustedIps, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupTrustedIpsFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupTrustedIps, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupFromMicrofrontendsPreset$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupFromMicrofrontendsPreset>;
/** @internal */
export declare const GetMicrofrontendsInGroupFrom2$inboundSchema: z.ZodType<GetMicrofrontendsInGroupFrom2, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupFrom2FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupFrom2, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupFromPreset$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupFromPreset>;
/** @internal */
export declare const GetMicrofrontendsInGroupFrom1$inboundSchema: z.ZodType<GetMicrofrontendsInGroupFrom1, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupFrom1FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupFrom1, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupFrom$inboundSchema: z.ZodType<GetMicrofrontendsInGroupFrom, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupFromFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupFrom, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupToMicrofrontendsResponsePreset$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupToMicrofrontendsResponsePreset>;
/** @internal */
export declare const GetMicrofrontendsInGroupToMicrofrontends2$inboundSchema: z.ZodType<GetMicrofrontendsInGroupToMicrofrontends2, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupToMicrofrontends2FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupToMicrofrontends2, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupToMicrofrontendsResponse200Preset$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupToMicrofrontendsResponse200Preset>;
/** @internal */
export declare const GetMicrofrontendsInGroupToMicrofrontends1$inboundSchema: z.ZodType<GetMicrofrontendsInGroupToMicrofrontends1, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupToMicrofrontends1FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupToMicrofrontends1, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsTo$inboundSchema: z.ZodType<GetMicrofrontendsInGroupMicrofrontendsTo, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupMicrofrontendsToFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupMicrofrontendsTo, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupCustomAllow$inboundSchema: z.ZodType<GetMicrofrontendsInGroupCustomAllow, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupCustomAllowFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupCustomAllow, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsProjects$inboundSchema: z.ZodType<GetMicrofrontendsInGroupMicrofrontendsProjects, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupMicrofrontendsProjectsFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupMicrofrontendsProjects, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupToMicrofrontendsPreset$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupToMicrofrontendsPreset>;
/** @internal */
export declare const GetMicrofrontendsInGroupTo2$inboundSchema: z.ZodType<GetMicrofrontendsInGroupTo2, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupTo2FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupTo2, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupToPreset$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupToPreset>;
/** @internal */
export declare const GetMicrofrontendsInGroupTo1$inboundSchema: z.ZodType<GetMicrofrontendsInGroupTo1, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupTo1FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupTo1, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupTo$inboundSchema: z.ZodType<GetMicrofrontendsInGroupTo, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupToFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupTo, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupOidcProviders$inboundSchema: z.ZodType<GetMicrofrontendsInGroupOidcProviders, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupOidcProvidersFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupOidcProviders, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupTrustedSources$inboundSchema: z.ZodType<GetMicrofrontendsInGroupTrustedSources, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupTrustedSourcesFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupTrustedSources, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupGitComments$inboundSchema: z.ZodType<GetMicrofrontendsInGroupGitComments, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupGitCommentsFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupGitComments, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupCreateDeployments$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupCreateDeployments>;
/** @internal */
export declare const GetMicrofrontendsInGroupConsolidatedGitCommitStatus$inboundSchema: z.ZodType<GetMicrofrontendsInGroupConsolidatedGitCommitStatus, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupConsolidatedGitCommitStatusFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupConsolidatedGitCommitStatus, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupGitProviderOptions$inboundSchema: z.ZodType<GetMicrofrontendsInGroupGitProviderOptions, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupGitProviderOptionsFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupGitProviderOptions, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupWebAnalytics$inboundSchema: z.ZodType<GetMicrofrontendsInGroupWebAnalytics, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupWebAnalyticsFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupWebAnalytics, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsAction$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsAction>;
/** @internal */
export declare const GetMicrofrontendsInGroupAlgo$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupAlgo>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityRulesetsAction$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityRulesetsAction>;
/** @internal */
export declare const GetMicrofrontendsInGroupRateLimit$inboundSchema: z.ZodType<GetMicrofrontendsInGroupRateLimit, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupRateLimitFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupRateLimit, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupRedirect$inboundSchema: z.ZodType<GetMicrofrontendsInGroupRedirect, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupRedirectFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupRedirect, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupLogHeadersMicrofrontends2$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupLogHeadersMicrofrontends2>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsLogHeaders$inboundSchema: z.ZodType<GetMicrofrontendsInGroupMicrofrontendsLogHeaders, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupMicrofrontendsLogHeadersFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupMicrofrontendsLogHeaders, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupRulesets$inboundSchema: z.ZodType<GetMicrofrontendsInGroupRulesets, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupRulesetsFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupRulesets, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityManagedRulesAction$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityManagedRulesAction>;
/** @internal */
export declare const GetMicrofrontendsInGroupVercelRuleset$inboundSchema: z.ZodType<GetMicrofrontendsInGroupVercelRuleset, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupVercelRulesetFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupVercelRuleset, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityManagedRulesTrafficSourcesAction$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityManagedRulesTrafficSourcesAction>;
/** @internal */
export declare const GetMicrofrontendsInGroupTrafficSources$inboundSchema: z.ZodType<GetMicrofrontendsInGroupTrafficSources, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupTrafficSourcesFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupTrafficSources, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyAction$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyAction>;
/** @internal */
export declare const GetMicrofrontendsInGroupBotFilter$inboundSchema: z.ZodType<GetMicrofrontendsInGroupBotFilter, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupBotFilterFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupBotFilter, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsAction$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsAction>;
/** @internal */
export declare const GetMicrofrontendsInGroupAiBots$inboundSchema: z.ZodType<GetMicrofrontendsInGroupAiBots, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupAiBotsFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupAiBots, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityAction$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200ApplicationJSONResponseBodyProjectsSecurityAction>;
/** @internal */
export declare const GetMicrofrontendsInGroupOwasp$inboundSchema: z.ZodType<GetMicrofrontendsInGroupOwasp, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupOwaspFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupOwasp, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupManagedRules$inboundSchema: z.ZodType<GetMicrofrontendsInGroupManagedRules, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupManagedRulesFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupManagedRules, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupLogHeaders2$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupLogHeaders2>;
/** @internal */
export declare const GetMicrofrontendsInGroupLogHeaders$inboundSchema: z.ZodType<GetMicrofrontendsInGroupLogHeaders, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupLogHeadersFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupLogHeaders, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupSecurityPlusMetadata$inboundSchema: z.ZodType<GetMicrofrontendsInGroupSecurityPlusMetadata, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupSecurityPlusMetadataFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupSecurityPlusMetadata, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupSecurity$inboundSchema: z.ZodType<GetMicrofrontendsInGroupSecurity, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupSecurityFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupSecurity, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupIssuerMode$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupIssuerMode>;
/** @internal */
export declare const GetMicrofrontendsInGroupOidcTokenConfig$inboundSchema: z.ZodType<GetMicrofrontendsInGroupOidcTokenConfig, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupOidcTokenConfigFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupOidcTokenConfig, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupSources2$inboundSchema: z.ZodType<GetMicrofrontendsInGroupSources2, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupSources2FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupSources2, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupSourcesMicrofrontendsProvider$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupSourcesMicrofrontendsProvider>;
/** @internal */
export declare const GetMicrofrontendsInGroupSources1$inboundSchema: z.ZodType<GetMicrofrontendsInGroupSources1, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupSources1FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupSources1, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupSources$inboundSchema: z.ZodType<GetMicrofrontendsInGroupSources, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupSourcesFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupSources, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupEnvironmentsMicrofrontends2$inboundSchema: z.ZodType<GetMicrofrontendsInGroupEnvironmentsMicrofrontends2, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupEnvironmentsMicrofrontends2FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupEnvironmentsMicrofrontends2, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupEnvironmentsMicrofrontendsTarget$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupEnvironmentsMicrofrontendsTarget>;
/** @internal */
export declare const GetMicrofrontendsInGroupEnvironments1$inboundSchema: z.ZodType<GetMicrofrontendsInGroupEnvironments1, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupEnvironments1FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupEnvironments1, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupEnvironments$inboundSchema: z.ZodType<GetMicrofrontendsInGroupEnvironments, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupEnvironmentsFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupEnvironments, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupGitSources$inboundSchema: z.ZodType<GetMicrofrontendsInGroupGitSources, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupGitSourcesFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupGitSources, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsSources$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsSources>;
/** @internal */
export declare const GetMicrofrontendsInGroupEnvironments2$inboundSchema: z.ZodType<GetMicrofrontendsInGroupEnvironments2, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupEnvironments2FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupEnvironments2, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupEnvironmentsTarget$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupEnvironmentsTarget>;
/** @internal */
export declare const GetMicrofrontendsInGroupEnvironmentsMicrofrontends1$inboundSchema: z.ZodType<GetMicrofrontendsInGroupEnvironmentsMicrofrontends1, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupEnvironmentsMicrofrontends1FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupEnvironmentsMicrofrontends1, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsEnvironments$inboundSchema: z.ZodType<GetMicrofrontendsInGroupMicrofrontendsEnvironments, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupMicrofrontendsEnvironmentsFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupMicrofrontendsEnvironments, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupDeploymentSources$inboundSchema: z.ZodType<GetMicrofrontendsInGroupDeploymentSources, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupDeploymentSourcesFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupDeploymentSources, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupDeploymentPolicy$inboundSchema: z.ZodType<GetMicrofrontendsInGroupDeploymentPolicy, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupDeploymentPolicyFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupDeploymentPolicy, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupTier$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupTier>;
/** @internal */
export declare const GetMicrofrontendsInGroupKind$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupKind>;
/** @internal */
export declare const GetMicrofrontendsInGroupUsageStatus$inboundSchema: z.ZodType<GetMicrofrontendsInGroupUsageStatus, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupUsageStatusFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupUsageStatus, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupFeatures$inboundSchema: z.ZodType<GetMicrofrontendsInGroupFeatures, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupFeaturesFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupFeatures, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupHistory$inboundSchema: z.ZodType<GetMicrofrontendsInGroupHistory, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupHistoryFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupHistory, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsResponseAction$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponseAction>;
/** @internal */
export declare const GetMicrofrontendsInGroupBlock$inboundSchema: z.ZodType<GetMicrofrontendsInGroupBlock, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupBlockFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupBlock, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupHasMicrofrontendsResponse200Value$inboundSchema: z.ZodType<GetMicrofrontendsInGroupHasMicrofrontendsResponse200Value, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupHasMicrofrontendsResponse200ValueFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupHasMicrofrontendsResponse200Value, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupHasMicrofrontends2$inboundSchema: z.ZodType<GetMicrofrontendsInGroupHasMicrofrontends2, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupHasMicrofrontends2FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupHasMicrofrontends2, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupHasMicrofrontendsResponseKey$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupHasMicrofrontendsResponseKey>;
/** @internal */
export declare const GetMicrofrontendsInGroupHasMicrofrontendsResponseValue$inboundSchema: z.ZodType<GetMicrofrontendsInGroupHasMicrofrontendsResponseValue, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupHasMicrofrontendsResponseValueFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupHasMicrofrontendsResponseValue, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupHasMicrofrontends1$inboundSchema: z.ZodType<GetMicrofrontendsInGroupHasMicrofrontends1, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupHasMicrofrontends1FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupHasMicrofrontends1, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupRouteHas$inboundSchema: z.ZodType<GetMicrofrontendsInGroupRouteHas, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupRouteHasFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupRouteHas, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupRouteAction$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupRouteAction>;
/** @internal */
export declare const GetMicrofrontendsInGroupRouteMitigate$inboundSchema: z.ZodType<GetMicrofrontendsInGroupRouteMitigate, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupRouteMitigateFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupRouteMitigate, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupRoute2$inboundSchema: z.ZodType<GetMicrofrontendsInGroupRoute2, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupRoute2FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupRoute2, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupRoute1$inboundSchema: z.ZodType<GetMicrofrontendsInGroupRoute1, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupRoute1FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupRoute1, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupBlockHistoryMicrofrontendsRoute$inboundSchema: z.ZodType<GetMicrofrontendsInGroupBlockHistoryMicrofrontendsRoute, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupBlockHistoryMicrofrontendsRouteFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupBlockHistoryMicrofrontendsRoute, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupBlockHistory4$inboundSchema: z.ZodType<GetMicrofrontendsInGroupBlockHistory4, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupBlockHistory4FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupBlockHistory4, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupHasMicrofrontendsResponse200ApplicationJSONResponseBodyValue$inboundSchema: z.ZodType<GetMicrofrontendsInGroupHasMicrofrontendsResponse200ApplicationJSONResponseBodyValue, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupHasMicrofrontendsResponse200ApplicationJSONResponseBodyValueFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupHasMicrofrontendsResponse200ApplicationJSONResponseBodyValue, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupHasMicrofrontendsResponse2$inboundSchema: z.ZodType<GetMicrofrontendsInGroupHasMicrofrontendsResponse2, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupHasMicrofrontendsResponse2FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupHasMicrofrontendsResponse2, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupHasMicrofrontendsKey$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupHasMicrofrontendsKey>;
/** @internal */
export declare const GetMicrofrontendsInGroupHasMicrofrontendsResponse200ApplicationJSONValue$inboundSchema: z.ZodType<GetMicrofrontendsInGroupHasMicrofrontendsResponse200ApplicationJSONValue, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupHasMicrofrontendsResponse200ApplicationJSONValueFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupHasMicrofrontendsResponse200ApplicationJSONValue, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupHasMicrofrontendsResponse1$inboundSchema: z.ZodType<GetMicrofrontendsInGroupHasMicrofrontendsResponse1, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupHasMicrofrontendsResponse1FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupHasMicrofrontendsResponse1, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupRouteMicrofrontendsHas$inboundSchema: z.ZodType<GetMicrofrontendsInGroupRouteMicrofrontendsHas, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupRouteMicrofrontendsHasFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupRouteMicrofrontendsHas, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupRouteMicrofrontendsAction$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupRouteMicrofrontendsAction>;
/** @internal */
export declare const GetMicrofrontendsInGroupRouteMicrofrontendsMitigate$inboundSchema: z.ZodType<GetMicrofrontendsInGroupRouteMicrofrontendsMitigate, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupRouteMicrofrontendsMitigateFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupRouteMicrofrontendsMitigate, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupRouteMicrofrontends2$inboundSchema: z.ZodType<GetMicrofrontendsInGroupRouteMicrofrontends2, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupRouteMicrofrontends2FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupRouteMicrofrontends2, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupRouteMicrofrontends1$inboundSchema: z.ZodType<GetMicrofrontendsInGroupRouteMicrofrontends1, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupRouteMicrofrontends1FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupRouteMicrofrontends1, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupBlockHistoryRoute$inboundSchema: z.ZodType<GetMicrofrontendsInGroupBlockHistoryRoute, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupBlockHistoryRouteFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupBlockHistoryRoute, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupBlockHistory3$inboundSchema: z.ZodType<GetMicrofrontendsInGroupBlockHistory3, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupBlockHistory3FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupBlockHistory3, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupBlockHistory2$inboundSchema: z.ZodType<GetMicrofrontendsInGroupBlockHistory2, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupBlockHistory2FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupBlockHistory2, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupBlockHistory1$inboundSchema: z.ZodType<GetMicrofrontendsInGroupBlockHistory1, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupBlockHistory1FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupBlockHistory1, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupBlockHistory$inboundSchema: z.ZodType<GetMicrofrontendsInGroupBlockHistory, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupBlockHistoryFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupBlockHistory, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupMicrofrontendsResponse200Action$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupMicrofrontendsResponse200Action>;
/** @internal */
export declare const GetMicrofrontendsInGroupInterstitialHistory$inboundSchema: z.ZodType<GetMicrofrontendsInGroupInterstitialHistory, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupInterstitialHistoryFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupInterstitialHistory, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupAbuse$inboundSchema: z.ZodType<GetMicrofrontendsInGroupAbuse, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupAbuseFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupAbuse, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupHasMicrofrontendsValue$inboundSchema: z.ZodType<GetMicrofrontendsInGroupHasMicrofrontendsValue, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupHasMicrofrontendsValueFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupHasMicrofrontendsValue, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupHas2$inboundSchema: z.ZodType<GetMicrofrontendsInGroupHas2, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupHas2FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupHas2, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupHasKey$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupHasKey>;
/** @internal */
export declare const GetMicrofrontendsInGroupHasValue$inboundSchema: z.ZodType<GetMicrofrontendsInGroupHasValue, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupHasValueFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupHasValue, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupHas1$inboundSchema: z.ZodType<GetMicrofrontendsInGroupHas1, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupHas1FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupHas1, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupInternalRoutesHas$inboundSchema: z.ZodType<GetMicrofrontendsInGroupInternalRoutesHas, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupInternalRoutesHasFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupInternalRoutesHas, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupInternalRoutesAction$inboundSchema: z.ZodNativeEnum<typeof GetMicrofrontendsInGroupInternalRoutesAction>;
/** @internal */
export declare const GetMicrofrontendsInGroupInternalRoutesMitigate$inboundSchema: z.ZodType<GetMicrofrontendsInGroupInternalRoutesMitigate, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupInternalRoutesMitigateFromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupInternalRoutesMitigate, SDKValidationError>;
/** @internal */
export declare const GetMicrofrontendsInGroupInternalRoutes2$inboundSchema: z.ZodType<GetMicrofrontendsInGroupInternalRoutes2, z.ZodTypeDef, unknown>;
export declare function getMicrofrontendsInGroupInternalRoutes2FromJSON(jsonString: string): SafeParseResult<GetMicrofrontendsInGroupInternalRoutes2, SDKValidationError>;
//# sourceMappingURL=getmicrofrontendsingroupinternalroutes2.d.ts.map