vercel-api-js 1.9.2 → 1.10.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-nbgupmvz.js → components-f5r2um56.js} +113 -1
- package/dist/{components-ma60hj42.cjs → components-k1idfow7.cjs} +117 -0
- package/dist/components.cjs +6 -1
- package/dist/components.d.mts +96 -1
- 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 +13 -1
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +1 -1
- package/dist/index.cjs +68 -2
- package/dist/index.d.ts +1111 -36
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/{schemas-jzkupi74.js → schemas-j4m5o9a7.js} +257 -15
- package/dist/{schemas-in74gnjm.cjs → schemas-mq2xg0ty.cjs} +315 -14
- package/dist/schemas.cjs +60 -1
- package/dist/schemas.d.mts +182 -5
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +49 -7
- package/dist/types.d.mts +831 -33
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +43 -8
- package/package.json +1 -1
|
@@ -284,6 +284,91 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
284
284
|
});
|
|
285
285
|
return data;
|
|
286
286
|
}
|
|
287
|
+
/**
|
|
288
|
+
* @summary Create virtual model config
|
|
289
|
+
* @description Create a virtual model config (VMC)
|
|
290
|
+
* @link /v1/ai-gateway/virtual-model-configs
|
|
291
|
+
*/ async function createAiGatewayVirtualModelConfig({ queryParams, config } = {}) {
|
|
292
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
293
|
+
const data = await request({
|
|
294
|
+
method: "POST",
|
|
295
|
+
url: `/v1/ai-gateway/virtual-model-configs`,
|
|
296
|
+
queryParams,
|
|
297
|
+
...requestConfig,
|
|
298
|
+
headers: {
|
|
299
|
+
...requestConfig.headers
|
|
300
|
+
}
|
|
301
|
+
});
|
|
302
|
+
return data;
|
|
303
|
+
}
|
|
304
|
+
/**
|
|
305
|
+
* @summary Get virtual model config
|
|
306
|
+
* @description Get a virtual model config
|
|
307
|
+
* @link /v1/ai-gateway/virtual-model-configs
|
|
308
|
+
*/ async function getAiGatewayVirtualModelConfig({ queryParams, config } = {}) {
|
|
309
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
310
|
+
const data = await request({
|
|
311
|
+
method: "GET",
|
|
312
|
+
url: `/v1/ai-gateway/virtual-model-configs`,
|
|
313
|
+
queryParams,
|
|
314
|
+
...requestConfig,
|
|
315
|
+
headers: {
|
|
316
|
+
...requestConfig.headers
|
|
317
|
+
}
|
|
318
|
+
});
|
|
319
|
+
return data;
|
|
320
|
+
}
|
|
321
|
+
/**
|
|
322
|
+
* @summary Update virtual model config
|
|
323
|
+
* @description Update a virtual model config
|
|
324
|
+
* @link /v1/ai-gateway/virtual-model-configs
|
|
325
|
+
*/ async function updateAiGatewayVirtualModelConfig({ queryParams, config } = {}) {
|
|
326
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
327
|
+
const data = await request({
|
|
328
|
+
method: "PATCH",
|
|
329
|
+
url: `/v1/ai-gateway/virtual-model-configs`,
|
|
330
|
+
queryParams,
|
|
331
|
+
...requestConfig,
|
|
332
|
+
headers: {
|
|
333
|
+
...requestConfig.headers
|
|
334
|
+
}
|
|
335
|
+
});
|
|
336
|
+
return data;
|
|
337
|
+
}
|
|
338
|
+
/**
|
|
339
|
+
* @summary Delete virtual model config
|
|
340
|
+
* @description Delete a virtual model config (soft delete)
|
|
341
|
+
* @link /v1/ai-gateway/virtual-model-configs
|
|
342
|
+
*/ async function deleteAiGatewayVirtualModelConfig({ queryParams, config } = {}) {
|
|
343
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
344
|
+
const data = await request({
|
|
345
|
+
method: "DELETE",
|
|
346
|
+
url: `/v1/ai-gateway/virtual-model-configs`,
|
|
347
|
+
queryParams,
|
|
348
|
+
...requestConfig,
|
|
349
|
+
headers: {
|
|
350
|
+
...requestConfig.headers
|
|
351
|
+
}
|
|
352
|
+
});
|
|
353
|
+
return data;
|
|
354
|
+
}
|
|
355
|
+
/**
|
|
356
|
+
* @summary List virtual model configs
|
|
357
|
+
* @description List virtual model configs. With `ownerId`, returns all of that team's VMCs. Without it, pages through VMCs across all teams (newest-first, `limit`/`cursor`).
|
|
358
|
+
* @link /v1/ai-gateway/virtual-model-configs/list
|
|
359
|
+
*/ async function listAiGatewayVirtualModelConfigs({ queryParams, config } = {}) {
|
|
360
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
361
|
+
const data = await request({
|
|
362
|
+
method: "GET",
|
|
363
|
+
url: `/v1/ai-gateway/virtual-model-configs/list`,
|
|
364
|
+
queryParams,
|
|
365
|
+
...requestConfig,
|
|
366
|
+
headers: {
|
|
367
|
+
...requestConfig.headers
|
|
368
|
+
}
|
|
369
|
+
});
|
|
370
|
+
return data;
|
|
371
|
+
}
|
|
287
372
|
/**
|
|
288
373
|
* @summary Create rule
|
|
289
374
|
* @description Create a routing rule
|
|
@@ -7502,6 +7587,11 @@ const operationsByPath = {
|
|
|
7502
7587
|
"GET /v1/access-groups/{accessGroupIdOrName}/projects/{projectId}": readAccessGroupProject,
|
|
7503
7588
|
"PATCH /v1/access-groups/{accessGroupIdOrName}/projects/{projectId}": updateAccessGroupProject,
|
|
7504
7589
|
"DELETE /v1/access-groups/{accessGroupIdOrName}/projects/{projectId}": deleteAccessGroupProject,
|
|
7590
|
+
"POST /v1/ai-gateway/virtual-model-configs": createAiGatewayVirtualModelConfig,
|
|
7591
|
+
"GET /v1/ai-gateway/virtual-model-configs": getAiGatewayVirtualModelConfig,
|
|
7592
|
+
"PATCH /v1/ai-gateway/virtual-model-configs": updateAiGatewayVirtualModelConfig,
|
|
7593
|
+
"DELETE /v1/ai-gateway/virtual-model-configs": deleteAiGatewayVirtualModelConfig,
|
|
7594
|
+
"GET /v1/ai-gateway/virtual-model-configs/list": listAiGatewayVirtualModelConfigs,
|
|
7505
7595
|
"POST /v1/ai-gateway/rules": createAiGatewayRule,
|
|
7506
7596
|
"GET /v1/ai-gateway/rules": listAiGatewayRules,
|
|
7507
7597
|
"PATCH /v1/ai-gateway/rules": updateAiGatewayRule,
|
|
@@ -7880,6 +7970,13 @@ const operationsByTag = {
|
|
|
7880
7970
|
updateAccessGroupProject,
|
|
7881
7971
|
deleteAccessGroupProject
|
|
7882
7972
|
},
|
|
7973
|
+
apiAiGateway: {
|
|
7974
|
+
createAiGatewayVirtualModelConfig,
|
|
7975
|
+
getAiGatewayVirtualModelConfig,
|
|
7976
|
+
updateAiGatewayVirtualModelConfig,
|
|
7977
|
+
deleteAiGatewayVirtualModelConfig,
|
|
7978
|
+
listAiGatewayVirtualModelConfigs
|
|
7979
|
+
},
|
|
7883
7980
|
aiGateway: {
|
|
7884
7981
|
createAiGatewayRule,
|
|
7885
7982
|
listAiGatewayRules,
|
|
@@ -8339,6 +8436,21 @@ const tagDictionary = {
|
|
|
8339
8436
|
"updateAccessGroupProject"
|
|
8340
8437
|
]
|
|
8341
8438
|
},
|
|
8439
|
+
apiAiGateway: {
|
|
8440
|
+
POST: [
|
|
8441
|
+
"createAiGatewayVirtualModelConfig"
|
|
8442
|
+
],
|
|
8443
|
+
GET: [
|
|
8444
|
+
"getAiGatewayVirtualModelConfig",
|
|
8445
|
+
"listAiGatewayVirtualModelConfigs"
|
|
8446
|
+
],
|
|
8447
|
+
PATCH: [
|
|
8448
|
+
"updateAiGatewayVirtualModelConfig"
|
|
8449
|
+
],
|
|
8450
|
+
DELETE: [
|
|
8451
|
+
"deleteAiGatewayVirtualModelConfig"
|
|
8452
|
+
]
|
|
8453
|
+
},
|
|
8342
8454
|
aiGateway: {
|
|
8343
8455
|
POST: [
|
|
8344
8456
|
"createAiGatewayRule"
|
|
@@ -9043,4 +9155,4 @@ const tagDictionary = {
|
|
|
9043
9155
|
}
|
|
9044
9156
|
};
|
|
9045
9157
|
|
|
9046
|
-
export { createProject as $, createAccessGroup as A, createAccessGroupProject as B, createAiGatewayRule as C, createApiKeys as D, createAuthToken as E, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads as F, createCheck as G, createConfigurableLogDrain as H, createConnector as I, createConnectorAuthorizationRequest as J, createConnectorInstallationRequest as K, createCustomEnvironment as L, createDeployment as M, createDeploymentCheckRun as N, createDrain as O, createEdgeConfig as P, createEdgeConfigToken as Q, createEvent as R, createFlag as S, createFlagSegment as T, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems as U, createIntegrationStoreDirect as V, createLogDrain as W, createMicrofrontendsGroupWithApplications as X, createNetwork as Y, createObservabilityQuery as Z, createOrTransferDomain as _, operationsByPath as a, editProjectEnv as a$, createProjectCheck as a0, createProjectEnv as a1, createProjectTransferRequest as a2, createRecord as a3, createRepository as a4, createSandboxesByNameFork as a5, createSandboxesV2 as a6, createSandboxesV3 as a7, createSdkKey as a8, createSecurityFirewallConfigByConfigVersionActivate as a9, deleteEdgeConfig as aA, deleteEdgeConfigSchema as aB, deleteEdgeConfigTokens as aC, deleteFlag as aD, deleteFlagSegment as aE, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId as aF, deleteIntegrationLogDrain as aG, deleteIntegrationResource as aH, deleteMicrofrontendsGroup as aI, deleteNetwork as aJ, deleteProject as aK, deleteProjectCheck as aL, deleteRedirects as aM, deleteRepository as aN, deleteRepositoryImage as aO, deleteRollingReleaseConfig as aP, deleteRoutes as aQ, deleteSandbox as aR, deleteSdkKey as aS, deleteSecurityFirewallConfigByConfigVersion as aT, deleteSessionSnapshot as aU, deleteSharedEnvVariable as aV, deleteStorageStoresBlobById as aW, deleteTeam as aX, deleteTeamInviteCode as aY, deleteWebhook as aZ, downloadArtifact as a_, createSessionDirectory as aa, createSessionSnapshot as ab, createSharedEnvVariable as ac, createSpeedInsightsToggle as ad, createStorageStoresBlob as ae, createTeam as af, createTraceSession as ag, createWebInsightsToggle as ah, createWebhook as ai, dangerouslyDeleteBySrcImages as aj, dangerouslyDeleteByTags as ak, deleteAccessGroup as al, deleteAccessGroupProject as am, deleteAiGatewayRule as an, deleteAlias as ao, deleteAllArtifacts as ap, deleteAuthToken as aq, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest as ar, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as as, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as at, deleteConfigurableLogDrain as au, deleteConfiguration as av, deleteDeployment as aw, deleteDomain as ax, deleteDrain as ay, deleteDrive as az, acceptProjectTransferRequest as b, getFlagSettings as b$, editRedirect as b0, editRoute as b1, exchangeSsoToken as b2, extendSessionTimeout as b3, filterProjectEnvs as b4, finalizeInstallation as b5, generateFirewallRule as b6, generateRoute as b7, getAccountInfo as b8, getActiveAttackStatus as b9, getDeploymentFileContents as bA, getDeployments as bB, getDomain as bC, getDomainAuthCode as bD, getDomainAvailability as bE, getDomainConfig as bF, getDomainContactVerification as bG, getDomainPrice as bH, getDomainProjectDomains as bI, getDomainTransferIn as bJ, getDomainVerificationRecord as bK, getDomains as bL, getDomainsRecordsByRecordId as bM, getDrain as bN, getDrains as bO, getEdgeConfig as bP, getEdgeConfigBackup as bQ, getEdgeConfigBackups as bR, getEdgeConfigItem as bS, getEdgeConfigItems as bT, getEdgeConfigSchema as bU, getEdgeConfigToken as bV, getEdgeConfigTokens as bW, getEdgeConfigs as bX, getFirewallConfig as bY, getFlag as bZ, getFlagSegment as b_, getAlias as ba, getAllChecks as bb, getAllLogDrains as bc, getAuthToken as bd, getAuthUser as be, getBillingPlans as bf, getBulkAvailability as bg, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest as bh, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as bi, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as bj, getByTeamSlugByProjectSlugByRepositoryNameTagsList as bk, getBypassIp as bl, getCertById as bm, getCerts as bn, getCheck as bo, getConfigurableLogDrain as bp, getConfiguration as bq, getConfigurationProducts as br, getConfigurations as bs, getConnectorToken as bt, getContactInfoSchema as bu, getCustomEnvironment as bv, getDeployment as bw, getDeploymentCheckRun as bx, getDeploymentEvents as by, getDeploymentFeatureFlags as bz, client as c, issueCert as c$, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig as c0, getIntegrationLogDrains as c1, getIntegrationResource as c2, getIntegrationResources as c3, getInvoice as c4, getMember as c5, getMicrofrontendsConfig as c6, getMicrofrontendsConfigForProject as c7, getMicrofrontendsGroups as c8, getMicrofrontendsInGroup as c9, getRoutes as cA, getRuntimeLogs as cB, getSdkKeys as cC, getSecurityFirewallConfig as cD, getSecurityFirewallEvents as cE, getSession as cF, getSessionCommand as cG, getSessionCommandLogs as cH, getSessionSnapshot as cI, getSharedEnvVar as cJ, getStorageStoresById as cK, getSupportedTlds as cL, getTeam as cM, getTeamAccessRequest as cN, getTeamMembers as cO, getTeams as cP, getTld as cQ, getTldPrice as cR, getVersions as cS, getWebhook as cT, getWebhooks as cU, gitNamespaces as cV, importConnectorTokens as cW, importResource as cX, invalidateBySrcImages as cY, invalidateByTags as cZ, inviteUserToTeam as c_, getNamedSandbox as ca, getObservabilityConfigurationProjects as cb, getObservabilitySchema as cc, getObservabilitySchemaByMetricId as cd, getOrCreateDrive as ce, getOrder as cf, getProject as cg, getProjectCheck as ch, getProjectDomain as ci, getProjectDomains as cj, getProjectEnv as ck, getProjectMembers as cl, getProjectToken as cm, getProjectTrace as cn, getProjects as co, getProjectsByIdOrNameCustomEnvironments as cp, getRecords as cq, getRedirects as cr, getRepository as cs, getRepositoryImage as ct, getRepositoryTag as cu, getRollingRelease as cv, getRollingReleaseBillingStatus as cw, getRollingReleaseConfig as cx, getRoot as cy, getRouteVersions as cz, addBypassIp as d, replaceDomainsByDomainRecords as d$, joinTeam as d0, killSessionCommand as d1, listAccessGroupMembers as d2, listAccessGroupProjects as d3, listAccessGroups as d4, listAiGatewayRules as d5, listAliases as d6, listAuthTokens as d7, listBillingCharges as d8, listCheckRuns as d9, listUserEvents as dA, moveProjectDomain as dB, patchDomain as dC, patchEdgeConfigItems as dD, patchEdgeConfigSchema as dE, patchTeam as dF, patchUrlProtectionBypass as dG, pauseProject as dH, postTeamDsyncRoles as dI, putFirewallConfig as dJ, readAccessGroup as dK, readAccessGroupProject as dL, readNetwork as dM, readSessionFile as dN, recordEvents as dO, removeBypassIp as dP, removeCert as dQ, removeCustomEnvironment as dR, removeProjectDomain as dS, removeProjectEnv as dT, removeProjectMember as dU, removeRecord as dV, removeRepositoryPermission as dW, removeTeamMember as dX, renewDomain as dY, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as dZ, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as d_, listContractCommitments as da, listDeploymentAliases as db, listDeploymentCheckRuns as dc, listDeploymentFiles as dd, listDrives as de, listEventTypes as df, listFlagSegments as dg, listFlagVersions as dh, listFlags as di, listFlagsV2 as dj, listNetworks as dk, listProjectChecks as dl, listPromoteAliases as dm, listRepositories as dn, listRepositoryImages as dp, listRepositoryPermissions as dq, listRepositoryTags as dr, listSandboxes as ds, listSessionCommands as dt, listSessionSnapshots as du, listSessions as dv, listSharedEnvVariable as dw, listTeamFlagSettings as dx, listTeamFlags as dy, listTeamFlagsV2 as dz, addProjectDomain as e, uploadArtifact as e$, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig as e0, requestAccessToTeam as e1, requestDelete as e2, requestPromote as e3, requestRollback as e4, rerequestCheck as e5, restoreEdgeConfigBackup as e6, restoreRedirects as e7, runSessionCommand as e8, searchRepo as e9, updateFlagSegment as eA, updateFlagSettings as eB, updateInstallation as eC, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId as eD, updateIntegrationDeploymentAction as eE, updateInvoice as eF, updateMicrofrontends as eG, updateMicrofrontendsGroup as eH, updateNetwork as eI, updateObservabilityConfigurationProject as eJ, updateProject as eK, updateProjectCheck as eL, updateProjectDomain as eM, updateProjectProtectionBypass as eN, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescription as eO, updateRecord as eP, updateResource as eQ, updateResourceSecrets as eR, updateResourceSecretsById as eS, updateRollingReleaseConfig as eT, updateRouteVersions as eU, updateSandbox as eV, updateSessionNetworkPolicy as eW, updateSharedEnvVariable as eX, updateStaticIps as eY, updateTeamMember as eZ, updateVersion as e_, stageRedirects as ea, stageRoutes as eb, startRollingRelease as ec, status as ed, stopSession as ee, submitBillingData as ef, submitInvoice as eg, submitPrepaymentBalances as eh, testDrain as ei, transferInDomain as ej, unlinkSharedEnvVariable as ek, unpauseProject as el, updateAccessGroup as em, updateAccessGroupProject as en, updateAiGatewayRule as eo, updateAttackChallengeMode as ep, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as eq, updateCheck as er, updateCustomEnvironment as es, updateDeploymentCheckRun as et, updateDomainAutoRenew as eu, updateDomainNameservers as ev, updateDrain as ew, updateEdgeConfig as ex, updateFirewallConfig as ey, updateFlag as ez, addProjectMember as f, uploadCert as f0, uploadFile as f1, uploadProjectAvatar as f2, verifyProjectDomain as f3, writeSessionFiles as f4, 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 };
|
|
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 };
|
|
@@ -284,6 +284,91 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
284
284
|
});
|
|
285
285
|
return data;
|
|
286
286
|
}
|
|
287
|
+
/**
|
|
288
|
+
* @summary Create virtual model config
|
|
289
|
+
* @description Create a virtual model config (VMC)
|
|
290
|
+
* @link /v1/ai-gateway/virtual-model-configs
|
|
291
|
+
*/ async function createAiGatewayVirtualModelConfig({ queryParams, config } = {}) {
|
|
292
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
293
|
+
const data = await request({
|
|
294
|
+
method: "POST",
|
|
295
|
+
url: `/v1/ai-gateway/virtual-model-configs`,
|
|
296
|
+
queryParams,
|
|
297
|
+
...requestConfig,
|
|
298
|
+
headers: {
|
|
299
|
+
...requestConfig.headers
|
|
300
|
+
}
|
|
301
|
+
});
|
|
302
|
+
return data;
|
|
303
|
+
}
|
|
304
|
+
/**
|
|
305
|
+
* @summary Get virtual model config
|
|
306
|
+
* @description Get a virtual model config
|
|
307
|
+
* @link /v1/ai-gateway/virtual-model-configs
|
|
308
|
+
*/ async function getAiGatewayVirtualModelConfig({ queryParams, config } = {}) {
|
|
309
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
310
|
+
const data = await request({
|
|
311
|
+
method: "GET",
|
|
312
|
+
url: `/v1/ai-gateway/virtual-model-configs`,
|
|
313
|
+
queryParams,
|
|
314
|
+
...requestConfig,
|
|
315
|
+
headers: {
|
|
316
|
+
...requestConfig.headers
|
|
317
|
+
}
|
|
318
|
+
});
|
|
319
|
+
return data;
|
|
320
|
+
}
|
|
321
|
+
/**
|
|
322
|
+
* @summary Update virtual model config
|
|
323
|
+
* @description Update a virtual model config
|
|
324
|
+
* @link /v1/ai-gateway/virtual-model-configs
|
|
325
|
+
*/ async function updateAiGatewayVirtualModelConfig({ queryParams, config } = {}) {
|
|
326
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
327
|
+
const data = await request({
|
|
328
|
+
method: "PATCH",
|
|
329
|
+
url: `/v1/ai-gateway/virtual-model-configs`,
|
|
330
|
+
queryParams,
|
|
331
|
+
...requestConfig,
|
|
332
|
+
headers: {
|
|
333
|
+
...requestConfig.headers
|
|
334
|
+
}
|
|
335
|
+
});
|
|
336
|
+
return data;
|
|
337
|
+
}
|
|
338
|
+
/**
|
|
339
|
+
* @summary Delete virtual model config
|
|
340
|
+
* @description Delete a virtual model config (soft delete)
|
|
341
|
+
* @link /v1/ai-gateway/virtual-model-configs
|
|
342
|
+
*/ async function deleteAiGatewayVirtualModelConfig({ queryParams, config } = {}) {
|
|
343
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
344
|
+
const data = await request({
|
|
345
|
+
method: "DELETE",
|
|
346
|
+
url: `/v1/ai-gateway/virtual-model-configs`,
|
|
347
|
+
queryParams,
|
|
348
|
+
...requestConfig,
|
|
349
|
+
headers: {
|
|
350
|
+
...requestConfig.headers
|
|
351
|
+
}
|
|
352
|
+
});
|
|
353
|
+
return data;
|
|
354
|
+
}
|
|
355
|
+
/**
|
|
356
|
+
* @summary List virtual model configs
|
|
357
|
+
* @description List virtual model configs. With `ownerId`, returns all of that team's VMCs. Without it, pages through VMCs across all teams (newest-first, `limit`/`cursor`).
|
|
358
|
+
* @link /v1/ai-gateway/virtual-model-configs/list
|
|
359
|
+
*/ async function listAiGatewayVirtualModelConfigs({ queryParams, config } = {}) {
|
|
360
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
361
|
+
const data = await request({
|
|
362
|
+
method: "GET",
|
|
363
|
+
url: `/v1/ai-gateway/virtual-model-configs/list`,
|
|
364
|
+
queryParams,
|
|
365
|
+
...requestConfig,
|
|
366
|
+
headers: {
|
|
367
|
+
...requestConfig.headers
|
|
368
|
+
}
|
|
369
|
+
});
|
|
370
|
+
return data;
|
|
371
|
+
}
|
|
287
372
|
/**
|
|
288
373
|
* @summary Create rule
|
|
289
374
|
* @description Create a routing rule
|
|
@@ -7502,6 +7587,11 @@ const operationsByPath = {
|
|
|
7502
7587
|
"GET /v1/access-groups/{accessGroupIdOrName}/projects/{projectId}": readAccessGroupProject,
|
|
7503
7588
|
"PATCH /v1/access-groups/{accessGroupIdOrName}/projects/{projectId}": updateAccessGroupProject,
|
|
7504
7589
|
"DELETE /v1/access-groups/{accessGroupIdOrName}/projects/{projectId}": deleteAccessGroupProject,
|
|
7590
|
+
"POST /v1/ai-gateway/virtual-model-configs": createAiGatewayVirtualModelConfig,
|
|
7591
|
+
"GET /v1/ai-gateway/virtual-model-configs": getAiGatewayVirtualModelConfig,
|
|
7592
|
+
"PATCH /v1/ai-gateway/virtual-model-configs": updateAiGatewayVirtualModelConfig,
|
|
7593
|
+
"DELETE /v1/ai-gateway/virtual-model-configs": deleteAiGatewayVirtualModelConfig,
|
|
7594
|
+
"GET /v1/ai-gateway/virtual-model-configs/list": listAiGatewayVirtualModelConfigs,
|
|
7505
7595
|
"POST /v1/ai-gateway/rules": createAiGatewayRule,
|
|
7506
7596
|
"GET /v1/ai-gateway/rules": listAiGatewayRules,
|
|
7507
7597
|
"PATCH /v1/ai-gateway/rules": updateAiGatewayRule,
|
|
@@ -7880,6 +7970,13 @@ const operationsByTag = {
|
|
|
7880
7970
|
updateAccessGroupProject,
|
|
7881
7971
|
deleteAccessGroupProject
|
|
7882
7972
|
},
|
|
7973
|
+
apiAiGateway: {
|
|
7974
|
+
createAiGatewayVirtualModelConfig,
|
|
7975
|
+
getAiGatewayVirtualModelConfig,
|
|
7976
|
+
updateAiGatewayVirtualModelConfig,
|
|
7977
|
+
deleteAiGatewayVirtualModelConfig,
|
|
7978
|
+
listAiGatewayVirtualModelConfigs
|
|
7979
|
+
},
|
|
7883
7980
|
aiGateway: {
|
|
7884
7981
|
createAiGatewayRule,
|
|
7885
7982
|
listAiGatewayRules,
|
|
@@ -8339,6 +8436,21 @@ const tagDictionary = {
|
|
|
8339
8436
|
"updateAccessGroupProject"
|
|
8340
8437
|
]
|
|
8341
8438
|
},
|
|
8439
|
+
apiAiGateway: {
|
|
8440
|
+
POST: [
|
|
8441
|
+
"createAiGatewayVirtualModelConfig"
|
|
8442
|
+
],
|
|
8443
|
+
GET: [
|
|
8444
|
+
"getAiGatewayVirtualModelConfig",
|
|
8445
|
+
"listAiGatewayVirtualModelConfigs"
|
|
8446
|
+
],
|
|
8447
|
+
PATCH: [
|
|
8448
|
+
"updateAiGatewayVirtualModelConfig"
|
|
8449
|
+
],
|
|
8450
|
+
DELETE: [
|
|
8451
|
+
"deleteAiGatewayVirtualModelConfig"
|
|
8452
|
+
]
|
|
8453
|
+
},
|
|
8342
8454
|
aiGateway: {
|
|
8343
8455
|
POST: [
|
|
8344
8456
|
"createAiGatewayRule"
|
|
@@ -9069,6 +9181,7 @@ exports.countPageviews = countPageviews;
|
|
|
9069
9181
|
exports.createAccessGroup = createAccessGroup;
|
|
9070
9182
|
exports.createAccessGroupProject = createAccessGroupProject;
|
|
9071
9183
|
exports.createAiGatewayRule = createAiGatewayRule;
|
|
9184
|
+
exports.createAiGatewayVirtualModelConfig = createAiGatewayVirtualModelConfig;
|
|
9072
9185
|
exports.createApiKeys = createApiKeys;
|
|
9073
9186
|
exports.createAuthToken = createAuthToken;
|
|
9074
9187
|
exports.createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads = createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads;
|
|
@@ -9118,6 +9231,7 @@ exports.dangerouslyDeleteByTags = dangerouslyDeleteByTags;
|
|
|
9118
9231
|
exports.deleteAccessGroup = deleteAccessGroup;
|
|
9119
9232
|
exports.deleteAccessGroupProject = deleteAccessGroupProject;
|
|
9120
9233
|
exports.deleteAiGatewayRule = deleteAiGatewayRule;
|
|
9234
|
+
exports.deleteAiGatewayVirtualModelConfig = deleteAiGatewayVirtualModelConfig;
|
|
9121
9235
|
exports.deleteAlias = deleteAlias;
|
|
9122
9236
|
exports.deleteAllArtifacts = deleteAllArtifacts;
|
|
9123
9237
|
exports.deleteAuthToken = deleteAuthToken;
|
|
@@ -9168,6 +9282,7 @@ exports.generateFirewallRule = generateFirewallRule;
|
|
|
9168
9282
|
exports.generateRoute = generateRoute;
|
|
9169
9283
|
exports.getAccountInfo = getAccountInfo;
|
|
9170
9284
|
exports.getActiveAttackStatus = getActiveAttackStatus;
|
|
9285
|
+
exports.getAiGatewayVirtualModelConfig = getAiGatewayVirtualModelConfig;
|
|
9171
9286
|
exports.getAlias = getAlias;
|
|
9172
9287
|
exports.getAllChecks = getAllChecks;
|
|
9173
9288
|
exports.getAllLogDrains = getAllLogDrains;
|
|
@@ -9292,6 +9407,7 @@ exports.listAccessGroupMembers = listAccessGroupMembers;
|
|
|
9292
9407
|
exports.listAccessGroupProjects = listAccessGroupProjects;
|
|
9293
9408
|
exports.listAccessGroups = listAccessGroups;
|
|
9294
9409
|
exports.listAiGatewayRules = listAiGatewayRules;
|
|
9410
|
+
exports.listAiGatewayVirtualModelConfigs = listAiGatewayVirtualModelConfigs;
|
|
9295
9411
|
exports.listAliases = listAliases;
|
|
9296
9412
|
exports.listAuthTokens = listAuthTokens;
|
|
9297
9413
|
exports.listBillingCharges = listBillingCharges;
|
|
@@ -9377,6 +9493,7 @@ exports.unpauseProject = unpauseProject;
|
|
|
9377
9493
|
exports.updateAccessGroup = updateAccessGroup;
|
|
9378
9494
|
exports.updateAccessGroupProject = updateAccessGroupProject;
|
|
9379
9495
|
exports.updateAiGatewayRule = updateAiGatewayRule;
|
|
9496
|
+
exports.updateAiGatewayVirtualModelConfig = updateAiGatewayVirtualModelConfig;
|
|
9380
9497
|
exports.updateAttackChallengeMode = updateAttackChallengeMode;
|
|
9381
9498
|
exports.updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid = updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
9382
9499
|
exports.updateCheck = updateCheck;
|
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-k1idfow7.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
@@ -29,6 +29,7 @@ exports.countPageviews = components.countPageviews;
|
|
|
29
29
|
exports.createAccessGroup = components.createAccessGroup;
|
|
30
30
|
exports.createAccessGroupProject = components.createAccessGroupProject;
|
|
31
31
|
exports.createAiGatewayRule = components.createAiGatewayRule;
|
|
32
|
+
exports.createAiGatewayVirtualModelConfig = components.createAiGatewayVirtualModelConfig;
|
|
32
33
|
exports.createApiKeys = components.createApiKeys;
|
|
33
34
|
exports.createAuthToken = components.createAuthToken;
|
|
34
35
|
exports.createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads = components.createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads;
|
|
@@ -78,6 +79,7 @@ exports.dangerouslyDeleteByTags = components.dangerouslyDeleteByTags;
|
|
|
78
79
|
exports.deleteAccessGroup = components.deleteAccessGroup;
|
|
79
80
|
exports.deleteAccessGroupProject = components.deleteAccessGroupProject;
|
|
80
81
|
exports.deleteAiGatewayRule = components.deleteAiGatewayRule;
|
|
82
|
+
exports.deleteAiGatewayVirtualModelConfig = components.deleteAiGatewayVirtualModelConfig;
|
|
81
83
|
exports.deleteAlias = components.deleteAlias;
|
|
82
84
|
exports.deleteAllArtifacts = components.deleteAllArtifacts;
|
|
83
85
|
exports.deleteAuthToken = components.deleteAuthToken;
|
|
@@ -128,6 +130,7 @@ exports.generateFirewallRule = components.generateFirewallRule;
|
|
|
128
130
|
exports.generateRoute = components.generateRoute;
|
|
129
131
|
exports.getAccountInfo = components.getAccountInfo;
|
|
130
132
|
exports.getActiveAttackStatus = components.getActiveAttackStatus;
|
|
133
|
+
exports.getAiGatewayVirtualModelConfig = components.getAiGatewayVirtualModelConfig;
|
|
131
134
|
exports.getAlias = components.getAlias;
|
|
132
135
|
exports.getAllChecks = components.getAllChecks;
|
|
133
136
|
exports.getAllLogDrains = components.getAllLogDrains;
|
|
@@ -252,6 +255,7 @@ exports.listAccessGroupMembers = components.listAccessGroupMembers;
|
|
|
252
255
|
exports.listAccessGroupProjects = components.listAccessGroupProjects;
|
|
253
256
|
exports.listAccessGroups = components.listAccessGroups;
|
|
254
257
|
exports.listAiGatewayRules = components.listAiGatewayRules;
|
|
258
|
+
exports.listAiGatewayVirtualModelConfigs = components.listAiGatewayVirtualModelConfigs;
|
|
255
259
|
exports.listAliases = components.listAliases;
|
|
256
260
|
exports.listAuthTokens = components.listAuthTokens;
|
|
257
261
|
exports.listBillingCharges = components.listBillingCharges;
|
|
@@ -337,6 +341,7 @@ exports.unpauseProject = components.unpauseProject;
|
|
|
337
341
|
exports.updateAccessGroup = components.updateAccessGroup;
|
|
338
342
|
exports.updateAccessGroupProject = components.updateAccessGroupProject;
|
|
339
343
|
exports.updateAiGatewayRule = components.updateAiGatewayRule;
|
|
344
|
+
exports.updateAiGatewayVirtualModelConfig = components.updateAiGatewayVirtualModelConfig;
|
|
340
345
|
exports.updateAttackChallengeMode = components.updateAttackChallengeMode;
|
|
341
346
|
exports.updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid = components.updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
342
347
|
exports.updateCheck = components.updateCheck;
|
package/dist/components.d.mts
CHANGED
|
@@ -235,6 +235,83 @@ declare function deleteAccessGroupProject({ pathParams, queryParams, config, }?:
|
|
|
235
235
|
client?: typeof client;
|
|
236
236
|
};
|
|
237
237
|
}): Promise<unknown>;
|
|
238
|
+
/**
|
|
239
|
+
* @summary Create virtual model config
|
|
240
|
+
* @description Create a virtual model config (VMC)
|
|
241
|
+
* @link /v1/ai-gateway/virtual-model-configs
|
|
242
|
+
*/
|
|
243
|
+
declare function createAiGatewayVirtualModelConfig({ queryParams, config, }?: {
|
|
244
|
+
queryParams?: {
|
|
245
|
+
teamId?: string;
|
|
246
|
+
slug?: string;
|
|
247
|
+
};
|
|
248
|
+
config?: Partial<FetcherConfig> & {
|
|
249
|
+
client?: typeof client;
|
|
250
|
+
};
|
|
251
|
+
}): Promise<unknown>;
|
|
252
|
+
/**
|
|
253
|
+
* @summary Get virtual model config
|
|
254
|
+
* @description Get a virtual model config
|
|
255
|
+
* @link /v1/ai-gateway/virtual-model-configs
|
|
256
|
+
*/
|
|
257
|
+
declare function getAiGatewayVirtualModelConfig({ queryParams, config, }?: {
|
|
258
|
+
queryParams?: {
|
|
259
|
+
ownerId?: string;
|
|
260
|
+
virtualModelSlug?: string;
|
|
261
|
+
teamId?: string;
|
|
262
|
+
slug?: string;
|
|
263
|
+
};
|
|
264
|
+
config?: Partial<FetcherConfig> & {
|
|
265
|
+
client?: typeof client;
|
|
266
|
+
};
|
|
267
|
+
}): Promise<unknown>;
|
|
268
|
+
/**
|
|
269
|
+
* @summary Update virtual model config
|
|
270
|
+
* @description Update a virtual model config
|
|
271
|
+
* @link /v1/ai-gateway/virtual-model-configs
|
|
272
|
+
*/
|
|
273
|
+
declare function updateAiGatewayVirtualModelConfig({ queryParams, config, }?: {
|
|
274
|
+
queryParams?: {
|
|
275
|
+
teamId?: string;
|
|
276
|
+
slug?: string;
|
|
277
|
+
};
|
|
278
|
+
config?: Partial<FetcherConfig> & {
|
|
279
|
+
client?: typeof client;
|
|
280
|
+
};
|
|
281
|
+
}): Promise<unknown>;
|
|
282
|
+
/**
|
|
283
|
+
* @summary Delete virtual model config
|
|
284
|
+
* @description Delete a virtual model config (soft delete)
|
|
285
|
+
* @link /v1/ai-gateway/virtual-model-configs
|
|
286
|
+
*/
|
|
287
|
+
declare function deleteAiGatewayVirtualModelConfig({ queryParams, config, }?: {
|
|
288
|
+
queryParams?: {
|
|
289
|
+
ownerId?: string;
|
|
290
|
+
virtualModelSlug?: string;
|
|
291
|
+
teamId?: string;
|
|
292
|
+
slug?: string;
|
|
293
|
+
};
|
|
294
|
+
config?: Partial<FetcherConfig> & {
|
|
295
|
+
client?: typeof client;
|
|
296
|
+
};
|
|
297
|
+
}): Promise<unknown>;
|
|
298
|
+
/**
|
|
299
|
+
* @summary List virtual model configs
|
|
300
|
+
* @description List virtual model configs. With `ownerId`, returns all of that team's VMCs. Without it, pages through VMCs across all teams (newest-first, `limit`/`cursor`).
|
|
301
|
+
* @link /v1/ai-gateway/virtual-model-configs/list
|
|
302
|
+
*/
|
|
303
|
+
declare function listAiGatewayVirtualModelConfigs({ queryParams, config, }?: {
|
|
304
|
+
queryParams?: {
|
|
305
|
+
ownerId?: string;
|
|
306
|
+
limit?: number;
|
|
307
|
+
cursor?: string;
|
|
308
|
+
teamId?: string;
|
|
309
|
+
slug?: string;
|
|
310
|
+
};
|
|
311
|
+
config?: Partial<FetcherConfig> & {
|
|
312
|
+
client?: typeof client;
|
|
313
|
+
};
|
|
314
|
+
}): Promise<unknown>;
|
|
238
315
|
/**
|
|
239
316
|
* @summary Create rule
|
|
240
317
|
* @description Create a routing rule
|
|
@@ -6273,6 +6350,11 @@ declare const operationsByPath: {
|
|
|
6273
6350
|
"GET /v1/access-groups/{accessGroupIdOrName}/projects/{projectId}": typeof readAccessGroupProject;
|
|
6274
6351
|
"PATCH /v1/access-groups/{accessGroupIdOrName}/projects/{projectId}": typeof updateAccessGroupProject;
|
|
6275
6352
|
"DELETE /v1/access-groups/{accessGroupIdOrName}/projects/{projectId}": typeof deleteAccessGroupProject;
|
|
6353
|
+
"POST /v1/ai-gateway/virtual-model-configs": typeof createAiGatewayVirtualModelConfig;
|
|
6354
|
+
"GET /v1/ai-gateway/virtual-model-configs": typeof getAiGatewayVirtualModelConfig;
|
|
6355
|
+
"PATCH /v1/ai-gateway/virtual-model-configs": typeof updateAiGatewayVirtualModelConfig;
|
|
6356
|
+
"DELETE /v1/ai-gateway/virtual-model-configs": typeof deleteAiGatewayVirtualModelConfig;
|
|
6357
|
+
"GET /v1/ai-gateway/virtual-model-configs/list": typeof listAiGatewayVirtualModelConfigs;
|
|
6276
6358
|
"POST /v1/ai-gateway/rules": typeof createAiGatewayRule;
|
|
6277
6359
|
"GET /v1/ai-gateway/rules": typeof listAiGatewayRules;
|
|
6278
6360
|
"PATCH /v1/ai-gateway/rules": typeof updateAiGatewayRule;
|
|
@@ -6651,6 +6733,13 @@ declare const operationsByTag: {
|
|
|
6651
6733
|
updateAccessGroupProject: typeof updateAccessGroupProject;
|
|
6652
6734
|
deleteAccessGroupProject: typeof deleteAccessGroupProject;
|
|
6653
6735
|
};
|
|
6736
|
+
apiAiGateway: {
|
|
6737
|
+
createAiGatewayVirtualModelConfig: typeof createAiGatewayVirtualModelConfig;
|
|
6738
|
+
getAiGatewayVirtualModelConfig: typeof getAiGatewayVirtualModelConfig;
|
|
6739
|
+
updateAiGatewayVirtualModelConfig: typeof updateAiGatewayVirtualModelConfig;
|
|
6740
|
+
deleteAiGatewayVirtualModelConfig: typeof deleteAiGatewayVirtualModelConfig;
|
|
6741
|
+
listAiGatewayVirtualModelConfigs: typeof listAiGatewayVirtualModelConfigs;
|
|
6742
|
+
};
|
|
6654
6743
|
aiGateway: {
|
|
6655
6744
|
createAiGatewayRule: typeof createAiGatewayRule;
|
|
6656
6745
|
listAiGatewayRules: typeof listAiGatewayRules;
|
|
@@ -7095,6 +7184,12 @@ declare const tagDictionary: {
|
|
|
7095
7184
|
readonly DELETE: readonly ["deleteAccessGroup", "deleteAccessGroupProject"];
|
|
7096
7185
|
readonly PATCH: readonly ["updateAccessGroupProject"];
|
|
7097
7186
|
};
|
|
7187
|
+
readonly apiAiGateway: {
|
|
7188
|
+
readonly POST: readonly ["createAiGatewayVirtualModelConfig"];
|
|
7189
|
+
readonly GET: readonly ["getAiGatewayVirtualModelConfig", "listAiGatewayVirtualModelConfigs"];
|
|
7190
|
+
readonly PATCH: readonly ["updateAiGatewayVirtualModelConfig"];
|
|
7191
|
+
readonly DELETE: readonly ["deleteAiGatewayVirtualModelConfig"];
|
|
7192
|
+
};
|
|
7098
7193
|
readonly aiGateway: {
|
|
7099
7194
|
readonly POST: readonly ["createAiGatewayRule"];
|
|
7100
7195
|
readonly GET: readonly ["listAiGatewayRules"];
|
|
@@ -7308,5 +7403,5 @@ declare const tagDictionary: {
|
|
|
7308
7403
|
};
|
|
7309
7404
|
};
|
|
7310
7405
|
|
|
7311
|
-
export { acceptProjectTransferRequest, addBypassIp, addProjectDomain, addProjectMember, addRepositoryPermission, addRoute, aggregateEvents, aggregatePageviews, approveRollingReleaseStage, artifactQuery, assignAlias, batchRemoveProjectEnv, buyCredits, buyDomains, buySingleDomain, cancelDeployment, claimDomainOwnership, clearRepositoryPermissions, completeRollingRelease, connectIntegrationResourceToProject, countEvents, countPageviews, createAccessGroup, createAccessGroupProject, createAiGatewayRule, createApiKeys, createAuthToken, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads, createCheck, createConfigurableLogDrain, createConnector, createConnectorAuthorizationRequest, createConnectorInstallationRequest, createCustomEnvironment, createDeployment, createDeploymentCheckRun, createDrain, createEdgeConfig, createEdgeConfigToken, createEvent, createFlag, createFlagSegment, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems, createIntegrationStoreDirect, createLogDrain, createMicrofrontendsGroupWithApplications, createNetwork, createObservabilityQuery, createOrTransferDomain, createProject, createProjectCheck, createProjectEnv, createProjectTransferRequest, createRecord, createRepository, createSandboxesByNameFork, createSandboxesV2, createSandboxesV3, createSdkKey, createSecurityFirewallConfigByConfigVersionActivate, createSessionDirectory, createSessionSnapshot, createSharedEnvVariable, createSpeedInsightsToggle, createStorageStoresBlob, createTeam, createTraceSession, createWebInsightsToggle, createWebhook, dangerouslyDeleteBySrcImages, dangerouslyDeleteByTags, deleteAccessGroup, deleteAccessGroupProject, deleteAiGatewayRule, deleteAlias, deleteAllArtifacts, deleteAuthToken, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, deleteConfigurableLogDrain, deleteConfiguration, deleteDeployment, deleteDomain, deleteDrain, deleteDrive, deleteEdgeConfig, deleteEdgeConfigSchema, deleteEdgeConfigTokens, deleteFlag, deleteFlagSegment, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, deleteIntegrationLogDrain, deleteIntegrationResource, deleteMicrofrontendsGroup, deleteNetwork, 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, getAlias, getAllChecks, getAllLogDrains, getAuthToken, getAuthUser, getBillingPlans, getBulkAvailability, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, getByTeamSlugByProjectSlugByRepositoryNameTagsList, getBypassIp, getCertById, getCerts, getCheck, getConfigurableLogDrain, getConfiguration, getConfigurationProducts, getConfigurations, 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, 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, importConnectorTokens, importResource, invalidateBySrcImages, invalidateByTags, inviteUserToTeam, issueCert, joinTeam, killSessionCommand, listAccessGroupMembers, listAccessGroupProjects, listAccessGroups, listAiGatewayRules, listAliases, listAuthTokens, listBillingCharges, listCheckRuns, listContractCommitments, listDeploymentAliases, listDeploymentCheckRuns, listDeploymentFiles, listDrives, listEventTypes, listFlagSegments, listFlagVersions, listFlags, listFlagsV2, listNetworks, listProjectChecks, listPromoteAliases, listRepositories, listRepositoryImages, listRepositoryPermissions, listRepositoryTags, listSandboxes, listSessionCommands, listSessionSnapshots, listSessions, listSharedEnvVariable, listTeamFlagSettings, listTeamFlags, listTeamFlagsV2, listUserEvents, moveProjectDomain, operationsByPath, operationsByTag, patchDomain, patchEdgeConfigItems, patchEdgeConfigSchema, patchTeam, patchUrlProtectionBypass, pauseProject, postTeamDsyncRoles, putFirewallConfig, readAccessGroup, readAccessGroupProject, readNetwork, readSessionFile, recordEvents, removeBypassIp, removeCert, removeCustomEnvironment, removeProjectDomain, removeProjectEnv, removeProjectMember, removeRecord, removeRepositoryPermission, removeTeamMember, renewDomain, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, replaceDomainsByDomainRecords, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig, requestAccessToTeam, requestDelete, requestPromote, requestRollback, rerequestCheck, restoreEdgeConfigBackup, restoreRedirects, runSessionCommand, searchRepo, stageRedirects, stageRoutes, startRollingRelease, status, stopSession, submitBillingData, submitInvoice, submitPrepaymentBalances, tagDictionary, testDrain, transferInDomain, unlinkSharedEnvVariable, unpauseProject, updateAccessGroup, updateAccessGroupProject, updateAiGatewayRule, updateAttackChallengeMode, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, updateCheck, updateCustomEnvironment, updateDeploymentCheckRun, updateDomainAutoRenew, updateDomainNameservers, updateDrain, updateEdgeConfig, updateFirewallConfig, updateFlag, updateFlagSegment, updateFlagSettings, updateInstallation, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, updateIntegrationDeploymentAction, updateInvoice, updateMicrofrontends, updateMicrofrontendsGroup, updateNetwork, updateObservabilityConfigurationProject, updateProject, updateProjectCheck, updateProjectDomain, updateProjectProtectionBypass, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescription, updateRecord, updateResource, updateResourceSecrets, updateResourceSecretsById, updateRollingReleaseConfig, updateRouteVersions, updateSandbox, updateSessionNetworkPolicy, updateSharedEnvVariable, updateStaticIps, updateTeamMember, updateVersion, uploadArtifact, uploadCert, uploadFile, uploadProjectAvatar, verifyProjectDomain, writeSessionFiles };
|
|
7406
|
+
export { acceptProjectTransferRequest, 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, createConnectorInstallationRequest, createCustomEnvironment, createDeployment, createDeploymentCheckRun, createDrain, createEdgeConfig, createEdgeConfigToken, createEvent, createFlag, createFlagSegment, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems, createIntegrationStoreDirect, createLogDrain, createMicrofrontendsGroupWithApplications, createNetwork, createObservabilityQuery, createOrTransferDomain, createProject, createProjectCheck, createProjectEnv, createProjectTransferRequest, createRecord, createRepository, createSandboxesByNameFork, createSandboxesV2, createSandboxesV3, createSdkKey, createSecurityFirewallConfigByConfigVersionActivate, createSessionDirectory, createSessionSnapshot, createSharedEnvVariable, createSpeedInsightsToggle, createStorageStoresBlob, createTeam, createTraceSession, createWebInsightsToggle, createWebhook, dangerouslyDeleteBySrcImages, dangerouslyDeleteByTags, deleteAccessGroup, deleteAccessGroupProject, deleteAiGatewayRule, deleteAiGatewayVirtualModelConfig, deleteAlias, deleteAllArtifacts, deleteAuthToken, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, deleteConfigurableLogDrain, deleteConfiguration, deleteDeployment, deleteDomain, deleteDrain, deleteDrive, deleteEdgeConfig, deleteEdgeConfigSchema, deleteEdgeConfigTokens, deleteFlag, deleteFlagSegment, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, deleteIntegrationLogDrain, deleteIntegrationResource, deleteMicrofrontendsGroup, deleteNetwork, 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, getAlias, getAllChecks, getAllLogDrains, getAuthToken, getAuthUser, getBillingPlans, getBulkAvailability, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, getByTeamSlugByProjectSlugByRepositoryNameTagsList, getBypassIp, getCertById, getCerts, getCheck, getConfigurableLogDrain, getConfiguration, getConfigurationProducts, getConfigurations, 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, 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, importConnectorTokens, importResource, invalidateBySrcImages, invalidateByTags, inviteUserToTeam, issueCert, joinTeam, killSessionCommand, listAccessGroupMembers, listAccessGroupProjects, listAccessGroups, listAiGatewayRules, listAiGatewayVirtualModelConfigs, listAliases, listAuthTokens, listBillingCharges, listCheckRuns, listContractCommitments, listDeploymentAliases, listDeploymentCheckRuns, listDeploymentFiles, listDrives, listEventTypes, listFlagSegments, listFlagVersions, listFlags, listFlagsV2, listNetworks, listProjectChecks, listPromoteAliases, listRepositories, listRepositoryImages, listRepositoryPermissions, listRepositoryTags, listSandboxes, listSessionCommands, listSessionSnapshots, listSessions, listSharedEnvVariable, listTeamFlagSettings, listTeamFlags, listTeamFlagsV2, listUserEvents, moveProjectDomain, operationsByPath, operationsByTag, patchDomain, patchEdgeConfigItems, patchEdgeConfigSchema, patchTeam, patchUrlProtectionBypass, pauseProject, postTeamDsyncRoles, putFirewallConfig, readAccessGroup, readAccessGroupProject, readNetwork, readSessionFile, recordEvents, removeBypassIp, removeCert, removeCustomEnvironment, removeProjectDomain, removeProjectEnv, removeProjectMember, removeRecord, removeRepositoryPermission, removeTeamMember, renewDomain, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, replaceDomainsByDomainRecords, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig, requestAccessToTeam, requestDelete, requestPromote, requestRollback, rerequestCheck, restoreEdgeConfigBackup, restoreRedirects, runSessionCommand, searchRepo, stageRedirects, stageRoutes, startRollingRelease, status, stopSession, submitBillingData, submitInvoice, submitPrepaymentBalances, tagDictionary, testDrain, transferInDomain, unlinkSharedEnvVariable, unpauseProject, updateAccessGroup, updateAccessGroupProject, updateAiGatewayRule, updateAiGatewayVirtualModelConfig, updateAttackChallengeMode, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, updateCheck, updateCustomEnvironment, updateDeploymentCheckRun, updateDomainAutoRenew, updateDomainNameservers, updateDrain, updateEdgeConfig, updateFirewallConfig, updateFlag, updateFlagSegment, updateFlagSettings, updateInstallation, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, updateIntegrationDeploymentAction, updateInvoice, updateMicrofrontends, updateMicrofrontendsGroup, updateNetwork, updateObservabilityConfigurationProject, updateProject, updateProjectCheck, updateProjectDomain, updateProjectProtectionBypass, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescription, updateRecord, updateResource, updateResourceSecrets, updateResourceSecretsById, updateRollingReleaseConfig, updateRouteVersions, updateSandbox, updateSessionNetworkPolicy, updateSharedEnvVariable, updateStaticIps, updateTeamMember, updateVersion, uploadArtifact, uploadCert, uploadFile, uploadProjectAvatar, verifyProjectDomain, writeSessionFiles };
|
|
7312
7407
|
//# sourceMappingURL=components.d.mts.map
|