vercel-api-js 1.14.2 → 1.15.1
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-l5748yis.cjs → components-gzixkjh5.cjs} +450 -12
- package/dist/{components-nvgbng8u.js → components-l47b33g0.js} +432 -12
- package/dist/components.cjs +20 -2
- package/dist/components.d.mts +398 -34
- 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 +39 -3
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +1 -1
- package/dist/index.cjs +333 -48
- package/dist/index.d.ts +4751 -657
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/{schemas-gb9msbpl.cjs → schemas-csiv5yep.cjs} +1936 -321
- package/dist/{schemas-m4ld9x7a.js → schemas-lm0wg73i.js} +1627 -281
- package/dist/schemas.cjs +311 -42
- package/dist/schemas.d.mts +1041 -209
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +226 -115
- package/dist/types.d.mts +3295 -415
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +206 -111
- package/package.json +5 -5
package/dist/components.d.mts
CHANGED
|
@@ -258,6 +258,8 @@ declare function getAiGatewayVirtualModelConfig({ queryParams, config, }?: {
|
|
|
258
258
|
queryParams?: {
|
|
259
259
|
ownerId?: string;
|
|
260
260
|
virtualModelSlug?: string;
|
|
261
|
+
limit?: number;
|
|
262
|
+
cursor?: string;
|
|
261
263
|
teamId?: string;
|
|
262
264
|
slug?: string;
|
|
263
265
|
};
|
|
@@ -288,6 +290,9 @@ declare function deleteAiGatewayVirtualModelConfig({ queryParams, config, }?: {
|
|
|
288
290
|
queryParams?: {
|
|
289
291
|
ownerId?: string;
|
|
290
292
|
virtualModelSlug?: string;
|
|
293
|
+
updatedBy?: string;
|
|
294
|
+
actingIp?: string;
|
|
295
|
+
actingUserAgent?: string;
|
|
291
296
|
teamId?: string;
|
|
292
297
|
slug?: string;
|
|
293
298
|
};
|
|
@@ -312,6 +317,62 @@ declare function listAiGatewayVirtualModelConfigs({ queryParams, config, }?: {
|
|
|
312
317
|
client?: typeof client;
|
|
313
318
|
};
|
|
314
319
|
}): Promise<unknown>;
|
|
320
|
+
/**
|
|
321
|
+
* @summary Get virtual model config
|
|
322
|
+
* @description Get a virtual model config by path slug
|
|
323
|
+
* @link /v1/ai-gateway/virtual-model-configs/{vmcSlug}
|
|
324
|
+
*/
|
|
325
|
+
declare function getAiGatewayVirtualModelConfigBySlug({ pathParams, queryParams, config, }?: {
|
|
326
|
+
pathParams: {
|
|
327
|
+
vmcSlug: string;
|
|
328
|
+
};
|
|
329
|
+
queryParams?: {
|
|
330
|
+
ownerId?: string;
|
|
331
|
+
teamId?: string;
|
|
332
|
+
slug?: string;
|
|
333
|
+
};
|
|
334
|
+
config?: Partial<FetcherConfig> & {
|
|
335
|
+
client?: typeof client;
|
|
336
|
+
};
|
|
337
|
+
}): Promise<unknown>;
|
|
338
|
+
/**
|
|
339
|
+
* @summary Update virtual model config
|
|
340
|
+
* @description Update a virtual model config by path slug
|
|
341
|
+
* @link /v1/ai-gateway/virtual-model-configs/{vmcSlug}
|
|
342
|
+
*/
|
|
343
|
+
declare function updateAiGatewayVirtualModelConfigBySlug({ pathParams, queryParams, config, }?: {
|
|
344
|
+
pathParams: {
|
|
345
|
+
vmcSlug: string;
|
|
346
|
+
};
|
|
347
|
+
queryParams?: {
|
|
348
|
+
teamId?: string;
|
|
349
|
+
slug?: string;
|
|
350
|
+
};
|
|
351
|
+
config?: Partial<FetcherConfig> & {
|
|
352
|
+
client?: typeof client;
|
|
353
|
+
};
|
|
354
|
+
}): Promise<unknown>;
|
|
355
|
+
/**
|
|
356
|
+
* @summary Delete virtual model config
|
|
357
|
+
* @description Delete a virtual model config by path slug (soft delete)
|
|
358
|
+
* @link /v1/ai-gateway/virtual-model-configs/{vmcSlug}
|
|
359
|
+
*/
|
|
360
|
+
declare function deleteAiGatewayVirtualModelConfigBySlug({ pathParams, queryParams, config, }?: {
|
|
361
|
+
pathParams: {
|
|
362
|
+
vmcSlug: string;
|
|
363
|
+
};
|
|
364
|
+
queryParams?: {
|
|
365
|
+
ownerId?: string;
|
|
366
|
+
updatedBy?: string;
|
|
367
|
+
actingIp?: string;
|
|
368
|
+
actingUserAgent?: string;
|
|
369
|
+
teamId?: string;
|
|
370
|
+
slug?: string;
|
|
371
|
+
};
|
|
372
|
+
config?: Partial<FetcherConfig> & {
|
|
373
|
+
client?: typeof client;
|
|
374
|
+
};
|
|
375
|
+
}): Promise<unknown>;
|
|
315
376
|
/**
|
|
316
377
|
* @summary Create rule
|
|
317
378
|
* @description Create a routing rule
|
|
@@ -381,8 +442,8 @@ declare function recordEvents({ queryParams, headers, config, }?: {
|
|
|
381
442
|
slug?: string;
|
|
382
443
|
};
|
|
383
444
|
headers?: {
|
|
384
|
-
"
|
|
385
|
-
"
|
|
445
|
+
"x-artifact-client-ci"?: string;
|
|
446
|
+
"x-artifact-client-interactive"?: number;
|
|
386
447
|
};
|
|
387
448
|
config?: Partial<FetcherConfig> & {
|
|
388
449
|
client?: typeof client;
|
|
@@ -416,13 +477,13 @@ declare function uploadArtifact({ pathParams, queryParams, headers, config, }?:
|
|
|
416
477
|
slug?: string;
|
|
417
478
|
};
|
|
418
479
|
headers?: {
|
|
419
|
-
"
|
|
420
|
-
"
|
|
421
|
-
"
|
|
422
|
-
"
|
|
423
|
-
"
|
|
424
|
-
"
|
|
425
|
-
"
|
|
480
|
+
"Content-Length"?: number;
|
|
481
|
+
"x-artifact-duration"?: number;
|
|
482
|
+
"x-artifact-client-ci"?: string;
|
|
483
|
+
"x-artifact-client-interactive"?: number;
|
|
484
|
+
"x-artifact-tag"?: string;
|
|
485
|
+
"x-artifact-sha"?: string;
|
|
486
|
+
"x-artifact-dirty-hash"?: string;
|
|
426
487
|
};
|
|
427
488
|
config?: Partial<FetcherConfig> & {
|
|
428
489
|
client?: typeof client;
|
|
@@ -442,8 +503,8 @@ declare function downloadArtifact({ pathParams, queryParams, headers, config, }?
|
|
|
442
503
|
slug?: string;
|
|
443
504
|
};
|
|
444
505
|
headers?: {
|
|
445
|
-
"
|
|
446
|
-
"
|
|
506
|
+
"x-artifact-client-ci"?: string;
|
|
507
|
+
"x-artifact-client-interactive"?: number;
|
|
447
508
|
};
|
|
448
509
|
config?: Partial<FetcherConfig> & {
|
|
449
510
|
client?: typeof client;
|
|
@@ -987,6 +1048,144 @@ declare function readNetwork({ pathParams, queryParams, config, }?: {
|
|
|
987
1048
|
client?: typeof client;
|
|
988
1049
|
};
|
|
989
1050
|
}): Promise<unknown>;
|
|
1051
|
+
/**
|
|
1052
|
+
* @summary Create a PrivateLink endpoint
|
|
1053
|
+
* @description Creates a PrivateLink endpoint for a project.
|
|
1054
|
+
* @link /v1/networking/privatelink/endpoints
|
|
1055
|
+
*/
|
|
1056
|
+
declare function createPrivateLinkEndpoint({ queryParams, config, }?: {
|
|
1057
|
+
queryParams?: {
|
|
1058
|
+
teamId?: string;
|
|
1059
|
+
slug?: string;
|
|
1060
|
+
};
|
|
1061
|
+
config?: Partial<FetcherConfig> & {
|
|
1062
|
+
client?: typeof client;
|
|
1063
|
+
};
|
|
1064
|
+
}): Promise<unknown>;
|
|
1065
|
+
/**
|
|
1066
|
+
* @summary List PrivateLink endpoints
|
|
1067
|
+
* @description Lists all PrivateLink endpoints for a project.
|
|
1068
|
+
* @link /v1/networking/privatelink/endpoints
|
|
1069
|
+
*/
|
|
1070
|
+
declare function listPrivateLinkEndpoints({ queryParams, config, }?: {
|
|
1071
|
+
queryParams?: {
|
|
1072
|
+
projectId?: string;
|
|
1073
|
+
teamId?: string;
|
|
1074
|
+
slug?: string;
|
|
1075
|
+
};
|
|
1076
|
+
config?: Partial<FetcherConfig> & {
|
|
1077
|
+
client?: typeof client;
|
|
1078
|
+
};
|
|
1079
|
+
}): Promise<unknown>;
|
|
1080
|
+
/**
|
|
1081
|
+
* @summary Read a PrivateLink endpoint
|
|
1082
|
+
* @description Reads a single PrivateLink endpoint.
|
|
1083
|
+
* @link /v1/networking/privatelink/endpoints/{endpointId}
|
|
1084
|
+
*/
|
|
1085
|
+
declare function readPrivateLinkEndpoint({ pathParams, queryParams, config, }?: {
|
|
1086
|
+
pathParams: {
|
|
1087
|
+
endpointId: string;
|
|
1088
|
+
};
|
|
1089
|
+
queryParams?: {
|
|
1090
|
+
projectId?: string;
|
|
1091
|
+
teamId?: string;
|
|
1092
|
+
slug?: string;
|
|
1093
|
+
};
|
|
1094
|
+
config?: Partial<FetcherConfig> & {
|
|
1095
|
+
client?: typeof client;
|
|
1096
|
+
};
|
|
1097
|
+
}): Promise<unknown>;
|
|
1098
|
+
/**
|
|
1099
|
+
* @summary Delete a PrivateLink endpoint
|
|
1100
|
+
* @description Deletes a PrivateLink endpoint.
|
|
1101
|
+
* @link /v1/networking/privatelink/endpoints/{endpointId}
|
|
1102
|
+
*/
|
|
1103
|
+
declare function deletePrivateLinkEndpoint({ pathParams, queryParams, config, }?: {
|
|
1104
|
+
pathParams: {
|
|
1105
|
+
endpointId: string;
|
|
1106
|
+
};
|
|
1107
|
+
queryParams?: {
|
|
1108
|
+
projectId?: string;
|
|
1109
|
+
teamId?: string;
|
|
1110
|
+
slug?: string;
|
|
1111
|
+
};
|
|
1112
|
+
config?: Partial<FetcherConfig> & {
|
|
1113
|
+
client?: typeof client;
|
|
1114
|
+
};
|
|
1115
|
+
}): Promise<unknown>;
|
|
1116
|
+
/**
|
|
1117
|
+
* @summary Update a PrivateLink endpoint
|
|
1118
|
+
* @description Updates a PrivateLink endpoint (name, privateDns).
|
|
1119
|
+
* @link /v1/networking/privatelink/endpoints/{endpointId}
|
|
1120
|
+
*/
|
|
1121
|
+
declare function updatePrivateLinkEndpoint({ pathParams, queryParams, config, }?: {
|
|
1122
|
+
pathParams: {
|
|
1123
|
+
endpointId: string;
|
|
1124
|
+
};
|
|
1125
|
+
queryParams?: {
|
|
1126
|
+
projectId?: string;
|
|
1127
|
+
teamId?: string;
|
|
1128
|
+
slug?: string;
|
|
1129
|
+
};
|
|
1130
|
+
config?: Partial<FetcherConfig> & {
|
|
1131
|
+
client?: typeof client;
|
|
1132
|
+
};
|
|
1133
|
+
}): Promise<unknown>;
|
|
1134
|
+
/**
|
|
1135
|
+
* @summary List connectors
|
|
1136
|
+
* @description List connectors that belong to a team.
|
|
1137
|
+
* @link /v2/connect/connectors
|
|
1138
|
+
*/
|
|
1139
|
+
declare function listConnectors({ queryParams, config, }?: {
|
|
1140
|
+
queryParams?: {
|
|
1141
|
+
limit?: number;
|
|
1142
|
+
cursor?: string;
|
|
1143
|
+
projectId?: string;
|
|
1144
|
+
search?: string;
|
|
1145
|
+
type?: string;
|
|
1146
|
+
service?: string;
|
|
1147
|
+
sort?: "name" | "createdAt" | "updatedAt";
|
|
1148
|
+
teamId?: string;
|
|
1149
|
+
slug?: string;
|
|
1150
|
+
};
|
|
1151
|
+
config?: Partial<FetcherConfig> & {
|
|
1152
|
+
client?: typeof client;
|
|
1153
|
+
};
|
|
1154
|
+
}): Promise<unknown>;
|
|
1155
|
+
/**
|
|
1156
|
+
* @summary Get a connector
|
|
1157
|
+
* @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.
|
|
1158
|
+
* @link /v1/connect/connectors/{connector}
|
|
1159
|
+
*/
|
|
1160
|
+
declare function getConnector({ pathParams, queryParams, config, }?: {
|
|
1161
|
+
pathParams: {
|
|
1162
|
+
connector: string;
|
|
1163
|
+
};
|
|
1164
|
+
queryParams?: {
|
|
1165
|
+
teamId?: string;
|
|
1166
|
+
slug?: string;
|
|
1167
|
+
};
|
|
1168
|
+
config?: Partial<FetcherConfig> & {
|
|
1169
|
+
client?: typeof client;
|
|
1170
|
+
};
|
|
1171
|
+
}): Promise<unknown>;
|
|
1172
|
+
/**
|
|
1173
|
+
* @summary Delete a connector
|
|
1174
|
+
* @description Delete a connector, its project connections, and its installation records.
|
|
1175
|
+
* @link /v1/connect/connectors/{connector}
|
|
1176
|
+
*/
|
|
1177
|
+
declare function deleteConnector({ pathParams, queryParams, config, }?: {
|
|
1178
|
+
pathParams: {
|
|
1179
|
+
connector: string;
|
|
1180
|
+
};
|
|
1181
|
+
queryParams?: {
|
|
1182
|
+
teamId?: string;
|
|
1183
|
+
slug?: string;
|
|
1184
|
+
};
|
|
1185
|
+
config?: Partial<FetcherConfig> & {
|
|
1186
|
+
client?: typeof client;
|
|
1187
|
+
};
|
|
1188
|
+
}): Promise<unknown>;
|
|
990
1189
|
/**
|
|
991
1190
|
* @summary Create a connector
|
|
992
1191
|
* @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.
|
|
@@ -1001,6 +1200,132 @@ declare function createConnector({ queryParams, config, }?: {
|
|
|
1001
1200
|
client?: typeof client;
|
|
1002
1201
|
};
|
|
1003
1202
|
}): Promise<unknown>;
|
|
1203
|
+
/**
|
|
1204
|
+
* @summary Update a connector
|
|
1205
|
+
* @description Update a connector and return the connector with any service-side update signals that the caller must handle.
|
|
1206
|
+
* @link /v2/connect/connectors/{connector}
|
|
1207
|
+
*/
|
|
1208
|
+
declare function updateConnector({ pathParams, queryParams, config, }?: {
|
|
1209
|
+
pathParams: {
|
|
1210
|
+
connector: string;
|
|
1211
|
+
};
|
|
1212
|
+
queryParams?: {
|
|
1213
|
+
teamId?: string;
|
|
1214
|
+
slug?: string;
|
|
1215
|
+
};
|
|
1216
|
+
config?: Partial<FetcherConfig> & {
|
|
1217
|
+
client?: typeof client;
|
|
1218
|
+
};
|
|
1219
|
+
}): Promise<unknown>;
|
|
1220
|
+
/**
|
|
1221
|
+
* @summary Update connector trigger destinations
|
|
1222
|
+
* @description Replace the full set of destinations that receive trigger requests for a connector.
|
|
1223
|
+
* @link /v1/connect/connectors/{connector}/trigger-destinations
|
|
1224
|
+
*/
|
|
1225
|
+
declare function replaceConnectorTriggerDestinations({ pathParams, queryParams, config, }?: {
|
|
1226
|
+
pathParams: {
|
|
1227
|
+
connector: string;
|
|
1228
|
+
};
|
|
1229
|
+
queryParams?: {
|
|
1230
|
+
teamId?: string;
|
|
1231
|
+
slug?: string;
|
|
1232
|
+
};
|
|
1233
|
+
config?: Partial<FetcherConfig> & {
|
|
1234
|
+
client?: typeof client;
|
|
1235
|
+
};
|
|
1236
|
+
}): Promise<unknown>;
|
|
1237
|
+
/**
|
|
1238
|
+
* @summary List projects for a connector
|
|
1239
|
+
* @description List the projects connected to a connector and the environments where each connection is available.
|
|
1240
|
+
* @link /v2/connect/connectors/{connector}/projects
|
|
1241
|
+
*/
|
|
1242
|
+
declare function listConnectorProjectConnections({ pathParams, queryParams, config, }?: {
|
|
1243
|
+
pathParams: {
|
|
1244
|
+
connector: string;
|
|
1245
|
+
};
|
|
1246
|
+
queryParams?: {
|
|
1247
|
+
limit?: number;
|
|
1248
|
+
cursor?: string;
|
|
1249
|
+
teamId?: string;
|
|
1250
|
+
slug?: string;
|
|
1251
|
+
};
|
|
1252
|
+
config?: Partial<FetcherConfig> & {
|
|
1253
|
+
client?: typeof client;
|
|
1254
|
+
};
|
|
1255
|
+
}): Promise<unknown>;
|
|
1256
|
+
/**
|
|
1257
|
+
* @summary Get a connector project connection
|
|
1258
|
+
* @description Get the configuration that connects a connector to a project.
|
|
1259
|
+
* @link /v1/connect/connectors/{connector}/projects/{projectId}
|
|
1260
|
+
*/
|
|
1261
|
+
declare function getConnectorProjectConnection({ pathParams, queryParams, config, }?: {
|
|
1262
|
+
pathParams: {
|
|
1263
|
+
connector: string;
|
|
1264
|
+
projectId: string;
|
|
1265
|
+
};
|
|
1266
|
+
queryParams?: {
|
|
1267
|
+
teamId?: string;
|
|
1268
|
+
slug?: string;
|
|
1269
|
+
};
|
|
1270
|
+
config?: Partial<FetcherConfig> & {
|
|
1271
|
+
client?: typeof client;
|
|
1272
|
+
};
|
|
1273
|
+
}): Promise<unknown>;
|
|
1274
|
+
/**
|
|
1275
|
+
* @summary Create or update a connector project connection
|
|
1276
|
+
* @description Connect a connector to a project, or replace the environments on an existing project connection.
|
|
1277
|
+
* @link /v1/connect/connectors/{connector}/projects/{projectId}
|
|
1278
|
+
*/
|
|
1279
|
+
declare function upsertConnectorProjectConnection({ pathParams, queryParams, config, }?: {
|
|
1280
|
+
pathParams: {
|
|
1281
|
+
connector: string;
|
|
1282
|
+
projectId: string;
|
|
1283
|
+
};
|
|
1284
|
+
queryParams?: {
|
|
1285
|
+
teamId?: string;
|
|
1286
|
+
slug?: string;
|
|
1287
|
+
};
|
|
1288
|
+
config?: Partial<FetcherConfig> & {
|
|
1289
|
+
client?: typeof client;
|
|
1290
|
+
};
|
|
1291
|
+
}): Promise<unknown>;
|
|
1292
|
+
/**
|
|
1293
|
+
* @summary Disconnect a connector from a project
|
|
1294
|
+
* @description Disconnect a connector from a project.
|
|
1295
|
+
* @link /v1/connect/connectors/{connector}/projects/{projectId}
|
|
1296
|
+
*/
|
|
1297
|
+
declare function deleteConnectorProjectConnection({ pathParams, queryParams, config, }?: {
|
|
1298
|
+
pathParams: {
|
|
1299
|
+
connector: string;
|
|
1300
|
+
projectId: string;
|
|
1301
|
+
};
|
|
1302
|
+
queryParams?: {
|
|
1303
|
+
teamId?: string;
|
|
1304
|
+
slug?: string;
|
|
1305
|
+
};
|
|
1306
|
+
config?: Partial<FetcherConfig> & {
|
|
1307
|
+
client?: typeof client;
|
|
1308
|
+
};
|
|
1309
|
+
}): Promise<unknown>;
|
|
1310
|
+
/**
|
|
1311
|
+
* @summary List connectors for a project
|
|
1312
|
+
* @description List the connectors connected to a project and the environments where each connection is available.
|
|
1313
|
+
* @link /v2/connect/projects/{projectId}/connectors
|
|
1314
|
+
*/
|
|
1315
|
+
declare function listProjectConnectorConnections({ pathParams, queryParams, config, }?: {
|
|
1316
|
+
pathParams: {
|
|
1317
|
+
projectId: string;
|
|
1318
|
+
};
|
|
1319
|
+
queryParams?: {
|
|
1320
|
+
limit?: number;
|
|
1321
|
+
cursor?: string;
|
|
1322
|
+
teamId?: string;
|
|
1323
|
+
slug?: string;
|
|
1324
|
+
};
|
|
1325
|
+
config?: Partial<FetcherConfig> & {
|
|
1326
|
+
client?: typeof client;
|
|
1327
|
+
};
|
|
1328
|
+
}): Promise<unknown>;
|
|
1004
1329
|
/**
|
|
1005
1330
|
* @summary Get a Connect token
|
|
1006
1331
|
* @description Get an access token for a connector identified by the path parameter and scoped to the requester.
|
|
@@ -2187,9 +2512,9 @@ declare function listSharedEnvVariable({ queryParams, config, }?: {
|
|
|
2187
2512
|
projectId?: string;
|
|
2188
2513
|
ids?: string;
|
|
2189
2514
|
exclude_ids?: string;
|
|
2190
|
-
"
|
|
2515
|
+
"exclude-ids"?: string;
|
|
2191
2516
|
exclude_projectId?: string;
|
|
2192
|
-
"
|
|
2517
|
+
"exclude-projectId"?: string;
|
|
2193
2518
|
teamId?: string;
|
|
2194
2519
|
slug?: string;
|
|
2195
2520
|
};
|
|
@@ -2752,7 +3077,7 @@ declare function getBillingPlans({ pathParams, queryParams, config, }?: {
|
|
|
2752
3077
|
queryParams?: {
|
|
2753
3078
|
integrationConfigurationId?: string;
|
|
2754
3079
|
metadata?: string;
|
|
2755
|
-
source?: "marketplace" | "deploy-button" | "external" | "v0" | "resource-claims" | "cli" | "oauth" | "backoffice" | "import-recommended-integrations";
|
|
3080
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0" | "resource-claims" | "cli" | "oauth" | "backoffice" | "import-recommended-integrations" | "organization";
|
|
2756
3081
|
teamId?: string;
|
|
2757
3082
|
slug?: string;
|
|
2758
3083
|
};
|
|
@@ -4633,7 +4958,7 @@ declare function unpauseProject({ pathParams, queryParams, config, }?: {
|
|
|
4633
4958
|
* @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.
|
|
4634
4959
|
* @link /v2/sandboxes
|
|
4635
4960
|
*/
|
|
4636
|
-
declare function
|
|
4961
|
+
declare function listNamedSandboxes({ queryParams, config, }?: {
|
|
4637
4962
|
queryParams?: {
|
|
4638
4963
|
project?: string;
|
|
4639
4964
|
limit?: number;
|
|
@@ -5054,7 +5379,7 @@ declare function writeSessionFiles({ pathParams, queryParams, headers, config, }
|
|
|
5054
5379
|
slug?: string;
|
|
5055
5380
|
};
|
|
5056
5381
|
headers?: {
|
|
5057
|
-
"
|
|
5382
|
+
"x-cwd"?: string;
|
|
5058
5383
|
};
|
|
5059
5384
|
config?: Partial<FetcherConfig> & {
|
|
5060
5385
|
client?: typeof client;
|
|
@@ -5375,8 +5700,8 @@ declare function getStorageStoresById({ pathParams, queryParams, config, }?: {
|
|
|
5375
5700
|
id: string;
|
|
5376
5701
|
};
|
|
5377
5702
|
queryParams?: {
|
|
5378
|
-
"
|
|
5379
|
-
"
|
|
5703
|
+
"skip-metadata"?: boolean;
|
|
5704
|
+
"include-guides"?: boolean;
|
|
5380
5705
|
};
|
|
5381
5706
|
config?: Partial<FetcherConfig> & {
|
|
5382
5707
|
client?: typeof client;
|
|
@@ -5676,10 +6001,10 @@ declare function uploadFile({ queryParams, headers, config, }?: {
|
|
|
5676
6001
|
slug?: string;
|
|
5677
6002
|
};
|
|
5678
6003
|
headers?: {
|
|
5679
|
-
"
|
|
5680
|
-
"
|
|
5681
|
-
"
|
|
5682
|
-
"
|
|
6004
|
+
"Content-Length"?: number;
|
|
6005
|
+
"x-vercel-digest"?: string;
|
|
6006
|
+
"x-now-digest"?: string;
|
|
6007
|
+
"x-now-size"?: number;
|
|
5683
6008
|
};
|
|
5684
6009
|
config?: Partial<FetcherConfig> & {
|
|
5685
6010
|
client?: typeof client;
|
|
@@ -6626,6 +6951,9 @@ declare const operationsByPath: {
|
|
|
6626
6951
|
"PATCH /v1/ai-gateway/virtual-model-configs": typeof updateAiGatewayVirtualModelConfig;
|
|
6627
6952
|
"DELETE /v1/ai-gateway/virtual-model-configs": typeof deleteAiGatewayVirtualModelConfig;
|
|
6628
6953
|
"GET /v1/ai-gateway/virtual-model-configs/list": typeof listAiGatewayVirtualModelConfigs;
|
|
6954
|
+
"GET /v1/ai-gateway/virtual-model-configs/{vmcSlug}": typeof getAiGatewayVirtualModelConfigBySlug;
|
|
6955
|
+
"PATCH /v1/ai-gateway/virtual-model-configs/{vmcSlug}": typeof updateAiGatewayVirtualModelConfigBySlug;
|
|
6956
|
+
"DELETE /v1/ai-gateway/virtual-model-configs/{vmcSlug}": typeof deleteAiGatewayVirtualModelConfigBySlug;
|
|
6629
6957
|
"POST /v1/ai-gateway/rules": typeof createAiGatewayRule;
|
|
6630
6958
|
"GET /v1/ai-gateway/rules": typeof listAiGatewayRules;
|
|
6631
6959
|
"PATCH /v1/ai-gateway/rules": typeof updateAiGatewayRule;
|
|
@@ -6666,7 +6994,22 @@ declare const operationsByPath: {
|
|
|
6666
6994
|
"DELETE /v1/connect/networks/{networkId}": typeof deleteNetwork;
|
|
6667
6995
|
"PATCH /v1/connect/networks/{networkId}": typeof updateNetwork;
|
|
6668
6996
|
"GET /v1/connect/networks/{networkId}": typeof readNetwork;
|
|
6997
|
+
"POST /v1/networking/privatelink/endpoints": typeof createPrivateLinkEndpoint;
|
|
6998
|
+
"GET /v1/networking/privatelink/endpoints": typeof listPrivateLinkEndpoints;
|
|
6999
|
+
"GET /v1/networking/privatelink/endpoints/{endpointId}": typeof readPrivateLinkEndpoint;
|
|
7000
|
+
"DELETE /v1/networking/privatelink/endpoints/{endpointId}": typeof deletePrivateLinkEndpoint;
|
|
7001
|
+
"PATCH /v1/networking/privatelink/endpoints/{endpointId}": typeof updatePrivateLinkEndpoint;
|
|
7002
|
+
"GET /v2/connect/connectors": typeof listConnectors;
|
|
7003
|
+
"GET /v1/connect/connectors/{connector}": typeof getConnector;
|
|
7004
|
+
"DELETE /v1/connect/connectors/{connector}": typeof deleteConnector;
|
|
6669
7005
|
"POST /v1/connect/connectors": typeof createConnector;
|
|
7006
|
+
"PATCH /v2/connect/connectors/{connector}": typeof updateConnector;
|
|
7007
|
+
"PATCH /v1/connect/connectors/{connector}/trigger-destinations": typeof replaceConnectorTriggerDestinations;
|
|
7008
|
+
"GET /v2/connect/connectors/{connector}/projects": typeof listConnectorProjectConnections;
|
|
7009
|
+
"GET /v1/connect/connectors/{connector}/projects/{projectId}": typeof getConnectorProjectConnection;
|
|
7010
|
+
"POST /v1/connect/connectors/{connector}/projects/{projectId}": typeof upsertConnectorProjectConnection;
|
|
7011
|
+
"DELETE /v1/connect/connectors/{connector}/projects/{projectId}": typeof deleteConnectorProjectConnection;
|
|
7012
|
+
"GET /v2/connect/projects/{projectId}/connectors": typeof listProjectConnectorConnections;
|
|
6670
7013
|
"POST /v1/connect/token/{connector}": typeof getConnectorToken;
|
|
6671
7014
|
"POST /v1/connect/authorize/{connector}": typeof createConnectorAuthorizationRequest;
|
|
6672
7015
|
"GET /v3/deployments/{idOrUrl}/events": typeof getDeploymentEvents;
|
|
@@ -6885,7 +7228,7 @@ declare const operationsByPath: {
|
|
|
6885
7228
|
"GET /v1/projects/{projectId}/promote/aliases": typeof listPromoteAliases;
|
|
6886
7229
|
"POST /v1/projects/{projectId}/pause": typeof pauseProject;
|
|
6887
7230
|
"POST /v1/projects/{projectId}/unpause": typeof unpauseProject;
|
|
6888
|
-
"GET /v2/sandboxes": typeof
|
|
7231
|
+
"GET /v2/sandboxes": typeof listNamedSandboxes;
|
|
6889
7232
|
"POST /v2/sandboxes": typeof createSandboxesV2;
|
|
6890
7233
|
"GET /v2/sandboxes/drives": typeof listDrives;
|
|
6891
7234
|
"POST /v2/sandboxes/drives/{name}": typeof getOrCreateDrive;
|
|
@@ -7026,6 +7369,9 @@ declare const operationsByTag: {
|
|
|
7026
7369
|
updateAiGatewayVirtualModelConfig: typeof updateAiGatewayVirtualModelConfig;
|
|
7027
7370
|
deleteAiGatewayVirtualModelConfig: typeof deleteAiGatewayVirtualModelConfig;
|
|
7028
7371
|
listAiGatewayVirtualModelConfigs: typeof listAiGatewayVirtualModelConfigs;
|
|
7372
|
+
getAiGatewayVirtualModelConfigBySlug: typeof getAiGatewayVirtualModelConfigBySlug;
|
|
7373
|
+
updateAiGatewayVirtualModelConfigBySlug: typeof updateAiGatewayVirtualModelConfigBySlug;
|
|
7374
|
+
deleteAiGatewayVirtualModelConfigBySlug: typeof deleteAiGatewayVirtualModelConfigBySlug;
|
|
7029
7375
|
};
|
|
7030
7376
|
aiGateway: {
|
|
7031
7377
|
createAiGatewayRule: typeof createAiGatewayRule;
|
|
@@ -7080,10 +7426,25 @@ declare const operationsByTag: {
|
|
|
7080
7426
|
deleteNetwork: typeof deleteNetwork;
|
|
7081
7427
|
updateNetwork: typeof updateNetwork;
|
|
7082
7428
|
readNetwork: typeof readNetwork;
|
|
7429
|
+
createPrivateLinkEndpoint: typeof createPrivateLinkEndpoint;
|
|
7430
|
+
listPrivateLinkEndpoints: typeof listPrivateLinkEndpoints;
|
|
7431
|
+
readPrivateLinkEndpoint: typeof readPrivateLinkEndpoint;
|
|
7432
|
+
deletePrivateLinkEndpoint: typeof deletePrivateLinkEndpoint;
|
|
7433
|
+
updatePrivateLinkEndpoint: typeof updatePrivateLinkEndpoint;
|
|
7083
7434
|
updateStaticIps: typeof updateStaticIps;
|
|
7084
7435
|
};
|
|
7085
7436
|
connect: {
|
|
7437
|
+
listConnectors: typeof listConnectors;
|
|
7438
|
+
getConnector: typeof getConnector;
|
|
7439
|
+
deleteConnector: typeof deleteConnector;
|
|
7086
7440
|
createConnector: typeof createConnector;
|
|
7441
|
+
updateConnector: typeof updateConnector;
|
|
7442
|
+
replaceConnectorTriggerDestinations: typeof replaceConnectorTriggerDestinations;
|
|
7443
|
+
listConnectorProjectConnections: typeof listConnectorProjectConnections;
|
|
7444
|
+
getConnectorProjectConnection: typeof getConnectorProjectConnection;
|
|
7445
|
+
upsertConnectorProjectConnection: typeof upsertConnectorProjectConnection;
|
|
7446
|
+
deleteConnectorProjectConnection: typeof deleteConnectorProjectConnection;
|
|
7447
|
+
listProjectConnectorConnections: typeof listProjectConnectorConnections;
|
|
7087
7448
|
getConnectorToken: typeof getConnectorToken;
|
|
7088
7449
|
createConnectorAuthorizationRequest: typeof createConnectorAuthorizationRequest;
|
|
7089
7450
|
};
|
|
@@ -7358,7 +7719,7 @@ declare const operationsByTag: {
|
|
|
7358
7719
|
completeRollingRelease: typeof completeRollingRelease;
|
|
7359
7720
|
};
|
|
7360
7721
|
sandboxes: {
|
|
7361
|
-
|
|
7722
|
+
listNamedSandboxes: typeof listNamedSandboxes;
|
|
7362
7723
|
createSandboxesV2: typeof createSandboxesV2;
|
|
7363
7724
|
listDrives: typeof listDrives;
|
|
7364
7725
|
getOrCreateDrive: typeof getOrCreateDrive;
|
|
@@ -7491,9 +7852,9 @@ declare const tagDictionary: {
|
|
|
7491
7852
|
};
|
|
7492
7853
|
readonly apiAiGateway: {
|
|
7493
7854
|
readonly POST: readonly ["createAiGatewayVirtualModelConfig"];
|
|
7494
|
-
readonly GET: readonly ["getAiGatewayVirtualModelConfig", "listAiGatewayVirtualModelConfigs"];
|
|
7495
|
-
readonly PATCH: readonly ["updateAiGatewayVirtualModelConfig"];
|
|
7496
|
-
readonly DELETE: readonly ["deleteAiGatewayVirtualModelConfig"];
|
|
7855
|
+
readonly GET: readonly ["getAiGatewayVirtualModelConfig", "listAiGatewayVirtualModelConfigs", "getAiGatewayVirtualModelConfigBySlug"];
|
|
7856
|
+
readonly PATCH: readonly ["updateAiGatewayVirtualModelConfig", "updateAiGatewayVirtualModelConfigBySlug"];
|
|
7857
|
+
readonly DELETE: readonly ["deleteAiGatewayVirtualModelConfig", "deleteAiGatewayVirtualModelConfigBySlug"];
|
|
7497
7858
|
};
|
|
7498
7859
|
readonly aiGateway: {
|
|
7499
7860
|
readonly POST: readonly ["createAiGatewayRule"];
|
|
@@ -7530,13 +7891,16 @@ declare const tagDictionary: {
|
|
|
7530
7891
|
readonly PATCH: readonly ["updateCheck"];
|
|
7531
7892
|
};
|
|
7532
7893
|
readonly networking: {
|
|
7533
|
-
readonly GET: readonly ["listNetworks", "readNetwork"];
|
|
7534
|
-
readonly POST: readonly ["createNetwork"];
|
|
7535
|
-
readonly DELETE: readonly ["deleteNetwork"];
|
|
7536
|
-
readonly PATCH: readonly ["updateNetwork", "updateStaticIps"];
|
|
7894
|
+
readonly GET: readonly ["listNetworks", "readNetwork", "listPrivateLinkEndpoints", "readPrivateLinkEndpoint"];
|
|
7895
|
+
readonly POST: readonly ["createNetwork", "createPrivateLinkEndpoint"];
|
|
7896
|
+
readonly DELETE: readonly ["deleteNetwork", "deletePrivateLinkEndpoint"];
|
|
7897
|
+
readonly PATCH: readonly ["updateNetwork", "updatePrivateLinkEndpoint", "updateStaticIps"];
|
|
7537
7898
|
};
|
|
7538
7899
|
readonly connect: {
|
|
7539
|
-
readonly
|
|
7900
|
+
readonly GET: readonly ["listConnectors", "getConnector", "listConnectorProjectConnections", "getConnectorProjectConnection", "listProjectConnectorConnections"];
|
|
7901
|
+
readonly DELETE: readonly ["deleteConnector", "deleteConnectorProjectConnection"];
|
|
7902
|
+
readonly POST: readonly ["createConnector", "upsertConnectorProjectConnection", "getConnectorToken", "createConnectorAuthorizationRequest"];
|
|
7903
|
+
readonly PATCH: readonly ["updateConnector", "replaceConnectorTriggerDestinations"];
|
|
7540
7904
|
};
|
|
7541
7905
|
readonly deployments: {
|
|
7542
7906
|
readonly GET: readonly ["getDeploymentEvents", "getDeployment", "listDeploymentFiles", "getDeploymentFileContents", "getDeployments"];
|
|
@@ -7662,7 +8026,7 @@ declare const tagDictionary: {
|
|
|
7662
8026
|
readonly POST: readonly ["approveRollingReleaseStage", "startRollingRelease", "completeRollingRelease"];
|
|
7663
8027
|
};
|
|
7664
8028
|
readonly sandboxes: {
|
|
7665
|
-
readonly GET: readonly ["
|
|
8029
|
+
readonly GET: readonly ["listNamedSandboxes", "listDrives", "listSessionSnapshots", "getSessionSnapshot", "listSessions", "getSession", "getNamedSandbox", "listSessionCommands", "getSessionCommand", "getSessionCommandLogs"];
|
|
7666
8030
|
readonly POST: readonly ["createSandboxesV2", "getOrCreateDrive", "runSessionCommand", "killSessionCommand", "stopSession", "extendSessionTimeout", "updateSessionNetworkPolicy", "readSessionFile", "createSessionDirectory", "writeSessionFiles", "createSandboxesSessionsBySessionIdSnapshotV2", "createSandboxesByNameForkV2", "createSandboxesV3", "createSandboxesSessionsBySessionIdSnapshotV3", "createSandboxesByNameForkV3", "createSandboxesV4"];
|
|
7667
8031
|
readonly DELETE: readonly ["deleteDrive", "deleteSessionSnapshot", "deleteSandbox"];
|
|
7668
8032
|
readonly PATCH: readonly ["updateSandbox"];
|
|
@@ -7714,5 +8078,5 @@ declare const tagDictionary: {
|
|
|
7714
8078
|
};
|
|
7715
8079
|
};
|
|
7716
8080
|
|
|
7717
|
-
export { acceptProjectTransferRequest, activateKmsSigningKey, addBypassIp, addProjectDomain, addProjectMember, addRepositoryPermission, addRoute, aggregateEvents, aggregatePageviews, approveRollingReleaseStage, artifactQuery, assignAlias, batchRemoveProjectEnv, buyCredits, buyDomains, buySingleDomain, cancelDeployment, claimDomainOwnership, clearRepositoryPermissions, completeRollingRelease, connectIntegrationResourceToProject, countEvents, countPageviews, createAccessGroup, createAccessGroupProject, createAiGatewayRule, createAiGatewayVirtualModelConfig, createApiKeys, createAuthToken, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads, createCheck, createConfigurableLogDrain, createConnector, createConnectorAuthorizationRequest, createCustomEnvironment, createDeployment, createDeploymentCheckRun, createDrain, createEdgeConfig, createEdgeConfigToken, createEvent, createFlag, createFlagSegment, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems, createIntegrationStoreDirect, createKmsIssuer, createKmsIssuerPolicy, createKmsSigningKey, createLogDrain, createMicrofrontendsGroupWithApplications, createNetwork, createObservabilityQuery, createOrTransferDomain, createProject, createProjectCheck, createProjectEnv, createProjectTransferRequest, createRecord, createRepository, createSandboxesByNameForkV2, createSandboxesByNameForkV3, createSandboxesSessionsBySessionIdSnapshotV2, createSandboxesSessionsBySessionIdSnapshotV3, createSandboxesV2, createSandboxesV3, createSandboxesV4, createSdkKey, createSecurityFirewallConfigByConfigVersionActivate, createSessionDirectory, createSharedEnvVariable, createSpeedInsightsToggle, createStorageStoresBlob, createTeam, createTraceSession, createWebInsightsToggle, createWebhook, dangerouslyDeleteBySrcImages, dangerouslyDeleteByTags, deleteAccessGroup, deleteAccessGroupProject, deleteAiGatewayRule, deleteAiGatewayVirtualModelConfig, deleteAlias, deleteAllArtifacts, deleteAuthToken, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, deleteConfigurableLogDrain, deleteConfiguration, deleteDeployment, deleteDomain, deleteDrain, deleteDrive, deleteEdgeConfig, deleteEdgeConfigSchema, deleteEdgeConfigTokens, deleteFlag, deleteFlagSegment, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, deleteIntegrationLogDrain, deleteIntegrationResource, deleteKmsIssuer, deleteKmsIssuerPolicy, 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, getKmsIssuer, getMember, getMicrofrontendsConfig, getMicrofrontendsConfigForProject, getMicrofrontendsGroups, getMicrofrontendsInGroup, getNamedSandbox, getObservabilityConfigurationProjects, getObservabilitySchema, getObservabilitySchemaByMetricId, getOrCreateDrive, getOrder, getProject, getProjectCheck, getProjectDomain, getProjectDomains, getProjectEnv, getProjectMembers, getProjectToken, getProjectTrace, getProjects, getProjectsByIdOrNameCustomEnvironments, getRecords, getRedirects, getRepository, getRepositoryImage, getRepositoryTag, getRollingRelease, getRollingReleaseBillingStatus, getRollingReleaseConfig, getRoot, getRouteVersions, getRoutes, getRuntimeLogs, getSdkKeys, getSecurityFirewallConfig, getSecurityFirewallEvents, getSession, getSessionCommand, getSessionCommandLogs, getSessionSnapshot, getSharedEnvVar, getStorageStoresById, getSupportedTlds, getTeam, getTeamAccessRequest, getTeamMembers, getTeams, getTld, getTldPrice, getVersions, getWebhook, getWebhooks, gitNamespaces, importResource, invalidateBySrcImages, invalidateByTags, inviteUserToTeam, issueCert, joinTeam, killSessionCommand, listAccessGroupMembers, listAccessGroupProjects, listAccessGroups, listAiGatewayRules, listAiGatewayVirtualModelConfigs, listAliases, listAuthTokens, listBillingCharges, listCheckRuns, listContractCommitments, listDeploymentAliases, listDeploymentCheckRuns, listDeploymentFiles, listDrives, listEventTypes, listFlagSegments, listFlagVersions, listFlags, listFlagsV2, listKmsIssuers, listNetworks, listProjectChecks, listPromoteAliases, listRepositories, listRepositoryImages, listRepositoryPermissions, listRepositoryTags,
|
|
8081
|
+
export { acceptProjectTransferRequest, activateKmsSigningKey, addBypassIp, addProjectDomain, addProjectMember, addRepositoryPermission, addRoute, aggregateEvents, aggregatePageviews, approveRollingReleaseStage, artifactQuery, assignAlias, batchRemoveProjectEnv, buyCredits, buyDomains, buySingleDomain, cancelDeployment, claimDomainOwnership, clearRepositoryPermissions, completeRollingRelease, connectIntegrationResourceToProject, countEvents, countPageviews, createAccessGroup, createAccessGroupProject, createAiGatewayRule, createAiGatewayVirtualModelConfig, createApiKeys, createAuthToken, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads, createCheck, createConfigurableLogDrain, createConnector, createConnectorAuthorizationRequest, createCustomEnvironment, createDeployment, createDeploymentCheckRun, createDrain, createEdgeConfig, createEdgeConfigToken, createEvent, createFlag, createFlagSegment, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems, createIntegrationStoreDirect, createKmsIssuer, createKmsIssuerPolicy, createKmsSigningKey, createLogDrain, createMicrofrontendsGroupWithApplications, createNetwork, createObservabilityQuery, createOrTransferDomain, createPrivateLinkEndpoint, createProject, createProjectCheck, createProjectEnv, createProjectTransferRequest, createRecord, createRepository, createSandboxesByNameForkV2, createSandboxesByNameForkV3, createSandboxesSessionsBySessionIdSnapshotV2, createSandboxesSessionsBySessionIdSnapshotV3, createSandboxesV2, createSandboxesV3, createSandboxesV4, createSdkKey, createSecurityFirewallConfigByConfigVersionActivate, createSessionDirectory, createSharedEnvVariable, createSpeedInsightsToggle, createStorageStoresBlob, createTeam, createTraceSession, createWebInsightsToggle, createWebhook, dangerouslyDeleteBySrcImages, dangerouslyDeleteByTags, deleteAccessGroup, deleteAccessGroupProject, deleteAiGatewayRule, deleteAiGatewayVirtualModelConfig, deleteAiGatewayVirtualModelConfigBySlug, deleteAlias, deleteAllArtifacts, deleteAuthToken, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, deleteConfigurableLogDrain, deleteConfiguration, deleteConnector, deleteConnectorProjectConnection, deleteDeployment, deleteDomain, deleteDrain, deleteDrive, deleteEdgeConfig, deleteEdgeConfigSchema, deleteEdgeConfigTokens, deleteFlag, deleteFlagSegment, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, deleteIntegrationLogDrain, deleteIntegrationResource, deleteKmsIssuer, deleteKmsIssuerPolicy, deleteMicrofrontendsGroup, deleteNetwork, deletePrivateLinkEndpoint, deleteProject, deleteProjectCheck, deleteRedirects, deleteRepository, deleteRepositoryImage, deleteRollingReleaseConfig, deleteRoutes, deleteSandbox, deleteSdkKey, deleteSecurityFirewallConfigByConfigVersion, deleteSessionSnapshot, deleteSharedEnvVariable, deleteStorageStoresBlobById, deleteTeam, deleteTeamInviteCode, deleteWebhook, downloadArtifact, editProjectEnv, editRedirect, editRoute, exchangeSsoToken, extendSessionTimeout, filterProjectEnvs, finalizeInstallation, generateFirewallRule, generateRoute, getAccountInfo, getActiveAttackStatus, getAiGatewayVirtualModelConfig, getAiGatewayVirtualModelConfigBySlug, getAlias, getAllChecks, getAllLogDrains, getAuthToken, getAuthUser, getBillingPlans, getBulkAvailability, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, getByTeamSlugByProjectSlugByRepositoryNameTagsList, getBypassIp, getCertById, getCerts, getCheck, getConfigurableLogDrain, getConfiguration, getConfigurationProducts, getConfigurations, getConnector, getConnectorProjectConnection, getConnectorToken, getContactInfoSchema, getCustomEnvironment, getDeployment, getDeploymentCheckRun, getDeploymentEvents, getDeploymentFeatureFlags, getDeploymentFileContents, getDeployments, getDomain, getDomainAuthCode, getDomainAvailability, getDomainConfig, getDomainContactVerification, getDomainPrice, getDomainProjectDomains, getDomainTransferIn, getDomainVerificationRecord, getDomains, getDomainsRecordsByRecordId, getDrain, getDrains, getEdgeConfig, getEdgeConfigBackup, getEdgeConfigBackups, getEdgeConfigItem, getEdgeConfigItems, getEdgeConfigSchema, getEdgeConfigToken, getEdgeConfigTokens, getEdgeConfigs, getFirewallConfig, getFlag, getFlagSegment, getFlagSettings, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig, getIntegrationLogDrains, getIntegrationResource, getIntegrationResources, getInvoice, getKmsIssuer, getMember, getMicrofrontendsConfig, getMicrofrontendsConfigForProject, getMicrofrontendsGroups, getMicrofrontendsInGroup, getNamedSandbox, getObservabilityConfigurationProjects, getObservabilitySchema, getObservabilitySchemaByMetricId, getOrCreateDrive, getOrder, getProject, getProjectCheck, getProjectDomain, getProjectDomains, getProjectEnv, getProjectMembers, getProjectToken, getProjectTrace, getProjects, getProjectsByIdOrNameCustomEnvironments, getRecords, getRedirects, getRepository, getRepositoryImage, getRepositoryTag, getRollingRelease, getRollingReleaseBillingStatus, getRollingReleaseConfig, getRoot, getRouteVersions, getRoutes, getRuntimeLogs, getSdkKeys, getSecurityFirewallConfig, getSecurityFirewallEvents, getSession, getSessionCommand, getSessionCommandLogs, getSessionSnapshot, getSharedEnvVar, getStorageStoresById, getSupportedTlds, getTeam, getTeamAccessRequest, getTeamMembers, getTeams, getTld, getTldPrice, getVersions, getWebhook, getWebhooks, gitNamespaces, importResource, invalidateBySrcImages, invalidateByTags, inviteUserToTeam, issueCert, joinTeam, killSessionCommand, listAccessGroupMembers, listAccessGroupProjects, listAccessGroups, listAiGatewayRules, listAiGatewayVirtualModelConfigs, listAliases, listAuthTokens, listBillingCharges, listCheckRuns, listConnectorProjectConnections, listConnectors, listContractCommitments, listDeploymentAliases, listDeploymentCheckRuns, listDeploymentFiles, listDrives, listEventTypes, listFlagSegments, listFlagVersions, listFlags, listFlagsV2, listKmsIssuers, listNamedSandboxes, listNetworks, listPrivateLinkEndpoints, listProjectChecks, listProjectConnectorConnections, listPromoteAliases, listRepositories, listRepositoryImages, listRepositoryPermissions, listRepositoryTags, listSessionCommands, listSessionSnapshots, listSessions, listSharedEnvVariable, listTeamFlagSettings, listTeamFlags, listTeamFlagsV2, listUserEvents, moveProjectDomain, operationsByPath, operationsByTag, patchDomain, patchEdgeConfigItems, patchEdgeConfigSchema, patchTeam, patchUrlProtectionBypass, pauseProject, postTeamDsyncRoles, putFirewallConfig, readAccessGroup, readAccessGroupProject, readNetwork, readPrivateLinkEndpoint, readSessionFile, recordEvents, removeBypassIp, removeCert, removeCustomEnvironment, removeProjectDomain, removeProjectEnv, removeProjectMember, removeRecord, removeRepositoryPermission, removeTeamMember, renewDomain, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, replaceConnectorTriggerDestinations, replaceDomainsByDomainRecords, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig, requestAccessToTeam, requestDelete, requestPromote, requestRollback, rerequestCheck, restoreEdgeConfigBackup, restoreRedirects, revokeInstallationCredential, revokeKmsSigningKey, rotateInstallationCredential, runSessionCommand, searchRepo, signKmsMessage, signKmsToken, stageRedirects, stageRoutes, startRollingRelease, status, stopSession, submitBillingData, submitInvoice, submitPrepaymentBalances, tagDictionary, testDrain, transferInDomain, unlinkSharedEnvVariable, unpauseProject, updateAccessGroup, updateAccessGroupProject, updateAiGatewayRule, updateAiGatewayVirtualModelConfig, updateAiGatewayVirtualModelConfigBySlug, updateAttackChallengeMode, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, updateCheck, updateConnector, updateCustomEnvironment, updateDeploymentCheckRun, updateDomainAutoRenew, updateDomainNameservers, updateDrain, updateEdgeConfig, updateFirewallConfig, updateFlag, updateFlagSegment, updateFlagSettings, updateInstallation, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, updateIntegrationDeploymentAction, updateInvoice, updateKmsIssuer, updateKmsIssuerPolicy, updateMicrofrontends, updateMicrofrontendsGroup, updateNetwork, updateObservabilityConfigurationProject, updatePrivateLinkEndpoint, updateProject, updateProjectCheck, updateProjectDomain, updateProjectProtectionBypass, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescription, updateRecord, updateResource, updateResourceSecrets, updateResourceSecretsById, updateRollingReleaseConfig, updateRouteVersions, updateSandbox, updateSessionNetworkPolicy, updateSharedEnvVariable, updateStaticIps, updateTeamMember, updateVersion, uploadArtifact, uploadCert, uploadFile, uploadProjectAvatar, upsertConnectorProjectConnection, verifyProjectDomain, writeSessionFiles };
|
|
7718
8082
|
//# sourceMappingURL=components.d.mts.map
|