vercel-api-js 1.16.1 → 1.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{components-l47b33g0.js → components-n3yd7e34.js} +65 -25
- package/dist/{components-gzixkjh5.cjs → components-pfe7zbum.cjs} +66 -24
- package/dist/components.cjs +3 -1
- package/dist/components.d.mts +52 -22
- package/dist/components.d.mts.map +1 -1
- package/dist/components.mjs +1 -1
- package/dist/effect.cjs +1 -1
- package/dist/effect.d.mts +7 -3
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +1 -1
- package/dist/index.cjs +21 -2
- package/dist/index.d.ts +341 -199
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/{schemas-nphw7q3u.js → schemas-fvbjfupl.js} +162 -105
- package/dist/{schemas-ftf6cy1n.cjs → schemas-k0m5cdq9.cjs} +180 -104
- package/dist/schemas.cjs +20 -1
- package/dist/schemas.d.mts +105 -77
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.d.mts +182 -100
- package/dist/types.d.mts.map +1 -1
- package/package.json +1 -1
|
@@ -1878,6 +1878,23 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
1878
1878
|
});
|
|
1879
1879
|
return data;
|
|
1880
1880
|
}
|
|
1881
|
+
/**
|
|
1882
|
+
* @summary Get price data for multiple domains
|
|
1883
|
+
* @description Get price data for multiple domains in a single request.
|
|
1884
|
+
* @link /v1/registrar/domains/price
|
|
1885
|
+
*/ async function getBulkPrice({ queryParams, config } = {}) {
|
|
1886
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
1887
|
+
const data = await request({
|
|
1888
|
+
method: "POST",
|
|
1889
|
+
url: `/v1/registrar/domains/price`,
|
|
1890
|
+
queryParams,
|
|
1891
|
+
...requestConfig,
|
|
1892
|
+
headers: {
|
|
1893
|
+
...requestConfig.headers
|
|
1894
|
+
}
|
|
1895
|
+
});
|
|
1896
|
+
return data;
|
|
1897
|
+
}
|
|
1881
1898
|
/**
|
|
1882
1899
|
* @summary Get availability for multiple domains
|
|
1883
1900
|
* @description Get availability for multiple domains. If the domains are available, they can be purchased using the [Buy a domain](https://vercel.com/docs/rest-api/reference/endpoints/domains-registrar/buy-a-domain) endpoint or the [Buy multiple domains](https://vercel.com/docs/rest-api/reference/endpoints/domains-registrar/buy-multiple-domains) endpoint.
|
|
@@ -1895,6 +1912,43 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
1895
1912
|
});
|
|
1896
1913
|
return data;
|
|
1897
1914
|
}
|
|
1915
|
+
/**
|
|
1916
|
+
* @summary Check domain availability and pricing
|
|
1917
|
+
* @description Check registration availability for 1–200 exact domain names, such as `example.com`. Returns results in input order, with registration and renewal prices in USD for available domains. No authentication required.
|
|
1918
|
+
* @link /v1/registrar/domains/search
|
|
1919
|
+
*/ async function searchDomains({ queryParams, config } = {}) {
|
|
1920
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
1921
|
+
const data = await request({
|
|
1922
|
+
method: "POST",
|
|
1923
|
+
url: `/v1/registrar/domains/search`,
|
|
1924
|
+
queryParams,
|
|
1925
|
+
...requestConfig,
|
|
1926
|
+
headers: {
|
|
1927
|
+
...requestConfig.headers
|
|
1928
|
+
}
|
|
1929
|
+
});
|
|
1930
|
+
return data;
|
|
1931
|
+
}
|
|
1932
|
+
/**
|
|
1933
|
+
* @summary Get contact info schema
|
|
1934
|
+
* @description Some TLDs require additional contact information. Use this endpoint to get the schema for the tld-specific contact information for a domain.
|
|
1935
|
+
* @link /v1/registrar/domains/{domain}/contact-info/schema
|
|
1936
|
+
*/ async function getContactInfoSchema({ pathParams, queryParams, config } = {}) {
|
|
1937
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
1938
|
+
if (!pathParams.domain) {
|
|
1939
|
+
throw new Error(`Missing required path parameter: domain`);
|
|
1940
|
+
}
|
|
1941
|
+
const data = await request({
|
|
1942
|
+
method: "GET",
|
|
1943
|
+
url: `/v1/registrar/domains/${pathParams.domain}/contact-info/schema`,
|
|
1944
|
+
queryParams,
|
|
1945
|
+
...requestConfig,
|
|
1946
|
+
headers: {
|
|
1947
|
+
...requestConfig.headers
|
|
1948
|
+
}
|
|
1949
|
+
});
|
|
1950
|
+
return data;
|
|
1951
|
+
}
|
|
1898
1952
|
/**
|
|
1899
1953
|
* @summary Get the auth code for a domain
|
|
1900
1954
|
* @description Get the auth code for a domain. This is required to transfer a domain from Vercel to another registrar.
|
|
@@ -2072,26 +2126,6 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2072
2126
|
});
|
|
2073
2127
|
return data;
|
|
2074
2128
|
}
|
|
2075
|
-
/**
|
|
2076
|
-
* @summary Get contact info schema
|
|
2077
|
-
* @description Some TLDs require additional contact information. Use this endpoint to get the schema for the tld-specific contact information for a domain.
|
|
2078
|
-
* @link /v1/registrar/domains/{domain}/contact-info/schema
|
|
2079
|
-
*/ async function getContactInfoSchema({ pathParams, queryParams, config } = {}) {
|
|
2080
|
-
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2081
|
-
if (!pathParams.domain) {
|
|
2082
|
-
throw new Error(`Missing required path parameter: domain`);
|
|
2083
|
-
}
|
|
2084
|
-
const data = await request({
|
|
2085
|
-
method: "GET",
|
|
2086
|
-
url: `/v1/registrar/domains/${pathParams.domain}/contact-info/schema`,
|
|
2087
|
-
queryParams,
|
|
2088
|
-
...requestConfig,
|
|
2089
|
-
headers: {
|
|
2090
|
-
...requestConfig.headers
|
|
2091
|
-
}
|
|
2092
|
-
});
|
|
2093
|
-
return data;
|
|
2094
|
-
}
|
|
2095
2129
|
/**
|
|
2096
2130
|
* @summary Get a domain order
|
|
2097
2131
|
* @description Get information about a domain order by its ID
|
|
@@ -4163,7 +4197,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
4163
4197
|
}
|
|
4164
4198
|
/**
|
|
4165
4199
|
* @summary Sign a message
|
|
4166
|
-
* @description Sign a raw message with a KMS issuer's active signing key. Authenticate the request with a Vercel OIDC token in the `Authorization: Bearer` header; the issuer's policies decide which workloads are allowed to sign.
|
|
4200
|
+
* @description Sign a raw message with a KMS issuer's active signing key. Authenticate the request with a Vercel OIDC token in the `Authorization: Bearer` header; the issuer's policies decide which workloads are allowed to sign. The response `signature` is standard-base64 of the raw signature over the decoded message bytes. `keyId` and `algorithm` identify the signing key in the issuer's JWKS.
|
|
4167
4201
|
* @link /v1/kms/issuers/{issuerId}/sign/message
|
|
4168
4202
|
*/ async function signKmsMessage({ pathParams, config } = {}) {
|
|
4169
4203
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
@@ -8357,7 +8391,10 @@ const operationsByPath = {
|
|
|
8357
8391
|
"GET /v1/registrar/tlds/{tld}/price": getTldPrice,
|
|
8358
8392
|
"GET /v1/registrar/domains/{domain}/availability": getDomainAvailability,
|
|
8359
8393
|
"GET /v1/registrar/domains/{domain}/price": getDomainPrice,
|
|
8394
|
+
"POST /v1/registrar/domains/price": getBulkPrice,
|
|
8360
8395
|
"POST /v1/registrar/domains/availability": getBulkAvailability,
|
|
8396
|
+
"POST /v1/registrar/domains/search": searchDomains,
|
|
8397
|
+
"GET /v1/registrar/domains/{domain}/contact-info/schema": getContactInfoSchema,
|
|
8361
8398
|
"GET /v1/registrar/domains/{domain}/auth-code": getDomainAuthCode,
|
|
8362
8399
|
"POST /v1/registrar/domains/{domain}/buy": buySingleDomain,
|
|
8363
8400
|
"POST /v1/registrar/domains/buy": buyDomains,
|
|
@@ -8367,7 +8404,6 @@ const operationsByPath = {
|
|
|
8367
8404
|
"PATCH /v1/registrar/domains/{domain}/auto-renew": updateDomainAutoRenew,
|
|
8368
8405
|
"PATCH /v1/registrar/domains/{domain}/nameservers": updateDomainNameservers,
|
|
8369
8406
|
"GET /v1/registrar/domains/{domain}/contact-verification": getDomainContactVerification,
|
|
8370
|
-
"GET /v1/registrar/domains/{domain}/contact-info/schema": getContactInfoSchema,
|
|
8371
8407
|
"GET /v1/registrar/orders/{orderId}": getOrder,
|
|
8372
8408
|
"GET /v6/domains/{domain}/config": getDomainConfig,
|
|
8373
8409
|
"GET /v9/domains/{domain}/verification": getDomainVerificationRecord,
|
|
@@ -8813,7 +8849,10 @@ const operationsByTag = {
|
|
|
8813
8849
|
getTldPrice,
|
|
8814
8850
|
getDomainAvailability,
|
|
8815
8851
|
getDomainPrice,
|
|
8852
|
+
getBulkPrice,
|
|
8816
8853
|
getBulkAvailability,
|
|
8854
|
+
searchDomains,
|
|
8855
|
+
getContactInfoSchema,
|
|
8817
8856
|
getDomainAuthCode,
|
|
8818
8857
|
buySingleDomain,
|
|
8819
8858
|
buyDomains,
|
|
@@ -8823,7 +8862,6 @@ const operationsByTag = {
|
|
|
8823
8862
|
updateDomainAutoRenew,
|
|
8824
8863
|
updateDomainNameservers,
|
|
8825
8864
|
getDomainContactVerification,
|
|
8826
|
-
getContactInfoSchema,
|
|
8827
8865
|
getOrder
|
|
8828
8866
|
},
|
|
8829
8867
|
domains: {
|
|
@@ -9408,14 +9446,16 @@ const tagDictionary = {
|
|
|
9408
9446
|
"getTldPrice",
|
|
9409
9447
|
"getDomainAvailability",
|
|
9410
9448
|
"getDomainPrice",
|
|
9449
|
+
"getContactInfoSchema",
|
|
9411
9450
|
"getDomainAuthCode",
|
|
9412
9451
|
"getDomainTransferIn",
|
|
9413
9452
|
"getDomainContactVerification",
|
|
9414
|
-
"getContactInfoSchema",
|
|
9415
9453
|
"getOrder"
|
|
9416
9454
|
],
|
|
9417
9455
|
POST: [
|
|
9456
|
+
"getBulkPrice",
|
|
9418
9457
|
"getBulkAvailability",
|
|
9458
|
+
"searchDomains",
|
|
9419
9459
|
"buySingleDomain",
|
|
9420
9460
|
"buyDomains",
|
|
9421
9461
|
"transferInDomain",
|
|
@@ -9963,4 +10003,4 @@ const tagDictionary = {
|
|
|
9963
10003
|
}
|
|
9964
10004
|
};
|
|
9965
10005
|
|
|
9966
|
-
export { createMicrofrontendsGroupWithApplications as $, countPageviews as A, createAccessGroup as B, createAccessGroupProject as C, createAiGatewayRule as D, createAiGatewayVirtualModelConfig as E, createApiKeys as F, createAuthToken as G, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads as H, createCheck as I, createConfigurableLogDrain as J, createConnector as K, createConnectorAuthorizationRequest as L, createCustomEnvironment as M, createDeployment as N, createDeploymentCheckRun as O, createDrain as P, createEdgeConfig as Q, createEdgeConfigToken as R, createEvent as S, createFlag as T, createFlagSegment as U, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems as V, createIntegrationStoreDirect as W, createKmsIssuer as X, createKmsIssuerPolicy as Y, createKmsSigningKey as Z, createLogDrain as _, operationsByPath as a, deleteRedirects as a$, createNetwork as a0, createObservabilityQuery as a1, createOrTransferDomain as a2, createPrivateLinkEndpoint as a3, createProject as a4, createProjectCheck as a5, createProjectEnv as a6, createProjectTransferRequest as a7, createRecord as a8, createRepository as a9, deleteAuthToken as aA, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest as aB, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as aC, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as aD, deleteConfigurableLogDrain as aE, deleteConfiguration as aF, deleteConnector as aG, deleteConnectorProjectConnection as aH, deleteDeployment as aI, deleteDomain as aJ, deleteDrain as aK, deleteDrive as aL, deleteEdgeConfig as aM, deleteEdgeConfigSchema as aN, deleteEdgeConfigTokens as aO, deleteFlag as aP, deleteFlagSegment as aQ, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId as aR, deleteIntegrationLogDrain as aS, deleteIntegrationResource as aT, deleteKmsIssuer as aU, deleteKmsIssuerPolicy as aV, deleteMicrofrontendsGroup as aW, deleteNetwork as aX, deletePrivateLinkEndpoint as aY, deleteProject as aZ, deleteProjectCheck as a_, createSandboxesByNameForkV2 as aa, createSandboxesByNameForkV3 as ab, createSandboxesSessionsBySessionIdSnapshotV2 as ac, createSandboxesSessionsBySessionIdSnapshotV3 as ad, createSandboxesV2 as ae, createSandboxesV3 as af, createSandboxesV4 as ag, createSdkKey as ah, createSecurityFirewallConfigByConfigVersionActivate as ai, createSessionDirectory as aj, createSharedEnvVariable as ak, createSpeedInsightsToggle as al, createStorageStoresBlob as am, createTeam as an, createTraceSession as ao, createWebInsightsToggle as ap, createWebhook as aq, dangerouslyDeleteBySrcImages as ar, dangerouslyDeleteByTags as as, deleteAccessGroup as at, deleteAccessGroupProject as au, deleteAiGatewayRule as av, deleteAiGatewayVirtualModelConfig as aw, deleteAiGatewayVirtualModelConfigBySlug as ax, deleteAlias as ay, deleteAllArtifacts as az, acceptProjectTransferRequest as b, getDomainProjectDomains as b$, deleteRepository as b0, deleteRepositoryImage as b1, deleteRollingReleaseConfig as b2, deleteRoutes as b3, deleteSandbox as b4, deleteSdkKey as b5, deleteSecurityFirewallConfigByConfigVersion as b6, deleteSessionSnapshot as b7, deleteSharedEnvVariable as b8, deleteStorageStoresBlobById as b9, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as bA, getByTeamSlugByProjectSlugByRepositoryNameTagsList as bB, getBypassIp as bC, getCertById as bD, getCerts as bE, getCheck as bF, getConfigurableLogDrain as bG, getConfiguration as bH, getConfigurationProducts as bI, getConfigurations as bJ, getConnector as bK, getConnectorProjectConnection as bL, getConnectorToken as bM, getContactInfoSchema as bN, getCustomEnvironment as bO, getDeployment as bP, getDeploymentCheckRun as bQ, getDeploymentEvents as bR, getDeploymentFeatureFlags as bS, getDeploymentFileContents as bT, getDeployments as bU, getDomain as bV, getDomainAuthCode as bW, getDomainAvailability as bX, getDomainConfig as bY, getDomainContactVerification as bZ, getDomainPrice as b_, deleteTeam as ba, deleteTeamInviteCode as bb, deleteWebhook as bc, downloadArtifact as bd, editProjectEnv as be, editRedirect as bf, editRoute as bg, exchangeSsoToken as bh, extendSessionTimeout as bi, filterProjectEnvs as bj, finalizeInstallation as bk, generateFirewallRule as bl, generateRoute as bm, getAccountInfo as bn, getActiveAttackStatus as bo, getAiGatewayVirtualModelConfig as bp, getAiGatewayVirtualModelConfigBySlug as bq, getAlias as br, getAllChecks as bs, getAllLogDrains as bt, getAuthToken as bu, getAuthUser as bv, getBillingPlans as bw, getBulkAvailability as bx, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest as by, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as bz, client as c, getSessionCommandLogs as c$, getDomainTransferIn as c0, getDomainVerificationRecord as c1, getDomains as c2, getDomainsRecordsByRecordId as c3, getDrain as c4, getDrains as c5, getEdgeConfig as c6, getEdgeConfigBackup as c7, getEdgeConfigBackups as c8, getEdgeConfigItem as c9, getProject as cA, getProjectCheck as cB, getProjectDomain as cC, getProjectDomains as cD, getProjectEnv as cE, getProjectMembers as cF, getProjectToken as cG, getProjectTrace as cH, getProjects as cI, getProjectsByIdOrNameCustomEnvironments as cJ, getRecords as cK, getRedirects as cL, getRepository as cM, getRepositoryImage as cN, getRepositoryTag as cO, getRollingRelease as cP, getRollingReleaseBillingStatus as cQ, getRollingReleaseConfig as cR, getRoot as cS, getRouteVersions as cT, getRoutes as cU, getRuntimeLogs as cV, getSdkKeys as cW, getSecurityFirewallConfig as cX, getSecurityFirewallEvents as cY, getSession as cZ, getSessionCommand as c_, getEdgeConfigItems as ca, getEdgeConfigSchema as cb, getEdgeConfigToken as cc, getEdgeConfigTokens as cd, getEdgeConfigs as ce, getFirewallConfig as cf, getFlag as cg, getFlagSegment as ch, getFlagSettings as ci, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig as cj, getIntegrationLogDrains as ck, getIntegrationResource as cl, getIntegrationResources as cm, getInvoice as cn, getKmsIssuer as co, getMember as cp, getMicrofrontendsConfig as cq, getMicrofrontendsConfigForProject as cr, getMicrofrontendsGroups as cs, getMicrofrontendsInGroup as ct, getNamedSandbox as cu, getObservabilityConfigurationProjects as cv, getObservabilitySchema as cw, getObservabilitySchemaByMetricId as cx, getOrCreateDrive as cy, getOrder as cz, activateKmsSigningKey as d, patchDomain as d$, getSessionSnapshot as d0, getSharedEnvVar as d1, getStorageStoresById as d2, getSupportedTlds as d3, getTeam as d4, getTeamAccessRequest as d5, getTeamMembers as d6, getTeams as d7, getTld as d8, getTldPrice as d9, listDeploymentFiles as dA, listDrives as dB, listEventTypes as dC, listFlagSegments as dD, listFlagVersions as dE, listFlags as dF, listFlagsV2 as dG, listKmsIssuers as dH, listNamedSandboxes as dI, listNetworks as dJ, listPrivateLinkEndpoints as dK, listProjectChecks as dL, listProjectConnectorConnections as dM, listPromoteAliases as dN, listRepositories as dO, listRepositoryImages as dP, listRepositoryPermissions as dQ, listRepositoryTags as dR, listSessionCommands as dS, listSessionSnapshots as dT, listSessions as dU, listSharedEnvVariable as dV, listTeamFlagSettings as dW, listTeamFlags as dX, listTeamFlagsV2 as dY, listUserEvents as dZ, moveProjectDomain as d_, getVersions as da, getWebhook as db, getWebhooks as dc, gitNamespaces as dd, importResource as de, invalidateBySrcImages as df, invalidateByTags as dg, inviteUserToTeam as dh, issueCert as di, joinTeam as dj, killSessionCommand as dk, listAccessGroupMembers as dl, listAccessGroupProjects as dm, listAccessGroups as dn, listAiGatewayRules as dp, listAiGatewayVirtualModelConfigs as dq, listAliases as dr, listAuthTokens as ds, listBillingCharges as dt, listCheckRuns as du, listConnectorProjectConnections as dv, listConnectors as dw, listContractCommitments as dx, listDeploymentAliases as dy, listDeploymentCheckRuns as dz, addBypassIp as e, updateCustomEnvironment as e$, patchEdgeConfigItems as e0, patchEdgeConfigSchema as e1, patchTeam as e2, patchUrlProtectionBypass as e3, pauseProject as e4, postTeamDsyncRoles as e5, putFirewallConfig as e6, readAccessGroup as e7, readAccessGroupProject as e8, readNetwork as e9, revokeKmsSigningKey as eA, rotateInstallationCredential as eB, runSessionCommand as eC, searchRepo as eD, signKmsMessage as eE, signKmsToken as eF, stageRedirects as eG, stageRoutes as eH, startRollingRelease as eI, status as eJ, stopSession as eK, submitBillingData as eL, submitInvoice as eM, submitPrepaymentBalances as eN, testDrain as eO, transferInDomain as eP, unlinkSharedEnvVariable as eQ, unpauseProject as eR, updateAccessGroup as eS, updateAccessGroupProject as eT, updateAiGatewayRule as eU, updateAiGatewayVirtualModelConfig as eV, updateAiGatewayVirtualModelConfigBySlug as eW, updateAttackChallengeMode as eX, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as eY, updateCheck as eZ, updateConnector as e_, readPrivateLinkEndpoint as ea, readSessionFile as eb, recordEvents as ec, removeBypassIp as ed, removeCert as ee, removeCustomEnvironment as ef, removeProjectDomain as eg, removeProjectEnv as eh, removeProjectMember as ei, removeRecord as ej, removeRepositoryPermission as ek, removeTeamMember as el, renewDomain as em, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as en, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as eo, replaceConnectorTriggerDestinations as ep, replaceDomainsByDomainRecords as eq, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig as er, requestAccessToTeam as es, requestDelete as et, requestPromote as eu, requestRollback as ev, rerequestCheck as ew, restoreEdgeConfigBackup as ex, restoreRedirects as ey, revokeInstallationCredential as ez, addProjectDomain as f, updateDeploymentCheckRun as f0, updateDomainAutoRenew as f1, updateDomainNameservers as f2, updateDrain as f3, updateEdgeConfig as f4, updateFirewallConfig as f5, updateFlag as f6, updateFlagSegment as f7, updateFlagSettings as f8, updateInstallation as f9, updateVersion as fA, uploadArtifact as fB, uploadCert as fC, uploadFile as fD, uploadProjectAvatar as fE, upsertConnectorProjectConnection as fF, verifyProjectDomain as fG, writeSessionFiles as fH, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId as fa, updateIntegrationDeploymentAction as fb, updateInvoice as fc, updateKmsIssuer as fd, updateKmsIssuerPolicy as fe, updateMicrofrontends as ff, updateMicrofrontendsGroup as fg, updateNetwork as fh, updateObservabilityConfigurationProject as fi, updatePrivateLinkEndpoint as fj, updateProject as fk, updateProjectCheck as fl, updateProjectDomain as fm, updateProjectProtectionBypass as fn, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescription as fo, updateRecord as fp, updateResource as fq, updateResourceSecrets as fr, updateResourceSecretsById as fs, updateRollingReleaseConfig as ft, updateRouteVersions as fu, updateSandbox as fv, updateSessionNetworkPolicy as fw, updateSharedEnvVariable as fx, updateStaticIps as fy, updateTeamMember as fz, addProjectMember as g, addRepositoryPermission as h, addRoute as i, aggregateEvents as j, aggregatePageviews as k, approveRollingReleaseStage as l, artifactQuery as m, assignAlias as n, operationsByTag as o, batchRemoveProjectEnv as p, buyCredits as q, buyDomains as r, buySingleDomain as s, tagDictionary as t, cancelDeployment as u, claimDomainOwnership as v, clearRepositoryPermissions as w, completeRollingRelease as x, connectIntegrationResourceToProject as y, countEvents as z };
|
|
10006
|
+
export { createMicrofrontendsGroupWithApplications as $, countPageviews as A, createAccessGroup as B, createAccessGroupProject as C, createAiGatewayRule as D, createAiGatewayVirtualModelConfig as E, createApiKeys as F, createAuthToken as G, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads as H, createCheck as I, createConfigurableLogDrain as J, createConnector as K, createConnectorAuthorizationRequest as L, createCustomEnvironment as M, createDeployment as N, createDeploymentCheckRun as O, createDrain as P, createEdgeConfig as Q, createEdgeConfigToken as R, createEvent as S, createFlag as T, createFlagSegment as U, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems as V, createIntegrationStoreDirect as W, createKmsIssuer as X, createKmsIssuerPolicy as Y, createKmsSigningKey as Z, createLogDrain as _, operationsByPath as a, deleteRedirects as a$, createNetwork as a0, createObservabilityQuery as a1, createOrTransferDomain as a2, createPrivateLinkEndpoint as a3, createProject as a4, createProjectCheck as a5, createProjectEnv as a6, createProjectTransferRequest as a7, createRecord as a8, createRepository as a9, deleteAuthToken as aA, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest as aB, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as aC, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as aD, deleteConfigurableLogDrain as aE, deleteConfiguration as aF, deleteConnector as aG, deleteConnectorProjectConnection as aH, deleteDeployment as aI, deleteDomain as aJ, deleteDrain as aK, deleteDrive as aL, deleteEdgeConfig as aM, deleteEdgeConfigSchema as aN, deleteEdgeConfigTokens as aO, deleteFlag as aP, deleteFlagSegment as aQ, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId as aR, deleteIntegrationLogDrain as aS, deleteIntegrationResource as aT, deleteKmsIssuer as aU, deleteKmsIssuerPolicy as aV, deleteMicrofrontendsGroup as aW, deleteNetwork as aX, deletePrivateLinkEndpoint as aY, deleteProject as aZ, deleteProjectCheck as a_, createSandboxesByNameForkV2 as aa, createSandboxesByNameForkV3 as ab, createSandboxesSessionsBySessionIdSnapshotV2 as ac, createSandboxesSessionsBySessionIdSnapshotV3 as ad, createSandboxesV2 as ae, createSandboxesV3 as af, createSandboxesV4 as ag, createSdkKey as ah, createSecurityFirewallConfigByConfigVersionActivate as ai, createSessionDirectory as aj, createSharedEnvVariable as ak, createSpeedInsightsToggle as al, createStorageStoresBlob as am, createTeam as an, createTraceSession as ao, createWebInsightsToggle as ap, createWebhook as aq, dangerouslyDeleteBySrcImages as ar, dangerouslyDeleteByTags as as, deleteAccessGroup as at, deleteAccessGroupProject as au, deleteAiGatewayRule as av, deleteAiGatewayVirtualModelConfig as aw, deleteAiGatewayVirtualModelConfigBySlug as ax, deleteAlias as ay, deleteAllArtifacts as az, acceptProjectTransferRequest as b, getDomainPrice as b$, deleteRepository as b0, deleteRepositoryImage as b1, deleteRollingReleaseConfig as b2, deleteRoutes as b3, deleteSandbox as b4, deleteSdkKey as b5, deleteSecurityFirewallConfigByConfigVersion as b6, deleteSessionSnapshot as b7, deleteSharedEnvVariable as b8, deleteStorageStoresBlobById as b9, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as bA, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as bB, getByTeamSlugByProjectSlugByRepositoryNameTagsList as bC, getBypassIp as bD, getCertById as bE, getCerts as bF, getCheck as bG, getConfigurableLogDrain as bH, getConfiguration as bI, getConfigurationProducts as bJ, getConfigurations as bK, getConnector as bL, getConnectorProjectConnection as bM, getConnectorToken as bN, getContactInfoSchema as bO, getCustomEnvironment as bP, getDeployment as bQ, getDeploymentCheckRun as bR, getDeploymentEvents as bS, getDeploymentFeatureFlags as bT, getDeploymentFileContents as bU, getDeployments as bV, getDomain as bW, getDomainAuthCode as bX, getDomainAvailability as bY, getDomainConfig as bZ, getDomainContactVerification as b_, deleteTeam as ba, deleteTeamInviteCode as bb, deleteWebhook as bc, downloadArtifact as bd, editProjectEnv as be, editRedirect as bf, editRoute as bg, exchangeSsoToken as bh, extendSessionTimeout as bi, filterProjectEnvs as bj, finalizeInstallation as bk, generateFirewallRule as bl, generateRoute as bm, getAccountInfo as bn, getActiveAttackStatus as bo, getAiGatewayVirtualModelConfig as bp, getAiGatewayVirtualModelConfigBySlug as bq, getAlias as br, getAllChecks as bs, getAllLogDrains as bt, getAuthToken as bu, getAuthUser as bv, getBillingPlans as bw, getBulkAvailability as bx, getBulkPrice as by, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest as bz, client as c, getSessionCommand as c$, getDomainProjectDomains as c0, getDomainTransferIn as c1, getDomainVerificationRecord as c2, getDomains as c3, getDomainsRecordsByRecordId as c4, getDrain as c5, getDrains as c6, getEdgeConfig as c7, getEdgeConfigBackup as c8, getEdgeConfigBackups as c9, getOrder as cA, getProject as cB, getProjectCheck as cC, getProjectDomain as cD, getProjectDomains as cE, getProjectEnv as cF, getProjectMembers as cG, getProjectToken as cH, getProjectTrace as cI, getProjects as cJ, getProjectsByIdOrNameCustomEnvironments as cK, getRecords as cL, getRedirects as cM, getRepository as cN, getRepositoryImage as cO, getRepositoryTag as cP, getRollingRelease as cQ, getRollingReleaseBillingStatus as cR, getRollingReleaseConfig as cS, getRoot as cT, getRouteVersions as cU, getRoutes as cV, getRuntimeLogs as cW, getSdkKeys as cX, getSecurityFirewallConfig as cY, getSecurityFirewallEvents as cZ, getSession as c_, getEdgeConfigItem as ca, getEdgeConfigItems as cb, getEdgeConfigSchema as cc, getEdgeConfigToken as cd, getEdgeConfigTokens as ce, getEdgeConfigs as cf, getFirewallConfig as cg, getFlag as ch, getFlagSegment as ci, getFlagSettings as cj, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig as ck, getIntegrationLogDrains as cl, getIntegrationResource as cm, getIntegrationResources as cn, getInvoice as co, getKmsIssuer as cp, getMember as cq, getMicrofrontendsConfig as cr, getMicrofrontendsConfigForProject as cs, getMicrofrontendsGroups as ct, getMicrofrontendsInGroup as cu, getNamedSandbox as cv, getObservabilityConfigurationProjects as cw, getObservabilitySchema as cx, getObservabilitySchemaByMetricId as cy, getOrCreateDrive as cz, activateKmsSigningKey as d, moveProjectDomain as d$, getSessionCommandLogs as d0, getSessionSnapshot as d1, getSharedEnvVar as d2, getStorageStoresById as d3, getSupportedTlds as d4, getTeam as d5, getTeamAccessRequest as d6, getTeamMembers as d7, getTeams as d8, getTld as d9, listDeploymentCheckRuns as dA, listDeploymentFiles as dB, listDrives as dC, listEventTypes as dD, listFlagSegments as dE, listFlagVersions as dF, listFlags as dG, listFlagsV2 as dH, listKmsIssuers as dI, listNamedSandboxes as dJ, listNetworks as dK, listPrivateLinkEndpoints as dL, listProjectChecks as dM, listProjectConnectorConnections as dN, listPromoteAliases as dO, listRepositories as dP, listRepositoryImages as dQ, listRepositoryPermissions as dR, listRepositoryTags as dS, listSessionCommands as dT, listSessionSnapshots as dU, listSessions as dV, listSharedEnvVariable as dW, listTeamFlagSettings as dX, listTeamFlags as dY, listTeamFlagsV2 as dZ, listUserEvents as d_, getTldPrice as da, getVersions as db, getWebhook as dc, getWebhooks as dd, gitNamespaces as de, importResource as df, invalidateBySrcImages as dg, invalidateByTags as dh, inviteUserToTeam as di, issueCert as dj, joinTeam as dk, killSessionCommand as dl, listAccessGroupMembers as dm, listAccessGroupProjects as dn, listAccessGroups as dp, listAiGatewayRules as dq, listAiGatewayVirtualModelConfigs as dr, listAliases as ds, listAuthTokens as dt, listBillingCharges as du, listCheckRuns as dv, listConnectorProjectConnections as dw, listConnectors as dx, listContractCommitments as dy, listDeploymentAliases as dz, addBypassIp as e, updateCheck as e$, patchDomain as e0, patchEdgeConfigItems as e1, patchEdgeConfigSchema as e2, patchTeam as e3, patchUrlProtectionBypass as e4, pauseProject as e5, postTeamDsyncRoles as e6, putFirewallConfig as e7, readAccessGroup as e8, readAccessGroupProject as e9, revokeInstallationCredential as eA, revokeKmsSigningKey as eB, rotateInstallationCredential as eC, runSessionCommand as eD, searchDomains as eE, searchRepo as eF, signKmsMessage as eG, signKmsToken as eH, stageRedirects as eI, stageRoutes as eJ, startRollingRelease as eK, status as eL, stopSession as eM, submitBillingData as eN, submitInvoice as eO, submitPrepaymentBalances as eP, testDrain as eQ, transferInDomain as eR, unlinkSharedEnvVariable as eS, unpauseProject as eT, updateAccessGroup as eU, updateAccessGroupProject as eV, updateAiGatewayRule as eW, updateAiGatewayVirtualModelConfig as eX, updateAiGatewayVirtualModelConfigBySlug as eY, updateAttackChallengeMode as eZ, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as e_, readNetwork as ea, readPrivateLinkEndpoint as eb, readSessionFile as ec, recordEvents as ed, removeBypassIp as ee, removeCert as ef, removeCustomEnvironment as eg, removeProjectDomain as eh, removeProjectEnv as ei, removeProjectMember as ej, removeRecord as ek, removeRepositoryPermission as el, removeTeamMember as em, renewDomain as en, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as eo, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as ep, replaceConnectorTriggerDestinations as eq, replaceDomainsByDomainRecords as er, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig as es, requestAccessToTeam as et, requestDelete as eu, requestPromote as ev, requestRollback as ew, rerequestCheck as ex, restoreEdgeConfigBackup as ey, restoreRedirects as ez, addProjectDomain as f, updateConnector as f0, updateCustomEnvironment as f1, updateDeploymentCheckRun as f2, updateDomainAutoRenew as f3, updateDomainNameservers as f4, updateDrain as f5, updateEdgeConfig as f6, updateFirewallConfig as f7, updateFlag as f8, updateFlagSegment as f9, updateStaticIps as fA, updateTeamMember as fB, updateVersion as fC, uploadArtifact as fD, uploadCert as fE, uploadFile as fF, uploadProjectAvatar as fG, upsertConnectorProjectConnection as fH, verifyProjectDomain as fI, writeSessionFiles as fJ, updateFlagSettings as fa, updateInstallation as fb, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId as fc, updateIntegrationDeploymentAction as fd, updateInvoice as fe, updateKmsIssuer as ff, updateKmsIssuerPolicy as fg, updateMicrofrontends as fh, updateMicrofrontendsGroup as fi, updateNetwork as fj, updateObservabilityConfigurationProject as fk, updatePrivateLinkEndpoint as fl, updateProject as fm, updateProjectCheck as fn, updateProjectDomain as fo, updateProjectProtectionBypass as fp, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescription as fq, updateRecord as fr, updateResource as fs, updateResourceSecrets as ft, updateResourceSecretsById as fu, updateRollingReleaseConfig as fv, updateRouteVersions as fw, updateSandbox as fx, updateSessionNetworkPolicy as fy, updateSharedEnvVariable as fz, addProjectMember as g, addRepositoryPermission as h, addRoute as i, aggregateEvents as j, aggregatePageviews as k, approveRollingReleaseStage as l, artifactQuery as m, assignAlias as n, operationsByTag as o, batchRemoveProjectEnv as p, buyCredits as q, buyDomains as r, buySingleDomain as s, tagDictionary as t, cancelDeployment as u, claimDomainOwnership as v, clearRepositoryPermissions as w, completeRollingRelease as x, connectIntegrationResourceToProject as y, countEvents as z };
|
|
@@ -1878,6 +1878,23 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
1878
1878
|
});
|
|
1879
1879
|
return data;
|
|
1880
1880
|
}
|
|
1881
|
+
/**
|
|
1882
|
+
* @summary Get price data for multiple domains
|
|
1883
|
+
* @description Get price data for multiple domains in a single request.
|
|
1884
|
+
* @link /v1/registrar/domains/price
|
|
1885
|
+
*/ async function getBulkPrice({ queryParams, config } = {}) {
|
|
1886
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
1887
|
+
const data = await request({
|
|
1888
|
+
method: "POST",
|
|
1889
|
+
url: `/v1/registrar/domains/price`,
|
|
1890
|
+
queryParams,
|
|
1891
|
+
...requestConfig,
|
|
1892
|
+
headers: {
|
|
1893
|
+
...requestConfig.headers
|
|
1894
|
+
}
|
|
1895
|
+
});
|
|
1896
|
+
return data;
|
|
1897
|
+
}
|
|
1881
1898
|
/**
|
|
1882
1899
|
* @summary Get availability for multiple domains
|
|
1883
1900
|
* @description Get availability for multiple domains. If the domains are available, they can be purchased using the [Buy a domain](https://vercel.com/docs/rest-api/reference/endpoints/domains-registrar/buy-a-domain) endpoint or the [Buy multiple domains](https://vercel.com/docs/rest-api/reference/endpoints/domains-registrar/buy-multiple-domains) endpoint.
|
|
@@ -1895,6 +1912,43 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
1895
1912
|
});
|
|
1896
1913
|
return data;
|
|
1897
1914
|
}
|
|
1915
|
+
/**
|
|
1916
|
+
* @summary Check domain availability and pricing
|
|
1917
|
+
* @description Check registration availability for 1–200 exact domain names, such as `example.com`. Returns results in input order, with registration and renewal prices in USD for available domains. No authentication required.
|
|
1918
|
+
* @link /v1/registrar/domains/search
|
|
1919
|
+
*/ async function searchDomains({ queryParams, config } = {}) {
|
|
1920
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
1921
|
+
const data = await request({
|
|
1922
|
+
method: "POST",
|
|
1923
|
+
url: `/v1/registrar/domains/search`,
|
|
1924
|
+
queryParams,
|
|
1925
|
+
...requestConfig,
|
|
1926
|
+
headers: {
|
|
1927
|
+
...requestConfig.headers
|
|
1928
|
+
}
|
|
1929
|
+
});
|
|
1930
|
+
return data;
|
|
1931
|
+
}
|
|
1932
|
+
/**
|
|
1933
|
+
* @summary Get contact info schema
|
|
1934
|
+
* @description Some TLDs require additional contact information. Use this endpoint to get the schema for the tld-specific contact information for a domain.
|
|
1935
|
+
* @link /v1/registrar/domains/{domain}/contact-info/schema
|
|
1936
|
+
*/ async function getContactInfoSchema({ pathParams, queryParams, config } = {}) {
|
|
1937
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
1938
|
+
if (!pathParams.domain) {
|
|
1939
|
+
throw new Error(`Missing required path parameter: domain`);
|
|
1940
|
+
}
|
|
1941
|
+
const data = await request({
|
|
1942
|
+
method: "GET",
|
|
1943
|
+
url: `/v1/registrar/domains/${pathParams.domain}/contact-info/schema`,
|
|
1944
|
+
queryParams,
|
|
1945
|
+
...requestConfig,
|
|
1946
|
+
headers: {
|
|
1947
|
+
...requestConfig.headers
|
|
1948
|
+
}
|
|
1949
|
+
});
|
|
1950
|
+
return data;
|
|
1951
|
+
}
|
|
1898
1952
|
/**
|
|
1899
1953
|
* @summary Get the auth code for a domain
|
|
1900
1954
|
* @description Get the auth code for a domain. This is required to transfer a domain from Vercel to another registrar.
|
|
@@ -2072,26 +2126,6 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2072
2126
|
});
|
|
2073
2127
|
return data;
|
|
2074
2128
|
}
|
|
2075
|
-
/**
|
|
2076
|
-
* @summary Get contact info schema
|
|
2077
|
-
* @description Some TLDs require additional contact information. Use this endpoint to get the schema for the tld-specific contact information for a domain.
|
|
2078
|
-
* @link /v1/registrar/domains/{domain}/contact-info/schema
|
|
2079
|
-
*/ async function getContactInfoSchema({ pathParams, queryParams, config } = {}) {
|
|
2080
|
-
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2081
|
-
if (!pathParams.domain) {
|
|
2082
|
-
throw new Error(`Missing required path parameter: domain`);
|
|
2083
|
-
}
|
|
2084
|
-
const data = await request({
|
|
2085
|
-
method: "GET",
|
|
2086
|
-
url: `/v1/registrar/domains/${pathParams.domain}/contact-info/schema`,
|
|
2087
|
-
queryParams,
|
|
2088
|
-
...requestConfig,
|
|
2089
|
-
headers: {
|
|
2090
|
-
...requestConfig.headers
|
|
2091
|
-
}
|
|
2092
|
-
});
|
|
2093
|
-
return data;
|
|
2094
|
-
}
|
|
2095
2129
|
/**
|
|
2096
2130
|
* @summary Get a domain order
|
|
2097
2131
|
* @description Get information about a domain order by its ID
|
|
@@ -4163,7 +4197,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
4163
4197
|
}
|
|
4164
4198
|
/**
|
|
4165
4199
|
* @summary Sign a message
|
|
4166
|
-
* @description Sign a raw message with a KMS issuer's active signing key. Authenticate the request with a Vercel OIDC token in the `Authorization: Bearer` header; the issuer's policies decide which workloads are allowed to sign.
|
|
4200
|
+
* @description Sign a raw message with a KMS issuer's active signing key. Authenticate the request with a Vercel OIDC token in the `Authorization: Bearer` header; the issuer's policies decide which workloads are allowed to sign. The response `signature` is standard-base64 of the raw signature over the decoded message bytes. `keyId` and `algorithm` identify the signing key in the issuer's JWKS.
|
|
4167
4201
|
* @link /v1/kms/issuers/{issuerId}/sign/message
|
|
4168
4202
|
*/ async function signKmsMessage({ pathParams, config } = {}) {
|
|
4169
4203
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
@@ -8357,7 +8391,10 @@ const operationsByPath = {
|
|
|
8357
8391
|
"GET /v1/registrar/tlds/{tld}/price": getTldPrice,
|
|
8358
8392
|
"GET /v1/registrar/domains/{domain}/availability": getDomainAvailability,
|
|
8359
8393
|
"GET /v1/registrar/domains/{domain}/price": getDomainPrice,
|
|
8394
|
+
"POST /v1/registrar/domains/price": getBulkPrice,
|
|
8360
8395
|
"POST /v1/registrar/domains/availability": getBulkAvailability,
|
|
8396
|
+
"POST /v1/registrar/domains/search": searchDomains,
|
|
8397
|
+
"GET /v1/registrar/domains/{domain}/contact-info/schema": getContactInfoSchema,
|
|
8361
8398
|
"GET /v1/registrar/domains/{domain}/auth-code": getDomainAuthCode,
|
|
8362
8399
|
"POST /v1/registrar/domains/{domain}/buy": buySingleDomain,
|
|
8363
8400
|
"POST /v1/registrar/domains/buy": buyDomains,
|
|
@@ -8367,7 +8404,6 @@ const operationsByPath = {
|
|
|
8367
8404
|
"PATCH /v1/registrar/domains/{domain}/auto-renew": updateDomainAutoRenew,
|
|
8368
8405
|
"PATCH /v1/registrar/domains/{domain}/nameservers": updateDomainNameservers,
|
|
8369
8406
|
"GET /v1/registrar/domains/{domain}/contact-verification": getDomainContactVerification,
|
|
8370
|
-
"GET /v1/registrar/domains/{domain}/contact-info/schema": getContactInfoSchema,
|
|
8371
8407
|
"GET /v1/registrar/orders/{orderId}": getOrder,
|
|
8372
8408
|
"GET /v6/domains/{domain}/config": getDomainConfig,
|
|
8373
8409
|
"GET /v9/domains/{domain}/verification": getDomainVerificationRecord,
|
|
@@ -8813,7 +8849,10 @@ const operationsByTag = {
|
|
|
8813
8849
|
getTldPrice,
|
|
8814
8850
|
getDomainAvailability,
|
|
8815
8851
|
getDomainPrice,
|
|
8852
|
+
getBulkPrice,
|
|
8816
8853
|
getBulkAvailability,
|
|
8854
|
+
searchDomains,
|
|
8855
|
+
getContactInfoSchema,
|
|
8817
8856
|
getDomainAuthCode,
|
|
8818
8857
|
buySingleDomain,
|
|
8819
8858
|
buyDomains,
|
|
@@ -8823,7 +8862,6 @@ const operationsByTag = {
|
|
|
8823
8862
|
updateDomainAutoRenew,
|
|
8824
8863
|
updateDomainNameservers,
|
|
8825
8864
|
getDomainContactVerification,
|
|
8826
|
-
getContactInfoSchema,
|
|
8827
8865
|
getOrder
|
|
8828
8866
|
},
|
|
8829
8867
|
domains: {
|
|
@@ -9408,14 +9446,16 @@ const tagDictionary = {
|
|
|
9408
9446
|
"getTldPrice",
|
|
9409
9447
|
"getDomainAvailability",
|
|
9410
9448
|
"getDomainPrice",
|
|
9449
|
+
"getContactInfoSchema",
|
|
9411
9450
|
"getDomainAuthCode",
|
|
9412
9451
|
"getDomainTransferIn",
|
|
9413
9452
|
"getDomainContactVerification",
|
|
9414
|
-
"getContactInfoSchema",
|
|
9415
9453
|
"getOrder"
|
|
9416
9454
|
],
|
|
9417
9455
|
POST: [
|
|
9456
|
+
"getBulkPrice",
|
|
9418
9457
|
"getBulkAvailability",
|
|
9458
|
+
"searchDomains",
|
|
9419
9459
|
"buySingleDomain",
|
|
9420
9460
|
"buyDomains",
|
|
9421
9461
|
"transferInDomain",
|
|
@@ -10112,6 +10152,7 @@ exports.getAuthToken = getAuthToken;
|
|
|
10112
10152
|
exports.getAuthUser = getAuthUser;
|
|
10113
10153
|
exports.getBillingPlans = getBillingPlans;
|
|
10114
10154
|
exports.getBulkAvailability = getBulkAvailability;
|
|
10155
|
+
exports.getBulkPrice = getBulkPrice;
|
|
10115
10156
|
exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest;
|
|
10116
10157
|
exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid = getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
10117
10158
|
exports.getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference = getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
@@ -10310,6 +10351,7 @@ exports.revokeInstallationCredential = revokeInstallationCredential;
|
|
|
10310
10351
|
exports.revokeKmsSigningKey = revokeKmsSigningKey;
|
|
10311
10352
|
exports.rotateInstallationCredential = rotateInstallationCredential;
|
|
10312
10353
|
exports.runSessionCommand = runSessionCommand;
|
|
10354
|
+
exports.searchDomains = searchDomains;
|
|
10313
10355
|
exports.searchRepo = searchRepo;
|
|
10314
10356
|
exports.signKmsMessage = signKmsMessage;
|
|
10315
10357
|
exports.signKmsToken = signKmsToken;
|
package/dist/components.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
2
|
|
|
3
|
-
var components = require('./components-
|
|
3
|
+
var components = require('./components-pfe7zbum.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
@@ -152,6 +152,7 @@ exports.getAuthToken = components.getAuthToken;
|
|
|
152
152
|
exports.getAuthUser = components.getAuthUser;
|
|
153
153
|
exports.getBillingPlans = components.getBillingPlans;
|
|
154
154
|
exports.getBulkAvailability = components.getBulkAvailability;
|
|
155
|
+
exports.getBulkPrice = components.getBulkPrice;
|
|
155
156
|
exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest = components.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest;
|
|
156
157
|
exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid = components.getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
157
158
|
exports.getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference = components.getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
@@ -350,6 +351,7 @@ exports.revokeInstallationCredential = components.revokeInstallationCredential;
|
|
|
350
351
|
exports.revokeKmsSigningKey = components.revokeKmsSigningKey;
|
|
351
352
|
exports.rotateInstallationCredential = components.rotateInstallationCredential;
|
|
352
353
|
exports.runSessionCommand = components.runSessionCommand;
|
|
354
|
+
exports.searchDomains = components.searchDomains;
|
|
353
355
|
exports.searchRepo = components.searchRepo;
|
|
354
356
|
exports.signKmsMessage = components.signKmsMessage;
|
|
355
357
|
exports.signKmsToken = components.signKmsToken;
|
package/dist/components.d.mts
CHANGED
|
@@ -1618,6 +1618,19 @@ declare function getDomainPrice({ pathParams, queryParams, config, }?: {
|
|
|
1618
1618
|
client?: typeof client;
|
|
1619
1619
|
};
|
|
1620
1620
|
}): Promise<unknown>;
|
|
1621
|
+
/**
|
|
1622
|
+
* @summary Get price data for multiple domains
|
|
1623
|
+
* @description Get price data for multiple domains in a single request.
|
|
1624
|
+
* @link /v1/registrar/domains/price
|
|
1625
|
+
*/
|
|
1626
|
+
declare function getBulkPrice({ queryParams, config, }?: {
|
|
1627
|
+
queryParams?: {
|
|
1628
|
+
teamId?: string;
|
|
1629
|
+
};
|
|
1630
|
+
config?: Partial<FetcherConfig> & {
|
|
1631
|
+
client?: typeof client;
|
|
1632
|
+
};
|
|
1633
|
+
}): Promise<unknown>;
|
|
1621
1634
|
/**
|
|
1622
1635
|
* @summary Get availability for multiple domains
|
|
1623
1636
|
* @description Get availability for multiple domains. If the domains are available, they can be purchased using the [Buy a domain](https://vercel.com/docs/rest-api/reference/endpoints/domains-registrar/buy-a-domain) endpoint or the [Buy multiple domains](https://vercel.com/docs/rest-api/reference/endpoints/domains-registrar/buy-multiple-domains) endpoint.
|
|
@@ -1631,6 +1644,35 @@ declare function getBulkAvailability({ queryParams, config, }?: {
|
|
|
1631
1644
|
client?: typeof client;
|
|
1632
1645
|
};
|
|
1633
1646
|
}): Promise<unknown>;
|
|
1647
|
+
/**
|
|
1648
|
+
* @summary Check domain availability and pricing
|
|
1649
|
+
* @description Check registration availability for 1–200 exact domain names, such as `example.com`. Returns results in input order, with registration and renewal prices in USD for available domains. No authentication required.
|
|
1650
|
+
* @link /v1/registrar/domains/search
|
|
1651
|
+
*/
|
|
1652
|
+
declare function searchDomains({ queryParams, config, }?: {
|
|
1653
|
+
queryParams?: {
|
|
1654
|
+
teamId?: string;
|
|
1655
|
+
};
|
|
1656
|
+
config?: Partial<FetcherConfig> & {
|
|
1657
|
+
client?: typeof client;
|
|
1658
|
+
};
|
|
1659
|
+
}): Promise<unknown>;
|
|
1660
|
+
/**
|
|
1661
|
+
* @summary Get contact info schema
|
|
1662
|
+
* @description Some TLDs require additional contact information. Use this endpoint to get the schema for the tld-specific contact information for a domain.
|
|
1663
|
+
* @link /v1/registrar/domains/{domain}/contact-info/schema
|
|
1664
|
+
*/
|
|
1665
|
+
declare function getContactInfoSchema({ pathParams, queryParams, config, }?: {
|
|
1666
|
+
pathParams: {
|
|
1667
|
+
domain: unknown;
|
|
1668
|
+
};
|
|
1669
|
+
queryParams?: {
|
|
1670
|
+
teamId?: string;
|
|
1671
|
+
};
|
|
1672
|
+
config?: Partial<FetcherConfig> & {
|
|
1673
|
+
client?: typeof client;
|
|
1674
|
+
};
|
|
1675
|
+
}): Promise<unknown>;
|
|
1634
1676
|
/**
|
|
1635
1677
|
* @summary Get the auth code for a domain
|
|
1636
1678
|
* @description Get the auth code for a domain. This is required to transfer a domain from Vercel to another registrar.
|
|
@@ -1772,22 +1814,6 @@ declare function getDomainContactVerification({ pathParams, queryParams, config,
|
|
|
1772
1814
|
client?: typeof client;
|
|
1773
1815
|
};
|
|
1774
1816
|
}): Promise<unknown>;
|
|
1775
|
-
/**
|
|
1776
|
-
* @summary Get contact info schema
|
|
1777
|
-
* @description Some TLDs require additional contact information. Use this endpoint to get the schema for the tld-specific contact information for a domain.
|
|
1778
|
-
* @link /v1/registrar/domains/{domain}/contact-info/schema
|
|
1779
|
-
*/
|
|
1780
|
-
declare function getContactInfoSchema({ pathParams, queryParams, config, }?: {
|
|
1781
|
-
pathParams: {
|
|
1782
|
-
domain: unknown;
|
|
1783
|
-
};
|
|
1784
|
-
queryParams?: {
|
|
1785
|
-
teamId?: string;
|
|
1786
|
-
};
|
|
1787
|
-
config?: Partial<FetcherConfig> & {
|
|
1788
|
-
client?: typeof client;
|
|
1789
|
-
};
|
|
1790
|
-
}): Promise<unknown>;
|
|
1791
1817
|
/**
|
|
1792
1818
|
* @summary Get a domain order
|
|
1793
1819
|
* @description Get information about a domain order by its ID
|
|
@@ -3524,7 +3550,7 @@ declare function createKmsIssuer({ queryParams, config, }?: {
|
|
|
3524
3550
|
}): Promise<unknown>;
|
|
3525
3551
|
/**
|
|
3526
3552
|
* @summary Sign a message
|
|
3527
|
-
* @description Sign a raw message with a KMS issuer's active signing key. Authenticate the request with a Vercel OIDC token in the `Authorization: Bearer` header; the issuer's policies decide which workloads are allowed to sign.
|
|
3553
|
+
* @description Sign a raw message with a KMS issuer's active signing key. Authenticate the request with a Vercel OIDC token in the `Authorization: Bearer` header; the issuer's policies decide which workloads are allowed to sign. The response `signature` is standard-base64 of the raw signature over the decoded message bytes. `keyId` and `algorithm` identify the signing key in the issuer's JWKS.
|
|
3528
3554
|
* @link /v1/kms/issuers/{issuerId}/sign/message
|
|
3529
3555
|
*/
|
|
3530
3556
|
declare function signKmsMessage({ pathParams, config, }?: {
|
|
@@ -7028,7 +7054,10 @@ declare const operationsByPath: {
|
|
|
7028
7054
|
"GET /v1/registrar/tlds/{tld}/price": typeof getTldPrice;
|
|
7029
7055
|
"GET /v1/registrar/domains/{domain}/availability": typeof getDomainAvailability;
|
|
7030
7056
|
"GET /v1/registrar/domains/{domain}/price": typeof getDomainPrice;
|
|
7057
|
+
"POST /v1/registrar/domains/price": typeof getBulkPrice;
|
|
7031
7058
|
"POST /v1/registrar/domains/availability": typeof getBulkAvailability;
|
|
7059
|
+
"POST /v1/registrar/domains/search": typeof searchDomains;
|
|
7060
|
+
"GET /v1/registrar/domains/{domain}/contact-info/schema": typeof getContactInfoSchema;
|
|
7032
7061
|
"GET /v1/registrar/domains/{domain}/auth-code": typeof getDomainAuthCode;
|
|
7033
7062
|
"POST /v1/registrar/domains/{domain}/buy": typeof buySingleDomain;
|
|
7034
7063
|
"POST /v1/registrar/domains/buy": typeof buyDomains;
|
|
@@ -7038,7 +7067,6 @@ declare const operationsByPath: {
|
|
|
7038
7067
|
"PATCH /v1/registrar/domains/{domain}/auto-renew": typeof updateDomainAutoRenew;
|
|
7039
7068
|
"PATCH /v1/registrar/domains/{domain}/nameservers": typeof updateDomainNameservers;
|
|
7040
7069
|
"GET /v1/registrar/domains/{domain}/contact-verification": typeof getDomainContactVerification;
|
|
7041
|
-
"GET /v1/registrar/domains/{domain}/contact-info/schema": typeof getContactInfoSchema;
|
|
7042
7070
|
"GET /v1/registrar/orders/{orderId}": typeof getOrder;
|
|
7043
7071
|
"GET /v6/domains/{domain}/config": typeof getDomainConfig;
|
|
7044
7072
|
"GET /v9/domains/{domain}/verification": typeof getDomainVerificationRecord;
|
|
@@ -7484,7 +7512,10 @@ declare const operationsByTag: {
|
|
|
7484
7512
|
getTldPrice: typeof getTldPrice;
|
|
7485
7513
|
getDomainAvailability: typeof getDomainAvailability;
|
|
7486
7514
|
getDomainPrice: typeof getDomainPrice;
|
|
7515
|
+
getBulkPrice: typeof getBulkPrice;
|
|
7487
7516
|
getBulkAvailability: typeof getBulkAvailability;
|
|
7517
|
+
searchDomains: typeof searchDomains;
|
|
7518
|
+
getContactInfoSchema: typeof getContactInfoSchema;
|
|
7488
7519
|
getDomainAuthCode: typeof getDomainAuthCode;
|
|
7489
7520
|
buySingleDomain: typeof buySingleDomain;
|
|
7490
7521
|
buyDomains: typeof buyDomains;
|
|
@@ -7494,7 +7525,6 @@ declare const operationsByTag: {
|
|
|
7494
7525
|
updateDomainAutoRenew: typeof updateDomainAutoRenew;
|
|
7495
7526
|
updateDomainNameservers: typeof updateDomainNameservers;
|
|
7496
7527
|
getDomainContactVerification: typeof getDomainContactVerification;
|
|
7497
|
-
getContactInfoSchema: typeof getContactInfoSchema;
|
|
7498
7528
|
getOrder: typeof getOrder;
|
|
7499
7529
|
};
|
|
7500
7530
|
domains: {
|
|
@@ -7921,8 +7951,8 @@ declare const tagDictionary: {
|
|
|
7921
7951
|
readonly DELETE: readonly ["removeRecord"];
|
|
7922
7952
|
};
|
|
7923
7953
|
readonly domainsRegistrar: {
|
|
7924
|
-
readonly GET: readonly ["getSupportedTlds", "getTld", "getTldPrice", "getDomainAvailability", "getDomainPrice", "
|
|
7925
|
-
readonly POST: readonly ["getBulkAvailability", "buySingleDomain", "buyDomains", "transferInDomain", "renewDomain"];
|
|
7954
|
+
readonly GET: readonly ["getSupportedTlds", "getTld", "getTldPrice", "getDomainAvailability", "getDomainPrice", "getContactInfoSchema", "getDomainAuthCode", "getDomainTransferIn", "getDomainContactVerification", "getOrder"];
|
|
7955
|
+
readonly POST: readonly ["getBulkPrice", "getBulkAvailability", "searchDomains", "buySingleDomain", "buyDomains", "transferInDomain", "renewDomain"];
|
|
7926
7956
|
readonly PATCH: readonly ["updateDomainAutoRenew", "updateDomainNameservers"];
|
|
7927
7957
|
};
|
|
7928
7958
|
readonly domains: {
|
|
@@ -8078,5 +8108,5 @@ declare const tagDictionary: {
|
|
|
8078
8108
|
};
|
|
8079
8109
|
};
|
|
8080
8110
|
|
|
8081
|
-
export { acceptProjectTransferRequest, activateKmsSigningKey, addBypassIp, addProjectDomain, addProjectMember, addRepositoryPermission, addRoute, aggregateEvents, aggregatePageviews, approveRollingReleaseStage, artifactQuery, assignAlias, batchRemoveProjectEnv, buyCredits, buyDomains, buySingleDomain, cancelDeployment, claimDomainOwnership, clearRepositoryPermissions, completeRollingRelease, connectIntegrationResourceToProject, countEvents, countPageviews, createAccessGroup, createAccessGroupProject, createAiGatewayRule, createAiGatewayVirtualModelConfig, createApiKeys, createAuthToken, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads, createCheck, createConfigurableLogDrain, createConnector, createConnectorAuthorizationRequest, createCustomEnvironment, createDeployment, createDeploymentCheckRun, createDrain, createEdgeConfig, createEdgeConfigToken, createEvent, createFlag, createFlagSegment, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems, createIntegrationStoreDirect, createKmsIssuer, createKmsIssuerPolicy, createKmsSigningKey, createLogDrain, createMicrofrontendsGroupWithApplications, createNetwork, createObservabilityQuery, createOrTransferDomain, createPrivateLinkEndpoint, createProject, createProjectCheck, createProjectEnv, createProjectTransferRequest, createRecord, createRepository, createSandboxesByNameForkV2, createSandboxesByNameForkV3, createSandboxesSessionsBySessionIdSnapshotV2, createSandboxesSessionsBySessionIdSnapshotV3, createSandboxesV2, createSandboxesV3, createSandboxesV4, createSdkKey, createSecurityFirewallConfigByConfigVersionActivate, createSessionDirectory, createSharedEnvVariable, createSpeedInsightsToggle, createStorageStoresBlob, createTeam, createTraceSession, createWebInsightsToggle, createWebhook, dangerouslyDeleteBySrcImages, dangerouslyDeleteByTags, deleteAccessGroup, deleteAccessGroupProject, deleteAiGatewayRule, deleteAiGatewayVirtualModelConfig, deleteAiGatewayVirtualModelConfigBySlug, deleteAlias, deleteAllArtifacts, deleteAuthToken, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, deleteConfigurableLogDrain, deleteConfiguration, deleteConnector, deleteConnectorProjectConnection, deleteDeployment, deleteDomain, deleteDrain, deleteDrive, deleteEdgeConfig, deleteEdgeConfigSchema, deleteEdgeConfigTokens, deleteFlag, deleteFlagSegment, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, deleteIntegrationLogDrain, deleteIntegrationResource, deleteKmsIssuer, deleteKmsIssuerPolicy, deleteMicrofrontendsGroup, deleteNetwork, deletePrivateLinkEndpoint, deleteProject, deleteProjectCheck, deleteRedirects, deleteRepository, deleteRepositoryImage, deleteRollingReleaseConfig, deleteRoutes, deleteSandbox, deleteSdkKey, deleteSecurityFirewallConfigByConfigVersion, deleteSessionSnapshot, deleteSharedEnvVariable, deleteStorageStoresBlobById, deleteTeam, deleteTeamInviteCode, deleteWebhook, downloadArtifact, editProjectEnv, editRedirect, editRoute, exchangeSsoToken, extendSessionTimeout, filterProjectEnvs, finalizeInstallation, generateFirewallRule, generateRoute, getAccountInfo, getActiveAttackStatus, getAiGatewayVirtualModelConfig, getAiGatewayVirtualModelConfigBySlug, getAlias, getAllChecks, getAllLogDrains, getAuthToken, getAuthUser, getBillingPlans, getBulkAvailability, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, getByTeamSlugByProjectSlugByRepositoryNameTagsList, getBypassIp, getCertById, getCerts, getCheck, getConfigurableLogDrain, getConfiguration, getConfigurationProducts, getConfigurations, getConnector, getConnectorProjectConnection, getConnectorToken, getContactInfoSchema, getCustomEnvironment, getDeployment, getDeploymentCheckRun, getDeploymentEvents, getDeploymentFeatureFlags, getDeploymentFileContents, getDeployments, getDomain, getDomainAuthCode, getDomainAvailability, getDomainConfig, getDomainContactVerification, getDomainPrice, getDomainProjectDomains, getDomainTransferIn, getDomainVerificationRecord, getDomains, getDomainsRecordsByRecordId, getDrain, getDrains, getEdgeConfig, getEdgeConfigBackup, getEdgeConfigBackups, getEdgeConfigItem, getEdgeConfigItems, getEdgeConfigSchema, getEdgeConfigToken, getEdgeConfigTokens, getEdgeConfigs, getFirewallConfig, getFlag, getFlagSegment, getFlagSettings, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig, getIntegrationLogDrains, getIntegrationResource, getIntegrationResources, getInvoice, getKmsIssuer, getMember, getMicrofrontendsConfig, getMicrofrontendsConfigForProject, getMicrofrontendsGroups, getMicrofrontendsInGroup, getNamedSandbox, getObservabilityConfigurationProjects, getObservabilitySchema, getObservabilitySchemaByMetricId, getOrCreateDrive, getOrder, getProject, getProjectCheck, getProjectDomain, getProjectDomains, getProjectEnv, getProjectMembers, getProjectToken, getProjectTrace, getProjects, getProjectsByIdOrNameCustomEnvironments, getRecords, getRedirects, getRepository, getRepositoryImage, getRepositoryTag, getRollingRelease, getRollingReleaseBillingStatus, getRollingReleaseConfig, getRoot, getRouteVersions, getRoutes, getRuntimeLogs, getSdkKeys, getSecurityFirewallConfig, getSecurityFirewallEvents, getSession, getSessionCommand, getSessionCommandLogs, getSessionSnapshot, getSharedEnvVar, getStorageStoresById, getSupportedTlds, getTeam, getTeamAccessRequest, getTeamMembers, getTeams, getTld, getTldPrice, getVersions, getWebhook, getWebhooks, gitNamespaces, importResource, invalidateBySrcImages, invalidateByTags, inviteUserToTeam, issueCert, joinTeam, killSessionCommand, listAccessGroupMembers, listAccessGroupProjects, listAccessGroups, listAiGatewayRules, listAiGatewayVirtualModelConfigs, listAliases, listAuthTokens, listBillingCharges, listCheckRuns, listConnectorProjectConnections, listConnectors, listContractCommitments, listDeploymentAliases, listDeploymentCheckRuns, listDeploymentFiles, listDrives, listEventTypes, listFlagSegments, listFlagVersions, listFlags, listFlagsV2, listKmsIssuers, listNamedSandboxes, listNetworks, listPrivateLinkEndpoints, listProjectChecks, listProjectConnectorConnections, listPromoteAliases, listRepositories, listRepositoryImages, listRepositoryPermissions, listRepositoryTags, listSessionCommands, listSessionSnapshots, listSessions, listSharedEnvVariable, listTeamFlagSettings, listTeamFlags, listTeamFlagsV2, listUserEvents, moveProjectDomain, operationsByPath, operationsByTag, patchDomain, patchEdgeConfigItems, patchEdgeConfigSchema, patchTeam, patchUrlProtectionBypass, pauseProject, postTeamDsyncRoles, putFirewallConfig, readAccessGroup, readAccessGroupProject, readNetwork, readPrivateLinkEndpoint, readSessionFile, recordEvents, removeBypassIp, removeCert, removeCustomEnvironment, removeProjectDomain, removeProjectEnv, removeProjectMember, removeRecord, removeRepositoryPermission, removeTeamMember, renewDomain, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, replaceConnectorTriggerDestinations, replaceDomainsByDomainRecords, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig, requestAccessToTeam, requestDelete, requestPromote, requestRollback, rerequestCheck, restoreEdgeConfigBackup, restoreRedirects, revokeInstallationCredential, revokeKmsSigningKey, rotateInstallationCredential, runSessionCommand, searchRepo, signKmsMessage, signKmsToken, stageRedirects, stageRoutes, startRollingRelease, status, stopSession, submitBillingData, submitInvoice, submitPrepaymentBalances, tagDictionary, testDrain, transferInDomain, unlinkSharedEnvVariable, unpauseProject, updateAccessGroup, updateAccessGroupProject, updateAiGatewayRule, updateAiGatewayVirtualModelConfig, updateAiGatewayVirtualModelConfigBySlug, updateAttackChallengeMode, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, updateCheck, updateConnector, updateCustomEnvironment, updateDeploymentCheckRun, updateDomainAutoRenew, updateDomainNameservers, updateDrain, updateEdgeConfig, updateFirewallConfig, updateFlag, updateFlagSegment, updateFlagSettings, updateInstallation, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, updateIntegrationDeploymentAction, updateInvoice, updateKmsIssuer, updateKmsIssuerPolicy, updateMicrofrontends, updateMicrofrontendsGroup, updateNetwork, updateObservabilityConfigurationProject, updatePrivateLinkEndpoint, updateProject, updateProjectCheck, updateProjectDomain, updateProjectProtectionBypass, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescription, updateRecord, updateResource, updateResourceSecrets, updateResourceSecretsById, updateRollingReleaseConfig, updateRouteVersions, updateSandbox, updateSessionNetworkPolicy, updateSharedEnvVariable, updateStaticIps, updateTeamMember, updateVersion, uploadArtifact, uploadCert, uploadFile, uploadProjectAvatar, upsertConnectorProjectConnection, verifyProjectDomain, writeSessionFiles };
|
|
8111
|
+
export { acceptProjectTransferRequest, activateKmsSigningKey, addBypassIp, addProjectDomain, addProjectMember, addRepositoryPermission, addRoute, aggregateEvents, aggregatePageviews, approveRollingReleaseStage, artifactQuery, assignAlias, batchRemoveProjectEnv, buyCredits, buyDomains, buySingleDomain, cancelDeployment, claimDomainOwnership, clearRepositoryPermissions, completeRollingRelease, connectIntegrationResourceToProject, countEvents, countPageviews, createAccessGroup, createAccessGroupProject, createAiGatewayRule, createAiGatewayVirtualModelConfig, createApiKeys, createAuthToken, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads, createCheck, createConfigurableLogDrain, createConnector, createConnectorAuthorizationRequest, createCustomEnvironment, createDeployment, createDeploymentCheckRun, createDrain, createEdgeConfig, createEdgeConfigToken, createEvent, createFlag, createFlagSegment, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems, createIntegrationStoreDirect, createKmsIssuer, createKmsIssuerPolicy, createKmsSigningKey, createLogDrain, createMicrofrontendsGroupWithApplications, createNetwork, createObservabilityQuery, createOrTransferDomain, createPrivateLinkEndpoint, createProject, createProjectCheck, createProjectEnv, createProjectTransferRequest, createRecord, createRepository, createSandboxesByNameForkV2, createSandboxesByNameForkV3, createSandboxesSessionsBySessionIdSnapshotV2, createSandboxesSessionsBySessionIdSnapshotV3, createSandboxesV2, createSandboxesV3, createSandboxesV4, createSdkKey, createSecurityFirewallConfigByConfigVersionActivate, createSessionDirectory, createSharedEnvVariable, createSpeedInsightsToggle, createStorageStoresBlob, createTeam, createTraceSession, createWebInsightsToggle, createWebhook, dangerouslyDeleteBySrcImages, dangerouslyDeleteByTags, deleteAccessGroup, deleteAccessGroupProject, deleteAiGatewayRule, deleteAiGatewayVirtualModelConfig, deleteAiGatewayVirtualModelConfigBySlug, deleteAlias, deleteAllArtifacts, deleteAuthToken, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, deleteConfigurableLogDrain, deleteConfiguration, deleteConnector, deleteConnectorProjectConnection, deleteDeployment, deleteDomain, deleteDrain, deleteDrive, deleteEdgeConfig, deleteEdgeConfigSchema, deleteEdgeConfigTokens, deleteFlag, deleteFlagSegment, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, deleteIntegrationLogDrain, deleteIntegrationResource, deleteKmsIssuer, deleteKmsIssuerPolicy, deleteMicrofrontendsGroup, deleteNetwork, deletePrivateLinkEndpoint, deleteProject, deleteProjectCheck, deleteRedirects, deleteRepository, deleteRepositoryImage, deleteRollingReleaseConfig, deleteRoutes, deleteSandbox, deleteSdkKey, deleteSecurityFirewallConfigByConfigVersion, deleteSessionSnapshot, deleteSharedEnvVariable, deleteStorageStoresBlobById, deleteTeam, deleteTeamInviteCode, deleteWebhook, downloadArtifact, editProjectEnv, editRedirect, editRoute, exchangeSsoToken, extendSessionTimeout, filterProjectEnvs, finalizeInstallation, generateFirewallRule, generateRoute, getAccountInfo, getActiveAttackStatus, getAiGatewayVirtualModelConfig, getAiGatewayVirtualModelConfigBySlug, getAlias, getAllChecks, getAllLogDrains, getAuthToken, getAuthUser, getBillingPlans, getBulkAvailability, getBulkPrice, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, getByTeamSlugByProjectSlugByRepositoryNameTagsList, getBypassIp, getCertById, getCerts, getCheck, getConfigurableLogDrain, getConfiguration, getConfigurationProducts, getConfigurations, getConnector, getConnectorProjectConnection, getConnectorToken, getContactInfoSchema, getCustomEnvironment, getDeployment, getDeploymentCheckRun, getDeploymentEvents, getDeploymentFeatureFlags, getDeploymentFileContents, getDeployments, getDomain, getDomainAuthCode, getDomainAvailability, getDomainConfig, getDomainContactVerification, getDomainPrice, getDomainProjectDomains, getDomainTransferIn, getDomainVerificationRecord, getDomains, getDomainsRecordsByRecordId, getDrain, getDrains, getEdgeConfig, getEdgeConfigBackup, getEdgeConfigBackups, getEdgeConfigItem, getEdgeConfigItems, getEdgeConfigSchema, getEdgeConfigToken, getEdgeConfigTokens, getEdgeConfigs, getFirewallConfig, getFlag, getFlagSegment, getFlagSettings, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig, getIntegrationLogDrains, getIntegrationResource, getIntegrationResources, getInvoice, getKmsIssuer, getMember, getMicrofrontendsConfig, getMicrofrontendsConfigForProject, getMicrofrontendsGroups, getMicrofrontendsInGroup, getNamedSandbox, getObservabilityConfigurationProjects, getObservabilitySchema, getObservabilitySchemaByMetricId, getOrCreateDrive, getOrder, getProject, getProjectCheck, getProjectDomain, getProjectDomains, getProjectEnv, getProjectMembers, getProjectToken, getProjectTrace, getProjects, getProjectsByIdOrNameCustomEnvironments, getRecords, getRedirects, getRepository, getRepositoryImage, getRepositoryTag, getRollingRelease, getRollingReleaseBillingStatus, getRollingReleaseConfig, getRoot, getRouteVersions, getRoutes, getRuntimeLogs, getSdkKeys, getSecurityFirewallConfig, getSecurityFirewallEvents, getSession, getSessionCommand, getSessionCommandLogs, getSessionSnapshot, getSharedEnvVar, getStorageStoresById, getSupportedTlds, getTeam, getTeamAccessRequest, getTeamMembers, getTeams, getTld, getTldPrice, getVersions, getWebhook, getWebhooks, gitNamespaces, importResource, invalidateBySrcImages, invalidateByTags, inviteUserToTeam, issueCert, joinTeam, killSessionCommand, listAccessGroupMembers, listAccessGroupProjects, listAccessGroups, listAiGatewayRules, listAiGatewayVirtualModelConfigs, listAliases, listAuthTokens, listBillingCharges, listCheckRuns, listConnectorProjectConnections, listConnectors, listContractCommitments, listDeploymentAliases, listDeploymentCheckRuns, listDeploymentFiles, listDrives, listEventTypes, listFlagSegments, listFlagVersions, listFlags, listFlagsV2, listKmsIssuers, listNamedSandboxes, listNetworks, listPrivateLinkEndpoints, listProjectChecks, listProjectConnectorConnections, listPromoteAliases, listRepositories, listRepositoryImages, listRepositoryPermissions, listRepositoryTags, listSessionCommands, listSessionSnapshots, listSessions, listSharedEnvVariable, listTeamFlagSettings, listTeamFlags, listTeamFlagsV2, listUserEvents, moveProjectDomain, operationsByPath, operationsByTag, patchDomain, patchEdgeConfigItems, patchEdgeConfigSchema, patchTeam, patchUrlProtectionBypass, pauseProject, postTeamDsyncRoles, putFirewallConfig, readAccessGroup, readAccessGroupProject, readNetwork, readPrivateLinkEndpoint, readSessionFile, recordEvents, removeBypassIp, removeCert, removeCustomEnvironment, removeProjectDomain, removeProjectEnv, removeProjectMember, removeRecord, removeRepositoryPermission, removeTeamMember, renewDomain, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, replaceConnectorTriggerDestinations, replaceDomainsByDomainRecords, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig, requestAccessToTeam, requestDelete, requestPromote, requestRollback, rerequestCheck, restoreEdgeConfigBackup, restoreRedirects, revokeInstallationCredential, revokeKmsSigningKey, rotateInstallationCredential, runSessionCommand, searchDomains, searchRepo, signKmsMessage, signKmsToken, stageRedirects, stageRoutes, startRollingRelease, status, stopSession, submitBillingData, submitInvoice, submitPrepaymentBalances, tagDictionary, testDrain, transferInDomain, unlinkSharedEnvVariable, unpauseProject, updateAccessGroup, updateAccessGroupProject, updateAiGatewayRule, updateAiGatewayVirtualModelConfig, updateAiGatewayVirtualModelConfigBySlug, updateAttackChallengeMode, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, updateCheck, updateConnector, updateCustomEnvironment, updateDeploymentCheckRun, updateDomainAutoRenew, updateDomainNameservers, updateDrain, updateEdgeConfig, updateFirewallConfig, updateFlag, updateFlagSegment, updateFlagSettings, updateInstallation, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, updateIntegrationDeploymentAction, updateInvoice, updateKmsIssuer, updateKmsIssuerPolicy, updateMicrofrontends, updateMicrofrontendsGroup, updateNetwork, updateObservabilityConfigurationProject, updatePrivateLinkEndpoint, updateProject, updateProjectCheck, updateProjectDomain, updateProjectProtectionBypass, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescription, updateRecord, updateResource, updateResourceSecrets, updateResourceSecretsById, updateRollingReleaseConfig, updateRouteVersions, updateSandbox, updateSessionNetworkPolicy, updateSharedEnvVariable, updateStaticIps, updateTeamMember, updateVersion, uploadArtifact, uploadCert, uploadFile, uploadProjectAvatar, upsertConnectorProjectConnection, verifyProjectDomain, writeSessionFiles };
|
|
8082
8112
|
//# sourceMappingURL=components.d.mts.map
|