@vercel/sdk 1.6.5 → 1.6.7
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 +519 -281
- 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 +185 -103
- 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 +7 -0
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +4 -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 +7 -0
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +4 -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 +7 -0
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +4 -0
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +7 -0
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +4 -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 +188 -106
- 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 +11 -0
- package/src/models/getdomainconfigop.ts +0 -11
- package/src/models/getprojectsop.ts +11 -0
- package/src/models/moveprojectdomainop.ts +356 -0
- package/src/models/updateprojectdatacacheop.ts +11 -0
- package/src/models/updateprojectop.ts +11 -0
- package/src/models/userevent.ts +80 -0
- package/src/sdk/projects.ts +22 -0
- package/vercel-spec.json +269 -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.7",
|
|
34194
34194
|
genVersion: "2.593.4",
|
|
34195
|
-
userAgent: "speakeasy-sdk/typescript 1.6.
|
|
34195
|
+
userAgent: "speakeasy-sdk/typescript 1.6.7 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;
|
|
@@ -66998,12 +66994,14 @@ var init_createprojectop = __esm(() => {
|
|
|
66998
66994
|
CreateProjectStages$inboundSchema = objectType({
|
|
66999
66995
|
targetPercentage: numberType(),
|
|
67000
66996
|
minutesToRelease: numberType().optional(),
|
|
67001
|
-
requireApproval: booleanType().optional()
|
|
66997
|
+
requireApproval: booleanType().optional(),
|
|
66998
|
+
duration: numberType().optional()
|
|
67002
66999
|
});
|
|
67003
67000
|
CreateProjectStages$outboundSchema = objectType({
|
|
67004
67001
|
targetPercentage: numberType(),
|
|
67005
67002
|
minutesToRelease: numberType().optional(),
|
|
67006
|
-
requireApproval: booleanType().optional()
|
|
67003
|
+
requireApproval: booleanType().optional(),
|
|
67004
|
+
duration: numberType().optional()
|
|
67007
67005
|
});
|
|
67008
67006
|
((CreateProjectStages$) => {
|
|
67009
67007
|
CreateProjectStages$.inboundSchema = CreateProjectStages$inboundSchema;
|
|
@@ -67378,6 +67376,7 @@ var init_createprojectop = __esm(() => {
|
|
|
67378
67376
|
observabilityConfiguration: arrayType(ACLAction$inboundSchema).optional(),
|
|
67379
67377
|
observabilityNotebook: arrayType(ACLAction$inboundSchema).optional(),
|
|
67380
67378
|
openTelemetryEndpoint: arrayType(ACLAction$inboundSchema).optional(),
|
|
67379
|
+
vercelAppInstallation: arrayType(ACLAction$inboundSchema).optional(),
|
|
67381
67380
|
paymentMethod: arrayType(ACLAction$inboundSchema).optional(),
|
|
67382
67381
|
permissions: arrayType(ACLAction$inboundSchema).optional(),
|
|
67383
67382
|
postgres: arrayType(ACLAction$inboundSchema).optional(),
|
|
@@ -67580,6 +67579,7 @@ var init_createprojectop = __esm(() => {
|
|
|
67580
67579
|
observabilityConfiguration: arrayType(ACLAction$outboundSchema).optional(),
|
|
67581
67580
|
observabilityNotebook: arrayType(ACLAction$outboundSchema).optional(),
|
|
67582
67581
|
openTelemetryEndpoint: arrayType(ACLAction$outboundSchema).optional(),
|
|
67582
|
+
vercelAppInstallation: arrayType(ACLAction$outboundSchema).optional(),
|
|
67583
67583
|
paymentMethod: arrayType(ACLAction$outboundSchema).optional(),
|
|
67584
67584
|
permissions: arrayType(ACLAction$outboundSchema).optional(),
|
|
67585
67585
|
postgres: arrayType(ACLAction$outboundSchema).optional(),
|
|
@@ -76488,12 +76488,14 @@ var init_getprojectsop = __esm(() => {
|
|
|
76488
76488
|
GetProjectsStages$inboundSchema = objectType({
|
|
76489
76489
|
targetPercentage: numberType(),
|
|
76490
76490
|
minutesToRelease: numberType().optional(),
|
|
76491
|
-
requireApproval: booleanType().optional()
|
|
76491
|
+
requireApproval: booleanType().optional(),
|
|
76492
|
+
duration: numberType().optional()
|
|
76492
76493
|
});
|
|
76493
76494
|
GetProjectsStages$outboundSchema = objectType({
|
|
76494
76495
|
targetPercentage: numberType(),
|
|
76495
76496
|
minutesToRelease: numberType().optional(),
|
|
76496
|
-
requireApproval: booleanType().optional()
|
|
76497
|
+
requireApproval: booleanType().optional(),
|
|
76498
|
+
duration: numberType().optional()
|
|
76497
76499
|
});
|
|
76498
76500
|
((GetProjectsStages$) => {
|
|
76499
76501
|
GetProjectsStages$.inboundSchema = GetProjectsStages$inboundSchema;
|
|
@@ -76868,6 +76870,7 @@ var init_getprojectsop = __esm(() => {
|
|
|
76868
76870
|
observabilityConfiguration: arrayType(ACLAction$inboundSchema).optional(),
|
|
76869
76871
|
observabilityNotebook: arrayType(ACLAction$inboundSchema).optional(),
|
|
76870
76872
|
openTelemetryEndpoint: arrayType(ACLAction$inboundSchema).optional(),
|
|
76873
|
+
vercelAppInstallation: arrayType(ACLAction$inboundSchema).optional(),
|
|
76871
76874
|
paymentMethod: arrayType(ACLAction$inboundSchema).optional(),
|
|
76872
76875
|
permissions: arrayType(ACLAction$inboundSchema).optional(),
|
|
76873
76876
|
postgres: arrayType(ACLAction$inboundSchema).optional(),
|
|
@@ -77070,6 +77073,7 @@ var init_getprojectsop = __esm(() => {
|
|
|
77070
77073
|
observabilityConfiguration: arrayType(ACLAction$outboundSchema).optional(),
|
|
77071
77074
|
observabilityNotebook: arrayType(ACLAction$outboundSchema).optional(),
|
|
77072
77075
|
openTelemetryEndpoint: arrayType(ACLAction$outboundSchema).optional(),
|
|
77076
|
+
vercelAppInstallation: arrayType(ACLAction$outboundSchema).optional(),
|
|
77073
77077
|
paymentMethod: arrayType(ACLAction$outboundSchema).optional(),
|
|
77074
77078
|
permissions: arrayType(ACLAction$outboundSchema).optional(),
|
|
77075
77079
|
postgres: arrayType(ACLAction$outboundSchema).optional(),
|
|
@@ -78166,6 +78170,212 @@ Get a list of aliases related to the last promote request with their mapping sta
|
|
|
78166
78170
|
};
|
|
78167
78171
|
});
|
|
78168
78172
|
|
|
78173
|
+
// src/models/moveprojectdomainop.ts
|
|
78174
|
+
var MoveProjectDomainRequestBody$inboundSchema, MoveProjectDomainRequestBody$outboundSchema, MoveProjectDomainRequestBody$, MoveProjectDomainRequest$inboundSchema, MoveProjectDomainRequest$outboundSchema, MoveProjectDomainRequest$, MoveProjectDomainVerification$inboundSchema, MoveProjectDomainVerification$outboundSchema, MoveProjectDomainVerification$, MoveProjectDomainResponseBody$inboundSchema, MoveProjectDomainResponseBody$outboundSchema, MoveProjectDomainResponseBody$;
|
|
78175
|
+
var init_moveprojectdomainop = __esm(() => {
|
|
78176
|
+
init_lib();
|
|
78177
|
+
init_primitives();
|
|
78178
|
+
MoveProjectDomainRequestBody$inboundSchema = objectType({
|
|
78179
|
+
projectId: stringType()
|
|
78180
|
+
});
|
|
78181
|
+
MoveProjectDomainRequestBody$outboundSchema = objectType({
|
|
78182
|
+
projectId: stringType()
|
|
78183
|
+
});
|
|
78184
|
+
((MoveProjectDomainRequestBody$) => {
|
|
78185
|
+
MoveProjectDomainRequestBody$.inboundSchema = MoveProjectDomainRequestBody$inboundSchema;
|
|
78186
|
+
MoveProjectDomainRequestBody$.outboundSchema = MoveProjectDomainRequestBody$outboundSchema;
|
|
78187
|
+
})(MoveProjectDomainRequestBody$ ||= {});
|
|
78188
|
+
MoveProjectDomainRequest$inboundSchema = objectType({
|
|
78189
|
+
idOrName: stringType(),
|
|
78190
|
+
domain: stringType(),
|
|
78191
|
+
teamId: stringType().optional(),
|
|
78192
|
+
slug: stringType().optional(),
|
|
78193
|
+
RequestBody: lazyType(() => MoveProjectDomainRequestBody$inboundSchema).optional()
|
|
78194
|
+
}).transform((v2) => {
|
|
78195
|
+
return remap(v2, {
|
|
78196
|
+
RequestBody: "requestBody"
|
|
78197
|
+
});
|
|
78198
|
+
});
|
|
78199
|
+
MoveProjectDomainRequest$outboundSchema = objectType({
|
|
78200
|
+
idOrName: stringType(),
|
|
78201
|
+
domain: stringType(),
|
|
78202
|
+
teamId: stringType().optional(),
|
|
78203
|
+
slug: stringType().optional(),
|
|
78204
|
+
requestBody: lazyType(() => MoveProjectDomainRequestBody$outboundSchema).optional()
|
|
78205
|
+
}).transform((v2) => {
|
|
78206
|
+
return remap(v2, {
|
|
78207
|
+
requestBody: "RequestBody"
|
|
78208
|
+
});
|
|
78209
|
+
});
|
|
78210
|
+
((MoveProjectDomainRequest$) => {
|
|
78211
|
+
MoveProjectDomainRequest$.inboundSchema = MoveProjectDomainRequest$inboundSchema;
|
|
78212
|
+
MoveProjectDomainRequest$.outboundSchema = MoveProjectDomainRequest$outboundSchema;
|
|
78213
|
+
})(MoveProjectDomainRequest$ ||= {});
|
|
78214
|
+
MoveProjectDomainVerification$inboundSchema = objectType({
|
|
78215
|
+
type: stringType(),
|
|
78216
|
+
domain: stringType(),
|
|
78217
|
+
value: stringType(),
|
|
78218
|
+
reason: stringType()
|
|
78219
|
+
});
|
|
78220
|
+
MoveProjectDomainVerification$outboundSchema = objectType({
|
|
78221
|
+
type: stringType(),
|
|
78222
|
+
domain: stringType(),
|
|
78223
|
+
value: stringType(),
|
|
78224
|
+
reason: stringType()
|
|
78225
|
+
});
|
|
78226
|
+
((MoveProjectDomainVerification$) => {
|
|
78227
|
+
MoveProjectDomainVerification$.inboundSchema = MoveProjectDomainVerification$inboundSchema;
|
|
78228
|
+
MoveProjectDomainVerification$.outboundSchema = MoveProjectDomainVerification$outboundSchema;
|
|
78229
|
+
})(MoveProjectDomainVerification$ ||= {});
|
|
78230
|
+
MoveProjectDomainResponseBody$inboundSchema = objectType({
|
|
78231
|
+
name: stringType(),
|
|
78232
|
+
apexName: stringType(),
|
|
78233
|
+
projectId: stringType(),
|
|
78234
|
+
redirect: nullableType(stringType()).optional(),
|
|
78235
|
+
redirectStatusCode: nullableType(numberType()).optional(),
|
|
78236
|
+
gitBranch: nullableType(stringType()).optional(),
|
|
78237
|
+
customEnvironmentId: nullableType(stringType()).optional(),
|
|
78238
|
+
updatedAt: numberType().optional(),
|
|
78239
|
+
createdAt: numberType().optional(),
|
|
78240
|
+
verified: booleanType(),
|
|
78241
|
+
verification: arrayType(lazyType(() => MoveProjectDomainVerification$inboundSchema)).optional()
|
|
78242
|
+
});
|
|
78243
|
+
MoveProjectDomainResponseBody$outboundSchema = objectType({
|
|
78244
|
+
name: stringType(),
|
|
78245
|
+
apexName: stringType(),
|
|
78246
|
+
projectId: stringType(),
|
|
78247
|
+
redirect: nullableType(stringType()).optional(),
|
|
78248
|
+
redirectStatusCode: nullableType(numberType()).optional(),
|
|
78249
|
+
gitBranch: nullableType(stringType()).optional(),
|
|
78250
|
+
customEnvironmentId: nullableType(stringType()).optional(),
|
|
78251
|
+
updatedAt: numberType().optional(),
|
|
78252
|
+
createdAt: numberType().optional(),
|
|
78253
|
+
verified: booleanType(),
|
|
78254
|
+
verification: arrayType(lazyType(() => MoveProjectDomainVerification$outboundSchema)).optional()
|
|
78255
|
+
});
|
|
78256
|
+
((MoveProjectDomainResponseBody$) => {
|
|
78257
|
+
MoveProjectDomainResponseBody$.inboundSchema = MoveProjectDomainResponseBody$inboundSchema;
|
|
78258
|
+
MoveProjectDomainResponseBody$.outboundSchema = MoveProjectDomainResponseBody$outboundSchema;
|
|
78259
|
+
})(MoveProjectDomainResponseBody$ ||= {});
|
|
78260
|
+
});
|
|
78261
|
+
|
|
78262
|
+
// src/funcs/projectsMoveProjectDomain.ts
|
|
78263
|
+
function projectsMoveProjectDomain(client, request, options) {
|
|
78264
|
+
return new APIPromise($do123(client, request, options));
|
|
78265
|
+
}
|
|
78266
|
+
async function $do123(client, request, options) {
|
|
78267
|
+
const parsed = safeParse(request, (value) => MoveProjectDomainRequest$outboundSchema.parse(value), "Input validation failed");
|
|
78268
|
+
if (!parsed.ok) {
|
|
78269
|
+
return [parsed, { status: "invalid" }];
|
|
78270
|
+
}
|
|
78271
|
+
const payload = parsed.value;
|
|
78272
|
+
const body = encodeJSON("body", payload.RequestBody, { explode: true });
|
|
78273
|
+
const pathParams = {
|
|
78274
|
+
domain: encodeSimple("domain", payload.domain, {
|
|
78275
|
+
explode: false,
|
|
78276
|
+
charEncoding: "percent"
|
|
78277
|
+
}),
|
|
78278
|
+
idOrName: encodeSimple("idOrName", payload.idOrName, {
|
|
78279
|
+
explode: false,
|
|
78280
|
+
charEncoding: "percent"
|
|
78281
|
+
})
|
|
78282
|
+
};
|
|
78283
|
+
const path = pathToFunc("/v1/projects/{idOrName}/domains/{domain}/move")(pathParams);
|
|
78284
|
+
const query = encodeFormQuery({
|
|
78285
|
+
slug: payload.slug,
|
|
78286
|
+
teamId: payload.teamId
|
|
78287
|
+
});
|
|
78288
|
+
const headers = new Headers(compactMap({
|
|
78289
|
+
"Content-Type": "application/json",
|
|
78290
|
+
Accept: "application/json"
|
|
78291
|
+
}));
|
|
78292
|
+
const secConfig = await extractSecurity(client._options.bearerToken);
|
|
78293
|
+
const securityInput = secConfig == null ? {} : { bearerToken: secConfig };
|
|
78294
|
+
const requestSecurity = resolveGlobalSecurity(securityInput);
|
|
78295
|
+
const context = {
|
|
78296
|
+
baseURL: options?.serverURL ?? client._baseURL ?? "",
|
|
78297
|
+
operationID: "moveProjectDomain",
|
|
78298
|
+
oAuth2Scopes: [],
|
|
78299
|
+
resolvedSecurity: requestSecurity,
|
|
78300
|
+
securitySource: client._options.bearerToken,
|
|
78301
|
+
retryConfig: options?.retries || client._options.retryConfig || { strategy: "none" },
|
|
78302
|
+
retryCodes: options?.retryCodes || ["429", "500", "502", "503", "504"]
|
|
78303
|
+
};
|
|
78304
|
+
const requestRes = client._createRequest(context, {
|
|
78305
|
+
security: requestSecurity,
|
|
78306
|
+
method: "POST",
|
|
78307
|
+
baseURL: options?.serverURL,
|
|
78308
|
+
path,
|
|
78309
|
+
headers,
|
|
78310
|
+
query,
|
|
78311
|
+
body,
|
|
78312
|
+
timeoutMs: options?.timeoutMs || client._options.timeoutMs || -1
|
|
78313
|
+
}, options);
|
|
78314
|
+
if (!requestRes.ok) {
|
|
78315
|
+
return [requestRes, { status: "invalid" }];
|
|
78316
|
+
}
|
|
78317
|
+
const req = requestRes.value;
|
|
78318
|
+
const doResult = await client._do(req, {
|
|
78319
|
+
context,
|
|
78320
|
+
errorCodes: ["400", "401", "403", "409", "4XX", "5XX"],
|
|
78321
|
+
retryConfig: context.retryConfig,
|
|
78322
|
+
retryCodes: context.retryCodes
|
|
78323
|
+
});
|
|
78324
|
+
if (!doResult.ok) {
|
|
78325
|
+
return [doResult, { status: "request-error", request: req }];
|
|
78326
|
+
}
|
|
78327
|
+
const response = doResult.value;
|
|
78328
|
+
const responseFields = {
|
|
78329
|
+
HttpMeta: { Response: response, Request: req }
|
|
78330
|
+
};
|
|
78331
|
+
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 });
|
|
78332
|
+
if (!result.ok) {
|
|
78333
|
+
return [result, { status: "complete", request: req, response }];
|
|
78334
|
+
}
|
|
78335
|
+
return [result, { status: "complete", request: req, response }];
|
|
78336
|
+
}
|
|
78337
|
+
var init_projectsMoveProjectDomain = __esm(() => {
|
|
78338
|
+
init_encodings();
|
|
78339
|
+
init_matchers();
|
|
78340
|
+
init_primitives();
|
|
78341
|
+
init_schemas();
|
|
78342
|
+
init_security();
|
|
78343
|
+
init_url();
|
|
78344
|
+
init_moveprojectdomainop();
|
|
78345
|
+
init_vercelbadrequesterror();
|
|
78346
|
+
init_vercelforbiddenerror();
|
|
78347
|
+
init_async();
|
|
78348
|
+
});
|
|
78349
|
+
|
|
78350
|
+
// src/mcp-server/tools/projectsMoveProjectDomain.ts
|
|
78351
|
+
var args122, tool$projectsMoveProjectDomain;
|
|
78352
|
+
var init_projectsMoveProjectDomain2 = __esm(() => {
|
|
78353
|
+
init_projectsMoveProjectDomain();
|
|
78354
|
+
init_moveprojectdomainop();
|
|
78355
|
+
init_tools();
|
|
78356
|
+
args122 = {
|
|
78357
|
+
request: MoveProjectDomainRequest$inboundSchema
|
|
78358
|
+
};
|
|
78359
|
+
tool$projectsMoveProjectDomain = {
|
|
78360
|
+
name: "projects-move-project-domain",
|
|
78361
|
+
description: `Move a project domain
|
|
78362
|
+
|
|
78363
|
+
Move one project's domain to another project. Also allows the move of all redirects pointed to that domain in the same project.`,
|
|
78364
|
+
args: args122,
|
|
78365
|
+
tool: async (client, args123, ctx) => {
|
|
78366
|
+
const [result, apiCall] = await projectsMoveProjectDomain(client, args123.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
78367
|
+
if (!result.ok) {
|
|
78368
|
+
return {
|
|
78369
|
+
content: [{ type: "text", text: result.error.message }],
|
|
78370
|
+
isError: true
|
|
78371
|
+
};
|
|
78372
|
+
}
|
|
78373
|
+
const value = result.value;
|
|
78374
|
+
return formatResult(value, apiCall);
|
|
78375
|
+
}
|
|
78376
|
+
};
|
|
78377
|
+
});
|
|
78378
|
+
|
|
78169
78379
|
// src/models/pauseprojectop.ts
|
|
78170
78380
|
var PauseProjectRequest$inboundSchema, PauseProjectRequest$outboundSchema, PauseProjectRequest$;
|
|
78171
78381
|
var init_pauseprojectop = __esm(() => {
|
|
@@ -78188,9 +78398,9 @@ var init_pauseprojectop = __esm(() => {
|
|
|
78188
78398
|
|
|
78189
78399
|
// src/funcs/projectsPauseProject.ts
|
|
78190
78400
|
function projectsPauseProject(client, request, options) {
|
|
78191
|
-
return new APIPromise($
|
|
78401
|
+
return new APIPromise($do124(client, request, options));
|
|
78192
78402
|
}
|
|
78193
|
-
async function $
|
|
78403
|
+
async function $do124(client, request, options) {
|
|
78194
78404
|
const parsed = safeParse(request, (value) => PauseProjectRequest$outboundSchema.parse(value), "Input validation failed");
|
|
78195
78405
|
if (!parsed.ok) {
|
|
78196
78406
|
return [parsed, { status: "invalid" }];
|
|
@@ -78271,12 +78481,12 @@ var init_projectsPauseProject = __esm(() => {
|
|
|
78271
78481
|
});
|
|
78272
78482
|
|
|
78273
78483
|
// src/mcp-server/tools/projectsPauseProject.ts
|
|
78274
|
-
var
|
|
78484
|
+
var args123, tool$projectsPauseProject;
|
|
78275
78485
|
var init_projectsPauseProject2 = __esm(() => {
|
|
78276
78486
|
init_projectsPauseProject();
|
|
78277
78487
|
init_pauseprojectop();
|
|
78278
78488
|
init_tools();
|
|
78279
|
-
|
|
78489
|
+
args123 = {
|
|
78280
78490
|
request: PauseProjectRequest$inboundSchema
|
|
78281
78491
|
};
|
|
78282
78492
|
tool$projectsPauseProject = {
|
|
@@ -78284,9 +78494,9 @@ var init_projectsPauseProject2 = __esm(() => {
|
|
|
78284
78494
|
description: `Pause a project
|
|
78285
78495
|
|
|
78286
78496
|
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,
|
|
78497
|
+
args: args123,
|
|
78498
|
+
tool: async (client, args124, ctx) => {
|
|
78499
|
+
const [result, apiCall] = await projectsPauseProject(client, args124.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
78290
78500
|
if (!result.ok) {
|
|
78291
78501
|
return {
|
|
78292
78502
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -78328,9 +78538,9 @@ var init_removeprojectdomainop = __esm(() => {
|
|
|
78328
78538
|
|
|
78329
78539
|
// src/funcs/projectsRemoveProjectDomain.ts
|
|
78330
78540
|
function projectsRemoveProjectDomain(client, request, options) {
|
|
78331
|
-
return new APIPromise($
|
|
78541
|
+
return new APIPromise($do125(client, request, options));
|
|
78332
78542
|
}
|
|
78333
|
-
async function $
|
|
78543
|
+
async function $do125(client, request, options) {
|
|
78334
78544
|
const parsed = safeParse(request, (value) => RemoveProjectDomainRequest$outboundSchema.parse(value), "Input validation failed");
|
|
78335
78545
|
if (!parsed.ok) {
|
|
78336
78546
|
return [parsed, { status: "invalid" }];
|
|
@@ -78415,12 +78625,12 @@ var init_projectsRemoveProjectDomain = __esm(() => {
|
|
|
78415
78625
|
});
|
|
78416
78626
|
|
|
78417
78627
|
// src/mcp-server/tools/projectsRemoveProjectDomain.ts
|
|
78418
|
-
var
|
|
78628
|
+
var args124, tool$projectsRemoveProjectDomain;
|
|
78419
78629
|
var init_projectsRemoveProjectDomain2 = __esm(() => {
|
|
78420
78630
|
init_projectsRemoveProjectDomain();
|
|
78421
78631
|
init_removeprojectdomainop();
|
|
78422
78632
|
init_tools();
|
|
78423
|
-
|
|
78633
|
+
args124 = {
|
|
78424
78634
|
request: RemoveProjectDomainRequest$inboundSchema
|
|
78425
78635
|
};
|
|
78426
78636
|
tool$projectsRemoveProjectDomain = {
|
|
@@ -78428,9 +78638,9 @@ var init_projectsRemoveProjectDomain2 = __esm(() => {
|
|
|
78428
78638
|
description: `Remove a domain from a project
|
|
78429
78639
|
|
|
78430
78640
|
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,
|
|
78641
|
+
args: args124,
|
|
78642
|
+
tool: async (client, args125, ctx) => {
|
|
78643
|
+
const [result, apiCall] = await projectsRemoveProjectDomain(client, args125.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
78434
78644
|
if (!result.ok) {
|
|
78435
78645
|
return {
|
|
78436
78646
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -80024,9 +80234,9 @@ var init_removeprojectenvop = __esm(() => {
|
|
|
80024
80234
|
|
|
80025
80235
|
// src/funcs/projectsRemoveProjectEnv.ts
|
|
80026
80236
|
function projectsRemoveProjectEnv(client, request, options) {
|
|
80027
|
-
return new APIPromise($
|
|
80237
|
+
return new APIPromise($do126(client, request, options));
|
|
80028
80238
|
}
|
|
80029
|
-
async function $
|
|
80239
|
+
async function $do126(client, request, options) {
|
|
80030
80240
|
const parsed = safeParse(request, (value) => RemoveProjectEnvRequest$outboundSchema.parse(value), "Input validation failed");
|
|
80031
80241
|
if (!parsed.ok) {
|
|
80032
80242
|
return [parsed, { status: "invalid" }];
|
|
@@ -80112,12 +80322,12 @@ var init_projectsRemoveProjectEnv = __esm(() => {
|
|
|
80112
80322
|
});
|
|
80113
80323
|
|
|
80114
80324
|
// src/mcp-server/tools/projectsRemoveProjectEnv.ts
|
|
80115
|
-
var
|
|
80325
|
+
var args125, tool$projectsRemoveProjectEnv;
|
|
80116
80326
|
var init_projectsRemoveProjectEnv2 = __esm(() => {
|
|
80117
80327
|
init_projectsRemoveProjectEnv();
|
|
80118
80328
|
init_removeprojectenvop();
|
|
80119
80329
|
init_tools();
|
|
80120
|
-
|
|
80330
|
+
args125 = {
|
|
80121
80331
|
request: RemoveProjectEnvRequest$inboundSchema
|
|
80122
80332
|
};
|
|
80123
80333
|
tool$projectsRemoveProjectEnv = {
|
|
@@ -80125,9 +80335,9 @@ var init_projectsRemoveProjectEnv2 = __esm(() => {
|
|
|
80125
80335
|
description: `Remove an environment variable
|
|
80126
80336
|
|
|
80127
80337
|
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,
|
|
80338
|
+
args: args125,
|
|
80339
|
+
tool: async (client, args126, ctx) => {
|
|
80340
|
+
const [result, apiCall] = await projectsRemoveProjectEnv(client, args126.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
80131
80341
|
if (!result.ok) {
|
|
80132
80342
|
return {
|
|
80133
80343
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -80164,9 +80374,9 @@ var init_requestpromoteop = __esm(() => {
|
|
|
80164
80374
|
|
|
80165
80375
|
// src/funcs/projectsRequestPromote.ts
|
|
80166
80376
|
function projectsRequestPromote(client, request, options) {
|
|
80167
|
-
return new APIPromise($
|
|
80377
|
+
return new APIPromise($do127(client, request, options));
|
|
80168
80378
|
}
|
|
80169
|
-
async function $
|
|
80379
|
+
async function $do127(client, request, options) {
|
|
80170
80380
|
const parsed = safeParse(request, (value) => RequestPromoteRequest$outboundSchema.parse(value), "Input validation failed");
|
|
80171
80381
|
if (!parsed.ok) {
|
|
80172
80382
|
return [parsed, { status: "invalid" }];
|
|
@@ -80251,12 +80461,12 @@ var init_projectsRequestPromote = __esm(() => {
|
|
|
80251
80461
|
});
|
|
80252
80462
|
|
|
80253
80463
|
// src/mcp-server/tools/projectsRequestPromote.ts
|
|
80254
|
-
var
|
|
80464
|
+
var args126, tool$projectsRequestPromote;
|
|
80255
80465
|
var init_projectsRequestPromote2 = __esm(() => {
|
|
80256
80466
|
init_projectsRequestPromote();
|
|
80257
80467
|
init_requestpromoteop();
|
|
80258
80468
|
init_tools();
|
|
80259
|
-
|
|
80469
|
+
args126 = {
|
|
80260
80470
|
request: RequestPromoteRequest$inboundSchema
|
|
80261
80471
|
};
|
|
80262
80472
|
tool$projectsRequestPromote = {
|
|
@@ -80264,9 +80474,9 @@ var init_projectsRequestPromote2 = __esm(() => {
|
|
|
80264
80474
|
description: `Points all production domains for a project to the given deploy
|
|
80265
80475
|
|
|
80266
80476
|
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,
|
|
80477
|
+
args: args126,
|
|
80478
|
+
tool: async (client, args127, ctx) => {
|
|
80479
|
+
const [result, apiCall] = await projectsRequestPromote(client, args127.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
80270
80480
|
if (!result.ok) {
|
|
80271
80481
|
return {
|
|
80272
80482
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -80300,9 +80510,9 @@ var init_unpauseprojectop = __esm(() => {
|
|
|
80300
80510
|
|
|
80301
80511
|
// src/funcs/projectsUnpauseProject.ts
|
|
80302
80512
|
function projectsUnpauseProject(client, request, options) {
|
|
80303
|
-
return new APIPromise($
|
|
80513
|
+
return new APIPromise($do128(client, request, options));
|
|
80304
80514
|
}
|
|
80305
|
-
async function $
|
|
80515
|
+
async function $do128(client, request, options) {
|
|
80306
80516
|
const parsed = safeParse(request, (value) => UnpauseProjectRequest$outboundSchema.parse(value), "Input validation failed");
|
|
80307
80517
|
if (!parsed.ok) {
|
|
80308
80518
|
return [parsed, { status: "invalid" }];
|
|
@@ -80383,12 +80593,12 @@ var init_projectsUnpauseProject = __esm(() => {
|
|
|
80383
80593
|
});
|
|
80384
80594
|
|
|
80385
80595
|
// src/mcp-server/tools/projectsUnpauseProject.ts
|
|
80386
|
-
var
|
|
80596
|
+
var args127, tool$projectsUnpauseProject;
|
|
80387
80597
|
var init_projectsUnpauseProject2 = __esm(() => {
|
|
80388
80598
|
init_projectsUnpauseProject();
|
|
80389
80599
|
init_unpauseprojectop();
|
|
80390
80600
|
init_tools();
|
|
80391
|
-
|
|
80601
|
+
args127 = {
|
|
80392
80602
|
request: UnpauseProjectRequest$inboundSchema
|
|
80393
80603
|
};
|
|
80394
80604
|
tool$projectsUnpauseProject = {
|
|
@@ -80396,9 +80606,9 @@ var init_projectsUnpauseProject2 = __esm(() => {
|
|
|
80396
80606
|
description: `Unpause a project
|
|
80397
80607
|
|
|
80398
80608
|
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,
|
|
80609
|
+
args: args127,
|
|
80610
|
+
tool: async (client, args128, ctx) => {
|
|
80611
|
+
const [result, apiCall] = await projectsUnpauseProject(client, args128.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
80402
80612
|
if (!result.ok) {
|
|
80403
80613
|
return {
|
|
80404
80614
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -82167,12 +82377,14 @@ var init_updateprojectop = __esm(() => {
|
|
|
82167
82377
|
UpdateProjectStages$inboundSchema = objectType({
|
|
82168
82378
|
targetPercentage: numberType(),
|
|
82169
82379
|
minutesToRelease: numberType().optional(),
|
|
82170
|
-
requireApproval: booleanType().optional()
|
|
82380
|
+
requireApproval: booleanType().optional(),
|
|
82381
|
+
duration: numberType().optional()
|
|
82171
82382
|
});
|
|
82172
82383
|
UpdateProjectStages$outboundSchema = objectType({
|
|
82173
82384
|
targetPercentage: numberType(),
|
|
82174
82385
|
minutesToRelease: numberType().optional(),
|
|
82175
|
-
requireApproval: booleanType().optional()
|
|
82386
|
+
requireApproval: booleanType().optional(),
|
|
82387
|
+
duration: numberType().optional()
|
|
82176
82388
|
});
|
|
82177
82389
|
((UpdateProjectStages$) => {
|
|
82178
82390
|
UpdateProjectStages$.inboundSchema = UpdateProjectStages$inboundSchema;
|
|
@@ -82547,6 +82759,7 @@ var init_updateprojectop = __esm(() => {
|
|
|
82547
82759
|
observabilityConfiguration: arrayType(ACLAction$inboundSchema).optional(),
|
|
82548
82760
|
observabilityNotebook: arrayType(ACLAction$inboundSchema).optional(),
|
|
82549
82761
|
openTelemetryEndpoint: arrayType(ACLAction$inboundSchema).optional(),
|
|
82762
|
+
vercelAppInstallation: arrayType(ACLAction$inboundSchema).optional(),
|
|
82550
82763
|
paymentMethod: arrayType(ACLAction$inboundSchema).optional(),
|
|
82551
82764
|
permissions: arrayType(ACLAction$inboundSchema).optional(),
|
|
82552
82765
|
postgres: arrayType(ACLAction$inboundSchema).optional(),
|
|
@@ -82749,6 +82962,7 @@ var init_updateprojectop = __esm(() => {
|
|
|
82749
82962
|
observabilityConfiguration: arrayType(ACLAction$outboundSchema).optional(),
|
|
82750
82963
|
observabilityNotebook: arrayType(ACLAction$outboundSchema).optional(),
|
|
82751
82964
|
openTelemetryEndpoint: arrayType(ACLAction$outboundSchema).optional(),
|
|
82965
|
+
vercelAppInstallation: arrayType(ACLAction$outboundSchema).optional(),
|
|
82752
82966
|
paymentMethod: arrayType(ACLAction$outboundSchema).optional(),
|
|
82753
82967
|
permissions: arrayType(ACLAction$outboundSchema).optional(),
|
|
82754
82968
|
postgres: arrayType(ACLAction$outboundSchema).optional(),
|
|
@@ -83528,9 +83742,9 @@ var init_updateprojectop = __esm(() => {
|
|
|
83528
83742
|
|
|
83529
83743
|
// src/funcs/projectsUpdateProject.ts
|
|
83530
83744
|
function projectsUpdateProject(client, request, options) {
|
|
83531
|
-
return new APIPromise($
|
|
83745
|
+
return new APIPromise($do129(client, request, options));
|
|
83532
83746
|
}
|
|
83533
|
-
async function $
|
|
83747
|
+
async function $do129(client, request, options) {
|
|
83534
83748
|
const parsed = safeParse(request, (value) => UpdateProjectRequest$outboundSchema.parse(value), "Input validation failed");
|
|
83535
83749
|
if (!parsed.ok) {
|
|
83536
83750
|
return [parsed, { status: "invalid" }];
|
|
@@ -83612,12 +83826,12 @@ var init_projectsUpdateProject = __esm(() => {
|
|
|
83612
83826
|
});
|
|
83613
83827
|
|
|
83614
83828
|
// src/mcp-server/tools/projectsUpdateProject.ts
|
|
83615
|
-
var
|
|
83829
|
+
var args128, tool$projectsUpdateProject;
|
|
83616
83830
|
var init_projectsUpdateProject2 = __esm(() => {
|
|
83617
83831
|
init_projectsUpdateProject();
|
|
83618
83832
|
init_updateprojectop();
|
|
83619
83833
|
init_tools();
|
|
83620
|
-
|
|
83834
|
+
args128 = {
|
|
83621
83835
|
request: UpdateProjectRequest$inboundSchema
|
|
83622
83836
|
};
|
|
83623
83837
|
tool$projectsUpdateProject = {
|
|
@@ -83625,9 +83839,9 @@ var init_projectsUpdateProject2 = __esm(() => {
|
|
|
83625
83839
|
description: `Update an existing project
|
|
83626
83840
|
|
|
83627
83841
|
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,
|
|
83842
|
+
args: args128,
|
|
83843
|
+
tool: async (client, args129, ctx) => {
|
|
83844
|
+
const [result, apiCall] = await projectsUpdateProject(client, args129.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
83631
83845
|
if (!result.ok) {
|
|
83632
83846
|
return {
|
|
83633
83847
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -85155,12 +85369,14 @@ var init_updateprojectdatacacheop = __esm(() => {
|
|
|
85155
85369
|
Stages$inboundSchema = objectType({
|
|
85156
85370
|
targetPercentage: numberType(),
|
|
85157
85371
|
minutesToRelease: numberType().optional(),
|
|
85158
|
-
requireApproval: booleanType().optional()
|
|
85372
|
+
requireApproval: booleanType().optional(),
|
|
85373
|
+
duration: numberType().optional()
|
|
85159
85374
|
});
|
|
85160
85375
|
Stages$outboundSchema = objectType({
|
|
85161
85376
|
targetPercentage: numberType(),
|
|
85162
85377
|
minutesToRelease: numberType().optional(),
|
|
85163
|
-
requireApproval: booleanType().optional()
|
|
85378
|
+
requireApproval: booleanType().optional(),
|
|
85379
|
+
duration: numberType().optional()
|
|
85164
85380
|
});
|
|
85165
85381
|
((Stages$) => {
|
|
85166
85382
|
Stages$.inboundSchema = Stages$inboundSchema;
|
|
@@ -85535,6 +85751,7 @@ var init_updateprojectdatacacheop = __esm(() => {
|
|
|
85535
85751
|
observabilityConfiguration: arrayType(ACLAction$inboundSchema).optional(),
|
|
85536
85752
|
observabilityNotebook: arrayType(ACLAction$inboundSchema).optional(),
|
|
85537
85753
|
openTelemetryEndpoint: arrayType(ACLAction$inboundSchema).optional(),
|
|
85754
|
+
vercelAppInstallation: arrayType(ACLAction$inboundSchema).optional(),
|
|
85538
85755
|
paymentMethod: arrayType(ACLAction$inboundSchema).optional(),
|
|
85539
85756
|
permissions: arrayType(ACLAction$inboundSchema).optional(),
|
|
85540
85757
|
postgres: arrayType(ACLAction$inboundSchema).optional(),
|
|
@@ -85737,6 +85954,7 @@ var init_updateprojectdatacacheop = __esm(() => {
|
|
|
85737
85954
|
observabilityConfiguration: arrayType(ACLAction$outboundSchema).optional(),
|
|
85738
85955
|
observabilityNotebook: arrayType(ACLAction$outboundSchema).optional(),
|
|
85739
85956
|
openTelemetryEndpoint: arrayType(ACLAction$outboundSchema).optional(),
|
|
85957
|
+
vercelAppInstallation: arrayType(ACLAction$outboundSchema).optional(),
|
|
85740
85958
|
paymentMethod: arrayType(ACLAction$outboundSchema).optional(),
|
|
85741
85959
|
permissions: arrayType(ACLAction$outboundSchema).optional(),
|
|
85742
85960
|
postgres: arrayType(ACLAction$outboundSchema).optional(),
|
|
@@ -86528,9 +86746,9 @@ var init_updateprojectdatacacheop = __esm(() => {
|
|
|
86528
86746
|
|
|
86529
86747
|
// src/funcs/projectsUpdateProjectDataCache.ts
|
|
86530
86748
|
function projectsUpdateProjectDataCache(client, request, options) {
|
|
86531
|
-
return new APIPromise($
|
|
86749
|
+
return new APIPromise($do130(client, request, options));
|
|
86532
86750
|
}
|
|
86533
|
-
async function $
|
|
86751
|
+
async function $do130(client, request, options) {
|
|
86534
86752
|
const parsed = safeParse(request, (value) => UpdateProjectDataCacheRequest$outboundSchema.parse(value), "Input validation failed");
|
|
86535
86753
|
if (!parsed.ok) {
|
|
86536
86754
|
return [parsed, { status: "invalid" }];
|
|
@@ -86612,12 +86830,12 @@ var init_projectsUpdateProjectDataCache = __esm(() => {
|
|
|
86612
86830
|
});
|
|
86613
86831
|
|
|
86614
86832
|
// src/mcp-server/tools/projectsUpdateProjectDataCache.ts
|
|
86615
|
-
var
|
|
86833
|
+
var args129, tool$projectsUpdateProjectDataCache;
|
|
86616
86834
|
var init_projectsUpdateProjectDataCache2 = __esm(() => {
|
|
86617
86835
|
init_projectsUpdateProjectDataCache();
|
|
86618
86836
|
init_updateprojectdatacacheop();
|
|
86619
86837
|
init_tools();
|
|
86620
|
-
|
|
86838
|
+
args129 = {
|
|
86621
86839
|
request: UpdateProjectDataCacheRequest$inboundSchema
|
|
86622
86840
|
};
|
|
86623
86841
|
tool$projectsUpdateProjectDataCache = {
|
|
@@ -86625,9 +86843,9 @@ var init_projectsUpdateProjectDataCache2 = __esm(() => {
|
|
|
86625
86843
|
description: `Update the data cache feature
|
|
86626
86844
|
|
|
86627
86845
|
Update the data cache feature on a project.`,
|
|
86628
|
-
args:
|
|
86629
|
-
tool: async (client,
|
|
86630
|
-
const [result, apiCall] = await projectsUpdateProjectDataCache(client,
|
|
86846
|
+
args: args129,
|
|
86847
|
+
tool: async (client, args130, ctx) => {
|
|
86848
|
+
const [result, apiCall] = await projectsUpdateProjectDataCache(client, args130.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
86631
86849
|
if (!result.ok) {
|
|
86632
86850
|
return {
|
|
86633
86851
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -86747,9 +86965,9 @@ var init_updateprojectdomainop = __esm(() => {
|
|
|
86747
86965
|
|
|
86748
86966
|
// src/funcs/projectsUpdateProjectDomain.ts
|
|
86749
86967
|
function projectsUpdateProjectDomain(client, request, options) {
|
|
86750
|
-
return new APIPromise($
|
|
86968
|
+
return new APIPromise($do131(client, request, options));
|
|
86751
86969
|
}
|
|
86752
|
-
async function $
|
|
86970
|
+
async function $do131(client, request, options) {
|
|
86753
86971
|
const parsed = safeParse(request, (value) => UpdateProjectDomainRequest$outboundSchema.parse(value), "Input validation failed");
|
|
86754
86972
|
if (!parsed.ok) {
|
|
86755
86973
|
return [parsed, { status: "invalid" }];
|
|
@@ -86834,12 +87052,12 @@ var init_projectsUpdateProjectDomain = __esm(() => {
|
|
|
86834
87052
|
});
|
|
86835
87053
|
|
|
86836
87054
|
// src/mcp-server/tools/projectsUpdateProjectDomain.ts
|
|
86837
|
-
var
|
|
87055
|
+
var args130, tool$projectsUpdateProjectDomain;
|
|
86838
87056
|
var init_projectsUpdateProjectDomain2 = __esm(() => {
|
|
86839
87057
|
init_projectsUpdateProjectDomain();
|
|
86840
87058
|
init_updateprojectdomainop();
|
|
86841
87059
|
init_tools();
|
|
86842
|
-
|
|
87060
|
+
args130 = {
|
|
86843
87061
|
request: UpdateProjectDomainRequest$inboundSchema
|
|
86844
87062
|
};
|
|
86845
87063
|
tool$projectsUpdateProjectDomain = {
|
|
@@ -86847,9 +87065,9 @@ var init_projectsUpdateProjectDomain2 = __esm(() => {
|
|
|
86847
87065
|
description: `Update a project domain
|
|
86848
87066
|
|
|
86849
87067
|
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,
|
|
87068
|
+
args: args130,
|
|
87069
|
+
tool: async (client, args131, ctx) => {
|
|
87070
|
+
const [result, apiCall] = await projectsUpdateProjectDomain(client, args131.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
86853
87071
|
if (!result.ok) {
|
|
86854
87072
|
return {
|
|
86855
87073
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -86962,9 +87180,9 @@ var init_updateprojectprotectionbypassop = __esm(() => {
|
|
|
86962
87180
|
|
|
86963
87181
|
// src/funcs/projectsUpdateProjectProtectionBypass.ts
|
|
86964
87182
|
function projectsUpdateProjectProtectionBypass(client, request, options) {
|
|
86965
|
-
return new APIPromise($
|
|
87183
|
+
return new APIPromise($do132(client, request, options));
|
|
86966
87184
|
}
|
|
86967
|
-
async function $
|
|
87185
|
+
async function $do132(client, request, options) {
|
|
86968
87186
|
const parsed = safeParse(request, (value) => UpdateProjectProtectionBypassRequest$outboundSchema.parse(value), "Input validation failed");
|
|
86969
87187
|
if (!parsed.ok) {
|
|
86970
87188
|
return [parsed, { status: "invalid" }];
|
|
@@ -87046,12 +87264,12 @@ var init_projectsUpdateProjectProtectionBypass = __esm(() => {
|
|
|
87046
87264
|
});
|
|
87047
87265
|
|
|
87048
87266
|
// src/mcp-server/tools/projectsUpdateProjectProtectionBypass.ts
|
|
87049
|
-
var
|
|
87267
|
+
var args131, tool$projectsUpdateProjectProtectionBypass;
|
|
87050
87268
|
var init_projectsUpdateProjectProtectionBypass2 = __esm(() => {
|
|
87051
87269
|
init_projectsUpdateProjectProtectionBypass();
|
|
87052
87270
|
init_updateprojectprotectionbypassop();
|
|
87053
87271
|
init_tools();
|
|
87054
|
-
|
|
87272
|
+
args131 = {
|
|
87055
87273
|
request: UpdateProjectProtectionBypassRequest$inboundSchema
|
|
87056
87274
|
};
|
|
87057
87275
|
tool$projectsUpdateProjectProtectionBypass = {
|
|
@@ -87059,9 +87277,9 @@ var init_projectsUpdateProjectProtectionBypass2 = __esm(() => {
|
|
|
87059
87277
|
description: `Update Protection Bypass for Automation
|
|
87060
87278
|
|
|
87061
87279
|
Update the deployment protection automation bypass for a project`,
|
|
87062
|
-
args:
|
|
87063
|
-
tool: async (client,
|
|
87064
|
-
const [result, apiCall] = await projectsUpdateProjectProtectionBypass(client,
|
|
87280
|
+
args: args131,
|
|
87281
|
+
tool: async (client, args132, ctx) => {
|
|
87282
|
+
const [result, apiCall] = await projectsUpdateProjectProtectionBypass(client, args132.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
87065
87283
|
if (!result.ok) {
|
|
87066
87284
|
return {
|
|
87067
87285
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -87126,9 +87344,9 @@ var init_verifyprojectdomainop = __esm(() => {
|
|
|
87126
87344
|
|
|
87127
87345
|
// src/funcs/projectsVerifyProjectDomain.ts
|
|
87128
87346
|
function projectsVerifyProjectDomain(client, request, options) {
|
|
87129
|
-
return new APIPromise($
|
|
87347
|
+
return new APIPromise($do133(client, request, options));
|
|
87130
87348
|
}
|
|
87131
|
-
async function $
|
|
87349
|
+
async function $do133(client, request, options) {
|
|
87132
87350
|
const parsed = safeParse(request, (value) => VerifyProjectDomainRequest$outboundSchema.parse(value), "Input validation failed");
|
|
87133
87351
|
if (!parsed.ok) {
|
|
87134
87352
|
return [parsed, { status: "invalid" }];
|
|
@@ -87212,12 +87430,12 @@ var init_projectsVerifyProjectDomain = __esm(() => {
|
|
|
87212
87430
|
});
|
|
87213
87431
|
|
|
87214
87432
|
// src/mcp-server/tools/projectsVerifyProjectDomain.ts
|
|
87215
|
-
var
|
|
87433
|
+
var args132, tool$projectsVerifyProjectDomain;
|
|
87216
87434
|
var init_projectsVerifyProjectDomain2 = __esm(() => {
|
|
87217
87435
|
init_projectsVerifyProjectDomain();
|
|
87218
87436
|
init_verifyprojectdomainop();
|
|
87219
87437
|
init_tools();
|
|
87220
|
-
|
|
87438
|
+
args132 = {
|
|
87221
87439
|
request: VerifyProjectDomainRequest$inboundSchema
|
|
87222
87440
|
};
|
|
87223
87441
|
tool$projectsVerifyProjectDomain = {
|
|
@@ -87225,9 +87443,9 @@ var init_projectsVerifyProjectDomain2 = __esm(() => {
|
|
|
87225
87443
|
description: `Verify project domain
|
|
87226
87444
|
|
|
87227
87445
|
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,
|
|
87446
|
+
args: args132,
|
|
87447
|
+
tool: async (client, args133, ctx) => {
|
|
87448
|
+
const [result, apiCall] = await projectsVerifyProjectDomain(client, args133.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
87231
87449
|
if (!result.ok) {
|
|
87232
87450
|
return {
|
|
87233
87451
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -87491,9 +87709,9 @@ var init_addbypassipop = __esm(() => {
|
|
|
87491
87709
|
|
|
87492
87710
|
// src/funcs/securityAddBypassIp.ts
|
|
87493
87711
|
function securityAddBypassIp(client, request, options) {
|
|
87494
|
-
return new APIPromise($
|
|
87712
|
+
return new APIPromise($do134(client, request, options));
|
|
87495
87713
|
}
|
|
87496
|
-
async function $
|
|
87714
|
+
async function $do134(client, request, options) {
|
|
87497
87715
|
const parsed = safeParse(request, (value) => AddBypassIpRequest$outboundSchema.parse(value), "Input validation failed");
|
|
87498
87716
|
if (!parsed.ok) {
|
|
87499
87717
|
return [parsed, { status: "invalid" }];
|
|
@@ -87570,12 +87788,12 @@ var init_securityAddBypassIp = __esm(() => {
|
|
|
87570
87788
|
});
|
|
87571
87789
|
|
|
87572
87790
|
// src/mcp-server/tools/securityAddBypassIp.ts
|
|
87573
|
-
var
|
|
87791
|
+
var args133, tool$securityAddBypassIp;
|
|
87574
87792
|
var init_securityAddBypassIp2 = __esm(() => {
|
|
87575
87793
|
init_securityAddBypassIp();
|
|
87576
87794
|
init_addbypassipop();
|
|
87577
87795
|
init_tools();
|
|
87578
|
-
|
|
87796
|
+
args133 = {
|
|
87579
87797
|
request: AddBypassIpRequest$inboundSchema
|
|
87580
87798
|
};
|
|
87581
87799
|
tool$securityAddBypassIp = {
|
|
@@ -87583,9 +87801,9 @@ var init_securityAddBypassIp2 = __esm(() => {
|
|
|
87583
87801
|
description: `Create System Bypass Rule
|
|
87584
87802
|
|
|
87585
87803
|
Create new system bypass rules`,
|
|
87586
|
-
args:
|
|
87587
|
-
tool: async (client,
|
|
87588
|
-
const [result, apiCall] = await securityAddBypassIp(client,
|
|
87804
|
+
args: args133,
|
|
87805
|
+
tool: async (client, args134, ctx) => {
|
|
87806
|
+
const [result, apiCall] = await securityAddBypassIp(client, args134.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
87589
87807
|
if (!result.ok) {
|
|
87590
87808
|
return {
|
|
87591
87809
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -87727,9 +87945,9 @@ var init_getactiveattackstatusop = __esm(() => {
|
|
|
87727
87945
|
|
|
87728
87946
|
// src/funcs/securityGetActiveAttackStatus.ts
|
|
87729
87947
|
function securityGetActiveAttackStatus(client, request, options) {
|
|
87730
|
-
return new APIPromise($
|
|
87948
|
+
return new APIPromise($do135(client, request, options));
|
|
87731
87949
|
}
|
|
87732
|
-
async function $
|
|
87950
|
+
async function $do135(client, request, options) {
|
|
87733
87951
|
const parsed = safeParse(request, (value) => GetActiveAttackStatusRequest$outboundSchema.parse(value), "Input validation failed");
|
|
87734
87952
|
if (!parsed.ok) {
|
|
87735
87953
|
return [parsed, { status: "invalid" }];
|
|
@@ -87805,12 +88023,12 @@ var init_securityGetActiveAttackStatus = __esm(() => {
|
|
|
87805
88023
|
});
|
|
87806
88024
|
|
|
87807
88025
|
// src/mcp-server/tools/securityGetActiveAttackStatus.ts
|
|
87808
|
-
var
|
|
88026
|
+
var args134, tool$securityGetActiveAttackStatus;
|
|
87809
88027
|
var init_securityGetActiveAttackStatus2 = __esm(() => {
|
|
87810
88028
|
init_securityGetActiveAttackStatus();
|
|
87811
88029
|
init_getactiveattackstatusop();
|
|
87812
88030
|
init_tools();
|
|
87813
|
-
|
|
88031
|
+
args134 = {
|
|
87814
88032
|
request: GetActiveAttackStatusRequest$inboundSchema
|
|
87815
88033
|
};
|
|
87816
88034
|
tool$securityGetActiveAttackStatus = {
|
|
@@ -87818,9 +88036,9 @@ var init_securityGetActiveAttackStatus2 = __esm(() => {
|
|
|
87818
88036
|
description: `Read active attack data
|
|
87819
88037
|
|
|
87820
88038
|
Retrieve active attack data within the last 24h window`,
|
|
87821
|
-
args:
|
|
87822
|
-
tool: async (client,
|
|
87823
|
-
const [result, apiCall] = await securityGetActiveAttackStatus(client,
|
|
88039
|
+
args: args134,
|
|
88040
|
+
tool: async (client, args135, ctx) => {
|
|
88041
|
+
const [result, apiCall] = await securityGetActiveAttackStatus(client, args135.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
87824
88042
|
if (!result.ok) {
|
|
87825
88043
|
return {
|
|
87826
88044
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -88084,9 +88302,9 @@ var init_getbypassipop = __esm(() => {
|
|
|
88084
88302
|
|
|
88085
88303
|
// src/funcs/securityGetBypassIp.ts
|
|
88086
88304
|
function securityGetBypassIp(client, request, options) {
|
|
88087
|
-
return new APIPromise($
|
|
88305
|
+
return new APIPromise($do136(client, request, options));
|
|
88088
88306
|
}
|
|
88089
|
-
async function $
|
|
88307
|
+
async function $do136(client, request, options) {
|
|
88090
88308
|
const parsed = safeParse(request, (value) => GetBypassIpRequest$outboundSchema.parse(value), "Input validation failed");
|
|
88091
88309
|
if (!parsed.ok) {
|
|
88092
88310
|
return [parsed, { status: "invalid" }];
|
|
@@ -88167,12 +88385,12 @@ var init_securityGetBypassIp = __esm(() => {
|
|
|
88167
88385
|
});
|
|
88168
88386
|
|
|
88169
88387
|
// src/mcp-server/tools/securityGetBypassIp.ts
|
|
88170
|
-
var
|
|
88388
|
+
var args135, tool$securityGetBypassIp;
|
|
88171
88389
|
var init_securityGetBypassIp2 = __esm(() => {
|
|
88172
88390
|
init_securityGetBypassIp();
|
|
88173
88391
|
init_getbypassipop();
|
|
88174
88392
|
init_tools();
|
|
88175
|
-
|
|
88393
|
+
args135 = {
|
|
88176
88394
|
request: GetBypassIpRequest$inboundSchema
|
|
88177
88395
|
};
|
|
88178
88396
|
tool$securityGetBypassIp = {
|
|
@@ -88180,9 +88398,9 @@ var init_securityGetBypassIp2 = __esm(() => {
|
|
|
88180
88398
|
description: `Read System Bypass
|
|
88181
88399
|
|
|
88182
88400
|
Retrieve the system bypass rules configured for the specified project`,
|
|
88183
|
-
args:
|
|
88184
|
-
tool: async (client,
|
|
88185
|
-
const [result, apiCall] = await securityGetBypassIp(client,
|
|
88401
|
+
args: args135,
|
|
88402
|
+
tool: async (client, args136, ctx) => {
|
|
88403
|
+
const [result, apiCall] = await securityGetBypassIp(client, args136.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
88186
88404
|
if (!result.ok) {
|
|
88187
88405
|
return {
|
|
88188
88406
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -88786,9 +89004,9 @@ var init_getfirewallconfigop = __esm(() => {
|
|
|
88786
89004
|
|
|
88787
89005
|
// src/funcs/securityGetFirewallConfig.ts
|
|
88788
89006
|
function securityGetFirewallConfig(client, request, options) {
|
|
88789
|
-
return new APIPromise($
|
|
89007
|
+
return new APIPromise($do137(client, request, options));
|
|
88790
89008
|
}
|
|
88791
|
-
async function $
|
|
89009
|
+
async function $do137(client, request, options) {
|
|
88792
89010
|
const parsed = safeParse(request, (value) => GetFirewallConfigRequest$outboundSchema.parse(value), "Input validation failed");
|
|
88793
89011
|
if (!parsed.ok) {
|
|
88794
89012
|
return [parsed, { status: "invalid" }];
|
|
@@ -88870,12 +89088,12 @@ var init_securityGetFirewallConfig = __esm(() => {
|
|
|
88870
89088
|
});
|
|
88871
89089
|
|
|
88872
89090
|
// src/mcp-server/tools/securityGetFirewallConfig.ts
|
|
88873
|
-
var
|
|
89091
|
+
var args136, tool$securityGetFirewallConfig;
|
|
88874
89092
|
var init_securityGetFirewallConfig2 = __esm(() => {
|
|
88875
89093
|
init_securityGetFirewallConfig();
|
|
88876
89094
|
init_getfirewallconfigop();
|
|
88877
89095
|
init_tools();
|
|
88878
|
-
|
|
89096
|
+
args136 = {
|
|
88879
89097
|
request: GetFirewallConfigRequest$inboundSchema
|
|
88880
89098
|
};
|
|
88881
89099
|
tool$securityGetFirewallConfig = {
|
|
@@ -88883,9 +89101,9 @@ var init_securityGetFirewallConfig2 = __esm(() => {
|
|
|
88883
89101
|
description: `Read Firewall Configuration
|
|
88884
89102
|
|
|
88885
89103
|
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,
|
|
89104
|
+
args: args136,
|
|
89105
|
+
tool: async (client, args137, ctx) => {
|
|
89106
|
+
const [result, apiCall] = await securityGetFirewallConfig(client, args137.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
88889
89107
|
if (!result.ok) {
|
|
88890
89108
|
return {
|
|
88891
89109
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -90100,9 +90318,9 @@ var init_putfirewallconfigop = __esm(() => {
|
|
|
90100
90318
|
|
|
90101
90319
|
// src/funcs/securityPutFirewallConfig.ts
|
|
90102
90320
|
function securityPutFirewallConfig(client, request, options) {
|
|
90103
|
-
return new APIPromise($
|
|
90321
|
+
return new APIPromise($do138(client, request, options));
|
|
90104
90322
|
}
|
|
90105
|
-
async function $
|
|
90323
|
+
async function $do138(client, request, options) {
|
|
90106
90324
|
const parsed = safeParse(request, (value) => PutFirewallConfigRequest$outboundSchema.parse(value), "Input validation failed");
|
|
90107
90325
|
if (!parsed.ok) {
|
|
90108
90326
|
return [parsed, { status: "invalid" }];
|
|
@@ -90179,12 +90397,12 @@ var init_securityPutFirewallConfig = __esm(() => {
|
|
|
90179
90397
|
});
|
|
90180
90398
|
|
|
90181
90399
|
// src/mcp-server/tools/securityPutFirewallConfig.ts
|
|
90182
|
-
var
|
|
90400
|
+
var args137, tool$securityPutFirewallConfig;
|
|
90183
90401
|
var init_securityPutFirewallConfig2 = __esm(() => {
|
|
90184
90402
|
init_securityPutFirewallConfig();
|
|
90185
90403
|
init_putfirewallconfigop();
|
|
90186
90404
|
init_tools();
|
|
90187
|
-
|
|
90405
|
+
args137 = {
|
|
90188
90406
|
request: PutFirewallConfigRequest$inboundSchema
|
|
90189
90407
|
};
|
|
90190
90408
|
tool$securityPutFirewallConfig = {
|
|
@@ -90192,9 +90410,9 @@ var init_securityPutFirewallConfig2 = __esm(() => {
|
|
|
90192
90410
|
description: `Put Firewall Configuration
|
|
90193
90411
|
|
|
90194
90412
|
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,
|
|
90413
|
+
args: args137,
|
|
90414
|
+
tool: async (client, args138, ctx) => {
|
|
90415
|
+
const [result, apiCall] = await securityPutFirewallConfig(client, args138.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
90198
90416
|
if (!result.ok) {
|
|
90199
90417
|
return {
|
|
90200
90418
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -90304,9 +90522,9 @@ var init_removebypassipop = __esm(() => {
|
|
|
90304
90522
|
|
|
90305
90523
|
// src/funcs/securityRemoveBypassIp.ts
|
|
90306
90524
|
function securityRemoveBypassIp(client, request, options) {
|
|
90307
|
-
return new APIPromise($
|
|
90525
|
+
return new APIPromise($do139(client, request, options));
|
|
90308
90526
|
}
|
|
90309
|
-
async function $
|
|
90527
|
+
async function $do139(client, request, options) {
|
|
90310
90528
|
const parsed = safeParse(request, (value) => RemoveBypassIpRequest$outboundSchema.parse(value), "Input validation failed");
|
|
90311
90529
|
if (!parsed.ok) {
|
|
90312
90530
|
return [parsed, { status: "invalid" }];
|
|
@@ -90383,12 +90601,12 @@ var init_securityRemoveBypassIp = __esm(() => {
|
|
|
90383
90601
|
});
|
|
90384
90602
|
|
|
90385
90603
|
// src/mcp-server/tools/securityRemoveBypassIp.ts
|
|
90386
|
-
var
|
|
90604
|
+
var args138, tool$securityRemoveBypassIp;
|
|
90387
90605
|
var init_securityRemoveBypassIp2 = __esm(() => {
|
|
90388
90606
|
init_securityRemoveBypassIp();
|
|
90389
90607
|
init_removebypassipop();
|
|
90390
90608
|
init_tools();
|
|
90391
|
-
|
|
90609
|
+
args138 = {
|
|
90392
90610
|
request: RemoveBypassIpRequest$inboundSchema
|
|
90393
90611
|
};
|
|
90394
90612
|
tool$securityRemoveBypassIp = {
|
|
@@ -90396,9 +90614,9 @@ var init_securityRemoveBypassIp2 = __esm(() => {
|
|
|
90396
90614
|
description: `Remove System Bypass Rule
|
|
90397
90615
|
|
|
90398
90616
|
Remove system bypass rules`,
|
|
90399
|
-
args:
|
|
90400
|
-
tool: async (client,
|
|
90401
|
-
const [result, apiCall] = await securityRemoveBypassIp(client,
|
|
90617
|
+
args: args138,
|
|
90618
|
+
tool: async (client, args139, ctx) => {
|
|
90619
|
+
const [result, apiCall] = await securityRemoveBypassIp(client, args139.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
90402
90620
|
if (!result.ok) {
|
|
90403
90621
|
return {
|
|
90404
90622
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -90468,9 +90686,9 @@ var init_updateattackchallengemodeop = __esm(() => {
|
|
|
90468
90686
|
|
|
90469
90687
|
// src/funcs/securityUpdateAttackChallengeMode.ts
|
|
90470
90688
|
function securityUpdateAttackChallengeMode(client, request, options) {
|
|
90471
|
-
return new APIPromise($
|
|
90689
|
+
return new APIPromise($do140(client, request, options));
|
|
90472
90690
|
}
|
|
90473
|
-
async function $
|
|
90691
|
+
async function $do140(client, request, options) {
|
|
90474
90692
|
const parsed = safeParse(request, (value) => UpdateAttackChallengeModeRequest$outboundSchema.parse(value), "Input validation failed");
|
|
90475
90693
|
if (!parsed.ok) {
|
|
90476
90694
|
return [parsed, { status: "invalid" }];
|
|
@@ -90546,12 +90764,12 @@ var init_securityUpdateAttackChallengeMode = __esm(() => {
|
|
|
90546
90764
|
});
|
|
90547
90765
|
|
|
90548
90766
|
// src/mcp-server/tools/securityUpdateAttackChallengeMode.ts
|
|
90549
|
-
var
|
|
90767
|
+
var args139, tool$securityUpdateAttackChallengeMode;
|
|
90550
90768
|
var init_securityUpdateAttackChallengeMode2 = __esm(() => {
|
|
90551
90769
|
init_securityUpdateAttackChallengeMode();
|
|
90552
90770
|
init_updateattackchallengemodeop();
|
|
90553
90771
|
init_tools();
|
|
90554
|
-
|
|
90772
|
+
args139 = {
|
|
90555
90773
|
request: UpdateAttackChallengeModeRequest$inboundSchema
|
|
90556
90774
|
};
|
|
90557
90775
|
tool$securityUpdateAttackChallengeMode = {
|
|
@@ -90559,9 +90777,9 @@ var init_securityUpdateAttackChallengeMode2 = __esm(() => {
|
|
|
90559
90777
|
description: `Update Attack Challenge mode
|
|
90560
90778
|
|
|
90561
90779
|
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,
|
|
90780
|
+
args: args139,
|
|
90781
|
+
tool: async (client, args140, ctx) => {
|
|
90782
|
+
const [result, apiCall] = await securityUpdateAttackChallengeMode(client, args140.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
90565
90783
|
if (!result.ok) {
|
|
90566
90784
|
return {
|
|
90567
90785
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -91561,9 +91779,9 @@ var init_updatefirewallconfigop = __esm(() => {
|
|
|
91561
91779
|
|
|
91562
91780
|
// src/funcs/securityUpdateFirewallConfig.ts
|
|
91563
91781
|
function securityUpdateFirewallConfig(client, request, options) {
|
|
91564
|
-
return new APIPromise($
|
|
91782
|
+
return new APIPromise($do141(client, request, options));
|
|
91565
91783
|
}
|
|
91566
|
-
async function $
|
|
91784
|
+
async function $do141(client, request, options) {
|
|
91567
91785
|
const parsed = safeParse(request, (value) => UpdateFirewallConfigRequest$outboundSchema.parse(value), "Input validation failed");
|
|
91568
91786
|
if (!parsed.ok) {
|
|
91569
91787
|
return [parsed, { status: "invalid" }];
|
|
@@ -91640,12 +91858,12 @@ var init_securityUpdateFirewallConfig = __esm(() => {
|
|
|
91640
91858
|
});
|
|
91641
91859
|
|
|
91642
91860
|
// src/mcp-server/tools/securityUpdateFirewallConfig.ts
|
|
91643
|
-
var
|
|
91861
|
+
var args140, tool$securityUpdateFirewallConfig;
|
|
91644
91862
|
var init_securityUpdateFirewallConfig2 = __esm(() => {
|
|
91645
91863
|
init_securityUpdateFirewallConfig();
|
|
91646
91864
|
init_updatefirewallconfigop();
|
|
91647
91865
|
init_tools();
|
|
91648
|
-
|
|
91866
|
+
args140 = {
|
|
91649
91867
|
request: UpdateFirewallConfigRequest$inboundSchema
|
|
91650
91868
|
};
|
|
91651
91869
|
tool$securityUpdateFirewallConfig = {
|
|
@@ -91653,9 +91871,9 @@ var init_securityUpdateFirewallConfig2 = __esm(() => {
|
|
|
91653
91871
|
description: `Update Firewall Configuration
|
|
91654
91872
|
|
|
91655
91873
|
Process updates to modify the existing firewall config for a project`,
|
|
91656
|
-
args:
|
|
91657
|
-
tool: async (client,
|
|
91658
|
-
const [result, apiCall] = await securityUpdateFirewallConfig(client,
|
|
91874
|
+
args: args140,
|
|
91875
|
+
tool: async (client, args141, ctx) => {
|
|
91876
|
+
const [result, apiCall] = await securityUpdateFirewallConfig(client, args141.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
91659
91877
|
if (!result.ok) {
|
|
91660
91878
|
return {
|
|
91661
91879
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -91742,9 +91960,9 @@ var init_createteamop = __esm(() => {
|
|
|
91742
91960
|
|
|
91743
91961
|
// src/funcs/teamsCreateTeam.ts
|
|
91744
91962
|
function teamsCreateTeam(client, request, options) {
|
|
91745
|
-
return new APIPromise($
|
|
91963
|
+
return new APIPromise($do142(client, request, options));
|
|
91746
91964
|
}
|
|
91747
|
-
async function $
|
|
91965
|
+
async function $do142(client, request, options) {
|
|
91748
91966
|
const parsed = safeParse(request, (value) => CreateTeamRequestBody$outboundSchema.parse(value), "Input validation failed");
|
|
91749
91967
|
if (!parsed.ok) {
|
|
91750
91968
|
return [parsed, { status: "invalid" }];
|
|
@@ -91814,12 +92032,12 @@ var init_teamsCreateTeam = __esm(() => {
|
|
|
91814
92032
|
});
|
|
91815
92033
|
|
|
91816
92034
|
// src/mcp-server/tools/teamsCreateTeam.ts
|
|
91817
|
-
var
|
|
92035
|
+
var args141, tool$teamsCreateTeam;
|
|
91818
92036
|
var init_teamsCreateTeam2 = __esm(() => {
|
|
91819
92037
|
init_teamsCreateTeam();
|
|
91820
92038
|
init_createteamop();
|
|
91821
92039
|
init_tools();
|
|
91822
|
-
|
|
92040
|
+
args141 = {
|
|
91823
92041
|
request: CreateTeamRequestBody$inboundSchema
|
|
91824
92042
|
};
|
|
91825
92043
|
tool$teamsCreateTeam = {
|
|
@@ -91827,9 +92045,9 @@ var init_teamsCreateTeam2 = __esm(() => {
|
|
|
91827
92045
|
description: `Create a Team
|
|
91828
92046
|
|
|
91829
92047
|
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,
|
|
92048
|
+
args: args141,
|
|
92049
|
+
tool: async (client, args142, ctx) => {
|
|
92050
|
+
const [result, apiCall] = await teamsCreateTeam(client, args142.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
91833
92051
|
if (!result.ok) {
|
|
91834
92052
|
return {
|
|
91835
92053
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -91909,9 +92127,9 @@ var init_deleteteamop = __esm(() => {
|
|
|
91909
92127
|
|
|
91910
92128
|
// src/funcs/teamsDeleteTeam.ts
|
|
91911
92129
|
function teamsDeleteTeam(client, request, options) {
|
|
91912
|
-
return new APIPromise($
|
|
92130
|
+
return new APIPromise($do143(client, request, options));
|
|
91913
92131
|
}
|
|
91914
|
-
async function $
|
|
92132
|
+
async function $do143(client, request, options) {
|
|
91915
92133
|
const parsed = safeParse(request, (value) => DeleteTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
91916
92134
|
if (!parsed.ok) {
|
|
91917
92135
|
return [parsed, { status: "invalid" }];
|
|
@@ -91993,12 +92211,12 @@ var init_teamsDeleteTeam = __esm(() => {
|
|
|
91993
92211
|
});
|
|
91994
92212
|
|
|
91995
92213
|
// src/mcp-server/tools/teamsDeleteTeam.ts
|
|
91996
|
-
var
|
|
92214
|
+
var args142, tool$teamsDeleteTeam;
|
|
91997
92215
|
var init_teamsDeleteTeam2 = __esm(() => {
|
|
91998
92216
|
init_teamsDeleteTeam();
|
|
91999
92217
|
init_deleteteamop();
|
|
92000
92218
|
init_tools();
|
|
92001
|
-
|
|
92219
|
+
args142 = {
|
|
92002
92220
|
request: DeleteTeamRequest$inboundSchema
|
|
92003
92221
|
};
|
|
92004
92222
|
tool$teamsDeleteTeam = {
|
|
@@ -92006,9 +92224,9 @@ var init_teamsDeleteTeam2 = __esm(() => {
|
|
|
92006
92224
|
description: `Delete a Team
|
|
92007
92225
|
|
|
92008
92226
|
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,
|
|
92227
|
+
args: args142,
|
|
92228
|
+
tool: async (client, args143, ctx) => {
|
|
92229
|
+
const [result, apiCall] = await teamsDeleteTeam(client, args143.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
92012
92230
|
if (!result.ok) {
|
|
92013
92231
|
return {
|
|
92014
92232
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -92051,9 +92269,9 @@ var init_deleteteaminvitecodeop = __esm(() => {
|
|
|
92051
92269
|
|
|
92052
92270
|
// src/funcs/teamsDeleteTeamInviteCode.ts
|
|
92053
92271
|
function teamsDeleteTeamInviteCode(client, request, options) {
|
|
92054
|
-
return new APIPromise($
|
|
92272
|
+
return new APIPromise($do144(client, request, options));
|
|
92055
92273
|
}
|
|
92056
|
-
async function $
|
|
92274
|
+
async function $do144(client, request, options) {
|
|
92057
92275
|
const parsed = safeParse(request, (value) => DeleteTeamInviteCodeRequest$outboundSchema.parse(value), "Input validation failed");
|
|
92058
92276
|
if (!parsed.ok) {
|
|
92059
92277
|
return [parsed, { status: "invalid" }];
|
|
@@ -92133,12 +92351,12 @@ var init_teamsDeleteTeamInviteCode = __esm(() => {
|
|
|
92133
92351
|
});
|
|
92134
92352
|
|
|
92135
92353
|
// src/mcp-server/tools/teamsDeleteTeamInviteCode.ts
|
|
92136
|
-
var
|
|
92354
|
+
var args143, tool$teamsDeleteTeamInviteCode;
|
|
92137
92355
|
var init_teamsDeleteTeamInviteCode2 = __esm(() => {
|
|
92138
92356
|
init_teamsDeleteTeamInviteCode();
|
|
92139
92357
|
init_deleteteaminvitecodeop();
|
|
92140
92358
|
init_tools();
|
|
92141
|
-
|
|
92359
|
+
args143 = {
|
|
92142
92360
|
request: DeleteTeamInviteCodeRequest$inboundSchema
|
|
92143
92361
|
};
|
|
92144
92362
|
tool$teamsDeleteTeamInviteCode = {
|
|
@@ -92146,9 +92364,9 @@ var init_teamsDeleteTeamInviteCode2 = __esm(() => {
|
|
|
92146
92364
|
description: `Delete a Team invite code
|
|
92147
92365
|
|
|
92148
92366
|
Delete an active Team invite code.`,
|
|
92149
|
-
args:
|
|
92150
|
-
tool: async (client,
|
|
92151
|
-
const [result, apiCall] = await teamsDeleteTeamInviteCode(client,
|
|
92367
|
+
args: args143,
|
|
92368
|
+
tool: async (client, args144, ctx) => {
|
|
92369
|
+
const [result, apiCall] = await teamsDeleteTeamInviteCode(client, args144.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
92152
92370
|
if (!result.ok) {
|
|
92153
92371
|
return {
|
|
92154
92372
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -92181,9 +92399,9 @@ var init_getteamop = __esm(() => {
|
|
|
92181
92399
|
|
|
92182
92400
|
// src/funcs/teamsGetTeam.ts
|
|
92183
92401
|
function teamsGetTeam(client, request, options) {
|
|
92184
|
-
return new APIPromise($
|
|
92402
|
+
return new APIPromise($do145(client, request, options));
|
|
92185
92403
|
}
|
|
92186
|
-
async function $
|
|
92404
|
+
async function $do145(client, request, options) {
|
|
92187
92405
|
const parsed = safeParse(request, (value) => GetTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
92188
92406
|
if (!parsed.ok) {
|
|
92189
92407
|
return [parsed, { status: "invalid" }];
|
|
@@ -92264,12 +92482,12 @@ var init_teamsGetTeam = __esm(() => {
|
|
|
92264
92482
|
});
|
|
92265
92483
|
|
|
92266
92484
|
// src/mcp-server/tools/teamsGetTeam.ts
|
|
92267
|
-
var
|
|
92485
|
+
var args144, tool$teamsGetTeam;
|
|
92268
92486
|
var init_teamsGetTeam2 = __esm(() => {
|
|
92269
92487
|
init_teamsGetTeam();
|
|
92270
92488
|
init_getteamop();
|
|
92271
92489
|
init_tools();
|
|
92272
|
-
|
|
92490
|
+
args144 = {
|
|
92273
92491
|
request: GetTeamRequest$inboundSchema
|
|
92274
92492
|
};
|
|
92275
92493
|
tool$teamsGetTeam = {
|
|
@@ -92277,9 +92495,9 @@ var init_teamsGetTeam2 = __esm(() => {
|
|
|
92277
92495
|
description: `Get a Team
|
|
92278
92496
|
|
|
92279
92497
|
Get information for the Team specified by the \`teamId\` parameter.`,
|
|
92280
|
-
args:
|
|
92281
|
-
tool: async (client,
|
|
92282
|
-
const [result, apiCall] = await teamsGetTeam(client,
|
|
92498
|
+
args: args144,
|
|
92499
|
+
tool: async (client, args145, ctx) => {
|
|
92500
|
+
const [result, apiCall] = await teamsGetTeam(client, args145.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
92283
92501
|
if (!result.ok) {
|
|
92284
92502
|
return {
|
|
92285
92503
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -92421,9 +92639,9 @@ var init_getteamaccessrequestop = __esm(() => {
|
|
|
92421
92639
|
|
|
92422
92640
|
// src/funcs/teamsGetTeamAccessRequest.ts
|
|
92423
92641
|
function teamsGetTeamAccessRequest(client, request, options) {
|
|
92424
|
-
return new APIPromise($
|
|
92642
|
+
return new APIPromise($do146(client, request, options));
|
|
92425
92643
|
}
|
|
92426
|
-
async function $
|
|
92644
|
+
async function $do146(client, request, options) {
|
|
92427
92645
|
const parsed = safeParse(request, (value) => GetTeamAccessRequestRequest$outboundSchema.parse(value), "Input validation failed");
|
|
92428
92646
|
if (!parsed.ok) {
|
|
92429
92647
|
return [parsed, { status: "invalid" }];
|
|
@@ -92503,12 +92721,12 @@ var init_teamsGetTeamAccessRequest = __esm(() => {
|
|
|
92503
92721
|
});
|
|
92504
92722
|
|
|
92505
92723
|
// src/mcp-server/tools/teamsGetTeamAccessRequest.ts
|
|
92506
|
-
var
|
|
92724
|
+
var args145, tool$teamsGetTeamAccessRequest;
|
|
92507
92725
|
var init_teamsGetTeamAccessRequest2 = __esm(() => {
|
|
92508
92726
|
init_teamsGetTeamAccessRequest();
|
|
92509
92727
|
init_getteamaccessrequestop();
|
|
92510
92728
|
init_tools();
|
|
92511
|
-
|
|
92729
|
+
args145 = {
|
|
92512
92730
|
request: GetTeamAccessRequestRequest$inboundSchema
|
|
92513
92731
|
};
|
|
92514
92732
|
tool$teamsGetTeamAccessRequest = {
|
|
@@ -92516,9 +92734,9 @@ var init_teamsGetTeamAccessRequest2 = __esm(() => {
|
|
|
92516
92734
|
description: `Get access request status
|
|
92517
92735
|
|
|
92518
92736
|
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,
|
|
92737
|
+
args: args145,
|
|
92738
|
+
tool: async (client, args146, ctx) => {
|
|
92739
|
+
const [result, apiCall] = await teamsGetTeamAccessRequest(client, args146.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
92522
92740
|
if (!result.ok) {
|
|
92523
92741
|
return {
|
|
92524
92742
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -92818,9 +93036,9 @@ var init_getteammembersop = __esm(() => {
|
|
|
92818
93036
|
|
|
92819
93037
|
// src/funcs/teamsGetTeamMembers.ts
|
|
92820
93038
|
function teamsGetTeamMembers(client, request, options) {
|
|
92821
|
-
return new APIPromise($
|
|
93039
|
+
return new APIPromise($do147(client, request, options));
|
|
92822
93040
|
}
|
|
92823
|
-
async function $
|
|
93041
|
+
async function $do147(client, request, options) {
|
|
92824
93042
|
const parsed = safeParse(request, (value) => GetTeamMembersRequest$outboundSchema.parse(value), "Input validation failed");
|
|
92825
93043
|
if (!parsed.ok) {
|
|
92826
93044
|
return [parsed, { status: "invalid" }];
|
|
@@ -92900,12 +93118,12 @@ var init_teamsGetTeamMembers = __esm(() => {
|
|
|
92900
93118
|
});
|
|
92901
93119
|
|
|
92902
93120
|
// src/mcp-server/tools/teamsGetTeamMembers.ts
|
|
92903
|
-
var
|
|
93121
|
+
var args146, tool$teamsGetTeamMembers;
|
|
92904
93122
|
var init_teamsGetTeamMembers2 = __esm(() => {
|
|
92905
93123
|
init_teamsGetTeamMembers();
|
|
92906
93124
|
init_getteammembersop();
|
|
92907
93125
|
init_tools();
|
|
92908
|
-
|
|
93126
|
+
args146 = {
|
|
92909
93127
|
request: GetTeamMembersRequest$inboundSchema
|
|
92910
93128
|
};
|
|
92911
93129
|
tool$teamsGetTeamMembers = {
|
|
@@ -92913,9 +93131,9 @@ var init_teamsGetTeamMembers2 = __esm(() => {
|
|
|
92913
93131
|
description: `List team members
|
|
92914
93132
|
|
|
92915
93133
|
Get a paginated list of team members for the provided team.`,
|
|
92916
|
-
args:
|
|
92917
|
-
tool: async (client,
|
|
92918
|
-
const [result, apiCall] = await teamsGetTeamMembers(client,
|
|
93134
|
+
args: args146,
|
|
93135
|
+
tool: async (client, args147, ctx) => {
|
|
93136
|
+
const [result, apiCall] = await teamsGetTeamMembers(client, args147.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
92919
93137
|
if (!result.ok) {
|
|
92920
93138
|
return {
|
|
92921
93139
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -93190,9 +93408,9 @@ var init_getteamsop = __esm(() => {
|
|
|
93190
93408
|
|
|
93191
93409
|
// src/funcs/teamsGetTeams.ts
|
|
93192
93410
|
function teamsGetTeams(client, request, options) {
|
|
93193
|
-
return new APIPromise($
|
|
93411
|
+
return new APIPromise($do148(client, request, options));
|
|
93194
93412
|
}
|
|
93195
|
-
async function $
|
|
93413
|
+
async function $do148(client, request, options) {
|
|
93196
93414
|
const parsed = safeParse(request, (value) => GetTeamsRequest$outboundSchema.parse(value), "Input validation failed");
|
|
93197
93415
|
if (!parsed.ok) {
|
|
93198
93416
|
return [parsed, { status: "invalid" }];
|
|
@@ -93267,12 +93485,12 @@ var init_teamsGetTeams = __esm(() => {
|
|
|
93267
93485
|
});
|
|
93268
93486
|
|
|
93269
93487
|
// src/mcp-server/tools/teamsGetTeams.ts
|
|
93270
|
-
var
|
|
93488
|
+
var args147, tool$teamsGetTeams;
|
|
93271
93489
|
var init_teamsGetTeams2 = __esm(() => {
|
|
93272
93490
|
init_teamsGetTeams();
|
|
93273
93491
|
init_getteamsop();
|
|
93274
93492
|
init_tools();
|
|
93275
|
-
|
|
93493
|
+
args147 = {
|
|
93276
93494
|
request: GetTeamsRequest$inboundSchema
|
|
93277
93495
|
};
|
|
93278
93496
|
tool$teamsGetTeams = {
|
|
@@ -93280,9 +93498,9 @@ var init_teamsGetTeams2 = __esm(() => {
|
|
|
93280
93498
|
description: `List all teams
|
|
93281
93499
|
|
|
93282
93500
|
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,
|
|
93501
|
+
args: args147,
|
|
93502
|
+
tool: async (client, args148, ctx) => {
|
|
93503
|
+
const [result, apiCall] = await teamsGetTeams(client, args148.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
93286
93504
|
if (!result.ok) {
|
|
93287
93505
|
return {
|
|
93288
93506
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -93514,9 +93732,9 @@ var init_inviteusertoteamop = __esm(() => {
|
|
|
93514
93732
|
|
|
93515
93733
|
// src/funcs/teamsInviteUserToTeam.ts
|
|
93516
93734
|
function teamsInviteUserToTeam(client, request, options) {
|
|
93517
|
-
return new APIPromise($
|
|
93735
|
+
return new APIPromise($do149(client, request, options));
|
|
93518
93736
|
}
|
|
93519
|
-
async function $
|
|
93737
|
+
async function $do149(client, request, options) {
|
|
93520
93738
|
const parsed = safeParse(request, (value) => InviteUserToTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
93521
93739
|
if (!parsed.ok) {
|
|
93522
93740
|
return [parsed, { status: "invalid" }];
|
|
@@ -93593,12 +93811,12 @@ var init_teamsInviteUserToTeam = __esm(() => {
|
|
|
93593
93811
|
});
|
|
93594
93812
|
|
|
93595
93813
|
// src/mcp-server/tools/teamsInviteUserToTeam.ts
|
|
93596
|
-
var
|
|
93814
|
+
var args148, tool$teamsInviteUserToTeam;
|
|
93597
93815
|
var init_teamsInviteUserToTeam2 = __esm(() => {
|
|
93598
93816
|
init_teamsInviteUserToTeam();
|
|
93599
93817
|
init_inviteusertoteamop();
|
|
93600
93818
|
init_tools();
|
|
93601
|
-
|
|
93819
|
+
args148 = {
|
|
93602
93820
|
request: InviteUserToTeamRequest$inboundSchema
|
|
93603
93821
|
};
|
|
93604
93822
|
tool$teamsInviteUserToTeam = {
|
|
@@ -93606,9 +93824,9 @@ var init_teamsInviteUserToTeam2 = __esm(() => {
|
|
|
93606
93824
|
description: `Invite a user
|
|
93607
93825
|
|
|
93608
93826
|
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,
|
|
93827
|
+
args: args148,
|
|
93828
|
+
tool: async (client, args149, ctx) => {
|
|
93829
|
+
const [result, apiCall] = await teamsInviteUserToTeam(client, args149.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
93612
93830
|
if (!result.ok) {
|
|
93613
93831
|
return {
|
|
93614
93832
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -93676,9 +93894,9 @@ var init_jointeamop = __esm(() => {
|
|
|
93676
93894
|
|
|
93677
93895
|
// src/funcs/teamsJoinTeam.ts
|
|
93678
93896
|
function teamsJoinTeam(client, request, options) {
|
|
93679
|
-
return new APIPromise($
|
|
93897
|
+
return new APIPromise($do150(client, request, options));
|
|
93680
93898
|
}
|
|
93681
|
-
async function $
|
|
93899
|
+
async function $do150(client, request, options) {
|
|
93682
93900
|
const parsed = safeParse(request, (value) => JoinTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
93683
93901
|
if (!parsed.ok) {
|
|
93684
93902
|
return [parsed, { status: "invalid" }];
|
|
@@ -93755,12 +93973,12 @@ var init_teamsJoinTeam = __esm(() => {
|
|
|
93755
93973
|
});
|
|
93756
93974
|
|
|
93757
93975
|
// src/mcp-server/tools/teamsJoinTeam.ts
|
|
93758
|
-
var
|
|
93976
|
+
var args149, tool$teamsJoinTeam;
|
|
93759
93977
|
var init_teamsJoinTeam2 = __esm(() => {
|
|
93760
93978
|
init_teamsJoinTeam();
|
|
93761
93979
|
init_jointeamop();
|
|
93762
93980
|
init_tools();
|
|
93763
|
-
|
|
93981
|
+
args149 = {
|
|
93764
93982
|
request: JoinTeamRequest$inboundSchema
|
|
93765
93983
|
};
|
|
93766
93984
|
tool$teamsJoinTeam = {
|
|
@@ -93768,9 +93986,9 @@ var init_teamsJoinTeam2 = __esm(() => {
|
|
|
93768
93986
|
description: `Join a team
|
|
93769
93987
|
|
|
93770
93988
|
Join a team with a provided invite code or team ID.`,
|
|
93771
|
-
args:
|
|
93772
|
-
tool: async (client,
|
|
93773
|
-
const [result, apiCall] = await teamsJoinTeam(client,
|
|
93989
|
+
args: args149,
|
|
93990
|
+
tool: async (client, args150, ctx) => {
|
|
93991
|
+
const [result, apiCall] = await teamsJoinTeam(client, args150.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
93774
93992
|
if (!result.ok) {
|
|
93775
93993
|
return {
|
|
93776
93994
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -93903,9 +94121,9 @@ var init_patchteamop = __esm(() => {
|
|
|
93903
94121
|
|
|
93904
94122
|
// src/funcs/teamsPatchTeam.ts
|
|
93905
94123
|
function teamsPatchTeam(client, request, options) {
|
|
93906
|
-
return new APIPromise($
|
|
94124
|
+
return new APIPromise($do151(client, request, options));
|
|
93907
94125
|
}
|
|
93908
|
-
async function $
|
|
94126
|
+
async function $do151(client, request, options) {
|
|
93909
94127
|
const parsed = safeParse(request, (value) => PatchTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
93910
94128
|
if (!parsed.ok) {
|
|
93911
94129
|
return [parsed, { status: "invalid" }];
|
|
@@ -93987,12 +94205,12 @@ var init_teamsPatchTeam = __esm(() => {
|
|
|
93987
94205
|
});
|
|
93988
94206
|
|
|
93989
94207
|
// src/mcp-server/tools/teamsPatchTeam.ts
|
|
93990
|
-
var
|
|
94208
|
+
var args150, tool$teamsPatchTeam;
|
|
93991
94209
|
var init_teamsPatchTeam2 = __esm(() => {
|
|
93992
94210
|
init_teamsPatchTeam();
|
|
93993
94211
|
init_patchteamop();
|
|
93994
94212
|
init_tools();
|
|
93995
|
-
|
|
94213
|
+
args150 = {
|
|
93996
94214
|
request: PatchTeamRequest$inboundSchema
|
|
93997
94215
|
};
|
|
93998
94216
|
tool$teamsPatchTeam = {
|
|
@@ -94000,9 +94218,9 @@ var init_teamsPatchTeam2 = __esm(() => {
|
|
|
94000
94218
|
description: `Update a Team
|
|
94001
94219
|
|
|
94002
94220
|
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,
|
|
94221
|
+
args: args150,
|
|
94222
|
+
tool: async (client, args151, ctx) => {
|
|
94223
|
+
const [result, apiCall] = await teamsPatchTeam(client, args151.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
94006
94224
|
if (!result.ok) {
|
|
94007
94225
|
return {
|
|
94008
94226
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -94047,9 +94265,9 @@ var init_removeteammemberop = __esm(() => {
|
|
|
94047
94265
|
|
|
94048
94266
|
// src/funcs/teamsRemoveTeamMember.ts
|
|
94049
94267
|
function teamsRemoveTeamMember(client, request, options) {
|
|
94050
|
-
return new APIPromise($
|
|
94268
|
+
return new APIPromise($do152(client, request, options));
|
|
94051
94269
|
}
|
|
94052
|
-
async function $
|
|
94270
|
+
async function $do152(client, request, options) {
|
|
94053
94271
|
const parsed = safeParse(request, (value) => RemoveTeamMemberRequest$outboundSchema.parse(value), "Input validation failed");
|
|
94054
94272
|
if (!parsed.ok) {
|
|
94055
94273
|
return [parsed, { status: "invalid" }];
|
|
@@ -94133,12 +94351,12 @@ var init_teamsRemoveTeamMember = __esm(() => {
|
|
|
94133
94351
|
});
|
|
94134
94352
|
|
|
94135
94353
|
// src/mcp-server/tools/teamsRemoveTeamMember.ts
|
|
94136
|
-
var
|
|
94354
|
+
var args151, tool$teamsRemoveTeamMember;
|
|
94137
94355
|
var init_teamsRemoveTeamMember2 = __esm(() => {
|
|
94138
94356
|
init_teamsRemoveTeamMember();
|
|
94139
94357
|
init_removeteammemberop();
|
|
94140
94358
|
init_tools();
|
|
94141
|
-
|
|
94359
|
+
args151 = {
|
|
94142
94360
|
request: RemoveTeamMemberRequest$inboundSchema
|
|
94143
94361
|
};
|
|
94144
94362
|
tool$teamsRemoveTeamMember = {
|
|
@@ -94146,9 +94364,9 @@ var init_teamsRemoveTeamMember2 = __esm(() => {
|
|
|
94146
94364
|
description: `Remove a Team Member
|
|
94147
94365
|
|
|
94148
94366
|
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,
|
|
94367
|
+
args: args151,
|
|
94368
|
+
tool: async (client, args152, ctx) => {
|
|
94369
|
+
const [result, apiCall] = await teamsRemoveTeamMember(client, args152.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
94152
94370
|
if (!result.ok) {
|
|
94153
94371
|
return {
|
|
94154
94372
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -94350,9 +94568,9 @@ var init_requestaccesstoteamop = __esm(() => {
|
|
|
94350
94568
|
|
|
94351
94569
|
// src/funcs/teamsRequestAccessToTeam.ts
|
|
94352
94570
|
function teamsRequestAccessToTeam(client, request, options) {
|
|
94353
|
-
return new APIPromise($
|
|
94571
|
+
return new APIPromise($do153(client, request, options));
|
|
94354
94572
|
}
|
|
94355
|
-
async function $
|
|
94573
|
+
async function $do153(client, request, options) {
|
|
94356
94574
|
const parsed = safeParse(request, (value) => RequestAccessToTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
94357
94575
|
if (!parsed.ok) {
|
|
94358
94576
|
return [parsed, { status: "invalid" }];
|
|
@@ -94429,12 +94647,12 @@ var init_teamsRequestAccessToTeam = __esm(() => {
|
|
|
94429
94647
|
});
|
|
94430
94648
|
|
|
94431
94649
|
// src/mcp-server/tools/teamsRequestAccessToTeam.ts
|
|
94432
|
-
var
|
|
94650
|
+
var args152, tool$teamsRequestAccessToTeam;
|
|
94433
94651
|
var init_teamsRequestAccessToTeam2 = __esm(() => {
|
|
94434
94652
|
init_teamsRequestAccessToTeam();
|
|
94435
94653
|
init_requestaccesstoteamop();
|
|
94436
94654
|
init_tools();
|
|
94437
|
-
|
|
94655
|
+
args152 = {
|
|
94438
94656
|
request: RequestAccessToTeamRequest$inboundSchema
|
|
94439
94657
|
};
|
|
94440
94658
|
tool$teamsRequestAccessToTeam = {
|
|
@@ -94442,9 +94660,9 @@ var init_teamsRequestAccessToTeam2 = __esm(() => {
|
|
|
94442
94660
|
description: `Request access to a team
|
|
94443
94661
|
|
|
94444
94662
|
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,
|
|
94663
|
+
args: args152,
|
|
94664
|
+
tool: async (client, args153, ctx) => {
|
|
94665
|
+
const [result, apiCall] = await teamsRequestAccessToTeam(client, args153.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
94448
94666
|
if (!result.ok) {
|
|
94449
94667
|
return {
|
|
94450
94668
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -94547,9 +94765,9 @@ var init_updateteammemberop = __esm(() => {
|
|
|
94547
94765
|
|
|
94548
94766
|
// src/funcs/teamsUpdateTeamMember.ts
|
|
94549
94767
|
function teamsUpdateTeamMember(client, request, options) {
|
|
94550
|
-
return new APIPromise($
|
|
94768
|
+
return new APIPromise($do154(client, request, options));
|
|
94551
94769
|
}
|
|
94552
|
-
async function $
|
|
94770
|
+
async function $do154(client, request, options) {
|
|
94553
94771
|
const parsed = safeParse(request, (value) => UpdateTeamMemberRequest$outboundSchema.parse(value), "Input validation failed");
|
|
94554
94772
|
if (!parsed.ok) {
|
|
94555
94773
|
return [parsed, { status: "invalid" }];
|
|
@@ -94630,12 +94848,12 @@ var init_teamsUpdateTeamMember = __esm(() => {
|
|
|
94630
94848
|
});
|
|
94631
94849
|
|
|
94632
94850
|
// src/mcp-server/tools/teamsUpdateTeamMember.ts
|
|
94633
|
-
var
|
|
94851
|
+
var args153, tool$teamsUpdateTeamMember;
|
|
94634
94852
|
var init_teamsUpdateTeamMember2 = __esm(() => {
|
|
94635
94853
|
init_teamsUpdateTeamMember();
|
|
94636
94854
|
init_updateteammemberop();
|
|
94637
94855
|
init_tools();
|
|
94638
|
-
|
|
94856
|
+
args153 = {
|
|
94639
94857
|
request: UpdateTeamMemberRequest$inboundSchema
|
|
94640
94858
|
};
|
|
94641
94859
|
tool$teamsUpdateTeamMember = {
|
|
@@ -94643,9 +94861,9 @@ var init_teamsUpdateTeamMember2 = __esm(() => {
|
|
|
94643
94861
|
description: `Update a Team Member
|
|
94644
94862
|
|
|
94645
94863
|
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,
|
|
94864
|
+
args: args153,
|
|
94865
|
+
tool: async (client, args154, ctx) => {
|
|
94866
|
+
const [result, apiCall] = await teamsUpdateTeamMember(client, args154.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
94649
94867
|
if (!result.ok) {
|
|
94650
94868
|
return {
|
|
94651
94869
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -94790,12 +95008,14 @@ var init_authuser = __esm(() => {
|
|
|
94790
95008
|
BuildMachine$inboundSchema = objectType({
|
|
94791
95009
|
purchaseType: PurchaseType$inboundSchema.optional(),
|
|
94792
95010
|
abovePlan: booleanType().optional(),
|
|
95011
|
+
isDefaultBuildMachine: booleanType().optional(),
|
|
94793
95012
|
cores: numberType().optional(),
|
|
94794
95013
|
memory: numberType().optional()
|
|
94795
95014
|
});
|
|
94796
95015
|
BuildMachine$outboundSchema = objectType({
|
|
94797
95016
|
purchaseType: PurchaseType$outboundSchema.optional(),
|
|
94798
95017
|
abovePlan: booleanType().optional(),
|
|
95018
|
+
isDefaultBuildMachine: booleanType().optional(),
|
|
94799
95019
|
cores: numberType().optional(),
|
|
94800
95020
|
memory: numberType().optional()
|
|
94801
95021
|
});
|
|
@@ -95162,9 +95382,9 @@ var init_getauthuserop = __esm(() => {
|
|
|
95162
95382
|
|
|
95163
95383
|
// src/funcs/userGetAuthUser.ts
|
|
95164
95384
|
function userGetAuthUser(client, options) {
|
|
95165
|
-
return new APIPromise($
|
|
95385
|
+
return new APIPromise($do155(client, options));
|
|
95166
95386
|
}
|
|
95167
|
-
async function $
|
|
95387
|
+
async function $do155(client, options) {
|
|
95168
95388
|
const path = pathToFunc("/v2/user")();
|
|
95169
95389
|
const headers = new Headers(compactMap({
|
|
95170
95390
|
Accept: "application/json"
|
|
@@ -95248,7 +95468,7 @@ Retrieves information related to the currently authenticated User.`,
|
|
|
95248
95468
|
});
|
|
95249
95469
|
|
|
95250
95470
|
// 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$;
|
|
95471
|
+
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
95472
|
var init_userevent = __esm(() => {
|
|
95253
95473
|
init_lib();
|
|
95254
95474
|
init_primitives();
|
|
@@ -98665,12 +98885,14 @@ var init_userevent = __esm(() => {
|
|
|
98665
98885
|
PayloadBuildMachine$inboundSchema = objectType({
|
|
98666
98886
|
purchaseType: PayloadPurchaseType$inboundSchema.optional(),
|
|
98667
98887
|
abovePlan: booleanType().optional(),
|
|
98888
|
+
isDefaultBuildMachine: booleanType().optional(),
|
|
98668
98889
|
cores: numberType().optional(),
|
|
98669
98890
|
memory: numberType().optional()
|
|
98670
98891
|
});
|
|
98671
98892
|
PayloadBuildMachine$outboundSchema = objectType({
|
|
98672
98893
|
purchaseType: PayloadPurchaseType$outboundSchema.optional(),
|
|
98673
98894
|
abovePlan: booleanType().optional(),
|
|
98895
|
+
isDefaultBuildMachine: booleanType().optional(),
|
|
98674
98896
|
cores: numberType().optional(),
|
|
98675
98897
|
memory: numberType().optional()
|
|
98676
98898
|
});
|
|
@@ -99682,6 +99904,18 @@ var init_userevent = __esm(() => {
|
|
|
99682
99904
|
OverageUsageAlerts$.inboundSchema = OverageUsageAlerts$inboundSchema;
|
|
99683
99905
|
OverageUsageAlerts$.outboundSchema = OverageUsageAlerts$outboundSchema;
|
|
99684
99906
|
})(OverageUsageAlerts$ ||= {});
|
|
99907
|
+
OverageMetadata$inboundSchema = objectType({
|
|
99908
|
+
firstTimeOnDemandNotificationSentAt: numberType().optional(),
|
|
99909
|
+
overageSummaryEmailSentAt: numberType().optional()
|
|
99910
|
+
});
|
|
99911
|
+
OverageMetadata$outboundSchema = objectType({
|
|
99912
|
+
firstTimeOnDemandNotificationSentAt: numberType().optional(),
|
|
99913
|
+
overageSummaryEmailSentAt: numberType().optional()
|
|
99914
|
+
});
|
|
99915
|
+
((OverageMetadata$) => {
|
|
99916
|
+
OverageMetadata$.inboundSchema = OverageMetadata$inboundSchema;
|
|
99917
|
+
OverageMetadata$.outboundSchema = OverageMetadata$outboundSchema;
|
|
99918
|
+
})(OverageMetadata$ ||= {});
|
|
99685
99919
|
EnablePreviewFeedback$inboundSchema = nativeEnumType(EnablePreviewFeedback);
|
|
99686
99920
|
EnablePreviewFeedback$outboundSchema = EnablePreviewFeedback$inboundSchema;
|
|
99687
99921
|
((EnablePreviewFeedback$) => {
|
|
@@ -100076,6 +100310,7 @@ var init_userevent = __esm(() => {
|
|
|
100076
100310
|
type: UserEventPayload62Type$inboundSchema,
|
|
100077
100311
|
usageAlerts: nullableType(lazyType(() => UsageAlerts$inboundSchema)).optional(),
|
|
100078
100312
|
overageUsageAlerts: lazyType(() => OverageUsageAlerts$inboundSchema).optional(),
|
|
100313
|
+
overageMetadata: lazyType(() => OverageMetadata$inboundSchema).optional(),
|
|
100079
100314
|
username: stringType(),
|
|
100080
100315
|
updatedAt: numberType(),
|
|
100081
100316
|
enablePreviewFeedback: EnablePreviewFeedback$inboundSchema.optional(),
|
|
@@ -100152,6 +100387,7 @@ var init_userevent = __esm(() => {
|
|
|
100152
100387
|
type: UserEventPayload62Type$outboundSchema,
|
|
100153
100388
|
usageAlerts: nullableType(lazyType(() => UsageAlerts$outboundSchema)).optional(),
|
|
100154
100389
|
overageUsageAlerts: lazyType(() => OverageUsageAlerts$outboundSchema).optional(),
|
|
100390
|
+
overageMetadata: lazyType(() => OverageMetadata$outboundSchema).optional(),
|
|
100155
100391
|
username: stringType(),
|
|
100156
100392
|
updatedAt: numberType(),
|
|
100157
100393
|
enablePreviewFeedback: EnablePreviewFeedback$outboundSchema.optional(),
|
|
@@ -102355,9 +102591,9 @@ var init_listusereventsop = __esm(() => {
|
|
|
102355
102591
|
|
|
102356
102592
|
// src/funcs/userListUserEvents.ts
|
|
102357
102593
|
function userListUserEvents(client, request, options) {
|
|
102358
|
-
return new APIPromise($
|
|
102594
|
+
return new APIPromise($do156(client, request, options));
|
|
102359
102595
|
}
|
|
102360
|
-
async function $
|
|
102596
|
+
async function $do156(client, request, options) {
|
|
102361
102597
|
const parsed = safeParse(request, (value) => ListUserEventsRequest$outboundSchema.parse(value), "Input validation failed");
|
|
102362
102598
|
if (!parsed.ok) {
|
|
102363
102599
|
return [parsed, { status: "invalid" }];
|
|
@@ -102437,12 +102673,12 @@ var init_userListUserEvents = __esm(() => {
|
|
|
102437
102673
|
});
|
|
102438
102674
|
|
|
102439
102675
|
// src/mcp-server/tools/userListUserEvents.ts
|
|
102440
|
-
var
|
|
102676
|
+
var args154, tool$userListUserEvents;
|
|
102441
102677
|
var init_userListUserEvents2 = __esm(() => {
|
|
102442
102678
|
init_userListUserEvents();
|
|
102443
102679
|
init_listusereventsop();
|
|
102444
102680
|
init_tools();
|
|
102445
|
-
|
|
102681
|
+
args154 = {
|
|
102446
102682
|
request: ListUserEventsRequest$inboundSchema
|
|
102447
102683
|
};
|
|
102448
102684
|
tool$userListUserEvents = {
|
|
@@ -102450,9 +102686,9 @@ var init_userListUserEvents2 = __esm(() => {
|
|
|
102450
102686
|
description: `List User Events
|
|
102451
102687
|
|
|
102452
102688
|
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,
|
|
102689
|
+
args: args154,
|
|
102690
|
+
tool: async (client, args155, ctx) => {
|
|
102691
|
+
const [result, apiCall] = await userListUserEvents(client, args155.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
102456
102692
|
if (!result.ok) {
|
|
102457
102693
|
return {
|
|
102458
102694
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -102509,9 +102745,9 @@ var init_requestdeleteop = __esm(() => {
|
|
|
102509
102745
|
|
|
102510
102746
|
// src/funcs/userRequestDelete.ts
|
|
102511
102747
|
function userRequestDelete(client, request, options) {
|
|
102512
|
-
return new APIPromise($
|
|
102748
|
+
return new APIPromise($do157(client, request, options));
|
|
102513
102749
|
}
|
|
102514
|
-
async function $
|
|
102750
|
+
async function $do157(client, request, options) {
|
|
102515
102751
|
const parsed = safeParse(request, (value) => RequestDeleteRequestBody$outboundSchema.parse(value), "Input validation failed");
|
|
102516
102752
|
if (!parsed.ok) {
|
|
102517
102753
|
return [parsed, { status: "invalid" }];
|
|
@@ -102581,12 +102817,12 @@ var init_userRequestDelete = __esm(() => {
|
|
|
102581
102817
|
});
|
|
102582
102818
|
|
|
102583
102819
|
// src/mcp-server/tools/userRequestDelete.ts
|
|
102584
|
-
var
|
|
102820
|
+
var args155, tool$userRequestDelete;
|
|
102585
102821
|
var init_userRequestDelete2 = __esm(() => {
|
|
102586
102822
|
init_userRequestDelete();
|
|
102587
102823
|
init_requestdeleteop();
|
|
102588
102824
|
init_tools();
|
|
102589
|
-
|
|
102825
|
+
args155 = {
|
|
102590
102826
|
request: RequestDeleteRequestBody$inboundSchema
|
|
102591
102827
|
};
|
|
102592
102828
|
tool$userRequestDelete = {
|
|
@@ -102594,9 +102830,9 @@ var init_userRequestDelete2 = __esm(() => {
|
|
|
102594
102830
|
description: `Delete User Account
|
|
102595
102831
|
|
|
102596
102832
|
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,
|
|
102833
|
+
args: args155,
|
|
102834
|
+
tool: async (client, args156, ctx) => {
|
|
102835
|
+
const [result, apiCall] = await userRequestDelete(client, args156.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
102600
102836
|
if (!result.ok) {
|
|
102601
102837
|
return {
|
|
102602
102838
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -102780,9 +103016,9 @@ var init_createwebhookop = __esm(() => {
|
|
|
102780
103016
|
|
|
102781
103017
|
// src/funcs/webhooksCreateWebhook.ts
|
|
102782
103018
|
function webhooksCreateWebhook(client, request, options) {
|
|
102783
|
-
return new APIPromise($
|
|
103019
|
+
return new APIPromise($do158(client, request, options));
|
|
102784
103020
|
}
|
|
102785
|
-
async function $
|
|
103021
|
+
async function $do158(client, request, options) {
|
|
102786
103022
|
const parsed = safeParse(request, (value) => CreateWebhookRequest$outboundSchema.parse(value), "Input validation failed");
|
|
102787
103023
|
if (!parsed.ok) {
|
|
102788
103024
|
return [parsed, { status: "invalid" }];
|
|
@@ -102857,12 +103093,12 @@ var init_webhooksCreateWebhook = __esm(() => {
|
|
|
102857
103093
|
});
|
|
102858
103094
|
|
|
102859
103095
|
// src/mcp-server/tools/webhooksCreateWebhook.ts
|
|
102860
|
-
var
|
|
103096
|
+
var args156, tool$webhooksCreateWebhook;
|
|
102861
103097
|
var init_webhooksCreateWebhook2 = __esm(() => {
|
|
102862
103098
|
init_webhooksCreateWebhook();
|
|
102863
103099
|
init_createwebhookop();
|
|
102864
103100
|
init_tools();
|
|
102865
|
-
|
|
103101
|
+
args156 = {
|
|
102866
103102
|
request: CreateWebhookRequest$inboundSchema
|
|
102867
103103
|
};
|
|
102868
103104
|
tool$webhooksCreateWebhook = {
|
|
@@ -102870,9 +103106,9 @@ var init_webhooksCreateWebhook2 = __esm(() => {
|
|
|
102870
103106
|
description: `Creates a webhook
|
|
102871
103107
|
|
|
102872
103108
|
Creates a webhook`,
|
|
102873
|
-
args:
|
|
102874
|
-
tool: async (client,
|
|
102875
|
-
const [result, apiCall] = await webhooksCreateWebhook(client,
|
|
103109
|
+
args: args156,
|
|
103110
|
+
tool: async (client, args157, ctx) => {
|
|
103111
|
+
const [result, apiCall] = await webhooksCreateWebhook(client, args157.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
102876
103112
|
if (!result.ok) {
|
|
102877
103113
|
return {
|
|
102878
103114
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -102907,9 +103143,9 @@ var init_deletewebhookop = __esm(() => {
|
|
|
102907
103143
|
|
|
102908
103144
|
// src/funcs/webhooksDeleteWebhook.ts
|
|
102909
103145
|
function webhooksDeleteWebhook(client, request, options) {
|
|
102910
|
-
return new APIPromise($
|
|
103146
|
+
return new APIPromise($do159(client, request, options));
|
|
102911
103147
|
}
|
|
102912
|
-
async function $
|
|
103148
|
+
async function $do159(client, request, options) {
|
|
102913
103149
|
const parsed = safeParse(request, (value) => DeleteWebhookRequest$outboundSchema.parse(value), "Input validation failed");
|
|
102914
103150
|
if (!parsed.ok) {
|
|
102915
103151
|
return [parsed, { status: "invalid" }];
|
|
@@ -102990,12 +103226,12 @@ var init_webhooksDeleteWebhook = __esm(() => {
|
|
|
102990
103226
|
});
|
|
102991
103227
|
|
|
102992
103228
|
// src/mcp-server/tools/webhooksDeleteWebhook.ts
|
|
102993
|
-
var
|
|
103229
|
+
var args157, tool$webhooksDeleteWebhook;
|
|
102994
103230
|
var init_webhooksDeleteWebhook2 = __esm(() => {
|
|
102995
103231
|
init_webhooksDeleteWebhook();
|
|
102996
103232
|
init_deletewebhookop();
|
|
102997
103233
|
init_tools();
|
|
102998
|
-
|
|
103234
|
+
args157 = {
|
|
102999
103235
|
request: DeleteWebhookRequest$inboundSchema
|
|
103000
103236
|
};
|
|
103001
103237
|
tool$webhooksDeleteWebhook = {
|
|
@@ -103003,9 +103239,9 @@ var init_webhooksDeleteWebhook2 = __esm(() => {
|
|
|
103003
103239
|
description: `Deletes a webhook
|
|
103004
103240
|
|
|
103005
103241
|
Deletes a webhook`,
|
|
103006
|
-
args:
|
|
103007
|
-
tool: async (client,
|
|
103008
|
-
const [result, apiCall] = await webhooksDeleteWebhook(client,
|
|
103242
|
+
args: args157,
|
|
103243
|
+
tool: async (client, args158, ctx) => {
|
|
103244
|
+
const [result, apiCall] = await webhooksDeleteWebhook(client, args158.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
103009
103245
|
if (!result.ok) {
|
|
103010
103246
|
return {
|
|
103011
103247
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -103112,9 +103348,9 @@ var init_getwebhookop = __esm(() => {
|
|
|
103112
103348
|
|
|
103113
103349
|
// src/funcs/webhooksGetWebhook.ts
|
|
103114
103350
|
function webhooksGetWebhook(client, request, options) {
|
|
103115
|
-
return new APIPromise($
|
|
103351
|
+
return new APIPromise($do160(client, request, options));
|
|
103116
103352
|
}
|
|
103117
|
-
async function $
|
|
103353
|
+
async function $do160(client, request, options) {
|
|
103118
103354
|
const parsed = safeParse(request, (value) => GetWebhookRequest$outboundSchema.parse(value), "Input validation failed");
|
|
103119
103355
|
if (!parsed.ok) {
|
|
103120
103356
|
return [parsed, { status: "invalid" }];
|
|
@@ -103194,12 +103430,12 @@ var init_webhooksGetWebhook = __esm(() => {
|
|
|
103194
103430
|
});
|
|
103195
103431
|
|
|
103196
103432
|
// src/mcp-server/tools/webhooksGetWebhook.ts
|
|
103197
|
-
var
|
|
103433
|
+
var args158, tool$webhooksGetWebhook;
|
|
103198
103434
|
var init_webhooksGetWebhook2 = __esm(() => {
|
|
103199
103435
|
init_webhooksGetWebhook();
|
|
103200
103436
|
init_getwebhookop();
|
|
103201
103437
|
init_tools();
|
|
103202
|
-
|
|
103438
|
+
args158 = {
|
|
103203
103439
|
request: GetWebhookRequest$inboundSchema
|
|
103204
103440
|
};
|
|
103205
103441
|
tool$webhooksGetWebhook = {
|
|
@@ -103207,9 +103443,9 @@ var init_webhooksGetWebhook2 = __esm(() => {
|
|
|
103207
103443
|
description: `Get a webhook
|
|
103208
103444
|
|
|
103209
103445
|
Get a webhook`,
|
|
103210
|
-
args:
|
|
103211
|
-
tool: async (client,
|
|
103212
|
-
const [result, apiCall] = await webhooksGetWebhook(client,
|
|
103446
|
+
args: args158,
|
|
103447
|
+
tool: async (client, args159, ctx) => {
|
|
103448
|
+
const [result, apiCall] = await webhooksGetWebhook(client, args159.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
103213
103449
|
if (!result.ok) {
|
|
103214
103450
|
return {
|
|
103215
103451
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -103474,9 +103710,9 @@ var init_getwebhooksop = __esm(() => {
|
|
|
103474
103710
|
|
|
103475
103711
|
// src/funcs/webhooksGetWebhooks.ts
|
|
103476
103712
|
function webhooksGetWebhooks(client, request, options) {
|
|
103477
|
-
return new APIPromise($
|
|
103713
|
+
return new APIPromise($do161(client, request, options));
|
|
103478
103714
|
}
|
|
103479
|
-
async function $
|
|
103715
|
+
async function $do161(client, request, options) {
|
|
103480
103716
|
const parsed = safeParse(request, (value) => GetWebhooksRequest$outboundSchema.parse(value), "Input validation failed");
|
|
103481
103717
|
if (!parsed.ok) {
|
|
103482
103718
|
return [parsed, { status: "invalid" }];
|
|
@@ -103551,12 +103787,12 @@ var init_webhooksGetWebhooks = __esm(() => {
|
|
|
103551
103787
|
});
|
|
103552
103788
|
|
|
103553
103789
|
// src/mcp-server/tools/webhooksGetWebhooks.ts
|
|
103554
|
-
var
|
|
103790
|
+
var args159, tool$webhooksGetWebhooks;
|
|
103555
103791
|
var init_webhooksGetWebhooks2 = __esm(() => {
|
|
103556
103792
|
init_webhooksGetWebhooks();
|
|
103557
103793
|
init_getwebhooksop();
|
|
103558
103794
|
init_tools();
|
|
103559
|
-
|
|
103795
|
+
args159 = {
|
|
103560
103796
|
request: GetWebhooksRequest$inboundSchema
|
|
103561
103797
|
};
|
|
103562
103798
|
tool$webhooksGetWebhooks = {
|
|
@@ -103564,9 +103800,9 @@ var init_webhooksGetWebhooks2 = __esm(() => {
|
|
|
103564
103800
|
description: `Get a list of webhooks
|
|
103565
103801
|
|
|
103566
103802
|
Get a list of webhooks`,
|
|
103567
|
-
args:
|
|
103568
|
-
tool: async (client,
|
|
103569
|
-
const [result, apiCall] = await webhooksGetWebhooks(client,
|
|
103803
|
+
args: args159,
|
|
103804
|
+
tool: async (client, args160, ctx) => {
|
|
103805
|
+
const [result, apiCall] = await webhooksGetWebhooks(client, args160.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
103570
103806
|
if (!result.ok) {
|
|
103571
103807
|
return {
|
|
103572
103808
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -103583,7 +103819,7 @@ Get a list of webhooks`,
|
|
|
103583
103819
|
function createMCPServer(deps) {
|
|
103584
103820
|
const server = new McpServer({
|
|
103585
103821
|
name: "Vercel",
|
|
103586
|
-
version: "1.6.
|
|
103822
|
+
version: "1.6.7"
|
|
103587
103823
|
});
|
|
103588
103824
|
const client = new VercelCore({
|
|
103589
103825
|
bearerToken: deps.bearerToken,
|
|
@@ -103629,6 +103865,7 @@ function createMCPServer(deps) {
|
|
|
103629
103865
|
tool(tool$projectsUpdateProjectDomain);
|
|
103630
103866
|
tool(tool$projectsRemoveProjectDomain);
|
|
103631
103867
|
tool(tool$projectsAddProjectDomain);
|
|
103868
|
+
tool(tool$projectsMoveProjectDomain);
|
|
103632
103869
|
tool(tool$projectsVerifyProjectDomain);
|
|
103633
103870
|
tool(tool$projectsFilterProjectEnvs);
|
|
103634
103871
|
tool(tool$projectsCreateProjectEnv);
|
|
@@ -103886,6 +104123,7 @@ var init_server2 = __esm(() => {
|
|
|
103886
104123
|
init_projectsGetProjectEnv2();
|
|
103887
104124
|
init_projectsGetProjects2();
|
|
103888
104125
|
init_projectsListPromoteAliases2();
|
|
104126
|
+
init_projectsMoveProjectDomain2();
|
|
103889
104127
|
init_projectsPauseProject2();
|
|
103890
104128
|
init_projectsRemoveProjectDomain2();
|
|
103891
104129
|
init_projectsRemoveProjectEnv2();
|
|
@@ -105114,7 +105352,7 @@ var routes = an({
|
|
|
105114
105352
|
var app = He(routes, {
|
|
105115
105353
|
name: "mcp",
|
|
105116
105354
|
versionInfo: {
|
|
105117
|
-
currentVersion: "1.6.
|
|
105355
|
+
currentVersion: "1.6.7"
|
|
105118
105356
|
}
|
|
105119
105357
|
});
|
|
105120
105358
|
zt(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -105122,5 +105360,5 @@ export {
|
|
|
105122
105360
|
app
|
|
105123
105361
|
};
|
|
105124
105362
|
|
|
105125
|
-
//# debugId=
|
|
105363
|
+
//# debugId=7EF31B25815D421264756E2164756E21
|
|
105126
105364
|
//# sourceMappingURL=mcp-server.js.map
|