vercel-api-js 1.15.0 → 1.16.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.
@@ -369,6 +369,66 @@ const resolveUrl = (url, queryParams = {})=>{
369
369
  });
370
370
  return data;
371
371
  }
372
+ /**
373
+ * @summary Get virtual model config
374
+ * @description Get a virtual model config by path slug
375
+ * @link /v1/ai-gateway/virtual-model-configs/{vmcSlug}
376
+ */ async function getAiGatewayVirtualModelConfigBySlug({ pathParams, queryParams, config } = {}) {
377
+ const { client: request = client, ...requestConfig } = config ?? {};
378
+ if (!pathParams.vmcSlug) {
379
+ throw new Error(`Missing required path parameter: vmcSlug`);
380
+ }
381
+ const data = await request({
382
+ method: "GET",
383
+ url: `/v1/ai-gateway/virtual-model-configs/${pathParams.vmcSlug}`,
384
+ queryParams,
385
+ ...requestConfig,
386
+ headers: {
387
+ ...requestConfig.headers
388
+ }
389
+ });
390
+ return data;
391
+ }
392
+ /**
393
+ * @summary Update virtual model config
394
+ * @description Update a virtual model config by path slug
395
+ * @link /v1/ai-gateway/virtual-model-configs/{vmcSlug}
396
+ */ async function updateAiGatewayVirtualModelConfigBySlug({ pathParams, queryParams, config } = {}) {
397
+ const { client: request = client, ...requestConfig } = config ?? {};
398
+ if (!pathParams.vmcSlug) {
399
+ throw new Error(`Missing required path parameter: vmcSlug`);
400
+ }
401
+ const data = await request({
402
+ method: "PATCH",
403
+ url: `/v1/ai-gateway/virtual-model-configs/${pathParams.vmcSlug}`,
404
+ queryParams,
405
+ ...requestConfig,
406
+ headers: {
407
+ ...requestConfig.headers
408
+ }
409
+ });
410
+ return data;
411
+ }
412
+ /**
413
+ * @summary Delete virtual model config
414
+ * @description Delete a virtual model config by path slug (soft delete)
415
+ * @link /v1/ai-gateway/virtual-model-configs/{vmcSlug}
416
+ */ async function deleteAiGatewayVirtualModelConfigBySlug({ pathParams, queryParams, config } = {}) {
417
+ const { client: request = client, ...requestConfig } = config ?? {};
418
+ if (!pathParams.vmcSlug) {
419
+ throw new Error(`Missing required path parameter: vmcSlug`);
420
+ }
421
+ const data = await request({
422
+ method: "DELETE",
423
+ url: `/v1/ai-gateway/virtual-model-configs/${pathParams.vmcSlug}`,
424
+ queryParams,
425
+ ...requestConfig,
426
+ headers: {
427
+ ...requestConfig.headers
428
+ }
429
+ });
430
+ return data;
431
+ }
372
432
  /**
373
433
  * @summary Create rule
374
434
  * @description Create a routing rule
@@ -1144,6 +1204,157 @@ const resolveUrl = (url, queryParams = {})=>{
1144
1204
  });
1145
1205
  return data;
1146
1206
  }
1207
+ /**
1208
+ * @summary Create a PrivateLink endpoint
1209
+ * @description Creates a PrivateLink endpoint for a project.
1210
+ * @link /v1/networking/privatelink/endpoints
1211
+ */ async function createPrivateLinkEndpoint({ queryParams, config } = {}) {
1212
+ const { client: request = client, ...requestConfig } = config ?? {};
1213
+ const data = await request({
1214
+ method: "POST",
1215
+ url: `/v1/networking/privatelink/endpoints`,
1216
+ queryParams,
1217
+ ...requestConfig,
1218
+ headers: {
1219
+ ...requestConfig.headers
1220
+ }
1221
+ });
1222
+ return data;
1223
+ }
1224
+ /**
1225
+ * @summary List PrivateLink endpoints
1226
+ * @description Lists all PrivateLink endpoints for a project.
1227
+ * @link /v1/networking/privatelink/endpoints
1228
+ */ async function listPrivateLinkEndpoints({ queryParams, config } = {}) {
1229
+ const { client: request = client, ...requestConfig } = config ?? {};
1230
+ const data = await request({
1231
+ method: "GET",
1232
+ url: `/v1/networking/privatelink/endpoints`,
1233
+ queryParams,
1234
+ ...requestConfig,
1235
+ headers: {
1236
+ ...requestConfig.headers
1237
+ }
1238
+ });
1239
+ return data;
1240
+ }
1241
+ /**
1242
+ * @summary Read a PrivateLink endpoint
1243
+ * @description Reads a single PrivateLink endpoint.
1244
+ * @link /v1/networking/privatelink/endpoints/{endpointId}
1245
+ */ async function readPrivateLinkEndpoint({ pathParams, queryParams, config } = {}) {
1246
+ const { client: request = client, ...requestConfig } = config ?? {};
1247
+ if (!pathParams.endpointId) {
1248
+ throw new Error(`Missing required path parameter: endpointId`);
1249
+ }
1250
+ const data = await request({
1251
+ method: "GET",
1252
+ url: `/v1/networking/privatelink/endpoints/${pathParams.endpointId}`,
1253
+ queryParams,
1254
+ ...requestConfig,
1255
+ headers: {
1256
+ ...requestConfig.headers
1257
+ }
1258
+ });
1259
+ return data;
1260
+ }
1261
+ /**
1262
+ * @summary Delete a PrivateLink endpoint
1263
+ * @description Deletes a PrivateLink endpoint.
1264
+ * @link /v1/networking/privatelink/endpoints/{endpointId}
1265
+ */ async function deletePrivateLinkEndpoint({ pathParams, queryParams, config } = {}) {
1266
+ const { client: request = client, ...requestConfig } = config ?? {};
1267
+ if (!pathParams.endpointId) {
1268
+ throw new Error(`Missing required path parameter: endpointId`);
1269
+ }
1270
+ const data = await request({
1271
+ method: "DELETE",
1272
+ url: `/v1/networking/privatelink/endpoints/${pathParams.endpointId}`,
1273
+ queryParams,
1274
+ ...requestConfig,
1275
+ headers: {
1276
+ ...requestConfig.headers
1277
+ }
1278
+ });
1279
+ return data;
1280
+ }
1281
+ /**
1282
+ * @summary Update a PrivateLink endpoint
1283
+ * @description Updates a PrivateLink endpoint (name, privateDns).
1284
+ * @link /v1/networking/privatelink/endpoints/{endpointId}
1285
+ */ async function updatePrivateLinkEndpoint({ pathParams, queryParams, config } = {}) {
1286
+ const { client: request = client, ...requestConfig } = config ?? {};
1287
+ if (!pathParams.endpointId) {
1288
+ throw new Error(`Missing required path parameter: endpointId`);
1289
+ }
1290
+ const data = await request({
1291
+ method: "PATCH",
1292
+ url: `/v1/networking/privatelink/endpoints/${pathParams.endpointId}`,
1293
+ queryParams,
1294
+ ...requestConfig,
1295
+ headers: {
1296
+ ...requestConfig.headers
1297
+ }
1298
+ });
1299
+ return data;
1300
+ }
1301
+ /**
1302
+ * @summary List connectors
1303
+ * @description List connectors that belong to a team.
1304
+ * @link /v2/connect/connectors
1305
+ */ async function listConnectors({ queryParams, config } = {}) {
1306
+ const { client: request = client, ...requestConfig } = config ?? {};
1307
+ const data = await request({
1308
+ method: "GET",
1309
+ url: `/v2/connect/connectors`,
1310
+ queryParams,
1311
+ ...requestConfig,
1312
+ headers: {
1313
+ ...requestConfig.headers
1314
+ }
1315
+ });
1316
+ return data;
1317
+ }
1318
+ /**
1319
+ * @summary Get a connector
1320
+ * @description Get the connector by ID. Accepts a dashboard/team requester or a deployment's project OIDC token; project requesters may only read connectors linked to their project and environment.
1321
+ * @link /v1/connect/connectors/{connector}
1322
+ */ async function getConnector({ pathParams, queryParams, config } = {}) {
1323
+ const { client: request = client, ...requestConfig } = config ?? {};
1324
+ if (!pathParams.connector) {
1325
+ throw new Error(`Missing required path parameter: connector`);
1326
+ }
1327
+ const data = await request({
1328
+ method: "GET",
1329
+ url: `/v1/connect/connectors/${pathParams.connector}`,
1330
+ queryParams,
1331
+ ...requestConfig,
1332
+ headers: {
1333
+ ...requestConfig.headers
1334
+ }
1335
+ });
1336
+ return data;
1337
+ }
1338
+ /**
1339
+ * @summary Delete a connector
1340
+ * @description Delete a connector, its project connections, and its installation records.
1341
+ * @link /v1/connect/connectors/{connector}
1342
+ */ async function deleteConnector({ pathParams, queryParams, config } = {}) {
1343
+ const { client: request = client, ...requestConfig } = config ?? {};
1344
+ if (!pathParams.connector) {
1345
+ throw new Error(`Missing required path parameter: connector`);
1346
+ }
1347
+ const data = await request({
1348
+ method: "DELETE",
1349
+ url: `/v1/connect/connectors/${pathParams.connector}`,
1350
+ queryParams,
1351
+ ...requestConfig,
1352
+ headers: {
1353
+ ...requestConfig.headers
1354
+ }
1355
+ });
1356
+ return data;
1357
+ }
1147
1358
  /**
1148
1359
  * @summary Create a connector
1149
1360
  * @description Create a connector and optionally link it to a project. Use `type` with complete provider data, or use `service` with `connectionMethod` so Connect can supply the type, endpoints, templates, and defaults.
@@ -1161,6 +1372,155 @@ const resolveUrl = (url, queryParams = {})=>{
1161
1372
  });
1162
1373
  return data;
1163
1374
  }
1375
+ /**
1376
+ * @summary Update a connector
1377
+ * @description Update a connector and return the connector with any service-side update signals that the caller must handle.
1378
+ * @link /v2/connect/connectors/{connector}
1379
+ */ async function updateConnector({ pathParams, queryParams, config } = {}) {
1380
+ const { client: request = client, ...requestConfig } = config ?? {};
1381
+ if (!pathParams.connector) {
1382
+ throw new Error(`Missing required path parameter: connector`);
1383
+ }
1384
+ const data = await request({
1385
+ method: "PATCH",
1386
+ url: `/v2/connect/connectors/${pathParams.connector}`,
1387
+ queryParams,
1388
+ ...requestConfig,
1389
+ headers: {
1390
+ ...requestConfig.headers
1391
+ }
1392
+ });
1393
+ return data;
1394
+ }
1395
+ /**
1396
+ * @summary Update connector trigger destinations
1397
+ * @description Replace the full set of destinations that receive trigger requests for a connector.
1398
+ * @link /v1/connect/connectors/{connector}/trigger-destinations
1399
+ */ async function replaceConnectorTriggerDestinations({ pathParams, queryParams, config } = {}) {
1400
+ const { client: request = client, ...requestConfig } = config ?? {};
1401
+ if (!pathParams.connector) {
1402
+ throw new Error(`Missing required path parameter: connector`);
1403
+ }
1404
+ const data = await request({
1405
+ method: "PATCH",
1406
+ url: `/v1/connect/connectors/${pathParams.connector}/trigger-destinations`,
1407
+ queryParams,
1408
+ ...requestConfig,
1409
+ headers: {
1410
+ ...requestConfig.headers
1411
+ }
1412
+ });
1413
+ return data;
1414
+ }
1415
+ /**
1416
+ * @summary List projects for a connector
1417
+ * @description List the projects connected to a connector and the environments where each connection is available.
1418
+ * @link /v2/connect/connectors/{connector}/projects
1419
+ */ async function listConnectorProjectConnections({ pathParams, queryParams, config } = {}) {
1420
+ const { client: request = client, ...requestConfig } = config ?? {};
1421
+ if (!pathParams.connector) {
1422
+ throw new Error(`Missing required path parameter: connector`);
1423
+ }
1424
+ const data = await request({
1425
+ method: "GET",
1426
+ url: `/v2/connect/connectors/${pathParams.connector}/projects`,
1427
+ queryParams,
1428
+ ...requestConfig,
1429
+ headers: {
1430
+ ...requestConfig.headers
1431
+ }
1432
+ });
1433
+ return data;
1434
+ }
1435
+ /**
1436
+ * @summary Get a connector project connection
1437
+ * @description Get the configuration that connects a connector to a project.
1438
+ * @link /v1/connect/connectors/{connector}/projects/{projectId}
1439
+ */ async function getConnectorProjectConnection({ pathParams, queryParams, config } = {}) {
1440
+ const { client: request = client, ...requestConfig } = config ?? {};
1441
+ if (!pathParams.connector) {
1442
+ throw new Error(`Missing required path parameter: connector`);
1443
+ }
1444
+ if (!pathParams.projectId) {
1445
+ throw new Error(`Missing required path parameter: projectId`);
1446
+ }
1447
+ const data = await request({
1448
+ method: "GET",
1449
+ url: `/v1/connect/connectors/${pathParams.connector}/projects/${pathParams.projectId}`,
1450
+ queryParams,
1451
+ ...requestConfig,
1452
+ headers: {
1453
+ ...requestConfig.headers
1454
+ }
1455
+ });
1456
+ return data;
1457
+ }
1458
+ /**
1459
+ * @summary Create or update a connector project connection
1460
+ * @description Connect a connector to a project, or replace the environments on an existing project connection.
1461
+ * @link /v1/connect/connectors/{connector}/projects/{projectId}
1462
+ */ async function upsertConnectorProjectConnection({ pathParams, queryParams, config } = {}) {
1463
+ const { client: request = client, ...requestConfig } = config ?? {};
1464
+ if (!pathParams.connector) {
1465
+ throw new Error(`Missing required path parameter: connector`);
1466
+ }
1467
+ if (!pathParams.projectId) {
1468
+ throw new Error(`Missing required path parameter: projectId`);
1469
+ }
1470
+ const data = await request({
1471
+ method: "POST",
1472
+ url: `/v1/connect/connectors/${pathParams.connector}/projects/${pathParams.projectId}`,
1473
+ queryParams,
1474
+ ...requestConfig,
1475
+ headers: {
1476
+ ...requestConfig.headers
1477
+ }
1478
+ });
1479
+ return data;
1480
+ }
1481
+ /**
1482
+ * @summary Disconnect a connector from a project
1483
+ * @description Disconnect a connector from a project.
1484
+ * @link /v1/connect/connectors/{connector}/projects/{projectId}
1485
+ */ async function deleteConnectorProjectConnection({ pathParams, queryParams, config } = {}) {
1486
+ const { client: request = client, ...requestConfig } = config ?? {};
1487
+ if (!pathParams.connector) {
1488
+ throw new Error(`Missing required path parameter: connector`);
1489
+ }
1490
+ if (!pathParams.projectId) {
1491
+ throw new Error(`Missing required path parameter: projectId`);
1492
+ }
1493
+ const data = await request({
1494
+ method: "DELETE",
1495
+ url: `/v1/connect/connectors/${pathParams.connector}/projects/${pathParams.projectId}`,
1496
+ queryParams,
1497
+ ...requestConfig,
1498
+ headers: {
1499
+ ...requestConfig.headers
1500
+ }
1501
+ });
1502
+ return data;
1503
+ }
1504
+ /**
1505
+ * @summary List connectors for a project
1506
+ * @description List the connectors connected to a project and the environments where each connection is available.
1507
+ * @link /v2/connect/projects/{projectId}/connectors
1508
+ */ async function listProjectConnectorConnections({ pathParams, queryParams, config } = {}) {
1509
+ const { client: request = client, ...requestConfig } = config ?? {};
1510
+ if (!pathParams.projectId) {
1511
+ throw new Error(`Missing required path parameter: projectId`);
1512
+ }
1513
+ const data = await request({
1514
+ method: "GET",
1515
+ url: `/v2/connect/projects/${pathParams.projectId}/connectors`,
1516
+ queryParams,
1517
+ ...requestConfig,
1518
+ headers: {
1519
+ ...requestConfig.headers
1520
+ }
1521
+ });
1522
+ return data;
1523
+ }
1164
1524
  /**
1165
1525
  * @summary Get a Connect token
1166
1526
  * @description Get an access token for a connector identified by the path parameter and scoped to the requester.
@@ -5531,7 +5891,7 @@ const resolveUrl = (url, queryParams = {})=>{
5531
5891
  * @summary List sandboxes
5532
5892
  * @description Retrieves a paginated list of named sandboxes belonging to a specific project. Results can be sorted by creation time or name, and optionally filtered by name prefix or status.
5533
5893
  * @link /v2/sandboxes
5534
- */ async function listSandboxes({ queryParams, config } = {}) {
5894
+ */ async function listNamedSandboxes({ queryParams, config } = {}) {
5535
5895
  const { client: request = client, ...requestConfig } = config ?? {};
5536
5896
  const data = await request({
5537
5897
  method: "GET",
@@ -7920,6 +8280,9 @@ const operationsByPath = {
7920
8280
  "PATCH /v1/ai-gateway/virtual-model-configs": updateAiGatewayVirtualModelConfig,
7921
8281
  "DELETE /v1/ai-gateway/virtual-model-configs": deleteAiGatewayVirtualModelConfig,
7922
8282
  "GET /v1/ai-gateway/virtual-model-configs/list": listAiGatewayVirtualModelConfigs,
8283
+ "GET /v1/ai-gateway/virtual-model-configs/{vmcSlug}": getAiGatewayVirtualModelConfigBySlug,
8284
+ "PATCH /v1/ai-gateway/virtual-model-configs/{vmcSlug}": updateAiGatewayVirtualModelConfigBySlug,
8285
+ "DELETE /v1/ai-gateway/virtual-model-configs/{vmcSlug}": deleteAiGatewayVirtualModelConfigBySlug,
7923
8286
  "POST /v1/ai-gateway/rules": createAiGatewayRule,
7924
8287
  "GET /v1/ai-gateway/rules": listAiGatewayRules,
7925
8288
  "PATCH /v1/ai-gateway/rules": updateAiGatewayRule,
@@ -7960,7 +8323,22 @@ const operationsByPath = {
7960
8323
  "DELETE /v1/connect/networks/{networkId}": deleteNetwork,
7961
8324
  "PATCH /v1/connect/networks/{networkId}": updateNetwork,
7962
8325
  "GET /v1/connect/networks/{networkId}": readNetwork,
8326
+ "POST /v1/networking/privatelink/endpoints": createPrivateLinkEndpoint,
8327
+ "GET /v1/networking/privatelink/endpoints": listPrivateLinkEndpoints,
8328
+ "GET /v1/networking/privatelink/endpoints/{endpointId}": readPrivateLinkEndpoint,
8329
+ "DELETE /v1/networking/privatelink/endpoints/{endpointId}": deletePrivateLinkEndpoint,
8330
+ "PATCH /v1/networking/privatelink/endpoints/{endpointId}": updatePrivateLinkEndpoint,
8331
+ "GET /v2/connect/connectors": listConnectors,
8332
+ "GET /v1/connect/connectors/{connector}": getConnector,
8333
+ "DELETE /v1/connect/connectors/{connector}": deleteConnector,
7963
8334
  "POST /v1/connect/connectors": createConnector,
8335
+ "PATCH /v2/connect/connectors/{connector}": updateConnector,
8336
+ "PATCH /v1/connect/connectors/{connector}/trigger-destinations": replaceConnectorTriggerDestinations,
8337
+ "GET /v2/connect/connectors/{connector}/projects": listConnectorProjectConnections,
8338
+ "GET /v1/connect/connectors/{connector}/projects/{projectId}": getConnectorProjectConnection,
8339
+ "POST /v1/connect/connectors/{connector}/projects/{projectId}": upsertConnectorProjectConnection,
8340
+ "DELETE /v1/connect/connectors/{connector}/projects/{projectId}": deleteConnectorProjectConnection,
8341
+ "GET /v2/connect/projects/{projectId}/connectors": listProjectConnectorConnections,
7964
8342
  "POST /v1/connect/token/{connector}": getConnectorToken,
7965
8343
  "POST /v1/connect/authorize/{connector}": createConnectorAuthorizationRequest,
7966
8344
  "GET /v3/deployments/{idOrUrl}/events": getDeploymentEvents,
@@ -8179,7 +8557,7 @@ const operationsByPath = {
8179
8557
  "GET /v1/projects/{projectId}/promote/aliases": listPromoteAliases,
8180
8558
  "POST /v1/projects/{projectId}/pause": pauseProject,
8181
8559
  "POST /v1/projects/{projectId}/unpause": unpauseProject,
8182
- "GET /v2/sandboxes": listSandboxes,
8560
+ "GET /v2/sandboxes": listNamedSandboxes,
8183
8561
  "POST /v2/sandboxes": createSandboxesV2,
8184
8562
  "GET /v2/sandboxes/drives": listDrives,
8185
8563
  "POST /v2/sandboxes/drives/{name}": getOrCreateDrive,
@@ -8319,7 +8697,10 @@ const operationsByTag = {
8319
8697
  getAiGatewayVirtualModelConfig,
8320
8698
  updateAiGatewayVirtualModelConfig,
8321
8699
  deleteAiGatewayVirtualModelConfig,
8322
- listAiGatewayVirtualModelConfigs
8700
+ listAiGatewayVirtualModelConfigs,
8701
+ getAiGatewayVirtualModelConfigBySlug,
8702
+ updateAiGatewayVirtualModelConfigBySlug,
8703
+ deleteAiGatewayVirtualModelConfigBySlug
8323
8704
  },
8324
8705
  aiGateway: {
8325
8706
  createAiGatewayRule,
@@ -8374,10 +8755,25 @@ const operationsByTag = {
8374
8755
  deleteNetwork,
8375
8756
  updateNetwork,
8376
8757
  readNetwork,
8758
+ createPrivateLinkEndpoint,
8759
+ listPrivateLinkEndpoints,
8760
+ readPrivateLinkEndpoint,
8761
+ deletePrivateLinkEndpoint,
8762
+ updatePrivateLinkEndpoint,
8377
8763
  updateStaticIps
8378
8764
  },
8379
8765
  connect: {
8766
+ listConnectors,
8767
+ getConnector,
8768
+ deleteConnector,
8380
8769
  createConnector,
8770
+ updateConnector,
8771
+ replaceConnectorTriggerDestinations,
8772
+ listConnectorProjectConnections,
8773
+ getConnectorProjectConnection,
8774
+ upsertConnectorProjectConnection,
8775
+ deleteConnectorProjectConnection,
8776
+ listProjectConnectorConnections,
8381
8777
  getConnectorToken,
8382
8778
  createConnectorAuthorizationRequest
8383
8779
  },
@@ -8652,7 +9048,7 @@ const operationsByTag = {
8652
9048
  completeRollingRelease
8653
9049
  },
8654
9050
  sandboxes: {
8655
- listSandboxes,
9051
+ listNamedSandboxes,
8656
9052
  createSandboxesV2,
8657
9053
  listDrives,
8658
9054
  getOrCreateDrive,
@@ -8804,13 +9200,16 @@ const tagDictionary = {
8804
9200
  ],
8805
9201
  GET: [
8806
9202
  "getAiGatewayVirtualModelConfig",
8807
- "listAiGatewayVirtualModelConfigs"
9203
+ "listAiGatewayVirtualModelConfigs",
9204
+ "getAiGatewayVirtualModelConfigBySlug"
8808
9205
  ],
8809
9206
  PATCH: [
8810
- "updateAiGatewayVirtualModelConfig"
9207
+ "updateAiGatewayVirtualModelConfig",
9208
+ "updateAiGatewayVirtualModelConfigBySlug"
8811
9209
  ],
8812
9210
  DELETE: [
8813
- "deleteAiGatewayVirtualModelConfig"
9211
+ "deleteAiGatewayVirtualModelConfig",
9212
+ "deleteAiGatewayVirtualModelConfigBySlug"
8814
9213
  ]
8815
9214
  },
8816
9215
  aiGateway: {
@@ -8907,24 +9306,45 @@ const tagDictionary = {
8907
9306
  networking: {
8908
9307
  GET: [
8909
9308
  "listNetworks",
8910
- "readNetwork"
9309
+ "readNetwork",
9310
+ "listPrivateLinkEndpoints",
9311
+ "readPrivateLinkEndpoint"
8911
9312
  ],
8912
9313
  POST: [
8913
- "createNetwork"
9314
+ "createNetwork",
9315
+ "createPrivateLinkEndpoint"
8914
9316
  ],
8915
9317
  DELETE: [
8916
- "deleteNetwork"
9318
+ "deleteNetwork",
9319
+ "deletePrivateLinkEndpoint"
8917
9320
  ],
8918
9321
  PATCH: [
8919
9322
  "updateNetwork",
9323
+ "updatePrivateLinkEndpoint",
8920
9324
  "updateStaticIps"
8921
9325
  ]
8922
9326
  },
8923
9327
  connect: {
9328
+ GET: [
9329
+ "listConnectors",
9330
+ "getConnector",
9331
+ "listConnectorProjectConnections",
9332
+ "getConnectorProjectConnection",
9333
+ "listProjectConnectorConnections"
9334
+ ],
9335
+ DELETE: [
9336
+ "deleteConnector",
9337
+ "deleteConnectorProjectConnection"
9338
+ ],
8924
9339
  POST: [
8925
9340
  "createConnector",
9341
+ "upsertConnectorProjectConnection",
8926
9342
  "getConnectorToken",
8927
9343
  "createConnectorAuthorizationRequest"
9344
+ ],
9345
+ PATCH: [
9346
+ "updateConnector",
9347
+ "replaceConnectorTriggerDestinations"
8928
9348
  ]
8929
9349
  },
8930
9350
  deployments: {
@@ -9353,7 +9773,7 @@ const tagDictionary = {
9353
9773
  },
9354
9774
  sandboxes: {
9355
9775
  GET: [
9356
- "listSandboxes",
9776
+ "listNamedSandboxes",
9357
9777
  "listDrives",
9358
9778
  "listSessionSnapshots",
9359
9779
  "getSessionSnapshot",
@@ -9543,4 +9963,4 @@ const tagDictionary = {
9543
9963
  }
9544
9964
  };
9545
9965
 
9546
- export { createMicrofrontendsGroupWithApplications as $, countPageviews as A, createAccessGroup as B, createAccessGroupProject as C, createAiGatewayRule as D, createAiGatewayVirtualModelConfig as E, createApiKeys as F, createAuthToken as G, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads as H, createCheck as I, createConfigurableLogDrain as J, createConnector as K, createConnectorAuthorizationRequest as L, createCustomEnvironment as M, createDeployment as N, createDeploymentCheckRun as O, createDrain as P, createEdgeConfig as Q, createEdgeConfigToken as R, createEvent as S, createFlag as T, createFlagSegment as U, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems as V, createIntegrationStoreDirect as W, createKmsIssuer as X, createKmsIssuerPolicy as Y, createKmsSigningKey as Z, createLogDrain as _, operationsByPath as a, deleteSandbox as a$, createNetwork as a0, createObservabilityQuery as a1, createOrTransferDomain as a2, createProject as a3, createProjectCheck as a4, createProjectEnv as a5, createProjectTransferRequest as a6, createRecord as a7, createRepository as a8, createSandboxesByNameForkV2 as a9, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as aA, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as aB, deleteConfigurableLogDrain as aC, deleteConfiguration as aD, deleteDeployment as aE, deleteDomain as aF, deleteDrain as aG, deleteDrive as aH, deleteEdgeConfig as aI, deleteEdgeConfigSchema as aJ, deleteEdgeConfigTokens as aK, deleteFlag as aL, deleteFlagSegment as aM, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId as aN, deleteIntegrationLogDrain as aO, deleteIntegrationResource as aP, deleteKmsIssuer as aQ, deleteKmsIssuerPolicy as aR, deleteMicrofrontendsGroup as aS, deleteNetwork as aT, deleteProject as aU, deleteProjectCheck as aV, deleteRedirects as aW, deleteRepository as aX, deleteRepositoryImage as aY, deleteRollingReleaseConfig as aZ, deleteRoutes as a_, createSandboxesByNameForkV3 as aa, createSandboxesSessionsBySessionIdSnapshotV2 as ab, createSandboxesSessionsBySessionIdSnapshotV3 as ac, createSandboxesV2 as ad, createSandboxesV3 as ae, createSandboxesV4 as af, createSdkKey as ag, createSecurityFirewallConfigByConfigVersionActivate as ah, createSessionDirectory as ai, createSharedEnvVariable as aj, createSpeedInsightsToggle as ak, createStorageStoresBlob as al, createTeam as am, createTraceSession as an, createWebInsightsToggle as ao, createWebhook as ap, dangerouslyDeleteBySrcImages as aq, dangerouslyDeleteByTags as ar, deleteAccessGroup as as, deleteAccessGroupProject as at, deleteAiGatewayRule as au, deleteAiGatewayVirtualModelConfig as av, deleteAlias as aw, deleteAllArtifacts as ax, deleteAuthToken as ay, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest as az, acceptProjectTransferRequest as b, getEdgeConfigBackup as b$, deleteSdkKey as b0, deleteSecurityFirewallConfigByConfigVersion as b1, deleteSessionSnapshot as b2, deleteSharedEnvVariable as b3, deleteStorageStoresBlobById as b4, deleteTeam as b5, deleteTeamInviteCode as b6, deleteWebhook as b7, downloadArtifact as b8, editProjectEnv as b9, getConfigurableLogDrain as bA, getConfiguration as bB, getConfigurationProducts as bC, getConfigurations as bD, getConnectorToken as bE, getContactInfoSchema as bF, getCustomEnvironment as bG, getDeployment as bH, getDeploymentCheckRun as bI, getDeploymentEvents as bJ, getDeploymentFeatureFlags as bK, getDeploymentFileContents as bL, getDeployments as bM, getDomain as bN, getDomainAuthCode as bO, getDomainAvailability as bP, getDomainConfig as bQ, getDomainContactVerification as bR, getDomainPrice as bS, getDomainProjectDomains as bT, getDomainTransferIn as bU, getDomainVerificationRecord as bV, getDomains as bW, getDomainsRecordsByRecordId as bX, getDrain as bY, getDrains as bZ, getEdgeConfig as b_, editRedirect as ba, editRoute as bb, exchangeSsoToken as bc, extendSessionTimeout as bd, filterProjectEnvs as be, finalizeInstallation as bf, generateFirewallRule as bg, generateRoute as bh, getAccountInfo as bi, getActiveAttackStatus as bj, getAiGatewayVirtualModelConfig as bk, getAlias as bl, getAllChecks as bm, getAllLogDrains as bn, getAuthToken as bo, getAuthUser as bp, getBillingPlans as bq, getBulkAvailability as br, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest as bs, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as bt, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as bu, getByTeamSlugByProjectSlugByRepositoryNameTagsList as bv, getBypassIp as bw, getCertById as bx, getCerts as by, getCheck as bz, client as c, getTeams as c$, getEdgeConfigBackups as c0, getEdgeConfigItem as c1, getEdgeConfigItems as c2, getEdgeConfigSchema as c3, getEdgeConfigToken as c4, getEdgeConfigTokens as c5, getEdgeConfigs as c6, getFirewallConfig as c7, getFlag as c8, getFlagSegment as c9, getProjects as cA, getProjectsByIdOrNameCustomEnvironments as cB, getRecords as cC, getRedirects as cD, getRepository as cE, getRepositoryImage as cF, getRepositoryTag as cG, getRollingRelease as cH, getRollingReleaseBillingStatus as cI, getRollingReleaseConfig as cJ, getRoot as cK, getRouteVersions as cL, getRoutes as cM, getRuntimeLogs as cN, getSdkKeys as cO, getSecurityFirewallConfig as cP, getSecurityFirewallEvents as cQ, getSession as cR, getSessionCommand as cS, getSessionCommandLogs as cT, getSessionSnapshot as cU, getSharedEnvVar as cV, getStorageStoresById as cW, getSupportedTlds as cX, getTeam as cY, getTeamAccessRequest as cZ, getTeamMembers as c_, getFlagSettings as ca, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig as cb, getIntegrationLogDrains as cc, getIntegrationResource as cd, getIntegrationResources as ce, getInvoice as cf, getKmsIssuer as cg, getMember as ch, getMicrofrontendsConfig as ci, getMicrofrontendsConfigForProject as cj, getMicrofrontendsGroups as ck, getMicrofrontendsInGroup as cl, getNamedSandbox as cm, getObservabilityConfigurationProjects as cn, getObservabilitySchema as co, getObservabilitySchemaByMetricId as cp, getOrCreateDrive as cq, getOrder as cr, getProject as cs, getProjectCheck as ct, getProjectDomain as cu, getProjectDomains as cv, getProjectEnv as cw, getProjectMembers as cx, getProjectToken as cy, getProjectTrace as cz, activateKmsSigningKey as d, recordEvents as d$, getTld as d0, getTldPrice as d1, getVersions as d2, getWebhook as d3, getWebhooks as d4, gitNamespaces as d5, importResource as d6, invalidateBySrcImages as d7, invalidateByTags as d8, inviteUserToTeam as d9, listPromoteAliases as dA, listRepositories as dB, listRepositoryImages as dC, listRepositoryPermissions as dD, listRepositoryTags as dE, listSandboxes as dF, listSessionCommands as dG, listSessionSnapshots as dH, listSessions as dI, listSharedEnvVariable as dJ, listTeamFlagSettings as dK, listTeamFlags as dL, listTeamFlagsV2 as dM, listUserEvents as dN, moveProjectDomain as dO, patchDomain as dP, patchEdgeConfigItems as dQ, patchEdgeConfigSchema as dR, patchTeam as dS, patchUrlProtectionBypass as dT, pauseProject as dU, postTeamDsyncRoles as dV, putFirewallConfig as dW, readAccessGroup as dX, readAccessGroupProject as dY, readNetwork as dZ, readSessionFile as d_, issueCert as da, joinTeam as db, killSessionCommand as dc, listAccessGroupMembers as dd, listAccessGroupProjects as de, listAccessGroups as df, listAiGatewayRules as dg, listAiGatewayVirtualModelConfigs as dh, listAliases as di, listAuthTokens as dj, listBillingCharges as dk, listCheckRuns as dl, listContractCommitments as dm, listDeploymentAliases as dn, listDeploymentCheckRuns as dp, listDeploymentFiles as dq, listDrives as dr, listEventTypes as ds, listFlagSegments as dt, listFlagVersions as du, listFlags as dv, listFlagsV2 as dw, listKmsIssuers as dx, listNetworks as dy, listProjectChecks as dz, addBypassIp as e, updateMicrofrontends as e$, removeBypassIp as e0, removeCert as e1, removeCustomEnvironment as e2, removeProjectDomain as e3, removeProjectEnv as e4, removeProjectMember as e5, removeRecord as e6, removeRepositoryPermission as e7, removeTeamMember as e8, renewDomain as e9, testDrain as eA, transferInDomain as eB, unlinkSharedEnvVariable as eC, unpauseProject as eD, updateAccessGroup as eE, updateAccessGroupProject as eF, updateAiGatewayRule as eG, updateAiGatewayVirtualModelConfig as eH, updateAttackChallengeMode as eI, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as eJ, updateCheck as eK, updateCustomEnvironment as eL, updateDeploymentCheckRun as eM, updateDomainAutoRenew as eN, updateDomainNameservers as eO, updateDrain as eP, updateEdgeConfig as eQ, updateFirewallConfig as eR, updateFlag as eS, updateFlagSegment as eT, updateFlagSettings as eU, updateInstallation as eV, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId as eW, updateIntegrationDeploymentAction as eX, updateInvoice as eY, updateKmsIssuer as eZ, updateKmsIssuerPolicy as e_, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as ea, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as eb, replaceDomainsByDomainRecords as ec, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig as ed, requestAccessToTeam as ee, requestDelete as ef, requestPromote as eg, requestRollback as eh, rerequestCheck as ei, restoreEdgeConfigBackup as ej, restoreRedirects as ek, revokeInstallationCredential as el, revokeKmsSigningKey as em, rotateInstallationCredential as en, runSessionCommand as eo, searchRepo as ep, signKmsMessage as eq, signKmsToken as er, stageRedirects as es, stageRoutes as et, startRollingRelease as eu, status as ev, stopSession as ew, submitBillingData as ex, submitInvoice as ey, submitPrepaymentBalances as ez, addProjectDomain as f, updateMicrofrontendsGroup as f0, updateNetwork as f1, updateObservabilityConfigurationProject as f2, updateProject as f3, updateProjectCheck as f4, updateProjectDomain as f5, updateProjectProtectionBypass as f6, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescription as f7, updateRecord as f8, updateResource as f9, updateResourceSecrets as fa, updateResourceSecretsById as fb, updateRollingReleaseConfig as fc, updateRouteVersions as fd, updateSandbox as fe, updateSessionNetworkPolicy as ff, updateSharedEnvVariable as fg, updateStaticIps as fh, updateTeamMember as fi, updateVersion as fj, uploadArtifact as fk, uploadCert as fl, uploadFile as fm, uploadProjectAvatar as fn, verifyProjectDomain as fo, writeSessionFiles as fp, addProjectMember as g, addRepositoryPermission as h, addRoute as i, aggregateEvents as j, aggregatePageviews as k, approveRollingReleaseStage as l, artifactQuery as m, assignAlias as n, operationsByTag as o, batchRemoveProjectEnv as p, buyCredits as q, buyDomains as r, buySingleDomain as s, tagDictionary as t, cancelDeployment as u, claimDomainOwnership as v, clearRepositoryPermissions as w, completeRollingRelease as x, connectIntegrationResourceToProject as y, countEvents as z };
9966
+ export { createMicrofrontendsGroupWithApplications as $, countPageviews as A, createAccessGroup as B, createAccessGroupProject as C, createAiGatewayRule as D, createAiGatewayVirtualModelConfig as E, createApiKeys as F, createAuthToken as G, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads as H, createCheck as I, createConfigurableLogDrain as J, createConnector as K, createConnectorAuthorizationRequest as L, createCustomEnvironment as M, createDeployment as N, createDeploymentCheckRun as O, createDrain as P, createEdgeConfig as Q, createEdgeConfigToken as R, createEvent as S, createFlag as T, createFlagSegment as U, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems as V, createIntegrationStoreDirect as W, createKmsIssuer as X, createKmsIssuerPolicy as Y, createKmsSigningKey as Z, createLogDrain as _, operationsByPath as a, deleteRedirects as a$, createNetwork as a0, createObservabilityQuery as a1, createOrTransferDomain as a2, createPrivateLinkEndpoint as a3, createProject as a4, createProjectCheck as a5, createProjectEnv as a6, createProjectTransferRequest as a7, createRecord as a8, createRepository as a9, deleteAuthToken as aA, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest as aB, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as aC, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as aD, deleteConfigurableLogDrain as aE, deleteConfiguration as aF, deleteConnector as aG, deleteConnectorProjectConnection as aH, deleteDeployment as aI, deleteDomain as aJ, deleteDrain as aK, deleteDrive as aL, deleteEdgeConfig as aM, deleteEdgeConfigSchema as aN, deleteEdgeConfigTokens as aO, deleteFlag as aP, deleteFlagSegment as aQ, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId as aR, deleteIntegrationLogDrain as aS, deleteIntegrationResource as aT, deleteKmsIssuer as aU, deleteKmsIssuerPolicy as aV, deleteMicrofrontendsGroup as aW, deleteNetwork as aX, deletePrivateLinkEndpoint as aY, deleteProject as aZ, deleteProjectCheck as a_, createSandboxesByNameForkV2 as aa, createSandboxesByNameForkV3 as ab, createSandboxesSessionsBySessionIdSnapshotV2 as ac, createSandboxesSessionsBySessionIdSnapshotV3 as ad, createSandboxesV2 as ae, createSandboxesV3 as af, createSandboxesV4 as ag, createSdkKey as ah, createSecurityFirewallConfigByConfigVersionActivate as ai, createSessionDirectory as aj, createSharedEnvVariable as ak, createSpeedInsightsToggle as al, createStorageStoresBlob as am, createTeam as an, createTraceSession as ao, createWebInsightsToggle as ap, createWebhook as aq, dangerouslyDeleteBySrcImages as ar, dangerouslyDeleteByTags as as, deleteAccessGroup as at, deleteAccessGroupProject as au, deleteAiGatewayRule as av, deleteAiGatewayVirtualModelConfig as aw, deleteAiGatewayVirtualModelConfigBySlug as ax, deleteAlias as ay, deleteAllArtifacts as az, acceptProjectTransferRequest as b, getDomainProjectDomains as b$, deleteRepository as b0, deleteRepositoryImage as b1, deleteRollingReleaseConfig as b2, deleteRoutes as b3, deleteSandbox as b4, deleteSdkKey as b5, deleteSecurityFirewallConfigByConfigVersion as b6, deleteSessionSnapshot as b7, deleteSharedEnvVariable as b8, deleteStorageStoresBlobById as b9, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as bA, getByTeamSlugByProjectSlugByRepositoryNameTagsList as bB, getBypassIp as bC, getCertById as bD, getCerts as bE, getCheck as bF, getConfigurableLogDrain as bG, getConfiguration as bH, getConfigurationProducts as bI, getConfigurations as bJ, getConnector as bK, getConnectorProjectConnection as bL, getConnectorToken as bM, getContactInfoSchema as bN, getCustomEnvironment as bO, getDeployment as bP, getDeploymentCheckRun as bQ, getDeploymentEvents as bR, getDeploymentFeatureFlags as bS, getDeploymentFileContents as bT, getDeployments as bU, getDomain as bV, getDomainAuthCode as bW, getDomainAvailability as bX, getDomainConfig as bY, getDomainContactVerification as bZ, getDomainPrice as b_, deleteTeam as ba, deleteTeamInviteCode as bb, deleteWebhook as bc, downloadArtifact as bd, editProjectEnv as be, editRedirect as bf, editRoute as bg, exchangeSsoToken as bh, extendSessionTimeout as bi, filterProjectEnvs as bj, finalizeInstallation as bk, generateFirewallRule as bl, generateRoute as bm, getAccountInfo as bn, getActiveAttackStatus as bo, getAiGatewayVirtualModelConfig as bp, getAiGatewayVirtualModelConfigBySlug as bq, getAlias as br, getAllChecks as bs, getAllLogDrains as bt, getAuthToken as bu, getAuthUser as bv, getBillingPlans as bw, getBulkAvailability as bx, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest as by, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as bz, client as c, getSessionCommandLogs as c$, getDomainTransferIn as c0, getDomainVerificationRecord as c1, getDomains as c2, getDomainsRecordsByRecordId as c3, getDrain as c4, getDrains as c5, getEdgeConfig as c6, getEdgeConfigBackup as c7, getEdgeConfigBackups as c8, getEdgeConfigItem as c9, getProject as cA, getProjectCheck as cB, getProjectDomain as cC, getProjectDomains as cD, getProjectEnv as cE, getProjectMembers as cF, getProjectToken as cG, getProjectTrace as cH, getProjects as cI, getProjectsByIdOrNameCustomEnvironments as cJ, getRecords as cK, getRedirects as cL, getRepository as cM, getRepositoryImage as cN, getRepositoryTag as cO, getRollingRelease as cP, getRollingReleaseBillingStatus as cQ, getRollingReleaseConfig as cR, getRoot as cS, getRouteVersions as cT, getRoutes as cU, getRuntimeLogs as cV, getSdkKeys as cW, getSecurityFirewallConfig as cX, getSecurityFirewallEvents as cY, getSession as cZ, getSessionCommand as c_, getEdgeConfigItems as ca, getEdgeConfigSchema as cb, getEdgeConfigToken as cc, getEdgeConfigTokens as cd, getEdgeConfigs as ce, getFirewallConfig as cf, getFlag as cg, getFlagSegment as ch, getFlagSettings as ci, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig as cj, getIntegrationLogDrains as ck, getIntegrationResource as cl, getIntegrationResources as cm, getInvoice as cn, getKmsIssuer as co, getMember as cp, getMicrofrontendsConfig as cq, getMicrofrontendsConfigForProject as cr, getMicrofrontendsGroups as cs, getMicrofrontendsInGroup as ct, getNamedSandbox as cu, getObservabilityConfigurationProjects as cv, getObservabilitySchema as cw, getObservabilitySchemaByMetricId as cx, getOrCreateDrive as cy, getOrder as cz, activateKmsSigningKey as d, patchDomain as d$, getSessionSnapshot as d0, getSharedEnvVar as d1, getStorageStoresById as d2, getSupportedTlds as d3, getTeam as d4, getTeamAccessRequest as d5, getTeamMembers as d6, getTeams as d7, getTld as d8, getTldPrice as d9, listDeploymentFiles as dA, listDrives as dB, listEventTypes as dC, listFlagSegments as dD, listFlagVersions as dE, listFlags as dF, listFlagsV2 as dG, listKmsIssuers as dH, listNamedSandboxes as dI, listNetworks as dJ, listPrivateLinkEndpoints as dK, listProjectChecks as dL, listProjectConnectorConnections as dM, listPromoteAliases as dN, listRepositories as dO, listRepositoryImages as dP, listRepositoryPermissions as dQ, listRepositoryTags as dR, listSessionCommands as dS, listSessionSnapshots as dT, listSessions as dU, listSharedEnvVariable as dV, listTeamFlagSettings as dW, listTeamFlags as dX, listTeamFlagsV2 as dY, listUserEvents as dZ, moveProjectDomain as d_, getVersions as da, getWebhook as db, getWebhooks as dc, gitNamespaces as dd, importResource as de, invalidateBySrcImages as df, invalidateByTags as dg, inviteUserToTeam as dh, issueCert as di, joinTeam as dj, killSessionCommand as dk, listAccessGroupMembers as dl, listAccessGroupProjects as dm, listAccessGroups as dn, listAiGatewayRules as dp, listAiGatewayVirtualModelConfigs as dq, listAliases as dr, listAuthTokens as ds, listBillingCharges as dt, listCheckRuns as du, listConnectorProjectConnections as dv, listConnectors as dw, listContractCommitments as dx, listDeploymentAliases as dy, listDeploymentCheckRuns as dz, addBypassIp as e, updateCustomEnvironment as e$, patchEdgeConfigItems as e0, patchEdgeConfigSchema as e1, patchTeam as e2, patchUrlProtectionBypass as e3, pauseProject as e4, postTeamDsyncRoles as e5, putFirewallConfig as e6, readAccessGroup as e7, readAccessGroupProject as e8, readNetwork as e9, revokeKmsSigningKey as eA, rotateInstallationCredential as eB, runSessionCommand as eC, searchRepo as eD, signKmsMessage as eE, signKmsToken as eF, stageRedirects as eG, stageRoutes as eH, startRollingRelease as eI, status as eJ, stopSession as eK, submitBillingData as eL, submitInvoice as eM, submitPrepaymentBalances as eN, testDrain as eO, transferInDomain as eP, unlinkSharedEnvVariable as eQ, unpauseProject as eR, updateAccessGroup as eS, updateAccessGroupProject as eT, updateAiGatewayRule as eU, updateAiGatewayVirtualModelConfig as eV, updateAiGatewayVirtualModelConfigBySlug as eW, updateAttackChallengeMode as eX, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as eY, updateCheck as eZ, updateConnector as e_, readPrivateLinkEndpoint as ea, readSessionFile as eb, recordEvents as ec, removeBypassIp as ed, removeCert as ee, removeCustomEnvironment as ef, removeProjectDomain as eg, removeProjectEnv as eh, removeProjectMember as ei, removeRecord as ej, removeRepositoryPermission as ek, removeTeamMember as el, renewDomain as em, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as en, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as eo, replaceConnectorTriggerDestinations as ep, replaceDomainsByDomainRecords as eq, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig as er, requestAccessToTeam as es, requestDelete as et, requestPromote as eu, requestRollback as ev, rerequestCheck as ew, restoreEdgeConfigBackup as ex, restoreRedirects as ey, revokeInstallationCredential as ez, addProjectDomain as f, updateDeploymentCheckRun as f0, updateDomainAutoRenew as f1, updateDomainNameservers as f2, updateDrain as f3, updateEdgeConfig as f4, updateFirewallConfig as f5, updateFlag as f6, updateFlagSegment as f7, updateFlagSettings as f8, updateInstallation as f9, updateVersion as fA, uploadArtifact as fB, uploadCert as fC, uploadFile as fD, uploadProjectAvatar as fE, upsertConnectorProjectConnection as fF, verifyProjectDomain as fG, writeSessionFiles as fH, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId as fa, updateIntegrationDeploymentAction as fb, updateInvoice as fc, updateKmsIssuer as fd, updateKmsIssuerPolicy as fe, updateMicrofrontends as ff, updateMicrofrontendsGroup as fg, updateNetwork as fh, updateObservabilityConfigurationProject as fi, updatePrivateLinkEndpoint as fj, updateProject as fk, updateProjectCheck as fl, updateProjectDomain as fm, updateProjectProtectionBypass as fn, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescription as fo, updateRecord as fp, updateResource as fq, updateResourceSecrets as fr, updateResourceSecretsById as fs, updateRollingReleaseConfig as ft, updateRouteVersions as fu, updateSandbox as fv, updateSessionNetworkPolicy as fw, updateSharedEnvVariable as fx, updateStaticIps as fy, updateTeamMember as fz, addProjectMember as g, addRepositoryPermission as h, addRoute as i, aggregateEvents as j, aggregatePageviews as k, approveRollingReleaseStage as l, artifactQuery as m, assignAlias as n, operationsByTag as o, batchRemoveProjectEnv as p, buyCredits as q, buyDomains as r, buySingleDomain as s, tagDictionary as t, cancelDeployment as u, claimDomainOwnership as v, clearRepositoryPermissions as w, completeRollingRelease as x, connectIntegrationResourceToProject as y, countEvents as z };