vercel-api-js 1.11.0 → 1.12.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.
@@ -3311,6 +3311,25 @@ const resolveUrl = (url, queryParams = {})=>{
3311
3311
  });
3312
3312
  return data;
3313
3313
  }
3314
+ /**
3315
+ * @summary Rotate Installation Credential
3316
+ * @description Issues a replacement access token for an installation, so a partner can rotate a credential it believes is compromised without the customer having to reinstall. Authenticated by the credential being replaced plus the integration's client secret: a leaked access token on its own cannot rotate itself, which would otherwise let an attacker take over the installation and lock the partner out. The previous credential intentionally stays valid so in-flight requests keep working. Retiring it is a separate, explicit operation — a partner is never left mid-rotation without a working credential.
3317
+ * @link /v1/installations/{integrationConfigurationId}/credentials/rotate
3318
+ */ async function rotateInstallationCredential({ pathParams, config } = {}) {
3319
+ const { client: request = client, ...requestConfig } = config ?? {};
3320
+ if (!pathParams.integrationConfigurationId) {
3321
+ throw new Error(`Missing required path parameter: integrationConfigurationId`);
3322
+ }
3323
+ const data = await request({
3324
+ method: "POST",
3325
+ url: `/v1/installations/${pathParams.integrationConfigurationId}/credentials/rotate`,
3326
+ ...requestConfig,
3327
+ headers: {
3328
+ ...requestConfig.headers
3329
+ }
3330
+ });
3331
+ return data;
3332
+ }
3314
3333
  /**
3315
3334
  * @summary Create Event
3316
3335
  * @description Partner notifies Vercel of any changes made to an Installation or a Resource. Vercel is expected to use `list-resources` and other read APIs to get the new state.<br/> <br/> `resource.updated` event should be dispatched when any state of a resource linked to Vercel is modified by the partner.<br/> `installation.updated` event should be dispatched when an installation's billing plan is changed via the provider instead of Vercel.<br/> <br/> Resource update use cases: <br/> <br/> - The user renames a database in the partner’s application. The partner should dispatch a `resource.updated` event to notify Vercel to update the resource in Vercel’s datastores.<br/> - A resource has been suspended due to a lack of use. The partner should dispatch a `resource.updated` event to notify Vercel to update the resource's status in Vercel's datastores.<br/>
@@ -5735,7 +5754,7 @@ const resolveUrl = (url, queryParams = {})=>{
5735
5754
  * @summary Create a snapshot
5736
5755
  * @description Creates a point-in-time snapshot of a running session's filesystem. Snapshots can be used to quickly restore a session to a previous state or to create new sessions with pre-configured environments. The session must be running and able to accept commands for a snapshot to be created. The session will be terminated after the snapshot is created.
5737
5756
  * @link /v2/sandboxes/sessions/{sessionId}/snapshot
5738
- */ async function createSessionSnapshot({ pathParams, queryParams, config } = {}) {
5757
+ */ async function createSandboxesSessionsBySessionIdSnapshotV2({ pathParams, queryParams, config } = {}) {
5739
5758
  const { client: request = client, ...requestConfig } = config ?? {};
5740
5759
  if (!pathParams.sessionId) {
5741
5760
  throw new Error(`Missing required path parameter: sessionId`);
@@ -5755,7 +5774,7 @@ const resolveUrl = (url, queryParams = {})=>{
5755
5774
  * @summary Fork a named sandbox
5756
5775
  * @description Forks a named sandbox, creating a new named sandbox from the source's configuration. Resources, timeout, ports, tags, network policy, mounts, Connect network, image, persistence, snapshot settings and — unlike the SDK-side fork — environment variables are copied from the source automatically (`interactive` is not). When the source has a snapshot the fork starts from it; otherwise it starts from the source's runtime/image. Any field provided in the request body overrides the value copied from the source.
5757
5776
  * @link /v2/sandboxes/{name}/fork
5758
- */ async function createSandboxesByNameFork({ pathParams, queryParams, config } = {}) {
5777
+ */ async function createSandboxesByNameForkV2({ pathParams, queryParams, config } = {}) {
5759
5778
  const { client: request = client, ...requestConfig } = config ?? {};
5760
5779
  if (!pathParams.name) {
5761
5780
  throw new Error(`Missing required path parameter: name`);
@@ -5788,6 +5807,63 @@ const resolveUrl = (url, queryParams = {})=>{
5788
5807
  });
5789
5808
  return data;
5790
5809
  }
5810
+ /**
5811
+ * @summary Create a snapshot
5812
+ * @description Creates a point-in-time snapshot of a running session's filesystem. Snapshots can be used to quickly restore a session to a previous state or to create new sessions with pre-configured environments. The session must be running and able to accept commands for a snapshot to be created. The session will be terminated after the snapshot is created. Unlike v2, snapshots expire after 7 days when neither the request nor the sandbox configuration specifies an expiration.
5813
+ * @link /v3/sandboxes/sessions/{sessionId}/snapshot
5814
+ */ async function createSandboxesSessionsBySessionIdSnapshotV3({ pathParams, queryParams, config } = {}) {
5815
+ const { client: request = client, ...requestConfig } = config ?? {};
5816
+ if (!pathParams.sessionId) {
5817
+ throw new Error(`Missing required path parameter: sessionId`);
5818
+ }
5819
+ const data = await request({
5820
+ method: "POST",
5821
+ url: `/v3/sandboxes/sessions/${pathParams.sessionId}/snapshot`,
5822
+ queryParams,
5823
+ ...requestConfig,
5824
+ headers: {
5825
+ ...requestConfig.headers
5826
+ }
5827
+ });
5828
+ return data;
5829
+ }
5830
+ /**
5831
+ * @summary Fork a named sandbox
5832
+ * @description Forks a named sandbox, creating a new named sandbox from the source's configuration. Resources, timeout, ports, tags, network policy, mounts, Connect network, image, persistence, snapshot settings and — unlike the SDK-side fork — environment variables are copied from the source automatically (`interactive` is not). When the source has a snapshot the fork starts from it; otherwise it starts from the source's runtime/image. Any field provided in the request body overrides the value copied from the source. Unlike v2, when neither the body nor the source provides a value, snapshots expire after 7 days by default and persistent sandboxes keep only their most recent snapshot (`keepLastSnapshots: null` disables the limit).
5833
+ * @link /v3/sandboxes/{name}/fork
5834
+ */ async function createSandboxesByNameForkV3({ pathParams, queryParams, config } = {}) {
5835
+ const { client: request = client, ...requestConfig } = config ?? {};
5836
+ if (!pathParams.name) {
5837
+ throw new Error(`Missing required path parameter: name`);
5838
+ }
5839
+ const data = await request({
5840
+ method: "POST",
5841
+ url: `/v3/sandboxes/${pathParams.name}/fork`,
5842
+ queryParams,
5843
+ ...requestConfig,
5844
+ headers: {
5845
+ ...requestConfig.headers
5846
+ }
5847
+ });
5848
+ return data;
5849
+ }
5850
+ /**
5851
+ * @summary Create a named sandbox
5852
+ * @description Creates a named sandbox environment. Named sandboxes have a unique name within a project and support automatic snapshotting on shutdown. When no `image` is provided (and the sandbox is not restored from a snapshot), the sandbox is created from the default universal image. Unlike v3, snapshots expire after 7 days by default and persistent sandboxes keep only their most recent snapshot unless `keepLastSnapshots` is configured otherwise (or set to `null` to disable the limit).
5853
+ * @link /v4/sandboxes
5854
+ */ async function createSandboxesV4({ queryParams, config } = {}) {
5855
+ const { client: request = client, ...requestConfig } = config ?? {};
5856
+ const data = await request({
5857
+ method: "POST",
5858
+ url: `/v4/sandboxes`,
5859
+ queryParams,
5860
+ ...requestConfig,
5861
+ headers: {
5862
+ ...requestConfig.headers
5863
+ }
5864
+ });
5865
+ return data;
5866
+ }
5791
5867
  /**
5792
5868
  * @summary Update Attack Challenge mode
5793
5869
  * @description Update the setting for determining if the project has Attack Challenge mode enabled.
@@ -7742,6 +7818,7 @@ const operationsByPath = {
7742
7818
  "PATCH /v1/installations/{integrationConfigurationId}": updateInstallation,
7743
7819
  "GET /v1/installations/{integrationConfigurationId}/account": getAccountInfo,
7744
7820
  "GET /v1/installations/{integrationConfigurationId}/member/{memberId}": getMember,
7821
+ "POST /v1/installations/{integrationConfigurationId}/credentials/rotate": rotateInstallationCredential,
7745
7822
  "POST /v1/installations/{integrationConfigurationId}/events": createEvent,
7746
7823
  "GET /v1/installations/{integrationConfigurationId}/resources": getIntegrationResources,
7747
7824
  "GET /v1/installations/{integrationConfigurationId}/resources/{resourceId}": getIntegrationResource,
@@ -7862,9 +7939,12 @@ const operationsByPath = {
7862
7939
  "POST /v2/sandboxes/sessions/{sessionId}/fs/read": readSessionFile,
7863
7940
  "POST /v2/sandboxes/sessions/{sessionId}/fs/mkdir": createSessionDirectory,
7864
7941
  "POST /v2/sandboxes/sessions/{sessionId}/fs/write": writeSessionFiles,
7865
- "POST /v2/sandboxes/sessions/{sessionId}/snapshot": createSessionSnapshot,
7866
- "POST /v2/sandboxes/{name}/fork": createSandboxesByNameFork,
7942
+ "POST /v2/sandboxes/sessions/{sessionId}/snapshot": createSandboxesSessionsBySessionIdSnapshotV2,
7943
+ "POST /v2/sandboxes/{name}/fork": createSandboxesByNameForkV2,
7867
7944
  "POST /v3/sandboxes": createSandboxesV3,
7945
+ "POST /v3/sandboxes/sessions/{sessionId}/snapshot": createSandboxesSessionsBySessionIdSnapshotV3,
7946
+ "POST /v3/sandboxes/{name}/fork": createSandboxesByNameForkV3,
7947
+ "POST /v4/sandboxes": createSandboxesV4,
7868
7948
  "POST /v1/security/attack-mode": updateAttackChallengeMode,
7869
7949
  "GET /v1/security/firewall/config": getSecurityFirewallConfig,
7870
7950
  "PUT /v1/security/firewall/config": putFirewallConfig,
@@ -8188,6 +8268,7 @@ const operationsByTag = {
8188
8268
  updateInstallation,
8189
8269
  getAccountInfo,
8190
8270
  getMember,
8271
+ rotateInstallationCredential,
8191
8272
  createEvent,
8192
8273
  getIntegrationResources,
8193
8274
  getIntegrationResource,
@@ -8317,9 +8398,12 @@ const operationsByTag = {
8317
8398
  readSessionFile,
8318
8399
  createSessionDirectory,
8319
8400
  writeSessionFiles,
8320
- createSessionSnapshot,
8321
- createSandboxesByNameFork,
8322
- createSandboxesV3
8401
+ createSandboxesSessionsBySessionIdSnapshotV2,
8402
+ createSandboxesByNameForkV2,
8403
+ createSandboxesV3,
8404
+ createSandboxesSessionsBySessionIdSnapshotV3,
8405
+ createSandboxesByNameForkV3,
8406
+ createSandboxesV4
8323
8407
  },
8324
8408
  security: {
8325
8409
  updateAttackChallengeMode,
@@ -8811,6 +8895,7 @@ const tagDictionary = {
8811
8895
  "getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig"
8812
8896
  ],
8813
8897
  POST: [
8898
+ "rotateInstallationCredential",
8814
8899
  "createEvent",
8815
8900
  "submitBillingData",
8816
8901
  "submitInvoice",
@@ -8990,9 +9075,12 @@ const tagDictionary = {
8990
9075
  "readSessionFile",
8991
9076
  "createSessionDirectory",
8992
9077
  "writeSessionFiles",
8993
- "createSessionSnapshot",
8994
- "createSandboxesByNameFork",
8995
- "createSandboxesV3"
9078
+ "createSandboxesSessionsBySessionIdSnapshotV2",
9079
+ "createSandboxesByNameForkV2",
9080
+ "createSandboxesV3",
9081
+ "createSandboxesSessionsBySessionIdSnapshotV3",
9082
+ "createSandboxesByNameForkV3",
9083
+ "createSandboxesV4"
8996
9084
  ],
8997
9085
  DELETE: [
8998
9086
  "deleteDrive",
@@ -9155,4 +9243,4 @@ const tagDictionary = {
9155
9243
  }
9156
9244
  };
9157
9245
 
9158
- export { createOrTransferDomain as $, createAccessGroup as A, createAccessGroupProject as B, createAiGatewayRule as C, createAiGatewayVirtualModelConfig as D, createApiKeys as E, createAuthToken as F, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads as G, createCheck as H, createConfigurableLogDrain as I, createConnector as J, createConnectorAuthorizationRequest as K, createConnectorInstallationRequest 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, createLogDrain as X, createMicrofrontendsGroupWithApplications as Y, createNetwork as Z, createObservabilityQuery as _, operationsByPath as a, deleteWebhook as a$, createProject as a0, createProjectCheck as a1, createProjectEnv as a2, createProjectTransferRequest as a3, createRecord as a4, createRepository as a5, createSandboxesByNameFork as a6, createSandboxesV2 as a7, createSandboxesV3 as a8, createSdkKey as a9, deleteDrain as aA, deleteDrive as aB, deleteEdgeConfig as aC, deleteEdgeConfigSchema as aD, deleteEdgeConfigTokens as aE, deleteFlag as aF, deleteFlagSegment as aG, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId as aH, deleteIntegrationLogDrain as aI, deleteIntegrationResource as aJ, deleteMicrofrontendsGroup as aK, deleteNetwork as aL, deleteProject as aM, deleteProjectCheck as aN, deleteRedirects as aO, deleteRepository as aP, deleteRepositoryImage as aQ, deleteRollingReleaseConfig as aR, deleteRoutes as aS, deleteSandbox as aT, deleteSdkKey as aU, deleteSecurityFirewallConfigByConfigVersion as aV, deleteSessionSnapshot as aW, deleteSharedEnvVariable as aX, deleteStorageStoresBlobById as aY, deleteTeam as aZ, deleteTeamInviteCode as a_, createSecurityFirewallConfigByConfigVersionActivate as aa, createSessionDirectory as ab, createSessionSnapshot as ac, createSharedEnvVariable as ad, createSpeedInsightsToggle as ae, createStorageStoresBlob as af, createTeam as ag, createTraceSession as ah, createWebInsightsToggle as ai, createWebhook as aj, dangerouslyDeleteBySrcImages as ak, dangerouslyDeleteByTags as al, deleteAccessGroup as am, deleteAccessGroupProject as an, deleteAiGatewayRule as ao, deleteAiGatewayVirtualModelConfig as ap, deleteAlias as aq, deleteAllArtifacts as ar, deleteAuthToken as as, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest as at, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as au, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as av, deleteConfigurableLogDrain as aw, deleteConfiguration as ax, deleteDeployment as ay, deleteDomain as az, acceptProjectTransferRequest as b, getFirewallConfig as b$, downloadArtifact as b0, editProjectEnv as b1, editRedirect as b2, editRoute as b3, exchangeSsoToken as b4, extendSessionTimeout as b5, filterProjectEnvs as b6, finalizeInstallation as b7, generateFirewallRule as b8, generateRoute as b9, getDeploymentCheckRun as bA, getDeploymentEvents as bB, getDeploymentFeatureFlags as bC, getDeploymentFileContents as bD, getDeployments as bE, getDomain as bF, getDomainAuthCode as bG, getDomainAvailability as bH, getDomainConfig as bI, getDomainContactVerification as bJ, getDomainPrice as bK, getDomainProjectDomains as bL, getDomainTransferIn as bM, getDomainVerificationRecord as bN, getDomains as bO, getDomainsRecordsByRecordId as bP, getDrain as bQ, getDrains as bR, getEdgeConfig as bS, getEdgeConfigBackup as bT, getEdgeConfigBackups as bU, getEdgeConfigItem as bV, getEdgeConfigItems as bW, getEdgeConfigSchema as bX, getEdgeConfigToken as bY, getEdgeConfigTokens as bZ, getEdgeConfigs as b_, getAccountInfo as ba, getActiveAttackStatus as bb, getAiGatewayVirtualModelConfig as bc, getAlias as bd, getAllChecks as be, getAllLogDrains as bf, getAuthToken as bg, getAuthUser as bh, getBillingPlans as bi, getBulkAvailability as bj, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest as bk, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as bl, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as bm, getByTeamSlugByProjectSlugByRepositoryNameTagsList as bn, getBypassIp as bo, getCertById as bp, getCerts as bq, getCheck as br, getConfigurableLogDrain as bs, getConfiguration as bt, getConfigurationProducts as bu, getConfigurations as bv, getConnectorToken as bw, getContactInfoSchema as bx, getCustomEnvironment as by, getDeployment as bz, client as c, invalidateBySrcImages as c$, getFlag as c0, getFlagSegment as c1, getFlagSettings as c2, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig as c3, getIntegrationLogDrains as c4, getIntegrationResource as c5, getIntegrationResources as c6, getInvoice as c7, getMember as c8, getMicrofrontendsConfig as c9, getRollingReleaseConfig as cA, getRoot as cB, getRouteVersions as cC, getRoutes as cD, getRuntimeLogs as cE, getSdkKeys as cF, getSecurityFirewallConfig as cG, getSecurityFirewallEvents as cH, getSession as cI, getSessionCommand as cJ, getSessionCommandLogs as cK, getSessionSnapshot as cL, getSharedEnvVar as cM, getStorageStoresById as cN, getSupportedTlds as cO, getTeam as cP, getTeamAccessRequest as cQ, getTeamMembers as cR, getTeams as cS, getTld as cT, getTldPrice as cU, getVersions as cV, getWebhook as cW, getWebhooks as cX, gitNamespaces as cY, importConnectorTokens as cZ, importResource as c_, getMicrofrontendsConfigForProject as ca, getMicrofrontendsGroups as cb, getMicrofrontendsInGroup as cc, getNamedSandbox as cd, getObservabilityConfigurationProjects as ce, getObservabilitySchema as cf, getObservabilitySchemaByMetricId as cg, getOrCreateDrive as ch, getOrder as ci, getProject as cj, getProjectCheck as ck, getProjectDomain as cl, getProjectDomains as cm, getProjectEnv as cn, getProjectMembers as co, getProjectToken as cp, getProjectTrace as cq, getProjects as cr, getProjectsByIdOrNameCustomEnvironments as cs, getRecords as ct, getRedirects as cu, getRepository as cv, getRepositoryImage as cw, getRepositoryTag as cx, getRollingRelease as cy, getRollingReleaseBillingStatus as cz, addBypassIp as d, removeTeamMember as d$, invalidateByTags as d0, inviteUserToTeam as d1, issueCert as d2, joinTeam as d3, killSessionCommand as d4, listAccessGroupMembers as d5, listAccessGroupProjects as d6, listAccessGroups as d7, listAiGatewayRules as d8, listAiGatewayVirtualModelConfigs as d9, listSharedEnvVariable as dA, listTeamFlagSettings as dB, listTeamFlags as dC, listTeamFlagsV2 as dD, listUserEvents as dE, moveProjectDomain as dF, patchDomain as dG, patchEdgeConfigItems as dH, patchEdgeConfigSchema as dI, patchTeam as dJ, patchUrlProtectionBypass as dK, pauseProject as dL, postTeamDsyncRoles as dM, putFirewallConfig as dN, readAccessGroup as dO, readAccessGroupProject as dP, readNetwork as dQ, readSessionFile as dR, recordEvents as dS, removeBypassIp as dT, removeCert as dU, removeCustomEnvironment as dV, removeProjectDomain as dW, removeProjectEnv as dX, removeProjectMember as dY, removeRecord as dZ, removeRepositoryPermission as d_, listAliases as da, listAuthTokens as db, listBillingCharges as dc, listCheckRuns as dd, listContractCommitments as de, listDeploymentAliases as df, listDeploymentCheckRuns as dg, listDeploymentFiles as dh, listDrives as di, listEventTypes as dj, listFlagSegments as dk, listFlagVersions as dl, listFlags as dm, listFlagsV2 as dn, listNetworks as dp, listProjectChecks as dq, listPromoteAliases as dr, listRepositories as ds, listRepositoryImages as dt, listRepositoryPermissions as du, listRepositoryTags as dv, listSandboxes as dw, listSessionCommands as dx, listSessionSnapshots as dy, listSessions as dz, addProjectDomain as e, updateSessionNetworkPolicy as e$, renewDomain as e0, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as e1, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as e2, replaceDomainsByDomainRecords as e3, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig as e4, requestAccessToTeam as e5, requestDelete as e6, requestPromote as e7, requestRollback as e8, rerequestCheck as e9, updateDomainNameservers as eA, updateDrain as eB, updateEdgeConfig as eC, updateFirewallConfig as eD, updateFlag as eE, updateFlagSegment as eF, updateFlagSettings as eG, updateInstallation as eH, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId as eI, updateIntegrationDeploymentAction as eJ, updateInvoice as eK, updateMicrofrontends as eL, updateMicrofrontendsGroup as eM, updateNetwork as eN, updateObservabilityConfigurationProject as eO, updateProject as eP, updateProjectCheck as eQ, updateProjectDomain as eR, updateProjectProtectionBypass as eS, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescription as eT, updateRecord as eU, updateResource as eV, updateResourceSecrets as eW, updateResourceSecretsById as eX, updateRollingReleaseConfig as eY, updateRouteVersions as eZ, updateSandbox as e_, restoreEdgeConfigBackup as ea, restoreRedirects as eb, runSessionCommand as ec, searchRepo as ed, stageRedirects as ee, stageRoutes as ef, startRollingRelease as eg, status as eh, stopSession as ei, submitBillingData as ej, submitInvoice as ek, submitPrepaymentBalances as el, testDrain as em, transferInDomain as en, unlinkSharedEnvVariable as eo, unpauseProject as ep, updateAccessGroup as eq, updateAccessGroupProject as er, updateAiGatewayRule as es, updateAiGatewayVirtualModelConfig as et, updateAttackChallengeMode as eu, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as ev, updateCheck as ew, updateCustomEnvironment as ex, updateDeploymentCheckRun as ey, updateDomainAutoRenew as ez, addProjectMember as f, updateSharedEnvVariable as f0, updateStaticIps as f1, updateTeamMember as f2, updateVersion as f3, uploadArtifact as f4, uploadCert as f5, uploadFile as f6, uploadProjectAvatar as f7, verifyProjectDomain as f8, writeSessionFiles as f9, addRepositoryPermission as g, addRoute as h, aggregateEvents as i, aggregatePageviews as j, approveRollingReleaseStage as k, artifactQuery as l, assignAlias as m, batchRemoveProjectEnv as n, operationsByTag as o, buyCredits as p, buyDomains as q, buySingleDomain as r, cancelDeployment as s, tagDictionary as t, claimDomainOwnership as u, clearRepositoryPermissions as v, completeRollingRelease as w, connectIntegrationResourceToProject as x, countEvents as y, countPageviews as z };
9246
+ export { createOrTransferDomain as $, createAccessGroup as A, createAccessGroupProject as B, createAiGatewayRule as C, createAiGatewayVirtualModelConfig as D, createApiKeys as E, createAuthToken as F, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads as G, createCheck as H, createConfigurableLogDrain as I, createConnector as J, createConnectorAuthorizationRequest as K, createConnectorInstallationRequest 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, createLogDrain as X, createMicrofrontendsGroupWithApplications as Y, createNetwork as Z, createObservabilityQuery as _, operationsByPath as a, deleteStorageStoresBlobById as a$, createProject as a0, createProjectCheck as a1, createProjectEnv as a2, createProjectTransferRequest as a3, createRecord as a4, createRepository as a5, createSandboxesByNameForkV2 as a6, createSandboxesByNameForkV3 as a7, createSandboxesSessionsBySessionIdSnapshotV2 as a8, createSandboxesSessionsBySessionIdSnapshotV3 as a9, deleteConfiguration as aA, deleteDeployment as aB, deleteDomain as aC, deleteDrain as aD, deleteDrive as aE, deleteEdgeConfig as aF, deleteEdgeConfigSchema as aG, deleteEdgeConfigTokens as aH, deleteFlag as aI, deleteFlagSegment as aJ, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId as aK, deleteIntegrationLogDrain as aL, deleteIntegrationResource as aM, deleteMicrofrontendsGroup as aN, deleteNetwork as aO, deleteProject as aP, deleteProjectCheck as aQ, deleteRedirects as aR, deleteRepository as aS, deleteRepositoryImage as aT, deleteRollingReleaseConfig as aU, deleteRoutes as aV, deleteSandbox as aW, deleteSdkKey as aX, deleteSecurityFirewallConfigByConfigVersion as aY, deleteSessionSnapshot as aZ, deleteSharedEnvVariable as a_, createSandboxesV2 as aa, createSandboxesV3 as ab, createSandboxesV4 as ac, createSdkKey as ad, createSecurityFirewallConfigByConfigVersionActivate as ae, createSessionDirectory as af, createSharedEnvVariable as ag, createSpeedInsightsToggle as ah, createStorageStoresBlob as ai, createTeam as aj, createTraceSession as ak, createWebInsightsToggle as al, createWebhook as am, dangerouslyDeleteBySrcImages as an, dangerouslyDeleteByTags as ao, deleteAccessGroup as ap, deleteAccessGroupProject as aq, deleteAiGatewayRule as ar, deleteAiGatewayVirtualModelConfig as as, deleteAlias as at, deleteAllArtifacts as au, deleteAuthToken as av, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest as aw, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as ax, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as ay, deleteConfigurableLogDrain as az, acceptProjectTransferRequest as b, getEdgeConfigToken as b$, deleteTeam as b0, deleteTeamInviteCode as b1, deleteWebhook as b2, downloadArtifact as b3, editProjectEnv as b4, editRedirect as b5, editRoute as b6, exchangeSsoToken as b7, extendSessionTimeout as b8, filterProjectEnvs as b9, getContactInfoSchema as bA, getCustomEnvironment as bB, getDeployment as bC, getDeploymentCheckRun as bD, getDeploymentEvents as bE, getDeploymentFeatureFlags as bF, getDeploymentFileContents as bG, getDeployments as bH, getDomain as bI, getDomainAuthCode as bJ, getDomainAvailability as bK, getDomainConfig as bL, getDomainContactVerification as bM, getDomainPrice as bN, getDomainProjectDomains as bO, getDomainTransferIn as bP, getDomainVerificationRecord as bQ, getDomains as bR, getDomainsRecordsByRecordId as bS, getDrain as bT, getDrains as bU, getEdgeConfig as bV, getEdgeConfigBackup as bW, getEdgeConfigBackups as bX, getEdgeConfigItem as bY, getEdgeConfigItems as bZ, getEdgeConfigSchema as b_, finalizeInstallation as ba, generateFirewallRule as bb, generateRoute as bc, getAccountInfo as bd, getActiveAttackStatus as be, getAiGatewayVirtualModelConfig as bf, getAlias as bg, getAllChecks as bh, getAllLogDrains as bi, getAuthToken as bj, getAuthUser as bk, getBillingPlans as bl, getBulkAvailability as bm, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest as bn, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as bo, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as bp, getByTeamSlugByProjectSlugByRepositoryNameTagsList as bq, getBypassIp as br, getCertById as bs, getCerts as bt, getCheck as bu, getConfigurableLogDrain as bv, getConfiguration as bw, getConfigurationProducts as bx, getConfigurations as by, getConnectorToken as bz, client as c, gitNamespaces as c$, getEdgeConfigTokens as c0, getEdgeConfigs as c1, getFirewallConfig as c2, getFlag as c3, getFlagSegment as c4, getFlagSettings as c5, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig as c6, getIntegrationLogDrains as c7, getIntegrationResource as c8, getIntegrationResources as c9, getRepositoryTag as cA, getRollingRelease as cB, getRollingReleaseBillingStatus as cC, getRollingReleaseConfig as cD, getRoot as cE, getRouteVersions as cF, getRoutes as cG, getRuntimeLogs as cH, getSdkKeys as cI, getSecurityFirewallConfig as cJ, getSecurityFirewallEvents as cK, getSession as cL, getSessionCommand as cM, getSessionCommandLogs as cN, getSessionSnapshot as cO, getSharedEnvVar as cP, getStorageStoresById as cQ, getSupportedTlds as cR, getTeam as cS, getTeamAccessRequest as cT, getTeamMembers as cU, getTeams as cV, getTld as cW, getTldPrice as cX, getVersions as cY, getWebhook as cZ, getWebhooks as c_, getInvoice as ca, getMember as cb, getMicrofrontendsConfig as cc, getMicrofrontendsConfigForProject as cd, getMicrofrontendsGroups as ce, getMicrofrontendsInGroup as cf, getNamedSandbox as cg, getObservabilityConfigurationProjects as ch, getObservabilitySchema as ci, getObservabilitySchemaByMetricId as cj, getOrCreateDrive as ck, getOrder as cl, getProject as cm, getProjectCheck as cn, getProjectDomain as co, getProjectDomains as cp, getProjectEnv as cq, getProjectMembers as cr, getProjectToken as cs, getProjectTrace as ct, getProjects as cu, getProjectsByIdOrNameCustomEnvironments as cv, getRecords as cw, getRedirects as cx, getRepository as cy, getRepositoryImage as cz, addBypassIp as d, removeProjectMember as d$, importConnectorTokens as d0, importResource as d1, invalidateBySrcImages as d2, invalidateByTags as d3, inviteUserToTeam as d4, issueCert as d5, joinTeam as d6, killSessionCommand as d7, listAccessGroupMembers as d8, listAccessGroupProjects as d9, listSessionCommands as dA, listSessionSnapshots as dB, listSessions as dC, listSharedEnvVariable as dD, listTeamFlagSettings as dE, listTeamFlags as dF, listTeamFlagsV2 as dG, listUserEvents as dH, moveProjectDomain as dI, patchDomain as dJ, patchEdgeConfigItems as dK, patchEdgeConfigSchema as dL, patchTeam as dM, patchUrlProtectionBypass as dN, pauseProject as dO, postTeamDsyncRoles as dP, putFirewallConfig as dQ, readAccessGroup as dR, readAccessGroupProject as dS, readNetwork as dT, readSessionFile as dU, recordEvents as dV, removeBypassIp as dW, removeCert as dX, removeCustomEnvironment as dY, removeProjectDomain as dZ, removeProjectEnv as d_, listAccessGroups as da, listAiGatewayRules as db, listAiGatewayVirtualModelConfigs as dc, listAliases as dd, listAuthTokens as de, listBillingCharges as df, listCheckRuns as dg, listContractCommitments as dh, listDeploymentAliases as di, listDeploymentCheckRuns as dj, listDeploymentFiles as dk, listDrives as dl, listEventTypes as dm, listFlagSegments as dn, listFlagVersions as dp, listFlags as dq, listFlagsV2 as dr, listNetworks as ds, listProjectChecks as dt, listPromoteAliases as du, listRepositories as dv, listRepositoryImages as dw, listRepositoryPermissions as dx, listRepositoryTags as dy, listSandboxes as dz, addProjectDomain as e, updateResourceSecretsById as e$, removeRecord as e0, removeRepositoryPermission as e1, removeTeamMember as e2, renewDomain as e3, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as e4, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as e5, replaceDomainsByDomainRecords as e6, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig as e7, requestAccessToTeam as e8, requestDelete as e9, updateCheck as eA, updateCustomEnvironment as eB, updateDeploymentCheckRun as eC, updateDomainAutoRenew as eD, updateDomainNameservers as eE, updateDrain as eF, updateEdgeConfig as eG, updateFirewallConfig as eH, updateFlag as eI, updateFlagSegment as eJ, updateFlagSettings as eK, updateInstallation as eL, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId as eM, updateIntegrationDeploymentAction as eN, updateInvoice as eO, updateMicrofrontends as eP, updateMicrofrontendsGroup as eQ, updateNetwork as eR, updateObservabilityConfigurationProject as eS, updateProject as eT, updateProjectCheck as eU, updateProjectDomain as eV, updateProjectProtectionBypass as eW, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescription as eX, updateRecord as eY, updateResource as eZ, updateResourceSecrets as e_, requestPromote as ea, requestRollback as eb, rerequestCheck as ec, restoreEdgeConfigBackup as ed, restoreRedirects as ee, rotateInstallationCredential as ef, runSessionCommand as eg, searchRepo 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, updateAttackChallengeMode as ey, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as ez, addProjectMember as f, updateRollingReleaseConfig as f0, updateRouteVersions as f1, updateSandbox as f2, updateSessionNetworkPolicy as f3, updateSharedEnvVariable as f4, updateStaticIps as f5, updateTeamMember as f6, updateVersion as f7, uploadArtifact as f8, uploadCert as f9, uploadFile as fa, uploadProjectAvatar as fb, verifyProjectDomain as fc, writeSessionFiles as fd, addRepositoryPermission as g, addRoute as h, aggregateEvents as i, aggregatePageviews as j, approveRollingReleaseStage as k, artifactQuery as l, assignAlias as m, batchRemoveProjectEnv as n, operationsByTag as o, buyCredits as p, buyDomains as q, buySingleDomain as r, cancelDeployment as s, tagDictionary as t, claimDomainOwnership as u, clearRepositoryPermissions as v, completeRollingRelease as w, connectIntegrationResourceToProject as x, countEvents as y, countPageviews as z };
@@ -3311,6 +3311,25 @@ const resolveUrl = (url, queryParams = {})=>{
3311
3311
  });
3312
3312
  return data;
3313
3313
  }
3314
+ /**
3315
+ * @summary Rotate Installation Credential
3316
+ * @description Issues a replacement access token for an installation, so a partner can rotate a credential it believes is compromised without the customer having to reinstall. Authenticated by the credential being replaced plus the integration's client secret: a leaked access token on its own cannot rotate itself, which would otherwise let an attacker take over the installation and lock the partner out. The previous credential intentionally stays valid so in-flight requests keep working. Retiring it is a separate, explicit operation — a partner is never left mid-rotation without a working credential.
3317
+ * @link /v1/installations/{integrationConfigurationId}/credentials/rotate
3318
+ */ async function rotateInstallationCredential({ pathParams, config } = {}) {
3319
+ const { client: request = client, ...requestConfig } = config ?? {};
3320
+ if (!pathParams.integrationConfigurationId) {
3321
+ throw new Error(`Missing required path parameter: integrationConfigurationId`);
3322
+ }
3323
+ const data = await request({
3324
+ method: "POST",
3325
+ url: `/v1/installations/${pathParams.integrationConfigurationId}/credentials/rotate`,
3326
+ ...requestConfig,
3327
+ headers: {
3328
+ ...requestConfig.headers
3329
+ }
3330
+ });
3331
+ return data;
3332
+ }
3314
3333
  /**
3315
3334
  * @summary Create Event
3316
3335
  * @description Partner notifies Vercel of any changes made to an Installation or a Resource. Vercel is expected to use `list-resources` and other read APIs to get the new state.<br/> <br/> `resource.updated` event should be dispatched when any state of a resource linked to Vercel is modified by the partner.<br/> `installation.updated` event should be dispatched when an installation's billing plan is changed via the provider instead of Vercel.<br/> <br/> Resource update use cases: <br/> <br/> - The user renames a database in the partner’s application. The partner should dispatch a `resource.updated` event to notify Vercel to update the resource in Vercel’s datastores.<br/> - A resource has been suspended due to a lack of use. The partner should dispatch a `resource.updated` event to notify Vercel to update the resource's status in Vercel's datastores.<br/>
@@ -5735,7 +5754,7 @@ const resolveUrl = (url, queryParams = {})=>{
5735
5754
  * @summary Create a snapshot
5736
5755
  * @description Creates a point-in-time snapshot of a running session's filesystem. Snapshots can be used to quickly restore a session to a previous state or to create new sessions with pre-configured environments. The session must be running and able to accept commands for a snapshot to be created. The session will be terminated after the snapshot is created.
5737
5756
  * @link /v2/sandboxes/sessions/{sessionId}/snapshot
5738
- */ async function createSessionSnapshot({ pathParams, queryParams, config } = {}) {
5757
+ */ async function createSandboxesSessionsBySessionIdSnapshotV2({ pathParams, queryParams, config } = {}) {
5739
5758
  const { client: request = client, ...requestConfig } = config ?? {};
5740
5759
  if (!pathParams.sessionId) {
5741
5760
  throw new Error(`Missing required path parameter: sessionId`);
@@ -5755,7 +5774,7 @@ const resolveUrl = (url, queryParams = {})=>{
5755
5774
  * @summary Fork a named sandbox
5756
5775
  * @description Forks a named sandbox, creating a new named sandbox from the source's configuration. Resources, timeout, ports, tags, network policy, mounts, Connect network, image, persistence, snapshot settings and — unlike the SDK-side fork — environment variables are copied from the source automatically (`interactive` is not). When the source has a snapshot the fork starts from it; otherwise it starts from the source's runtime/image. Any field provided in the request body overrides the value copied from the source.
5757
5776
  * @link /v2/sandboxes/{name}/fork
5758
- */ async function createSandboxesByNameFork({ pathParams, queryParams, config } = {}) {
5777
+ */ async function createSandboxesByNameForkV2({ pathParams, queryParams, config } = {}) {
5759
5778
  const { client: request = client, ...requestConfig } = config ?? {};
5760
5779
  if (!pathParams.name) {
5761
5780
  throw new Error(`Missing required path parameter: name`);
@@ -5788,6 +5807,63 @@ const resolveUrl = (url, queryParams = {})=>{
5788
5807
  });
5789
5808
  return data;
5790
5809
  }
5810
+ /**
5811
+ * @summary Create a snapshot
5812
+ * @description Creates a point-in-time snapshot of a running session's filesystem. Snapshots can be used to quickly restore a session to a previous state or to create new sessions with pre-configured environments. The session must be running and able to accept commands for a snapshot to be created. The session will be terminated after the snapshot is created. Unlike v2, snapshots expire after 7 days when neither the request nor the sandbox configuration specifies an expiration.
5813
+ * @link /v3/sandboxes/sessions/{sessionId}/snapshot
5814
+ */ async function createSandboxesSessionsBySessionIdSnapshotV3({ pathParams, queryParams, config } = {}) {
5815
+ const { client: request = client, ...requestConfig } = config ?? {};
5816
+ if (!pathParams.sessionId) {
5817
+ throw new Error(`Missing required path parameter: sessionId`);
5818
+ }
5819
+ const data = await request({
5820
+ method: "POST",
5821
+ url: `/v3/sandboxes/sessions/${pathParams.sessionId}/snapshot`,
5822
+ queryParams,
5823
+ ...requestConfig,
5824
+ headers: {
5825
+ ...requestConfig.headers
5826
+ }
5827
+ });
5828
+ return data;
5829
+ }
5830
+ /**
5831
+ * @summary Fork a named sandbox
5832
+ * @description Forks a named sandbox, creating a new named sandbox from the source's configuration. Resources, timeout, ports, tags, network policy, mounts, Connect network, image, persistence, snapshot settings and — unlike the SDK-side fork — environment variables are copied from the source automatically (`interactive` is not). When the source has a snapshot the fork starts from it; otherwise it starts from the source's runtime/image. Any field provided in the request body overrides the value copied from the source. Unlike v2, when neither the body nor the source provides a value, snapshots expire after 7 days by default and persistent sandboxes keep only their most recent snapshot (`keepLastSnapshots: null` disables the limit).
5833
+ * @link /v3/sandboxes/{name}/fork
5834
+ */ async function createSandboxesByNameForkV3({ pathParams, queryParams, config } = {}) {
5835
+ const { client: request = client, ...requestConfig } = config ?? {};
5836
+ if (!pathParams.name) {
5837
+ throw new Error(`Missing required path parameter: name`);
5838
+ }
5839
+ const data = await request({
5840
+ method: "POST",
5841
+ url: `/v3/sandboxes/${pathParams.name}/fork`,
5842
+ queryParams,
5843
+ ...requestConfig,
5844
+ headers: {
5845
+ ...requestConfig.headers
5846
+ }
5847
+ });
5848
+ return data;
5849
+ }
5850
+ /**
5851
+ * @summary Create a named sandbox
5852
+ * @description Creates a named sandbox environment. Named sandboxes have a unique name within a project and support automatic snapshotting on shutdown. When no `image` is provided (and the sandbox is not restored from a snapshot), the sandbox is created from the default universal image. Unlike v3, snapshots expire after 7 days by default and persistent sandboxes keep only their most recent snapshot unless `keepLastSnapshots` is configured otherwise (or set to `null` to disable the limit).
5853
+ * @link /v4/sandboxes
5854
+ */ async function createSandboxesV4({ queryParams, config } = {}) {
5855
+ const { client: request = client, ...requestConfig } = config ?? {};
5856
+ const data = await request({
5857
+ method: "POST",
5858
+ url: `/v4/sandboxes`,
5859
+ queryParams,
5860
+ ...requestConfig,
5861
+ headers: {
5862
+ ...requestConfig.headers
5863
+ }
5864
+ });
5865
+ return data;
5866
+ }
5791
5867
  /**
5792
5868
  * @summary Update Attack Challenge mode
5793
5869
  * @description Update the setting for determining if the project has Attack Challenge mode enabled.
@@ -7742,6 +7818,7 @@ const operationsByPath = {
7742
7818
  "PATCH /v1/installations/{integrationConfigurationId}": updateInstallation,
7743
7819
  "GET /v1/installations/{integrationConfigurationId}/account": getAccountInfo,
7744
7820
  "GET /v1/installations/{integrationConfigurationId}/member/{memberId}": getMember,
7821
+ "POST /v1/installations/{integrationConfigurationId}/credentials/rotate": rotateInstallationCredential,
7745
7822
  "POST /v1/installations/{integrationConfigurationId}/events": createEvent,
7746
7823
  "GET /v1/installations/{integrationConfigurationId}/resources": getIntegrationResources,
7747
7824
  "GET /v1/installations/{integrationConfigurationId}/resources/{resourceId}": getIntegrationResource,
@@ -7862,9 +7939,12 @@ const operationsByPath = {
7862
7939
  "POST /v2/sandboxes/sessions/{sessionId}/fs/read": readSessionFile,
7863
7940
  "POST /v2/sandboxes/sessions/{sessionId}/fs/mkdir": createSessionDirectory,
7864
7941
  "POST /v2/sandboxes/sessions/{sessionId}/fs/write": writeSessionFiles,
7865
- "POST /v2/sandboxes/sessions/{sessionId}/snapshot": createSessionSnapshot,
7866
- "POST /v2/sandboxes/{name}/fork": createSandboxesByNameFork,
7942
+ "POST /v2/sandboxes/sessions/{sessionId}/snapshot": createSandboxesSessionsBySessionIdSnapshotV2,
7943
+ "POST /v2/sandboxes/{name}/fork": createSandboxesByNameForkV2,
7867
7944
  "POST /v3/sandboxes": createSandboxesV3,
7945
+ "POST /v3/sandboxes/sessions/{sessionId}/snapshot": createSandboxesSessionsBySessionIdSnapshotV3,
7946
+ "POST /v3/sandboxes/{name}/fork": createSandboxesByNameForkV3,
7947
+ "POST /v4/sandboxes": createSandboxesV4,
7868
7948
  "POST /v1/security/attack-mode": updateAttackChallengeMode,
7869
7949
  "GET /v1/security/firewall/config": getSecurityFirewallConfig,
7870
7950
  "PUT /v1/security/firewall/config": putFirewallConfig,
@@ -8188,6 +8268,7 @@ const operationsByTag = {
8188
8268
  updateInstallation,
8189
8269
  getAccountInfo,
8190
8270
  getMember,
8271
+ rotateInstallationCredential,
8191
8272
  createEvent,
8192
8273
  getIntegrationResources,
8193
8274
  getIntegrationResource,
@@ -8317,9 +8398,12 @@ const operationsByTag = {
8317
8398
  readSessionFile,
8318
8399
  createSessionDirectory,
8319
8400
  writeSessionFiles,
8320
- createSessionSnapshot,
8321
- createSandboxesByNameFork,
8322
- createSandboxesV3
8401
+ createSandboxesSessionsBySessionIdSnapshotV2,
8402
+ createSandboxesByNameForkV2,
8403
+ createSandboxesV3,
8404
+ createSandboxesSessionsBySessionIdSnapshotV3,
8405
+ createSandboxesByNameForkV3,
8406
+ createSandboxesV4
8323
8407
  },
8324
8408
  security: {
8325
8409
  updateAttackChallengeMode,
@@ -8811,6 +8895,7 @@ const tagDictionary = {
8811
8895
  "getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig"
8812
8896
  ],
8813
8897
  POST: [
8898
+ "rotateInstallationCredential",
8814
8899
  "createEvent",
8815
8900
  "submitBillingData",
8816
8901
  "submitInvoice",
@@ -8990,9 +9075,12 @@ const tagDictionary = {
8990
9075
  "readSessionFile",
8991
9076
  "createSessionDirectory",
8992
9077
  "writeSessionFiles",
8993
- "createSessionSnapshot",
8994
- "createSandboxesByNameFork",
8995
- "createSandboxesV3"
9078
+ "createSandboxesSessionsBySessionIdSnapshotV2",
9079
+ "createSandboxesByNameForkV2",
9080
+ "createSandboxesV3",
9081
+ "createSandboxesSessionsBySessionIdSnapshotV3",
9082
+ "createSandboxesByNameForkV3",
9083
+ "createSandboxesV4"
8996
9084
  ],
8997
9085
  DELETE: [
8998
9086
  "deleteDrive",
@@ -9212,13 +9300,16 @@ exports.createProjectEnv = createProjectEnv;
9212
9300
  exports.createProjectTransferRequest = createProjectTransferRequest;
9213
9301
  exports.createRecord = createRecord;
9214
9302
  exports.createRepository = createRepository;
9215
- exports.createSandboxesByNameFork = createSandboxesByNameFork;
9303
+ exports.createSandboxesByNameForkV2 = createSandboxesByNameForkV2;
9304
+ exports.createSandboxesByNameForkV3 = createSandboxesByNameForkV3;
9305
+ exports.createSandboxesSessionsBySessionIdSnapshotV2 = createSandboxesSessionsBySessionIdSnapshotV2;
9306
+ exports.createSandboxesSessionsBySessionIdSnapshotV3 = createSandboxesSessionsBySessionIdSnapshotV3;
9216
9307
  exports.createSandboxesV2 = createSandboxesV2;
9217
9308
  exports.createSandboxesV3 = createSandboxesV3;
9309
+ exports.createSandboxesV4 = createSandboxesV4;
9218
9310
  exports.createSdkKey = createSdkKey;
9219
9311
  exports.createSecurityFirewallConfigByConfigVersionActivate = createSecurityFirewallConfigByConfigVersionActivate;
9220
9312
  exports.createSessionDirectory = createSessionDirectory;
9221
- exports.createSessionSnapshot = createSessionSnapshot;
9222
9313
  exports.createSharedEnvVariable = createSharedEnvVariable;
9223
9314
  exports.createSpeedInsightsToggle = createSpeedInsightsToggle;
9224
9315
  exports.createStorageStoresBlob = createStorageStoresBlob;
@@ -9475,6 +9566,7 @@ exports.requestRollback = requestRollback;
9475
9566
  exports.rerequestCheck = rerequestCheck;
9476
9567
  exports.restoreEdgeConfigBackup = restoreEdgeConfigBackup;
9477
9568
  exports.restoreRedirects = restoreRedirects;
9569
+ exports.rotateInstallationCredential = rotateInstallationCredential;
9478
9570
  exports.runSessionCommand = runSessionCommand;
9479
9571
  exports.searchRepo = searchRepo;
9480
9572
  exports.stageRedirects = stageRedirects;
@@ -1,6 +1,6 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
 
3
- var components = require('./components-nlsfs355.cjs');
3
+ var components = require('./components-j923ydcw.cjs');
4
4
 
5
5
 
6
6
 
@@ -60,13 +60,16 @@ exports.createProjectEnv = components.createProjectEnv;
60
60
  exports.createProjectTransferRequest = components.createProjectTransferRequest;
61
61
  exports.createRecord = components.createRecord;
62
62
  exports.createRepository = components.createRepository;
63
- exports.createSandboxesByNameFork = components.createSandboxesByNameFork;
63
+ exports.createSandboxesByNameForkV2 = components.createSandboxesByNameForkV2;
64
+ exports.createSandboxesByNameForkV3 = components.createSandboxesByNameForkV3;
65
+ exports.createSandboxesSessionsBySessionIdSnapshotV2 = components.createSandboxesSessionsBySessionIdSnapshotV2;
66
+ exports.createSandboxesSessionsBySessionIdSnapshotV3 = components.createSandboxesSessionsBySessionIdSnapshotV3;
64
67
  exports.createSandboxesV2 = components.createSandboxesV2;
65
68
  exports.createSandboxesV3 = components.createSandboxesV3;
69
+ exports.createSandboxesV4 = components.createSandboxesV4;
66
70
  exports.createSdkKey = components.createSdkKey;
67
71
  exports.createSecurityFirewallConfigByConfigVersionActivate = components.createSecurityFirewallConfigByConfigVersionActivate;
68
72
  exports.createSessionDirectory = components.createSessionDirectory;
69
- exports.createSessionSnapshot = components.createSessionSnapshot;
70
73
  exports.createSharedEnvVariable = components.createSharedEnvVariable;
71
74
  exports.createSpeedInsightsToggle = components.createSpeedInsightsToggle;
72
75
  exports.createStorageStoresBlob = components.createStorageStoresBlob;
@@ -323,6 +326,7 @@ exports.requestRollback = components.requestRollback;
323
326
  exports.rerequestCheck = components.rerequestCheck;
324
327
  exports.restoreEdgeConfigBackup = components.restoreEdgeConfigBackup;
325
328
  exports.restoreRedirects = components.restoreRedirects;
329
+ exports.rotateInstallationCredential = components.rotateInstallationCredential;
326
330
  exports.runSessionCommand = components.runSessionCommand;
327
331
  exports.searchRepo = components.searchRepo;
328
332
  exports.stageRedirects = components.stageRedirects;