@vercel/sdk 1.6.5 → 1.6.6
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/README.md +2 -0
- package/bin/mcp-server.js +503 -273
- package/bin/mcp-server.js.map +16 -13
- package/docs/sdks/projects/README.md +85 -0
- package/esm/__tests__/accessgroups.test.js +94 -60
- package/esm/__tests__/accessgroups.test.js.map +1 -1
- package/esm/__tests__/aliases.test.js +41 -41
- package/esm/__tests__/aliases.test.js.map +1 -1
- package/esm/__tests__/certs.test.js +2 -2
- package/esm/__tests__/checks.test.js +5 -3
- package/esm/__tests__/checks.test.js.map +1 -1
- package/esm/__tests__/deployments.test.js +51 -35
- package/esm/__tests__/deployments.test.js.map +1 -1
- package/esm/__tests__/dns.test.js +0 -27
- package/esm/__tests__/dns.test.js.map +1 -1
- package/esm/__tests__/domains.test.js +2 -2
- package/esm/__tests__/domains.test.js.map +1 -1
- package/esm/__tests__/edgeconfig.test.js +9 -5
- package/esm/__tests__/edgeconfig.test.js.map +1 -1
- package/esm/__tests__/environment.test.js +15 -27
- package/esm/__tests__/environment.test.js.map +1 -1
- package/esm/__tests__/integrations.test.js +1 -7
- package/esm/__tests__/integrations.test.js.map +1 -1
- package/esm/__tests__/logdrains.test.js +72 -24
- package/esm/__tests__/logdrains.test.js.map +1 -1
- package/esm/__tests__/marketplace.test.js +60 -72
- package/esm/__tests__/marketplace.test.js.map +1 -1
- package/esm/__tests__/projects.test.js +198 -118
- package/esm/__tests__/projects.test.js.map +1 -1
- package/esm/__tests__/security.test.js +97 -120
- package/esm/__tests__/security.test.js.map +1 -1
- package/esm/__tests__/teams.test.js +11 -6
- package/esm/__tests__/teams.test.js.map +1 -1
- package/esm/funcs/projectsMoveProjectDomain.d.ts +18 -0
- package/esm/funcs/projectsMoveProjectDomain.d.ts.map +1 -0
- package/esm/funcs/projectsMoveProjectDomain.js +96 -0
- package/esm/funcs/projectsMoveProjectDomain.js.map +1 -0
- package/esm/lib/config.d.ts +2 -2
- package/esm/lib/config.js +2 -2
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.d.ts.map +1 -1
- package/esm/mcp-server/server.js +3 -1
- package/esm/mcp-server/server.js.map +1 -1
- package/esm/mcp-server/tools/projectsMoveProjectDomain.d.ts +7 -0
- package/esm/mcp-server/tools/projectsMoveProjectDomain.d.ts.map +1 -0
- package/esm/mcp-server/tools/projectsMoveProjectDomain.js +28 -0
- package/esm/mcp-server/tools/projectsMoveProjectDomain.js.map +1 -0
- package/esm/models/authuser.d.ts +5 -0
- package/esm/models/authuser.d.ts.map +1 -1
- package/esm/models/authuser.js +2 -0
- package/esm/models/authuser.js.map +1 -1
- package/esm/models/createprojectop.d.ts +2 -0
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +2 -0
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/getdomainconfigop.d.ts +0 -7
- package/esm/models/getdomainconfigop.d.ts.map +1 -1
- package/esm/models/getdomainconfigop.js +0 -4
- package/esm/models/getdomainconfigop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +2 -0
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +2 -0
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/moveprojectdomainop.d.ts +165 -0
- package/esm/models/moveprojectdomainop.d.ts.map +1 -0
- package/esm/models/moveprojectdomainop.js +151 -0
- package/esm/models/moveprojectdomainop.js.map +1 -0
- package/esm/models/updateprojectdatacacheop.d.ts +2 -0
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +2 -0
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +2 -0
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +2 -0
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/userevent.d.ts +43 -0
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +31 -0
- package/esm/models/userevent.js.map +1 -1
- package/esm/sdk/projects.d.ts +8 -0
- package/esm/sdk/projects.d.ts.map +1 -1
- package/esm/sdk/projects.js +10 -0
- package/esm/sdk/projects.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/accessgroups.test.ts +94 -63
- package/src/__tests__/aliases.test.ts +47 -47
- package/src/__tests__/certs.test.ts +2 -2
- package/src/__tests__/checks.test.ts +5 -3
- package/src/__tests__/deployments.test.ts +56 -40
- package/src/__tests__/dns.test.ts +0 -30
- package/src/__tests__/domains.test.ts +2 -2
- package/src/__tests__/edgeconfig.test.ts +9 -5
- package/src/__tests__/environment.test.ts +18 -42
- package/src/__tests__/integrations.test.ts +1 -13
- package/src/__tests__/logdrains.test.ts +75 -36
- package/src/__tests__/marketplace.test.ts +63 -83
- package/src/__tests__/projects.test.ts +201 -121
- package/src/__tests__/security.test.ts +97 -123
- package/src/__tests__/teams.test.ts +11 -9
- package/src/funcs/projectsMoveProjectDomain.ts +198 -0
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +3 -1
- package/src/mcp-server/tools/projectsMoveProjectDomain.ts +37 -0
- package/src/models/authuser.ts +7 -0
- package/src/models/createprojectop.ts +4 -0
- package/src/models/getdomainconfigop.ts +0 -11
- package/src/models/getprojectsop.ts +4 -0
- package/src/models/moveprojectdomainop.ts +356 -0
- package/src/models/updateprojectdatacacheop.ts +4 -0
- package/src/models/updateprojectop.ts +4 -0
- package/src/models/userevent.ts +80 -0
- package/src/sdk/projects.ts +22 -0
- package/vercel-spec.json +249 -12
- package/esm/__tests__/apiexperimentation.test.d.ts +0 -2
- package/esm/__tests__/apiexperimentation.test.d.ts.map +0 -1
- package/esm/__tests__/apiexperimentation.test.js +0 -8
- package/esm/__tests__/apiexperimentation.test.js.map +0 -1
- package/src/__tests__/apiexperimentation.test.ts +0 -11
package/bin/mcp-server.js
CHANGED
|
@@ -34190,9 +34190,9 @@ var init_config = __esm(() => {
|
|
|
34190
34190
|
SDK_METADATA = {
|
|
34191
34191
|
language: "typescript",
|
|
34192
34192
|
openapiDocVersion: "0.0.1",
|
|
34193
|
-
sdkVersion: "1.6.
|
|
34193
|
+
sdkVersion: "1.6.6",
|
|
34194
34194
|
genVersion: "2.593.4",
|
|
34195
|
-
userAgent: "speakeasy-sdk/typescript 1.6.
|
|
34195
|
+
userAgent: "speakeasy-sdk/typescript 1.6.6 2.593.4 0.0.1 @vercel/sdk"
|
|
34196
34196
|
};
|
|
34197
34197
|
});
|
|
34198
34198
|
|
|
@@ -54573,16 +54573,12 @@ var init_getdomainconfigop = __esm(() => {
|
|
|
54573
54573
|
GetDomainConfigResponseBody$inboundSchema = objectType({
|
|
54574
54574
|
configuredBy: nullableType(ConfiguredBy$inboundSchema).optional(),
|
|
54575
54575
|
acceptedChallenges: arrayType(AcceptedChallenges$inboundSchema).optional(),
|
|
54576
|
-
misconfigured: booleanType()
|
|
54577
|
-
recommendedIps: arrayType(stringType()).optional(),
|
|
54578
|
-
recommendedCname: stringType().optional()
|
|
54576
|
+
misconfigured: booleanType()
|
|
54579
54577
|
});
|
|
54580
54578
|
GetDomainConfigResponseBody$outboundSchema = objectType({
|
|
54581
54579
|
configuredBy: nullableType(ConfiguredBy$outboundSchema).optional(),
|
|
54582
54580
|
acceptedChallenges: arrayType(AcceptedChallenges$outboundSchema).optional(),
|
|
54583
|
-
misconfigured: booleanType()
|
|
54584
|
-
recommendedIps: arrayType(stringType()).optional(),
|
|
54585
|
-
recommendedCname: stringType().optional()
|
|
54581
|
+
misconfigured: booleanType()
|
|
54586
54582
|
});
|
|
54587
54583
|
((GetDomainConfigResponseBody$) => {
|
|
54588
54584
|
GetDomainConfigResponseBody$.inboundSchema = GetDomainConfigResponseBody$inboundSchema;
|
|
@@ -67378,6 +67374,7 @@ var init_createprojectop = __esm(() => {
|
|
|
67378
67374
|
observabilityConfiguration: arrayType(ACLAction$inboundSchema).optional(),
|
|
67379
67375
|
observabilityNotebook: arrayType(ACLAction$inboundSchema).optional(),
|
|
67380
67376
|
openTelemetryEndpoint: arrayType(ACLAction$inboundSchema).optional(),
|
|
67377
|
+
vercelAppInstallation: arrayType(ACLAction$inboundSchema).optional(),
|
|
67381
67378
|
paymentMethod: arrayType(ACLAction$inboundSchema).optional(),
|
|
67382
67379
|
permissions: arrayType(ACLAction$inboundSchema).optional(),
|
|
67383
67380
|
postgres: arrayType(ACLAction$inboundSchema).optional(),
|
|
@@ -67580,6 +67577,7 @@ var init_createprojectop = __esm(() => {
|
|
|
67580
67577
|
observabilityConfiguration: arrayType(ACLAction$outboundSchema).optional(),
|
|
67581
67578
|
observabilityNotebook: arrayType(ACLAction$outboundSchema).optional(),
|
|
67582
67579
|
openTelemetryEndpoint: arrayType(ACLAction$outboundSchema).optional(),
|
|
67580
|
+
vercelAppInstallation: arrayType(ACLAction$outboundSchema).optional(),
|
|
67583
67581
|
paymentMethod: arrayType(ACLAction$outboundSchema).optional(),
|
|
67584
67582
|
permissions: arrayType(ACLAction$outboundSchema).optional(),
|
|
67585
67583
|
postgres: arrayType(ACLAction$outboundSchema).optional(),
|
|
@@ -76868,6 +76866,7 @@ var init_getprojectsop = __esm(() => {
|
|
|
76868
76866
|
observabilityConfiguration: arrayType(ACLAction$inboundSchema).optional(),
|
|
76869
76867
|
observabilityNotebook: arrayType(ACLAction$inboundSchema).optional(),
|
|
76870
76868
|
openTelemetryEndpoint: arrayType(ACLAction$inboundSchema).optional(),
|
|
76869
|
+
vercelAppInstallation: arrayType(ACLAction$inboundSchema).optional(),
|
|
76871
76870
|
paymentMethod: arrayType(ACLAction$inboundSchema).optional(),
|
|
76872
76871
|
permissions: arrayType(ACLAction$inboundSchema).optional(),
|
|
76873
76872
|
postgres: arrayType(ACLAction$inboundSchema).optional(),
|
|
@@ -77070,6 +77069,7 @@ var init_getprojectsop = __esm(() => {
|
|
|
77070
77069
|
observabilityConfiguration: arrayType(ACLAction$outboundSchema).optional(),
|
|
77071
77070
|
observabilityNotebook: arrayType(ACLAction$outboundSchema).optional(),
|
|
77072
77071
|
openTelemetryEndpoint: arrayType(ACLAction$outboundSchema).optional(),
|
|
77072
|
+
vercelAppInstallation: arrayType(ACLAction$outboundSchema).optional(),
|
|
77073
77073
|
paymentMethod: arrayType(ACLAction$outboundSchema).optional(),
|
|
77074
77074
|
permissions: arrayType(ACLAction$outboundSchema).optional(),
|
|
77075
77075
|
postgres: arrayType(ACLAction$outboundSchema).optional(),
|
|
@@ -78166,6 +78166,212 @@ Get a list of aliases related to the last promote request with their mapping sta
|
|
|
78166
78166
|
};
|
|
78167
78167
|
});
|
|
78168
78168
|
|
|
78169
|
+
// src/models/moveprojectdomainop.ts
|
|
78170
|
+
var MoveProjectDomainRequestBody$inboundSchema, MoveProjectDomainRequestBody$outboundSchema, MoveProjectDomainRequestBody$, MoveProjectDomainRequest$inboundSchema, MoveProjectDomainRequest$outboundSchema, MoveProjectDomainRequest$, MoveProjectDomainVerification$inboundSchema, MoveProjectDomainVerification$outboundSchema, MoveProjectDomainVerification$, MoveProjectDomainResponseBody$inboundSchema, MoveProjectDomainResponseBody$outboundSchema, MoveProjectDomainResponseBody$;
|
|
78171
|
+
var init_moveprojectdomainop = __esm(() => {
|
|
78172
|
+
init_lib();
|
|
78173
|
+
init_primitives();
|
|
78174
|
+
MoveProjectDomainRequestBody$inboundSchema = objectType({
|
|
78175
|
+
projectId: stringType()
|
|
78176
|
+
});
|
|
78177
|
+
MoveProjectDomainRequestBody$outboundSchema = objectType({
|
|
78178
|
+
projectId: stringType()
|
|
78179
|
+
});
|
|
78180
|
+
((MoveProjectDomainRequestBody$) => {
|
|
78181
|
+
MoveProjectDomainRequestBody$.inboundSchema = MoveProjectDomainRequestBody$inboundSchema;
|
|
78182
|
+
MoveProjectDomainRequestBody$.outboundSchema = MoveProjectDomainRequestBody$outboundSchema;
|
|
78183
|
+
})(MoveProjectDomainRequestBody$ ||= {});
|
|
78184
|
+
MoveProjectDomainRequest$inboundSchema = objectType({
|
|
78185
|
+
idOrName: stringType(),
|
|
78186
|
+
domain: stringType(),
|
|
78187
|
+
teamId: stringType().optional(),
|
|
78188
|
+
slug: stringType().optional(),
|
|
78189
|
+
RequestBody: lazyType(() => MoveProjectDomainRequestBody$inboundSchema).optional()
|
|
78190
|
+
}).transform((v2) => {
|
|
78191
|
+
return remap(v2, {
|
|
78192
|
+
RequestBody: "requestBody"
|
|
78193
|
+
});
|
|
78194
|
+
});
|
|
78195
|
+
MoveProjectDomainRequest$outboundSchema = objectType({
|
|
78196
|
+
idOrName: stringType(),
|
|
78197
|
+
domain: stringType(),
|
|
78198
|
+
teamId: stringType().optional(),
|
|
78199
|
+
slug: stringType().optional(),
|
|
78200
|
+
requestBody: lazyType(() => MoveProjectDomainRequestBody$outboundSchema).optional()
|
|
78201
|
+
}).transform((v2) => {
|
|
78202
|
+
return remap(v2, {
|
|
78203
|
+
requestBody: "RequestBody"
|
|
78204
|
+
});
|
|
78205
|
+
});
|
|
78206
|
+
((MoveProjectDomainRequest$) => {
|
|
78207
|
+
MoveProjectDomainRequest$.inboundSchema = MoveProjectDomainRequest$inboundSchema;
|
|
78208
|
+
MoveProjectDomainRequest$.outboundSchema = MoveProjectDomainRequest$outboundSchema;
|
|
78209
|
+
})(MoveProjectDomainRequest$ ||= {});
|
|
78210
|
+
MoveProjectDomainVerification$inboundSchema = objectType({
|
|
78211
|
+
type: stringType(),
|
|
78212
|
+
domain: stringType(),
|
|
78213
|
+
value: stringType(),
|
|
78214
|
+
reason: stringType()
|
|
78215
|
+
});
|
|
78216
|
+
MoveProjectDomainVerification$outboundSchema = objectType({
|
|
78217
|
+
type: stringType(),
|
|
78218
|
+
domain: stringType(),
|
|
78219
|
+
value: stringType(),
|
|
78220
|
+
reason: stringType()
|
|
78221
|
+
});
|
|
78222
|
+
((MoveProjectDomainVerification$) => {
|
|
78223
|
+
MoveProjectDomainVerification$.inboundSchema = MoveProjectDomainVerification$inboundSchema;
|
|
78224
|
+
MoveProjectDomainVerification$.outboundSchema = MoveProjectDomainVerification$outboundSchema;
|
|
78225
|
+
})(MoveProjectDomainVerification$ ||= {});
|
|
78226
|
+
MoveProjectDomainResponseBody$inboundSchema = objectType({
|
|
78227
|
+
name: stringType(),
|
|
78228
|
+
apexName: stringType(),
|
|
78229
|
+
projectId: stringType(),
|
|
78230
|
+
redirect: nullableType(stringType()).optional(),
|
|
78231
|
+
redirectStatusCode: nullableType(numberType()).optional(),
|
|
78232
|
+
gitBranch: nullableType(stringType()).optional(),
|
|
78233
|
+
customEnvironmentId: nullableType(stringType()).optional(),
|
|
78234
|
+
updatedAt: numberType().optional(),
|
|
78235
|
+
createdAt: numberType().optional(),
|
|
78236
|
+
verified: booleanType(),
|
|
78237
|
+
verification: arrayType(lazyType(() => MoveProjectDomainVerification$inboundSchema)).optional()
|
|
78238
|
+
});
|
|
78239
|
+
MoveProjectDomainResponseBody$outboundSchema = objectType({
|
|
78240
|
+
name: stringType(),
|
|
78241
|
+
apexName: stringType(),
|
|
78242
|
+
projectId: stringType(),
|
|
78243
|
+
redirect: nullableType(stringType()).optional(),
|
|
78244
|
+
redirectStatusCode: nullableType(numberType()).optional(),
|
|
78245
|
+
gitBranch: nullableType(stringType()).optional(),
|
|
78246
|
+
customEnvironmentId: nullableType(stringType()).optional(),
|
|
78247
|
+
updatedAt: numberType().optional(),
|
|
78248
|
+
createdAt: numberType().optional(),
|
|
78249
|
+
verified: booleanType(),
|
|
78250
|
+
verification: arrayType(lazyType(() => MoveProjectDomainVerification$outboundSchema)).optional()
|
|
78251
|
+
});
|
|
78252
|
+
((MoveProjectDomainResponseBody$) => {
|
|
78253
|
+
MoveProjectDomainResponseBody$.inboundSchema = MoveProjectDomainResponseBody$inboundSchema;
|
|
78254
|
+
MoveProjectDomainResponseBody$.outboundSchema = MoveProjectDomainResponseBody$outboundSchema;
|
|
78255
|
+
})(MoveProjectDomainResponseBody$ ||= {});
|
|
78256
|
+
});
|
|
78257
|
+
|
|
78258
|
+
// src/funcs/projectsMoveProjectDomain.ts
|
|
78259
|
+
function projectsMoveProjectDomain(client, request, options) {
|
|
78260
|
+
return new APIPromise($do123(client, request, options));
|
|
78261
|
+
}
|
|
78262
|
+
async function $do123(client, request, options) {
|
|
78263
|
+
const parsed = safeParse(request, (value) => MoveProjectDomainRequest$outboundSchema.parse(value), "Input validation failed");
|
|
78264
|
+
if (!parsed.ok) {
|
|
78265
|
+
return [parsed, { status: "invalid" }];
|
|
78266
|
+
}
|
|
78267
|
+
const payload = parsed.value;
|
|
78268
|
+
const body = encodeJSON("body", payload.RequestBody, { explode: true });
|
|
78269
|
+
const pathParams = {
|
|
78270
|
+
domain: encodeSimple("domain", payload.domain, {
|
|
78271
|
+
explode: false,
|
|
78272
|
+
charEncoding: "percent"
|
|
78273
|
+
}),
|
|
78274
|
+
idOrName: encodeSimple("idOrName", payload.idOrName, {
|
|
78275
|
+
explode: false,
|
|
78276
|
+
charEncoding: "percent"
|
|
78277
|
+
})
|
|
78278
|
+
};
|
|
78279
|
+
const path = pathToFunc("/v1/projects/{idOrName}/domains/{domain}/move")(pathParams);
|
|
78280
|
+
const query = encodeFormQuery({
|
|
78281
|
+
slug: payload.slug,
|
|
78282
|
+
teamId: payload.teamId
|
|
78283
|
+
});
|
|
78284
|
+
const headers = new Headers(compactMap({
|
|
78285
|
+
"Content-Type": "application/json",
|
|
78286
|
+
Accept: "application/json"
|
|
78287
|
+
}));
|
|
78288
|
+
const secConfig = await extractSecurity(client._options.bearerToken);
|
|
78289
|
+
const securityInput = secConfig == null ? {} : { bearerToken: secConfig };
|
|
78290
|
+
const requestSecurity = resolveGlobalSecurity(securityInput);
|
|
78291
|
+
const context = {
|
|
78292
|
+
baseURL: options?.serverURL ?? client._baseURL ?? "",
|
|
78293
|
+
operationID: "moveProjectDomain",
|
|
78294
|
+
oAuth2Scopes: [],
|
|
78295
|
+
resolvedSecurity: requestSecurity,
|
|
78296
|
+
securitySource: client._options.bearerToken,
|
|
78297
|
+
retryConfig: options?.retries || client._options.retryConfig || { strategy: "none" },
|
|
78298
|
+
retryCodes: options?.retryCodes || ["429", "500", "502", "503", "504"]
|
|
78299
|
+
};
|
|
78300
|
+
const requestRes = client._createRequest(context, {
|
|
78301
|
+
security: requestSecurity,
|
|
78302
|
+
method: "POST",
|
|
78303
|
+
baseURL: options?.serverURL,
|
|
78304
|
+
path,
|
|
78305
|
+
headers,
|
|
78306
|
+
query,
|
|
78307
|
+
body,
|
|
78308
|
+
timeoutMs: options?.timeoutMs || client._options.timeoutMs || -1
|
|
78309
|
+
}, options);
|
|
78310
|
+
if (!requestRes.ok) {
|
|
78311
|
+
return [requestRes, { status: "invalid" }];
|
|
78312
|
+
}
|
|
78313
|
+
const req = requestRes.value;
|
|
78314
|
+
const doResult = await client._do(req, {
|
|
78315
|
+
context,
|
|
78316
|
+
errorCodes: ["400", "401", "403", "409", "4XX", "5XX"],
|
|
78317
|
+
retryConfig: context.retryConfig,
|
|
78318
|
+
retryCodes: context.retryCodes
|
|
78319
|
+
});
|
|
78320
|
+
if (!doResult.ok) {
|
|
78321
|
+
return [doResult, { status: "request-error", request: req }];
|
|
78322
|
+
}
|
|
78323
|
+
const response = doResult.value;
|
|
78324
|
+
const responseFields = {
|
|
78325
|
+
HttpMeta: { Response: response, Request: req }
|
|
78326
|
+
};
|
|
78327
|
+
const [result] = await match(json(200, MoveProjectDomainResponseBody$inboundSchema), jsonErr(400, VercelBadRequestError$inboundSchema), jsonErr(401, VercelForbiddenError$inboundSchema), fail([403, 409, "4XX"]), fail("5XX"))(response, { extraFields: responseFields });
|
|
78328
|
+
if (!result.ok) {
|
|
78329
|
+
return [result, { status: "complete", request: req, response }];
|
|
78330
|
+
}
|
|
78331
|
+
return [result, { status: "complete", request: req, response }];
|
|
78332
|
+
}
|
|
78333
|
+
var init_projectsMoveProjectDomain = __esm(() => {
|
|
78334
|
+
init_encodings();
|
|
78335
|
+
init_matchers();
|
|
78336
|
+
init_primitives();
|
|
78337
|
+
init_schemas();
|
|
78338
|
+
init_security();
|
|
78339
|
+
init_url();
|
|
78340
|
+
init_moveprojectdomainop();
|
|
78341
|
+
init_vercelbadrequesterror();
|
|
78342
|
+
init_vercelforbiddenerror();
|
|
78343
|
+
init_async();
|
|
78344
|
+
});
|
|
78345
|
+
|
|
78346
|
+
// src/mcp-server/tools/projectsMoveProjectDomain.ts
|
|
78347
|
+
var args122, tool$projectsMoveProjectDomain;
|
|
78348
|
+
var init_projectsMoveProjectDomain2 = __esm(() => {
|
|
78349
|
+
init_projectsMoveProjectDomain();
|
|
78350
|
+
init_moveprojectdomainop();
|
|
78351
|
+
init_tools();
|
|
78352
|
+
args122 = {
|
|
78353
|
+
request: MoveProjectDomainRequest$inboundSchema
|
|
78354
|
+
};
|
|
78355
|
+
tool$projectsMoveProjectDomain = {
|
|
78356
|
+
name: "projects-move-project-domain",
|
|
78357
|
+
description: `Update a project domain
|
|
78358
|
+
|
|
78359
|
+
Move one project's domain to another project. Also allows the move of all redirects pointed to that domain in the same project.`,
|
|
78360
|
+
args: args122,
|
|
78361
|
+
tool: async (client, args123, ctx) => {
|
|
78362
|
+
const [result, apiCall] = await projectsMoveProjectDomain(client, args123.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
78363
|
+
if (!result.ok) {
|
|
78364
|
+
return {
|
|
78365
|
+
content: [{ type: "text", text: result.error.message }],
|
|
78366
|
+
isError: true
|
|
78367
|
+
};
|
|
78368
|
+
}
|
|
78369
|
+
const value = result.value;
|
|
78370
|
+
return formatResult(value, apiCall);
|
|
78371
|
+
}
|
|
78372
|
+
};
|
|
78373
|
+
});
|
|
78374
|
+
|
|
78169
78375
|
// src/models/pauseprojectop.ts
|
|
78170
78376
|
var PauseProjectRequest$inboundSchema, PauseProjectRequest$outboundSchema, PauseProjectRequest$;
|
|
78171
78377
|
var init_pauseprojectop = __esm(() => {
|
|
@@ -78188,9 +78394,9 @@ var init_pauseprojectop = __esm(() => {
|
|
|
78188
78394
|
|
|
78189
78395
|
// src/funcs/projectsPauseProject.ts
|
|
78190
78396
|
function projectsPauseProject(client, request, options) {
|
|
78191
|
-
return new APIPromise($
|
|
78397
|
+
return new APIPromise($do124(client, request, options));
|
|
78192
78398
|
}
|
|
78193
|
-
async function $
|
|
78399
|
+
async function $do124(client, request, options) {
|
|
78194
78400
|
const parsed = safeParse(request, (value) => PauseProjectRequest$outboundSchema.parse(value), "Input validation failed");
|
|
78195
78401
|
if (!parsed.ok) {
|
|
78196
78402
|
return [parsed, { status: "invalid" }];
|
|
@@ -78271,12 +78477,12 @@ var init_projectsPauseProject = __esm(() => {
|
|
|
78271
78477
|
});
|
|
78272
78478
|
|
|
78273
78479
|
// src/mcp-server/tools/projectsPauseProject.ts
|
|
78274
|
-
var
|
|
78480
|
+
var args123, tool$projectsPauseProject;
|
|
78275
78481
|
var init_projectsPauseProject2 = __esm(() => {
|
|
78276
78482
|
init_projectsPauseProject();
|
|
78277
78483
|
init_pauseprojectop();
|
|
78278
78484
|
init_tools();
|
|
78279
|
-
|
|
78485
|
+
args123 = {
|
|
78280
78486
|
request: PauseProjectRequest$inboundSchema
|
|
78281
78487
|
};
|
|
78282
78488
|
tool$projectsPauseProject = {
|
|
@@ -78284,9 +78490,9 @@ var init_projectsPauseProject2 = __esm(() => {
|
|
|
78284
78490
|
description: `Pause a project
|
|
78285
78491
|
|
|
78286
78492
|
Pause a project by passing its project \`id\` in the URL. If the project does not exist given the id then the request will fail with 400 status code. If the project disables auto assigning custom production domains and blocks the active Production Deployment then the request will return with 200 status code.`,
|
|
78287
|
-
args:
|
|
78288
|
-
tool: async (client,
|
|
78289
|
-
const [result, apiCall] = await projectsPauseProject(client,
|
|
78493
|
+
args: args123,
|
|
78494
|
+
tool: async (client, args124, ctx) => {
|
|
78495
|
+
const [result, apiCall] = await projectsPauseProject(client, args124.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
78290
78496
|
if (!result.ok) {
|
|
78291
78497
|
return {
|
|
78292
78498
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -78328,9 +78534,9 @@ var init_removeprojectdomainop = __esm(() => {
|
|
|
78328
78534
|
|
|
78329
78535
|
// src/funcs/projectsRemoveProjectDomain.ts
|
|
78330
78536
|
function projectsRemoveProjectDomain(client, request, options) {
|
|
78331
|
-
return new APIPromise($
|
|
78537
|
+
return new APIPromise($do125(client, request, options));
|
|
78332
78538
|
}
|
|
78333
|
-
async function $
|
|
78539
|
+
async function $do125(client, request, options) {
|
|
78334
78540
|
const parsed = safeParse(request, (value) => RemoveProjectDomainRequest$outboundSchema.parse(value), "Input validation failed");
|
|
78335
78541
|
if (!parsed.ok) {
|
|
78336
78542
|
return [parsed, { status: "invalid" }];
|
|
@@ -78415,12 +78621,12 @@ var init_projectsRemoveProjectDomain = __esm(() => {
|
|
|
78415
78621
|
});
|
|
78416
78622
|
|
|
78417
78623
|
// src/mcp-server/tools/projectsRemoveProjectDomain.ts
|
|
78418
|
-
var
|
|
78624
|
+
var args124, tool$projectsRemoveProjectDomain;
|
|
78419
78625
|
var init_projectsRemoveProjectDomain2 = __esm(() => {
|
|
78420
78626
|
init_projectsRemoveProjectDomain();
|
|
78421
78627
|
init_removeprojectdomainop();
|
|
78422
78628
|
init_tools();
|
|
78423
|
-
|
|
78629
|
+
args124 = {
|
|
78424
78630
|
request: RemoveProjectDomainRequest$inboundSchema
|
|
78425
78631
|
};
|
|
78426
78632
|
tool$projectsRemoveProjectDomain = {
|
|
@@ -78428,9 +78634,9 @@ var init_projectsRemoveProjectDomain2 = __esm(() => {
|
|
|
78428
78634
|
description: `Remove a domain from a project
|
|
78429
78635
|
|
|
78430
78636
|
Remove a domain from a project by passing the domain name and by specifying the project by either passing the project \`id\` or \`name\` in the URL.`,
|
|
78431
|
-
args:
|
|
78432
|
-
tool: async (client,
|
|
78433
|
-
const [result, apiCall] = await projectsRemoveProjectDomain(client,
|
|
78637
|
+
args: args124,
|
|
78638
|
+
tool: async (client, args125, ctx) => {
|
|
78639
|
+
const [result, apiCall] = await projectsRemoveProjectDomain(client, args125.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
78434
78640
|
if (!result.ok) {
|
|
78435
78641
|
return {
|
|
78436
78642
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -80024,9 +80230,9 @@ var init_removeprojectenvop = __esm(() => {
|
|
|
80024
80230
|
|
|
80025
80231
|
// src/funcs/projectsRemoveProjectEnv.ts
|
|
80026
80232
|
function projectsRemoveProjectEnv(client, request, options) {
|
|
80027
|
-
return new APIPromise($
|
|
80233
|
+
return new APIPromise($do126(client, request, options));
|
|
80028
80234
|
}
|
|
80029
|
-
async function $
|
|
80235
|
+
async function $do126(client, request, options) {
|
|
80030
80236
|
const parsed = safeParse(request, (value) => RemoveProjectEnvRequest$outboundSchema.parse(value), "Input validation failed");
|
|
80031
80237
|
if (!parsed.ok) {
|
|
80032
80238
|
return [parsed, { status: "invalid" }];
|
|
@@ -80112,12 +80318,12 @@ var init_projectsRemoveProjectEnv = __esm(() => {
|
|
|
80112
80318
|
});
|
|
80113
80319
|
|
|
80114
80320
|
// src/mcp-server/tools/projectsRemoveProjectEnv.ts
|
|
80115
|
-
var
|
|
80321
|
+
var args125, tool$projectsRemoveProjectEnv;
|
|
80116
80322
|
var init_projectsRemoveProjectEnv2 = __esm(() => {
|
|
80117
80323
|
init_projectsRemoveProjectEnv();
|
|
80118
80324
|
init_removeprojectenvop();
|
|
80119
80325
|
init_tools();
|
|
80120
|
-
|
|
80326
|
+
args125 = {
|
|
80121
80327
|
request: RemoveProjectEnvRequest$inboundSchema
|
|
80122
80328
|
};
|
|
80123
80329
|
tool$projectsRemoveProjectEnv = {
|
|
@@ -80125,9 +80331,9 @@ var init_projectsRemoveProjectEnv2 = __esm(() => {
|
|
|
80125
80331
|
description: `Remove an environment variable
|
|
80126
80332
|
|
|
80127
80333
|
Delete a specific environment variable for a given project by passing the environment variable identifier and either passing the project \`id\` or \`name\` in the URL.`,
|
|
80128
|
-
args:
|
|
80129
|
-
tool: async (client,
|
|
80130
|
-
const [result, apiCall] = await projectsRemoveProjectEnv(client,
|
|
80334
|
+
args: args125,
|
|
80335
|
+
tool: async (client, args126, ctx) => {
|
|
80336
|
+
const [result, apiCall] = await projectsRemoveProjectEnv(client, args126.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
80131
80337
|
if (!result.ok) {
|
|
80132
80338
|
return {
|
|
80133
80339
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -80164,9 +80370,9 @@ var init_requestpromoteop = __esm(() => {
|
|
|
80164
80370
|
|
|
80165
80371
|
// src/funcs/projectsRequestPromote.ts
|
|
80166
80372
|
function projectsRequestPromote(client, request, options) {
|
|
80167
|
-
return new APIPromise($
|
|
80373
|
+
return new APIPromise($do127(client, request, options));
|
|
80168
80374
|
}
|
|
80169
|
-
async function $
|
|
80375
|
+
async function $do127(client, request, options) {
|
|
80170
80376
|
const parsed = safeParse(request, (value) => RequestPromoteRequest$outboundSchema.parse(value), "Input validation failed");
|
|
80171
80377
|
if (!parsed.ok) {
|
|
80172
80378
|
return [parsed, { status: "invalid" }];
|
|
@@ -80251,12 +80457,12 @@ var init_projectsRequestPromote = __esm(() => {
|
|
|
80251
80457
|
});
|
|
80252
80458
|
|
|
80253
80459
|
// src/mcp-server/tools/projectsRequestPromote.ts
|
|
80254
|
-
var
|
|
80460
|
+
var args126, tool$projectsRequestPromote;
|
|
80255
80461
|
var init_projectsRequestPromote2 = __esm(() => {
|
|
80256
80462
|
init_projectsRequestPromote();
|
|
80257
80463
|
init_requestpromoteop();
|
|
80258
80464
|
init_tools();
|
|
80259
|
-
|
|
80465
|
+
args126 = {
|
|
80260
80466
|
request: RequestPromoteRequest$inboundSchema
|
|
80261
80467
|
};
|
|
80262
80468
|
tool$projectsRequestPromote = {
|
|
@@ -80264,9 +80470,9 @@ var init_projectsRequestPromote2 = __esm(() => {
|
|
|
80264
80470
|
description: `Points all production domains for a project to the given deploy
|
|
80265
80471
|
|
|
80266
80472
|
Allows users to promote a deployment to production. Note: This does NOT rebuild the deployment. If you need that, then call create-deployments endpoint.`,
|
|
80267
|
-
args:
|
|
80268
|
-
tool: async (client,
|
|
80269
|
-
const [result, apiCall] = await projectsRequestPromote(client,
|
|
80473
|
+
args: args126,
|
|
80474
|
+
tool: async (client, args127, ctx) => {
|
|
80475
|
+
const [result, apiCall] = await projectsRequestPromote(client, args127.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
80270
80476
|
if (!result.ok) {
|
|
80271
80477
|
return {
|
|
80272
80478
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -80300,9 +80506,9 @@ var init_unpauseprojectop = __esm(() => {
|
|
|
80300
80506
|
|
|
80301
80507
|
// src/funcs/projectsUnpauseProject.ts
|
|
80302
80508
|
function projectsUnpauseProject(client, request, options) {
|
|
80303
|
-
return new APIPromise($
|
|
80509
|
+
return new APIPromise($do128(client, request, options));
|
|
80304
80510
|
}
|
|
80305
|
-
async function $
|
|
80511
|
+
async function $do128(client, request, options) {
|
|
80306
80512
|
const parsed = safeParse(request, (value) => UnpauseProjectRequest$outboundSchema.parse(value), "Input validation failed");
|
|
80307
80513
|
if (!parsed.ok) {
|
|
80308
80514
|
return [parsed, { status: "invalid" }];
|
|
@@ -80383,12 +80589,12 @@ var init_projectsUnpauseProject = __esm(() => {
|
|
|
80383
80589
|
});
|
|
80384
80590
|
|
|
80385
80591
|
// src/mcp-server/tools/projectsUnpauseProject.ts
|
|
80386
|
-
var
|
|
80592
|
+
var args127, tool$projectsUnpauseProject;
|
|
80387
80593
|
var init_projectsUnpauseProject2 = __esm(() => {
|
|
80388
80594
|
init_projectsUnpauseProject();
|
|
80389
80595
|
init_unpauseprojectop();
|
|
80390
80596
|
init_tools();
|
|
80391
|
-
|
|
80597
|
+
args127 = {
|
|
80392
80598
|
request: UnpauseProjectRequest$inboundSchema
|
|
80393
80599
|
};
|
|
80394
80600
|
tool$projectsUnpauseProject = {
|
|
@@ -80396,9 +80602,9 @@ var init_projectsUnpauseProject2 = __esm(() => {
|
|
|
80396
80602
|
description: `Unpause a project
|
|
80397
80603
|
|
|
80398
80604
|
Unpause a project by passing its project \`id\` in the URL. If the project does not exist given the id then the request will fail with 400 status code. If the project enables auto assigning custom production domains and unblocks the active Production Deployment then the request will return with 200 status code.`,
|
|
80399
|
-
args:
|
|
80400
|
-
tool: async (client,
|
|
80401
|
-
const [result, apiCall] = await projectsUnpauseProject(client,
|
|
80605
|
+
args: args127,
|
|
80606
|
+
tool: async (client, args128, ctx) => {
|
|
80607
|
+
const [result, apiCall] = await projectsUnpauseProject(client, args128.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
80402
80608
|
if (!result.ok) {
|
|
80403
80609
|
return {
|
|
80404
80610
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -82547,6 +82753,7 @@ var init_updateprojectop = __esm(() => {
|
|
|
82547
82753
|
observabilityConfiguration: arrayType(ACLAction$inboundSchema).optional(),
|
|
82548
82754
|
observabilityNotebook: arrayType(ACLAction$inboundSchema).optional(),
|
|
82549
82755
|
openTelemetryEndpoint: arrayType(ACLAction$inboundSchema).optional(),
|
|
82756
|
+
vercelAppInstallation: arrayType(ACLAction$inboundSchema).optional(),
|
|
82550
82757
|
paymentMethod: arrayType(ACLAction$inboundSchema).optional(),
|
|
82551
82758
|
permissions: arrayType(ACLAction$inboundSchema).optional(),
|
|
82552
82759
|
postgres: arrayType(ACLAction$inboundSchema).optional(),
|
|
@@ -82749,6 +82956,7 @@ var init_updateprojectop = __esm(() => {
|
|
|
82749
82956
|
observabilityConfiguration: arrayType(ACLAction$outboundSchema).optional(),
|
|
82750
82957
|
observabilityNotebook: arrayType(ACLAction$outboundSchema).optional(),
|
|
82751
82958
|
openTelemetryEndpoint: arrayType(ACLAction$outboundSchema).optional(),
|
|
82959
|
+
vercelAppInstallation: arrayType(ACLAction$outboundSchema).optional(),
|
|
82752
82960
|
paymentMethod: arrayType(ACLAction$outboundSchema).optional(),
|
|
82753
82961
|
permissions: arrayType(ACLAction$outboundSchema).optional(),
|
|
82754
82962
|
postgres: arrayType(ACLAction$outboundSchema).optional(),
|
|
@@ -83528,9 +83736,9 @@ var init_updateprojectop = __esm(() => {
|
|
|
83528
83736
|
|
|
83529
83737
|
// src/funcs/projectsUpdateProject.ts
|
|
83530
83738
|
function projectsUpdateProject(client, request, options) {
|
|
83531
|
-
return new APIPromise($
|
|
83739
|
+
return new APIPromise($do129(client, request, options));
|
|
83532
83740
|
}
|
|
83533
|
-
async function $
|
|
83741
|
+
async function $do129(client, request, options) {
|
|
83534
83742
|
const parsed = safeParse(request, (value) => UpdateProjectRequest$outboundSchema.parse(value), "Input validation failed");
|
|
83535
83743
|
if (!parsed.ok) {
|
|
83536
83744
|
return [parsed, { status: "invalid" }];
|
|
@@ -83612,12 +83820,12 @@ var init_projectsUpdateProject = __esm(() => {
|
|
|
83612
83820
|
});
|
|
83613
83821
|
|
|
83614
83822
|
// src/mcp-server/tools/projectsUpdateProject.ts
|
|
83615
|
-
var
|
|
83823
|
+
var args128, tool$projectsUpdateProject;
|
|
83616
83824
|
var init_projectsUpdateProject2 = __esm(() => {
|
|
83617
83825
|
init_projectsUpdateProject();
|
|
83618
83826
|
init_updateprojectop();
|
|
83619
83827
|
init_tools();
|
|
83620
|
-
|
|
83828
|
+
args128 = {
|
|
83621
83829
|
request: UpdateProjectRequest$inboundSchema
|
|
83622
83830
|
};
|
|
83623
83831
|
tool$projectsUpdateProject = {
|
|
@@ -83625,9 +83833,9 @@ var init_projectsUpdateProject2 = __esm(() => {
|
|
|
83625
83833
|
description: `Update an existing project
|
|
83626
83834
|
|
|
83627
83835
|
Update the fields of a project using either its \`name\` or \`id\`.`,
|
|
83628
|
-
args:
|
|
83629
|
-
tool: async (client,
|
|
83630
|
-
const [result, apiCall] = await projectsUpdateProject(client,
|
|
83836
|
+
args: args128,
|
|
83837
|
+
tool: async (client, args129, ctx) => {
|
|
83838
|
+
const [result, apiCall] = await projectsUpdateProject(client, args129.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
83631
83839
|
if (!result.ok) {
|
|
83632
83840
|
return {
|
|
83633
83841
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -85535,6 +85743,7 @@ var init_updateprojectdatacacheop = __esm(() => {
|
|
|
85535
85743
|
observabilityConfiguration: arrayType(ACLAction$inboundSchema).optional(),
|
|
85536
85744
|
observabilityNotebook: arrayType(ACLAction$inboundSchema).optional(),
|
|
85537
85745
|
openTelemetryEndpoint: arrayType(ACLAction$inboundSchema).optional(),
|
|
85746
|
+
vercelAppInstallation: arrayType(ACLAction$inboundSchema).optional(),
|
|
85538
85747
|
paymentMethod: arrayType(ACLAction$inboundSchema).optional(),
|
|
85539
85748
|
permissions: arrayType(ACLAction$inboundSchema).optional(),
|
|
85540
85749
|
postgres: arrayType(ACLAction$inboundSchema).optional(),
|
|
@@ -85737,6 +85946,7 @@ var init_updateprojectdatacacheop = __esm(() => {
|
|
|
85737
85946
|
observabilityConfiguration: arrayType(ACLAction$outboundSchema).optional(),
|
|
85738
85947
|
observabilityNotebook: arrayType(ACLAction$outboundSchema).optional(),
|
|
85739
85948
|
openTelemetryEndpoint: arrayType(ACLAction$outboundSchema).optional(),
|
|
85949
|
+
vercelAppInstallation: arrayType(ACLAction$outboundSchema).optional(),
|
|
85740
85950
|
paymentMethod: arrayType(ACLAction$outboundSchema).optional(),
|
|
85741
85951
|
permissions: arrayType(ACLAction$outboundSchema).optional(),
|
|
85742
85952
|
postgres: arrayType(ACLAction$outboundSchema).optional(),
|
|
@@ -86528,9 +86738,9 @@ var init_updateprojectdatacacheop = __esm(() => {
|
|
|
86528
86738
|
|
|
86529
86739
|
// src/funcs/projectsUpdateProjectDataCache.ts
|
|
86530
86740
|
function projectsUpdateProjectDataCache(client, request, options) {
|
|
86531
|
-
return new APIPromise($
|
|
86741
|
+
return new APIPromise($do130(client, request, options));
|
|
86532
86742
|
}
|
|
86533
|
-
async function $
|
|
86743
|
+
async function $do130(client, request, options) {
|
|
86534
86744
|
const parsed = safeParse(request, (value) => UpdateProjectDataCacheRequest$outboundSchema.parse(value), "Input validation failed");
|
|
86535
86745
|
if (!parsed.ok) {
|
|
86536
86746
|
return [parsed, { status: "invalid" }];
|
|
@@ -86612,12 +86822,12 @@ var init_projectsUpdateProjectDataCache = __esm(() => {
|
|
|
86612
86822
|
});
|
|
86613
86823
|
|
|
86614
86824
|
// src/mcp-server/tools/projectsUpdateProjectDataCache.ts
|
|
86615
|
-
var
|
|
86825
|
+
var args129, tool$projectsUpdateProjectDataCache;
|
|
86616
86826
|
var init_projectsUpdateProjectDataCache2 = __esm(() => {
|
|
86617
86827
|
init_projectsUpdateProjectDataCache();
|
|
86618
86828
|
init_updateprojectdatacacheop();
|
|
86619
86829
|
init_tools();
|
|
86620
|
-
|
|
86830
|
+
args129 = {
|
|
86621
86831
|
request: UpdateProjectDataCacheRequest$inboundSchema
|
|
86622
86832
|
};
|
|
86623
86833
|
tool$projectsUpdateProjectDataCache = {
|
|
@@ -86625,9 +86835,9 @@ var init_projectsUpdateProjectDataCache2 = __esm(() => {
|
|
|
86625
86835
|
description: `Update the data cache feature
|
|
86626
86836
|
|
|
86627
86837
|
Update the data cache feature on a project.`,
|
|
86628
|
-
args:
|
|
86629
|
-
tool: async (client,
|
|
86630
|
-
const [result, apiCall] = await projectsUpdateProjectDataCache(client,
|
|
86838
|
+
args: args129,
|
|
86839
|
+
tool: async (client, args130, ctx) => {
|
|
86840
|
+
const [result, apiCall] = await projectsUpdateProjectDataCache(client, args130.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
86631
86841
|
if (!result.ok) {
|
|
86632
86842
|
return {
|
|
86633
86843
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -86747,9 +86957,9 @@ var init_updateprojectdomainop = __esm(() => {
|
|
|
86747
86957
|
|
|
86748
86958
|
// src/funcs/projectsUpdateProjectDomain.ts
|
|
86749
86959
|
function projectsUpdateProjectDomain(client, request, options) {
|
|
86750
|
-
return new APIPromise($
|
|
86960
|
+
return new APIPromise($do131(client, request, options));
|
|
86751
86961
|
}
|
|
86752
|
-
async function $
|
|
86962
|
+
async function $do131(client, request, options) {
|
|
86753
86963
|
const parsed = safeParse(request, (value) => UpdateProjectDomainRequest$outboundSchema.parse(value), "Input validation failed");
|
|
86754
86964
|
if (!parsed.ok) {
|
|
86755
86965
|
return [parsed, { status: "invalid" }];
|
|
@@ -86834,12 +87044,12 @@ var init_projectsUpdateProjectDomain = __esm(() => {
|
|
|
86834
87044
|
});
|
|
86835
87045
|
|
|
86836
87046
|
// src/mcp-server/tools/projectsUpdateProjectDomain.ts
|
|
86837
|
-
var
|
|
87047
|
+
var args130, tool$projectsUpdateProjectDomain;
|
|
86838
87048
|
var init_projectsUpdateProjectDomain2 = __esm(() => {
|
|
86839
87049
|
init_projectsUpdateProjectDomain();
|
|
86840
87050
|
init_updateprojectdomainop();
|
|
86841
87051
|
init_tools();
|
|
86842
|
-
|
|
87052
|
+
args130 = {
|
|
86843
87053
|
request: UpdateProjectDomainRequest$inboundSchema
|
|
86844
87054
|
};
|
|
86845
87055
|
tool$projectsUpdateProjectDomain = {
|
|
@@ -86847,9 +87057,9 @@ var init_projectsUpdateProjectDomain2 = __esm(() => {
|
|
|
86847
87057
|
description: `Update a project domain
|
|
86848
87058
|
|
|
86849
87059
|
Update a project domain's configuration, including the name, git branch and redirect of the domain.`,
|
|
86850
|
-
args:
|
|
86851
|
-
tool: async (client,
|
|
86852
|
-
const [result, apiCall] = await projectsUpdateProjectDomain(client,
|
|
87060
|
+
args: args130,
|
|
87061
|
+
tool: async (client, args131, ctx) => {
|
|
87062
|
+
const [result, apiCall] = await projectsUpdateProjectDomain(client, args131.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
86853
87063
|
if (!result.ok) {
|
|
86854
87064
|
return {
|
|
86855
87065
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -86962,9 +87172,9 @@ var init_updateprojectprotectionbypassop = __esm(() => {
|
|
|
86962
87172
|
|
|
86963
87173
|
// src/funcs/projectsUpdateProjectProtectionBypass.ts
|
|
86964
87174
|
function projectsUpdateProjectProtectionBypass(client, request, options) {
|
|
86965
|
-
return new APIPromise($
|
|
87175
|
+
return new APIPromise($do132(client, request, options));
|
|
86966
87176
|
}
|
|
86967
|
-
async function $
|
|
87177
|
+
async function $do132(client, request, options) {
|
|
86968
87178
|
const parsed = safeParse(request, (value) => UpdateProjectProtectionBypassRequest$outboundSchema.parse(value), "Input validation failed");
|
|
86969
87179
|
if (!parsed.ok) {
|
|
86970
87180
|
return [parsed, { status: "invalid" }];
|
|
@@ -87046,12 +87256,12 @@ var init_projectsUpdateProjectProtectionBypass = __esm(() => {
|
|
|
87046
87256
|
});
|
|
87047
87257
|
|
|
87048
87258
|
// src/mcp-server/tools/projectsUpdateProjectProtectionBypass.ts
|
|
87049
|
-
var
|
|
87259
|
+
var args131, tool$projectsUpdateProjectProtectionBypass;
|
|
87050
87260
|
var init_projectsUpdateProjectProtectionBypass2 = __esm(() => {
|
|
87051
87261
|
init_projectsUpdateProjectProtectionBypass();
|
|
87052
87262
|
init_updateprojectprotectionbypassop();
|
|
87053
87263
|
init_tools();
|
|
87054
|
-
|
|
87264
|
+
args131 = {
|
|
87055
87265
|
request: UpdateProjectProtectionBypassRequest$inboundSchema
|
|
87056
87266
|
};
|
|
87057
87267
|
tool$projectsUpdateProjectProtectionBypass = {
|
|
@@ -87059,9 +87269,9 @@ var init_projectsUpdateProjectProtectionBypass2 = __esm(() => {
|
|
|
87059
87269
|
description: `Update Protection Bypass for Automation
|
|
87060
87270
|
|
|
87061
87271
|
Update the deployment protection automation bypass for a project`,
|
|
87062
|
-
args:
|
|
87063
|
-
tool: async (client,
|
|
87064
|
-
const [result, apiCall] = await projectsUpdateProjectProtectionBypass(client,
|
|
87272
|
+
args: args131,
|
|
87273
|
+
tool: async (client, args132, ctx) => {
|
|
87274
|
+
const [result, apiCall] = await projectsUpdateProjectProtectionBypass(client, args132.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
87065
87275
|
if (!result.ok) {
|
|
87066
87276
|
return {
|
|
87067
87277
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -87126,9 +87336,9 @@ var init_verifyprojectdomainop = __esm(() => {
|
|
|
87126
87336
|
|
|
87127
87337
|
// src/funcs/projectsVerifyProjectDomain.ts
|
|
87128
87338
|
function projectsVerifyProjectDomain(client, request, options) {
|
|
87129
|
-
return new APIPromise($
|
|
87339
|
+
return new APIPromise($do133(client, request, options));
|
|
87130
87340
|
}
|
|
87131
|
-
async function $
|
|
87341
|
+
async function $do133(client, request, options) {
|
|
87132
87342
|
const parsed = safeParse(request, (value) => VerifyProjectDomainRequest$outboundSchema.parse(value), "Input validation failed");
|
|
87133
87343
|
if (!parsed.ok) {
|
|
87134
87344
|
return [parsed, { status: "invalid" }];
|
|
@@ -87212,12 +87422,12 @@ var init_projectsVerifyProjectDomain = __esm(() => {
|
|
|
87212
87422
|
});
|
|
87213
87423
|
|
|
87214
87424
|
// src/mcp-server/tools/projectsVerifyProjectDomain.ts
|
|
87215
|
-
var
|
|
87425
|
+
var args132, tool$projectsVerifyProjectDomain;
|
|
87216
87426
|
var init_projectsVerifyProjectDomain2 = __esm(() => {
|
|
87217
87427
|
init_projectsVerifyProjectDomain();
|
|
87218
87428
|
init_verifyprojectdomainop();
|
|
87219
87429
|
init_tools();
|
|
87220
|
-
|
|
87430
|
+
args132 = {
|
|
87221
87431
|
request: VerifyProjectDomainRequest$inboundSchema
|
|
87222
87432
|
};
|
|
87223
87433
|
tool$projectsVerifyProjectDomain = {
|
|
@@ -87225,9 +87435,9 @@ var init_projectsVerifyProjectDomain2 = __esm(() => {
|
|
|
87225
87435
|
description: `Verify project domain
|
|
87226
87436
|
|
|
87227
87437
|
Attempts to verify a project domain with \`verified = false\` by checking the correctness of the project domain's \`verification\` challenge.`,
|
|
87228
|
-
args:
|
|
87229
|
-
tool: async (client,
|
|
87230
|
-
const [result, apiCall] = await projectsVerifyProjectDomain(client,
|
|
87438
|
+
args: args132,
|
|
87439
|
+
tool: async (client, args133, ctx) => {
|
|
87440
|
+
const [result, apiCall] = await projectsVerifyProjectDomain(client, args133.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
87231
87441
|
if (!result.ok) {
|
|
87232
87442
|
return {
|
|
87233
87443
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -87491,9 +87701,9 @@ var init_addbypassipop = __esm(() => {
|
|
|
87491
87701
|
|
|
87492
87702
|
// src/funcs/securityAddBypassIp.ts
|
|
87493
87703
|
function securityAddBypassIp(client, request, options) {
|
|
87494
|
-
return new APIPromise($
|
|
87704
|
+
return new APIPromise($do134(client, request, options));
|
|
87495
87705
|
}
|
|
87496
|
-
async function $
|
|
87706
|
+
async function $do134(client, request, options) {
|
|
87497
87707
|
const parsed = safeParse(request, (value) => AddBypassIpRequest$outboundSchema.parse(value), "Input validation failed");
|
|
87498
87708
|
if (!parsed.ok) {
|
|
87499
87709
|
return [parsed, { status: "invalid" }];
|
|
@@ -87570,12 +87780,12 @@ var init_securityAddBypassIp = __esm(() => {
|
|
|
87570
87780
|
});
|
|
87571
87781
|
|
|
87572
87782
|
// src/mcp-server/tools/securityAddBypassIp.ts
|
|
87573
|
-
var
|
|
87783
|
+
var args133, tool$securityAddBypassIp;
|
|
87574
87784
|
var init_securityAddBypassIp2 = __esm(() => {
|
|
87575
87785
|
init_securityAddBypassIp();
|
|
87576
87786
|
init_addbypassipop();
|
|
87577
87787
|
init_tools();
|
|
87578
|
-
|
|
87788
|
+
args133 = {
|
|
87579
87789
|
request: AddBypassIpRequest$inboundSchema
|
|
87580
87790
|
};
|
|
87581
87791
|
tool$securityAddBypassIp = {
|
|
@@ -87583,9 +87793,9 @@ var init_securityAddBypassIp2 = __esm(() => {
|
|
|
87583
87793
|
description: `Create System Bypass Rule
|
|
87584
87794
|
|
|
87585
87795
|
Create new system bypass rules`,
|
|
87586
|
-
args:
|
|
87587
|
-
tool: async (client,
|
|
87588
|
-
const [result, apiCall] = await securityAddBypassIp(client,
|
|
87796
|
+
args: args133,
|
|
87797
|
+
tool: async (client, args134, ctx) => {
|
|
87798
|
+
const [result, apiCall] = await securityAddBypassIp(client, args134.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
87589
87799
|
if (!result.ok) {
|
|
87590
87800
|
return {
|
|
87591
87801
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -87727,9 +87937,9 @@ var init_getactiveattackstatusop = __esm(() => {
|
|
|
87727
87937
|
|
|
87728
87938
|
// src/funcs/securityGetActiveAttackStatus.ts
|
|
87729
87939
|
function securityGetActiveAttackStatus(client, request, options) {
|
|
87730
|
-
return new APIPromise($
|
|
87940
|
+
return new APIPromise($do135(client, request, options));
|
|
87731
87941
|
}
|
|
87732
|
-
async function $
|
|
87942
|
+
async function $do135(client, request, options) {
|
|
87733
87943
|
const parsed = safeParse(request, (value) => GetActiveAttackStatusRequest$outboundSchema.parse(value), "Input validation failed");
|
|
87734
87944
|
if (!parsed.ok) {
|
|
87735
87945
|
return [parsed, { status: "invalid" }];
|
|
@@ -87805,12 +88015,12 @@ var init_securityGetActiveAttackStatus = __esm(() => {
|
|
|
87805
88015
|
});
|
|
87806
88016
|
|
|
87807
88017
|
// src/mcp-server/tools/securityGetActiveAttackStatus.ts
|
|
87808
|
-
var
|
|
88018
|
+
var args134, tool$securityGetActiveAttackStatus;
|
|
87809
88019
|
var init_securityGetActiveAttackStatus2 = __esm(() => {
|
|
87810
88020
|
init_securityGetActiveAttackStatus();
|
|
87811
88021
|
init_getactiveattackstatusop();
|
|
87812
88022
|
init_tools();
|
|
87813
|
-
|
|
88023
|
+
args134 = {
|
|
87814
88024
|
request: GetActiveAttackStatusRequest$inboundSchema
|
|
87815
88025
|
};
|
|
87816
88026
|
tool$securityGetActiveAttackStatus = {
|
|
@@ -87818,9 +88028,9 @@ var init_securityGetActiveAttackStatus2 = __esm(() => {
|
|
|
87818
88028
|
description: `Read active attack data
|
|
87819
88029
|
|
|
87820
88030
|
Retrieve active attack data within the last 24h window`,
|
|
87821
|
-
args:
|
|
87822
|
-
tool: async (client,
|
|
87823
|
-
const [result, apiCall] = await securityGetActiveAttackStatus(client,
|
|
88031
|
+
args: args134,
|
|
88032
|
+
tool: async (client, args135, ctx) => {
|
|
88033
|
+
const [result, apiCall] = await securityGetActiveAttackStatus(client, args135.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
87824
88034
|
if (!result.ok) {
|
|
87825
88035
|
return {
|
|
87826
88036
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -88084,9 +88294,9 @@ var init_getbypassipop = __esm(() => {
|
|
|
88084
88294
|
|
|
88085
88295
|
// src/funcs/securityGetBypassIp.ts
|
|
88086
88296
|
function securityGetBypassIp(client, request, options) {
|
|
88087
|
-
return new APIPromise($
|
|
88297
|
+
return new APIPromise($do136(client, request, options));
|
|
88088
88298
|
}
|
|
88089
|
-
async function $
|
|
88299
|
+
async function $do136(client, request, options) {
|
|
88090
88300
|
const parsed = safeParse(request, (value) => GetBypassIpRequest$outboundSchema.parse(value), "Input validation failed");
|
|
88091
88301
|
if (!parsed.ok) {
|
|
88092
88302
|
return [parsed, { status: "invalid" }];
|
|
@@ -88167,12 +88377,12 @@ var init_securityGetBypassIp = __esm(() => {
|
|
|
88167
88377
|
});
|
|
88168
88378
|
|
|
88169
88379
|
// src/mcp-server/tools/securityGetBypassIp.ts
|
|
88170
|
-
var
|
|
88380
|
+
var args135, tool$securityGetBypassIp;
|
|
88171
88381
|
var init_securityGetBypassIp2 = __esm(() => {
|
|
88172
88382
|
init_securityGetBypassIp();
|
|
88173
88383
|
init_getbypassipop();
|
|
88174
88384
|
init_tools();
|
|
88175
|
-
|
|
88385
|
+
args135 = {
|
|
88176
88386
|
request: GetBypassIpRequest$inboundSchema
|
|
88177
88387
|
};
|
|
88178
88388
|
tool$securityGetBypassIp = {
|
|
@@ -88180,9 +88390,9 @@ var init_securityGetBypassIp2 = __esm(() => {
|
|
|
88180
88390
|
description: `Read System Bypass
|
|
88181
88391
|
|
|
88182
88392
|
Retrieve the system bypass rules configured for the specified project`,
|
|
88183
|
-
args:
|
|
88184
|
-
tool: async (client,
|
|
88185
|
-
const [result, apiCall] = await securityGetBypassIp(client,
|
|
88393
|
+
args: args135,
|
|
88394
|
+
tool: async (client, args136, ctx) => {
|
|
88395
|
+
const [result, apiCall] = await securityGetBypassIp(client, args136.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
88186
88396
|
if (!result.ok) {
|
|
88187
88397
|
return {
|
|
88188
88398
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -88786,9 +88996,9 @@ var init_getfirewallconfigop = __esm(() => {
|
|
|
88786
88996
|
|
|
88787
88997
|
// src/funcs/securityGetFirewallConfig.ts
|
|
88788
88998
|
function securityGetFirewallConfig(client, request, options) {
|
|
88789
|
-
return new APIPromise($
|
|
88999
|
+
return new APIPromise($do137(client, request, options));
|
|
88790
89000
|
}
|
|
88791
|
-
async function $
|
|
89001
|
+
async function $do137(client, request, options) {
|
|
88792
89002
|
const parsed = safeParse(request, (value) => GetFirewallConfigRequest$outboundSchema.parse(value), "Input validation failed");
|
|
88793
89003
|
if (!parsed.ok) {
|
|
88794
89004
|
return [parsed, { status: "invalid" }];
|
|
@@ -88870,12 +89080,12 @@ var init_securityGetFirewallConfig = __esm(() => {
|
|
|
88870
89080
|
});
|
|
88871
89081
|
|
|
88872
89082
|
// src/mcp-server/tools/securityGetFirewallConfig.ts
|
|
88873
|
-
var
|
|
89083
|
+
var args136, tool$securityGetFirewallConfig;
|
|
88874
89084
|
var init_securityGetFirewallConfig2 = __esm(() => {
|
|
88875
89085
|
init_securityGetFirewallConfig();
|
|
88876
89086
|
init_getfirewallconfigop();
|
|
88877
89087
|
init_tools();
|
|
88878
|
-
|
|
89088
|
+
args136 = {
|
|
88879
89089
|
request: GetFirewallConfigRequest$inboundSchema
|
|
88880
89090
|
};
|
|
88881
89091
|
tool$securityGetFirewallConfig = {
|
|
@@ -88883,9 +89093,9 @@ var init_securityGetFirewallConfig2 = __esm(() => {
|
|
|
88883
89093
|
description: `Read Firewall Configuration
|
|
88884
89094
|
|
|
88885
89095
|
Retrieve the specified firewall configuration for a project. The deployed configVersion will be \`active\``,
|
|
88886
|
-
args:
|
|
88887
|
-
tool: async (client,
|
|
88888
|
-
const [result, apiCall] = await securityGetFirewallConfig(client,
|
|
89096
|
+
args: args136,
|
|
89097
|
+
tool: async (client, args137, ctx) => {
|
|
89098
|
+
const [result, apiCall] = await securityGetFirewallConfig(client, args137.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
88889
89099
|
if (!result.ok) {
|
|
88890
89100
|
return {
|
|
88891
89101
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -90100,9 +90310,9 @@ var init_putfirewallconfigop = __esm(() => {
|
|
|
90100
90310
|
|
|
90101
90311
|
// src/funcs/securityPutFirewallConfig.ts
|
|
90102
90312
|
function securityPutFirewallConfig(client, request, options) {
|
|
90103
|
-
return new APIPromise($
|
|
90313
|
+
return new APIPromise($do138(client, request, options));
|
|
90104
90314
|
}
|
|
90105
|
-
async function $
|
|
90315
|
+
async function $do138(client, request, options) {
|
|
90106
90316
|
const parsed = safeParse(request, (value) => PutFirewallConfigRequest$outboundSchema.parse(value), "Input validation failed");
|
|
90107
90317
|
if (!parsed.ok) {
|
|
90108
90318
|
return [parsed, { status: "invalid" }];
|
|
@@ -90179,12 +90389,12 @@ var init_securityPutFirewallConfig = __esm(() => {
|
|
|
90179
90389
|
});
|
|
90180
90390
|
|
|
90181
90391
|
// src/mcp-server/tools/securityPutFirewallConfig.ts
|
|
90182
|
-
var
|
|
90392
|
+
var args137, tool$securityPutFirewallConfig;
|
|
90183
90393
|
var init_securityPutFirewallConfig2 = __esm(() => {
|
|
90184
90394
|
init_securityPutFirewallConfig();
|
|
90185
90395
|
init_putfirewallconfigop();
|
|
90186
90396
|
init_tools();
|
|
90187
|
-
|
|
90397
|
+
args137 = {
|
|
90188
90398
|
request: PutFirewallConfigRequest$inboundSchema
|
|
90189
90399
|
};
|
|
90190
90400
|
tool$securityPutFirewallConfig = {
|
|
@@ -90192,9 +90402,9 @@ var init_securityPutFirewallConfig2 = __esm(() => {
|
|
|
90192
90402
|
description: `Put Firewall Configuration
|
|
90193
90403
|
|
|
90194
90404
|
Set the firewall configuration to provided rules and settings. Creates or overwrite the existing firewall configuration.`,
|
|
90195
|
-
args:
|
|
90196
|
-
tool: async (client,
|
|
90197
|
-
const [result, apiCall] = await securityPutFirewallConfig(client,
|
|
90405
|
+
args: args137,
|
|
90406
|
+
tool: async (client, args138, ctx) => {
|
|
90407
|
+
const [result, apiCall] = await securityPutFirewallConfig(client, args138.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
90198
90408
|
if (!result.ok) {
|
|
90199
90409
|
return {
|
|
90200
90410
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -90304,9 +90514,9 @@ var init_removebypassipop = __esm(() => {
|
|
|
90304
90514
|
|
|
90305
90515
|
// src/funcs/securityRemoveBypassIp.ts
|
|
90306
90516
|
function securityRemoveBypassIp(client, request, options) {
|
|
90307
|
-
return new APIPromise($
|
|
90517
|
+
return new APIPromise($do139(client, request, options));
|
|
90308
90518
|
}
|
|
90309
|
-
async function $
|
|
90519
|
+
async function $do139(client, request, options) {
|
|
90310
90520
|
const parsed = safeParse(request, (value) => RemoveBypassIpRequest$outboundSchema.parse(value), "Input validation failed");
|
|
90311
90521
|
if (!parsed.ok) {
|
|
90312
90522
|
return [parsed, { status: "invalid" }];
|
|
@@ -90383,12 +90593,12 @@ var init_securityRemoveBypassIp = __esm(() => {
|
|
|
90383
90593
|
});
|
|
90384
90594
|
|
|
90385
90595
|
// src/mcp-server/tools/securityRemoveBypassIp.ts
|
|
90386
|
-
var
|
|
90596
|
+
var args138, tool$securityRemoveBypassIp;
|
|
90387
90597
|
var init_securityRemoveBypassIp2 = __esm(() => {
|
|
90388
90598
|
init_securityRemoveBypassIp();
|
|
90389
90599
|
init_removebypassipop();
|
|
90390
90600
|
init_tools();
|
|
90391
|
-
|
|
90601
|
+
args138 = {
|
|
90392
90602
|
request: RemoveBypassIpRequest$inboundSchema
|
|
90393
90603
|
};
|
|
90394
90604
|
tool$securityRemoveBypassIp = {
|
|
@@ -90396,9 +90606,9 @@ var init_securityRemoveBypassIp2 = __esm(() => {
|
|
|
90396
90606
|
description: `Remove System Bypass Rule
|
|
90397
90607
|
|
|
90398
90608
|
Remove system bypass rules`,
|
|
90399
|
-
args:
|
|
90400
|
-
tool: async (client,
|
|
90401
|
-
const [result, apiCall] = await securityRemoveBypassIp(client,
|
|
90609
|
+
args: args138,
|
|
90610
|
+
tool: async (client, args139, ctx) => {
|
|
90611
|
+
const [result, apiCall] = await securityRemoveBypassIp(client, args139.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
90402
90612
|
if (!result.ok) {
|
|
90403
90613
|
return {
|
|
90404
90614
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -90468,9 +90678,9 @@ var init_updateattackchallengemodeop = __esm(() => {
|
|
|
90468
90678
|
|
|
90469
90679
|
// src/funcs/securityUpdateAttackChallengeMode.ts
|
|
90470
90680
|
function securityUpdateAttackChallengeMode(client, request, options) {
|
|
90471
|
-
return new APIPromise($
|
|
90681
|
+
return new APIPromise($do140(client, request, options));
|
|
90472
90682
|
}
|
|
90473
|
-
async function $
|
|
90683
|
+
async function $do140(client, request, options) {
|
|
90474
90684
|
const parsed = safeParse(request, (value) => UpdateAttackChallengeModeRequest$outboundSchema.parse(value), "Input validation failed");
|
|
90475
90685
|
if (!parsed.ok) {
|
|
90476
90686
|
return [parsed, { status: "invalid" }];
|
|
@@ -90546,12 +90756,12 @@ var init_securityUpdateAttackChallengeMode = __esm(() => {
|
|
|
90546
90756
|
});
|
|
90547
90757
|
|
|
90548
90758
|
// src/mcp-server/tools/securityUpdateAttackChallengeMode.ts
|
|
90549
|
-
var
|
|
90759
|
+
var args139, tool$securityUpdateAttackChallengeMode;
|
|
90550
90760
|
var init_securityUpdateAttackChallengeMode2 = __esm(() => {
|
|
90551
90761
|
init_securityUpdateAttackChallengeMode();
|
|
90552
90762
|
init_updateattackchallengemodeop();
|
|
90553
90763
|
init_tools();
|
|
90554
|
-
|
|
90764
|
+
args139 = {
|
|
90555
90765
|
request: UpdateAttackChallengeModeRequest$inboundSchema
|
|
90556
90766
|
};
|
|
90557
90767
|
tool$securityUpdateAttackChallengeMode = {
|
|
@@ -90559,9 +90769,9 @@ var init_securityUpdateAttackChallengeMode2 = __esm(() => {
|
|
|
90559
90769
|
description: `Update Attack Challenge mode
|
|
90560
90770
|
|
|
90561
90771
|
Update the setting for determining if the project has Attack Challenge mode enabled.`,
|
|
90562
|
-
args:
|
|
90563
|
-
tool: async (client,
|
|
90564
|
-
const [result, apiCall] = await securityUpdateAttackChallengeMode(client,
|
|
90772
|
+
args: args139,
|
|
90773
|
+
tool: async (client, args140, ctx) => {
|
|
90774
|
+
const [result, apiCall] = await securityUpdateAttackChallengeMode(client, args140.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
90565
90775
|
if (!result.ok) {
|
|
90566
90776
|
return {
|
|
90567
90777
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -91561,9 +91771,9 @@ var init_updatefirewallconfigop = __esm(() => {
|
|
|
91561
91771
|
|
|
91562
91772
|
// src/funcs/securityUpdateFirewallConfig.ts
|
|
91563
91773
|
function securityUpdateFirewallConfig(client, request, options) {
|
|
91564
|
-
return new APIPromise($
|
|
91774
|
+
return new APIPromise($do141(client, request, options));
|
|
91565
91775
|
}
|
|
91566
|
-
async function $
|
|
91776
|
+
async function $do141(client, request, options) {
|
|
91567
91777
|
const parsed = safeParse(request, (value) => UpdateFirewallConfigRequest$outboundSchema.parse(value), "Input validation failed");
|
|
91568
91778
|
if (!parsed.ok) {
|
|
91569
91779
|
return [parsed, { status: "invalid" }];
|
|
@@ -91640,12 +91850,12 @@ var init_securityUpdateFirewallConfig = __esm(() => {
|
|
|
91640
91850
|
});
|
|
91641
91851
|
|
|
91642
91852
|
// src/mcp-server/tools/securityUpdateFirewallConfig.ts
|
|
91643
|
-
var
|
|
91853
|
+
var args140, tool$securityUpdateFirewallConfig;
|
|
91644
91854
|
var init_securityUpdateFirewallConfig2 = __esm(() => {
|
|
91645
91855
|
init_securityUpdateFirewallConfig();
|
|
91646
91856
|
init_updatefirewallconfigop();
|
|
91647
91857
|
init_tools();
|
|
91648
|
-
|
|
91858
|
+
args140 = {
|
|
91649
91859
|
request: UpdateFirewallConfigRequest$inboundSchema
|
|
91650
91860
|
};
|
|
91651
91861
|
tool$securityUpdateFirewallConfig = {
|
|
@@ -91653,9 +91863,9 @@ var init_securityUpdateFirewallConfig2 = __esm(() => {
|
|
|
91653
91863
|
description: `Update Firewall Configuration
|
|
91654
91864
|
|
|
91655
91865
|
Process updates to modify the existing firewall config for a project`,
|
|
91656
|
-
args:
|
|
91657
|
-
tool: async (client,
|
|
91658
|
-
const [result, apiCall] = await securityUpdateFirewallConfig(client,
|
|
91866
|
+
args: args140,
|
|
91867
|
+
tool: async (client, args141, ctx) => {
|
|
91868
|
+
const [result, apiCall] = await securityUpdateFirewallConfig(client, args141.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
91659
91869
|
if (!result.ok) {
|
|
91660
91870
|
return {
|
|
91661
91871
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -91742,9 +91952,9 @@ var init_createteamop = __esm(() => {
|
|
|
91742
91952
|
|
|
91743
91953
|
// src/funcs/teamsCreateTeam.ts
|
|
91744
91954
|
function teamsCreateTeam(client, request, options) {
|
|
91745
|
-
return new APIPromise($
|
|
91955
|
+
return new APIPromise($do142(client, request, options));
|
|
91746
91956
|
}
|
|
91747
|
-
async function $
|
|
91957
|
+
async function $do142(client, request, options) {
|
|
91748
91958
|
const parsed = safeParse(request, (value) => CreateTeamRequestBody$outboundSchema.parse(value), "Input validation failed");
|
|
91749
91959
|
if (!parsed.ok) {
|
|
91750
91960
|
return [parsed, { status: "invalid" }];
|
|
@@ -91814,12 +92024,12 @@ var init_teamsCreateTeam = __esm(() => {
|
|
|
91814
92024
|
});
|
|
91815
92025
|
|
|
91816
92026
|
// src/mcp-server/tools/teamsCreateTeam.ts
|
|
91817
|
-
var
|
|
92027
|
+
var args141, tool$teamsCreateTeam;
|
|
91818
92028
|
var init_teamsCreateTeam2 = __esm(() => {
|
|
91819
92029
|
init_teamsCreateTeam();
|
|
91820
92030
|
init_createteamop();
|
|
91821
92031
|
init_tools();
|
|
91822
|
-
|
|
92032
|
+
args141 = {
|
|
91823
92033
|
request: CreateTeamRequestBody$inboundSchema
|
|
91824
92034
|
};
|
|
91825
92035
|
tool$teamsCreateTeam = {
|
|
@@ -91827,9 +92037,9 @@ var init_teamsCreateTeam2 = __esm(() => {
|
|
|
91827
92037
|
description: `Create a Team
|
|
91828
92038
|
|
|
91829
92039
|
Create a new Team under your account. You need to send a POST request with the desired Team slug, and optionally the Team name.`,
|
|
91830
|
-
args:
|
|
91831
|
-
tool: async (client,
|
|
91832
|
-
const [result, apiCall] = await teamsCreateTeam(client,
|
|
92040
|
+
args: args141,
|
|
92041
|
+
tool: async (client, args142, ctx) => {
|
|
92042
|
+
const [result, apiCall] = await teamsCreateTeam(client, args142.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
91833
92043
|
if (!result.ok) {
|
|
91834
92044
|
return {
|
|
91835
92045
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -91909,9 +92119,9 @@ var init_deleteteamop = __esm(() => {
|
|
|
91909
92119
|
|
|
91910
92120
|
// src/funcs/teamsDeleteTeam.ts
|
|
91911
92121
|
function teamsDeleteTeam(client, request, options) {
|
|
91912
|
-
return new APIPromise($
|
|
92122
|
+
return new APIPromise($do143(client, request, options));
|
|
91913
92123
|
}
|
|
91914
|
-
async function $
|
|
92124
|
+
async function $do143(client, request, options) {
|
|
91915
92125
|
const parsed = safeParse(request, (value) => DeleteTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
91916
92126
|
if (!parsed.ok) {
|
|
91917
92127
|
return [parsed, { status: "invalid" }];
|
|
@@ -91993,12 +92203,12 @@ var init_teamsDeleteTeam = __esm(() => {
|
|
|
91993
92203
|
});
|
|
91994
92204
|
|
|
91995
92205
|
// src/mcp-server/tools/teamsDeleteTeam.ts
|
|
91996
|
-
var
|
|
92206
|
+
var args142, tool$teamsDeleteTeam;
|
|
91997
92207
|
var init_teamsDeleteTeam2 = __esm(() => {
|
|
91998
92208
|
init_teamsDeleteTeam();
|
|
91999
92209
|
init_deleteteamop();
|
|
92000
92210
|
init_tools();
|
|
92001
|
-
|
|
92211
|
+
args142 = {
|
|
92002
92212
|
request: DeleteTeamRequest$inboundSchema
|
|
92003
92213
|
};
|
|
92004
92214
|
tool$teamsDeleteTeam = {
|
|
@@ -92006,9 +92216,9 @@ var init_teamsDeleteTeam2 = __esm(() => {
|
|
|
92006
92216
|
description: `Delete a Team
|
|
92007
92217
|
|
|
92008
92218
|
Delete a team under your account. You need to send a \`DELETE\` request with the desired team \`id\`. An optional array of reasons for deletion may also be sent.`,
|
|
92009
|
-
args:
|
|
92010
|
-
tool: async (client,
|
|
92011
|
-
const [result, apiCall] = await teamsDeleteTeam(client,
|
|
92219
|
+
args: args142,
|
|
92220
|
+
tool: async (client, args143, ctx) => {
|
|
92221
|
+
const [result, apiCall] = await teamsDeleteTeam(client, args143.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
92012
92222
|
if (!result.ok) {
|
|
92013
92223
|
return {
|
|
92014
92224
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -92051,9 +92261,9 @@ var init_deleteteaminvitecodeop = __esm(() => {
|
|
|
92051
92261
|
|
|
92052
92262
|
// src/funcs/teamsDeleteTeamInviteCode.ts
|
|
92053
92263
|
function teamsDeleteTeamInviteCode(client, request, options) {
|
|
92054
|
-
return new APIPromise($
|
|
92264
|
+
return new APIPromise($do144(client, request, options));
|
|
92055
92265
|
}
|
|
92056
|
-
async function $
|
|
92266
|
+
async function $do144(client, request, options) {
|
|
92057
92267
|
const parsed = safeParse(request, (value) => DeleteTeamInviteCodeRequest$outboundSchema.parse(value), "Input validation failed");
|
|
92058
92268
|
if (!parsed.ok) {
|
|
92059
92269
|
return [parsed, { status: "invalid" }];
|
|
@@ -92133,12 +92343,12 @@ var init_teamsDeleteTeamInviteCode = __esm(() => {
|
|
|
92133
92343
|
});
|
|
92134
92344
|
|
|
92135
92345
|
// src/mcp-server/tools/teamsDeleteTeamInviteCode.ts
|
|
92136
|
-
var
|
|
92346
|
+
var args143, tool$teamsDeleteTeamInviteCode;
|
|
92137
92347
|
var init_teamsDeleteTeamInviteCode2 = __esm(() => {
|
|
92138
92348
|
init_teamsDeleteTeamInviteCode();
|
|
92139
92349
|
init_deleteteaminvitecodeop();
|
|
92140
92350
|
init_tools();
|
|
92141
|
-
|
|
92351
|
+
args143 = {
|
|
92142
92352
|
request: DeleteTeamInviteCodeRequest$inboundSchema
|
|
92143
92353
|
};
|
|
92144
92354
|
tool$teamsDeleteTeamInviteCode = {
|
|
@@ -92146,9 +92356,9 @@ var init_teamsDeleteTeamInviteCode2 = __esm(() => {
|
|
|
92146
92356
|
description: `Delete a Team invite code
|
|
92147
92357
|
|
|
92148
92358
|
Delete an active Team invite code.`,
|
|
92149
|
-
args:
|
|
92150
|
-
tool: async (client,
|
|
92151
|
-
const [result, apiCall] = await teamsDeleteTeamInviteCode(client,
|
|
92359
|
+
args: args143,
|
|
92360
|
+
tool: async (client, args144, ctx) => {
|
|
92361
|
+
const [result, apiCall] = await teamsDeleteTeamInviteCode(client, args144.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
92152
92362
|
if (!result.ok) {
|
|
92153
92363
|
return {
|
|
92154
92364
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -92181,9 +92391,9 @@ var init_getteamop = __esm(() => {
|
|
|
92181
92391
|
|
|
92182
92392
|
// src/funcs/teamsGetTeam.ts
|
|
92183
92393
|
function teamsGetTeam(client, request, options) {
|
|
92184
|
-
return new APIPromise($
|
|
92394
|
+
return new APIPromise($do145(client, request, options));
|
|
92185
92395
|
}
|
|
92186
|
-
async function $
|
|
92396
|
+
async function $do145(client, request, options) {
|
|
92187
92397
|
const parsed = safeParse(request, (value) => GetTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
92188
92398
|
if (!parsed.ok) {
|
|
92189
92399
|
return [parsed, { status: "invalid" }];
|
|
@@ -92264,12 +92474,12 @@ var init_teamsGetTeam = __esm(() => {
|
|
|
92264
92474
|
});
|
|
92265
92475
|
|
|
92266
92476
|
// src/mcp-server/tools/teamsGetTeam.ts
|
|
92267
|
-
var
|
|
92477
|
+
var args144, tool$teamsGetTeam;
|
|
92268
92478
|
var init_teamsGetTeam2 = __esm(() => {
|
|
92269
92479
|
init_teamsGetTeam();
|
|
92270
92480
|
init_getteamop();
|
|
92271
92481
|
init_tools();
|
|
92272
|
-
|
|
92482
|
+
args144 = {
|
|
92273
92483
|
request: GetTeamRequest$inboundSchema
|
|
92274
92484
|
};
|
|
92275
92485
|
tool$teamsGetTeam = {
|
|
@@ -92277,9 +92487,9 @@ var init_teamsGetTeam2 = __esm(() => {
|
|
|
92277
92487
|
description: `Get a Team
|
|
92278
92488
|
|
|
92279
92489
|
Get information for the Team specified by the \`teamId\` parameter.`,
|
|
92280
|
-
args:
|
|
92281
|
-
tool: async (client,
|
|
92282
|
-
const [result, apiCall] = await teamsGetTeam(client,
|
|
92490
|
+
args: args144,
|
|
92491
|
+
tool: async (client, args145, ctx) => {
|
|
92492
|
+
const [result, apiCall] = await teamsGetTeam(client, args145.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
92283
92493
|
if (!result.ok) {
|
|
92284
92494
|
return {
|
|
92285
92495
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -92421,9 +92631,9 @@ var init_getteamaccessrequestop = __esm(() => {
|
|
|
92421
92631
|
|
|
92422
92632
|
// src/funcs/teamsGetTeamAccessRequest.ts
|
|
92423
92633
|
function teamsGetTeamAccessRequest(client, request, options) {
|
|
92424
|
-
return new APIPromise($
|
|
92634
|
+
return new APIPromise($do146(client, request, options));
|
|
92425
92635
|
}
|
|
92426
|
-
async function $
|
|
92636
|
+
async function $do146(client, request, options) {
|
|
92427
92637
|
const parsed = safeParse(request, (value) => GetTeamAccessRequestRequest$outboundSchema.parse(value), "Input validation failed");
|
|
92428
92638
|
if (!parsed.ok) {
|
|
92429
92639
|
return [parsed, { status: "invalid" }];
|
|
@@ -92503,12 +92713,12 @@ var init_teamsGetTeamAccessRequest = __esm(() => {
|
|
|
92503
92713
|
});
|
|
92504
92714
|
|
|
92505
92715
|
// src/mcp-server/tools/teamsGetTeamAccessRequest.ts
|
|
92506
|
-
var
|
|
92716
|
+
var args145, tool$teamsGetTeamAccessRequest;
|
|
92507
92717
|
var init_teamsGetTeamAccessRequest2 = __esm(() => {
|
|
92508
92718
|
init_teamsGetTeamAccessRequest();
|
|
92509
92719
|
init_getteamaccessrequestop();
|
|
92510
92720
|
init_tools();
|
|
92511
|
-
|
|
92721
|
+
args145 = {
|
|
92512
92722
|
request: GetTeamAccessRequestRequest$inboundSchema
|
|
92513
92723
|
};
|
|
92514
92724
|
tool$teamsGetTeamAccessRequest = {
|
|
@@ -92516,9 +92726,9 @@ var init_teamsGetTeamAccessRequest2 = __esm(() => {
|
|
|
92516
92726
|
description: `Get access request status
|
|
92517
92727
|
|
|
92518
92728
|
Check the status of a join request. It'll respond with a 404 if the request has been declined. If no \`userId\` path segment was provided, this endpoint will instead return the status of the authenticated user.`,
|
|
92519
|
-
args:
|
|
92520
|
-
tool: async (client,
|
|
92521
|
-
const [result, apiCall] = await teamsGetTeamAccessRequest(client,
|
|
92729
|
+
args: args145,
|
|
92730
|
+
tool: async (client, args146, ctx) => {
|
|
92731
|
+
const [result, apiCall] = await teamsGetTeamAccessRequest(client, args146.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
92522
92732
|
if (!result.ok) {
|
|
92523
92733
|
return {
|
|
92524
92734
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -92818,9 +93028,9 @@ var init_getteammembersop = __esm(() => {
|
|
|
92818
93028
|
|
|
92819
93029
|
// src/funcs/teamsGetTeamMembers.ts
|
|
92820
93030
|
function teamsGetTeamMembers(client, request, options) {
|
|
92821
|
-
return new APIPromise($
|
|
93031
|
+
return new APIPromise($do147(client, request, options));
|
|
92822
93032
|
}
|
|
92823
|
-
async function $
|
|
93033
|
+
async function $do147(client, request, options) {
|
|
92824
93034
|
const parsed = safeParse(request, (value) => GetTeamMembersRequest$outboundSchema.parse(value), "Input validation failed");
|
|
92825
93035
|
if (!parsed.ok) {
|
|
92826
93036
|
return [parsed, { status: "invalid" }];
|
|
@@ -92900,12 +93110,12 @@ var init_teamsGetTeamMembers = __esm(() => {
|
|
|
92900
93110
|
});
|
|
92901
93111
|
|
|
92902
93112
|
// src/mcp-server/tools/teamsGetTeamMembers.ts
|
|
92903
|
-
var
|
|
93113
|
+
var args146, tool$teamsGetTeamMembers;
|
|
92904
93114
|
var init_teamsGetTeamMembers2 = __esm(() => {
|
|
92905
93115
|
init_teamsGetTeamMembers();
|
|
92906
93116
|
init_getteammembersop();
|
|
92907
93117
|
init_tools();
|
|
92908
|
-
|
|
93118
|
+
args146 = {
|
|
92909
93119
|
request: GetTeamMembersRequest$inboundSchema
|
|
92910
93120
|
};
|
|
92911
93121
|
tool$teamsGetTeamMembers = {
|
|
@@ -92913,9 +93123,9 @@ var init_teamsGetTeamMembers2 = __esm(() => {
|
|
|
92913
93123
|
description: `List team members
|
|
92914
93124
|
|
|
92915
93125
|
Get a paginated list of team members for the provided team.`,
|
|
92916
|
-
args:
|
|
92917
|
-
tool: async (client,
|
|
92918
|
-
const [result, apiCall] = await teamsGetTeamMembers(client,
|
|
93126
|
+
args: args146,
|
|
93127
|
+
tool: async (client, args147, ctx) => {
|
|
93128
|
+
const [result, apiCall] = await teamsGetTeamMembers(client, args147.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
92919
93129
|
if (!result.ok) {
|
|
92920
93130
|
return {
|
|
92921
93131
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -93190,9 +93400,9 @@ var init_getteamsop = __esm(() => {
|
|
|
93190
93400
|
|
|
93191
93401
|
// src/funcs/teamsGetTeams.ts
|
|
93192
93402
|
function teamsGetTeams(client, request, options) {
|
|
93193
|
-
return new APIPromise($
|
|
93403
|
+
return new APIPromise($do148(client, request, options));
|
|
93194
93404
|
}
|
|
93195
|
-
async function $
|
|
93405
|
+
async function $do148(client, request, options) {
|
|
93196
93406
|
const parsed = safeParse(request, (value) => GetTeamsRequest$outboundSchema.parse(value), "Input validation failed");
|
|
93197
93407
|
if (!parsed.ok) {
|
|
93198
93408
|
return [parsed, { status: "invalid" }];
|
|
@@ -93267,12 +93477,12 @@ var init_teamsGetTeams = __esm(() => {
|
|
|
93267
93477
|
});
|
|
93268
93478
|
|
|
93269
93479
|
// src/mcp-server/tools/teamsGetTeams.ts
|
|
93270
|
-
var
|
|
93480
|
+
var args147, tool$teamsGetTeams;
|
|
93271
93481
|
var init_teamsGetTeams2 = __esm(() => {
|
|
93272
93482
|
init_teamsGetTeams();
|
|
93273
93483
|
init_getteamsop();
|
|
93274
93484
|
init_tools();
|
|
93275
|
-
|
|
93485
|
+
args147 = {
|
|
93276
93486
|
request: GetTeamsRequest$inboundSchema
|
|
93277
93487
|
};
|
|
93278
93488
|
tool$teamsGetTeams = {
|
|
@@ -93280,9 +93490,9 @@ var init_teamsGetTeams2 = __esm(() => {
|
|
|
93280
93490
|
description: `List all teams
|
|
93281
93491
|
|
|
93282
93492
|
Get a paginated list of all the Teams the authenticated User is a member of.`,
|
|
93283
|
-
args:
|
|
93284
|
-
tool: async (client,
|
|
93285
|
-
const [result, apiCall] = await teamsGetTeams(client,
|
|
93493
|
+
args: args147,
|
|
93494
|
+
tool: async (client, args148, ctx) => {
|
|
93495
|
+
const [result, apiCall] = await teamsGetTeams(client, args148.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
93286
93496
|
if (!result.ok) {
|
|
93287
93497
|
return {
|
|
93288
93498
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -93514,9 +93724,9 @@ var init_inviteusertoteamop = __esm(() => {
|
|
|
93514
93724
|
|
|
93515
93725
|
// src/funcs/teamsInviteUserToTeam.ts
|
|
93516
93726
|
function teamsInviteUserToTeam(client, request, options) {
|
|
93517
|
-
return new APIPromise($
|
|
93727
|
+
return new APIPromise($do149(client, request, options));
|
|
93518
93728
|
}
|
|
93519
|
-
async function $
|
|
93729
|
+
async function $do149(client, request, options) {
|
|
93520
93730
|
const parsed = safeParse(request, (value) => InviteUserToTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
93521
93731
|
if (!parsed.ok) {
|
|
93522
93732
|
return [parsed, { status: "invalid" }];
|
|
@@ -93593,12 +93803,12 @@ var init_teamsInviteUserToTeam = __esm(() => {
|
|
|
93593
93803
|
});
|
|
93594
93804
|
|
|
93595
93805
|
// src/mcp-server/tools/teamsInviteUserToTeam.ts
|
|
93596
|
-
var
|
|
93806
|
+
var args148, tool$teamsInviteUserToTeam;
|
|
93597
93807
|
var init_teamsInviteUserToTeam2 = __esm(() => {
|
|
93598
93808
|
init_teamsInviteUserToTeam();
|
|
93599
93809
|
init_inviteusertoteamop();
|
|
93600
93810
|
init_tools();
|
|
93601
|
-
|
|
93811
|
+
args148 = {
|
|
93602
93812
|
request: InviteUserToTeamRequest$inboundSchema
|
|
93603
93813
|
};
|
|
93604
93814
|
tool$teamsInviteUserToTeam = {
|
|
@@ -93606,9 +93816,9 @@ var init_teamsInviteUserToTeam2 = __esm(() => {
|
|
|
93606
93816
|
description: `Invite a user
|
|
93607
93817
|
|
|
93608
93818
|
Invite a user to join the team specified in the URL. The authenticated user needs to be an \`OWNER\` in order to successfully invoke this endpoint. The user can be specified with an email or an ID. If both email and ID are provided, ID will take priority.`,
|
|
93609
|
-
args:
|
|
93610
|
-
tool: async (client,
|
|
93611
|
-
const [result, apiCall] = await teamsInviteUserToTeam(client,
|
|
93819
|
+
args: args148,
|
|
93820
|
+
tool: async (client, args149, ctx) => {
|
|
93821
|
+
const [result, apiCall] = await teamsInviteUserToTeam(client, args149.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
93612
93822
|
if (!result.ok) {
|
|
93613
93823
|
return {
|
|
93614
93824
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -93676,9 +93886,9 @@ var init_jointeamop = __esm(() => {
|
|
|
93676
93886
|
|
|
93677
93887
|
// src/funcs/teamsJoinTeam.ts
|
|
93678
93888
|
function teamsJoinTeam(client, request, options) {
|
|
93679
|
-
return new APIPromise($
|
|
93889
|
+
return new APIPromise($do150(client, request, options));
|
|
93680
93890
|
}
|
|
93681
|
-
async function $
|
|
93891
|
+
async function $do150(client, request, options) {
|
|
93682
93892
|
const parsed = safeParse(request, (value) => JoinTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
93683
93893
|
if (!parsed.ok) {
|
|
93684
93894
|
return [parsed, { status: "invalid" }];
|
|
@@ -93755,12 +93965,12 @@ var init_teamsJoinTeam = __esm(() => {
|
|
|
93755
93965
|
});
|
|
93756
93966
|
|
|
93757
93967
|
// src/mcp-server/tools/teamsJoinTeam.ts
|
|
93758
|
-
var
|
|
93968
|
+
var args149, tool$teamsJoinTeam;
|
|
93759
93969
|
var init_teamsJoinTeam2 = __esm(() => {
|
|
93760
93970
|
init_teamsJoinTeam();
|
|
93761
93971
|
init_jointeamop();
|
|
93762
93972
|
init_tools();
|
|
93763
|
-
|
|
93973
|
+
args149 = {
|
|
93764
93974
|
request: JoinTeamRequest$inboundSchema
|
|
93765
93975
|
};
|
|
93766
93976
|
tool$teamsJoinTeam = {
|
|
@@ -93768,9 +93978,9 @@ var init_teamsJoinTeam2 = __esm(() => {
|
|
|
93768
93978
|
description: `Join a team
|
|
93769
93979
|
|
|
93770
93980
|
Join a team with a provided invite code or team ID.`,
|
|
93771
|
-
args:
|
|
93772
|
-
tool: async (client,
|
|
93773
|
-
const [result, apiCall] = await teamsJoinTeam(client,
|
|
93981
|
+
args: args149,
|
|
93982
|
+
tool: async (client, args150, ctx) => {
|
|
93983
|
+
const [result, apiCall] = await teamsJoinTeam(client, args150.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
93774
93984
|
if (!result.ok) {
|
|
93775
93985
|
return {
|
|
93776
93986
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -93903,9 +94113,9 @@ var init_patchteamop = __esm(() => {
|
|
|
93903
94113
|
|
|
93904
94114
|
// src/funcs/teamsPatchTeam.ts
|
|
93905
94115
|
function teamsPatchTeam(client, request, options) {
|
|
93906
|
-
return new APIPromise($
|
|
94116
|
+
return new APIPromise($do151(client, request, options));
|
|
93907
94117
|
}
|
|
93908
|
-
async function $
|
|
94118
|
+
async function $do151(client, request, options) {
|
|
93909
94119
|
const parsed = safeParse(request, (value) => PatchTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
93910
94120
|
if (!parsed.ok) {
|
|
93911
94121
|
return [parsed, { status: "invalid" }];
|
|
@@ -93987,12 +94197,12 @@ var init_teamsPatchTeam = __esm(() => {
|
|
|
93987
94197
|
});
|
|
93988
94198
|
|
|
93989
94199
|
// src/mcp-server/tools/teamsPatchTeam.ts
|
|
93990
|
-
var
|
|
94200
|
+
var args150, tool$teamsPatchTeam;
|
|
93991
94201
|
var init_teamsPatchTeam2 = __esm(() => {
|
|
93992
94202
|
init_teamsPatchTeam();
|
|
93993
94203
|
init_patchteamop();
|
|
93994
94204
|
init_tools();
|
|
93995
|
-
|
|
94205
|
+
args150 = {
|
|
93996
94206
|
request: PatchTeamRequest$inboundSchema
|
|
93997
94207
|
};
|
|
93998
94208
|
tool$teamsPatchTeam = {
|
|
@@ -94000,9 +94210,9 @@ var init_teamsPatchTeam2 = __esm(() => {
|
|
|
94000
94210
|
description: `Update a Team
|
|
94001
94211
|
|
|
94002
94212
|
Update the information of a Team specified by the \`teamId\` parameter. The request body should contain the information that will be updated on the Team.`,
|
|
94003
|
-
args:
|
|
94004
|
-
tool: async (client,
|
|
94005
|
-
const [result, apiCall] = await teamsPatchTeam(client,
|
|
94213
|
+
args: args150,
|
|
94214
|
+
tool: async (client, args151, ctx) => {
|
|
94215
|
+
const [result, apiCall] = await teamsPatchTeam(client, args151.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
94006
94216
|
if (!result.ok) {
|
|
94007
94217
|
return {
|
|
94008
94218
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -94047,9 +94257,9 @@ var init_removeteammemberop = __esm(() => {
|
|
|
94047
94257
|
|
|
94048
94258
|
// src/funcs/teamsRemoveTeamMember.ts
|
|
94049
94259
|
function teamsRemoveTeamMember(client, request, options) {
|
|
94050
|
-
return new APIPromise($
|
|
94260
|
+
return new APIPromise($do152(client, request, options));
|
|
94051
94261
|
}
|
|
94052
|
-
async function $
|
|
94262
|
+
async function $do152(client, request, options) {
|
|
94053
94263
|
const parsed = safeParse(request, (value) => RemoveTeamMemberRequest$outboundSchema.parse(value), "Input validation failed");
|
|
94054
94264
|
if (!parsed.ok) {
|
|
94055
94265
|
return [parsed, { status: "invalid" }];
|
|
@@ -94133,12 +94343,12 @@ var init_teamsRemoveTeamMember = __esm(() => {
|
|
|
94133
94343
|
});
|
|
94134
94344
|
|
|
94135
94345
|
// src/mcp-server/tools/teamsRemoveTeamMember.ts
|
|
94136
|
-
var
|
|
94346
|
+
var args151, tool$teamsRemoveTeamMember;
|
|
94137
94347
|
var init_teamsRemoveTeamMember2 = __esm(() => {
|
|
94138
94348
|
init_teamsRemoveTeamMember();
|
|
94139
94349
|
init_removeteammemberop();
|
|
94140
94350
|
init_tools();
|
|
94141
|
-
|
|
94351
|
+
args151 = {
|
|
94142
94352
|
request: RemoveTeamMemberRequest$inboundSchema
|
|
94143
94353
|
};
|
|
94144
94354
|
tool$teamsRemoveTeamMember = {
|
|
@@ -94146,9 +94356,9 @@ var init_teamsRemoveTeamMember2 = __esm(() => {
|
|
|
94146
94356
|
description: `Remove a Team Member
|
|
94147
94357
|
|
|
94148
94358
|
Remove a Team Member from the Team, or dismiss a user that requested access, or leave a team.`,
|
|
94149
|
-
args:
|
|
94150
|
-
tool: async (client,
|
|
94151
|
-
const [result, apiCall] = await teamsRemoveTeamMember(client,
|
|
94359
|
+
args: args151,
|
|
94360
|
+
tool: async (client, args152, ctx) => {
|
|
94361
|
+
const [result, apiCall] = await teamsRemoveTeamMember(client, args152.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
94152
94362
|
if (!result.ok) {
|
|
94153
94363
|
return {
|
|
94154
94364
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -94350,9 +94560,9 @@ var init_requestaccesstoteamop = __esm(() => {
|
|
|
94350
94560
|
|
|
94351
94561
|
// src/funcs/teamsRequestAccessToTeam.ts
|
|
94352
94562
|
function teamsRequestAccessToTeam(client, request, options) {
|
|
94353
|
-
return new APIPromise($
|
|
94563
|
+
return new APIPromise($do153(client, request, options));
|
|
94354
94564
|
}
|
|
94355
|
-
async function $
|
|
94565
|
+
async function $do153(client, request, options) {
|
|
94356
94566
|
const parsed = safeParse(request, (value) => RequestAccessToTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
94357
94567
|
if (!parsed.ok) {
|
|
94358
94568
|
return [parsed, { status: "invalid" }];
|
|
@@ -94429,12 +94639,12 @@ var init_teamsRequestAccessToTeam = __esm(() => {
|
|
|
94429
94639
|
});
|
|
94430
94640
|
|
|
94431
94641
|
// src/mcp-server/tools/teamsRequestAccessToTeam.ts
|
|
94432
|
-
var
|
|
94642
|
+
var args152, tool$teamsRequestAccessToTeam;
|
|
94433
94643
|
var init_teamsRequestAccessToTeam2 = __esm(() => {
|
|
94434
94644
|
init_teamsRequestAccessToTeam();
|
|
94435
94645
|
init_requestaccesstoteamop();
|
|
94436
94646
|
init_tools();
|
|
94437
|
-
|
|
94647
|
+
args152 = {
|
|
94438
94648
|
request: RequestAccessToTeamRequest$inboundSchema
|
|
94439
94649
|
};
|
|
94440
94650
|
tool$teamsRequestAccessToTeam = {
|
|
@@ -94442,9 +94652,9 @@ var init_teamsRequestAccessToTeam2 = __esm(() => {
|
|
|
94442
94652
|
description: `Request access to a team
|
|
94443
94653
|
|
|
94444
94654
|
Request access to a team as a member. An owner has to approve the request. Only 10 users can request access to a team at the same time.`,
|
|
94445
|
-
args:
|
|
94446
|
-
tool: async (client,
|
|
94447
|
-
const [result, apiCall] = await teamsRequestAccessToTeam(client,
|
|
94655
|
+
args: args152,
|
|
94656
|
+
tool: async (client, args153, ctx) => {
|
|
94657
|
+
const [result, apiCall] = await teamsRequestAccessToTeam(client, args153.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
94448
94658
|
if (!result.ok) {
|
|
94449
94659
|
return {
|
|
94450
94660
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -94547,9 +94757,9 @@ var init_updateteammemberop = __esm(() => {
|
|
|
94547
94757
|
|
|
94548
94758
|
// src/funcs/teamsUpdateTeamMember.ts
|
|
94549
94759
|
function teamsUpdateTeamMember(client, request, options) {
|
|
94550
|
-
return new APIPromise($
|
|
94760
|
+
return new APIPromise($do154(client, request, options));
|
|
94551
94761
|
}
|
|
94552
|
-
async function $
|
|
94762
|
+
async function $do154(client, request, options) {
|
|
94553
94763
|
const parsed = safeParse(request, (value) => UpdateTeamMemberRequest$outboundSchema.parse(value), "Input validation failed");
|
|
94554
94764
|
if (!parsed.ok) {
|
|
94555
94765
|
return [parsed, { status: "invalid" }];
|
|
@@ -94630,12 +94840,12 @@ var init_teamsUpdateTeamMember = __esm(() => {
|
|
|
94630
94840
|
});
|
|
94631
94841
|
|
|
94632
94842
|
// src/mcp-server/tools/teamsUpdateTeamMember.ts
|
|
94633
|
-
var
|
|
94843
|
+
var args153, tool$teamsUpdateTeamMember;
|
|
94634
94844
|
var init_teamsUpdateTeamMember2 = __esm(() => {
|
|
94635
94845
|
init_teamsUpdateTeamMember();
|
|
94636
94846
|
init_updateteammemberop();
|
|
94637
94847
|
init_tools();
|
|
94638
|
-
|
|
94848
|
+
args153 = {
|
|
94639
94849
|
request: UpdateTeamMemberRequest$inboundSchema
|
|
94640
94850
|
};
|
|
94641
94851
|
tool$teamsUpdateTeamMember = {
|
|
@@ -94643,9 +94853,9 @@ var init_teamsUpdateTeamMember2 = __esm(() => {
|
|
|
94643
94853
|
description: `Update a Team Member
|
|
94644
94854
|
|
|
94645
94855
|
Update the membership of a Team Member on the Team specified by \`teamId\`, such as changing the _role_ of the member, or confirming a request to join the Team for an unconfirmed member. The authenticated user must be an \`OWNER\` of the Team.`,
|
|
94646
|
-
args:
|
|
94647
|
-
tool: async (client,
|
|
94648
|
-
const [result, apiCall] = await teamsUpdateTeamMember(client,
|
|
94856
|
+
args: args153,
|
|
94857
|
+
tool: async (client, args154, ctx) => {
|
|
94858
|
+
const [result, apiCall] = await teamsUpdateTeamMember(client, args154.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
94649
94859
|
if (!result.ok) {
|
|
94650
94860
|
return {
|
|
94651
94861
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -94790,12 +95000,14 @@ var init_authuser = __esm(() => {
|
|
|
94790
95000
|
BuildMachine$inboundSchema = objectType({
|
|
94791
95001
|
purchaseType: PurchaseType$inboundSchema.optional(),
|
|
94792
95002
|
abovePlan: booleanType().optional(),
|
|
95003
|
+
isDefaultBuildMachine: booleanType().optional(),
|
|
94793
95004
|
cores: numberType().optional(),
|
|
94794
95005
|
memory: numberType().optional()
|
|
94795
95006
|
});
|
|
94796
95007
|
BuildMachine$outboundSchema = objectType({
|
|
94797
95008
|
purchaseType: PurchaseType$outboundSchema.optional(),
|
|
94798
95009
|
abovePlan: booleanType().optional(),
|
|
95010
|
+
isDefaultBuildMachine: booleanType().optional(),
|
|
94799
95011
|
cores: numberType().optional(),
|
|
94800
95012
|
memory: numberType().optional()
|
|
94801
95013
|
});
|
|
@@ -95162,9 +95374,9 @@ var init_getauthuserop = __esm(() => {
|
|
|
95162
95374
|
|
|
95163
95375
|
// src/funcs/userGetAuthUser.ts
|
|
95164
95376
|
function userGetAuthUser(client, options) {
|
|
95165
|
-
return new APIPromise($
|
|
95377
|
+
return new APIPromise($do155(client, options));
|
|
95166
95378
|
}
|
|
95167
|
-
async function $
|
|
95379
|
+
async function $do155(client, options) {
|
|
95168
95380
|
const path = pathToFunc("/v2/user")();
|
|
95169
95381
|
const headers = new Headers(compactMap({
|
|
95170
95382
|
Accept: "application/json"
|
|
@@ -95248,7 +95460,7 @@ Retrieves information related to the currently authenticated User.`,
|
|
|
95248
95460
|
});
|
|
95249
95461
|
|
|
95250
95462
|
// src/models/userevent.ts
|
|
95251
|
-
var UserEventType, GrantType, AuthMethod, Tier, UserEventPayload131Role, UserEventPayload130Role, PreviousRole, UserEventPayloadRole, PayloadRole, StoreType, UserEventPayloadType, UserEventPayload97Type, PayloadPricingPlan, UserEventPayload96Type, PricingPlan, UserEventPayloadAction, TrustedIps, OldTrustedIps, PasswordProtection2, PasswordProtectionDeploymentType, OldPasswordProtection2, OldPasswordProtectionDeploymentType, SsoProtection2, DeploymentType, OldSsoProtection2, OldSsoProtectionDeploymentType, UserEventPayload73Role, PayloadOrigin, PayloadName, UserEventPayloadName, UserEventPayload62Action, Plan, UserEventCredentialsType, CredentialsType, PayloadImportFlowGitProvider, PayloadPurchaseType, PayloadViewPreference, PayloadFavoritesViewPreference, PayloadRecentsViewPreference, UserEventPayload62Name, PayloadReason, PayloadBlockedDueToOverageType, UserEventPayload62Role, PayloadTeamRoles, PayloadTeamPermissions, UserEventPayloadOrigin, UserEventPayload62Type, EnablePreviewFeedback, BlockReason, PayloadBlockReason, BlockType, UserEventPayloadBlockReason, PayloadBlockType, UserEventPayload62BlockReason, UserEventPayload62NewOwnerBlockReason, UserEventPayload62NewOwnerFeatureBlocksBlockReason, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason, OverageReason, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason, PayloadOverageReason, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason, UserEventPayloadOverageReason, PayloadVersion, UserEventPayload58OldEnvVarType, UserEventPayloadTarget, UserEventPayload58Type, UserEventPayload58Target, OldTarget, NewTarget, PayloadType, PayloadTarget, PayloadAction, Action, UserEventType$inboundSchema, UserEventType$outboundSchema, UserEventType$, Entities$inboundSchema, Entities$outboundSchema, Entities$, User$inboundSchema, User$outboundSchema, User$, GrantType$inboundSchema, GrantType$outboundSchema, GrantType$, AuthMethod$inboundSchema, AuthMethod$outboundSchema, AuthMethod$, OneHundredAndFortyEight$inboundSchema, OneHundredAndFortyEight$outboundSchema, OneHundredAndFortyEight$, UserEventPayload147Team$inboundSchema, UserEventPayload147Team$outboundSchema, UserEventPayload147Team$, UserEventPayload147Configuration$inboundSchema, UserEventPayload147Configuration$outboundSchema, UserEventPayload147Configuration$, UserEventPayloadPeering$inboundSchema, UserEventPayloadPeering$outboundSchema, UserEventPayloadPeering$, OneHundredAndFortySeven$inboundSchema, OneHundredAndFortySeven$outboundSchema, OneHundredAndFortySeven$, UserEventPayload146Team$inboundSchema, UserEventPayload146Team$outboundSchema, UserEventPayload146Team$, UserEventPayload146Configuration$inboundSchema, UserEventPayload146Configuration$outboundSchema, UserEventPayload146Configuration$, PayloadPeering$inboundSchema, PayloadPeering$outboundSchema, PayloadPeering$, OneHundredAndFortySix$inboundSchema, OneHundredAndFortySix$outboundSchema, OneHundredAndFortySix$, UserEventPayload145Team$inboundSchema, UserEventPayload145Team$outboundSchema, UserEventPayload145Team$, UserEventPayload145Configuration$inboundSchema, UserEventPayload145Configuration$outboundSchema, UserEventPayload145Configuration$, Peering$inboundSchema, Peering$outboundSchema, Peering$, OneHundredAndFortyFive$inboundSchema, OneHundredAndFortyFive$outboundSchema, OneHundredAndFortyFive$, OneHundredAndFortyFour$inboundSchema, OneHundredAndFortyFour$outboundSchema, OneHundredAndFortyFour$, OneHundredAndFortyThree$inboundSchema, OneHundredAndFortyThree$outboundSchema, OneHundredAndFortyThree$, OneHundredAndFortyTwo$inboundSchema, OneHundredAndFortyTwo$outboundSchema, OneHundredAndFortyTwo$, OneHundredAndFortyOne$inboundSchema, OneHundredAndFortyOne$outboundSchema, OneHundredAndFortyOne$, Tier$inboundSchema, Tier$outboundSchema, Tier$, OneHundredAndForty$inboundSchema, OneHundredAndForty$outboundSchema, OneHundredAndForty$, ProjectWebAnalytics$inboundSchema, ProjectWebAnalytics$outboundSchema, ProjectWebAnalytics$, PrevProjectWebAnalytics$inboundSchema, PrevProjectWebAnalytics$outboundSchema, PrevProjectWebAnalytics$, OneHundredAndThirtyNine$inboundSchema, OneHundredAndThirtyNine$outboundSchema, OneHundredAndThirtyNine$, Microfrontends2$inboundSchema, Microfrontends2$outboundSchema, Microfrontends2$, Microfrontends1$inboundSchema, Microfrontends1$outboundSchema, Microfrontends1$, Microfrontends$inboundSchema, Microfrontends$outboundSchema, Microfrontends$, UserEventPayload138Project$inboundSchema, UserEventPayload138Project$outboundSchema, UserEventPayload138Project$, UserEventMicrofrontends2$inboundSchema, UserEventMicrofrontends2$outboundSchema, UserEventMicrofrontends2$, UserEventMicrofrontends1$inboundSchema, UserEventMicrofrontends1$outboundSchema, UserEventMicrofrontends1$, PayloadMicrofrontends$inboundSchema, PayloadMicrofrontends$outboundSchema, PayloadMicrofrontends$, UserEventPayload138PrevProject$inboundSchema, UserEventPayload138PrevProject$outboundSchema, UserEventPayload138PrevProject$, PayloadPrev$inboundSchema, PayloadPrev$outboundSchema, PayloadPrev$, PayloadGroup$inboundSchema, PayloadGroup$outboundSchema, PayloadGroup$, OneHundredAndThirtyEight$inboundSchema, OneHundredAndThirtyEight$outboundSchema, OneHundredAndThirtyEight$, UserEventPayload137Project$inboundSchema, UserEventPayload137Project$outboundSchema, UserEventPayload137Project$, Group$inboundSchema, Group$outboundSchema, Group$, OneHundredAndThirtySeven$inboundSchema, OneHundredAndThirtySeven$outboundSchema, OneHundredAndThirtySeven$, Prev$inboundSchema, Prev$outboundSchema, Prev$, OneHundredAndThirtySix$inboundSchema, OneHundredAndThirtySix$outboundSchema, OneHundredAndThirtySix$, OneHundredAndThirtyFive$inboundSchema, OneHundredAndThirtyFive$outboundSchema, OneHundredAndThirtyFive$, OneHundredAndThirtyFour$inboundSchema, OneHundredAndThirtyFour$outboundSchema, OneHundredAndThirtyFour$, OneHundredAndThirtyThree$inboundSchema, OneHundredAndThirtyThree$outboundSchema, OneHundredAndThirtyThree$, OneHundredAndThirtyTwo$inboundSchema, OneHundredAndThirtyTwo$outboundSchema, OneHundredAndThirtyTwo$, UserEventPayload131Role$inboundSchema, UserEventPayload131Role$outboundSchema, UserEventPayload131Role$, UserEventPayload131Project$inboundSchema, UserEventPayload131Project$outboundSchema, UserEventPayload131Project$, OneHundredAndThirtyOne$inboundSchema, OneHundredAndThirtyOne$outboundSchema, OneHundredAndThirtyOne$, UserEventPayload130Project$inboundSchema, UserEventPayload130Project$outboundSchema, UserEventPayload130Project$, UserEventPayload130Role$inboundSchema, UserEventPayload130Role$outboundSchema, UserEventPayload130Role$, PreviousRole$inboundSchema, PreviousRole$outboundSchema, PreviousRole$, PayloadProjectMembership$inboundSchema, PayloadProjectMembership$outboundSchema, PayloadProjectMembership$, OneHundredAndThirty$inboundSchema, OneHundredAndThirty$outboundSchema, OneHundredAndThirty$, UserEventPayload129Project$inboundSchema, UserEventPayload129Project$outboundSchema, UserEventPayload129Project$, UserEventPayloadRole$inboundSchema, UserEventPayloadRole$outboundSchema, UserEventPayloadRole$, RemovedMembership$inboundSchema, RemovedMembership$outboundSchema, RemovedMembership$, OneHundredAndTwentyNine$inboundSchema, OneHundredAndTwentyNine$outboundSchema, OneHundredAndTwentyNine$, UserEventPayload128Project$inboundSchema, UserEventPayload128Project$outboundSchema, UserEventPayload128Project$, PayloadRole$inboundSchema, PayloadRole$outboundSchema, PayloadRole$, ProjectMembership$inboundSchema, ProjectMembership$outboundSchema, ProjectMembership$, OneHundredAndTwentyEight$inboundSchema, OneHundredAndTwentyEight$outboundSchema, OneHundredAndTwentyEight$, OneHundredAndTwentySeven$inboundSchema, OneHundredAndTwentySeven$outboundSchema, OneHundredAndTwentySeven$, OneHundredAndTwentySix$inboundSchema, OneHundredAndTwentySix$outboundSchema, OneHundredAndTwentySix$, OneHundredAndTwentyFive$inboundSchema, OneHundredAndTwentyFive$outboundSchema, OneHundredAndTwentyFive$, OneHundredAndTwentyFour$inboundSchema, OneHundredAndTwentyFour$outboundSchema, OneHundredAndTwentyFour$, OneHundredAndTwentyThree$inboundSchema, OneHundredAndTwentyThree$outboundSchema, OneHundredAndTwentyThree$, OneHundredAndTwentyTwo$inboundSchema, OneHundredAndTwentyTwo$outboundSchema, OneHundredAndTwentyTwo$, OneHundredAndTwentyOne$inboundSchema, OneHundredAndTwentyOne$outboundSchema, OneHundredAndTwentyOne$, OneHundredAndTwenty$inboundSchema, OneHundredAndTwenty$outboundSchema, OneHundredAndTwenty$, OneHundredAndNineteen$inboundSchema, OneHundredAndNineteen$outboundSchema, OneHundredAndNineteen$, OneHundredAndEighteen$inboundSchema, OneHundredAndEighteen$outboundSchema, OneHundredAndEighteen$, OneHundredAndSeventeen$inboundSchema, OneHundredAndSeventeen$outboundSchema, OneHundredAndSeventeen$, OneHundredAndSixteen$inboundSchema, OneHundredAndSixteen$outboundSchema, OneHundredAndSixteen$, OneHundredAndFifteen$inboundSchema, OneHundredAndFifteen$outboundSchema, OneHundredAndFifteen$, OneHundredAndFourteen$inboundSchema, OneHundredAndFourteen$outboundSchema, OneHundredAndFourteen$, Previous$inboundSchema, Previous$outboundSchema, Previous$, Next$inboundSchema, Next$outboundSchema, Next$, OneHundredAndThirteen$inboundSchema, OneHundredAndThirteen$outboundSchema, OneHundredAndThirteen$, PayloadRemoteCaching$inboundSchema, PayloadRemoteCaching$outboundSchema, PayloadRemoteCaching$, OneHundredAndTwelve$inboundSchema, OneHundredAndTwelve$outboundSchema, OneHundredAndTwelve$, OneHundredAndEleven$inboundSchema, OneHundredAndEleven$outboundSchema, OneHundredAndEleven$, OneHundredAndTen$inboundSchema, OneHundredAndTen$outboundSchema, OneHundredAndTen$, OneHundredAndNine$inboundSchema, OneHundredAndNine$outboundSchema, OneHundredAndNine$, UserEventPayload108User$inboundSchema, UserEventPayload108User$outboundSchema, UserEventPayload108User$, OneHundredAndEight$inboundSchema, OneHundredAndEight$outboundSchema, OneHundredAndEight$, UserEventPayloadUser$inboundSchema, UserEventPayloadUser$outboundSchema, UserEventPayloadUser$, OneHundredAndSeven$inboundSchema, OneHundredAndSeven$outboundSchema, OneHundredAndSeven$, UpdatedUser$inboundSchema, UpdatedUser$outboundSchema, UpdatedUser$, OneHundredAndSix$inboundSchema, OneHundredAndSix$outboundSchema, OneHundredAndSix$, OneHundredAndFive$inboundSchema, OneHundredAndFive$outboundSchema, OneHundredAndFive$, DeletedUser$inboundSchema, DeletedUser$outboundSchema, DeletedUser$, OneHundredAndFour$inboundSchema, OneHundredAndFour$outboundSchema, OneHundredAndFour$, InvitedUser$inboundSchema, InvitedUser$outboundSchema, InvitedUser$, OneHundredAndThree$inboundSchema, OneHundredAndThree$outboundSchema, OneHundredAndThree$, Reasons$inboundSchema, Reasons$outboundSchema, Reasons$, OneHundredAndTwo$inboundSchema, OneHundredAndTwo$outboundSchema, OneHundredAndTwo$, OneHundredAndOne$inboundSchema, OneHundredAndOne$outboundSchema, OneHundredAndOne$, Store$inboundSchema, Store$outboundSchema, Store$, OneHundred$inboundSchema, OneHundred$outboundSchema, OneHundred$, StoreType$inboundSchema, StoreType$outboundSchema, StoreType$, NinetyNine$inboundSchema, NinetyNine$outboundSchema, NinetyNine$, UserEventPayloadType$inboundSchema, UserEventPayloadType$outboundSchema, UserEventPayloadType$, NinetyEight$inboundSchema, NinetyEight$outboundSchema, NinetyEight$, UserEventPayload97Type$inboundSchema, UserEventPayload97Type$outboundSchema, UserEventPayload97Type$, PayloadPricingPlan$inboundSchema, PayloadPricingPlan$outboundSchema, PayloadPricingPlan$, BudgetItem$inboundSchema, BudgetItem$outboundSchema, BudgetItem$, PayloadBudget$inboundSchema, PayloadBudget$outboundSchema, PayloadBudget$, NinetySeven$inboundSchema, NinetySeven$outboundSchema, NinetySeven$, UserEventPayload96Type$inboundSchema, UserEventPayload96Type$outboundSchema, UserEventPayload96Type$, PricingPlan$inboundSchema, PricingPlan$outboundSchema, PricingPlan$, Budget$inboundSchema, Budget$outboundSchema, Budget$, NinetySix$inboundSchema, NinetySix$outboundSchema, NinetySix$, NinetyFive$inboundSchema, NinetyFive$outboundSchema, NinetyFive$, ScalingRules$inboundSchema, ScalingRules$outboundSchema, ScalingRules$, NinetyFour$inboundSchema, NinetyFour$outboundSchema, NinetyFour$, NinetyThree$inboundSchema, NinetyThree$outboundSchema, NinetyThree$, NinetyTwo$inboundSchema, NinetyTwo$outboundSchema, NinetyTwo$, Name2$inboundSchema, Name2$outboundSchema, Name2$, Name$inboundSchema, Name$outboundSchema, Name$, NinetyOne$inboundSchema, NinetyOne$outboundSchema, NinetyOne$, UserEventPayload90Team$inboundSchema, UserEventPayload90Team$outboundSchema, UserEventPayload90Team$, PayloadPreviousRule$inboundSchema, PayloadPreviousRule$outboundSchema, PayloadPreviousRule$, Ninety$inboundSchema, Ninety$outboundSchema, Ninety$, UserEventPayload89Team$inboundSchema, UserEventPayload89Team$outboundSchema, UserEventPayload89Team$, PreviousRule$inboundSchema, PreviousRule$outboundSchema, PreviousRule$, NextRule$inboundSchema, NextRule$outboundSchema, NextRule$, EightyNine$inboundSchema, EightyNine$outboundSchema, EightyNine$, EightyEight$inboundSchema, EightyEight$outboundSchema, EightyEight$, EightySeven$inboundSchema, EightySeven$outboundSchema, EightySeven$, EightySix$inboundSchema, EightySix$outboundSchema, EightySix$, EightyFive$inboundSchema, EightyFive$outboundSchema, EightyFive$, EightyFour$inboundSchema, EightyFour$outboundSchema, EightyFour$, UserEventPayload83Team$inboundSchema, UserEventPayload83Team$outboundSchema, UserEventPayload83Team$, OldConnectConfigurations$inboundSchema, OldConnectConfigurations$outboundSchema, OldConnectConfigurations$, NewConnectConfigurations$inboundSchema, NewConnectConfigurations$outboundSchema, NewConnectConfigurations$, UserEventPayload83Project$inboundSchema, UserEventPayload83Project$outboundSchema, UserEventPayload83Project$, EightyThree$inboundSchema, EightyThree$outboundSchema, EightyThree$, EightyTwo$inboundSchema, EightyTwo$outboundSchema, EightyTwo$, UserEventPayloadAction$inboundSchema, UserEventPayloadAction$outboundSchema, UserEventPayloadAction$, EightyOne$inboundSchema, EightyOne$outboundSchema, EightyOne$, Paths$inboundSchema, Paths$outboundSchema, Paths$, OptionsAllowlist$inboundSchema, OptionsAllowlist$outboundSchema, OptionsAllowlist$, PayloadPaths$inboundSchema, PayloadPaths$outboundSchema, PayloadPaths$, OldOptionsAllowlist$inboundSchema, OldOptionsAllowlist$outboundSchema, OldOptionsAllowlist$, Eighty$inboundSchema, Eighty$outboundSchema, Eighty$, TrustedIps$inboundSchema, TrustedIps$outboundSchema, TrustedIps$, OldTrustedIps$inboundSchema, OldTrustedIps$outboundSchema, OldTrustedIps$, SeventyNine$inboundSchema, SeventyNine$outboundSchema, SeventyNine$, PasswordProtection2$inboundSchema, PasswordProtection2$outboundSchema, PasswordProtection2$, PasswordProtectionDeploymentType$inboundSchema, PasswordProtectionDeploymentType$outboundSchema, PasswordProtectionDeploymentType$, PasswordProtection1$inboundSchema, PasswordProtection1$outboundSchema, PasswordProtection1$, PasswordProtection$inboundSchema, PasswordProtection$outboundSchema, PasswordProtection$, OldPasswordProtection2$inboundSchema, OldPasswordProtection2$outboundSchema, OldPasswordProtection2$, OldPasswordProtectionDeploymentType$inboundSchema, OldPasswordProtectionDeploymentType$outboundSchema, OldPasswordProtectionDeploymentType$, OldPasswordProtection1$inboundSchema, OldPasswordProtection1$outboundSchema, OldPasswordProtection1$, OldPasswordProtection$inboundSchema, OldPasswordProtection$outboundSchema, OldPasswordProtection$, SeventyEight$inboundSchema, SeventyEight$outboundSchema, SeventyEight$, SsoProtection2$inboundSchema, SsoProtection2$outboundSchema, SsoProtection2$, DeploymentType$inboundSchema, DeploymentType$outboundSchema, DeploymentType$, SsoProtection1$inboundSchema, SsoProtection1$outboundSchema, SsoProtection1$, SsoProtection$inboundSchema, SsoProtection$outboundSchema, SsoProtection$, OldSsoProtection2$inboundSchema, OldSsoProtection2$outboundSchema, OldSsoProtection2$, OldSsoProtectionDeploymentType$inboundSchema, OldSsoProtectionDeploymentType$outboundSchema, OldSsoProtectionDeploymentType$, OldSsoProtection1$inboundSchema, OldSsoProtection1$outboundSchema, OldSsoProtection1$, OldSsoProtection$inboundSchema, OldSsoProtection$outboundSchema, OldSsoProtection$, SeventySeven$inboundSchema, SeventySeven$outboundSchema, SeventySeven$, SeventySix$inboundSchema, SeventySix$outboundSchema, SeventySix$, SeventyFive$inboundSchema, SeventyFive$outboundSchema, SeventyFive$, ProjectAnalytics$inboundSchema, ProjectAnalytics$outboundSchema, ProjectAnalytics$, PrevProjectAnalytics$inboundSchema, PrevProjectAnalytics$outboundSchema, PrevProjectAnalytics$, SeventyFour$inboundSchema, SeventyFour$outboundSchema, SeventyFour$, UserEventPayload73Role$inboundSchema, UserEventPayload73Role$outboundSchema, UserEventPayload73Role$, PayloadOrigin$inboundSchema, PayloadOrigin$outboundSchema, PayloadOrigin$, PayloadGitUserId$inboundSchema, PayloadGitUserId$outboundSchema, PayloadGitUserId$, PayloadJoinedFrom$inboundSchema, PayloadJoinedFrom$outboundSchema, PayloadJoinedFrom$, RemovedUsers$inboundSchema, RemovedUsers$outboundSchema, RemovedUsers$, SeventyThree$inboundSchema, SeventyThree$outboundSchema, SeventyThree$, SeventyTwo$inboundSchema, SeventyTwo$outboundSchema, SeventyTwo$, SeventyOne$inboundSchema, SeventyOne$outboundSchema, SeventyOne$, Seventy$inboundSchema, Seventy$outboundSchema, Seventy$, SixtyNine$inboundSchema, SixtyNine$outboundSchema, SixtyNine$, PayloadName$inboundSchema, PayloadName$outboundSchema, PayloadName$, Browser$inboundSchema, Browser$outboundSchema, Browser$, UserEventPayloadName$inboundSchema, UserEventPayloadName$outboundSchema, UserEventPayloadName$, Os$inboundSchema, Os$outboundSchema, Os$, UserAgent$inboundSchema, UserAgent$outboundSchema, UserAgent$, Names$inboundSchema, Names$outboundSchema, Names$, City$inboundSchema, City$outboundSchema, City$, PayloadNames$inboundSchema, PayloadNames$outboundSchema, PayloadNames$, Country$inboundSchema, Country$outboundSchema, Country$, UserEventPayloadNames$inboundSchema, UserEventPayloadNames$outboundSchema, UserEventPayloadNames$, MostSpecificSubdivision$inboundSchema, MostSpecificSubdivision$outboundSchema, MostSpecificSubdivision$, Geolocation$inboundSchema, Geolocation$outboundSchema, Geolocation$, SixtyEight$inboundSchema, SixtyEight$outboundSchema, SixtyEight$, SixtySeven$inboundSchema, SixtySeven$outboundSchema, SixtySeven$, SixtySix$inboundSchema, SixtySix$outboundSchema, SixtySix$, SixtyFive$inboundSchema, SixtyFive$outboundSchema, SixtyFive$, SixtyFour$inboundSchema, SixtyFour$outboundSchema, SixtyFour$, Configurations$inboundSchema, Configurations$outboundSchema, Configurations$, SixtyThree$inboundSchema, SixtyThree$outboundSchema, SixtyThree$, UserEventPayload62Action$inboundSchema, UserEventPayload62Action$outboundSchema, UserEventPayload62Action$, BlockHistory$inboundSchema, BlockHistory$outboundSchema, BlockHistory$, History$inboundSchema, History$outboundSchema, History$, Abuse$inboundSchema, Abuse$outboundSchema, Abuse$, Plan$inboundSchema, Plan$outboundSchema, Plan$, PayloadBilling$inboundSchema, PayloadBilling$outboundSchema, PayloadBilling$, UserEventCredentialsType$inboundSchema, UserEventCredentialsType$outboundSchema, UserEventCredentialsType$, Credentials2$inboundSchema, Credentials2$outboundSchema, Credentials2$, CredentialsType$inboundSchema, CredentialsType$outboundSchema, CredentialsType$, Credentials1$inboundSchema, Credentials1$outboundSchema, Credentials1$, Credentials$inboundSchema, Credentials$outboundSchema, Credentials$, PayloadDataCache$inboundSchema, PayloadDataCache$outboundSchema, PayloadDataCache$, PayloadDismissals$inboundSchema, PayloadDismissals$outboundSchema, PayloadDismissals$, PayloadDismissedToasts$inboundSchema, PayloadDismissedToasts$outboundSchema, PayloadDismissedToasts$, PayloadFavoriteProjectsAndSpaces$inboundSchema, PayloadFavoriteProjectsAndSpaces$outboundSchema, PayloadFavoriteProjectsAndSpaces$, PayloadImportFlowGitNamespace$inboundSchema, PayloadImportFlowGitNamespace$outboundSchema, PayloadImportFlowGitNamespace$, PayloadImportFlowGitNamespaceId$inboundSchema, PayloadImportFlowGitNamespaceId$outboundSchema, PayloadImportFlowGitNamespaceId$, PayloadImportFlowGitProvider$inboundSchema, PayloadImportFlowGitProvider$outboundSchema, PayloadImportFlowGitProvider$, PayloadGitNamespaceId$inboundSchema, PayloadGitNamespaceId$outboundSchema, PayloadGitNamespaceId$, PayloadPreferredScopesAndGitNamespaces$inboundSchema, PayloadPreferredScopesAndGitNamespaces$outboundSchema, PayloadPreferredScopesAndGitNamespaces$, PreventAutoBlocking$inboundSchema, PreventAutoBlocking$outboundSchema, PreventAutoBlocking$, UserEventPayloadRemoteCaching$inboundSchema, UserEventPayloadRemoteCaching$outboundSchema, UserEventPayloadRemoteCaching$, PayloadBuildEntitlements$inboundSchema, PayloadBuildEntitlements$outboundSchema, PayloadBuildEntitlements$, PayloadPurchaseType$inboundSchema, PayloadPurchaseType$outboundSchema, PayloadPurchaseType$, PayloadBuildMachine$inboundSchema, PayloadBuildMachine$outboundSchema, PayloadBuildMachine$, PayloadResourceConfig$inboundSchema, PayloadResourceConfig$outboundSchema, PayloadResourceConfig$, ResourceLimits$inboundSchema, ResourceLimits$outboundSchema, ResourceLimits$, PayloadViewPreference$inboundSchema, PayloadViewPreference$outboundSchema, PayloadViewPreference$, PayloadFavoritesViewPreference$inboundSchema, PayloadFavoritesViewPreference$outboundSchema, PayloadFavoritesViewPreference$, PayloadRecentsViewPreference$inboundSchema, PayloadRecentsViewPreference$outboundSchema, PayloadRecentsViewPreference$, PayloadActiveDashboardViews$inboundSchema, PayloadActiveDashboardViews$outboundSchema, PayloadActiveDashboardViews$, SecondaryEmails$inboundSchema, SecondaryEmails$outboundSchema, SecondaryEmails$, Rules$inboundSchema, Rules$outboundSchema, Rules$, EmailNotifications$inboundSchema, EmailNotifications$outboundSchema, EmailNotifications$, PayloadReasons$inboundSchema, PayloadReasons$outboundSchema, PayloadReasons$, SiftScores$inboundSchema, SiftScores$outboundSchema, SiftScores$, UserEventPayload62Name$inboundSchema, UserEventPayload62Name$outboundSchema, UserEventPayload62Name$, SiftRoute$inboundSchema, SiftRoute$outboundSchema, SiftRoute$, PayloadReason$inboundSchema, PayloadReason$outboundSchema, PayloadReason$, PayloadBlockedDueToOverageType$inboundSchema, PayloadBlockedDueToOverageType$outboundSchema, PayloadBlockedDueToOverageType$, PayloadSoftBlock$inboundSchema, PayloadSoftBlock$outboundSchema, PayloadSoftBlock$, UserEventPayload62Role$inboundSchema, UserEventPayload62Role$outboundSchema, UserEventPayload62Role$, PayloadTeamRoles$inboundSchema, PayloadTeamRoles$outboundSchema, PayloadTeamRoles$, PayloadTeamPermissions$inboundSchema, PayloadTeamPermissions$outboundSchema, PayloadTeamPermissions$, UserEventPayloadOrigin$inboundSchema, UserEventPayloadOrigin$outboundSchema, UserEventPayloadOrigin$, UserEventPayloadGitUserId$inboundSchema, UserEventPayloadGitUserId$outboundSchema, UserEventPayloadGitUserId$, UserEventPayloadJoinedFrom$inboundSchema, UserEventPayloadJoinedFrom$outboundSchema, UserEventPayloadJoinedFrom$, Teams$inboundSchema, Teams$outboundSchema, Teams$, UserEventPayload62Type$inboundSchema, UserEventPayload62Type$outboundSchema, UserEventPayload62Type$, UsageAlerts$inboundSchema, UsageAlerts$outboundSchema, UsageAlerts$, AiCredits$inboundSchema, AiCredits$outboundSchema, AiCredits$, AnalyticsUsage$inboundSchema, AnalyticsUsage$outboundSchema, AnalyticsUsage$, Artifacts$inboundSchema, Artifacts$outboundSchema, Artifacts$, Bandwidth$inboundSchema, Bandwidth$outboundSchema, Bandwidth$, BlobTotalAdvancedRequests$inboundSchema, BlobTotalAdvancedRequests$outboundSchema, BlobTotalAdvancedRequests$, BlobTotalAvgSizeInBytes$inboundSchema, BlobTotalAvgSizeInBytes$outboundSchema, BlobTotalAvgSizeInBytes$, BlobTotalGetResponseObjectSizeInBytes$inboundSchema, BlobTotalGetResponseObjectSizeInBytes$outboundSchema, BlobTotalGetResponseObjectSizeInBytes$, BlobTotalSimpleRequests$inboundSchema, BlobTotalSimpleRequests$outboundSchema, BlobTotalSimpleRequests$, DataCacheRead$inboundSchema, DataCacheRead$outboundSchema, DataCacheRead$, DataCacheWrite$inboundSchema, DataCacheWrite$outboundSchema, DataCacheWrite$, EdgeConfigRead$inboundSchema, EdgeConfigRead$outboundSchema, EdgeConfigRead$, EdgeConfigWrite$inboundSchema, EdgeConfigWrite$outboundSchema, EdgeConfigWrite$, EdgeFunctionExecutionUnits$inboundSchema, EdgeFunctionExecutionUnits$outboundSchema, EdgeFunctionExecutionUnits$, EdgeMiddlewareInvocations$inboundSchema, EdgeMiddlewareInvocations$outboundSchema, EdgeMiddlewareInvocations$, EdgeRequestAdditionalCpuDuration$inboundSchema, EdgeRequestAdditionalCpuDuration$outboundSchema, EdgeRequestAdditionalCpuDuration$, EdgeRequest$inboundSchema, EdgeRequest$outboundSchema, EdgeRequest$, ElasticConcurrencyBuildSlots$inboundSchema, ElasticConcurrencyBuildSlots$outboundSchema, ElasticConcurrencyBuildSlots$, FastDataTransfer$inboundSchema, FastDataTransfer$outboundSchema, FastDataTransfer$, FastOriginTransfer$inboundSchema, FastOriginTransfer$outboundSchema, FastOriginTransfer$, FunctionDuration$inboundSchema, FunctionDuration$outboundSchema, FunctionDuration$, FunctionInvocation$inboundSchema, FunctionInvocation$outboundSchema, FunctionInvocation$, ImageOptimizationCacheRead$inboundSchema, ImageOptimizationCacheRead$outboundSchema, ImageOptimizationCacheRead$, ImageOptimizationCacheWrite$inboundSchema, ImageOptimizationCacheWrite$outboundSchema, ImageOptimizationCacheWrite$, ImageOptimizationTransformation$inboundSchema, ImageOptimizationTransformation$outboundSchema, ImageOptimizationTransformation$, LogDrainsVolume$inboundSchema, LogDrainsVolume$outboundSchema, LogDrainsVolume$, MonitoringMetric$inboundSchema, MonitoringMetric$outboundSchema, MonitoringMetric$, BlobDataTransfer$inboundSchema, BlobDataTransfer$outboundSchema, BlobDataTransfer$, ObservabilityEvent$inboundSchema, ObservabilityEvent$outboundSchema, ObservabilityEvent$, PostgresComputeTime$inboundSchema, PostgresComputeTime$outboundSchema, PostgresComputeTime$, PostgresDataStorage$inboundSchema, PostgresDataStorage$outboundSchema, PostgresDataStorage$, PostgresDataTransfer$inboundSchema, PostgresDataTransfer$outboundSchema, PostgresDataTransfer$, PostgresDatabase$inboundSchema, PostgresDatabase$outboundSchema, PostgresDatabase$, PostgresWrittenData$inboundSchema, PostgresWrittenData$outboundSchema, PostgresWrittenData$, ServerlessFunctionExecution$inboundSchema, ServerlessFunctionExecution$outboundSchema, ServerlessFunctionExecution$, SourceImages$inboundSchema, SourceImages$outboundSchema, SourceImages$, StorageRedisTotalBandwidthInBytes$inboundSchema, StorageRedisTotalBandwidthInBytes$outboundSchema, StorageRedisTotalBandwidthInBytes$, StorageRedisTotalCommands$inboundSchema, StorageRedisTotalCommands$outboundSchema, StorageRedisTotalCommands$, StorageRedisTotalDailyAvgStorageInBytes$inboundSchema, StorageRedisTotalDailyAvgStorageInBytes$outboundSchema, StorageRedisTotalDailyAvgStorageInBytes$, StorageRedisTotalDatabases$inboundSchema, StorageRedisTotalDatabases$outboundSchema, StorageRedisTotalDatabases$, WafOwaspExcessBytes$inboundSchema, WafOwaspExcessBytes$outboundSchema, WafOwaspExcessBytes$, WafOwaspRequests$inboundSchema, WafOwaspRequests$outboundSchema, WafOwaspRequests$, WafRateLimitRequest$inboundSchema, WafRateLimitRequest$outboundSchema, WafRateLimitRequest$, WebAnalyticsEvent$inboundSchema, WebAnalyticsEvent$outboundSchema, WebAnalyticsEvent$, OverageUsageAlerts$inboundSchema, OverageUsageAlerts$outboundSchema, OverageUsageAlerts$, EnablePreviewFeedback$inboundSchema, EnablePreviewFeedback$outboundSchema, EnablePreviewFeedback$, BlockReason$inboundSchema, BlockReason$outboundSchema, BlockReason$, PayloadWebAnalytics$inboundSchema, PayloadWebAnalytics$outboundSchema, PayloadWebAnalytics$, PayloadBlockReason$inboundSchema, PayloadBlockReason$outboundSchema, PayloadBlockReason$, BlockType$inboundSchema, BlockType$outboundSchema, BlockType$, Monitoring$inboundSchema, Monitoring$outboundSchema, Monitoring$, UserEventPayloadBlockReason$inboundSchema, UserEventPayloadBlockReason$outboundSchema, UserEventPayloadBlockReason$, PayloadBlockType$inboundSchema, PayloadBlockType$outboundSchema, PayloadBlockType$, ObservabilityPlus$inboundSchema, ObservabilityPlus$outboundSchema, ObservabilityPlus$, UserEventPayload62BlockReason$inboundSchema, UserEventPayload62BlockReason$outboundSchema, UserEventPayload62BlockReason$, UserEventPayloadDataCache$inboundSchema, UserEventPayloadDataCache$outboundSchema, UserEventPayloadDataCache$, UserEventPayload62NewOwnerBlockReason$inboundSchema, UserEventPayload62NewOwnerBlockReason$outboundSchema, UserEventPayload62NewOwnerBlockReason$, PayloadImageOptimizationTransformation$inboundSchema, PayloadImageOptimizationTransformation$outboundSchema, PayloadImageOptimizationTransformation$, UserEventPayload62NewOwnerFeatureBlocksBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlockReason$, PayloadSourceImages$inboundSchema, PayloadSourceImages$outboundSchema, PayloadSourceImages$, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason$, OverageReason$inboundSchema, OverageReason$outboundSchema, OverageReason$, BlobT$inboundSchema, BlobT$outboundSchema, BlobT$, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason$, PayloadOverageReason$inboundSchema, PayloadOverageReason$outboundSchema, PayloadOverageReason$, Postgres$inboundSchema, Postgres$outboundSchema, Postgres$, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason$, UserEventPayloadOverageReason$inboundSchema, UserEventPayloadOverageReason$outboundSchema, UserEventPayloadOverageReason$, Redis$inboundSchema, Redis$outboundSchema, Redis$, PayloadFeatureBlocks$inboundSchema, PayloadFeatureBlocks$outboundSchema, PayloadFeatureBlocks$, PayloadVersion$inboundSchema, PayloadVersion$outboundSchema, PayloadVersion$, PayloadNorthstarMigration$inboundSchema, PayloadNorthstarMigration$outboundSchema, PayloadNorthstarMigration$, Totp$inboundSchema, Totp$outboundSchema, Totp$, MfaConfiguration$inboundSchema, MfaConfiguration$outboundSchema, MfaConfiguration$, NewOwner$inboundSchema, NewOwner$outboundSchema, NewOwner$, SixtyTwo$inboundSchema, SixtyTwo$outboundSchema, SixtyTwo$, SixtyOne$inboundSchema, SixtyOne$outboundSchema, SixtyOne$, Sixty$inboundSchema, Sixty$outboundSchema, Sixty$, ConfigChanges$inboundSchema, ConfigChanges$outboundSchema, ConfigChanges$, FiftyNine$inboundSchema, FiftyNine$outboundSchema, FiftyNine$, UserEventPayload58OldEnvVarType$inboundSchema, UserEventPayload58OldEnvVarType$outboundSchema, UserEventPayload58OldEnvVarType$, UserEventPayloadTarget$inboundSchema, UserEventPayloadTarget$outboundSchema, UserEventPayloadTarget$, OldEnvVar$inboundSchema, OldEnvVar$outboundSchema, OldEnvVar$, UserEventPayload58Type$inboundSchema, UserEventPayload58Type$outboundSchema, UserEventPayload58Type$, UserEventPayload58Target$inboundSchema, UserEventPayload58Target$outboundSchema, UserEventPayload58Target$, NewEnvVar$inboundSchema, NewEnvVar$outboundSchema, NewEnvVar$, OldTarget$inboundSchema, OldTarget$outboundSchema, OldTarget$, NewTarget$inboundSchema, NewTarget$outboundSchema, NewTarget$, OldProjects$inboundSchema, OldProjects$outboundSchema, OldProjects$, NewProjects$inboundSchema, NewProjects$outboundSchema, NewProjects$, UpdateDiff$inboundSchema, UpdateDiff$outboundSchema, UpdateDiff$, FiftyEight$inboundSchema, FiftyEight$outboundSchema, FiftyEight$, PayloadType$inboundSchema, PayloadType$outboundSchema, PayloadType$, PayloadTarget$inboundSchema, PayloadTarget$outboundSchema, PayloadTarget$, FiftySeven$inboundSchema, FiftySeven$outboundSchema, FiftySeven$, Target$inboundSchema, Target$outboundSchema, Target$, FiftySix$inboundSchema, FiftySix$outboundSchema, FiftySix$, FiftyFive$inboundSchema, FiftyFive$outboundSchema, FiftyFive$, FiftyFour$inboundSchema, FiftyFour$outboundSchema, FiftyFour$, FiftyThree$inboundSchema, FiftyThree$outboundSchema, FiftyThree$, FiftyTwo$inboundSchema, FiftyTwo$outboundSchema, FiftyTwo$, FiftyOne$inboundSchema, FiftyOne$outboundSchema, FiftyOne$, Fifty$inboundSchema, Fifty$outboundSchema, Fifty$, FortyNine$inboundSchema, FortyNine$outboundSchema, FortyNine$, FortyEight$inboundSchema, FortyEight$outboundSchema, FortyEight$, UserEventPayload47OldTeam$inboundSchema, UserEventPayload47OldTeam$outboundSchema, UserEventPayload47OldTeam$, UserEventPayload47NewTeam$inboundSchema, UserEventPayload47NewTeam$outboundSchema, UserEventPayload47NewTeam$, FortySeven$inboundSchema, FortySeven$outboundSchema, FortySeven$, FortySix$inboundSchema, FortySix$outboundSchema, FortySix$, FortyFive$inboundSchema, FortyFive$outboundSchema, FortyFive$, FortyFour$inboundSchema, FortyFour$outboundSchema, FortyFour$, FortyThree$inboundSchema, FortyThree$outboundSchema, FortyThree$, FortyTwo$inboundSchema, FortyTwo$outboundSchema, FortyTwo$, FortyOne$inboundSchema, FortyOne$outboundSchema, FortyOne$, Forty$inboundSchema, Forty$outboundSchema, Forty$, UserEventPayloadDeployment$inboundSchema, UserEventPayloadDeployment$outboundSchema, UserEventPayloadDeployment$, ThirtyNine$inboundSchema, ThirtyNine$outboundSchema, ThirtyNine$, UserEventPayloadOldTeam$inboundSchema, UserEventPayloadOldTeam$outboundSchema, UserEventPayloadOldTeam$, UserEventPayloadNewTeam$inboundSchema, UserEventPayloadNewTeam$outboundSchema, UserEventPayloadNewTeam$, ThirtyEight$inboundSchema, ThirtyEight$outboundSchema, ThirtyEight$, PayloadDeployment$inboundSchema, PayloadDeployment$outboundSchema, PayloadDeployment$, ThirtySeven$inboundSchema, ThirtySeven$outboundSchema, ThirtySeven$, UserEventPayload36Project$inboundSchema, UserEventPayload36Project$outboundSchema, UserEventPayload36Project$, DeployHook$inboundSchema, DeployHook$outboundSchema, DeployHook$, Job$inboundSchema, Job$outboundSchema, Job$, ThirtySix$inboundSchema, ThirtySix$outboundSchema, ThirtySix$, ThirtyFive$inboundSchema, ThirtyFive$outboundSchema, ThirtyFive$, ThirtyFour$inboundSchema, ThirtyFour$outboundSchema, ThirtyFour$, ThirtyThree$inboundSchema, ThirtyThree$outboundSchema, ThirtyThree$, UserEventPayload32Team$inboundSchema, UserEventPayload32Team$outboundSchema, UserEventPayload32Team$, UserEventPayload32Configuration$inboundSchema, UserEventPayload32Configuration$outboundSchema, UserEventPayload32Configuration$, ThirtyTwo$inboundSchema, ThirtyTwo$outboundSchema, ThirtyTwo$, UserEventPayloadTeam$inboundSchema, UserEventPayloadTeam$outboundSchema, UserEventPayloadTeam$, UserEventPayloadConfiguration$inboundSchema, UserEventPayloadConfiguration$outboundSchema, UserEventPayloadConfiguration$, UserEventPayload31Project$inboundSchema, UserEventPayload31Project$outboundSchema, UserEventPayload31Project$, ThirtyOne$inboundSchema, ThirtyOne$outboundSchema, ThirtyOne$, PayloadTeam$inboundSchema, PayloadTeam$outboundSchema, PayloadTeam$, PayloadConfiguration$inboundSchema, PayloadConfiguration$outboundSchema, PayloadConfiguration$, UserEventPayloadProject$inboundSchema, UserEventPayloadProject$outboundSchema, UserEventPayloadProject$, Thirty$inboundSchema, Thirty$outboundSchema, Thirty$, Team$inboundSchema, Team$outboundSchema, Team$, Configuration$inboundSchema, Configuration$outboundSchema, Configuration$, PayloadProject$inboundSchema, PayloadProject$outboundSchema, PayloadProject$, TwentyNine$inboundSchema, TwentyNine$outboundSchema, TwentyNine$, TwentyEight$inboundSchema, TwentyEight$outboundSchema, TwentyEight$, TwentySeven$inboundSchema, TwentySeven$outboundSchema, TwentySeven$, TwentySix$inboundSchema, TwentySix$outboundSchema, TwentySix$, TwentyFive$inboundSchema, TwentyFive$outboundSchema, TwentyFive$, TwentyFour$inboundSchema, TwentyFour$outboundSchema, TwentyFour$, TwentyThree$inboundSchema, TwentyThree$outboundSchema, TwentyThree$, PayloadOldTeam$inboundSchema, PayloadOldTeam$outboundSchema, PayloadOldTeam$, PayloadNewTeam$inboundSchema, PayloadNewTeam$outboundSchema, PayloadNewTeam$, TwentyTwo$inboundSchema, TwentyTwo$outboundSchema, TwentyTwo$, TwentyOne$inboundSchema, TwentyOne$outboundSchema, TwentyOne$, Twenty$inboundSchema, Twenty$outboundSchema, Twenty$, Nineteen$inboundSchema, Nineteen$outboundSchema, Nineteen$, Eighteen$inboundSchema, Eighteen$outboundSchema, Eighteen$, Seventeen$inboundSchema, Seventeen$outboundSchema, Seventeen$, Sixteen$inboundSchema, Sixteen$outboundSchema, Sixteen$, OldTeam$inboundSchema, OldTeam$outboundSchema, OldTeam$, NewTeam$inboundSchema, NewTeam$outboundSchema, NewTeam$, Fifteen$inboundSchema, Fifteen$outboundSchema, Fifteen$, Fourteen$inboundSchema, Fourteen$outboundSchema, Fourteen$, Thirteen$inboundSchema, Thirteen$outboundSchema, Thirteen$, PayloadAction$inboundSchema, PayloadAction$outboundSchema, PayloadAction$, Twelve$inboundSchema, Twelve$outboundSchema, Twelve$, Eleven$inboundSchema, Eleven$outboundSchema, Eleven$, Ten$inboundSchema, Ten$outboundSchema, Ten$, Nine$inboundSchema, Nine$outboundSchema, Nine$, Eight$inboundSchema, Eight$outboundSchema, Eight$, Deployment$inboundSchema, Deployment$outboundSchema, Deployment$, Seven$inboundSchema, Seven$outboundSchema, Seven$, UserEventPayload6AccessGroup$inboundSchema, UserEventPayload6AccessGroup$outboundSchema, UserEventPayload6AccessGroup$, Project$inboundSchema, Project$outboundSchema, Project$, Six$inboundSchema, Six$outboundSchema, Six$, UserEventPayloadAccessGroup$inboundSchema, UserEventPayloadAccessGroup$outboundSchema, UserEventPayloadAccessGroup$, PayloadUser$inboundSchema, PayloadUser$outboundSchema, PayloadUser$, Five$inboundSchema, Five$outboundSchema, Five$, PayloadAccessGroup$inboundSchema, PayloadAccessGroup$outboundSchema, PayloadAccessGroup$, Four$inboundSchema, Four$outboundSchema, Four$, AccessGroup$inboundSchema, AccessGroup$outboundSchema, AccessGroup$, Three$inboundSchema, Three$outboundSchema, Three$, Action$inboundSchema, Action$outboundSchema, Action$, Two$inboundSchema, Two$outboundSchema, Two$, One$inboundSchema, One$outboundSchema, One$, Payload$inboundSchema, Payload$outboundSchema, Payload$, UserEvent$inboundSchema, UserEvent$outboundSchema, UserEvent$;
|
|
95463
|
+
var UserEventType, GrantType, AuthMethod, Tier, UserEventPayload131Role, UserEventPayload130Role, PreviousRole, UserEventPayloadRole, PayloadRole, StoreType, UserEventPayloadType, UserEventPayload97Type, PayloadPricingPlan, UserEventPayload96Type, PricingPlan, UserEventPayloadAction, TrustedIps, OldTrustedIps, PasswordProtection2, PasswordProtectionDeploymentType, OldPasswordProtection2, OldPasswordProtectionDeploymentType, SsoProtection2, DeploymentType, OldSsoProtection2, OldSsoProtectionDeploymentType, UserEventPayload73Role, PayloadOrigin, PayloadName, UserEventPayloadName, UserEventPayload62Action, Plan, UserEventCredentialsType, CredentialsType, PayloadImportFlowGitProvider, PayloadPurchaseType, PayloadViewPreference, PayloadFavoritesViewPreference, PayloadRecentsViewPreference, UserEventPayload62Name, PayloadReason, PayloadBlockedDueToOverageType, UserEventPayload62Role, PayloadTeamRoles, PayloadTeamPermissions, UserEventPayloadOrigin, UserEventPayload62Type, EnablePreviewFeedback, BlockReason, PayloadBlockReason, BlockType, UserEventPayloadBlockReason, PayloadBlockType, UserEventPayload62BlockReason, UserEventPayload62NewOwnerBlockReason, UserEventPayload62NewOwnerFeatureBlocksBlockReason, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason, OverageReason, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason, PayloadOverageReason, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason, UserEventPayloadOverageReason, PayloadVersion, UserEventPayload58OldEnvVarType, UserEventPayloadTarget, UserEventPayload58Type, UserEventPayload58Target, OldTarget, NewTarget, PayloadType, PayloadTarget, PayloadAction, Action, UserEventType$inboundSchema, UserEventType$outboundSchema, UserEventType$, Entities$inboundSchema, Entities$outboundSchema, Entities$, User$inboundSchema, User$outboundSchema, User$, GrantType$inboundSchema, GrantType$outboundSchema, GrantType$, AuthMethod$inboundSchema, AuthMethod$outboundSchema, AuthMethod$, OneHundredAndFortyEight$inboundSchema, OneHundredAndFortyEight$outboundSchema, OneHundredAndFortyEight$, UserEventPayload147Team$inboundSchema, UserEventPayload147Team$outboundSchema, UserEventPayload147Team$, UserEventPayload147Configuration$inboundSchema, UserEventPayload147Configuration$outboundSchema, UserEventPayload147Configuration$, UserEventPayloadPeering$inboundSchema, UserEventPayloadPeering$outboundSchema, UserEventPayloadPeering$, OneHundredAndFortySeven$inboundSchema, OneHundredAndFortySeven$outboundSchema, OneHundredAndFortySeven$, UserEventPayload146Team$inboundSchema, UserEventPayload146Team$outboundSchema, UserEventPayload146Team$, UserEventPayload146Configuration$inboundSchema, UserEventPayload146Configuration$outboundSchema, UserEventPayload146Configuration$, PayloadPeering$inboundSchema, PayloadPeering$outboundSchema, PayloadPeering$, OneHundredAndFortySix$inboundSchema, OneHundredAndFortySix$outboundSchema, OneHundredAndFortySix$, UserEventPayload145Team$inboundSchema, UserEventPayload145Team$outboundSchema, UserEventPayload145Team$, UserEventPayload145Configuration$inboundSchema, UserEventPayload145Configuration$outboundSchema, UserEventPayload145Configuration$, Peering$inboundSchema, Peering$outboundSchema, Peering$, OneHundredAndFortyFive$inboundSchema, OneHundredAndFortyFive$outboundSchema, OneHundredAndFortyFive$, OneHundredAndFortyFour$inboundSchema, OneHundredAndFortyFour$outboundSchema, OneHundredAndFortyFour$, OneHundredAndFortyThree$inboundSchema, OneHundredAndFortyThree$outboundSchema, OneHundredAndFortyThree$, OneHundredAndFortyTwo$inboundSchema, OneHundredAndFortyTwo$outboundSchema, OneHundredAndFortyTwo$, OneHundredAndFortyOne$inboundSchema, OneHundredAndFortyOne$outboundSchema, OneHundredAndFortyOne$, Tier$inboundSchema, Tier$outboundSchema, Tier$, OneHundredAndForty$inboundSchema, OneHundredAndForty$outboundSchema, OneHundredAndForty$, ProjectWebAnalytics$inboundSchema, ProjectWebAnalytics$outboundSchema, ProjectWebAnalytics$, PrevProjectWebAnalytics$inboundSchema, PrevProjectWebAnalytics$outboundSchema, PrevProjectWebAnalytics$, OneHundredAndThirtyNine$inboundSchema, OneHundredAndThirtyNine$outboundSchema, OneHundredAndThirtyNine$, Microfrontends2$inboundSchema, Microfrontends2$outboundSchema, Microfrontends2$, Microfrontends1$inboundSchema, Microfrontends1$outboundSchema, Microfrontends1$, Microfrontends$inboundSchema, Microfrontends$outboundSchema, Microfrontends$, UserEventPayload138Project$inboundSchema, UserEventPayload138Project$outboundSchema, UserEventPayload138Project$, UserEventMicrofrontends2$inboundSchema, UserEventMicrofrontends2$outboundSchema, UserEventMicrofrontends2$, UserEventMicrofrontends1$inboundSchema, UserEventMicrofrontends1$outboundSchema, UserEventMicrofrontends1$, PayloadMicrofrontends$inboundSchema, PayloadMicrofrontends$outboundSchema, PayloadMicrofrontends$, UserEventPayload138PrevProject$inboundSchema, UserEventPayload138PrevProject$outboundSchema, UserEventPayload138PrevProject$, PayloadPrev$inboundSchema, PayloadPrev$outboundSchema, PayloadPrev$, PayloadGroup$inboundSchema, PayloadGroup$outboundSchema, PayloadGroup$, OneHundredAndThirtyEight$inboundSchema, OneHundredAndThirtyEight$outboundSchema, OneHundredAndThirtyEight$, UserEventPayload137Project$inboundSchema, UserEventPayload137Project$outboundSchema, UserEventPayload137Project$, Group$inboundSchema, Group$outboundSchema, Group$, OneHundredAndThirtySeven$inboundSchema, OneHundredAndThirtySeven$outboundSchema, OneHundredAndThirtySeven$, Prev$inboundSchema, Prev$outboundSchema, Prev$, OneHundredAndThirtySix$inboundSchema, OneHundredAndThirtySix$outboundSchema, OneHundredAndThirtySix$, OneHundredAndThirtyFive$inboundSchema, OneHundredAndThirtyFive$outboundSchema, OneHundredAndThirtyFive$, OneHundredAndThirtyFour$inboundSchema, OneHundredAndThirtyFour$outboundSchema, OneHundredAndThirtyFour$, OneHundredAndThirtyThree$inboundSchema, OneHundredAndThirtyThree$outboundSchema, OneHundredAndThirtyThree$, OneHundredAndThirtyTwo$inboundSchema, OneHundredAndThirtyTwo$outboundSchema, OneHundredAndThirtyTwo$, UserEventPayload131Role$inboundSchema, UserEventPayload131Role$outboundSchema, UserEventPayload131Role$, UserEventPayload131Project$inboundSchema, UserEventPayload131Project$outboundSchema, UserEventPayload131Project$, OneHundredAndThirtyOne$inboundSchema, OneHundredAndThirtyOne$outboundSchema, OneHundredAndThirtyOne$, UserEventPayload130Project$inboundSchema, UserEventPayload130Project$outboundSchema, UserEventPayload130Project$, UserEventPayload130Role$inboundSchema, UserEventPayload130Role$outboundSchema, UserEventPayload130Role$, PreviousRole$inboundSchema, PreviousRole$outboundSchema, PreviousRole$, PayloadProjectMembership$inboundSchema, PayloadProjectMembership$outboundSchema, PayloadProjectMembership$, OneHundredAndThirty$inboundSchema, OneHundredAndThirty$outboundSchema, OneHundredAndThirty$, UserEventPayload129Project$inboundSchema, UserEventPayload129Project$outboundSchema, UserEventPayload129Project$, UserEventPayloadRole$inboundSchema, UserEventPayloadRole$outboundSchema, UserEventPayloadRole$, RemovedMembership$inboundSchema, RemovedMembership$outboundSchema, RemovedMembership$, OneHundredAndTwentyNine$inboundSchema, OneHundredAndTwentyNine$outboundSchema, OneHundredAndTwentyNine$, UserEventPayload128Project$inboundSchema, UserEventPayload128Project$outboundSchema, UserEventPayload128Project$, PayloadRole$inboundSchema, PayloadRole$outboundSchema, PayloadRole$, ProjectMembership$inboundSchema, ProjectMembership$outboundSchema, ProjectMembership$, OneHundredAndTwentyEight$inboundSchema, OneHundredAndTwentyEight$outboundSchema, OneHundredAndTwentyEight$, OneHundredAndTwentySeven$inboundSchema, OneHundredAndTwentySeven$outboundSchema, OneHundredAndTwentySeven$, OneHundredAndTwentySix$inboundSchema, OneHundredAndTwentySix$outboundSchema, OneHundredAndTwentySix$, OneHundredAndTwentyFive$inboundSchema, OneHundredAndTwentyFive$outboundSchema, OneHundredAndTwentyFive$, OneHundredAndTwentyFour$inboundSchema, OneHundredAndTwentyFour$outboundSchema, OneHundredAndTwentyFour$, OneHundredAndTwentyThree$inboundSchema, OneHundredAndTwentyThree$outboundSchema, OneHundredAndTwentyThree$, OneHundredAndTwentyTwo$inboundSchema, OneHundredAndTwentyTwo$outboundSchema, OneHundredAndTwentyTwo$, OneHundredAndTwentyOne$inboundSchema, OneHundredAndTwentyOne$outboundSchema, OneHundredAndTwentyOne$, OneHundredAndTwenty$inboundSchema, OneHundredAndTwenty$outboundSchema, OneHundredAndTwenty$, OneHundredAndNineteen$inboundSchema, OneHundredAndNineteen$outboundSchema, OneHundredAndNineteen$, OneHundredAndEighteen$inboundSchema, OneHundredAndEighteen$outboundSchema, OneHundredAndEighteen$, OneHundredAndSeventeen$inboundSchema, OneHundredAndSeventeen$outboundSchema, OneHundredAndSeventeen$, OneHundredAndSixteen$inboundSchema, OneHundredAndSixteen$outboundSchema, OneHundredAndSixteen$, OneHundredAndFifteen$inboundSchema, OneHundredAndFifteen$outboundSchema, OneHundredAndFifteen$, OneHundredAndFourteen$inboundSchema, OneHundredAndFourteen$outboundSchema, OneHundredAndFourteen$, Previous$inboundSchema, Previous$outboundSchema, Previous$, Next$inboundSchema, Next$outboundSchema, Next$, OneHundredAndThirteen$inboundSchema, OneHundredAndThirteen$outboundSchema, OneHundredAndThirteen$, PayloadRemoteCaching$inboundSchema, PayloadRemoteCaching$outboundSchema, PayloadRemoteCaching$, OneHundredAndTwelve$inboundSchema, OneHundredAndTwelve$outboundSchema, OneHundredAndTwelve$, OneHundredAndEleven$inboundSchema, OneHundredAndEleven$outboundSchema, OneHundredAndEleven$, OneHundredAndTen$inboundSchema, OneHundredAndTen$outboundSchema, OneHundredAndTen$, OneHundredAndNine$inboundSchema, OneHundredAndNine$outboundSchema, OneHundredAndNine$, UserEventPayload108User$inboundSchema, UserEventPayload108User$outboundSchema, UserEventPayload108User$, OneHundredAndEight$inboundSchema, OneHundredAndEight$outboundSchema, OneHundredAndEight$, UserEventPayloadUser$inboundSchema, UserEventPayloadUser$outboundSchema, UserEventPayloadUser$, OneHundredAndSeven$inboundSchema, OneHundredAndSeven$outboundSchema, OneHundredAndSeven$, UpdatedUser$inboundSchema, UpdatedUser$outboundSchema, UpdatedUser$, OneHundredAndSix$inboundSchema, OneHundredAndSix$outboundSchema, OneHundredAndSix$, OneHundredAndFive$inboundSchema, OneHundredAndFive$outboundSchema, OneHundredAndFive$, DeletedUser$inboundSchema, DeletedUser$outboundSchema, DeletedUser$, OneHundredAndFour$inboundSchema, OneHundredAndFour$outboundSchema, OneHundredAndFour$, InvitedUser$inboundSchema, InvitedUser$outboundSchema, InvitedUser$, OneHundredAndThree$inboundSchema, OneHundredAndThree$outboundSchema, OneHundredAndThree$, Reasons$inboundSchema, Reasons$outboundSchema, Reasons$, OneHundredAndTwo$inboundSchema, OneHundredAndTwo$outboundSchema, OneHundredAndTwo$, OneHundredAndOne$inboundSchema, OneHundredAndOne$outboundSchema, OneHundredAndOne$, Store$inboundSchema, Store$outboundSchema, Store$, OneHundred$inboundSchema, OneHundred$outboundSchema, OneHundred$, StoreType$inboundSchema, StoreType$outboundSchema, StoreType$, NinetyNine$inboundSchema, NinetyNine$outboundSchema, NinetyNine$, UserEventPayloadType$inboundSchema, UserEventPayloadType$outboundSchema, UserEventPayloadType$, NinetyEight$inboundSchema, NinetyEight$outboundSchema, NinetyEight$, UserEventPayload97Type$inboundSchema, UserEventPayload97Type$outboundSchema, UserEventPayload97Type$, PayloadPricingPlan$inboundSchema, PayloadPricingPlan$outboundSchema, PayloadPricingPlan$, BudgetItem$inboundSchema, BudgetItem$outboundSchema, BudgetItem$, PayloadBudget$inboundSchema, PayloadBudget$outboundSchema, PayloadBudget$, NinetySeven$inboundSchema, NinetySeven$outboundSchema, NinetySeven$, UserEventPayload96Type$inboundSchema, UserEventPayload96Type$outboundSchema, UserEventPayload96Type$, PricingPlan$inboundSchema, PricingPlan$outboundSchema, PricingPlan$, Budget$inboundSchema, Budget$outboundSchema, Budget$, NinetySix$inboundSchema, NinetySix$outboundSchema, NinetySix$, NinetyFive$inboundSchema, NinetyFive$outboundSchema, NinetyFive$, ScalingRules$inboundSchema, ScalingRules$outboundSchema, ScalingRules$, NinetyFour$inboundSchema, NinetyFour$outboundSchema, NinetyFour$, NinetyThree$inboundSchema, NinetyThree$outboundSchema, NinetyThree$, NinetyTwo$inboundSchema, NinetyTwo$outboundSchema, NinetyTwo$, Name2$inboundSchema, Name2$outboundSchema, Name2$, Name$inboundSchema, Name$outboundSchema, Name$, NinetyOne$inboundSchema, NinetyOne$outboundSchema, NinetyOne$, UserEventPayload90Team$inboundSchema, UserEventPayload90Team$outboundSchema, UserEventPayload90Team$, PayloadPreviousRule$inboundSchema, PayloadPreviousRule$outboundSchema, PayloadPreviousRule$, Ninety$inboundSchema, Ninety$outboundSchema, Ninety$, UserEventPayload89Team$inboundSchema, UserEventPayload89Team$outboundSchema, UserEventPayload89Team$, PreviousRule$inboundSchema, PreviousRule$outboundSchema, PreviousRule$, NextRule$inboundSchema, NextRule$outboundSchema, NextRule$, EightyNine$inboundSchema, EightyNine$outboundSchema, EightyNine$, EightyEight$inboundSchema, EightyEight$outboundSchema, EightyEight$, EightySeven$inboundSchema, EightySeven$outboundSchema, EightySeven$, EightySix$inboundSchema, EightySix$outboundSchema, EightySix$, EightyFive$inboundSchema, EightyFive$outboundSchema, EightyFive$, EightyFour$inboundSchema, EightyFour$outboundSchema, EightyFour$, UserEventPayload83Team$inboundSchema, UserEventPayload83Team$outboundSchema, UserEventPayload83Team$, OldConnectConfigurations$inboundSchema, OldConnectConfigurations$outboundSchema, OldConnectConfigurations$, NewConnectConfigurations$inboundSchema, NewConnectConfigurations$outboundSchema, NewConnectConfigurations$, UserEventPayload83Project$inboundSchema, UserEventPayload83Project$outboundSchema, UserEventPayload83Project$, EightyThree$inboundSchema, EightyThree$outboundSchema, EightyThree$, EightyTwo$inboundSchema, EightyTwo$outboundSchema, EightyTwo$, UserEventPayloadAction$inboundSchema, UserEventPayloadAction$outboundSchema, UserEventPayloadAction$, EightyOne$inboundSchema, EightyOne$outboundSchema, EightyOne$, Paths$inboundSchema, Paths$outboundSchema, Paths$, OptionsAllowlist$inboundSchema, OptionsAllowlist$outboundSchema, OptionsAllowlist$, PayloadPaths$inboundSchema, PayloadPaths$outboundSchema, PayloadPaths$, OldOptionsAllowlist$inboundSchema, OldOptionsAllowlist$outboundSchema, OldOptionsAllowlist$, Eighty$inboundSchema, Eighty$outboundSchema, Eighty$, TrustedIps$inboundSchema, TrustedIps$outboundSchema, TrustedIps$, OldTrustedIps$inboundSchema, OldTrustedIps$outboundSchema, OldTrustedIps$, SeventyNine$inboundSchema, SeventyNine$outboundSchema, SeventyNine$, PasswordProtection2$inboundSchema, PasswordProtection2$outboundSchema, PasswordProtection2$, PasswordProtectionDeploymentType$inboundSchema, PasswordProtectionDeploymentType$outboundSchema, PasswordProtectionDeploymentType$, PasswordProtection1$inboundSchema, PasswordProtection1$outboundSchema, PasswordProtection1$, PasswordProtection$inboundSchema, PasswordProtection$outboundSchema, PasswordProtection$, OldPasswordProtection2$inboundSchema, OldPasswordProtection2$outboundSchema, OldPasswordProtection2$, OldPasswordProtectionDeploymentType$inboundSchema, OldPasswordProtectionDeploymentType$outboundSchema, OldPasswordProtectionDeploymentType$, OldPasswordProtection1$inboundSchema, OldPasswordProtection1$outboundSchema, OldPasswordProtection1$, OldPasswordProtection$inboundSchema, OldPasswordProtection$outboundSchema, OldPasswordProtection$, SeventyEight$inboundSchema, SeventyEight$outboundSchema, SeventyEight$, SsoProtection2$inboundSchema, SsoProtection2$outboundSchema, SsoProtection2$, DeploymentType$inboundSchema, DeploymentType$outboundSchema, DeploymentType$, SsoProtection1$inboundSchema, SsoProtection1$outboundSchema, SsoProtection1$, SsoProtection$inboundSchema, SsoProtection$outboundSchema, SsoProtection$, OldSsoProtection2$inboundSchema, OldSsoProtection2$outboundSchema, OldSsoProtection2$, OldSsoProtectionDeploymentType$inboundSchema, OldSsoProtectionDeploymentType$outboundSchema, OldSsoProtectionDeploymentType$, OldSsoProtection1$inboundSchema, OldSsoProtection1$outboundSchema, OldSsoProtection1$, OldSsoProtection$inboundSchema, OldSsoProtection$outboundSchema, OldSsoProtection$, SeventySeven$inboundSchema, SeventySeven$outboundSchema, SeventySeven$, SeventySix$inboundSchema, SeventySix$outboundSchema, SeventySix$, SeventyFive$inboundSchema, SeventyFive$outboundSchema, SeventyFive$, ProjectAnalytics$inboundSchema, ProjectAnalytics$outboundSchema, ProjectAnalytics$, PrevProjectAnalytics$inboundSchema, PrevProjectAnalytics$outboundSchema, PrevProjectAnalytics$, SeventyFour$inboundSchema, SeventyFour$outboundSchema, SeventyFour$, UserEventPayload73Role$inboundSchema, UserEventPayload73Role$outboundSchema, UserEventPayload73Role$, PayloadOrigin$inboundSchema, PayloadOrigin$outboundSchema, PayloadOrigin$, PayloadGitUserId$inboundSchema, PayloadGitUserId$outboundSchema, PayloadGitUserId$, PayloadJoinedFrom$inboundSchema, PayloadJoinedFrom$outboundSchema, PayloadJoinedFrom$, RemovedUsers$inboundSchema, RemovedUsers$outboundSchema, RemovedUsers$, SeventyThree$inboundSchema, SeventyThree$outboundSchema, SeventyThree$, SeventyTwo$inboundSchema, SeventyTwo$outboundSchema, SeventyTwo$, SeventyOne$inboundSchema, SeventyOne$outboundSchema, SeventyOne$, Seventy$inboundSchema, Seventy$outboundSchema, Seventy$, SixtyNine$inboundSchema, SixtyNine$outboundSchema, SixtyNine$, PayloadName$inboundSchema, PayloadName$outboundSchema, PayloadName$, Browser$inboundSchema, Browser$outboundSchema, Browser$, UserEventPayloadName$inboundSchema, UserEventPayloadName$outboundSchema, UserEventPayloadName$, Os$inboundSchema, Os$outboundSchema, Os$, UserAgent$inboundSchema, UserAgent$outboundSchema, UserAgent$, Names$inboundSchema, Names$outboundSchema, Names$, City$inboundSchema, City$outboundSchema, City$, PayloadNames$inboundSchema, PayloadNames$outboundSchema, PayloadNames$, Country$inboundSchema, Country$outboundSchema, Country$, UserEventPayloadNames$inboundSchema, UserEventPayloadNames$outboundSchema, UserEventPayloadNames$, MostSpecificSubdivision$inboundSchema, MostSpecificSubdivision$outboundSchema, MostSpecificSubdivision$, Geolocation$inboundSchema, Geolocation$outboundSchema, Geolocation$, SixtyEight$inboundSchema, SixtyEight$outboundSchema, SixtyEight$, SixtySeven$inboundSchema, SixtySeven$outboundSchema, SixtySeven$, SixtySix$inboundSchema, SixtySix$outboundSchema, SixtySix$, SixtyFive$inboundSchema, SixtyFive$outboundSchema, SixtyFive$, SixtyFour$inboundSchema, SixtyFour$outboundSchema, SixtyFour$, Configurations$inboundSchema, Configurations$outboundSchema, Configurations$, SixtyThree$inboundSchema, SixtyThree$outboundSchema, SixtyThree$, UserEventPayload62Action$inboundSchema, UserEventPayload62Action$outboundSchema, UserEventPayload62Action$, BlockHistory$inboundSchema, BlockHistory$outboundSchema, BlockHistory$, History$inboundSchema, History$outboundSchema, History$, Abuse$inboundSchema, Abuse$outboundSchema, Abuse$, Plan$inboundSchema, Plan$outboundSchema, Plan$, PayloadBilling$inboundSchema, PayloadBilling$outboundSchema, PayloadBilling$, UserEventCredentialsType$inboundSchema, UserEventCredentialsType$outboundSchema, UserEventCredentialsType$, Credentials2$inboundSchema, Credentials2$outboundSchema, Credentials2$, CredentialsType$inboundSchema, CredentialsType$outboundSchema, CredentialsType$, Credentials1$inboundSchema, Credentials1$outboundSchema, Credentials1$, Credentials$inboundSchema, Credentials$outboundSchema, Credentials$, PayloadDataCache$inboundSchema, PayloadDataCache$outboundSchema, PayloadDataCache$, PayloadDismissals$inboundSchema, PayloadDismissals$outboundSchema, PayloadDismissals$, PayloadDismissedToasts$inboundSchema, PayloadDismissedToasts$outboundSchema, PayloadDismissedToasts$, PayloadFavoriteProjectsAndSpaces$inboundSchema, PayloadFavoriteProjectsAndSpaces$outboundSchema, PayloadFavoriteProjectsAndSpaces$, PayloadImportFlowGitNamespace$inboundSchema, PayloadImportFlowGitNamespace$outboundSchema, PayloadImportFlowGitNamespace$, PayloadImportFlowGitNamespaceId$inboundSchema, PayloadImportFlowGitNamespaceId$outboundSchema, PayloadImportFlowGitNamespaceId$, PayloadImportFlowGitProvider$inboundSchema, PayloadImportFlowGitProvider$outboundSchema, PayloadImportFlowGitProvider$, PayloadGitNamespaceId$inboundSchema, PayloadGitNamespaceId$outboundSchema, PayloadGitNamespaceId$, PayloadPreferredScopesAndGitNamespaces$inboundSchema, PayloadPreferredScopesAndGitNamespaces$outboundSchema, PayloadPreferredScopesAndGitNamespaces$, PreventAutoBlocking$inboundSchema, PreventAutoBlocking$outboundSchema, PreventAutoBlocking$, UserEventPayloadRemoteCaching$inboundSchema, UserEventPayloadRemoteCaching$outboundSchema, UserEventPayloadRemoteCaching$, PayloadBuildEntitlements$inboundSchema, PayloadBuildEntitlements$outboundSchema, PayloadBuildEntitlements$, PayloadPurchaseType$inboundSchema, PayloadPurchaseType$outboundSchema, PayloadPurchaseType$, PayloadBuildMachine$inboundSchema, PayloadBuildMachine$outboundSchema, PayloadBuildMachine$, PayloadResourceConfig$inboundSchema, PayloadResourceConfig$outboundSchema, PayloadResourceConfig$, ResourceLimits$inboundSchema, ResourceLimits$outboundSchema, ResourceLimits$, PayloadViewPreference$inboundSchema, PayloadViewPreference$outboundSchema, PayloadViewPreference$, PayloadFavoritesViewPreference$inboundSchema, PayloadFavoritesViewPreference$outboundSchema, PayloadFavoritesViewPreference$, PayloadRecentsViewPreference$inboundSchema, PayloadRecentsViewPreference$outboundSchema, PayloadRecentsViewPreference$, PayloadActiveDashboardViews$inboundSchema, PayloadActiveDashboardViews$outboundSchema, PayloadActiveDashboardViews$, SecondaryEmails$inboundSchema, SecondaryEmails$outboundSchema, SecondaryEmails$, Rules$inboundSchema, Rules$outboundSchema, Rules$, EmailNotifications$inboundSchema, EmailNotifications$outboundSchema, EmailNotifications$, PayloadReasons$inboundSchema, PayloadReasons$outboundSchema, PayloadReasons$, SiftScores$inboundSchema, SiftScores$outboundSchema, SiftScores$, UserEventPayload62Name$inboundSchema, UserEventPayload62Name$outboundSchema, UserEventPayload62Name$, SiftRoute$inboundSchema, SiftRoute$outboundSchema, SiftRoute$, PayloadReason$inboundSchema, PayloadReason$outboundSchema, PayloadReason$, PayloadBlockedDueToOverageType$inboundSchema, PayloadBlockedDueToOverageType$outboundSchema, PayloadBlockedDueToOverageType$, PayloadSoftBlock$inboundSchema, PayloadSoftBlock$outboundSchema, PayloadSoftBlock$, UserEventPayload62Role$inboundSchema, UserEventPayload62Role$outboundSchema, UserEventPayload62Role$, PayloadTeamRoles$inboundSchema, PayloadTeamRoles$outboundSchema, PayloadTeamRoles$, PayloadTeamPermissions$inboundSchema, PayloadTeamPermissions$outboundSchema, PayloadTeamPermissions$, UserEventPayloadOrigin$inboundSchema, UserEventPayloadOrigin$outboundSchema, UserEventPayloadOrigin$, UserEventPayloadGitUserId$inboundSchema, UserEventPayloadGitUserId$outboundSchema, UserEventPayloadGitUserId$, UserEventPayloadJoinedFrom$inboundSchema, UserEventPayloadJoinedFrom$outboundSchema, UserEventPayloadJoinedFrom$, Teams$inboundSchema, Teams$outboundSchema, Teams$, UserEventPayload62Type$inboundSchema, UserEventPayload62Type$outboundSchema, UserEventPayload62Type$, UsageAlerts$inboundSchema, UsageAlerts$outboundSchema, UsageAlerts$, AiCredits$inboundSchema, AiCredits$outboundSchema, AiCredits$, AnalyticsUsage$inboundSchema, AnalyticsUsage$outboundSchema, AnalyticsUsage$, Artifacts$inboundSchema, Artifacts$outboundSchema, Artifacts$, Bandwidth$inboundSchema, Bandwidth$outboundSchema, Bandwidth$, BlobTotalAdvancedRequests$inboundSchema, BlobTotalAdvancedRequests$outboundSchema, BlobTotalAdvancedRequests$, BlobTotalAvgSizeInBytes$inboundSchema, BlobTotalAvgSizeInBytes$outboundSchema, BlobTotalAvgSizeInBytes$, BlobTotalGetResponseObjectSizeInBytes$inboundSchema, BlobTotalGetResponseObjectSizeInBytes$outboundSchema, BlobTotalGetResponseObjectSizeInBytes$, BlobTotalSimpleRequests$inboundSchema, BlobTotalSimpleRequests$outboundSchema, BlobTotalSimpleRequests$, DataCacheRead$inboundSchema, DataCacheRead$outboundSchema, DataCacheRead$, DataCacheWrite$inboundSchema, DataCacheWrite$outboundSchema, DataCacheWrite$, EdgeConfigRead$inboundSchema, EdgeConfigRead$outboundSchema, EdgeConfigRead$, EdgeConfigWrite$inboundSchema, EdgeConfigWrite$outboundSchema, EdgeConfigWrite$, EdgeFunctionExecutionUnits$inboundSchema, EdgeFunctionExecutionUnits$outboundSchema, EdgeFunctionExecutionUnits$, EdgeMiddlewareInvocations$inboundSchema, EdgeMiddlewareInvocations$outboundSchema, EdgeMiddlewareInvocations$, EdgeRequestAdditionalCpuDuration$inboundSchema, EdgeRequestAdditionalCpuDuration$outboundSchema, EdgeRequestAdditionalCpuDuration$, EdgeRequest$inboundSchema, EdgeRequest$outboundSchema, EdgeRequest$, ElasticConcurrencyBuildSlots$inboundSchema, ElasticConcurrencyBuildSlots$outboundSchema, ElasticConcurrencyBuildSlots$, FastDataTransfer$inboundSchema, FastDataTransfer$outboundSchema, FastDataTransfer$, FastOriginTransfer$inboundSchema, FastOriginTransfer$outboundSchema, FastOriginTransfer$, FunctionDuration$inboundSchema, FunctionDuration$outboundSchema, FunctionDuration$, FunctionInvocation$inboundSchema, FunctionInvocation$outboundSchema, FunctionInvocation$, ImageOptimizationCacheRead$inboundSchema, ImageOptimizationCacheRead$outboundSchema, ImageOptimizationCacheRead$, ImageOptimizationCacheWrite$inboundSchema, ImageOptimizationCacheWrite$outboundSchema, ImageOptimizationCacheWrite$, ImageOptimizationTransformation$inboundSchema, ImageOptimizationTransformation$outboundSchema, ImageOptimizationTransformation$, LogDrainsVolume$inboundSchema, LogDrainsVolume$outboundSchema, LogDrainsVolume$, MonitoringMetric$inboundSchema, MonitoringMetric$outboundSchema, MonitoringMetric$, BlobDataTransfer$inboundSchema, BlobDataTransfer$outboundSchema, BlobDataTransfer$, ObservabilityEvent$inboundSchema, ObservabilityEvent$outboundSchema, ObservabilityEvent$, PostgresComputeTime$inboundSchema, PostgresComputeTime$outboundSchema, PostgresComputeTime$, PostgresDataStorage$inboundSchema, PostgresDataStorage$outboundSchema, PostgresDataStorage$, PostgresDataTransfer$inboundSchema, PostgresDataTransfer$outboundSchema, PostgresDataTransfer$, PostgresDatabase$inboundSchema, PostgresDatabase$outboundSchema, PostgresDatabase$, PostgresWrittenData$inboundSchema, PostgresWrittenData$outboundSchema, PostgresWrittenData$, ServerlessFunctionExecution$inboundSchema, ServerlessFunctionExecution$outboundSchema, ServerlessFunctionExecution$, SourceImages$inboundSchema, SourceImages$outboundSchema, SourceImages$, StorageRedisTotalBandwidthInBytes$inboundSchema, StorageRedisTotalBandwidthInBytes$outboundSchema, StorageRedisTotalBandwidthInBytes$, StorageRedisTotalCommands$inboundSchema, StorageRedisTotalCommands$outboundSchema, StorageRedisTotalCommands$, StorageRedisTotalDailyAvgStorageInBytes$inboundSchema, StorageRedisTotalDailyAvgStorageInBytes$outboundSchema, StorageRedisTotalDailyAvgStorageInBytes$, StorageRedisTotalDatabases$inboundSchema, StorageRedisTotalDatabases$outboundSchema, StorageRedisTotalDatabases$, WafOwaspExcessBytes$inboundSchema, WafOwaspExcessBytes$outboundSchema, WafOwaspExcessBytes$, WafOwaspRequests$inboundSchema, WafOwaspRequests$outboundSchema, WafOwaspRequests$, WafRateLimitRequest$inboundSchema, WafRateLimitRequest$outboundSchema, WafRateLimitRequest$, WebAnalyticsEvent$inboundSchema, WebAnalyticsEvent$outboundSchema, WebAnalyticsEvent$, OverageUsageAlerts$inboundSchema, OverageUsageAlerts$outboundSchema, OverageUsageAlerts$, OverageMetadata$inboundSchema, OverageMetadata$outboundSchema, OverageMetadata$, EnablePreviewFeedback$inboundSchema, EnablePreviewFeedback$outboundSchema, EnablePreviewFeedback$, BlockReason$inboundSchema, BlockReason$outboundSchema, BlockReason$, PayloadWebAnalytics$inboundSchema, PayloadWebAnalytics$outboundSchema, PayloadWebAnalytics$, PayloadBlockReason$inboundSchema, PayloadBlockReason$outboundSchema, PayloadBlockReason$, BlockType$inboundSchema, BlockType$outboundSchema, BlockType$, Monitoring$inboundSchema, Monitoring$outboundSchema, Monitoring$, UserEventPayloadBlockReason$inboundSchema, UserEventPayloadBlockReason$outboundSchema, UserEventPayloadBlockReason$, PayloadBlockType$inboundSchema, PayloadBlockType$outboundSchema, PayloadBlockType$, ObservabilityPlus$inboundSchema, ObservabilityPlus$outboundSchema, ObservabilityPlus$, UserEventPayload62BlockReason$inboundSchema, UserEventPayload62BlockReason$outboundSchema, UserEventPayload62BlockReason$, UserEventPayloadDataCache$inboundSchema, UserEventPayloadDataCache$outboundSchema, UserEventPayloadDataCache$, UserEventPayload62NewOwnerBlockReason$inboundSchema, UserEventPayload62NewOwnerBlockReason$outboundSchema, UserEventPayload62NewOwnerBlockReason$, PayloadImageOptimizationTransformation$inboundSchema, PayloadImageOptimizationTransformation$outboundSchema, PayloadImageOptimizationTransformation$, UserEventPayload62NewOwnerFeatureBlocksBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlockReason$, PayloadSourceImages$inboundSchema, PayloadSourceImages$outboundSchema, PayloadSourceImages$, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason$, OverageReason$inboundSchema, OverageReason$outboundSchema, OverageReason$, BlobT$inboundSchema, BlobT$outboundSchema, BlobT$, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason$, PayloadOverageReason$inboundSchema, PayloadOverageReason$outboundSchema, PayloadOverageReason$, Postgres$inboundSchema, Postgres$outboundSchema, Postgres$, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason$, UserEventPayloadOverageReason$inboundSchema, UserEventPayloadOverageReason$outboundSchema, UserEventPayloadOverageReason$, Redis$inboundSchema, Redis$outboundSchema, Redis$, PayloadFeatureBlocks$inboundSchema, PayloadFeatureBlocks$outboundSchema, PayloadFeatureBlocks$, PayloadVersion$inboundSchema, PayloadVersion$outboundSchema, PayloadVersion$, PayloadNorthstarMigration$inboundSchema, PayloadNorthstarMigration$outboundSchema, PayloadNorthstarMigration$, Totp$inboundSchema, Totp$outboundSchema, Totp$, MfaConfiguration$inboundSchema, MfaConfiguration$outboundSchema, MfaConfiguration$, NewOwner$inboundSchema, NewOwner$outboundSchema, NewOwner$, SixtyTwo$inboundSchema, SixtyTwo$outboundSchema, SixtyTwo$, SixtyOne$inboundSchema, SixtyOne$outboundSchema, SixtyOne$, Sixty$inboundSchema, Sixty$outboundSchema, Sixty$, ConfigChanges$inboundSchema, ConfigChanges$outboundSchema, ConfigChanges$, FiftyNine$inboundSchema, FiftyNine$outboundSchema, FiftyNine$, UserEventPayload58OldEnvVarType$inboundSchema, UserEventPayload58OldEnvVarType$outboundSchema, UserEventPayload58OldEnvVarType$, UserEventPayloadTarget$inboundSchema, UserEventPayloadTarget$outboundSchema, UserEventPayloadTarget$, OldEnvVar$inboundSchema, OldEnvVar$outboundSchema, OldEnvVar$, UserEventPayload58Type$inboundSchema, UserEventPayload58Type$outboundSchema, UserEventPayload58Type$, UserEventPayload58Target$inboundSchema, UserEventPayload58Target$outboundSchema, UserEventPayload58Target$, NewEnvVar$inboundSchema, NewEnvVar$outboundSchema, NewEnvVar$, OldTarget$inboundSchema, OldTarget$outboundSchema, OldTarget$, NewTarget$inboundSchema, NewTarget$outboundSchema, NewTarget$, OldProjects$inboundSchema, OldProjects$outboundSchema, OldProjects$, NewProjects$inboundSchema, NewProjects$outboundSchema, NewProjects$, UpdateDiff$inboundSchema, UpdateDiff$outboundSchema, UpdateDiff$, FiftyEight$inboundSchema, FiftyEight$outboundSchema, FiftyEight$, PayloadType$inboundSchema, PayloadType$outboundSchema, PayloadType$, PayloadTarget$inboundSchema, PayloadTarget$outboundSchema, PayloadTarget$, FiftySeven$inboundSchema, FiftySeven$outboundSchema, FiftySeven$, Target$inboundSchema, Target$outboundSchema, Target$, FiftySix$inboundSchema, FiftySix$outboundSchema, FiftySix$, FiftyFive$inboundSchema, FiftyFive$outboundSchema, FiftyFive$, FiftyFour$inboundSchema, FiftyFour$outboundSchema, FiftyFour$, FiftyThree$inboundSchema, FiftyThree$outboundSchema, FiftyThree$, FiftyTwo$inboundSchema, FiftyTwo$outboundSchema, FiftyTwo$, FiftyOne$inboundSchema, FiftyOne$outboundSchema, FiftyOne$, Fifty$inboundSchema, Fifty$outboundSchema, Fifty$, FortyNine$inboundSchema, FortyNine$outboundSchema, FortyNine$, FortyEight$inboundSchema, FortyEight$outboundSchema, FortyEight$, UserEventPayload47OldTeam$inboundSchema, UserEventPayload47OldTeam$outboundSchema, UserEventPayload47OldTeam$, UserEventPayload47NewTeam$inboundSchema, UserEventPayload47NewTeam$outboundSchema, UserEventPayload47NewTeam$, FortySeven$inboundSchema, FortySeven$outboundSchema, FortySeven$, FortySix$inboundSchema, FortySix$outboundSchema, FortySix$, FortyFive$inboundSchema, FortyFive$outboundSchema, FortyFive$, FortyFour$inboundSchema, FortyFour$outboundSchema, FortyFour$, FortyThree$inboundSchema, FortyThree$outboundSchema, FortyThree$, FortyTwo$inboundSchema, FortyTwo$outboundSchema, FortyTwo$, FortyOne$inboundSchema, FortyOne$outboundSchema, FortyOne$, Forty$inboundSchema, Forty$outboundSchema, Forty$, UserEventPayloadDeployment$inboundSchema, UserEventPayloadDeployment$outboundSchema, UserEventPayloadDeployment$, ThirtyNine$inboundSchema, ThirtyNine$outboundSchema, ThirtyNine$, UserEventPayloadOldTeam$inboundSchema, UserEventPayloadOldTeam$outboundSchema, UserEventPayloadOldTeam$, UserEventPayloadNewTeam$inboundSchema, UserEventPayloadNewTeam$outboundSchema, UserEventPayloadNewTeam$, ThirtyEight$inboundSchema, ThirtyEight$outboundSchema, ThirtyEight$, PayloadDeployment$inboundSchema, PayloadDeployment$outboundSchema, PayloadDeployment$, ThirtySeven$inboundSchema, ThirtySeven$outboundSchema, ThirtySeven$, UserEventPayload36Project$inboundSchema, UserEventPayload36Project$outboundSchema, UserEventPayload36Project$, DeployHook$inboundSchema, DeployHook$outboundSchema, DeployHook$, Job$inboundSchema, Job$outboundSchema, Job$, ThirtySix$inboundSchema, ThirtySix$outboundSchema, ThirtySix$, ThirtyFive$inboundSchema, ThirtyFive$outboundSchema, ThirtyFive$, ThirtyFour$inboundSchema, ThirtyFour$outboundSchema, ThirtyFour$, ThirtyThree$inboundSchema, ThirtyThree$outboundSchema, ThirtyThree$, UserEventPayload32Team$inboundSchema, UserEventPayload32Team$outboundSchema, UserEventPayload32Team$, UserEventPayload32Configuration$inboundSchema, UserEventPayload32Configuration$outboundSchema, UserEventPayload32Configuration$, ThirtyTwo$inboundSchema, ThirtyTwo$outboundSchema, ThirtyTwo$, UserEventPayloadTeam$inboundSchema, UserEventPayloadTeam$outboundSchema, UserEventPayloadTeam$, UserEventPayloadConfiguration$inboundSchema, UserEventPayloadConfiguration$outboundSchema, UserEventPayloadConfiguration$, UserEventPayload31Project$inboundSchema, UserEventPayload31Project$outboundSchema, UserEventPayload31Project$, ThirtyOne$inboundSchema, ThirtyOne$outboundSchema, ThirtyOne$, PayloadTeam$inboundSchema, PayloadTeam$outboundSchema, PayloadTeam$, PayloadConfiguration$inboundSchema, PayloadConfiguration$outboundSchema, PayloadConfiguration$, UserEventPayloadProject$inboundSchema, UserEventPayloadProject$outboundSchema, UserEventPayloadProject$, Thirty$inboundSchema, Thirty$outboundSchema, Thirty$, Team$inboundSchema, Team$outboundSchema, Team$, Configuration$inboundSchema, Configuration$outboundSchema, Configuration$, PayloadProject$inboundSchema, PayloadProject$outboundSchema, PayloadProject$, TwentyNine$inboundSchema, TwentyNine$outboundSchema, TwentyNine$, TwentyEight$inboundSchema, TwentyEight$outboundSchema, TwentyEight$, TwentySeven$inboundSchema, TwentySeven$outboundSchema, TwentySeven$, TwentySix$inboundSchema, TwentySix$outboundSchema, TwentySix$, TwentyFive$inboundSchema, TwentyFive$outboundSchema, TwentyFive$, TwentyFour$inboundSchema, TwentyFour$outboundSchema, TwentyFour$, TwentyThree$inboundSchema, TwentyThree$outboundSchema, TwentyThree$, PayloadOldTeam$inboundSchema, PayloadOldTeam$outboundSchema, PayloadOldTeam$, PayloadNewTeam$inboundSchema, PayloadNewTeam$outboundSchema, PayloadNewTeam$, TwentyTwo$inboundSchema, TwentyTwo$outboundSchema, TwentyTwo$, TwentyOne$inboundSchema, TwentyOne$outboundSchema, TwentyOne$, Twenty$inboundSchema, Twenty$outboundSchema, Twenty$, Nineteen$inboundSchema, Nineteen$outboundSchema, Nineteen$, Eighteen$inboundSchema, Eighteen$outboundSchema, Eighteen$, Seventeen$inboundSchema, Seventeen$outboundSchema, Seventeen$, Sixteen$inboundSchema, Sixteen$outboundSchema, Sixteen$, OldTeam$inboundSchema, OldTeam$outboundSchema, OldTeam$, NewTeam$inboundSchema, NewTeam$outboundSchema, NewTeam$, Fifteen$inboundSchema, Fifteen$outboundSchema, Fifteen$, Fourteen$inboundSchema, Fourteen$outboundSchema, Fourteen$, Thirteen$inboundSchema, Thirteen$outboundSchema, Thirteen$, PayloadAction$inboundSchema, PayloadAction$outboundSchema, PayloadAction$, Twelve$inboundSchema, Twelve$outboundSchema, Twelve$, Eleven$inboundSchema, Eleven$outboundSchema, Eleven$, Ten$inboundSchema, Ten$outboundSchema, Ten$, Nine$inboundSchema, Nine$outboundSchema, Nine$, Eight$inboundSchema, Eight$outboundSchema, Eight$, Deployment$inboundSchema, Deployment$outboundSchema, Deployment$, Seven$inboundSchema, Seven$outboundSchema, Seven$, UserEventPayload6AccessGroup$inboundSchema, UserEventPayload6AccessGroup$outboundSchema, UserEventPayload6AccessGroup$, Project$inboundSchema, Project$outboundSchema, Project$, Six$inboundSchema, Six$outboundSchema, Six$, UserEventPayloadAccessGroup$inboundSchema, UserEventPayloadAccessGroup$outboundSchema, UserEventPayloadAccessGroup$, PayloadUser$inboundSchema, PayloadUser$outboundSchema, PayloadUser$, Five$inboundSchema, Five$outboundSchema, Five$, PayloadAccessGroup$inboundSchema, PayloadAccessGroup$outboundSchema, PayloadAccessGroup$, Four$inboundSchema, Four$outboundSchema, Four$, AccessGroup$inboundSchema, AccessGroup$outboundSchema, AccessGroup$, Three$inboundSchema, Three$outboundSchema, Three$, Action$inboundSchema, Action$outboundSchema, Action$, Two$inboundSchema, Two$outboundSchema, Two$, One$inboundSchema, One$outboundSchema, One$, Payload$inboundSchema, Payload$outboundSchema, Payload$, UserEvent$inboundSchema, UserEvent$outboundSchema, UserEvent$;
|
|
95252
95464
|
var init_userevent = __esm(() => {
|
|
95253
95465
|
init_lib();
|
|
95254
95466
|
init_primitives();
|
|
@@ -98665,12 +98877,14 @@ var init_userevent = __esm(() => {
|
|
|
98665
98877
|
PayloadBuildMachine$inboundSchema = objectType({
|
|
98666
98878
|
purchaseType: PayloadPurchaseType$inboundSchema.optional(),
|
|
98667
98879
|
abovePlan: booleanType().optional(),
|
|
98880
|
+
isDefaultBuildMachine: booleanType().optional(),
|
|
98668
98881
|
cores: numberType().optional(),
|
|
98669
98882
|
memory: numberType().optional()
|
|
98670
98883
|
});
|
|
98671
98884
|
PayloadBuildMachine$outboundSchema = objectType({
|
|
98672
98885
|
purchaseType: PayloadPurchaseType$outboundSchema.optional(),
|
|
98673
98886
|
abovePlan: booleanType().optional(),
|
|
98887
|
+
isDefaultBuildMachine: booleanType().optional(),
|
|
98674
98888
|
cores: numberType().optional(),
|
|
98675
98889
|
memory: numberType().optional()
|
|
98676
98890
|
});
|
|
@@ -99682,6 +99896,18 @@ var init_userevent = __esm(() => {
|
|
|
99682
99896
|
OverageUsageAlerts$.inboundSchema = OverageUsageAlerts$inboundSchema;
|
|
99683
99897
|
OverageUsageAlerts$.outboundSchema = OverageUsageAlerts$outboundSchema;
|
|
99684
99898
|
})(OverageUsageAlerts$ ||= {});
|
|
99899
|
+
OverageMetadata$inboundSchema = objectType({
|
|
99900
|
+
firstTimeOnDemandNotificationSentAt: numberType().optional(),
|
|
99901
|
+
overageSummaryEmailSentAt: numberType().optional()
|
|
99902
|
+
});
|
|
99903
|
+
OverageMetadata$outboundSchema = objectType({
|
|
99904
|
+
firstTimeOnDemandNotificationSentAt: numberType().optional(),
|
|
99905
|
+
overageSummaryEmailSentAt: numberType().optional()
|
|
99906
|
+
});
|
|
99907
|
+
((OverageMetadata$) => {
|
|
99908
|
+
OverageMetadata$.inboundSchema = OverageMetadata$inboundSchema;
|
|
99909
|
+
OverageMetadata$.outboundSchema = OverageMetadata$outboundSchema;
|
|
99910
|
+
})(OverageMetadata$ ||= {});
|
|
99685
99911
|
EnablePreviewFeedback$inboundSchema = nativeEnumType(EnablePreviewFeedback);
|
|
99686
99912
|
EnablePreviewFeedback$outboundSchema = EnablePreviewFeedback$inboundSchema;
|
|
99687
99913
|
((EnablePreviewFeedback$) => {
|
|
@@ -100076,6 +100302,7 @@ var init_userevent = __esm(() => {
|
|
|
100076
100302
|
type: UserEventPayload62Type$inboundSchema,
|
|
100077
100303
|
usageAlerts: nullableType(lazyType(() => UsageAlerts$inboundSchema)).optional(),
|
|
100078
100304
|
overageUsageAlerts: lazyType(() => OverageUsageAlerts$inboundSchema).optional(),
|
|
100305
|
+
overageMetadata: lazyType(() => OverageMetadata$inboundSchema).optional(),
|
|
100079
100306
|
username: stringType(),
|
|
100080
100307
|
updatedAt: numberType(),
|
|
100081
100308
|
enablePreviewFeedback: EnablePreviewFeedback$inboundSchema.optional(),
|
|
@@ -100152,6 +100379,7 @@ var init_userevent = __esm(() => {
|
|
|
100152
100379
|
type: UserEventPayload62Type$outboundSchema,
|
|
100153
100380
|
usageAlerts: nullableType(lazyType(() => UsageAlerts$outboundSchema)).optional(),
|
|
100154
100381
|
overageUsageAlerts: lazyType(() => OverageUsageAlerts$outboundSchema).optional(),
|
|
100382
|
+
overageMetadata: lazyType(() => OverageMetadata$outboundSchema).optional(),
|
|
100155
100383
|
username: stringType(),
|
|
100156
100384
|
updatedAt: numberType(),
|
|
100157
100385
|
enablePreviewFeedback: EnablePreviewFeedback$outboundSchema.optional(),
|
|
@@ -102355,9 +102583,9 @@ var init_listusereventsop = __esm(() => {
|
|
|
102355
102583
|
|
|
102356
102584
|
// src/funcs/userListUserEvents.ts
|
|
102357
102585
|
function userListUserEvents(client, request, options) {
|
|
102358
|
-
return new APIPromise($
|
|
102586
|
+
return new APIPromise($do156(client, request, options));
|
|
102359
102587
|
}
|
|
102360
|
-
async function $
|
|
102588
|
+
async function $do156(client, request, options) {
|
|
102361
102589
|
const parsed = safeParse(request, (value) => ListUserEventsRequest$outboundSchema.parse(value), "Input validation failed");
|
|
102362
102590
|
if (!parsed.ok) {
|
|
102363
102591
|
return [parsed, { status: "invalid" }];
|
|
@@ -102437,12 +102665,12 @@ var init_userListUserEvents = __esm(() => {
|
|
|
102437
102665
|
});
|
|
102438
102666
|
|
|
102439
102667
|
// src/mcp-server/tools/userListUserEvents.ts
|
|
102440
|
-
var
|
|
102668
|
+
var args154, tool$userListUserEvents;
|
|
102441
102669
|
var init_userListUserEvents2 = __esm(() => {
|
|
102442
102670
|
init_userListUserEvents();
|
|
102443
102671
|
init_listusereventsop();
|
|
102444
102672
|
init_tools();
|
|
102445
|
-
|
|
102673
|
+
args154 = {
|
|
102446
102674
|
request: ListUserEventsRequest$inboundSchema
|
|
102447
102675
|
};
|
|
102448
102676
|
tool$userListUserEvents = {
|
|
@@ -102450,9 +102678,9 @@ var init_userListUserEvents2 = __esm(() => {
|
|
|
102450
102678
|
description: `List User Events
|
|
102451
102679
|
|
|
102452
102680
|
Retrieves a list of "events" generated by the User on Vercel. Events are generated when the User performs a particular action, such as logging in, creating a deployment, and joining a Team (just to name a few). When the \`teamId\` parameter is supplied, then the events that are returned will be in relation to the Team that was specified.`,
|
|
102453
|
-
args:
|
|
102454
|
-
tool: async (client,
|
|
102455
|
-
const [result, apiCall] = await userListUserEvents(client,
|
|
102681
|
+
args: args154,
|
|
102682
|
+
tool: async (client, args155, ctx) => {
|
|
102683
|
+
const [result, apiCall] = await userListUserEvents(client, args155.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
102456
102684
|
if (!result.ok) {
|
|
102457
102685
|
return {
|
|
102458
102686
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -102509,9 +102737,9 @@ var init_requestdeleteop = __esm(() => {
|
|
|
102509
102737
|
|
|
102510
102738
|
// src/funcs/userRequestDelete.ts
|
|
102511
102739
|
function userRequestDelete(client, request, options) {
|
|
102512
|
-
return new APIPromise($
|
|
102740
|
+
return new APIPromise($do157(client, request, options));
|
|
102513
102741
|
}
|
|
102514
|
-
async function $
|
|
102742
|
+
async function $do157(client, request, options) {
|
|
102515
102743
|
const parsed = safeParse(request, (value) => RequestDeleteRequestBody$outboundSchema.parse(value), "Input validation failed");
|
|
102516
102744
|
if (!parsed.ok) {
|
|
102517
102745
|
return [parsed, { status: "invalid" }];
|
|
@@ -102581,12 +102809,12 @@ var init_userRequestDelete = __esm(() => {
|
|
|
102581
102809
|
});
|
|
102582
102810
|
|
|
102583
102811
|
// src/mcp-server/tools/userRequestDelete.ts
|
|
102584
|
-
var
|
|
102812
|
+
var args155, tool$userRequestDelete;
|
|
102585
102813
|
var init_userRequestDelete2 = __esm(() => {
|
|
102586
102814
|
init_userRequestDelete();
|
|
102587
102815
|
init_requestdeleteop();
|
|
102588
102816
|
init_tools();
|
|
102589
|
-
|
|
102817
|
+
args155 = {
|
|
102590
102818
|
request: RequestDeleteRequestBody$inboundSchema
|
|
102591
102819
|
};
|
|
102592
102820
|
tool$userRequestDelete = {
|
|
@@ -102594,9 +102822,9 @@ var init_userRequestDelete2 = __esm(() => {
|
|
|
102594
102822
|
description: `Delete User Account
|
|
102595
102823
|
|
|
102596
102824
|
Initiates the deletion process for the currently authenticated User, by sending a deletion confirmation email. The email contains a link that the user needs to visit in order to proceed with the deletion process.`,
|
|
102597
|
-
args:
|
|
102598
|
-
tool: async (client,
|
|
102599
|
-
const [result, apiCall] = await userRequestDelete(client,
|
|
102825
|
+
args: args155,
|
|
102826
|
+
tool: async (client, args156, ctx) => {
|
|
102827
|
+
const [result, apiCall] = await userRequestDelete(client, args156.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
102600
102828
|
if (!result.ok) {
|
|
102601
102829
|
return {
|
|
102602
102830
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -102780,9 +103008,9 @@ var init_createwebhookop = __esm(() => {
|
|
|
102780
103008
|
|
|
102781
103009
|
// src/funcs/webhooksCreateWebhook.ts
|
|
102782
103010
|
function webhooksCreateWebhook(client, request, options) {
|
|
102783
|
-
return new APIPromise($
|
|
103011
|
+
return new APIPromise($do158(client, request, options));
|
|
102784
103012
|
}
|
|
102785
|
-
async function $
|
|
103013
|
+
async function $do158(client, request, options) {
|
|
102786
103014
|
const parsed = safeParse(request, (value) => CreateWebhookRequest$outboundSchema.parse(value), "Input validation failed");
|
|
102787
103015
|
if (!parsed.ok) {
|
|
102788
103016
|
return [parsed, { status: "invalid" }];
|
|
@@ -102857,12 +103085,12 @@ var init_webhooksCreateWebhook = __esm(() => {
|
|
|
102857
103085
|
});
|
|
102858
103086
|
|
|
102859
103087
|
// src/mcp-server/tools/webhooksCreateWebhook.ts
|
|
102860
|
-
var
|
|
103088
|
+
var args156, tool$webhooksCreateWebhook;
|
|
102861
103089
|
var init_webhooksCreateWebhook2 = __esm(() => {
|
|
102862
103090
|
init_webhooksCreateWebhook();
|
|
102863
103091
|
init_createwebhookop();
|
|
102864
103092
|
init_tools();
|
|
102865
|
-
|
|
103093
|
+
args156 = {
|
|
102866
103094
|
request: CreateWebhookRequest$inboundSchema
|
|
102867
103095
|
};
|
|
102868
103096
|
tool$webhooksCreateWebhook = {
|
|
@@ -102870,9 +103098,9 @@ var init_webhooksCreateWebhook2 = __esm(() => {
|
|
|
102870
103098
|
description: `Creates a webhook
|
|
102871
103099
|
|
|
102872
103100
|
Creates a webhook`,
|
|
102873
|
-
args:
|
|
102874
|
-
tool: async (client,
|
|
102875
|
-
const [result, apiCall] = await webhooksCreateWebhook(client,
|
|
103101
|
+
args: args156,
|
|
103102
|
+
tool: async (client, args157, ctx) => {
|
|
103103
|
+
const [result, apiCall] = await webhooksCreateWebhook(client, args157.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
102876
103104
|
if (!result.ok) {
|
|
102877
103105
|
return {
|
|
102878
103106
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -102907,9 +103135,9 @@ var init_deletewebhookop = __esm(() => {
|
|
|
102907
103135
|
|
|
102908
103136
|
// src/funcs/webhooksDeleteWebhook.ts
|
|
102909
103137
|
function webhooksDeleteWebhook(client, request, options) {
|
|
102910
|
-
return new APIPromise($
|
|
103138
|
+
return new APIPromise($do159(client, request, options));
|
|
102911
103139
|
}
|
|
102912
|
-
async function $
|
|
103140
|
+
async function $do159(client, request, options) {
|
|
102913
103141
|
const parsed = safeParse(request, (value) => DeleteWebhookRequest$outboundSchema.parse(value), "Input validation failed");
|
|
102914
103142
|
if (!parsed.ok) {
|
|
102915
103143
|
return [parsed, { status: "invalid" }];
|
|
@@ -102990,12 +103218,12 @@ var init_webhooksDeleteWebhook = __esm(() => {
|
|
|
102990
103218
|
});
|
|
102991
103219
|
|
|
102992
103220
|
// src/mcp-server/tools/webhooksDeleteWebhook.ts
|
|
102993
|
-
var
|
|
103221
|
+
var args157, tool$webhooksDeleteWebhook;
|
|
102994
103222
|
var init_webhooksDeleteWebhook2 = __esm(() => {
|
|
102995
103223
|
init_webhooksDeleteWebhook();
|
|
102996
103224
|
init_deletewebhookop();
|
|
102997
103225
|
init_tools();
|
|
102998
|
-
|
|
103226
|
+
args157 = {
|
|
102999
103227
|
request: DeleteWebhookRequest$inboundSchema
|
|
103000
103228
|
};
|
|
103001
103229
|
tool$webhooksDeleteWebhook = {
|
|
@@ -103003,9 +103231,9 @@ var init_webhooksDeleteWebhook2 = __esm(() => {
|
|
|
103003
103231
|
description: `Deletes a webhook
|
|
103004
103232
|
|
|
103005
103233
|
Deletes a webhook`,
|
|
103006
|
-
args:
|
|
103007
|
-
tool: async (client,
|
|
103008
|
-
const [result, apiCall] = await webhooksDeleteWebhook(client,
|
|
103234
|
+
args: args157,
|
|
103235
|
+
tool: async (client, args158, ctx) => {
|
|
103236
|
+
const [result, apiCall] = await webhooksDeleteWebhook(client, args158.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
103009
103237
|
if (!result.ok) {
|
|
103010
103238
|
return {
|
|
103011
103239
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -103112,9 +103340,9 @@ var init_getwebhookop = __esm(() => {
|
|
|
103112
103340
|
|
|
103113
103341
|
// src/funcs/webhooksGetWebhook.ts
|
|
103114
103342
|
function webhooksGetWebhook(client, request, options) {
|
|
103115
|
-
return new APIPromise($
|
|
103343
|
+
return new APIPromise($do160(client, request, options));
|
|
103116
103344
|
}
|
|
103117
|
-
async function $
|
|
103345
|
+
async function $do160(client, request, options) {
|
|
103118
103346
|
const parsed = safeParse(request, (value) => GetWebhookRequest$outboundSchema.parse(value), "Input validation failed");
|
|
103119
103347
|
if (!parsed.ok) {
|
|
103120
103348
|
return [parsed, { status: "invalid" }];
|
|
@@ -103194,12 +103422,12 @@ var init_webhooksGetWebhook = __esm(() => {
|
|
|
103194
103422
|
});
|
|
103195
103423
|
|
|
103196
103424
|
// src/mcp-server/tools/webhooksGetWebhook.ts
|
|
103197
|
-
var
|
|
103425
|
+
var args158, tool$webhooksGetWebhook;
|
|
103198
103426
|
var init_webhooksGetWebhook2 = __esm(() => {
|
|
103199
103427
|
init_webhooksGetWebhook();
|
|
103200
103428
|
init_getwebhookop();
|
|
103201
103429
|
init_tools();
|
|
103202
|
-
|
|
103430
|
+
args158 = {
|
|
103203
103431
|
request: GetWebhookRequest$inboundSchema
|
|
103204
103432
|
};
|
|
103205
103433
|
tool$webhooksGetWebhook = {
|
|
@@ -103207,9 +103435,9 @@ var init_webhooksGetWebhook2 = __esm(() => {
|
|
|
103207
103435
|
description: `Get a webhook
|
|
103208
103436
|
|
|
103209
103437
|
Get a webhook`,
|
|
103210
|
-
args:
|
|
103211
|
-
tool: async (client,
|
|
103212
|
-
const [result, apiCall] = await webhooksGetWebhook(client,
|
|
103438
|
+
args: args158,
|
|
103439
|
+
tool: async (client, args159, ctx) => {
|
|
103440
|
+
const [result, apiCall] = await webhooksGetWebhook(client, args159.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
103213
103441
|
if (!result.ok) {
|
|
103214
103442
|
return {
|
|
103215
103443
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -103474,9 +103702,9 @@ var init_getwebhooksop = __esm(() => {
|
|
|
103474
103702
|
|
|
103475
103703
|
// src/funcs/webhooksGetWebhooks.ts
|
|
103476
103704
|
function webhooksGetWebhooks(client, request, options) {
|
|
103477
|
-
return new APIPromise($
|
|
103705
|
+
return new APIPromise($do161(client, request, options));
|
|
103478
103706
|
}
|
|
103479
|
-
async function $
|
|
103707
|
+
async function $do161(client, request, options) {
|
|
103480
103708
|
const parsed = safeParse(request, (value) => GetWebhooksRequest$outboundSchema.parse(value), "Input validation failed");
|
|
103481
103709
|
if (!parsed.ok) {
|
|
103482
103710
|
return [parsed, { status: "invalid" }];
|
|
@@ -103551,12 +103779,12 @@ var init_webhooksGetWebhooks = __esm(() => {
|
|
|
103551
103779
|
});
|
|
103552
103780
|
|
|
103553
103781
|
// src/mcp-server/tools/webhooksGetWebhooks.ts
|
|
103554
|
-
var
|
|
103782
|
+
var args159, tool$webhooksGetWebhooks;
|
|
103555
103783
|
var init_webhooksGetWebhooks2 = __esm(() => {
|
|
103556
103784
|
init_webhooksGetWebhooks();
|
|
103557
103785
|
init_getwebhooksop();
|
|
103558
103786
|
init_tools();
|
|
103559
|
-
|
|
103787
|
+
args159 = {
|
|
103560
103788
|
request: GetWebhooksRequest$inboundSchema
|
|
103561
103789
|
};
|
|
103562
103790
|
tool$webhooksGetWebhooks = {
|
|
@@ -103564,9 +103792,9 @@ var init_webhooksGetWebhooks2 = __esm(() => {
|
|
|
103564
103792
|
description: `Get a list of webhooks
|
|
103565
103793
|
|
|
103566
103794
|
Get a list of webhooks`,
|
|
103567
|
-
args:
|
|
103568
|
-
tool: async (client,
|
|
103569
|
-
const [result, apiCall] = await webhooksGetWebhooks(client,
|
|
103795
|
+
args: args159,
|
|
103796
|
+
tool: async (client, args160, ctx) => {
|
|
103797
|
+
const [result, apiCall] = await webhooksGetWebhooks(client, args160.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
103570
103798
|
if (!result.ok) {
|
|
103571
103799
|
return {
|
|
103572
103800
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -103583,7 +103811,7 @@ Get a list of webhooks`,
|
|
|
103583
103811
|
function createMCPServer(deps) {
|
|
103584
103812
|
const server = new McpServer({
|
|
103585
103813
|
name: "Vercel",
|
|
103586
|
-
version: "1.6.
|
|
103814
|
+
version: "1.6.6"
|
|
103587
103815
|
});
|
|
103588
103816
|
const client = new VercelCore({
|
|
103589
103817
|
bearerToken: deps.bearerToken,
|
|
@@ -103629,6 +103857,7 @@ function createMCPServer(deps) {
|
|
|
103629
103857
|
tool(tool$projectsUpdateProjectDomain);
|
|
103630
103858
|
tool(tool$projectsRemoveProjectDomain);
|
|
103631
103859
|
tool(tool$projectsAddProjectDomain);
|
|
103860
|
+
tool(tool$projectsMoveProjectDomain);
|
|
103632
103861
|
tool(tool$projectsVerifyProjectDomain);
|
|
103633
103862
|
tool(tool$projectsFilterProjectEnvs);
|
|
103634
103863
|
tool(tool$projectsCreateProjectEnv);
|
|
@@ -103886,6 +104115,7 @@ var init_server2 = __esm(() => {
|
|
|
103886
104115
|
init_projectsGetProjectEnv2();
|
|
103887
104116
|
init_projectsGetProjects2();
|
|
103888
104117
|
init_projectsListPromoteAliases2();
|
|
104118
|
+
init_projectsMoveProjectDomain2();
|
|
103889
104119
|
init_projectsPauseProject2();
|
|
103890
104120
|
init_projectsRemoveProjectDomain2();
|
|
103891
104121
|
init_projectsRemoveProjectEnv2();
|
|
@@ -105114,7 +105344,7 @@ var routes = an({
|
|
|
105114
105344
|
var app = He(routes, {
|
|
105115
105345
|
name: "mcp",
|
|
105116
105346
|
versionInfo: {
|
|
105117
|
-
currentVersion: "1.6.
|
|
105347
|
+
currentVersion: "1.6.6"
|
|
105118
105348
|
}
|
|
105119
105349
|
});
|
|
105120
105350
|
zt(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -105122,5 +105352,5 @@ export {
|
|
|
105122
105352
|
app
|
|
105123
105353
|
};
|
|
105124
105354
|
|
|
105125
|
-
//# debugId=
|
|
105355
|
+
//# debugId=D71851914DCAED2064756E2164756E21
|
|
105126
105356
|
//# sourceMappingURL=mcp-server.js.map
|