@vercel/sdk 1.6.0 → 1.6.2
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 +4 -2
- package/bin/mcp-server.js +965 -707
- package/bin/mcp-server.js.map +29 -26
- package/docs/sdks/marketplace/README.md +0 -81
- package/docs/sdks/projects/README.md +162 -0
- package/docs/sdks/security/README.md +8 -2
- package/esm/__tests__/marketplace.test.js +3 -13
- package/esm/__tests__/marketplace.test.js.map +1 -1
- package/esm/__tests__/projects.test.js +26 -0
- package/esm/__tests__/projects.test.js.map +1 -1
- package/esm/__tests__/security.test.js +14 -1
- package/esm/__tests__/security.test.js.map +1 -1
- package/esm/funcs/deploymentsUploadFile.js +2 -1
- package/esm/funcs/deploymentsUploadFile.js.map +1 -1
- package/esm/funcs/projectsPauseProject.d.ts +18 -0
- package/esm/funcs/projectsPauseProject.d.ts.map +1 -0
- package/esm/funcs/{marketplaceQueryExperimentationItems.js → projectsPauseProject.js} +21 -13
- package/esm/funcs/projectsPauseProject.js.map +1 -0
- package/esm/funcs/projectsUnpauseProject.d.ts +18 -0
- package/esm/funcs/projectsUnpauseProject.d.ts.map +1 -0
- package/esm/funcs/projectsUnpauseProject.js +92 -0
- package/esm/funcs/projectsUnpauseProject.js.map +1 -0
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/prompts.d.ts.map +1 -1
- package/esm/mcp-server/prompts.js +5 -1
- package/esm/mcp-server/prompts.js.map +1 -1
- package/esm/mcp-server/resources.d.ts.map +1 -1
- package/esm/mcp-server/resources.js +10 -2
- package/esm/mcp-server/resources.js.map +1 -1
- package/esm/mcp-server/server.d.ts.map +1 -1
- package/esm/mcp-server/server.js +6 -5
- package/esm/mcp-server/server.js.map +1 -1
- package/esm/mcp-server/tools/projectsPauseProject.d.ts +7 -0
- package/esm/mcp-server/tools/projectsPauseProject.d.ts.map +1 -0
- package/esm/mcp-server/tools/projectsPauseProject.js +27 -0
- package/esm/mcp-server/tools/projectsPauseProject.js.map +1 -0
- package/esm/mcp-server/tools/projectsUnpauseProject.d.ts +7 -0
- package/esm/mcp-server/tools/projectsUnpauseProject.d.ts.map +1 -0
- package/esm/mcp-server/tools/projectsUnpauseProject.js +27 -0
- package/esm/mcp-server/tools/projectsUnpauseProject.js.map +1 -0
- package/esm/mcp-server/tools.d.ts.map +1 -1
- package/esm/mcp-server/tools.js +4 -3
- package/esm/mcp-server/tools.js.map +1 -1
- package/esm/models/authuser.d.ts +17 -66
- package/esm/models/authuser.d.ts.map +1 -1
- package/esm/models/authuser.js +10 -74
- package/esm/models/authuser.js.map +1 -1
- package/esm/models/createprojectop.d.ts +1 -1
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +4 -4
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/getconfigurationop.d.ts +306 -0
- package/esm/models/getconfigurationop.d.ts.map +1 -1
- package/esm/models/getconfigurationop.js +296 -0
- package/esm/models/getconfigurationop.js.map +1 -1
- package/esm/models/importresourceop.d.ts +64 -0
- package/esm/models/importresourceop.d.ts.map +1 -1
- package/esm/models/importresourceop.js +64 -0
- package/esm/models/importresourceop.js.map +1 -1
- package/esm/models/pauseprojectop.d.ts +42 -0
- package/esm/models/pauseprojectop.d.ts.map +1 -0
- package/esm/models/pauseprojectop.js +35 -0
- package/esm/models/pauseprojectop.js.map +1 -0
- package/esm/models/unpauseprojectop.d.ts +42 -0
- package/esm/models/unpauseprojectop.d.ts.map +1 -0
- package/esm/models/unpauseprojectop.js +35 -0
- package/esm/models/unpauseprojectop.js.map +1 -0
- package/esm/models/updateprojectop.d.ts +1 -1
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +4 -4
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/uploadfileop.d.ts +2 -0
- package/esm/models/uploadfileop.d.ts.map +1 -1
- package/esm/models/uploadfileop.js +14 -0
- package/esm/models/uploadfileop.js.map +1 -1
- package/esm/models/userevent.d.ts +11 -63
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +10 -74
- package/esm/models/userevent.js.map +1 -1
- package/esm/sdk/marketplace.d.ts +0 -8
- package/esm/sdk/marketplace.d.ts.map +1 -1
- package/esm/sdk/marketplace.js +0 -10
- package/esm/sdk/marketplace.js.map +1 -1
- package/esm/sdk/projects.d.ts +16 -0
- package/esm/sdk/projects.d.ts.map +1 -1
- package/esm/sdk/projects.js +20 -0
- package/esm/sdk/projects.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/marketplace.test.ts +5 -15
- package/src/__tests__/projects.test.ts +32 -0
- package/src/__tests__/security.test.ts +14 -1
- package/src/funcs/deploymentsUploadFile.ts +2 -1
- package/src/funcs/projectsPauseProject.ts +190 -0
- package/src/funcs/{marketplaceQueryExperimentationItems.ts → projectsUnpauseProject.ts} +30 -23
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/prompts.ts +8 -1
- package/src/mcp-server/resources.ts +16 -2
- package/src/mcp-server/server.ts +7 -5
- package/src/mcp-server/tools/projectsPauseProject.ts +35 -0
- package/src/mcp-server/tools/projectsUnpauseProject.ts +35 -0
- package/src/mcp-server/tools.ts +6 -3
- package/src/models/authuser.ts +29 -166
- package/src/models/createprojectop.ts +5 -5
- package/src/models/getconfigurationop.ts +579 -0
- package/src/models/importresourceop.ts +141 -0
- package/src/models/pauseprojectop.ts +83 -0
- package/src/models/unpauseprojectop.ts +83 -0
- package/src/models/updateprojectop.ts +5 -5
- package/src/models/uploadfileop.ts +26 -0
- package/src/models/userevent.ts +23 -174
- package/src/sdk/marketplace.ts +0 -22
- package/src/sdk/projects.ts +38 -0
- package/vercel-spec.json +426 -229
- package/esm/funcs/marketplaceQueryExperimentationItems.d.ts +0 -18
- package/esm/funcs/marketplaceQueryExperimentationItems.d.ts.map +0 -1
- package/esm/funcs/marketplaceQueryExperimentationItems.js.map +0 -1
- package/esm/mcp-server/tools/marketplaceQueryExperimentationItems.d.ts +0 -7
- package/esm/mcp-server/tools/marketplaceQueryExperimentationItems.d.ts.map +0 -1
- package/esm/mcp-server/tools/marketplaceQueryExperimentationItems.js +0 -28
- package/esm/mcp-server/tools/marketplaceQueryExperimentationItems.js.map +0 -1
- package/esm/models/queryexperimentationitemsop.d.ts +0 -148
- package/esm/models/queryexperimentationitemsop.d.ts.map +0 -1
- package/esm/models/queryexperimentationitemsop.js +0 -125
- package/esm/models/queryexperimentationitemsop.js.map +0 -1
- package/src/mcp-server/tools/marketplaceQueryExperimentationItems.ts +0 -39
- package/src/models/queryexperimentationitemsop.ts +0 -287
package/bin/mcp-server.js
CHANGED
|
@@ -4026,14 +4026,8 @@ var init_console_logger = __esm(() => {
|
|
|
4026
4026
|
];
|
|
4027
4027
|
});
|
|
4028
4028
|
|
|
4029
|
-
// src/mcp-server/scopes.ts
|
|
4030
|
-
var mcpScopes;
|
|
4031
|
-
var init_scopes = __esm(() => {
|
|
4032
|
-
mcpScopes = [];
|
|
4033
|
-
});
|
|
4034
|
-
|
|
4035
4029
|
// node_modules/@modelcontextprotocol/sdk/dist/esm/types.js
|
|
4036
|
-
var LATEST_PROTOCOL_VERSION = "2024-11-05", SUPPORTED_PROTOCOL_VERSIONS, JSONRPC_VERSION = "2.0", ProgressTokenSchema, CursorSchema, BaseRequestParamsSchema, RequestSchema, BaseNotificationParamsSchema, NotificationSchema, ResultSchema, RequestIdSchema, JSONRPCRequestSchema, JSONRPCNotificationSchema, JSONRPCResponseSchema, ErrorCode, JSONRPCErrorSchema, JSONRPCMessageSchema, EmptyResultSchema, CancelledNotificationSchema, ImplementationSchema, ClientCapabilitiesSchema, InitializeRequestSchema, ServerCapabilitiesSchema, InitializeResultSchema, InitializedNotificationSchema, PingRequestSchema, ProgressSchema, ProgressNotificationSchema, PaginatedRequestSchema, PaginatedResultSchema, ResourceContentsSchema, TextResourceContentsSchema, BlobResourceContentsSchema, ResourceSchema, ResourceTemplateSchema, ListResourcesRequestSchema, ListResourcesResultSchema, ListResourceTemplatesRequestSchema, ListResourceTemplatesResultSchema, ReadResourceRequestSchema, ReadResourceResultSchema, ResourceListChangedNotificationSchema, SubscribeRequestSchema, UnsubscribeRequestSchema, ResourceUpdatedNotificationSchema, PromptArgumentSchema, PromptSchema, ListPromptsRequestSchema, ListPromptsResultSchema, GetPromptRequestSchema, TextContentSchema, ImageContentSchema, EmbeddedResourceSchema, PromptMessageSchema, GetPromptResultSchema, PromptListChangedNotificationSchema, ToolSchema, ListToolsRequestSchema, ListToolsResultSchema, CallToolResultSchema, CompatibilityCallToolResultSchema, CallToolRequestSchema, ToolListChangedNotificationSchema, LoggingLevelSchema, SetLevelRequestSchema, LoggingMessageNotificationSchema, ModelHintSchema, ModelPreferencesSchema, SamplingMessageSchema, CreateMessageRequestSchema, CreateMessageResultSchema, ResourceReferenceSchema, PromptReferenceSchema, CompleteRequestSchema, CompleteResultSchema, RootSchema, ListRootsRequestSchema, ListRootsResultSchema, RootsListChangedNotificationSchema, ClientRequestSchema, ClientNotificationSchema, ClientResultSchema, ServerRequestSchema, ServerNotificationSchema, ServerResultSchema, McpError;
|
|
4030
|
+
var LATEST_PROTOCOL_VERSION = "2024-11-05", SUPPORTED_PROTOCOL_VERSIONS, JSONRPC_VERSION = "2.0", ProgressTokenSchema, CursorSchema, BaseRequestParamsSchema, RequestSchema, BaseNotificationParamsSchema, NotificationSchema, ResultSchema, RequestIdSchema, JSONRPCRequestSchema, JSONRPCNotificationSchema, JSONRPCResponseSchema, ErrorCode, JSONRPCErrorSchema, JSONRPCMessageSchema, EmptyResultSchema, CancelledNotificationSchema, ImplementationSchema, ClientCapabilitiesSchema, InitializeRequestSchema, ServerCapabilitiesSchema, InitializeResultSchema, InitializedNotificationSchema, PingRequestSchema, ProgressSchema, ProgressNotificationSchema, PaginatedRequestSchema, PaginatedResultSchema, ResourceContentsSchema, TextResourceContentsSchema, BlobResourceContentsSchema, ResourceSchema, ResourceTemplateSchema, ListResourcesRequestSchema, ListResourcesResultSchema, ListResourceTemplatesRequestSchema, ListResourceTemplatesResultSchema, ReadResourceRequestSchema, ReadResourceResultSchema, ResourceListChangedNotificationSchema, SubscribeRequestSchema, UnsubscribeRequestSchema, ResourceUpdatedNotificationSchema, PromptArgumentSchema, PromptSchema, ListPromptsRequestSchema, ListPromptsResultSchema, GetPromptRequestSchema, TextContentSchema, ImageContentSchema, AudioContentSchema, EmbeddedResourceSchema, PromptMessageSchema, GetPromptResultSchema, PromptListChangedNotificationSchema, ToolSchema, ListToolsRequestSchema, ListToolsResultSchema, CallToolResultSchema, CompatibilityCallToolResultSchema, CallToolRequestSchema, ToolListChangedNotificationSchema, LoggingLevelSchema, SetLevelRequestSchema, LoggingMessageNotificationSchema, ModelHintSchema, ModelPreferencesSchema, SamplingMessageSchema, CreateMessageRequestSchema, CreateMessageResultSchema, ResourceReferenceSchema, PromptReferenceSchema, CompleteRequestSchema, CompleteResultSchema, RootSchema, ListRootsRequestSchema, ListRootsResultSchema, RootsListChangedNotificationSchema, ClientRequestSchema, ClientNotificationSchema, ClientResultSchema, ServerRequestSchema, ServerNotificationSchema, ServerResultSchema, McpError;
|
|
4037
4031
|
var init_types = __esm(() => {
|
|
4038
4032
|
init_lib();
|
|
4039
4033
|
SUPPORTED_PROTOCOL_VERSIONS = [
|
|
@@ -4128,6 +4122,7 @@ var init_types = __esm(() => {
|
|
|
4128
4122
|
ServerCapabilitiesSchema = z2.object({
|
|
4129
4123
|
experimental: z2.optional(z2.object({}).passthrough()),
|
|
4130
4124
|
logging: z2.optional(z2.object({}).passthrough()),
|
|
4125
|
+
completions: z2.optional(z2.object({}).passthrough()),
|
|
4131
4126
|
prompts: z2.optional(z2.object({
|
|
4132
4127
|
listChanged: z2.optional(z2.boolean())
|
|
4133
4128
|
}).passthrough()),
|
|
@@ -4265,6 +4260,11 @@ var init_types = __esm(() => {
|
|
|
4265
4260
|
data: z2.string().base64(),
|
|
4266
4261
|
mimeType: z2.string()
|
|
4267
4262
|
}).passthrough();
|
|
4263
|
+
AudioContentSchema = z2.object({
|
|
4264
|
+
type: z2.literal("audio"),
|
|
4265
|
+
data: z2.string().base64(),
|
|
4266
|
+
mimeType: z2.string()
|
|
4267
|
+
}).passthrough();
|
|
4268
4268
|
EmbeddedResourceSchema = z2.object({
|
|
4269
4269
|
type: z2.literal("resource"),
|
|
4270
4270
|
resource: z2.union([TextResourceContentsSchema, BlobResourceContentsSchema])
|
|
@@ -4274,6 +4274,7 @@ var init_types = __esm(() => {
|
|
|
4274
4274
|
content: z2.union([
|
|
4275
4275
|
TextContentSchema,
|
|
4276
4276
|
ImageContentSchema,
|
|
4277
|
+
AudioContentSchema,
|
|
4277
4278
|
EmbeddedResourceSchema
|
|
4278
4279
|
])
|
|
4279
4280
|
}).passthrough();
|
|
@@ -4299,7 +4300,7 @@ var init_types = __esm(() => {
|
|
|
4299
4300
|
tools: z2.array(ToolSchema)
|
|
4300
4301
|
});
|
|
4301
4302
|
CallToolResultSchema = ResultSchema.extend({
|
|
4302
|
-
content: z2.array(z2.union([TextContentSchema, ImageContentSchema, EmbeddedResourceSchema])),
|
|
4303
|
+
content: z2.array(z2.union([TextContentSchema, ImageContentSchema, AudioContentSchema, EmbeddedResourceSchema])),
|
|
4303
4304
|
isError: z2.boolean().default(false).optional()
|
|
4304
4305
|
});
|
|
4305
4306
|
CompatibilityCallToolResultSchema = CallToolResultSchema.or(ResultSchema.extend({
|
|
@@ -4350,7 +4351,7 @@ var init_types = __esm(() => {
|
|
|
4350
4351
|
}).passthrough();
|
|
4351
4352
|
SamplingMessageSchema = z2.object({
|
|
4352
4353
|
role: z2.enum(["user", "assistant"]),
|
|
4353
|
-
content: z2.union([TextContentSchema, ImageContentSchema])
|
|
4354
|
+
content: z2.union([TextContentSchema, ImageContentSchema, AudioContentSchema])
|
|
4354
4355
|
}).passthrough();
|
|
4355
4356
|
CreateMessageRequestSchema = RequestSchema.extend({
|
|
4356
4357
|
method: z2.literal("sampling/createMessage"),
|
|
@@ -4371,7 +4372,8 @@ var init_types = __esm(() => {
|
|
|
4371
4372
|
role: z2.enum(["user", "assistant"]),
|
|
4372
4373
|
content: z2.discriminatedUnion("type", [
|
|
4373
4374
|
TextContentSchema,
|
|
4374
|
-
ImageContentSchema
|
|
4375
|
+
ImageContentSchema,
|
|
4376
|
+
AudioContentSchema
|
|
4375
4377
|
])
|
|
4376
4378
|
});
|
|
4377
4379
|
ResourceReferenceSchema = z2.object({
|
|
@@ -9132,7 +9134,7 @@ class SSEServerTransport {
|
|
|
9132
9134
|
}
|
|
9133
9135
|
this.res.writeHead(200, {
|
|
9134
9136
|
"Content-Type": "text/event-stream",
|
|
9135
|
-
"Cache-Control": "no-cache",
|
|
9137
|
+
"Cache-Control": "no-cache, no-transform",
|
|
9136
9138
|
Connection: "keep-alive"
|
|
9137
9139
|
});
|
|
9138
9140
|
this.res.write(`event: endpoint
|
|
@@ -9227,7 +9229,7 @@ class ReadBuffer {
|
|
|
9227
9229
|
if (index === -1) {
|
|
9228
9230
|
return null;
|
|
9229
9231
|
}
|
|
9230
|
-
const line = this._buffer.toString("utf8", 0, index);
|
|
9232
|
+
const line = this._buffer.toString("utf8", 0, index).replace(/\r$/, "");
|
|
9231
9233
|
this._buffer = this._buffer.subarray(index + 1);
|
|
9232
9234
|
return deserializeMessage(line);
|
|
9233
9235
|
}
|
|
@@ -31842,12 +31844,13 @@ class Protocol {
|
|
|
31842
31844
|
});
|
|
31843
31845
|
this.setRequestHandler(PingRequestSchema, (_request) => ({}));
|
|
31844
31846
|
}
|
|
31845
|
-
_setupTimeout(messageId, timeout, maxTotalTimeout, onTimeout) {
|
|
31847
|
+
_setupTimeout(messageId, timeout, maxTotalTimeout, onTimeout, resetTimeoutOnProgress = false) {
|
|
31846
31848
|
this._timeoutInfo.set(messageId, {
|
|
31847
31849
|
timeoutId: setTimeout(onTimeout, timeout),
|
|
31848
31850
|
startTime: Date.now(),
|
|
31849
31851
|
timeout,
|
|
31850
31852
|
maxTotalTimeout,
|
|
31853
|
+
resetTimeoutOnProgress,
|
|
31851
31854
|
onTimeout
|
|
31852
31855
|
});
|
|
31853
31856
|
}
|
|
@@ -31970,7 +31973,8 @@ class Protocol {
|
|
|
31970
31973
|
return;
|
|
31971
31974
|
}
|
|
31972
31975
|
const responseHandler = this._responseHandlers.get(messageId);
|
|
31973
|
-
|
|
31976
|
+
const timeoutInfo = this._timeoutInfo.get(messageId);
|
|
31977
|
+
if (timeoutInfo && responseHandler && timeoutInfo.resetTimeoutOnProgress) {
|
|
31974
31978
|
try {
|
|
31975
31979
|
this._resetTimeout(messageId);
|
|
31976
31980
|
} catch (error) {
|
|
@@ -32006,7 +32010,7 @@ class Protocol {
|
|
|
32006
32010
|
}
|
|
32007
32011
|
request(request, resultSchema, options) {
|
|
32008
32012
|
return new Promise((resolve, reject) => {
|
|
32009
|
-
var _a, _b, _c, _d;
|
|
32013
|
+
var _a, _b, _c, _d, _e;
|
|
32010
32014
|
if (!this._transport) {
|
|
32011
32015
|
reject(new Error("Not connected"));
|
|
32012
32016
|
return;
|
|
@@ -32064,7 +32068,7 @@ class Protocol {
|
|
|
32064
32068
|
});
|
|
32065
32069
|
const timeout = (_d = options === null || options === undefined ? undefined : options.timeout) !== null && _d !== undefined ? _d : DEFAULT_REQUEST_TIMEOUT_MSEC;
|
|
32066
32070
|
const timeoutHandler = () => cancel(new McpError(ErrorCode.RequestTimeout, "Request timed out", { timeout }));
|
|
32067
|
-
this._setupTimeout(messageId, timeout, options === null || options === undefined ? undefined : options.maxTotalTimeout, timeoutHandler);
|
|
32071
|
+
this._setupTimeout(messageId, timeout, options === null || options === undefined ? undefined : options.maxTotalTimeout, timeoutHandler, (_e = options === null || options === undefined ? undefined : options.resetTimeoutOnProgress) !== null && _e !== undefined ? _e : false);
|
|
32068
32072
|
this._transport.send(jsonrpcRequest).catch((error) => {
|
|
32069
32073
|
this._cleanupTimeout(messageId);
|
|
32070
32074
|
reject(error);
|
|
@@ -34186,9 +34190,9 @@ var init_config = __esm(() => {
|
|
|
34186
34190
|
SDK_METADATA = {
|
|
34187
34191
|
language: "typescript",
|
|
34188
34192
|
openapiDocVersion: "0.0.1",
|
|
34189
|
-
sdkVersion: "1.6.
|
|
34190
|
-
genVersion: "2.
|
|
34191
|
-
userAgent: "speakeasy-sdk/typescript 1.6.
|
|
34193
|
+
sdkVersion: "1.6.2",
|
|
34194
|
+
genVersion: "2.570.4",
|
|
34195
|
+
userAgent: "speakeasy-sdk/typescript 1.6.2 2.570.4 0.0.1 @vercel/sdk"
|
|
34192
34196
|
};
|
|
34193
34197
|
});
|
|
34194
34198
|
|
|
@@ -34962,7 +34966,10 @@ var init_core = __esm(() => {
|
|
|
34962
34966
|
function createRegisterPrompt(logger, server, sdk, allowedScopes) {
|
|
34963
34967
|
return (prompt) => {
|
|
34964
34968
|
const scopes = prompt.scopes ?? [];
|
|
34965
|
-
if (
|
|
34969
|
+
if (allowedScopes.size > 0 && scopes.length === 0) {
|
|
34970
|
+
return;
|
|
34971
|
+
}
|
|
34972
|
+
if (allowedScopes.size > 0 && !scopes.every((s) => allowedScopes.has(s))) {
|
|
34966
34973
|
return;
|
|
34967
34974
|
}
|
|
34968
34975
|
if (prompt.args) {
|
|
@@ -35033,7 +35040,10 @@ var init_shared = __esm(() => {
|
|
|
35033
35040
|
function createRegisterResource(logger, server, sdk, allowedScopes) {
|
|
35034
35041
|
return (resource) => {
|
|
35035
35042
|
const scopes = resource.scopes ?? [];
|
|
35036
|
-
if (
|
|
35043
|
+
if (allowedScopes.size > 0 && scopes.length === 0) {
|
|
35044
|
+
return;
|
|
35045
|
+
}
|
|
35046
|
+
if (allowedScopes.size > 0 && !scopes.every((s) => allowedScopes.has(s))) {
|
|
35037
35047
|
return;
|
|
35038
35048
|
}
|
|
35039
35049
|
const metadata = {
|
|
@@ -35047,7 +35057,10 @@ function createRegisterResource(logger, server, sdk, allowedScopes) {
|
|
|
35047
35057
|
function createRegisterResourceTemplate(logger, server, sdk, allowedScopes) {
|
|
35048
35058
|
return (resource) => {
|
|
35049
35059
|
const scopes = resource.scopes ?? [];
|
|
35050
|
-
if (
|
|
35060
|
+
if (allowedScopes.size > 0 && scopes.length === 0) {
|
|
35061
|
+
return;
|
|
35062
|
+
}
|
|
35063
|
+
if (allowedScopes.size > 0 && !scopes.every((s) => allowedScopes.has(s))) {
|
|
35051
35064
|
return;
|
|
35052
35065
|
}
|
|
35053
35066
|
const metadata = {
|
|
@@ -35104,11 +35117,11 @@ function createRegisterTool(logger, server, sdk, allowedScopes, allowedTools) {
|
|
|
35104
35117
|
if (allowedTools && !allowedTools.has(tool.name)) {
|
|
35105
35118
|
return;
|
|
35106
35119
|
}
|
|
35107
|
-
const
|
|
35108
|
-
if (allowedScopes.size > 0 &&
|
|
35120
|
+
const scopes = tool.scopes ?? [];
|
|
35121
|
+
if (allowedScopes.size > 0 && scopes.length === 0) {
|
|
35109
35122
|
return;
|
|
35110
35123
|
}
|
|
35111
|
-
if (!
|
|
35124
|
+
if (allowedScopes.size > 0 && !scopes.every((s) => allowedScopes.has(s))) {
|
|
35112
35125
|
return;
|
|
35113
35126
|
}
|
|
35114
35127
|
if (tool.args) {
|
|
@@ -51296,13 +51309,20 @@ var init_uploadfileop = __esm(() => {
|
|
|
51296
51309
|
"x-now-digest": stringType().optional(),
|
|
51297
51310
|
"x-now-size": numberType().optional(),
|
|
51298
51311
|
teamId: stringType().optional(),
|
|
51299
|
-
slug: stringType().optional()
|
|
51312
|
+
slug: stringType().optional(),
|
|
51313
|
+
RequestBody: unionType([
|
|
51314
|
+
instanceOfType(ReadableStream),
|
|
51315
|
+
instanceOfType(Blob),
|
|
51316
|
+
instanceOfType(ArrayBuffer),
|
|
51317
|
+
instanceOfType(Uint8Array)
|
|
51318
|
+
]).optional()
|
|
51300
51319
|
}).transform((v2) => {
|
|
51301
51320
|
return remap(v2, {
|
|
51302
51321
|
"Content-Length": "contentLength",
|
|
51303
51322
|
"x-vercel-digest": "xVercelDigest",
|
|
51304
51323
|
"x-now-digest": "xNowDigest",
|
|
51305
|
-
"x-now-size": "xNowSize"
|
|
51324
|
+
"x-now-size": "xNowSize",
|
|
51325
|
+
RequestBody: "requestBody"
|
|
51306
51326
|
});
|
|
51307
51327
|
});
|
|
51308
51328
|
UploadFileRequest$outboundSchema = objectType({
|
|
@@ -51311,13 +51331,20 @@ var init_uploadfileop = __esm(() => {
|
|
|
51311
51331
|
xNowDigest: stringType().optional(),
|
|
51312
51332
|
xNowSize: numberType().optional(),
|
|
51313
51333
|
teamId: stringType().optional(),
|
|
51314
|
-
slug: stringType().optional()
|
|
51334
|
+
slug: stringType().optional(),
|
|
51335
|
+
requestBody: unionType([
|
|
51336
|
+
instanceOfType(ReadableStream),
|
|
51337
|
+
instanceOfType(Blob),
|
|
51338
|
+
instanceOfType(ArrayBuffer),
|
|
51339
|
+
instanceOfType(Uint8Array)
|
|
51340
|
+
]).optional()
|
|
51315
51341
|
}).transform((v2) => {
|
|
51316
51342
|
return remap(v2, {
|
|
51317
51343
|
contentLength: "Content-Length",
|
|
51318
51344
|
xVercelDigest: "x-vercel-digest",
|
|
51319
51345
|
xNowDigest: "x-now-digest",
|
|
51320
|
-
xNowSize: "x-now-size"
|
|
51346
|
+
xNowSize: "x-now-size",
|
|
51347
|
+
requestBody: "RequestBody"
|
|
51321
51348
|
});
|
|
51322
51349
|
});
|
|
51323
51350
|
((UploadFileRequest$) => {
|
|
@@ -51364,13 +51391,14 @@ async function $do46(client, request, options) {
|
|
|
51364
51391
|
return [parsed, { status: "invalid" }];
|
|
51365
51392
|
}
|
|
51366
51393
|
const payload = parsed.value;
|
|
51367
|
-
const body =
|
|
51394
|
+
const body = payload.RequestBody;
|
|
51368
51395
|
const path = pathToFunc("/v2/files")();
|
|
51369
51396
|
const query = encodeFormQuery({
|
|
51370
51397
|
slug: payload.slug,
|
|
51371
51398
|
teamId: payload.teamId
|
|
51372
51399
|
});
|
|
51373
51400
|
const headers = new Headers(compactMap({
|
|
51401
|
+
"Content-Type": "application/octet-stream",
|
|
51374
51402
|
Accept: "application/json",
|
|
51375
51403
|
"Content-Length": encodeSimple("Content-Length", payload["Content-Length"], { explode: false, charEncoding: "none" }),
|
|
51376
51404
|
"x-now-digest": encodeSimple("x-now-digest", payload["x-now-digest"], {
|
|
@@ -58797,13 +58825,27 @@ Allows to remove the configuration with the \`id\` provided in the parameters. T
|
|
|
58797
58825
|
});
|
|
58798
58826
|
|
|
58799
58827
|
// src/models/getconfigurationop.ts
|
|
58800
|
-
var ProjectSelection, GetConfigurationResponseBodyIntegrationsSource, GetConfigurationResponseBodyIntegrationsType, GetConfigurationResponseBodyIntegrationsDisabledReason, GetConfigurationResponseBodyIntegrationsInstallationType, GetConfigurationResponseBodySource, GetConfigurationResponseBodyType, GetConfigurationResponseBodyDisabledReason, GetConfigurationResponseBodyInstallationType, GetConfigurationRequest$inboundSchema, GetConfigurationRequest$outboundSchema, GetConfigurationRequest$, ProjectSelection$inboundSchema, ProjectSelection$outboundSchema, ProjectSelection$, GetConfigurationResponseBodyIntegrationsSource$inboundSchema, GetConfigurationResponseBodyIntegrationsSource$outboundSchema, GetConfigurationResponseBodyIntegrationsSource$, GetConfigurationResponseBodyIntegrationsType$inboundSchema, GetConfigurationResponseBodyIntegrationsType$outboundSchema, GetConfigurationResponseBodyIntegrationsType$, GetConfigurationResponseBodyIntegrationsDisabledReason$inboundSchema, GetConfigurationResponseBodyIntegrationsDisabledReason$outboundSchema, GetConfigurationResponseBodyIntegrationsDisabledReason$, GetConfigurationResponseBodyIntegrationsInstallationType$inboundSchema, GetConfigurationResponseBodyIntegrationsInstallationType$outboundSchema, GetConfigurationResponseBodyIntegrationsInstallationType$, GetConfigurationResponseBody2$inboundSchema, GetConfigurationResponseBody2$outboundSchema, GetConfigurationResponseBody2$, GetConfigurationResponseBodySource$inboundSchema, GetConfigurationResponseBodySource$outboundSchema, GetConfigurationResponseBodySource$, GetConfigurationResponseBodyType$inboundSchema, GetConfigurationResponseBodyType$outboundSchema, GetConfigurationResponseBodyType$, GetConfigurationResponseBodyDisabledReason$inboundSchema, GetConfigurationResponseBodyDisabledReason$outboundSchema, GetConfigurationResponseBodyDisabledReason$, GetConfigurationResponseBodyInstallationType$inboundSchema, GetConfigurationResponseBodyInstallationType$outboundSchema, GetConfigurationResponseBodyInstallationType$, GetConfigurationResponseBody1$inboundSchema, GetConfigurationResponseBody1$outboundSchema, GetConfigurationResponseBody1$, GetConfigurationResponseBody$inboundSchema, GetConfigurationResponseBody$outboundSchema, GetConfigurationResponseBody$;
|
|
58828
|
+
var ProjectSelection, TransferRequestKind, Kind, TransferRequestType, TransferRequestScope, GetConfigurationResponseBodyIntegrationsSource, GetConfigurationResponseBodyIntegrationsType, GetConfigurationResponseBodyIntegrationsDisabledReason, GetConfigurationResponseBodyIntegrationsInstallationType, GetConfigurationResponseBodySource, GetConfigurationResponseBodyType, GetConfigurationResponseBodyDisabledReason, GetConfigurationResponseBodyInstallationType, GetConfigurationRequest$inboundSchema, GetConfigurationRequest$outboundSchema, GetConfigurationRequest$, ProjectSelection$inboundSchema, ProjectSelection$outboundSchema, ProjectSelection$, TransferRequestKind$inboundSchema, TransferRequestKind$outboundSchema, TransferRequestKind$, TransferRequestRequester$inboundSchema, TransferRequestRequester$outboundSchema, TransferRequestRequester$, TransferRequest2$inboundSchema, TransferRequest2$outboundSchema, TransferRequest2$, Kind$inboundSchema, Kind$outboundSchema, Kind$, TransferRequestType$inboundSchema, TransferRequestType$outboundSchema, TransferRequestType$, TransferRequestScope$inboundSchema, TransferRequestScope$outboundSchema, TransferRequestScope$, TransferRequestBillingPlan$inboundSchema, TransferRequestBillingPlan$outboundSchema, TransferRequestBillingPlan$, Requester$inboundSchema, Requester$outboundSchema, Requester$, TransferRequest1$inboundSchema, TransferRequest1$outboundSchema, TransferRequest1$, TransferRequest$inboundSchema, TransferRequest$outboundSchema, TransferRequest$, GetConfigurationResponseBodyIntegrationsSource$inboundSchema, GetConfigurationResponseBodyIntegrationsSource$outboundSchema, GetConfigurationResponseBodyIntegrationsSource$, GetConfigurationResponseBodyIntegrationsType$inboundSchema, GetConfigurationResponseBodyIntegrationsType$outboundSchema, GetConfigurationResponseBodyIntegrationsType$, GetConfigurationResponseBodyIntegrationsDisabledReason$inboundSchema, GetConfigurationResponseBodyIntegrationsDisabledReason$outboundSchema, GetConfigurationResponseBodyIntegrationsDisabledReason$, GetConfigurationResponseBodyIntegrationsInstallationType$inboundSchema, GetConfigurationResponseBodyIntegrationsInstallationType$outboundSchema, GetConfigurationResponseBodyIntegrationsInstallationType$, GetConfigurationResponseBody2$inboundSchema, GetConfigurationResponseBody2$outboundSchema, GetConfigurationResponseBody2$, GetConfigurationResponseBodySource$inboundSchema, GetConfigurationResponseBodySource$outboundSchema, GetConfigurationResponseBodySource$, GetConfigurationResponseBodyType$inboundSchema, GetConfigurationResponseBodyType$outboundSchema, GetConfigurationResponseBodyType$, GetConfigurationResponseBodyDisabledReason$inboundSchema, GetConfigurationResponseBodyDisabledReason$outboundSchema, GetConfigurationResponseBodyDisabledReason$, GetConfigurationResponseBodyInstallationType$inboundSchema, GetConfigurationResponseBodyInstallationType$outboundSchema, GetConfigurationResponseBodyInstallationType$, GetConfigurationResponseBody1$inboundSchema, GetConfigurationResponseBody1$outboundSchema, GetConfigurationResponseBody1$, GetConfigurationResponseBody$inboundSchema, GetConfigurationResponseBody$outboundSchema, GetConfigurationResponseBody$;
|
|
58801
58829
|
var init_getconfigurationop = __esm(() => {
|
|
58802
58830
|
init_lib();
|
|
58803
58831
|
ProjectSelection = {
|
|
58804
58832
|
Selected: "selected",
|
|
58805
58833
|
All: "all"
|
|
58806
58834
|
};
|
|
58835
|
+
TransferRequestKind = {
|
|
58836
|
+
TransferFromMarketplace: "transfer-from-marketplace"
|
|
58837
|
+
};
|
|
58838
|
+
Kind = {
|
|
58839
|
+
TransferToMarketplace: "transfer-to-marketplace"
|
|
58840
|
+
};
|
|
58841
|
+
TransferRequestType = {
|
|
58842
|
+
Subscription: "subscription",
|
|
58843
|
+
Prepayment: "prepayment"
|
|
58844
|
+
};
|
|
58845
|
+
TransferRequestScope = {
|
|
58846
|
+
Installation: "installation",
|
|
58847
|
+
Resource: "resource"
|
|
58848
|
+
};
|
|
58807
58849
|
GetConfigurationResponseBodyIntegrationsSource = {
|
|
58808
58850
|
Marketplace: "marketplace",
|
|
58809
58851
|
DeployButton: "deploy-button",
|
|
@@ -58866,6 +58908,152 @@ var init_getconfigurationop = __esm(() => {
|
|
|
58866
58908
|
ProjectSelection$.inboundSchema = ProjectSelection$inboundSchema;
|
|
58867
58909
|
ProjectSelection$.outboundSchema = ProjectSelection$outboundSchema;
|
|
58868
58910
|
})(ProjectSelection$ ||= {});
|
|
58911
|
+
TransferRequestKind$inboundSchema = nativeEnumType(TransferRequestKind);
|
|
58912
|
+
TransferRequestKind$outboundSchema = TransferRequestKind$inboundSchema;
|
|
58913
|
+
((TransferRequestKind$) => {
|
|
58914
|
+
TransferRequestKind$.inboundSchema = TransferRequestKind$inboundSchema;
|
|
58915
|
+
TransferRequestKind$.outboundSchema = TransferRequestKind$outboundSchema;
|
|
58916
|
+
})(TransferRequestKind$ ||= {});
|
|
58917
|
+
TransferRequestRequester$inboundSchema = objectType({
|
|
58918
|
+
name: stringType(),
|
|
58919
|
+
email: stringType().optional()
|
|
58920
|
+
});
|
|
58921
|
+
TransferRequestRequester$outboundSchema = objectType({
|
|
58922
|
+
name: stringType(),
|
|
58923
|
+
email: stringType().optional()
|
|
58924
|
+
});
|
|
58925
|
+
((TransferRequestRequester$) => {
|
|
58926
|
+
TransferRequestRequester$.inboundSchema = TransferRequestRequester$inboundSchema;
|
|
58927
|
+
TransferRequestRequester$.outboundSchema = TransferRequestRequester$outboundSchema;
|
|
58928
|
+
})(TransferRequestRequester$ ||= {});
|
|
58929
|
+
TransferRequest2$inboundSchema = objectType({
|
|
58930
|
+
kind: TransferRequestKind$inboundSchema,
|
|
58931
|
+
requestId: stringType(),
|
|
58932
|
+
transferId: stringType(),
|
|
58933
|
+
requester: lazyType(() => TransferRequestRequester$inboundSchema),
|
|
58934
|
+
createdAt: numberType(),
|
|
58935
|
+
expiresAt: numberType(),
|
|
58936
|
+
discardedAt: numberType().optional(),
|
|
58937
|
+
discardedBy: stringType().optional(),
|
|
58938
|
+
approvedAt: numberType().optional(),
|
|
58939
|
+
approvedBy: stringType().optional(),
|
|
58940
|
+
authorizationId: stringType().optional()
|
|
58941
|
+
});
|
|
58942
|
+
TransferRequest2$outboundSchema = objectType({
|
|
58943
|
+
kind: TransferRequestKind$outboundSchema,
|
|
58944
|
+
requestId: stringType(),
|
|
58945
|
+
transferId: stringType(),
|
|
58946
|
+
requester: lazyType(() => TransferRequestRequester$outboundSchema),
|
|
58947
|
+
createdAt: numberType(),
|
|
58948
|
+
expiresAt: numberType(),
|
|
58949
|
+
discardedAt: numberType().optional(),
|
|
58950
|
+
discardedBy: stringType().optional(),
|
|
58951
|
+
approvedAt: numberType().optional(),
|
|
58952
|
+
approvedBy: stringType().optional(),
|
|
58953
|
+
authorizationId: stringType().optional()
|
|
58954
|
+
});
|
|
58955
|
+
((TransferRequest2$) => {
|
|
58956
|
+
TransferRequest2$.inboundSchema = TransferRequest2$inboundSchema;
|
|
58957
|
+
TransferRequest2$.outboundSchema = TransferRequest2$outboundSchema;
|
|
58958
|
+
})(TransferRequest2$ ||= {});
|
|
58959
|
+
Kind$inboundSchema = nativeEnumType(Kind);
|
|
58960
|
+
Kind$outboundSchema = Kind$inboundSchema;
|
|
58961
|
+
((Kind$) => {
|
|
58962
|
+
Kind$.inboundSchema = Kind$inboundSchema;
|
|
58963
|
+
Kind$.outboundSchema = Kind$outboundSchema;
|
|
58964
|
+
})(Kind$ ||= {});
|
|
58965
|
+
TransferRequestType$inboundSchema = nativeEnumType(TransferRequestType);
|
|
58966
|
+
TransferRequestType$outboundSchema = TransferRequestType$inboundSchema;
|
|
58967
|
+
((TransferRequestType$) => {
|
|
58968
|
+
TransferRequestType$.inboundSchema = TransferRequestType$inboundSchema;
|
|
58969
|
+
TransferRequestType$.outboundSchema = TransferRequestType$outboundSchema;
|
|
58970
|
+
})(TransferRequestType$ ||= {});
|
|
58971
|
+
TransferRequestScope$inboundSchema = nativeEnumType(TransferRequestScope);
|
|
58972
|
+
TransferRequestScope$outboundSchema = TransferRequestScope$inboundSchema;
|
|
58973
|
+
((TransferRequestScope$) => {
|
|
58974
|
+
TransferRequestScope$.inboundSchema = TransferRequestScope$inboundSchema;
|
|
58975
|
+
TransferRequestScope$.outboundSchema = TransferRequestScope$outboundSchema;
|
|
58976
|
+
})(TransferRequestScope$ ||= {});
|
|
58977
|
+
TransferRequestBillingPlan$inboundSchema = objectType({
|
|
58978
|
+
id: stringType(),
|
|
58979
|
+
type: TransferRequestType$inboundSchema,
|
|
58980
|
+
scope: TransferRequestScope$inboundSchema.optional(),
|
|
58981
|
+
name: stringType(),
|
|
58982
|
+
description: stringType(),
|
|
58983
|
+
paymentMethodRequired: booleanType().optional(),
|
|
58984
|
+
preauthorizationAmount: numberType().optional()
|
|
58985
|
+
});
|
|
58986
|
+
TransferRequestBillingPlan$outboundSchema = objectType({
|
|
58987
|
+
id: stringType(),
|
|
58988
|
+
type: TransferRequestType$outboundSchema,
|
|
58989
|
+
scope: TransferRequestScope$outboundSchema.optional(),
|
|
58990
|
+
name: stringType(),
|
|
58991
|
+
description: stringType(),
|
|
58992
|
+
paymentMethodRequired: booleanType().optional(),
|
|
58993
|
+
preauthorizationAmount: numberType().optional()
|
|
58994
|
+
});
|
|
58995
|
+
((TransferRequestBillingPlan$) => {
|
|
58996
|
+
TransferRequestBillingPlan$.inboundSchema = TransferRequestBillingPlan$inboundSchema;
|
|
58997
|
+
TransferRequestBillingPlan$.outboundSchema = TransferRequestBillingPlan$outboundSchema;
|
|
58998
|
+
})(TransferRequestBillingPlan$ ||= {});
|
|
58999
|
+
Requester$inboundSchema = objectType({
|
|
59000
|
+
name: stringType(),
|
|
59001
|
+
email: stringType().optional()
|
|
59002
|
+
});
|
|
59003
|
+
Requester$outboundSchema = objectType({
|
|
59004
|
+
name: stringType(),
|
|
59005
|
+
email: stringType().optional()
|
|
59006
|
+
});
|
|
59007
|
+
((Requester$) => {
|
|
59008
|
+
Requester$.inboundSchema = Requester$inboundSchema;
|
|
59009
|
+
Requester$.outboundSchema = Requester$outboundSchema;
|
|
59010
|
+
})(Requester$ ||= {});
|
|
59011
|
+
TransferRequest1$inboundSchema = objectType({
|
|
59012
|
+
kind: Kind$inboundSchema,
|
|
59013
|
+
metadata: recordType(anyType()).optional(),
|
|
59014
|
+
billingPlan: lazyType(() => TransferRequestBillingPlan$inboundSchema).optional(),
|
|
59015
|
+
requestId: stringType(),
|
|
59016
|
+
transferId: stringType(),
|
|
59017
|
+
requester: lazyType(() => Requester$inboundSchema),
|
|
59018
|
+
createdAt: numberType(),
|
|
59019
|
+
expiresAt: numberType(),
|
|
59020
|
+
discardedAt: numberType().optional(),
|
|
59021
|
+
discardedBy: stringType().optional(),
|
|
59022
|
+
approvedAt: numberType().optional(),
|
|
59023
|
+
approvedBy: stringType().optional(),
|
|
59024
|
+
authorizationId: stringType().optional()
|
|
59025
|
+
});
|
|
59026
|
+
TransferRequest1$outboundSchema = objectType({
|
|
59027
|
+
kind: Kind$outboundSchema,
|
|
59028
|
+
metadata: recordType(anyType()).optional(),
|
|
59029
|
+
billingPlan: lazyType(() => TransferRequestBillingPlan$outboundSchema).optional(),
|
|
59030
|
+
requestId: stringType(),
|
|
59031
|
+
transferId: stringType(),
|
|
59032
|
+
requester: lazyType(() => Requester$outboundSchema),
|
|
59033
|
+
createdAt: numberType(),
|
|
59034
|
+
expiresAt: numberType(),
|
|
59035
|
+
discardedAt: numberType().optional(),
|
|
59036
|
+
discardedBy: stringType().optional(),
|
|
59037
|
+
approvedAt: numberType().optional(),
|
|
59038
|
+
approvedBy: stringType().optional(),
|
|
59039
|
+
authorizationId: stringType().optional()
|
|
59040
|
+
});
|
|
59041
|
+
((TransferRequest1$) => {
|
|
59042
|
+
TransferRequest1$.inboundSchema = TransferRequest1$inboundSchema;
|
|
59043
|
+
TransferRequest1$.outboundSchema = TransferRequest1$outboundSchema;
|
|
59044
|
+
})(TransferRequest1$ ||= {});
|
|
59045
|
+
TransferRequest$inboundSchema = unionType([
|
|
59046
|
+
lazyType(() => TransferRequest2$inboundSchema),
|
|
59047
|
+
lazyType(() => TransferRequest1$inboundSchema)
|
|
59048
|
+
]);
|
|
59049
|
+
TransferRequest$outboundSchema = unionType([
|
|
59050
|
+
lazyType(() => TransferRequest2$outboundSchema),
|
|
59051
|
+
lazyType(() => TransferRequest1$outboundSchema)
|
|
59052
|
+
]);
|
|
59053
|
+
((TransferRequest$) => {
|
|
59054
|
+
TransferRequest$.inboundSchema = TransferRequest$inboundSchema;
|
|
59055
|
+
TransferRequest$.outboundSchema = TransferRequest$outboundSchema;
|
|
59056
|
+
})(TransferRequest$ ||= {});
|
|
58869
59057
|
GetConfigurationResponseBodyIntegrationsSource$inboundSchema = nativeEnumType(GetConfigurationResponseBodyIntegrationsSource);
|
|
58870
59058
|
GetConfigurationResponseBodyIntegrationsSource$outboundSchema = GetConfigurationResponseBodyIntegrationsSource$inboundSchema;
|
|
58871
59059
|
((GetConfigurationResponseBodyIntegrationsSource$) => {
|
|
@@ -58892,6 +59080,10 @@ var init_getconfigurationop = __esm(() => {
|
|
|
58892
59080
|
})(GetConfigurationResponseBodyIntegrationsInstallationType$ ||= {});
|
|
58893
59081
|
GetConfigurationResponseBody2$inboundSchema = objectType({
|
|
58894
59082
|
projectSelection: ProjectSelection$inboundSchema,
|
|
59083
|
+
transferRequest: unionType([
|
|
59084
|
+
lazyType(() => TransferRequest2$inboundSchema),
|
|
59085
|
+
lazyType(() => TransferRequest1$inboundSchema)
|
|
59086
|
+
]),
|
|
58895
59087
|
projects: arrayType(stringType()).optional(),
|
|
58896
59088
|
completedAt: numberType().optional(),
|
|
58897
59089
|
createdAt: numberType(),
|
|
@@ -58914,6 +59106,10 @@ var init_getconfigurationop = __esm(() => {
|
|
|
58914
59106
|
});
|
|
58915
59107
|
GetConfigurationResponseBody2$outboundSchema = objectType({
|
|
58916
59108
|
projectSelection: ProjectSelection$outboundSchema,
|
|
59109
|
+
transferRequest: unionType([
|
|
59110
|
+
lazyType(() => TransferRequest2$outboundSchema),
|
|
59111
|
+
lazyType(() => TransferRequest1$outboundSchema)
|
|
59112
|
+
]),
|
|
58917
59113
|
projects: arrayType(stringType()).optional(),
|
|
58918
59114
|
completedAt: numberType().optional(),
|
|
58919
59115
|
createdAt: numberType(),
|
|
@@ -62994,7 +63190,7 @@ Returns the member role and other information for a given member ID ("user_id" c
|
|
|
62994
63190
|
});
|
|
62995
63191
|
|
|
62996
63192
|
// src/models/importresourceop.ts
|
|
62997
|
-
var ImportResourceStatus, ImportResourceType, Level, ImportResourceStatus$inboundSchema, ImportResourceStatus$outboundSchema, ImportResourceStatus$, ImportResourceType$inboundSchema, ImportResourceType$outboundSchema, ImportResourceType$, BillingPlan$inboundSchema, BillingPlan$outboundSchema, BillingPlan$, Level$inboundSchema, Level$outboundSchema, Level$, Notification$inboundSchema, Notification$outboundSchema, Notification$, ImportResourceSecrets$inboundSchema, ImportResourceSecrets$outboundSchema, ImportResourceSecrets$, ImportResourceRequestBody$inboundSchema, ImportResourceRequestBody$outboundSchema, ImportResourceRequestBody$, ImportResourceRequest$inboundSchema, ImportResourceRequest$outboundSchema, ImportResourceRequest$, ImportResourceResponseBody$inboundSchema, ImportResourceResponseBody$outboundSchema, ImportResourceResponseBody$;
|
|
63193
|
+
var ImportResourceStatus, ImportResourceType, Level, ImportResourceStatus$inboundSchema, ImportResourceStatus$outboundSchema, ImportResourceStatus$, ImportResourceType$inboundSchema, ImportResourceType$outboundSchema, ImportResourceType$, Details$inboundSchema, Details$outboundSchema, Details$, HeightlightedDetails$inboundSchema, HeightlightedDetails$outboundSchema, HeightlightedDetails$, BillingPlan$inboundSchema, BillingPlan$outboundSchema, BillingPlan$, Level$inboundSchema, Level$outboundSchema, Level$, Notification$inboundSchema, Notification$outboundSchema, Notification$, ImportResourceSecrets$inboundSchema, ImportResourceSecrets$outboundSchema, ImportResourceSecrets$, ImportResourceRequestBody$inboundSchema, ImportResourceRequestBody$outboundSchema, ImportResourceRequestBody$, ImportResourceRequest$inboundSchema, ImportResourceRequest$outboundSchema, ImportResourceRequest$, ImportResourceResponseBody$inboundSchema, ImportResourceResponseBody$outboundSchema, ImportResourceResponseBody$;
|
|
62998
63194
|
var init_importresourceop = __esm(() => {
|
|
62999
63195
|
init_lib();
|
|
63000
63196
|
init_primitives();
|
|
@@ -63028,17 +63224,51 @@ var init_importresourceop = __esm(() => {
|
|
|
63028
63224
|
ImportResourceType$.inboundSchema = ImportResourceType$inboundSchema;
|
|
63029
63225
|
ImportResourceType$.outboundSchema = ImportResourceType$outboundSchema;
|
|
63030
63226
|
})(ImportResourceType$ ||= {});
|
|
63227
|
+
Details$inboundSchema = objectType({
|
|
63228
|
+
label: stringType(),
|
|
63229
|
+
value: stringType().optional()
|
|
63230
|
+
});
|
|
63231
|
+
Details$outboundSchema = objectType({
|
|
63232
|
+
label: stringType(),
|
|
63233
|
+
value: stringType().optional()
|
|
63234
|
+
});
|
|
63235
|
+
((Details$) => {
|
|
63236
|
+
Details$.inboundSchema = Details$inboundSchema;
|
|
63237
|
+
Details$.outboundSchema = Details$outboundSchema;
|
|
63238
|
+
})(Details$ ||= {});
|
|
63239
|
+
HeightlightedDetails$inboundSchema = objectType({
|
|
63240
|
+
label: stringType(),
|
|
63241
|
+
value: stringType().optional()
|
|
63242
|
+
});
|
|
63243
|
+
HeightlightedDetails$outboundSchema = objectType({
|
|
63244
|
+
label: stringType(),
|
|
63245
|
+
value: stringType().optional()
|
|
63246
|
+
});
|
|
63247
|
+
((HeightlightedDetails$) => {
|
|
63248
|
+
HeightlightedDetails$.inboundSchema = HeightlightedDetails$inboundSchema;
|
|
63249
|
+
HeightlightedDetails$.outboundSchema = HeightlightedDetails$outboundSchema;
|
|
63250
|
+
})(HeightlightedDetails$ ||= {});
|
|
63031
63251
|
BillingPlan$inboundSchema = collectExtraKeys(objectType({
|
|
63032
63252
|
id: stringType(),
|
|
63033
63253
|
type: ImportResourceType$inboundSchema,
|
|
63034
63254
|
name: stringType(),
|
|
63035
|
-
|
|
63255
|
+
description: stringType().optional(),
|
|
63256
|
+
paymentMethodRequired: booleanType().optional(),
|
|
63257
|
+
cost: stringType().optional(),
|
|
63258
|
+
details: arrayType(lazyType(() => Details$inboundSchema)).optional(),
|
|
63259
|
+
heightlightedDetails: arrayType(lazyType(() => HeightlightedDetails$inboundSchema)).optional(),
|
|
63260
|
+
effectiveDate: stringType().optional()
|
|
63036
63261
|
}).catchall(anyType()), "additionalProperties", true);
|
|
63037
63262
|
BillingPlan$outboundSchema = objectType({
|
|
63038
63263
|
id: stringType(),
|
|
63039
63264
|
type: ImportResourceType$outboundSchema,
|
|
63040
63265
|
name: stringType(),
|
|
63266
|
+
description: stringType().optional(),
|
|
63041
63267
|
paymentMethodRequired: booleanType().optional(),
|
|
63268
|
+
cost: stringType().optional(),
|
|
63269
|
+
details: arrayType(lazyType(() => Details$outboundSchema)).optional(),
|
|
63270
|
+
heightlightedDetails: arrayType(lazyType(() => HeightlightedDetails$outboundSchema)).optional(),
|
|
63271
|
+
effectiveDate: stringType().optional(),
|
|
63042
63272
|
additionalProperties: recordType(anyType())
|
|
63043
63273
|
}).transform((v2) => {
|
|
63044
63274
|
return {
|
|
@@ -63254,179 +63484,6 @@ This endpoint imports (upserts) a resource to Vercel's installation. This may be
|
|
|
63254
63484
|
};
|
|
63255
63485
|
});
|
|
63256
63486
|
|
|
63257
|
-
// src/models/queryexperimentationitemsop.ts
|
|
63258
|
-
var QueryExperimentationItemsCategory, QueryExperimentationItemsRequest$inboundSchema, QueryExperimentationItemsRequest$outboundSchema, QueryExperimentationItemsRequest$, QueryExperimentationItemsCategory$inboundSchema, QueryExperimentationItemsCategory$outboundSchema, QueryExperimentationItemsCategory$, QueryExperimentationItemsItems$inboundSchema, QueryExperimentationItemsItems$outboundSchema, QueryExperimentationItemsItems$, QueryExperimentationItemsResponseBody$inboundSchema, QueryExperimentationItemsResponseBody$outboundSchema, QueryExperimentationItemsResponseBody$;
|
|
63259
|
-
var init_queryexperimentationitemsop = __esm(() => {
|
|
63260
|
-
init_lib();
|
|
63261
|
-
QueryExperimentationItemsCategory = {
|
|
63262
|
-
Experiment: "experiment",
|
|
63263
|
-
Flag: "flag"
|
|
63264
|
-
};
|
|
63265
|
-
QueryExperimentationItemsRequest$inboundSchema = objectType({
|
|
63266
|
-
resourceId: stringType().optional()
|
|
63267
|
-
});
|
|
63268
|
-
QueryExperimentationItemsRequest$outboundSchema = objectType({
|
|
63269
|
-
resourceId: stringType().optional()
|
|
63270
|
-
});
|
|
63271
|
-
((QueryExperimentationItemsRequest$) => {
|
|
63272
|
-
QueryExperimentationItemsRequest$.inboundSchema = QueryExperimentationItemsRequest$inboundSchema;
|
|
63273
|
-
QueryExperimentationItemsRequest$.outboundSchema = QueryExperimentationItemsRequest$outboundSchema;
|
|
63274
|
-
})(QueryExperimentationItemsRequest$ ||= {});
|
|
63275
|
-
QueryExperimentationItemsCategory$inboundSchema = nativeEnumType(QueryExperimentationItemsCategory);
|
|
63276
|
-
QueryExperimentationItemsCategory$outboundSchema = QueryExperimentationItemsCategory$inboundSchema;
|
|
63277
|
-
((QueryExperimentationItemsCategory$) => {
|
|
63278
|
-
QueryExperimentationItemsCategory$.inboundSchema = QueryExperimentationItemsCategory$inboundSchema;
|
|
63279
|
-
QueryExperimentationItemsCategory$.outboundSchema = QueryExperimentationItemsCategory$outboundSchema;
|
|
63280
|
-
})(QueryExperimentationItemsCategory$ ||= {});
|
|
63281
|
-
QueryExperimentationItemsItems$inboundSchema = objectType({
|
|
63282
|
-
id: stringType(),
|
|
63283
|
-
slug: stringType(),
|
|
63284
|
-
origin: stringType(),
|
|
63285
|
-
externalId: stringType(),
|
|
63286
|
-
integrationConfigurationId: stringType(),
|
|
63287
|
-
resourceId: stringType(),
|
|
63288
|
-
category: QueryExperimentationItemsCategory$inboundSchema.optional(),
|
|
63289
|
-
name: stringType().optional(),
|
|
63290
|
-
description: stringType().optional(),
|
|
63291
|
-
isArchived: booleanType().optional(),
|
|
63292
|
-
createdAt: numberType().optional(),
|
|
63293
|
-
updatedAt: numberType().optional()
|
|
63294
|
-
});
|
|
63295
|
-
QueryExperimentationItemsItems$outboundSchema = objectType({
|
|
63296
|
-
id: stringType(),
|
|
63297
|
-
slug: stringType(),
|
|
63298
|
-
origin: stringType(),
|
|
63299
|
-
externalId: stringType(),
|
|
63300
|
-
integrationConfigurationId: stringType(),
|
|
63301
|
-
resourceId: stringType(),
|
|
63302
|
-
category: QueryExperimentationItemsCategory$outboundSchema.optional(),
|
|
63303
|
-
name: stringType().optional(),
|
|
63304
|
-
description: stringType().optional(),
|
|
63305
|
-
isArchived: booleanType().optional(),
|
|
63306
|
-
createdAt: numberType().optional(),
|
|
63307
|
-
updatedAt: numberType().optional()
|
|
63308
|
-
});
|
|
63309
|
-
((QueryExperimentationItemsItems$) => {
|
|
63310
|
-
QueryExperimentationItemsItems$.inboundSchema = QueryExperimentationItemsItems$inboundSchema;
|
|
63311
|
-
QueryExperimentationItemsItems$.outboundSchema = QueryExperimentationItemsItems$outboundSchema;
|
|
63312
|
-
})(QueryExperimentationItemsItems$ ||= {});
|
|
63313
|
-
QueryExperimentationItemsResponseBody$inboundSchema = objectType({
|
|
63314
|
-
items: arrayType(lazyType(() => QueryExperimentationItemsItems$inboundSchema))
|
|
63315
|
-
});
|
|
63316
|
-
QueryExperimentationItemsResponseBody$outboundSchema = objectType({
|
|
63317
|
-
items: arrayType(lazyType(() => QueryExperimentationItemsItems$outboundSchema))
|
|
63318
|
-
});
|
|
63319
|
-
((QueryExperimentationItemsResponseBody$) => {
|
|
63320
|
-
QueryExperimentationItemsResponseBody$.inboundSchema = QueryExperimentationItemsResponseBody$inboundSchema;
|
|
63321
|
-
QueryExperimentationItemsResponseBody$.outboundSchema = QueryExperimentationItemsResponseBody$outboundSchema;
|
|
63322
|
-
})(QueryExperimentationItemsResponseBody$ ||= {});
|
|
63323
|
-
});
|
|
63324
|
-
|
|
63325
|
-
// src/funcs/marketplaceQueryExperimentationItems.ts
|
|
63326
|
-
function marketplaceQueryExperimentationItems(client, request, options) {
|
|
63327
|
-
return new APIPromise($do104(client, request, options));
|
|
63328
|
-
}
|
|
63329
|
-
async function $do104(client, request, options) {
|
|
63330
|
-
const parsed = safeParse(request, (value) => QueryExperimentationItemsRequest$outboundSchema.parse(value), "Input validation failed");
|
|
63331
|
-
if (!parsed.ok) {
|
|
63332
|
-
return [parsed, { status: "invalid" }];
|
|
63333
|
-
}
|
|
63334
|
-
const payload = parsed.value;
|
|
63335
|
-
const body = null;
|
|
63336
|
-
const path = pathToFunc("/v1/experimentation/items")();
|
|
63337
|
-
const query = encodeFormQuery({
|
|
63338
|
-
resourceId: payload.resourceId
|
|
63339
|
-
});
|
|
63340
|
-
const headers = new Headers(compactMap({
|
|
63341
|
-
Accept: "application/json"
|
|
63342
|
-
}));
|
|
63343
|
-
const secConfig = await extractSecurity(client._options.bearerToken);
|
|
63344
|
-
const securityInput = secConfig == null ? {} : { bearerToken: secConfig };
|
|
63345
|
-
const requestSecurity = resolveGlobalSecurity(securityInput);
|
|
63346
|
-
const context = {
|
|
63347
|
-
baseURL: options?.serverURL ?? client._baseURL ?? "",
|
|
63348
|
-
operationID: "queryExperimentationItems",
|
|
63349
|
-
oAuth2Scopes: [],
|
|
63350
|
-
resolvedSecurity: requestSecurity,
|
|
63351
|
-
securitySource: client._options.bearerToken,
|
|
63352
|
-
retryConfig: options?.retries || client._options.retryConfig || { strategy: "none" },
|
|
63353
|
-
retryCodes: options?.retryCodes || ["429", "500", "502", "503", "504"]
|
|
63354
|
-
};
|
|
63355
|
-
const requestRes = client._createRequest(context, {
|
|
63356
|
-
security: requestSecurity,
|
|
63357
|
-
method: "GET",
|
|
63358
|
-
baseURL: options?.serverURL,
|
|
63359
|
-
path,
|
|
63360
|
-
headers,
|
|
63361
|
-
query,
|
|
63362
|
-
body,
|
|
63363
|
-
timeoutMs: options?.timeoutMs || client._options.timeoutMs || -1
|
|
63364
|
-
}, options);
|
|
63365
|
-
if (!requestRes.ok) {
|
|
63366
|
-
return [requestRes, { status: "invalid" }];
|
|
63367
|
-
}
|
|
63368
|
-
const req = requestRes.value;
|
|
63369
|
-
const doResult = await client._do(req, {
|
|
63370
|
-
context,
|
|
63371
|
-
errorCodes: ["400", "401", "403", "4XX", "5XX"],
|
|
63372
|
-
retryConfig: context.retryConfig,
|
|
63373
|
-
retryCodes: context.retryCodes
|
|
63374
|
-
});
|
|
63375
|
-
if (!doResult.ok) {
|
|
63376
|
-
return [doResult, { status: "request-error", request: req }];
|
|
63377
|
-
}
|
|
63378
|
-
const response = doResult.value;
|
|
63379
|
-
const responseFields = {
|
|
63380
|
-
HttpMeta: { Response: response, Request: req }
|
|
63381
|
-
};
|
|
63382
|
-
const [result] = await match(json(200, QueryExperimentationItemsResponseBody$inboundSchema), jsonErr(400, VercelBadRequestError$inboundSchema), jsonErr(401, VercelForbiddenError$inboundSchema), fail([403, "4XX"]), fail("5XX"))(response, { extraFields: responseFields });
|
|
63383
|
-
if (!result.ok) {
|
|
63384
|
-
return [result, { status: "complete", request: req, response }];
|
|
63385
|
-
}
|
|
63386
|
-
return [result, { status: "complete", request: req, response }];
|
|
63387
|
-
}
|
|
63388
|
-
var init_marketplaceQueryExperimentationItems = __esm(() => {
|
|
63389
|
-
init_encodings();
|
|
63390
|
-
init_matchers();
|
|
63391
|
-
init_primitives();
|
|
63392
|
-
init_schemas();
|
|
63393
|
-
init_security();
|
|
63394
|
-
init_url();
|
|
63395
|
-
init_queryexperimentationitemsop();
|
|
63396
|
-
init_vercelbadrequesterror();
|
|
63397
|
-
init_vercelforbiddenerror();
|
|
63398
|
-
init_async();
|
|
63399
|
-
});
|
|
63400
|
-
|
|
63401
|
-
// src/mcp-server/tools/marketplaceQueryExperimentationItems.ts
|
|
63402
|
-
var args103, tool$marketplaceQueryExperimentationItems;
|
|
63403
|
-
var init_marketplaceQueryExperimentationItems2 = __esm(() => {
|
|
63404
|
-
init_marketplaceQueryExperimentationItems();
|
|
63405
|
-
init_queryexperimentationitemsop();
|
|
63406
|
-
init_tools();
|
|
63407
|
-
args103 = {
|
|
63408
|
-
request: QueryExperimentationItemsRequest$inboundSchema
|
|
63409
|
-
};
|
|
63410
|
-
tool$marketplaceQueryExperimentationItems = {
|
|
63411
|
-
name: "marketplace-query-experimentation-items",
|
|
63412
|
-
description: `Query experimentation items
|
|
63413
|
-
|
|
63414
|
-
Queries flags, experiments under a Marketplace resource.`,
|
|
63415
|
-
args: args103,
|
|
63416
|
-
tool: async (client, args104, ctx) => {
|
|
63417
|
-
const [result, apiCall] = await marketplaceQueryExperimentationItems(client, args104.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
63418
|
-
if (!result.ok) {
|
|
63419
|
-
return {
|
|
63420
|
-
content: [{ type: "text", text: result.error.message }],
|
|
63421
|
-
isError: true
|
|
63422
|
-
};
|
|
63423
|
-
}
|
|
63424
|
-
const value = result.value;
|
|
63425
|
-
return formatResult(value, apiCall);
|
|
63426
|
-
}
|
|
63427
|
-
};
|
|
63428
|
-
});
|
|
63429
|
-
|
|
63430
63487
|
// src/models/submitbillingdataop.ts
|
|
63431
63488
|
var SubmitBillingDataType, Period$inboundSchema, Period$outboundSchema, Period$, Items$inboundSchema, Items$outboundSchema, Items$, Discounts$inboundSchema, Discounts$outboundSchema, Discounts$, Billing2$inboundSchema, Billing2$outboundSchema, Billing2$, Billing1$inboundSchema, Billing1$outboundSchema, Billing1$, SubmitBillingDataBilling$inboundSchema, SubmitBillingDataBilling$outboundSchema, SubmitBillingDataBilling$, SubmitBillingDataType$inboundSchema, SubmitBillingDataType$outboundSchema, SubmitBillingDataType$, Usage$inboundSchema, Usage$outboundSchema, Usage$, SubmitBillingDataRequestBody$inboundSchema, SubmitBillingDataRequestBody$outboundSchema, SubmitBillingDataRequestBody$, SubmitBillingDataRequest$inboundSchema, SubmitBillingDataRequest$outboundSchema, SubmitBillingDataRequest$;
|
|
63432
63489
|
var init_submitbillingdataop = __esm(() => {
|
|
@@ -63627,9 +63684,9 @@ var init_submitbillingdataop = __esm(() => {
|
|
|
63627
63684
|
|
|
63628
63685
|
// src/funcs/marketplaceSubmitBillingData.ts
|
|
63629
63686
|
function marketplaceSubmitBillingData(client, request, options) {
|
|
63630
|
-
return new APIPromise($
|
|
63687
|
+
return new APIPromise($do104(client, request, options));
|
|
63631
63688
|
}
|
|
63632
|
-
async function $
|
|
63689
|
+
async function $do104(client, request, options) {
|
|
63633
63690
|
const parsed = safeParse(request, (value) => SubmitBillingDataRequest$outboundSchema.parse(value), "Input validation failed");
|
|
63634
63691
|
if (!parsed.ok) {
|
|
63635
63692
|
return [parsed, { status: "invalid" }];
|
|
@@ -63703,12 +63760,12 @@ var init_marketplaceSubmitBillingData = __esm(() => {
|
|
|
63703
63760
|
});
|
|
63704
63761
|
|
|
63705
63762
|
// src/mcp-server/tools/marketplaceSubmitBillingData.ts
|
|
63706
|
-
var
|
|
63763
|
+
var args103, tool$marketplaceSubmitBillingData;
|
|
63707
63764
|
var init_marketplaceSubmitBillingData2 = __esm(() => {
|
|
63708
63765
|
init_marketplaceSubmitBillingData();
|
|
63709
63766
|
init_submitbillingdataop();
|
|
63710
63767
|
init_tools();
|
|
63711
|
-
|
|
63768
|
+
args103 = {
|
|
63712
63769
|
request: SubmitBillingDataRequest$inboundSchema
|
|
63713
63770
|
};
|
|
63714
63771
|
tool$marketplaceSubmitBillingData = {
|
|
@@ -63716,9 +63773,9 @@ var init_marketplaceSubmitBillingData2 = __esm(() => {
|
|
|
63716
63773
|
description: `Submit Billing Data
|
|
63717
63774
|
|
|
63718
63775
|
Sends the billing and usage data. The partner should do this at least once a day and ideally once per hour. <br/> Use the \`credentials.access_token\` we provided in the [Upsert Installation](#upsert-installation) body to authorize this request.`,
|
|
63719
|
-
args:
|
|
63720
|
-
tool: async (client,
|
|
63721
|
-
const [result, apiCall] = await marketplaceSubmitBillingData(client,
|
|
63776
|
+
args: args103,
|
|
63777
|
+
tool: async (client, args104, ctx) => {
|
|
63778
|
+
const [result, apiCall] = await marketplaceSubmitBillingData(client, args104.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
63722
63779
|
if (!result.ok) {
|
|
63723
63780
|
return {
|
|
63724
63781
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -63879,9 +63936,9 @@ var init_submitinvoiceop = __esm(() => {
|
|
|
63879
63936
|
|
|
63880
63937
|
// src/funcs/marketplaceSubmitInvoice.ts
|
|
63881
63938
|
function marketplaceSubmitInvoice(client, request, options) {
|
|
63882
|
-
return new APIPromise($
|
|
63939
|
+
return new APIPromise($do105(client, request, options));
|
|
63883
63940
|
}
|
|
63884
|
-
async function $
|
|
63941
|
+
async function $do105(client, request, options) {
|
|
63885
63942
|
const parsed = safeParse(request, (value) => SubmitInvoiceRequest$outboundSchema.parse(value), "Input validation failed");
|
|
63886
63943
|
if (!parsed.ok) {
|
|
63887
63944
|
return [parsed, { status: "invalid" }];
|
|
@@ -63954,12 +64011,12 @@ var init_marketplaceSubmitInvoice = __esm(() => {
|
|
|
63954
64011
|
});
|
|
63955
64012
|
|
|
63956
64013
|
// src/mcp-server/tools/marketplaceSubmitInvoice.ts
|
|
63957
|
-
var
|
|
64014
|
+
var args104, tool$marketplaceSubmitInvoice;
|
|
63958
64015
|
var init_marketplaceSubmitInvoice2 = __esm(() => {
|
|
63959
64016
|
init_marketplaceSubmitInvoice();
|
|
63960
64017
|
init_submitinvoiceop();
|
|
63961
64018
|
init_tools();
|
|
63962
|
-
|
|
64019
|
+
args104 = {
|
|
63963
64020
|
request: SubmitInvoiceRequest$inboundSchema
|
|
63964
64021
|
};
|
|
63965
64022
|
tool$marketplaceSubmitInvoice = {
|
|
@@ -63967,9 +64024,9 @@ var init_marketplaceSubmitInvoice2 = __esm(() => {
|
|
|
63967
64024
|
description: `Submit Invoice
|
|
63968
64025
|
|
|
63969
64026
|
This endpoint allows the partner to submit an invoice to Vercel. The invoice is created in Vercel's billing system and sent to the customer. Depending on the type of billing plan, the invoice can be sent at a time of signup, at the start of the billing period, or at the end of the billing period.<br/> <br/> Use the \`credentials.access_token\` we provided in the [Upsert Installation](#upsert-installation) body to authorize this request. <br/> There are several limitations to the invoice submission:<br/> <br/> 1. A resource can only be billed once per the billing period and the billing plan.<br/> 2. The billing plan used to bill the resource must have been active for this resource during the billing period.<br/> 3. The billing plan used must be a subscription plan.<br/> 4. The interim usage data must be sent hourly for all types of subscriptions. See [Send subscription billing and usage data](#send-subscription-billing-and-usage-data) API on how to send interim billing and usage data.<br/>`,
|
|
63970
|
-
args:
|
|
63971
|
-
tool: async (client,
|
|
63972
|
-
const [result, apiCall] = await marketplaceSubmitInvoice(client,
|
|
64027
|
+
args: args104,
|
|
64028
|
+
tool: async (client, args105, ctx) => {
|
|
64029
|
+
const [result, apiCall] = await marketplaceSubmitInvoice(client, args105.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
63973
64030
|
if (!result.ok) {
|
|
63974
64031
|
return {
|
|
63975
64032
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -64039,9 +64096,9 @@ var init_submitprepaymentbalancesop = __esm(() => {
|
|
|
64039
64096
|
|
|
64040
64097
|
// src/funcs/marketplaceSubmitPrepaymentBalances.ts
|
|
64041
64098
|
function marketplaceSubmitPrepaymentBalances(client, request, options) {
|
|
64042
|
-
return new APIPromise($
|
|
64099
|
+
return new APIPromise($do106(client, request, options));
|
|
64043
64100
|
}
|
|
64044
|
-
async function $
|
|
64101
|
+
async function $do106(client, request, options) {
|
|
64045
64102
|
const parsed = safeParse(request, (value) => SubmitPrepaymentBalancesRequest$outboundSchema.parse(value), "Input validation failed");
|
|
64046
64103
|
if (!parsed.ok) {
|
|
64047
64104
|
return [parsed, { status: "invalid" }];
|
|
@@ -64115,12 +64172,12 @@ var init_marketplaceSubmitPrepaymentBalances = __esm(() => {
|
|
|
64115
64172
|
});
|
|
64116
64173
|
|
|
64117
64174
|
// src/mcp-server/tools/marketplaceSubmitPrepaymentBalances.ts
|
|
64118
|
-
var
|
|
64175
|
+
var args105, tool$marketplaceSubmitPrepaymentBalances;
|
|
64119
64176
|
var init_marketplaceSubmitPrepaymentBalances2 = __esm(() => {
|
|
64120
64177
|
init_marketplaceSubmitPrepaymentBalances();
|
|
64121
64178
|
init_submitprepaymentbalancesop();
|
|
64122
64179
|
init_tools();
|
|
64123
|
-
|
|
64180
|
+
args105 = {
|
|
64124
64181
|
request: SubmitPrepaymentBalancesRequest$inboundSchema
|
|
64125
64182
|
};
|
|
64126
64183
|
tool$marketplaceSubmitPrepaymentBalances = {
|
|
@@ -64128,9 +64185,9 @@ var init_marketplaceSubmitPrepaymentBalances2 = __esm(() => {
|
|
|
64128
64185
|
description: `Submit Prepayment Balances
|
|
64129
64186
|
|
|
64130
64187
|
Sends the prepayment balances. The partner should do this at least once a day and ideally once per hour. <br/> Use the \`credentials.access_token\` we provided in the [Upsert Installation](#upsert-installation) body to authorize this request.`,
|
|
64131
|
-
args:
|
|
64132
|
-
tool: async (client,
|
|
64133
|
-
const [result, apiCall] = await marketplaceSubmitPrepaymentBalances(client,
|
|
64188
|
+
args: args105,
|
|
64189
|
+
tool: async (client, args106, ctx) => {
|
|
64190
|
+
const [result, apiCall] = await marketplaceSubmitPrepaymentBalances(client, args106.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
64134
64191
|
if (!result.ok) {
|
|
64135
64192
|
return {
|
|
64136
64193
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -64209,9 +64266,9 @@ var init_patchv1installationsintegrationconfigurationidresourcesresourceidexperi
|
|
|
64209
64266
|
|
|
64210
64267
|
// src/funcs/marketplaceUpdateInstallationIntegrationConfiguration.ts
|
|
64211
64268
|
function marketplaceUpdateInstallationIntegrationConfiguration(client, request, options) {
|
|
64212
|
-
return new APIPromise($
|
|
64269
|
+
return new APIPromise($do107(client, request, options));
|
|
64213
64270
|
}
|
|
64214
|
-
async function $
|
|
64271
|
+
async function $do107(client, request, options) {
|
|
64215
64272
|
const parsed = safeParse(request, (value) => PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequest$outboundSchema.parse(value), "Input validation failed");
|
|
64216
64273
|
if (!parsed.ok) {
|
|
64217
64274
|
return [parsed, { status: "invalid" }];
|
|
@@ -64294,12 +64351,12 @@ var init_marketplaceUpdateInstallationIntegrationConfiguration = __esm(() => {
|
|
|
64294
64351
|
});
|
|
64295
64352
|
|
|
64296
64353
|
// src/mcp-server/tools/marketplaceUpdateInstallationIntegrationConfiguration.ts
|
|
64297
|
-
var
|
|
64354
|
+
var args106, tool$marketplaceUpdateInstallationIntegrationConfiguration;
|
|
64298
64355
|
var init_marketplaceUpdateInstallationIntegrationConfiguration2 = __esm(() => {
|
|
64299
64356
|
init_marketplaceUpdateInstallationIntegrationConfiguration();
|
|
64300
64357
|
init_patchv1installationsintegrationconfigurationidresourcesresourceidexperimentationitemsitemidop();
|
|
64301
64358
|
init_tools();
|
|
64302
|
-
|
|
64359
|
+
args106 = {
|
|
64303
64360
|
request: PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequest$inboundSchema
|
|
64304
64361
|
};
|
|
64305
64362
|
tool$marketplaceUpdateInstallationIntegrationConfiguration = {
|
|
@@ -64307,9 +64364,9 @@ var init_marketplaceUpdateInstallationIntegrationConfiguration2 = __esm(() => {
|
|
|
64307
64364
|
description: `Patch an existing experimentation item
|
|
64308
64365
|
|
|
64309
64366
|
Patch an existing experimentation item`,
|
|
64310
|
-
args:
|
|
64311
|
-
tool: async (client,
|
|
64312
|
-
const [result, apiCall] = await marketplaceUpdateInstallationIntegrationConfiguration(client,
|
|
64367
|
+
args: args106,
|
|
64368
|
+
tool: async (client, args107, ctx) => {
|
|
64369
|
+
const [result, apiCall] = await marketplaceUpdateInstallationIntegrationConfiguration(client, args107.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
64313
64370
|
if (!result.ok) {
|
|
64314
64371
|
return {
|
|
64315
64372
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -64377,9 +64434,9 @@ var init_putv1installationsintegrationconfigurationidresourcesresourceidexperime
|
|
|
64377
64434
|
|
|
64378
64435
|
// src/funcs/marketplaceUpdateInstallationIntegrationEdgeConfig.ts
|
|
64379
64436
|
function marketplaceUpdateInstallationIntegrationEdgeConfig(client, request, options) {
|
|
64380
|
-
return new APIPromise($
|
|
64437
|
+
return new APIPromise($do108(client, request, options));
|
|
64381
64438
|
}
|
|
64382
|
-
async function $
|
|
64439
|
+
async function $do108(client, request, options) {
|
|
64383
64440
|
const parsed = safeParse(request, (value) => PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequest$outboundSchema.parse(value), "Input validation failed");
|
|
64384
64441
|
if (!parsed.ok) {
|
|
64385
64442
|
return [parsed, { status: "invalid" }];
|
|
@@ -64457,12 +64514,12 @@ var init_marketplaceUpdateInstallationIntegrationEdgeConfig = __esm(() => {
|
|
|
64457
64514
|
});
|
|
64458
64515
|
|
|
64459
64516
|
// src/mcp-server/tools/marketplaceUpdateInstallationIntegrationEdgeConfig.ts
|
|
64460
|
-
var
|
|
64517
|
+
var args107, tool$marketplaceUpdateInstallationIntegrationEdgeConfig;
|
|
64461
64518
|
var init_marketplaceUpdateInstallationIntegrationEdgeConfig2 = __esm(() => {
|
|
64462
64519
|
init_marketplaceUpdateInstallationIntegrationEdgeConfig();
|
|
64463
64520
|
init_putv1installationsintegrationconfigurationidresourcesresourceidexperimentationedgeconfigop();
|
|
64464
64521
|
init_tools();
|
|
64465
|
-
|
|
64522
|
+
args107 = {
|
|
64466
64523
|
request: PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequest$inboundSchema
|
|
64467
64524
|
};
|
|
64468
64525
|
tool$marketplaceUpdateInstallationIntegrationEdgeConfig = {
|
|
@@ -64470,9 +64527,9 @@ var init_marketplaceUpdateInstallationIntegrationEdgeConfig2 = __esm(() => {
|
|
|
64470
64527
|
description: `Push data into a user-provided Edge Config
|
|
64471
64528
|
|
|
64472
64529
|
When the user enabled Edge Config syncing, then this endpoint can be used by the partner to push their configuration data into the relevant Edge Config.`,
|
|
64473
|
-
args:
|
|
64474
|
-
tool: async (client,
|
|
64475
|
-
const [result, apiCall] = await marketplaceUpdateInstallationIntegrationEdgeConfig(client,
|
|
64530
|
+
args: args107,
|
|
64531
|
+
tool: async (client, args108, ctx) => {
|
|
64532
|
+
const [result, apiCall] = await marketplaceUpdateInstallationIntegrationEdgeConfig(client, args108.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
64476
64533
|
if (!result.ok) {
|
|
64477
64534
|
return {
|
|
64478
64535
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -64539,9 +64596,9 @@ var init_updateinvoiceop = __esm(() => {
|
|
|
64539
64596
|
|
|
64540
64597
|
// src/funcs/marketplaceUpdateInvoice.ts
|
|
64541
64598
|
function marketplaceUpdateInvoice(client, request, options) {
|
|
64542
|
-
return new APIPromise($
|
|
64599
|
+
return new APIPromise($do109(client, request, options));
|
|
64543
64600
|
}
|
|
64544
|
-
async function $
|
|
64601
|
+
async function $do109(client, request, options) {
|
|
64545
64602
|
const parsed = safeParse(request, (value) => UpdateInvoiceRequest$outboundSchema.parse(value), "Input validation failed");
|
|
64546
64603
|
if (!parsed.ok) {
|
|
64547
64604
|
return [parsed, { status: "invalid" }];
|
|
@@ -64620,12 +64677,12 @@ var init_marketplaceUpdateInvoice = __esm(() => {
|
|
|
64620
64677
|
});
|
|
64621
64678
|
|
|
64622
64679
|
// src/mcp-server/tools/marketplaceUpdateInvoice.ts
|
|
64623
|
-
var
|
|
64680
|
+
var args108, tool$marketplaceUpdateInvoice;
|
|
64624
64681
|
var init_marketplaceUpdateInvoice2 = __esm(() => {
|
|
64625
64682
|
init_marketplaceUpdateInvoice();
|
|
64626
64683
|
init_updateinvoiceop();
|
|
64627
64684
|
init_tools();
|
|
64628
|
-
|
|
64685
|
+
args108 = {
|
|
64629
64686
|
request: UpdateInvoiceRequest$inboundSchema
|
|
64630
64687
|
};
|
|
64631
64688
|
tool$marketplaceUpdateInvoice = {
|
|
@@ -64633,9 +64690,9 @@ var init_marketplaceUpdateInvoice2 = __esm(() => {
|
|
|
64633
64690
|
description: `Invoice Actions
|
|
64634
64691
|
|
|
64635
64692
|
This endpoint allows the partner to request a refund for an invoice to Vercel. The invoice is created using the [Submit Invoice API](#submit-invoice-api).`,
|
|
64636
|
-
args:
|
|
64637
|
-
tool: async (client,
|
|
64638
|
-
const [result, apiCall] = await marketplaceUpdateInvoice(client,
|
|
64693
|
+
args: args108,
|
|
64694
|
+
tool: async (client, args109, ctx) => {
|
|
64695
|
+
const [result, apiCall] = await marketplaceUpdateInvoice(client, args109.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
64639
64696
|
if (!result.ok) {
|
|
64640
64697
|
return {
|
|
64641
64698
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -64706,9 +64763,9 @@ var init_updateresourcesecretsop = __esm(() => {
|
|
|
64706
64763
|
|
|
64707
64764
|
// src/funcs/marketplaceUpdateResourceSecrets.ts
|
|
64708
64765
|
function marketplaceUpdateResourceSecrets(client, request, options) {
|
|
64709
|
-
return new APIPromise($
|
|
64766
|
+
return new APIPromise($do110(client, request, options));
|
|
64710
64767
|
}
|
|
64711
|
-
async function $
|
|
64768
|
+
async function $do110(client, request, options) {
|
|
64712
64769
|
const parsed = safeParse(request, (value) => UpdateResourceSecretsRequest$outboundSchema.parse(value), "Input validation failed");
|
|
64713
64770
|
if (!parsed.ok) {
|
|
64714
64771
|
return [parsed, { status: "invalid" }];
|
|
@@ -64788,12 +64845,12 @@ var init_marketplaceUpdateResourceSecrets = __esm(() => {
|
|
|
64788
64845
|
});
|
|
64789
64846
|
|
|
64790
64847
|
// src/mcp-server/tools/marketplaceUpdateResourceSecrets.ts
|
|
64791
|
-
var
|
|
64848
|
+
var args109, tool$marketplaceUpdateResourceSecrets;
|
|
64792
64849
|
var init_marketplaceUpdateResourceSecrets2 = __esm(() => {
|
|
64793
64850
|
init_marketplaceUpdateResourceSecrets();
|
|
64794
64851
|
init_updateresourcesecretsop();
|
|
64795
64852
|
init_tools();
|
|
64796
|
-
|
|
64853
|
+
args109 = {
|
|
64797
64854
|
request: UpdateResourceSecretsRequest$inboundSchema
|
|
64798
64855
|
};
|
|
64799
64856
|
tool$marketplaceUpdateResourceSecrets = {
|
|
@@ -64801,9 +64858,9 @@ var init_marketplaceUpdateResourceSecrets2 = __esm(() => {
|
|
|
64801
64858
|
description: `Update Resource Secrets (Deprecated)
|
|
64802
64859
|
|
|
64803
64860
|
This endpoint is deprecated and replaced with the endpoint [Update Resource Secrets](#update-resource-secrets). <br/> This endpoint updates the secrets of a resource. If a resource has projects connected, the connected secrets are updated with the new secrets. The old secrets may still be used by existing connected projects because they are not automatically redeployed. Redeployment is a manual action and must be completed by the user. All new project connections will use the new secrets.<br/> <br/> Use cases for this endpoint:<br/> <br/> - Resetting the credentials of a database in the partner. If the user requests the credentials to be updated in the partner’s application, the partner post the new set of secrets to Vercel, the user should redeploy their application and the expire the old credentials.<br/>`,
|
|
64804
|
-
args:
|
|
64805
|
-
tool: async (client,
|
|
64806
|
-
const [result, apiCall] = await marketplaceUpdateResourceSecrets(client,
|
|
64861
|
+
args: args109,
|
|
64862
|
+
tool: async (client, args110, ctx) => {
|
|
64863
|
+
const [result, apiCall] = await marketplaceUpdateResourceSecrets(client, args110.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
64807
64864
|
if (!result.ok) {
|
|
64808
64865
|
return {
|
|
64809
64866
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -64872,9 +64929,9 @@ var init_updateresourcesecretsbyidop = __esm(() => {
|
|
|
64872
64929
|
|
|
64873
64930
|
// src/funcs/marketplaceUpdateResourceSecretsById.ts
|
|
64874
64931
|
function marketplaceUpdateResourceSecretsById(client, request, options) {
|
|
64875
|
-
return new APIPromise($
|
|
64932
|
+
return new APIPromise($do111(client, request, options));
|
|
64876
64933
|
}
|
|
64877
|
-
async function $
|
|
64934
|
+
async function $do111(client, request, options) {
|
|
64878
64935
|
const parsed = safeParse(request, (value) => UpdateResourceSecretsByIdRequest$outboundSchema.parse(value), "Input validation failed");
|
|
64879
64936
|
if (!parsed.ok) {
|
|
64880
64937
|
return [parsed, { status: "invalid" }];
|
|
@@ -64953,12 +65010,12 @@ var init_marketplaceUpdateResourceSecretsById = __esm(() => {
|
|
|
64953
65010
|
});
|
|
64954
65011
|
|
|
64955
65012
|
// src/mcp-server/tools/marketplaceUpdateResourceSecretsById.ts
|
|
64956
|
-
var
|
|
65013
|
+
var args110, tool$marketplaceUpdateResourceSecretsById;
|
|
64957
65014
|
var init_marketplaceUpdateResourceSecretsById2 = __esm(() => {
|
|
64958
65015
|
init_marketplaceUpdateResourceSecretsById();
|
|
64959
65016
|
init_updateresourcesecretsbyidop();
|
|
64960
65017
|
init_tools();
|
|
64961
|
-
|
|
65018
|
+
args110 = {
|
|
64962
65019
|
request: UpdateResourceSecretsByIdRequest$inboundSchema
|
|
64963
65020
|
};
|
|
64964
65021
|
tool$marketplaceUpdateResourceSecretsById = {
|
|
@@ -64966,9 +65023,9 @@ var init_marketplaceUpdateResourceSecretsById2 = __esm(() => {
|
|
|
64966
65023
|
description: `Update Resource Secrets
|
|
64967
65024
|
|
|
64968
65025
|
This endpoint updates the secrets of a resource. If a resource has projects connected, the connected secrets are updated with the new secrets. The old secrets may still be used by existing connected projects because they are not automatically redeployed. Redeployment is a manual action and must be completed by the user. All new project connections will use the new secrets.<br/> <br/> Use cases for this endpoint:<br/> <br/> - Resetting the credentials of a database in the partner. If the user requests the credentials to be updated in the partner’s application, the partner post the new set of secrets to Vercel, the user should redeploy their application and the expire the old credentials.<br/>`,
|
|
64969
|
-
args:
|
|
64970
|
-
tool: async (client,
|
|
64971
|
-
const [result, apiCall] = await marketplaceUpdateResourceSecretsById(client,
|
|
65026
|
+
args: args110,
|
|
65027
|
+
tool: async (client, args111, ctx) => {
|
|
65028
|
+
const [result, apiCall] = await marketplaceUpdateResourceSecretsById(client, args111.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
64972
65029
|
if (!result.ok) {
|
|
64973
65030
|
return {
|
|
64974
65031
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -65126,9 +65183,9 @@ var init_addprojectmemberop = __esm(() => {
|
|
|
65126
65183
|
|
|
65127
65184
|
// src/funcs/projectMembersAddProjectMember.ts
|
|
65128
65185
|
function projectMembersAddProjectMember(client, request, options) {
|
|
65129
|
-
return new APIPromise($
|
|
65186
|
+
return new APIPromise($do112(client, request, options));
|
|
65130
65187
|
}
|
|
65131
|
-
async function $
|
|
65188
|
+
async function $do112(client, request, options) {
|
|
65132
65189
|
const parsed = safeParse(request, (value) => AddProjectMemberRequest$outboundSchema.parse(value), "Input validation failed");
|
|
65133
65190
|
if (!parsed.ok) {
|
|
65134
65191
|
return [parsed, { status: "invalid" }];
|
|
@@ -65209,12 +65266,12 @@ var init_projectMembersAddProjectMember = __esm(() => {
|
|
|
65209
65266
|
});
|
|
65210
65267
|
|
|
65211
65268
|
// src/mcp-server/tools/projectMembersAddProjectMember.ts
|
|
65212
|
-
var
|
|
65269
|
+
var args111, tool$projectMembersAddProjectMember;
|
|
65213
65270
|
var init_projectMembersAddProjectMember2 = __esm(() => {
|
|
65214
65271
|
init_projectMembersAddProjectMember();
|
|
65215
65272
|
init_addprojectmemberop();
|
|
65216
65273
|
init_tools();
|
|
65217
|
-
|
|
65274
|
+
args111 = {
|
|
65218
65275
|
request: AddProjectMemberRequest$inboundSchema
|
|
65219
65276
|
};
|
|
65220
65277
|
tool$projectMembersAddProjectMember = {
|
|
@@ -65222,9 +65279,9 @@ var init_projectMembersAddProjectMember2 = __esm(() => {
|
|
|
65222
65279
|
description: `Adds a new member to a project.
|
|
65223
65280
|
|
|
65224
65281
|
Adds a new member to the project.`,
|
|
65225
|
-
args:
|
|
65226
|
-
tool: async (client,
|
|
65227
|
-
const [result, apiCall] = await projectMembersAddProjectMember(client,
|
|
65282
|
+
args: args111,
|
|
65283
|
+
tool: async (client, args112, ctx) => {
|
|
65284
|
+
const [result, apiCall] = await projectMembersAddProjectMember(client, args112.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
65228
65285
|
if (!result.ok) {
|
|
65229
65286
|
return {
|
|
65230
65287
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -65376,9 +65433,9 @@ var init_getprojectmembersop = __esm(() => {
|
|
|
65376
65433
|
|
|
65377
65434
|
// src/funcs/projectMembersGetProjectMembers.ts
|
|
65378
65435
|
function projectMembersGetProjectMembers(client, request, options) {
|
|
65379
|
-
return new APIPromise($
|
|
65436
|
+
return new APIPromise($do113(client, request, options));
|
|
65380
65437
|
}
|
|
65381
|
-
async function $
|
|
65438
|
+
async function $do113(client, request, options) {
|
|
65382
65439
|
const parsed = safeParse(request, (value) => GetProjectMembersRequest$outboundSchema.parse(value), "Input validation failed");
|
|
65383
65440
|
if (!parsed.ok) {
|
|
65384
65441
|
return [parsed, { status: "invalid" }];
|
|
@@ -65462,12 +65519,12 @@ var init_projectMembersGetProjectMembers = __esm(() => {
|
|
|
65462
65519
|
});
|
|
65463
65520
|
|
|
65464
65521
|
// src/mcp-server/tools/projectMembersGetProjectMembers.ts
|
|
65465
|
-
var
|
|
65522
|
+
var args112, tool$projectMembersGetProjectMembers;
|
|
65466
65523
|
var init_projectMembersGetProjectMembers2 = __esm(() => {
|
|
65467
65524
|
init_projectMembersGetProjectMembers();
|
|
65468
65525
|
init_getprojectmembersop();
|
|
65469
65526
|
init_tools();
|
|
65470
|
-
|
|
65527
|
+
args112 = {
|
|
65471
65528
|
request: GetProjectMembersRequest$inboundSchema
|
|
65472
65529
|
};
|
|
65473
65530
|
tool$projectMembersGetProjectMembers = {
|
|
@@ -65475,9 +65532,9 @@ var init_projectMembersGetProjectMembers2 = __esm(() => {
|
|
|
65475
65532
|
description: `List project members
|
|
65476
65533
|
|
|
65477
65534
|
Lists all members of a project.`,
|
|
65478
|
-
args:
|
|
65479
|
-
tool: async (client,
|
|
65480
|
-
const [result, apiCall] = await projectMembersGetProjectMembers(client,
|
|
65535
|
+
args: args112,
|
|
65536
|
+
tool: async (client, args113, ctx) => {
|
|
65537
|
+
const [result, apiCall] = await projectMembersGetProjectMembers(client, args113.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
65481
65538
|
if (!result.ok) {
|
|
65482
65539
|
return {
|
|
65483
65540
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -65524,9 +65581,9 @@ var init_removeprojectmemberop = __esm(() => {
|
|
|
65524
65581
|
|
|
65525
65582
|
// src/funcs/projectMembersRemoveProjectMember.ts
|
|
65526
65583
|
function projectMembersRemoveProjectMember(client, request, options) {
|
|
65527
|
-
return new APIPromise($
|
|
65584
|
+
return new APIPromise($do114(client, request, options));
|
|
65528
65585
|
}
|
|
65529
|
-
async function $
|
|
65586
|
+
async function $do114(client, request, options) {
|
|
65530
65587
|
const parsed = safeParse(request, (value) => RemoveProjectMemberRequest$outboundSchema.parse(value), "Input validation failed");
|
|
65531
65588
|
if (!parsed.ok) {
|
|
65532
65589
|
return [parsed, { status: "invalid" }];
|
|
@@ -65610,12 +65667,12 @@ var init_projectMembersRemoveProjectMember = __esm(() => {
|
|
|
65610
65667
|
});
|
|
65611
65668
|
|
|
65612
65669
|
// src/mcp-server/tools/projectMembersRemoveProjectMember.ts
|
|
65613
|
-
var
|
|
65670
|
+
var args113, tool$projectMembersRemoveProjectMember;
|
|
65614
65671
|
var init_projectMembersRemoveProjectMember2 = __esm(() => {
|
|
65615
65672
|
init_projectMembersRemoveProjectMember();
|
|
65616
65673
|
init_removeprojectmemberop();
|
|
65617
65674
|
init_tools();
|
|
65618
|
-
|
|
65675
|
+
args113 = {
|
|
65619
65676
|
request: RemoveProjectMemberRequest$inboundSchema
|
|
65620
65677
|
};
|
|
65621
65678
|
tool$projectMembersRemoveProjectMember = {
|
|
@@ -65623,9 +65680,9 @@ var init_projectMembersRemoveProjectMember2 = __esm(() => {
|
|
|
65623
65680
|
description: `Remove a Project Member
|
|
65624
65681
|
|
|
65625
65682
|
Remove a member from a specific project`,
|
|
65626
|
-
args:
|
|
65627
|
-
tool: async (client,
|
|
65628
|
-
const [result, apiCall] = await projectMembersRemoveProjectMember(client,
|
|
65683
|
+
args: args113,
|
|
65684
|
+
tool: async (client, args114, ctx) => {
|
|
65685
|
+
const [result, apiCall] = await projectMembersRemoveProjectMember(client, args114.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
65629
65686
|
if (!result.ok) {
|
|
65630
65687
|
return {
|
|
65631
65688
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -65703,9 +65760,9 @@ var init_acceptprojecttransferrequestop = __esm(() => {
|
|
|
65703
65760
|
|
|
65704
65761
|
// src/funcs/projectsAcceptProjectTransferRequest.ts
|
|
65705
65762
|
function projectsAcceptProjectTransferRequest(client, request, options) {
|
|
65706
|
-
return new APIPromise($
|
|
65763
|
+
return new APIPromise($do115(client, request, options));
|
|
65707
65764
|
}
|
|
65708
|
-
async function $
|
|
65765
|
+
async function $do115(client, request, options) {
|
|
65709
65766
|
const parsed = safeParse(request, (value) => AcceptProjectTransferRequestRequest$outboundSchema.parse(value), "Input validation failed");
|
|
65710
65767
|
if (!parsed.ok) {
|
|
65711
65768
|
return [parsed, { status: "invalid" }];
|
|
@@ -65787,12 +65844,12 @@ var init_projectsAcceptProjectTransferRequest = __esm(() => {
|
|
|
65787
65844
|
});
|
|
65788
65845
|
|
|
65789
65846
|
// src/mcp-server/tools/projectsAcceptProjectTransferRequest.ts
|
|
65790
|
-
var
|
|
65847
|
+
var args114, tool$projectsAcceptProjectTransferRequest;
|
|
65791
65848
|
var init_projectsAcceptProjectTransferRequest2 = __esm(() => {
|
|
65792
65849
|
init_projectsAcceptProjectTransferRequest();
|
|
65793
65850
|
init_acceptprojecttransferrequestop();
|
|
65794
65851
|
init_tools();
|
|
65795
|
-
|
|
65852
|
+
args114 = {
|
|
65796
65853
|
request: AcceptProjectTransferRequestRequest$inboundSchema
|
|
65797
65854
|
};
|
|
65798
65855
|
tool$projectsAcceptProjectTransferRequest = {
|
|
@@ -65800,9 +65857,9 @@ var init_projectsAcceptProjectTransferRequest2 = __esm(() => {
|
|
|
65800
65857
|
description: `Accept project transfer request
|
|
65801
65858
|
|
|
65802
65859
|
Accept a project transfer request initated by another team. <br/> The \`code\` is generated using the \`POST /projects/:idOrName/transfer-request\` endpoint.`,
|
|
65803
|
-
args:
|
|
65804
|
-
tool: async (client,
|
|
65805
|
-
const [result, apiCall] = await projectsAcceptProjectTransferRequest(client,
|
|
65860
|
+
args: args114,
|
|
65861
|
+
tool: async (client, args115, ctx) => {
|
|
65862
|
+
const [result, apiCall] = await projectsAcceptProjectTransferRequest(client, args115.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
65806
65863
|
if (!result.ok) {
|
|
65807
65864
|
return {
|
|
65808
65865
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -65924,9 +65981,9 @@ var init_addprojectdomainop = __esm(() => {
|
|
|
65924
65981
|
|
|
65925
65982
|
// src/funcs/projectsAddProjectDomain.ts
|
|
65926
65983
|
function projectsAddProjectDomain(client, request, options) {
|
|
65927
|
-
return new APIPromise($
|
|
65984
|
+
return new APIPromise($do116(client, request, options));
|
|
65928
65985
|
}
|
|
65929
|
-
async function $
|
|
65986
|
+
async function $do116(client, request, options) {
|
|
65930
65987
|
const parsed = safeParse(request, (value) => AddProjectDomainRequest$outboundSchema.parse(value), "Input validation failed");
|
|
65931
65988
|
if (!parsed.ok) {
|
|
65932
65989
|
return [parsed, { status: "invalid" }];
|
|
@@ -66007,12 +66064,12 @@ var init_projectsAddProjectDomain = __esm(() => {
|
|
|
66007
66064
|
});
|
|
66008
66065
|
|
|
66009
66066
|
// src/mcp-server/tools/projectsAddProjectDomain.ts
|
|
66010
|
-
var
|
|
66067
|
+
var args115, tool$projectsAddProjectDomain;
|
|
66011
66068
|
var init_projectsAddProjectDomain2 = __esm(() => {
|
|
66012
66069
|
init_projectsAddProjectDomain();
|
|
66013
66070
|
init_addprojectdomainop();
|
|
66014
66071
|
init_tools();
|
|
66015
|
-
|
|
66072
|
+
args115 = {
|
|
66016
66073
|
request: AddProjectDomainRequest$inboundSchema
|
|
66017
66074
|
};
|
|
66018
66075
|
tool$projectsAddProjectDomain = {
|
|
@@ -66020,9 +66077,9 @@ var init_projectsAddProjectDomain2 = __esm(() => {
|
|
|
66020
66077
|
description: `Add a domain to a project
|
|
66021
66078
|
|
|
66022
66079
|
Add a domain to the project by passing its domain name and by specifying the project by either passing the project \`id\` or \`name\` in the URL. If the domain is not yet verified to be used on this project, the request will return \`verified = false\`, and the domain will need to be verified according to the \`verification\` challenge via \`POST /projects/:idOrName/domains/:domain/verify\`. If the domain already exists on the project, the request will fail with a \`400\` status code.`,
|
|
66023
|
-
args:
|
|
66024
|
-
tool: async (client,
|
|
66025
|
-
const [result, apiCall] = await projectsAddProjectDomain(client,
|
|
66080
|
+
args: args115,
|
|
66081
|
+
tool: async (client, args116, ctx) => {
|
|
66082
|
+
const [result, apiCall] = await projectsAddProjectDomain(client, args116.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
66026
66083
|
if (!result.ok) {
|
|
66027
66084
|
return {
|
|
66028
66085
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -66520,12 +66577,12 @@ var init_createprojectop = __esm(() => {
|
|
|
66520
66577
|
IssuerMode$.outboundSchema = IssuerMode$outboundSchema;
|
|
66521
66578
|
})(IssuerMode$ ||= {});
|
|
66522
66579
|
OidcTokenConfig$inboundSchema = objectType({
|
|
66523
|
-
enabled: booleanType(),
|
|
66524
|
-
issuerMode: IssuerMode$inboundSchema.default("
|
|
66580
|
+
enabled: booleanType().default(true),
|
|
66581
|
+
issuerMode: IssuerMode$inboundSchema.default("team")
|
|
66525
66582
|
});
|
|
66526
66583
|
OidcTokenConfig$outboundSchema = objectType({
|
|
66527
|
-
enabled: booleanType(),
|
|
66528
|
-
issuerMode: IssuerMode$outboundSchema.default("
|
|
66584
|
+
enabled: booleanType().default(true),
|
|
66585
|
+
issuerMode: IssuerMode$outboundSchema.default("team")
|
|
66529
66586
|
});
|
|
66530
66587
|
((OidcTokenConfig$) => {
|
|
66531
66588
|
OidcTokenConfig$.inboundSchema = OidcTokenConfig$inboundSchema;
|
|
@@ -69019,9 +69076,9 @@ var init_createprojectop = __esm(() => {
|
|
|
69019
69076
|
|
|
69020
69077
|
// src/funcs/projectsCreateProject.ts
|
|
69021
69078
|
function projectsCreateProject(client, request, options) {
|
|
69022
|
-
return new APIPromise($
|
|
69079
|
+
return new APIPromise($do117(client, request, options));
|
|
69023
69080
|
}
|
|
69024
|
-
async function $
|
|
69081
|
+
async function $do117(client, request, options) {
|
|
69025
69082
|
const parsed = safeParse(request, (value) => CreateProjectRequest$outboundSchema.parse(value), "Input validation failed");
|
|
69026
69083
|
if (!parsed.ok) {
|
|
69027
69084
|
return [parsed, { status: "invalid" }];
|
|
@@ -69096,12 +69153,12 @@ var init_projectsCreateProject = __esm(() => {
|
|
|
69096
69153
|
});
|
|
69097
69154
|
|
|
69098
69155
|
// src/mcp-server/tools/projectsCreateProject.ts
|
|
69099
|
-
var
|
|
69156
|
+
var args116, tool$projectsCreateProject;
|
|
69100
69157
|
var init_projectsCreateProject2 = __esm(() => {
|
|
69101
69158
|
init_projectsCreateProject();
|
|
69102
69159
|
init_createprojectop();
|
|
69103
69160
|
init_tools();
|
|
69104
|
-
|
|
69161
|
+
args116 = {
|
|
69105
69162
|
request: CreateProjectRequest$inboundSchema
|
|
69106
69163
|
};
|
|
69107
69164
|
tool$projectsCreateProject = {
|
|
@@ -69109,9 +69166,9 @@ var init_projectsCreateProject2 = __esm(() => {
|
|
|
69109
69166
|
description: `Create a new project
|
|
69110
69167
|
|
|
69111
69168
|
Allows to create a new project with the provided configuration. It only requires the project \`name\` but more configuration can be provided to override the defaults.`,
|
|
69112
|
-
args:
|
|
69113
|
-
tool: async (client,
|
|
69114
|
-
const [result, apiCall] = await projectsCreateProject(client,
|
|
69169
|
+
args: args116,
|
|
69170
|
+
tool: async (client, args117, ctx) => {
|
|
69171
|
+
const [result, apiCall] = await projectsCreateProject(client, args117.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
69115
69172
|
if (!result.ok) {
|
|
69116
69173
|
return {
|
|
69117
69174
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -70555,9 +70612,9 @@ var init_createprojectenvop = __esm(() => {
|
|
|
70555
70612
|
|
|
70556
70613
|
// src/funcs/projectsCreateProjectEnv.ts
|
|
70557
70614
|
function projectsCreateProjectEnv(client, request, options) {
|
|
70558
|
-
return new APIPromise($
|
|
70615
|
+
return new APIPromise($do118(client, request, options));
|
|
70559
70616
|
}
|
|
70560
|
-
async function $
|
|
70617
|
+
async function $do118(client, request, options) {
|
|
70561
70618
|
const parsed = safeParse(request, (value) => CreateProjectEnvRequest$outboundSchema.parse(value), "Input validation failed");
|
|
70562
70619
|
if (!parsed.ok) {
|
|
70563
70620
|
return [parsed, { status: "invalid" }];
|
|
@@ -70639,12 +70696,12 @@ var init_projectsCreateProjectEnv = __esm(() => {
|
|
|
70639
70696
|
});
|
|
70640
70697
|
|
|
70641
70698
|
// src/mcp-server/tools/projectsCreateProjectEnv.ts
|
|
70642
|
-
var
|
|
70699
|
+
var args117, tool$projectsCreateProjectEnv;
|
|
70643
70700
|
var init_projectsCreateProjectEnv2 = __esm(() => {
|
|
70644
70701
|
init_projectsCreateProjectEnv();
|
|
70645
70702
|
init_createprojectenvop();
|
|
70646
70703
|
init_tools();
|
|
70647
|
-
|
|
70704
|
+
args117 = {
|
|
70648
70705
|
request: CreateProjectEnvRequest$inboundSchema
|
|
70649
70706
|
};
|
|
70650
70707
|
tool$projectsCreateProjectEnv = {
|
|
@@ -70652,9 +70709,9 @@ var init_projectsCreateProjectEnv2 = __esm(() => {
|
|
|
70652
70709
|
description: `Create one or more environment variables
|
|
70653
70710
|
|
|
70654
70711
|
Create one or more environment variables for a project by passing its \`key\`, \`value\`, \`type\` and \`target\` and by specifying the project by either passing the project \`id\` or \`name\` in the URL. If you include \`upsert=true\` as a query parameter, a new environment variable will not be created if it already exists but, the existing variable's value will be updated.`,
|
|
70655
|
-
args:
|
|
70656
|
-
tool: async (client,
|
|
70657
|
-
const [result, apiCall] = await projectsCreateProjectEnv(client,
|
|
70712
|
+
args: args117,
|
|
70713
|
+
tool: async (client, args118, ctx) => {
|
|
70714
|
+
const [result, apiCall] = await projectsCreateProjectEnv(client, args118.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
70658
70715
|
if (!result.ok) {
|
|
70659
70716
|
return {
|
|
70660
70717
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -70722,9 +70779,9 @@ var init_createprojecttransferrequestop = __esm(() => {
|
|
|
70722
70779
|
|
|
70723
70780
|
// src/funcs/projectsCreateProjectTransferRequest.ts
|
|
70724
70781
|
function projectsCreateProjectTransferRequest(client, request, options) {
|
|
70725
|
-
return new APIPromise($
|
|
70782
|
+
return new APIPromise($do119(client, request, options));
|
|
70726
70783
|
}
|
|
70727
|
-
async function $
|
|
70784
|
+
async function $do119(client, request, options) {
|
|
70728
70785
|
const parsed = safeParse(request, (value) => CreateProjectTransferRequestRequest$outboundSchema.parse(value), "Input validation failed");
|
|
70729
70786
|
if (!parsed.ok) {
|
|
70730
70787
|
return [parsed, { status: "invalid" }];
|
|
@@ -70805,12 +70862,12 @@ var init_projectsCreateProjectTransferRequest = __esm(() => {
|
|
|
70805
70862
|
});
|
|
70806
70863
|
|
|
70807
70864
|
// src/mcp-server/tools/projectsCreateProjectTransferRequest.ts
|
|
70808
|
-
var
|
|
70865
|
+
var args118, tool$projectsCreateProjectTransferRequest;
|
|
70809
70866
|
var init_projectsCreateProjectTransferRequest2 = __esm(() => {
|
|
70810
70867
|
init_projectsCreateProjectTransferRequest();
|
|
70811
70868
|
init_createprojecttransferrequestop();
|
|
70812
70869
|
init_tools();
|
|
70813
|
-
|
|
70870
|
+
args118 = {
|
|
70814
70871
|
request: CreateProjectTransferRequestRequest$inboundSchema
|
|
70815
70872
|
};
|
|
70816
70873
|
tool$projectsCreateProjectTransferRequest = {
|
|
@@ -70818,9 +70875,9 @@ var init_projectsCreateProjectTransferRequest2 = __esm(() => {
|
|
|
70818
70875
|
description: `Create project transfer request
|
|
70819
70876
|
|
|
70820
70877
|
Initiates a project transfer request from one team to another. <br/> Returns a \`code\` that remains valid for 24 hours and can be used to accept the transfer request by another team using the \`PUT /projects/transfer-request/:code\` endpoint. <br/> Users can also accept the project transfer request using the claim URL: \`https://vercel.com/claim-deployment?code=<code>&returnUrl=<returnUrl>\`. <br/> The \`code\` parameter specifies the project transfer request code generated using this endpoint. <br/> The \`returnUrl\` parameter redirects users to a specific page of the application if the claim URL is invalid or expired.`,
|
|
70821
|
-
args:
|
|
70822
|
-
tool: async (client,
|
|
70823
|
-
const [result, apiCall] = await projectsCreateProjectTransferRequest(client,
|
|
70878
|
+
args: args118,
|
|
70879
|
+
tool: async (client, args119, ctx) => {
|
|
70880
|
+
const [result, apiCall] = await projectsCreateProjectTransferRequest(client, args119.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
70824
70881
|
if (!result.ok) {
|
|
70825
70882
|
return {
|
|
70826
70883
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -70855,9 +70912,9 @@ var init_deleteprojectop = __esm(() => {
|
|
|
70855
70912
|
|
|
70856
70913
|
// src/funcs/projectsDeleteProject.ts
|
|
70857
70914
|
function projectsDeleteProject(client, request, options) {
|
|
70858
|
-
return new APIPromise($
|
|
70915
|
+
return new APIPromise($do120(client, request, options));
|
|
70859
70916
|
}
|
|
70860
|
-
async function $
|
|
70917
|
+
async function $do120(client, request, options) {
|
|
70861
70918
|
const parsed = safeParse(request, (value) => DeleteProjectRequest$outboundSchema.parse(value), "Input validation failed");
|
|
70862
70919
|
if (!parsed.ok) {
|
|
70863
70920
|
return [parsed, { status: "invalid" }];
|
|
@@ -70938,12 +70995,12 @@ var init_projectsDeleteProject = __esm(() => {
|
|
|
70938
70995
|
});
|
|
70939
70996
|
|
|
70940
70997
|
// src/mcp-server/tools/projectsDeleteProject.ts
|
|
70941
|
-
var
|
|
70998
|
+
var args119, tool$projectsDeleteProject;
|
|
70942
70999
|
var init_projectsDeleteProject2 = __esm(() => {
|
|
70943
71000
|
init_projectsDeleteProject();
|
|
70944
71001
|
init_deleteprojectop();
|
|
70945
71002
|
init_tools();
|
|
70946
|
-
|
|
71003
|
+
args119 = {
|
|
70947
71004
|
request: DeleteProjectRequest$inboundSchema
|
|
70948
71005
|
};
|
|
70949
71006
|
tool$projectsDeleteProject = {
|
|
@@ -70951,9 +71008,9 @@ var init_projectsDeleteProject2 = __esm(() => {
|
|
|
70951
71008
|
description: `Delete a Project
|
|
70952
71009
|
|
|
70953
71010
|
Delete a specific project by passing either the project \`id\` or \`name\` in the URL.`,
|
|
70954
|
-
args:
|
|
70955
|
-
tool: async (client,
|
|
70956
|
-
const [result, apiCall] = await projectsDeleteProject(client,
|
|
71011
|
+
args: args119,
|
|
71012
|
+
tool: async (client, args120, ctx) => {
|
|
71013
|
+
const [result, apiCall] = await projectsDeleteProject(client, args120.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
70957
71014
|
if (!result.ok) {
|
|
70958
71015
|
return {
|
|
70959
71016
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -71552,9 +71609,9 @@ var init_editprojectenvop = __esm(() => {
|
|
|
71552
71609
|
|
|
71553
71610
|
// src/funcs/projectsEditProjectEnv.ts
|
|
71554
71611
|
function projectsEditProjectEnv(client, request, options) {
|
|
71555
|
-
return new APIPromise($
|
|
71612
|
+
return new APIPromise($do121(client, request, options));
|
|
71556
71613
|
}
|
|
71557
|
-
async function $
|
|
71614
|
+
async function $do121(client, request, options) {
|
|
71558
71615
|
const parsed = safeParse(request, (value) => EditProjectEnvRequest$outboundSchema.parse(value), "Input validation failed");
|
|
71559
71616
|
if (!parsed.ok) {
|
|
71560
71617
|
return [parsed, { status: "invalid" }];
|
|
@@ -71639,12 +71696,12 @@ var init_projectsEditProjectEnv = __esm(() => {
|
|
|
71639
71696
|
});
|
|
71640
71697
|
|
|
71641
71698
|
// src/mcp-server/tools/projectsEditProjectEnv.ts
|
|
71642
|
-
var
|
|
71699
|
+
var args120, tool$projectsEditProjectEnv;
|
|
71643
71700
|
var init_projectsEditProjectEnv2 = __esm(() => {
|
|
71644
71701
|
init_projectsEditProjectEnv();
|
|
71645
71702
|
init_editprojectenvop();
|
|
71646
71703
|
init_tools();
|
|
71647
|
-
|
|
71704
|
+
args120 = {
|
|
71648
71705
|
request: EditProjectEnvRequest$inboundSchema
|
|
71649
71706
|
};
|
|
71650
71707
|
tool$projectsEditProjectEnv = {
|
|
@@ -71652,9 +71709,9 @@ var init_projectsEditProjectEnv2 = __esm(() => {
|
|
|
71652
71709
|
description: `Edit an environment variable
|
|
71653
71710
|
|
|
71654
71711
|
Edit 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.`,
|
|
71655
|
-
args:
|
|
71656
|
-
tool: async (client,
|
|
71657
|
-
const [result, apiCall] = await projectsEditProjectEnv(client,
|
|
71712
|
+
args: args120,
|
|
71713
|
+
tool: async (client, args121, ctx) => {
|
|
71714
|
+
const [result, apiCall] = await projectsEditProjectEnv(client, args121.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
71658
71715
|
if (!result.ok) {
|
|
71659
71716
|
return {
|
|
71660
71717
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -73291,9 +73348,9 @@ var init_filterprojectenvsop = __esm(() => {
|
|
|
73291
73348
|
|
|
73292
73349
|
// src/funcs/projectsFilterProjectEnvs.ts
|
|
73293
73350
|
function projectsFilterProjectEnvs(client, request, options) {
|
|
73294
|
-
return new APIPromise($
|
|
73351
|
+
return new APIPromise($do122(client, request, options));
|
|
73295
73352
|
}
|
|
73296
|
-
async function $
|
|
73353
|
+
async function $do122(client, request, options) {
|
|
73297
73354
|
const parsed = safeParse(request, (value) => FilterProjectEnvsRequest$outboundSchema.parse(value), "Input validation failed");
|
|
73298
73355
|
if (!parsed.ok) {
|
|
73299
73356
|
return [parsed, { status: "invalid" }];
|
|
@@ -73378,12 +73435,12 @@ var init_projectsFilterProjectEnvs = __esm(() => {
|
|
|
73378
73435
|
});
|
|
73379
73436
|
|
|
73380
73437
|
// src/mcp-server/tools/projectsFilterProjectEnvs.ts
|
|
73381
|
-
var
|
|
73438
|
+
var args121, tool$projectsFilterProjectEnvs;
|
|
73382
73439
|
var init_projectsFilterProjectEnvs2 = __esm(() => {
|
|
73383
73440
|
init_projectsFilterProjectEnvs();
|
|
73384
73441
|
init_filterprojectenvsop();
|
|
73385
73442
|
init_tools();
|
|
73386
|
-
|
|
73443
|
+
args121 = {
|
|
73387
73444
|
request: FilterProjectEnvsRequest$inboundSchema
|
|
73388
73445
|
};
|
|
73389
73446
|
tool$projectsFilterProjectEnvs = {
|
|
@@ -73391,9 +73448,9 @@ var init_projectsFilterProjectEnvs2 = __esm(() => {
|
|
|
73391
73448
|
description: `Retrieve the environment variables of a project by id or name
|
|
73392
73449
|
|
|
73393
73450
|
Retrieve the environment variables for a given project by passing either the project \`id\` or \`name\` in the URL.`,
|
|
73394
|
-
args:
|
|
73395
|
-
tool: async (client,
|
|
73396
|
-
const [result, apiCall] = await projectsFilterProjectEnvs(client,
|
|
73451
|
+
args: args121,
|
|
73452
|
+
tool: async (client, args122, ctx) => {
|
|
73453
|
+
const [result, apiCall] = await projectsFilterProjectEnvs(client, args122.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
73397
73454
|
if (!result.ok) {
|
|
73398
73455
|
return {
|
|
73399
73456
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -73476,9 +73533,9 @@ var init_getprojectdomainop = __esm(() => {
|
|
|
73476
73533
|
|
|
73477
73534
|
// src/funcs/projectsGetProjectDomain.ts
|
|
73478
73535
|
function projectsGetProjectDomain(client, request, options) {
|
|
73479
|
-
return new APIPromise($
|
|
73536
|
+
return new APIPromise($do123(client, request, options));
|
|
73480
73537
|
}
|
|
73481
|
-
async function $
|
|
73538
|
+
async function $do123(client, request, options) {
|
|
73482
73539
|
const parsed = safeParse(request, (value) => GetProjectDomainRequest$outboundSchema.parse(value), "Input validation failed");
|
|
73483
73540
|
if (!parsed.ok) {
|
|
73484
73541
|
return [parsed, { status: "invalid" }];
|
|
@@ -73562,12 +73619,12 @@ var init_projectsGetProjectDomain = __esm(() => {
|
|
|
73562
73619
|
});
|
|
73563
73620
|
|
|
73564
73621
|
// src/mcp-server/tools/projectsGetProjectDomain.ts
|
|
73565
|
-
var
|
|
73622
|
+
var args122, tool$projectsGetProjectDomain;
|
|
73566
73623
|
var init_projectsGetProjectDomain2 = __esm(() => {
|
|
73567
73624
|
init_projectsGetProjectDomain();
|
|
73568
73625
|
init_getprojectdomainop();
|
|
73569
73626
|
init_tools();
|
|
73570
|
-
|
|
73627
|
+
args122 = {
|
|
73571
73628
|
request: GetProjectDomainRequest$inboundSchema
|
|
73572
73629
|
};
|
|
73573
73630
|
tool$projectsGetProjectDomain = {
|
|
@@ -73575,9 +73632,9 @@ var init_projectsGetProjectDomain2 = __esm(() => {
|
|
|
73575
73632
|
description: `Get a project domain
|
|
73576
73633
|
|
|
73577
73634
|
Get project domain by project id/name and domain name.`,
|
|
73578
|
-
args:
|
|
73579
|
-
tool: async (client,
|
|
73580
|
-
const [result, apiCall] = await projectsGetProjectDomain(client,
|
|
73635
|
+
args: args122,
|
|
73636
|
+
tool: async (client, args123, ctx) => {
|
|
73637
|
+
const [result, apiCall] = await projectsGetProjectDomain(client, args123.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
73581
73638
|
if (!result.ok) {
|
|
73582
73639
|
return {
|
|
73583
73640
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -73743,9 +73800,9 @@ var init_getprojectdomainsop = __esm(() => {
|
|
|
73743
73800
|
|
|
73744
73801
|
// src/funcs/projectsGetProjectDomains.ts
|
|
73745
73802
|
function projectsGetProjectDomains(client, request, options) {
|
|
73746
|
-
return new APIPromise($
|
|
73803
|
+
return new APIPromise($do124(client, request, options));
|
|
73747
73804
|
}
|
|
73748
|
-
async function $
|
|
73805
|
+
async function $do124(client, request, options) {
|
|
73749
73806
|
const parsed = safeParse(request, (value) => GetProjectDomainsRequest$outboundSchema.parse(value), "Input validation failed");
|
|
73750
73807
|
if (!parsed.ok) {
|
|
73751
73808
|
return [parsed, { status: "invalid" }];
|
|
@@ -73836,12 +73893,12 @@ var init_projectsGetProjectDomains = __esm(() => {
|
|
|
73836
73893
|
});
|
|
73837
73894
|
|
|
73838
73895
|
// src/mcp-server/tools/projectsGetProjectDomains.ts
|
|
73839
|
-
var
|
|
73896
|
+
var args123, tool$projectsGetProjectDomains;
|
|
73840
73897
|
var init_projectsGetProjectDomains2 = __esm(() => {
|
|
73841
73898
|
init_projectsGetProjectDomains();
|
|
73842
73899
|
init_getprojectdomainsop();
|
|
73843
73900
|
init_tools();
|
|
73844
|
-
|
|
73901
|
+
args123 = {
|
|
73845
73902
|
request: GetProjectDomainsRequest$inboundSchema
|
|
73846
73903
|
};
|
|
73847
73904
|
tool$projectsGetProjectDomains = {
|
|
@@ -73849,9 +73906,9 @@ var init_projectsGetProjectDomains2 = __esm(() => {
|
|
|
73849
73906
|
description: `Retrieve project domains by project by id or name
|
|
73850
73907
|
|
|
73851
73908
|
Retrieve the domains associated with a given project by passing either the project \`id\` or \`name\` in the URL.`,
|
|
73852
|
-
args:
|
|
73853
|
-
tool: async (client,
|
|
73854
|
-
const [result, apiCall] = await projectsGetProjectDomains(client,
|
|
73909
|
+
args: args123,
|
|
73910
|
+
tool: async (client, args124, ctx) => {
|
|
73911
|
+
const [result, apiCall] = await projectsGetProjectDomains(client, args124.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
73855
73912
|
if (!result.ok) {
|
|
73856
73913
|
return {
|
|
73857
73914
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -75424,9 +75481,9 @@ var init_getprojectenvop = __esm(() => {
|
|
|
75424
75481
|
|
|
75425
75482
|
// src/funcs/projectsGetProjectEnv.ts
|
|
75426
75483
|
function projectsGetProjectEnv(client, request, options) {
|
|
75427
|
-
return new APIPromise($
|
|
75484
|
+
return new APIPromise($do125(client, request, options));
|
|
75428
75485
|
}
|
|
75429
|
-
async function $
|
|
75486
|
+
async function $do125(client, request, options) {
|
|
75430
75487
|
const parsed = safeParse(request, (value) => GetProjectEnvRequest$outboundSchema.parse(value), "Input validation failed");
|
|
75431
75488
|
if (!parsed.ok) {
|
|
75432
75489
|
return [parsed, { status: "invalid" }];
|
|
@@ -75510,12 +75567,12 @@ var init_projectsGetProjectEnv = __esm(() => {
|
|
|
75510
75567
|
});
|
|
75511
75568
|
|
|
75512
75569
|
// src/mcp-server/tools/projectsGetProjectEnv.ts
|
|
75513
|
-
var
|
|
75570
|
+
var args124, tool$projectsGetProjectEnv;
|
|
75514
75571
|
var init_projectsGetProjectEnv2 = __esm(() => {
|
|
75515
75572
|
init_projectsGetProjectEnv();
|
|
75516
75573
|
init_getprojectenvop();
|
|
75517
75574
|
init_tools();
|
|
75518
|
-
|
|
75575
|
+
args124 = {
|
|
75519
75576
|
request: GetProjectEnvRequest$inboundSchema
|
|
75520
75577
|
};
|
|
75521
75578
|
tool$projectsGetProjectEnv = {
|
|
@@ -75523,9 +75580,9 @@ var init_projectsGetProjectEnv2 = __esm(() => {
|
|
|
75523
75580
|
description: `Retrieve the decrypted value of an environment variable of a project by id
|
|
75524
75581
|
|
|
75525
75582
|
Retrieve the environment variable for a given project.`,
|
|
75526
|
-
args:
|
|
75527
|
-
tool: async (client,
|
|
75528
|
-
const [result, apiCall] = await projectsGetProjectEnv(client,
|
|
75583
|
+
args: args124,
|
|
75584
|
+
tool: async (client, args125, ctx) => {
|
|
75585
|
+
const [result, apiCall] = await projectsGetProjectEnv(client, args125.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
75529
75586
|
if (!result.ok) {
|
|
75530
75587
|
return {
|
|
75531
75588
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -78340,9 +78397,9 @@ var init_getprojectsop = __esm(() => {
|
|
|
78340
78397
|
|
|
78341
78398
|
// src/funcs/projectsGetProjects.ts
|
|
78342
78399
|
function projectsGetProjects(client, request, options) {
|
|
78343
|
-
return new APIPromise($
|
|
78400
|
+
return new APIPromise($do126(client, request, options));
|
|
78344
78401
|
}
|
|
78345
|
-
async function $
|
|
78402
|
+
async function $do126(client, request, options) {
|
|
78346
78403
|
const parsed = safeParse(request, (value) => GetProjectsRequest$outboundSchema.parse(value), "Input validation failed");
|
|
78347
78404
|
if (!parsed.ok) {
|
|
78348
78405
|
return [parsed, { status: "invalid" }];
|
|
@@ -78427,12 +78484,12 @@ var init_projectsGetProjects = __esm(() => {
|
|
|
78427
78484
|
});
|
|
78428
78485
|
|
|
78429
78486
|
// src/mcp-server/tools/projectsGetProjects.ts
|
|
78430
|
-
var
|
|
78487
|
+
var args125, tool$projectsGetProjects;
|
|
78431
78488
|
var init_projectsGetProjects2 = __esm(() => {
|
|
78432
78489
|
init_projectsGetProjects();
|
|
78433
78490
|
init_getprojectsop();
|
|
78434
78491
|
init_tools();
|
|
78435
|
-
|
|
78492
|
+
args125 = {
|
|
78436
78493
|
request: GetProjectsRequest$inboundSchema
|
|
78437
78494
|
};
|
|
78438
78495
|
tool$projectsGetProjects = {
|
|
@@ -78440,9 +78497,9 @@ var init_projectsGetProjects2 = __esm(() => {
|
|
|
78440
78497
|
description: `Retrieve a list of projects
|
|
78441
78498
|
|
|
78442
78499
|
Allows to retrieve the list of projects of the authenticated user or team. The list will be paginated and the provided query parameters allow filtering the returned projects.`,
|
|
78443
|
-
args:
|
|
78444
|
-
tool: async (client,
|
|
78445
|
-
const [result, apiCall] = await projectsGetProjects(client,
|
|
78500
|
+
args: args125,
|
|
78501
|
+
tool: async (client, args126, ctx) => {
|
|
78502
|
+
const [result, apiCall] = await projectsGetProjects(client, args126.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
78446
78503
|
if (!result.ok) {
|
|
78447
78504
|
return {
|
|
78448
78505
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -78530,9 +78587,9 @@ var init_listpromotealiasesop = __esm(() => {
|
|
|
78530
78587
|
|
|
78531
78588
|
// src/funcs/projectsListPromoteAliases.ts
|
|
78532
78589
|
function projectsListPromoteAliases(client, request, options) {
|
|
78533
|
-
return new APIPromise($
|
|
78590
|
+
return new APIPromise($do127(client, request, options));
|
|
78534
78591
|
}
|
|
78535
|
-
async function $
|
|
78592
|
+
async function $do127(client, request, options) {
|
|
78536
78593
|
const parsed = safeParse(request, (value) => ListPromoteAliasesRequest$outboundSchema.parse(value), "Input validation failed");
|
|
78537
78594
|
if (!parsed.ok) {
|
|
78538
78595
|
return [parsed, { status: "invalid" }];
|
|
@@ -78617,12 +78674,12 @@ var init_projectsListPromoteAliases = __esm(() => {
|
|
|
78617
78674
|
});
|
|
78618
78675
|
|
|
78619
78676
|
// src/mcp-server/tools/projectsListPromoteAliases.ts
|
|
78620
|
-
var
|
|
78677
|
+
var args126, tool$projectsListPromoteAliases;
|
|
78621
78678
|
var init_projectsListPromoteAliases2 = __esm(() => {
|
|
78622
78679
|
init_projectsListPromoteAliases();
|
|
78623
78680
|
init_listpromotealiasesop();
|
|
78624
78681
|
init_tools();
|
|
78625
|
-
|
|
78682
|
+
args126 = {
|
|
78626
78683
|
request: ListPromoteAliasesRequest$inboundSchema
|
|
78627
78684
|
};
|
|
78628
78685
|
tool$projectsListPromoteAliases = {
|
|
@@ -78630,9 +78687,9 @@ var init_projectsListPromoteAliases2 = __esm(() => {
|
|
|
78630
78687
|
description: `Gets a list of aliases with status for the current promote
|
|
78631
78688
|
|
|
78632
78689
|
Get a list of aliases related to the last promote request with their mapping status`,
|
|
78633
|
-
args:
|
|
78634
|
-
tool: async (client,
|
|
78635
|
-
const [result, apiCall] = await projectsListPromoteAliases(client,
|
|
78690
|
+
args: args126,
|
|
78691
|
+
tool: async (client, args127, ctx) => {
|
|
78692
|
+
const [result, apiCall] = await projectsListPromoteAliases(client, args127.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
78636
78693
|
if (!result.ok) {
|
|
78637
78694
|
return {
|
|
78638
78695
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -78645,6 +78702,138 @@ Get a list of aliases related to the last promote request with their mapping sta
|
|
|
78645
78702
|
};
|
|
78646
78703
|
});
|
|
78647
78704
|
|
|
78705
|
+
// src/models/pauseprojectop.ts
|
|
78706
|
+
var PauseProjectRequest$inboundSchema, PauseProjectRequest$outboundSchema, PauseProjectRequest$;
|
|
78707
|
+
var init_pauseprojectop = __esm(() => {
|
|
78708
|
+
init_lib();
|
|
78709
|
+
PauseProjectRequest$inboundSchema = objectType({
|
|
78710
|
+
projectId: stringType(),
|
|
78711
|
+
teamId: stringType().optional(),
|
|
78712
|
+
slug: stringType().optional()
|
|
78713
|
+
});
|
|
78714
|
+
PauseProjectRequest$outboundSchema = objectType({
|
|
78715
|
+
projectId: stringType(),
|
|
78716
|
+
teamId: stringType().optional(),
|
|
78717
|
+
slug: stringType().optional()
|
|
78718
|
+
});
|
|
78719
|
+
((PauseProjectRequest$) => {
|
|
78720
|
+
PauseProjectRequest$.inboundSchema = PauseProjectRequest$inboundSchema;
|
|
78721
|
+
PauseProjectRequest$.outboundSchema = PauseProjectRequest$outboundSchema;
|
|
78722
|
+
})(PauseProjectRequest$ ||= {});
|
|
78723
|
+
});
|
|
78724
|
+
|
|
78725
|
+
// src/funcs/projectsPauseProject.ts
|
|
78726
|
+
function projectsPauseProject(client, request, options) {
|
|
78727
|
+
return new APIPromise($do128(client, request, options));
|
|
78728
|
+
}
|
|
78729
|
+
async function $do128(client, request, options) {
|
|
78730
|
+
const parsed = safeParse(request, (value) => PauseProjectRequest$outboundSchema.parse(value), "Input validation failed");
|
|
78731
|
+
if (!parsed.ok) {
|
|
78732
|
+
return [parsed, { status: "invalid" }];
|
|
78733
|
+
}
|
|
78734
|
+
const payload = parsed.value;
|
|
78735
|
+
const body = null;
|
|
78736
|
+
const pathParams = {
|
|
78737
|
+
projectId: encodeSimple("projectId", payload.projectId, {
|
|
78738
|
+
explode: false,
|
|
78739
|
+
charEncoding: "percent"
|
|
78740
|
+
})
|
|
78741
|
+
};
|
|
78742
|
+
const path = pathToFunc("/v1/projects/{projectId}/pause")(pathParams);
|
|
78743
|
+
const query = encodeFormQuery({
|
|
78744
|
+
slug: payload.slug,
|
|
78745
|
+
teamId: payload.teamId
|
|
78746
|
+
});
|
|
78747
|
+
const headers = new Headers(compactMap({
|
|
78748
|
+
Accept: "application/json"
|
|
78749
|
+
}));
|
|
78750
|
+
const secConfig = await extractSecurity(client._options.bearerToken);
|
|
78751
|
+
const securityInput = secConfig == null ? {} : { bearerToken: secConfig };
|
|
78752
|
+
const requestSecurity = resolveGlobalSecurity(securityInput);
|
|
78753
|
+
const context = {
|
|
78754
|
+
baseURL: options?.serverURL ?? client._baseURL ?? "",
|
|
78755
|
+
operationID: "pauseProject",
|
|
78756
|
+
oAuth2Scopes: [],
|
|
78757
|
+
resolvedSecurity: requestSecurity,
|
|
78758
|
+
securitySource: client._options.bearerToken,
|
|
78759
|
+
retryConfig: options?.retries || client._options.retryConfig || { strategy: "none" },
|
|
78760
|
+
retryCodes: options?.retryCodes || ["429", "500", "502", "503", "504"]
|
|
78761
|
+
};
|
|
78762
|
+
const requestRes = client._createRequest(context, {
|
|
78763
|
+
security: requestSecurity,
|
|
78764
|
+
method: "POST",
|
|
78765
|
+
baseURL: options?.serverURL,
|
|
78766
|
+
path,
|
|
78767
|
+
headers,
|
|
78768
|
+
query,
|
|
78769
|
+
body,
|
|
78770
|
+
timeoutMs: options?.timeoutMs || client._options.timeoutMs || -1
|
|
78771
|
+
}, options);
|
|
78772
|
+
if (!requestRes.ok) {
|
|
78773
|
+
return [requestRes, { status: "invalid" }];
|
|
78774
|
+
}
|
|
78775
|
+
const req = requestRes.value;
|
|
78776
|
+
const doResult = await client._do(req, {
|
|
78777
|
+
context,
|
|
78778
|
+
errorCodes: ["400", "401", "402", "403", "4XX", "500", "5XX"],
|
|
78779
|
+
retryConfig: context.retryConfig,
|
|
78780
|
+
retryCodes: context.retryCodes
|
|
78781
|
+
});
|
|
78782
|
+
if (!doResult.ok) {
|
|
78783
|
+
return [doResult, { status: "request-error", request: req }];
|
|
78784
|
+
}
|
|
78785
|
+
const response = doResult.value;
|
|
78786
|
+
const responseFields = {
|
|
78787
|
+
HttpMeta: { Response: response, Request: req }
|
|
78788
|
+
};
|
|
78789
|
+
const [result] = await match(nil(200, voidType()), jsonErr(400, VercelBadRequestError$inboundSchema), jsonErr(401, VercelForbiddenError$inboundSchema), fail([402, 403, "4XX"]), fail([500, "5XX"]))(response, { extraFields: responseFields });
|
|
78790
|
+
if (!result.ok) {
|
|
78791
|
+
return [result, { status: "complete", request: req, response }];
|
|
78792
|
+
}
|
|
78793
|
+
return [result, { status: "complete", request: req, response }];
|
|
78794
|
+
}
|
|
78795
|
+
var init_projectsPauseProject = __esm(() => {
|
|
78796
|
+
init_lib();
|
|
78797
|
+
init_encodings();
|
|
78798
|
+
init_matchers();
|
|
78799
|
+
init_primitives();
|
|
78800
|
+
init_schemas();
|
|
78801
|
+
init_security();
|
|
78802
|
+
init_url();
|
|
78803
|
+
init_pauseprojectop();
|
|
78804
|
+
init_vercelbadrequesterror();
|
|
78805
|
+
init_vercelforbiddenerror();
|
|
78806
|
+
init_async();
|
|
78807
|
+
});
|
|
78808
|
+
|
|
78809
|
+
// src/mcp-server/tools/projectsPauseProject.ts
|
|
78810
|
+
var args127, tool$projectsPauseProject;
|
|
78811
|
+
var init_projectsPauseProject2 = __esm(() => {
|
|
78812
|
+
init_projectsPauseProject();
|
|
78813
|
+
init_pauseprojectop();
|
|
78814
|
+
init_tools();
|
|
78815
|
+
args127 = {
|
|
78816
|
+
request: PauseProjectRequest$inboundSchema
|
|
78817
|
+
};
|
|
78818
|
+
tool$projectsPauseProject = {
|
|
78819
|
+
name: "projects-pause-project",
|
|
78820
|
+
description: `Pause a project
|
|
78821
|
+
|
|
78822
|
+
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.`,
|
|
78823
|
+
args: args127,
|
|
78824
|
+
tool: async (client, args128, ctx) => {
|
|
78825
|
+
const [result, apiCall] = await projectsPauseProject(client, args128.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
78826
|
+
if (!result.ok) {
|
|
78827
|
+
return {
|
|
78828
|
+
content: [{ type: "text", text: result.error.message }],
|
|
78829
|
+
isError: true
|
|
78830
|
+
};
|
|
78831
|
+
}
|
|
78832
|
+
return formatResult(undefined, apiCall);
|
|
78833
|
+
}
|
|
78834
|
+
};
|
|
78835
|
+
});
|
|
78836
|
+
|
|
78648
78837
|
// src/models/removeprojectdomainop.ts
|
|
78649
78838
|
var RemoveProjectDomainRequest$inboundSchema, RemoveProjectDomainRequest$outboundSchema, RemoveProjectDomainRequest$, RemoveProjectDomainResponseBody$inboundSchema, RemoveProjectDomainResponseBody$outboundSchema, RemoveProjectDomainResponseBody$;
|
|
78650
78839
|
var init_removeprojectdomainop = __esm(() => {
|
|
@@ -80625,6 +80814,138 @@ Allows users to promote a deployment to production. Note: This does NOT rebuild
|
|
|
80625
80814
|
};
|
|
80626
80815
|
});
|
|
80627
80816
|
|
|
80817
|
+
// src/models/unpauseprojectop.ts
|
|
80818
|
+
var UnpauseProjectRequest$inboundSchema, UnpauseProjectRequest$outboundSchema, UnpauseProjectRequest$;
|
|
80819
|
+
var init_unpauseprojectop = __esm(() => {
|
|
80820
|
+
init_lib();
|
|
80821
|
+
UnpauseProjectRequest$inboundSchema = objectType({
|
|
80822
|
+
projectId: stringType(),
|
|
80823
|
+
teamId: stringType().optional(),
|
|
80824
|
+
slug: stringType().optional()
|
|
80825
|
+
});
|
|
80826
|
+
UnpauseProjectRequest$outboundSchema = objectType({
|
|
80827
|
+
projectId: stringType(),
|
|
80828
|
+
teamId: stringType().optional(),
|
|
80829
|
+
slug: stringType().optional()
|
|
80830
|
+
});
|
|
80831
|
+
((UnpauseProjectRequest$) => {
|
|
80832
|
+
UnpauseProjectRequest$.inboundSchema = UnpauseProjectRequest$inboundSchema;
|
|
80833
|
+
UnpauseProjectRequest$.outboundSchema = UnpauseProjectRequest$outboundSchema;
|
|
80834
|
+
})(UnpauseProjectRequest$ ||= {});
|
|
80835
|
+
});
|
|
80836
|
+
|
|
80837
|
+
// src/funcs/projectsUnpauseProject.ts
|
|
80838
|
+
function projectsUnpauseProject(client, request, options) {
|
|
80839
|
+
return new APIPromise($do132(client, request, options));
|
|
80840
|
+
}
|
|
80841
|
+
async function $do132(client, request, options) {
|
|
80842
|
+
const parsed = safeParse(request, (value) => UnpauseProjectRequest$outboundSchema.parse(value), "Input validation failed");
|
|
80843
|
+
if (!parsed.ok) {
|
|
80844
|
+
return [parsed, { status: "invalid" }];
|
|
80845
|
+
}
|
|
80846
|
+
const payload = parsed.value;
|
|
80847
|
+
const body = null;
|
|
80848
|
+
const pathParams = {
|
|
80849
|
+
projectId: encodeSimple("projectId", payload.projectId, {
|
|
80850
|
+
explode: false,
|
|
80851
|
+
charEncoding: "percent"
|
|
80852
|
+
})
|
|
80853
|
+
};
|
|
80854
|
+
const path = pathToFunc("/v1/projects/{projectId}/unpause")(pathParams);
|
|
80855
|
+
const query = encodeFormQuery({
|
|
80856
|
+
slug: payload.slug,
|
|
80857
|
+
teamId: payload.teamId
|
|
80858
|
+
});
|
|
80859
|
+
const headers = new Headers(compactMap({
|
|
80860
|
+
Accept: "application/json"
|
|
80861
|
+
}));
|
|
80862
|
+
const secConfig = await extractSecurity(client._options.bearerToken);
|
|
80863
|
+
const securityInput = secConfig == null ? {} : { bearerToken: secConfig };
|
|
80864
|
+
const requestSecurity = resolveGlobalSecurity(securityInput);
|
|
80865
|
+
const context = {
|
|
80866
|
+
baseURL: options?.serverURL ?? client._baseURL ?? "",
|
|
80867
|
+
operationID: "unpauseProject",
|
|
80868
|
+
oAuth2Scopes: [],
|
|
80869
|
+
resolvedSecurity: requestSecurity,
|
|
80870
|
+
securitySource: client._options.bearerToken,
|
|
80871
|
+
retryConfig: options?.retries || client._options.retryConfig || { strategy: "none" },
|
|
80872
|
+
retryCodes: options?.retryCodes || ["429", "500", "502", "503", "504"]
|
|
80873
|
+
};
|
|
80874
|
+
const requestRes = client._createRequest(context, {
|
|
80875
|
+
security: requestSecurity,
|
|
80876
|
+
method: "POST",
|
|
80877
|
+
baseURL: options?.serverURL,
|
|
80878
|
+
path,
|
|
80879
|
+
headers,
|
|
80880
|
+
query,
|
|
80881
|
+
body,
|
|
80882
|
+
timeoutMs: options?.timeoutMs || client._options.timeoutMs || -1
|
|
80883
|
+
}, options);
|
|
80884
|
+
if (!requestRes.ok) {
|
|
80885
|
+
return [requestRes, { status: "invalid" }];
|
|
80886
|
+
}
|
|
80887
|
+
const req = requestRes.value;
|
|
80888
|
+
const doResult = await client._do(req, {
|
|
80889
|
+
context,
|
|
80890
|
+
errorCodes: ["400", "401", "403", "4XX", "500", "5XX"],
|
|
80891
|
+
retryConfig: context.retryConfig,
|
|
80892
|
+
retryCodes: context.retryCodes
|
|
80893
|
+
});
|
|
80894
|
+
if (!doResult.ok) {
|
|
80895
|
+
return [doResult, { status: "request-error", request: req }];
|
|
80896
|
+
}
|
|
80897
|
+
const response = doResult.value;
|
|
80898
|
+
const responseFields = {
|
|
80899
|
+
HttpMeta: { Response: response, Request: req }
|
|
80900
|
+
};
|
|
80901
|
+
const [result] = await match(nil(200, voidType()), jsonErr(400, VercelBadRequestError$inboundSchema), jsonErr(401, VercelForbiddenError$inboundSchema), fail([403, "4XX"]), fail([500, "5XX"]))(response, { extraFields: responseFields });
|
|
80902
|
+
if (!result.ok) {
|
|
80903
|
+
return [result, { status: "complete", request: req, response }];
|
|
80904
|
+
}
|
|
80905
|
+
return [result, { status: "complete", request: req, response }];
|
|
80906
|
+
}
|
|
80907
|
+
var init_projectsUnpauseProject = __esm(() => {
|
|
80908
|
+
init_lib();
|
|
80909
|
+
init_encodings();
|
|
80910
|
+
init_matchers();
|
|
80911
|
+
init_primitives();
|
|
80912
|
+
init_schemas();
|
|
80913
|
+
init_security();
|
|
80914
|
+
init_url();
|
|
80915
|
+
init_unpauseprojectop();
|
|
80916
|
+
init_vercelbadrequesterror();
|
|
80917
|
+
init_vercelforbiddenerror();
|
|
80918
|
+
init_async();
|
|
80919
|
+
});
|
|
80920
|
+
|
|
80921
|
+
// src/mcp-server/tools/projectsUnpauseProject.ts
|
|
80922
|
+
var args131, tool$projectsUnpauseProject;
|
|
80923
|
+
var init_projectsUnpauseProject2 = __esm(() => {
|
|
80924
|
+
init_projectsUnpauseProject();
|
|
80925
|
+
init_unpauseprojectop();
|
|
80926
|
+
init_tools();
|
|
80927
|
+
args131 = {
|
|
80928
|
+
request: UnpauseProjectRequest$inboundSchema
|
|
80929
|
+
};
|
|
80930
|
+
tool$projectsUnpauseProject = {
|
|
80931
|
+
name: "projects-unpause-project",
|
|
80932
|
+
description: `Unpause a project
|
|
80933
|
+
|
|
80934
|
+
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.`,
|
|
80935
|
+
args: args131,
|
|
80936
|
+
tool: async (client, args132, ctx) => {
|
|
80937
|
+
const [result, apiCall] = await projectsUnpauseProject(client, args132.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
80938
|
+
if (!result.ok) {
|
|
80939
|
+
return {
|
|
80940
|
+
content: [{ type: "text", text: result.error.message }],
|
|
80941
|
+
isError: true
|
|
80942
|
+
};
|
|
80943
|
+
}
|
|
80944
|
+
return formatResult(undefined, apiCall);
|
|
80945
|
+
}
|
|
80946
|
+
};
|
|
80947
|
+
});
|
|
80948
|
+
|
|
80628
80949
|
// src/models/updateprojectop.ts
|
|
80629
80950
|
var UpdateProjectFramework, UpdateProjectNodeVersion, UpdateProjectIssuerMode, UpdateProjectDeploymentType, UpdateProjectProjectsDeploymentType, UpdateProjectProjectsRequestDeploymentType, ProtectionMode, UpdateProjectTarget2, UpdateProjectType, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv14Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv13Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv12Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv11Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv10Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv9Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv8Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnvType, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyType, UpdateProjectContentHintProjectsResponse200ApplicationJSONType, UpdateProjectContentHintProjectsResponse200Type, UpdateProjectContentHintProjectsResponseType, UpdateProjectContentHintProjectsType, UpdateProjectContentHintType, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyEnvType, UpdateProjectProjectsFramework, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyType, UpdateProjectChecksConclusion, UpdateProjectChecksState, UpdateProjectPlan, UpdateProjectReadyState, UpdateProjectReadySubstate, UpdateProjectProjectsType, UpdateProjectLinkProjectsResponseType, UpdateProjectLinkProjectsType, UpdateProjectLinkType, UpdateProjectProjectsNodeVersion, UpdateProjectFunctionDefaultMemoryType, UpdateProjectProjectsFunctionDefaultMemoryType, UpdateProjectProjectsResponseDeploymentType, UpdateProjectProjectsResponse200ApplicationJSONType, UpdateProjectProjectsChecksConclusion, UpdateProjectProjectsChecksState, UpdateProjectProjectsPlan, UpdateProjectProjectsReadyState, UpdateProjectProjectsReadySubstate, UpdateProjectProjectsResponseType, UpdateProjectJobStatus, UpdateProjectProjectsResponse200Type, UpdateProjectScope, UpdateProjectTrustedIpsProjectsDeploymentType, UpdateProjectTrustedIpsDeploymentType, UpdateProjectTrustedIpsProtectionMode, UpdateProjectCreateDeployments, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType, UpdateProjectHandle, UpdateProjectProjectsAction, UpdateProjectAlgo, UpdateProjectAction, UpdateProjectProjectsIssuerMode, UpdateProjectTier, UpdateProjectFramework$inboundSchema, UpdateProjectFramework$outboundSchema, UpdateProjectFramework$, UpdateProjectNodeVersion$inboundSchema, UpdateProjectNodeVersion$outboundSchema, UpdateProjectNodeVersion$, UpdateProjectIssuerMode$inboundSchema, UpdateProjectIssuerMode$outboundSchema, UpdateProjectIssuerMode$, UpdateProjectOidcTokenConfig$inboundSchema, UpdateProjectOidcTokenConfig$outboundSchema, UpdateProjectOidcTokenConfig$, UpdateProjectDeploymentType$inboundSchema, UpdateProjectDeploymentType$outboundSchema, UpdateProjectDeploymentType$, UpdateProjectPasswordProtection$inboundSchema, UpdateProjectPasswordProtection$outboundSchema, UpdateProjectPasswordProtection$, UpdateProjectProjectsDeploymentType$inboundSchema, UpdateProjectProjectsDeploymentType$outboundSchema, UpdateProjectProjectsDeploymentType$, UpdateProjectSsoProtection$inboundSchema, UpdateProjectSsoProtection$outboundSchema, UpdateProjectSsoProtection$, UpdateProjectProjectsRequestDeploymentType$inboundSchema, UpdateProjectProjectsRequestDeploymentType$outboundSchema, UpdateProjectProjectsRequestDeploymentType$, Addresses$inboundSchema, Addresses$outboundSchema, Addresses$, ProtectionMode$inboundSchema, ProtectionMode$outboundSchema, ProtectionMode$, UpdateProjectTrustedIps$inboundSchema, UpdateProjectTrustedIps$outboundSchema, UpdateProjectTrustedIps$, UpdateProjectPaths$inboundSchema, UpdateProjectPaths$outboundSchema, UpdateProjectPaths$, UpdateProjectOptionsAllowlist$inboundSchema, UpdateProjectOptionsAllowlist$outboundSchema, UpdateProjectOptionsAllowlist$, UpdateProjectRequestBody$inboundSchema, UpdateProjectRequestBody$outboundSchema, UpdateProjectRequestBody$, UpdateProjectRequest$inboundSchema, UpdateProjectRequest$outboundSchema, UpdateProjectRequest$, UpdateProjectAnalytics$inboundSchema, UpdateProjectAnalytics$outboundSchema, UpdateProjectAnalytics$, UpdateProjectSpeedInsights$inboundSchema, UpdateProjectSpeedInsights$outboundSchema, UpdateProjectSpeedInsights$, UpdateProjectDefinitions$inboundSchema, UpdateProjectDefinitions$outboundSchema, UpdateProjectDefinitions$, UpdateProjectCrons$inboundSchema, UpdateProjectCrons$outboundSchema, UpdateProjectCrons$, UpdateProjectDataCache$inboundSchema, UpdateProjectDataCache$outboundSchema, UpdateProjectDataCache$, UpdateProjectDeploymentExpiration$inboundSchema, UpdateProjectDeploymentExpiration$outboundSchema, UpdateProjectDeploymentExpiration$, UpdateProjectTarget2$inboundSchema, UpdateProjectTarget2$outboundSchema, UpdateProjectTarget2$, UpdateProjectTarget$inboundSchema, UpdateProjectTarget$outboundSchema, UpdateProjectTarget$, UpdateProjectType$inboundSchema, UpdateProjectType$outboundSchema, UpdateProjectType$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type$, UpdateProjectContentHint15$inboundSchema, UpdateProjectContentHint15$outboundSchema, UpdateProjectContentHint15$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv14Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv14Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv14Type$, UpdateProjectContentHint14$inboundSchema, UpdateProjectContentHint14$outboundSchema, UpdateProjectContentHint14$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv13Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv13Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv13Type$, UpdateProjectContentHint13$inboundSchema, UpdateProjectContentHint13$outboundSchema, UpdateProjectContentHint13$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv12Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv12Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv12Type$, UpdateProjectContentHint12$inboundSchema, UpdateProjectContentHint12$outboundSchema, UpdateProjectContentHint12$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv11Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv11Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv11Type$, UpdateProjectContentHint11$inboundSchema, UpdateProjectContentHint11$outboundSchema, UpdateProjectContentHint11$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv10Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv10Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv10Type$, UpdateProjectContentHint10$inboundSchema, UpdateProjectContentHint10$outboundSchema, UpdateProjectContentHint10$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv9Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv9Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv9Type$, UpdateProjectContentHint9$inboundSchema, UpdateProjectContentHint9$outboundSchema, UpdateProjectContentHint9$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv8Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv8Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv8Type$, UpdateProjectContentHint8$inboundSchema, UpdateProjectContentHint8$outboundSchema, UpdateProjectContentHint8$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnvType$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnvType$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnvType$, UpdateProjectContentHint7$inboundSchema, UpdateProjectContentHint7$outboundSchema, UpdateProjectContentHint7$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyType$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyType$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyType$, UpdateProjectContentHint6$inboundSchema, UpdateProjectContentHint6$outboundSchema, UpdateProjectContentHint6$, UpdateProjectContentHintProjectsResponse200ApplicationJSONType$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONType$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONType$, UpdateProjectContentHint5$inboundSchema, UpdateProjectContentHint5$outboundSchema, UpdateProjectContentHint5$, UpdateProjectContentHintProjectsResponse200Type$inboundSchema, UpdateProjectContentHintProjectsResponse200Type$outboundSchema, UpdateProjectContentHintProjectsResponse200Type$, UpdateProjectContentHint4$inboundSchema, UpdateProjectContentHint4$outboundSchema, UpdateProjectContentHint4$, UpdateProjectContentHintProjectsResponseType$inboundSchema, UpdateProjectContentHintProjectsResponseType$outboundSchema, UpdateProjectContentHintProjectsResponseType$, UpdateProjectContentHint3$inboundSchema, UpdateProjectContentHint3$outboundSchema, UpdateProjectContentHint3$, UpdateProjectContentHintProjectsType$inboundSchema, UpdateProjectContentHintProjectsType$outboundSchema, UpdateProjectContentHintProjectsType$, UpdateProjectContentHint2$inboundSchema, UpdateProjectContentHint2$outboundSchema, UpdateProjectContentHint2$, UpdateProjectContentHintType$inboundSchema, UpdateProjectContentHintType$outboundSchema, UpdateProjectContentHintType$, UpdateProjectContentHint1$inboundSchema, UpdateProjectContentHint1$outboundSchema, UpdateProjectContentHint1$, UpdateProjectContentHint$inboundSchema, UpdateProjectContentHint$outboundSchema, UpdateProjectContentHint$, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyEnvType$inboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyEnvType$outboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyEnvType$, UpdateProjectInternalContentHint$inboundSchema, UpdateProjectInternalContentHint$outboundSchema, UpdateProjectInternalContentHint$, UpdateProjectEnv$inboundSchema, UpdateProjectEnv$outboundSchema, UpdateProjectEnv$, UpdateProjectCustomEnvironments$inboundSchema, UpdateProjectCustomEnvironments$outboundSchema, UpdateProjectCustomEnvironments$, UpdateProjectProjectsFramework$inboundSchema, UpdateProjectProjectsFramework$outboundSchema, UpdateProjectProjectsFramework$, UpdateProjectIpBuckets$inboundSchema, UpdateProjectIpBuckets$outboundSchema, UpdateProjectIpBuckets$, UpdateProjectAliasAssigned$inboundSchema, UpdateProjectAliasAssigned$outboundSchema, UpdateProjectAliasAssigned$, UpdateProjectAliasError$inboundSchema, UpdateProjectAliasError$outboundSchema, UpdateProjectAliasError$, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyType$inboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyType$outboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyType$, UpdateProjectBranchMatcher$inboundSchema, UpdateProjectBranchMatcher$outboundSchema, UpdateProjectBranchMatcher$, UpdateProjectBuilds$inboundSchema, UpdateProjectBuilds$outboundSchema, UpdateProjectBuilds$, UpdateProjectChecksConclusion$inboundSchema, UpdateProjectChecksConclusion$outboundSchema, UpdateProjectChecksConclusion$, UpdateProjectChecksState$inboundSchema, UpdateProjectChecksState$outboundSchema, UpdateProjectChecksState$, UpdateProjectCreator$inboundSchema, UpdateProjectCreator$outboundSchema, UpdateProjectCreator$, UpdateProjectOidcTokenClaims$inboundSchema, UpdateProjectOidcTokenClaims$outboundSchema, UpdateProjectOidcTokenClaims$, UpdateProjectPlan$inboundSchema, UpdateProjectPlan$outboundSchema, UpdateProjectPlan$, UpdateProjectReadyState$inboundSchema, UpdateProjectReadyState$outboundSchema, UpdateProjectReadyState$, UpdateProjectReadySubstate$inboundSchema, UpdateProjectReadySubstate$outboundSchema, UpdateProjectReadySubstate$, UpdateProjectProjectsType$inboundSchema, UpdateProjectProjectsType$outboundSchema, UpdateProjectProjectsType$, UpdateProjectLatestDeployments$inboundSchema, UpdateProjectLatestDeployments$outboundSchema, UpdateProjectLatestDeployments$, UpdateProjectLinkProjectsResponseType$inboundSchema, UpdateProjectLinkProjectsResponseType$outboundSchema, UpdateProjectLinkProjectsResponseType$, UpdateProjectLinkProjectsResponseDeployHooks$inboundSchema, UpdateProjectLinkProjectsResponseDeployHooks$outboundSchema, UpdateProjectLinkProjectsResponseDeployHooks$, UpdateProjectLink3$inboundSchema, UpdateProjectLink3$outboundSchema, UpdateProjectLink3$, UpdateProjectLinkProjectsType$inboundSchema, UpdateProjectLinkProjectsType$outboundSchema, UpdateProjectLinkProjectsType$, UpdateProjectLinkProjectsDeployHooks$inboundSchema, UpdateProjectLinkProjectsDeployHooks$outboundSchema, UpdateProjectLinkProjectsDeployHooks$, UpdateProjectLink2$inboundSchema, UpdateProjectLink2$outboundSchema, UpdateProjectLink2$, UpdateProjectLinkType$inboundSchema, UpdateProjectLinkType$outboundSchema, UpdateProjectLinkType$, UpdateProjectLinkDeployHooks$inboundSchema, UpdateProjectLinkDeployHooks$outboundSchema, UpdateProjectLinkDeployHooks$, UpdateProjectLink1$inboundSchema, UpdateProjectLink1$outboundSchema, UpdateProjectLink1$, UpdateProjectLink$inboundSchema, UpdateProjectLink$outboundSchema, UpdateProjectLink$, UpdateProjectMicrofrontends2$inboundSchema, UpdateProjectMicrofrontends2$outboundSchema, UpdateProjectMicrofrontends2$, UpdateProjectMicrofrontends1$inboundSchema, UpdateProjectMicrofrontends1$outboundSchema, UpdateProjectMicrofrontends1$, UpdateProjectMicrofrontends$inboundSchema, UpdateProjectMicrofrontends$outboundSchema, UpdateProjectMicrofrontends$, UpdateProjectProjectsNodeVersion$inboundSchema, UpdateProjectProjectsNodeVersion$outboundSchema, UpdateProjectProjectsNodeVersion$, UpdateProjectProjectsPaths$inboundSchema, UpdateProjectProjectsPaths$outboundSchema, UpdateProjectProjectsPaths$, UpdateProjectProjectsOptionsAllowlist$inboundSchema, UpdateProjectProjectsOptionsAllowlist$outboundSchema, UpdateProjectProjectsOptionsAllowlist$, UpdateProjectProjectsPasswordProtection$inboundSchema, UpdateProjectProjectsPasswordProtection$outboundSchema, UpdateProjectProjectsPasswordProtection$, UpdateProjectFunctionDefaultMemoryType$inboundSchema, UpdateProjectFunctionDefaultMemoryType$outboundSchema, UpdateProjectFunctionDefaultMemoryType$, UpdateProjectResourceConfig$inboundSchema, UpdateProjectResourceConfig$outboundSchema, UpdateProjectResourceConfig$, UpdateProjectStages$inboundSchema, UpdateProjectStages$outboundSchema, UpdateProjectStages$, UpdateProjectRollingRelease$inboundSchema, UpdateProjectRollingRelease$outboundSchema, UpdateProjectRollingRelease$, UpdateProjectProjectsFunctionDefaultMemoryType$inboundSchema, UpdateProjectProjectsFunctionDefaultMemoryType$outboundSchema, UpdateProjectProjectsFunctionDefaultMemoryType$, UpdateProjectDefaultResourceConfig$inboundSchema, UpdateProjectDefaultResourceConfig$outboundSchema, UpdateProjectDefaultResourceConfig$, UpdateProjectProjectsResponseDeploymentType$inboundSchema, UpdateProjectProjectsResponseDeploymentType$outboundSchema, UpdateProjectProjectsResponseDeploymentType$, UpdateProjectProjectsSsoProtection$inboundSchema, UpdateProjectProjectsSsoProtection$outboundSchema, UpdateProjectProjectsSsoProtection$, UpdateProjectProjectsAliasAssigned$inboundSchema, UpdateProjectProjectsAliasAssigned$outboundSchema, UpdateProjectProjectsAliasAssigned$, UpdateProjectProjectsAliasError$inboundSchema, UpdateProjectProjectsAliasError$outboundSchema, UpdateProjectProjectsAliasError$, UpdateProjectProjectsResponse200ApplicationJSONType$inboundSchema, UpdateProjectProjectsResponse200ApplicationJSONType$outboundSchema, UpdateProjectProjectsResponse200ApplicationJSONType$, UpdateProjectProjectsBranchMatcher$inboundSchema, UpdateProjectProjectsBranchMatcher$outboundSchema, UpdateProjectProjectsBranchMatcher$, UpdateProjectProjectsBuilds$inboundSchema, UpdateProjectProjectsBuilds$outboundSchema, UpdateProjectProjectsBuilds$, UpdateProjectProjectsChecksConclusion$inboundSchema, UpdateProjectProjectsChecksConclusion$outboundSchema, UpdateProjectProjectsChecksConclusion$, UpdateProjectProjectsChecksState$inboundSchema, UpdateProjectProjectsChecksState$outboundSchema, UpdateProjectProjectsChecksState$, UpdateProjectProjectsCreator$inboundSchema, UpdateProjectProjectsCreator$outboundSchema, UpdateProjectProjectsCreator$, UpdateProjectProjectsOidcTokenClaims$inboundSchema, UpdateProjectProjectsOidcTokenClaims$outboundSchema, UpdateProjectProjectsOidcTokenClaims$, UpdateProjectProjectsPlan$inboundSchema, UpdateProjectProjectsPlan$outboundSchema, UpdateProjectProjectsPlan$, UpdateProjectProjectsReadyState$inboundSchema, UpdateProjectProjectsReadyState$outboundSchema, UpdateProjectProjectsReadyState$, UpdateProjectProjectsReadySubstate$inboundSchema, UpdateProjectProjectsReadySubstate$outboundSchema, UpdateProjectProjectsReadySubstate$, UpdateProjectProjectsResponseType$inboundSchema, UpdateProjectProjectsResponseType$outboundSchema, UpdateProjectProjectsResponseType$, UpdateProjectTargets$inboundSchema, UpdateProjectTargets$outboundSchema, UpdateProjectTargets$, UpdateProjectPermissions$inboundSchema, UpdateProjectPermissions$outboundSchema, UpdateProjectPermissions$, UpdateProjectLastRollbackTarget$inboundSchema, UpdateProjectLastRollbackTarget$outboundSchema, UpdateProjectLastRollbackTarget$, UpdateProjectJobStatus$inboundSchema, UpdateProjectJobStatus$outboundSchema, UpdateProjectJobStatus$, UpdateProjectProjectsResponse200Type$inboundSchema, UpdateProjectProjectsResponse200Type$outboundSchema, UpdateProjectProjectsResponse200Type$, UpdateProjectLastAliasRequest$inboundSchema, UpdateProjectLastAliasRequest$outboundSchema, UpdateProjectLastAliasRequest$, UpdateProjectScope$inboundSchema, UpdateProjectScope$outboundSchema, UpdateProjectScope$, UpdateProjectProtectionBypass$inboundSchema, UpdateProjectProtectionBypass$outboundSchema, UpdateProjectProtectionBypass$, UpdateProjectTrustedIpsProjectsDeploymentType$inboundSchema, UpdateProjectTrustedIpsProjectsDeploymentType$outboundSchema, UpdateProjectTrustedIpsProjectsDeploymentType$, UpdateProjectTrustedIps2$inboundSchema, UpdateProjectTrustedIps2$outboundSchema, UpdateProjectTrustedIps2$, UpdateProjectTrustedIpsDeploymentType$inboundSchema, UpdateProjectTrustedIpsDeploymentType$outboundSchema, UpdateProjectTrustedIpsDeploymentType$, UpdateProjectTrustedIpsAddresses$inboundSchema, UpdateProjectTrustedIpsAddresses$outboundSchema, UpdateProjectTrustedIpsAddresses$, UpdateProjectTrustedIpsProtectionMode$inboundSchema, UpdateProjectTrustedIpsProtectionMode$outboundSchema, UpdateProjectTrustedIpsProtectionMode$, UpdateProjectTrustedIps1$inboundSchema, UpdateProjectTrustedIps1$outboundSchema, UpdateProjectTrustedIps1$, UpdateProjectProjectsTrustedIps$inboundSchema, UpdateProjectProjectsTrustedIps$outboundSchema, UpdateProjectProjectsTrustedIps$, UpdateProjectGitComments$inboundSchema, UpdateProjectGitComments$outboundSchema, UpdateProjectGitComments$, UpdateProjectCreateDeployments$inboundSchema, UpdateProjectCreateDeployments$outboundSchema, UpdateProjectCreateDeployments$, UpdateProjectGitProviderOptions$inboundSchema, UpdateProjectGitProviderOptions$outboundSchema, UpdateProjectGitProviderOptions$, UpdateProjectWebAnalytics$inboundSchema, UpdateProjectWebAnalytics$outboundSchema, UpdateProjectWebAnalytics$, UpdateProjectSrc2$inboundSchema, UpdateProjectSrc2$outboundSchema, UpdateProjectSrc2$, UpdateProjectSrc$inboundSchema, UpdateProjectSrc$outboundSchema, UpdateProjectSrc$, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$inboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$outboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$, UpdateProjectValue2$inboundSchema, UpdateProjectValue2$outboundSchema, UpdateProjectValue2$, UpdateProjectValue$inboundSchema, UpdateProjectValue$outboundSchema, UpdateProjectValue$, UpdateProjectHas$inboundSchema, UpdateProjectHas$outboundSchema, UpdateProjectHas$, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$inboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$outboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$, UpdateProjectValueProjects2$inboundSchema, UpdateProjectValueProjects2$outboundSchema, UpdateProjectValueProjects2$, UpdateProjectProjectsValue$inboundSchema, UpdateProjectProjectsValue$outboundSchema, UpdateProjectProjectsValue$, UpdateProjectMissing$inboundSchema, UpdateProjectMissing$outboundSchema, UpdateProjectMissing$, UpdateProjectHandle$inboundSchema, UpdateProjectHandle$outboundSchema, UpdateProjectHandle$, UpdateProjectProjectsAction$inboundSchema, UpdateProjectProjectsAction$outboundSchema, UpdateProjectProjectsAction$, UpdateProjectAlgo$inboundSchema, UpdateProjectAlgo$outboundSchema, UpdateProjectAlgo$, UpdateProjectErl$inboundSchema, UpdateProjectErl$outboundSchema, UpdateProjectErl$, UpdateProjectMitigate$inboundSchema, UpdateProjectMitigate$outboundSchema, UpdateProjectMitigate$, UpdateProjectFirewallRoutes$inboundSchema, UpdateProjectFirewallRoutes$outboundSchema, UpdateProjectFirewallRoutes$, UpdateProjectAction$inboundSchema, UpdateProjectAction$outboundSchema, UpdateProjectAction$, UpdateProjectManagedRules$inboundSchema, UpdateProjectManagedRules$outboundSchema, UpdateProjectManagedRules$, UpdateProjectSecurity$inboundSchema, UpdateProjectSecurity$outboundSchema, UpdateProjectSecurity$, UpdateProjectProjectsIssuerMode$inboundSchema, UpdateProjectProjectsIssuerMode$outboundSchema, UpdateProjectProjectsIssuerMode$, UpdateProjectProjectsOidcTokenConfig$inboundSchema, UpdateProjectProjectsOidcTokenConfig$outboundSchema, UpdateProjectProjectsOidcTokenConfig$, UpdateProjectTier$inboundSchema, UpdateProjectTier$outboundSchema, UpdateProjectTier$, UpdateProjectResponseBody$inboundSchema, UpdateProjectResponseBody$outboundSchema, UpdateProjectResponseBody$;
|
|
80630
80951
|
var init_updateprojectop = __esm(() => {
|
|
@@ -81039,12 +81360,12 @@ var init_updateprojectop = __esm(() => {
|
|
|
81039
81360
|
UpdateProjectIssuerMode$.outboundSchema = UpdateProjectIssuerMode$outboundSchema;
|
|
81040
81361
|
})(UpdateProjectIssuerMode$ ||= {});
|
|
81041
81362
|
UpdateProjectOidcTokenConfig$inboundSchema = objectType({
|
|
81042
|
-
enabled: booleanType(),
|
|
81043
|
-
issuerMode: UpdateProjectIssuerMode$inboundSchema.default("
|
|
81363
|
+
enabled: booleanType().default(true),
|
|
81364
|
+
issuerMode: UpdateProjectIssuerMode$inboundSchema.default("team")
|
|
81044
81365
|
});
|
|
81045
81366
|
UpdateProjectOidcTokenConfig$outboundSchema = objectType({
|
|
81046
|
-
enabled: booleanType(),
|
|
81047
|
-
issuerMode: UpdateProjectIssuerMode$outboundSchema.default("
|
|
81367
|
+
enabled: booleanType().default(true),
|
|
81368
|
+
issuerMode: UpdateProjectIssuerMode$outboundSchema.default("team")
|
|
81048
81369
|
});
|
|
81049
81370
|
((UpdateProjectOidcTokenConfig$) => {
|
|
81050
81371
|
UpdateProjectOidcTokenConfig$.inboundSchema = UpdateProjectOidcTokenConfig$inboundSchema;
|
|
@@ -83646,9 +83967,9 @@ var init_updateprojectop = __esm(() => {
|
|
|
83646
83967
|
|
|
83647
83968
|
// src/funcs/projectsUpdateProject.ts
|
|
83648
83969
|
function projectsUpdateProject(client, request, options) {
|
|
83649
|
-
return new APIPromise($
|
|
83970
|
+
return new APIPromise($do133(client, request, options));
|
|
83650
83971
|
}
|
|
83651
|
-
async function $
|
|
83972
|
+
async function $do133(client, request, options) {
|
|
83652
83973
|
const parsed = safeParse(request, (value) => UpdateProjectRequest$outboundSchema.parse(value), "Input validation failed");
|
|
83653
83974
|
if (!parsed.ok) {
|
|
83654
83975
|
return [parsed, { status: "invalid" }];
|
|
@@ -83730,12 +84051,12 @@ var init_projectsUpdateProject = __esm(() => {
|
|
|
83730
84051
|
});
|
|
83731
84052
|
|
|
83732
84053
|
// src/mcp-server/tools/projectsUpdateProject.ts
|
|
83733
|
-
var
|
|
84054
|
+
var args132, tool$projectsUpdateProject;
|
|
83734
84055
|
var init_projectsUpdateProject2 = __esm(() => {
|
|
83735
84056
|
init_projectsUpdateProject();
|
|
83736
84057
|
init_updateprojectop();
|
|
83737
84058
|
init_tools();
|
|
83738
|
-
|
|
84059
|
+
args132 = {
|
|
83739
84060
|
request: UpdateProjectRequest$inboundSchema
|
|
83740
84061
|
};
|
|
83741
84062
|
tool$projectsUpdateProject = {
|
|
@@ -83743,9 +84064,9 @@ var init_projectsUpdateProject2 = __esm(() => {
|
|
|
83743
84064
|
description: `Update an existing project
|
|
83744
84065
|
|
|
83745
84066
|
Update the fields of a project using either its \`name\` or \`id\`.`,
|
|
83746
|
-
args:
|
|
83747
|
-
tool: async (client,
|
|
83748
|
-
const [result, apiCall] = await projectsUpdateProject(client,
|
|
84067
|
+
args: args132,
|
|
84068
|
+
tool: async (client, args133, ctx) => {
|
|
84069
|
+
const [result, apiCall] = await projectsUpdateProject(client, args133.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
83749
84070
|
if (!result.ok) {
|
|
83750
84071
|
return {
|
|
83751
84072
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -86549,9 +86870,9 @@ var init_updateprojectdatacacheop = __esm(() => {
|
|
|
86549
86870
|
|
|
86550
86871
|
// src/funcs/projectsUpdateProjectDataCache.ts
|
|
86551
86872
|
function projectsUpdateProjectDataCache(client, request, options) {
|
|
86552
|
-
return new APIPromise($
|
|
86873
|
+
return new APIPromise($do134(client, request, options));
|
|
86553
86874
|
}
|
|
86554
|
-
async function $
|
|
86875
|
+
async function $do134(client, request, options) {
|
|
86555
86876
|
const parsed = safeParse(request, (value) => UpdateProjectDataCacheRequest$outboundSchema.parse(value), "Input validation failed");
|
|
86556
86877
|
if (!parsed.ok) {
|
|
86557
86878
|
return [parsed, { status: "invalid" }];
|
|
@@ -86633,12 +86954,12 @@ var init_projectsUpdateProjectDataCache = __esm(() => {
|
|
|
86633
86954
|
});
|
|
86634
86955
|
|
|
86635
86956
|
// src/mcp-server/tools/projectsUpdateProjectDataCache.ts
|
|
86636
|
-
var
|
|
86957
|
+
var args133, tool$projectsUpdateProjectDataCache;
|
|
86637
86958
|
var init_projectsUpdateProjectDataCache2 = __esm(() => {
|
|
86638
86959
|
init_projectsUpdateProjectDataCache();
|
|
86639
86960
|
init_updateprojectdatacacheop();
|
|
86640
86961
|
init_tools();
|
|
86641
|
-
|
|
86962
|
+
args133 = {
|
|
86642
86963
|
request: UpdateProjectDataCacheRequest$inboundSchema
|
|
86643
86964
|
};
|
|
86644
86965
|
tool$projectsUpdateProjectDataCache = {
|
|
@@ -86646,9 +86967,9 @@ var init_projectsUpdateProjectDataCache2 = __esm(() => {
|
|
|
86646
86967
|
description: `Update the data cache feature
|
|
86647
86968
|
|
|
86648
86969
|
Update the data cache feature on a project.`,
|
|
86649
|
-
args:
|
|
86650
|
-
tool: async (client,
|
|
86651
|
-
const [result, apiCall] = await projectsUpdateProjectDataCache(client,
|
|
86970
|
+
args: args133,
|
|
86971
|
+
tool: async (client, args134, ctx) => {
|
|
86972
|
+
const [result, apiCall] = await projectsUpdateProjectDataCache(client, args134.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
86652
86973
|
if (!result.ok) {
|
|
86653
86974
|
return {
|
|
86654
86975
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -86768,9 +87089,9 @@ var init_updateprojectdomainop = __esm(() => {
|
|
|
86768
87089
|
|
|
86769
87090
|
// src/funcs/projectsUpdateProjectDomain.ts
|
|
86770
87091
|
function projectsUpdateProjectDomain(client, request, options) {
|
|
86771
|
-
return new APIPromise($
|
|
87092
|
+
return new APIPromise($do135(client, request, options));
|
|
86772
87093
|
}
|
|
86773
|
-
async function $
|
|
87094
|
+
async function $do135(client, request, options) {
|
|
86774
87095
|
const parsed = safeParse(request, (value) => UpdateProjectDomainRequest$outboundSchema.parse(value), "Input validation failed");
|
|
86775
87096
|
if (!parsed.ok) {
|
|
86776
87097
|
return [parsed, { status: "invalid" }];
|
|
@@ -86855,12 +87176,12 @@ var init_projectsUpdateProjectDomain = __esm(() => {
|
|
|
86855
87176
|
});
|
|
86856
87177
|
|
|
86857
87178
|
// src/mcp-server/tools/projectsUpdateProjectDomain.ts
|
|
86858
|
-
var
|
|
87179
|
+
var args134, tool$projectsUpdateProjectDomain;
|
|
86859
87180
|
var init_projectsUpdateProjectDomain2 = __esm(() => {
|
|
86860
87181
|
init_projectsUpdateProjectDomain();
|
|
86861
87182
|
init_updateprojectdomainop();
|
|
86862
87183
|
init_tools();
|
|
86863
|
-
|
|
87184
|
+
args134 = {
|
|
86864
87185
|
request: UpdateProjectDomainRequest$inboundSchema
|
|
86865
87186
|
};
|
|
86866
87187
|
tool$projectsUpdateProjectDomain = {
|
|
@@ -86868,9 +87189,9 @@ var init_projectsUpdateProjectDomain2 = __esm(() => {
|
|
|
86868
87189
|
description: `Update a project domain
|
|
86869
87190
|
|
|
86870
87191
|
Update a project domain's configuration, including the name, git branch and redirect of the domain.`,
|
|
86871
|
-
args:
|
|
86872
|
-
tool: async (client,
|
|
86873
|
-
const [result, apiCall] = await projectsUpdateProjectDomain(client,
|
|
87192
|
+
args: args134,
|
|
87193
|
+
tool: async (client, args135, ctx) => {
|
|
87194
|
+
const [result, apiCall] = await projectsUpdateProjectDomain(client, args135.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
86874
87195
|
if (!result.ok) {
|
|
86875
87196
|
return {
|
|
86876
87197
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -86983,9 +87304,9 @@ var init_updateprojectprotectionbypassop = __esm(() => {
|
|
|
86983
87304
|
|
|
86984
87305
|
// src/funcs/projectsUpdateProjectProtectionBypass.ts
|
|
86985
87306
|
function projectsUpdateProjectProtectionBypass(client, request, options) {
|
|
86986
|
-
return new APIPromise($
|
|
87307
|
+
return new APIPromise($do136(client, request, options));
|
|
86987
87308
|
}
|
|
86988
|
-
async function $
|
|
87309
|
+
async function $do136(client, request, options) {
|
|
86989
87310
|
const parsed = safeParse(request, (value) => UpdateProjectProtectionBypassRequest$outboundSchema.parse(value), "Input validation failed");
|
|
86990
87311
|
if (!parsed.ok) {
|
|
86991
87312
|
return [parsed, { status: "invalid" }];
|
|
@@ -87067,12 +87388,12 @@ var init_projectsUpdateProjectProtectionBypass = __esm(() => {
|
|
|
87067
87388
|
});
|
|
87068
87389
|
|
|
87069
87390
|
// src/mcp-server/tools/projectsUpdateProjectProtectionBypass.ts
|
|
87070
|
-
var
|
|
87391
|
+
var args135, tool$projectsUpdateProjectProtectionBypass;
|
|
87071
87392
|
var init_projectsUpdateProjectProtectionBypass2 = __esm(() => {
|
|
87072
87393
|
init_projectsUpdateProjectProtectionBypass();
|
|
87073
87394
|
init_updateprojectprotectionbypassop();
|
|
87074
87395
|
init_tools();
|
|
87075
|
-
|
|
87396
|
+
args135 = {
|
|
87076
87397
|
request: UpdateProjectProtectionBypassRequest$inboundSchema
|
|
87077
87398
|
};
|
|
87078
87399
|
tool$projectsUpdateProjectProtectionBypass = {
|
|
@@ -87080,9 +87401,9 @@ var init_projectsUpdateProjectProtectionBypass2 = __esm(() => {
|
|
|
87080
87401
|
description: `Update Protection Bypass for Automation
|
|
87081
87402
|
|
|
87082
87403
|
Update the deployment protection automation bypass for a project`,
|
|
87083
|
-
args:
|
|
87084
|
-
tool: async (client,
|
|
87085
|
-
const [result, apiCall] = await projectsUpdateProjectProtectionBypass(client,
|
|
87404
|
+
args: args135,
|
|
87405
|
+
tool: async (client, args136, ctx) => {
|
|
87406
|
+
const [result, apiCall] = await projectsUpdateProjectProtectionBypass(client, args136.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
87086
87407
|
if (!result.ok) {
|
|
87087
87408
|
return {
|
|
87088
87409
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -87147,9 +87468,9 @@ var init_verifyprojectdomainop = __esm(() => {
|
|
|
87147
87468
|
|
|
87148
87469
|
// src/funcs/projectsVerifyProjectDomain.ts
|
|
87149
87470
|
function projectsVerifyProjectDomain(client, request, options) {
|
|
87150
|
-
return new APIPromise($
|
|
87471
|
+
return new APIPromise($do137(client, request, options));
|
|
87151
87472
|
}
|
|
87152
|
-
async function $
|
|
87473
|
+
async function $do137(client, request, options) {
|
|
87153
87474
|
const parsed = safeParse(request, (value) => VerifyProjectDomainRequest$outboundSchema.parse(value), "Input validation failed");
|
|
87154
87475
|
if (!parsed.ok) {
|
|
87155
87476
|
return [parsed, { status: "invalid" }];
|
|
@@ -87233,12 +87554,12 @@ var init_projectsVerifyProjectDomain = __esm(() => {
|
|
|
87233
87554
|
});
|
|
87234
87555
|
|
|
87235
87556
|
// src/mcp-server/tools/projectsVerifyProjectDomain.ts
|
|
87236
|
-
var
|
|
87557
|
+
var args136, tool$projectsVerifyProjectDomain;
|
|
87237
87558
|
var init_projectsVerifyProjectDomain2 = __esm(() => {
|
|
87238
87559
|
init_projectsVerifyProjectDomain();
|
|
87239
87560
|
init_verifyprojectdomainop();
|
|
87240
87561
|
init_tools();
|
|
87241
|
-
|
|
87562
|
+
args136 = {
|
|
87242
87563
|
request: VerifyProjectDomainRequest$inboundSchema
|
|
87243
87564
|
};
|
|
87244
87565
|
tool$projectsVerifyProjectDomain = {
|
|
@@ -87246,9 +87567,9 @@ var init_projectsVerifyProjectDomain2 = __esm(() => {
|
|
|
87246
87567
|
description: `Verify project domain
|
|
87247
87568
|
|
|
87248
87569
|
Attempts to verify a project domain with \`verified = false\` by checking the correctness of the project domain's \`verification\` challenge.`,
|
|
87249
|
-
args:
|
|
87250
|
-
tool: async (client,
|
|
87251
|
-
const [result, apiCall] = await projectsVerifyProjectDomain(client,
|
|
87570
|
+
args: args136,
|
|
87571
|
+
tool: async (client, args137, ctx) => {
|
|
87572
|
+
const [result, apiCall] = await projectsVerifyProjectDomain(client, args137.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
87252
87573
|
if (!result.ok) {
|
|
87253
87574
|
return {
|
|
87254
87575
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -87512,9 +87833,9 @@ var init_addbypassipop = __esm(() => {
|
|
|
87512
87833
|
|
|
87513
87834
|
// src/funcs/securityAddBypassIp.ts
|
|
87514
87835
|
function securityAddBypassIp(client, request, options) {
|
|
87515
|
-
return new APIPromise($
|
|
87836
|
+
return new APIPromise($do138(client, request, options));
|
|
87516
87837
|
}
|
|
87517
|
-
async function $
|
|
87838
|
+
async function $do138(client, request, options) {
|
|
87518
87839
|
const parsed = safeParse(request, (value) => AddBypassIpRequest$outboundSchema.parse(value), "Input validation failed");
|
|
87519
87840
|
if (!parsed.ok) {
|
|
87520
87841
|
return [parsed, { status: "invalid" }];
|
|
@@ -87591,12 +87912,12 @@ var init_securityAddBypassIp = __esm(() => {
|
|
|
87591
87912
|
});
|
|
87592
87913
|
|
|
87593
87914
|
// src/mcp-server/tools/securityAddBypassIp.ts
|
|
87594
|
-
var
|
|
87915
|
+
var args137, tool$securityAddBypassIp;
|
|
87595
87916
|
var init_securityAddBypassIp2 = __esm(() => {
|
|
87596
87917
|
init_securityAddBypassIp();
|
|
87597
87918
|
init_addbypassipop();
|
|
87598
87919
|
init_tools();
|
|
87599
|
-
|
|
87920
|
+
args137 = {
|
|
87600
87921
|
request: AddBypassIpRequest$inboundSchema
|
|
87601
87922
|
};
|
|
87602
87923
|
tool$securityAddBypassIp = {
|
|
@@ -87604,9 +87925,9 @@ var init_securityAddBypassIp2 = __esm(() => {
|
|
|
87604
87925
|
description: `Create System Bypass Rule
|
|
87605
87926
|
|
|
87606
87927
|
Create new system bypass rules`,
|
|
87607
|
-
args:
|
|
87608
|
-
tool: async (client,
|
|
87609
|
-
const [result, apiCall] = await securityAddBypassIp(client,
|
|
87928
|
+
args: args137,
|
|
87929
|
+
tool: async (client, args138, ctx) => {
|
|
87930
|
+
const [result, apiCall] = await securityAddBypassIp(client, args138.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
87610
87931
|
if (!result.ok) {
|
|
87611
87932
|
return {
|
|
87612
87933
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -87748,9 +88069,9 @@ var init_getactiveattackstatusop = __esm(() => {
|
|
|
87748
88069
|
|
|
87749
88070
|
// src/funcs/securityGetActiveAttackStatus.ts
|
|
87750
88071
|
function securityGetActiveAttackStatus(client, request, options) {
|
|
87751
|
-
return new APIPromise($
|
|
88072
|
+
return new APIPromise($do139(client, request, options));
|
|
87752
88073
|
}
|
|
87753
|
-
async function $
|
|
88074
|
+
async function $do139(client, request, options) {
|
|
87754
88075
|
const parsed = safeParse(request, (value) => GetActiveAttackStatusRequest$outboundSchema.parse(value), "Input validation failed");
|
|
87755
88076
|
if (!parsed.ok) {
|
|
87756
88077
|
return [parsed, { status: "invalid" }];
|
|
@@ -87826,12 +88147,12 @@ var init_securityGetActiveAttackStatus = __esm(() => {
|
|
|
87826
88147
|
});
|
|
87827
88148
|
|
|
87828
88149
|
// src/mcp-server/tools/securityGetActiveAttackStatus.ts
|
|
87829
|
-
var
|
|
88150
|
+
var args138, tool$securityGetActiveAttackStatus;
|
|
87830
88151
|
var init_securityGetActiveAttackStatus2 = __esm(() => {
|
|
87831
88152
|
init_securityGetActiveAttackStatus();
|
|
87832
88153
|
init_getactiveattackstatusop();
|
|
87833
88154
|
init_tools();
|
|
87834
|
-
|
|
88155
|
+
args138 = {
|
|
87835
88156
|
request: GetActiveAttackStatusRequest$inboundSchema
|
|
87836
88157
|
};
|
|
87837
88158
|
tool$securityGetActiveAttackStatus = {
|
|
@@ -87839,9 +88160,9 @@ var init_securityGetActiveAttackStatus2 = __esm(() => {
|
|
|
87839
88160
|
description: `Read active attack data
|
|
87840
88161
|
|
|
87841
88162
|
Retrieve active attack data within the last 24h window`,
|
|
87842
|
-
args:
|
|
87843
|
-
tool: async (client,
|
|
87844
|
-
const [result, apiCall] = await securityGetActiveAttackStatus(client,
|
|
88163
|
+
args: args138,
|
|
88164
|
+
tool: async (client, args139, ctx) => {
|
|
88165
|
+
const [result, apiCall] = await securityGetActiveAttackStatus(client, args139.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
87845
88166
|
if (!result.ok) {
|
|
87846
88167
|
return {
|
|
87847
88168
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -88105,9 +88426,9 @@ var init_getbypassipop = __esm(() => {
|
|
|
88105
88426
|
|
|
88106
88427
|
// src/funcs/securityGetBypassIp.ts
|
|
88107
88428
|
function securityGetBypassIp(client, request, options) {
|
|
88108
|
-
return new APIPromise($
|
|
88429
|
+
return new APIPromise($do140(client, request, options));
|
|
88109
88430
|
}
|
|
88110
|
-
async function $
|
|
88431
|
+
async function $do140(client, request, options) {
|
|
88111
88432
|
const parsed = safeParse(request, (value) => GetBypassIpRequest$outboundSchema.parse(value), "Input validation failed");
|
|
88112
88433
|
if (!parsed.ok) {
|
|
88113
88434
|
return [parsed, { status: "invalid" }];
|
|
@@ -88188,12 +88509,12 @@ var init_securityGetBypassIp = __esm(() => {
|
|
|
88188
88509
|
});
|
|
88189
88510
|
|
|
88190
88511
|
// src/mcp-server/tools/securityGetBypassIp.ts
|
|
88191
|
-
var
|
|
88512
|
+
var args139, tool$securityGetBypassIp;
|
|
88192
88513
|
var init_securityGetBypassIp2 = __esm(() => {
|
|
88193
88514
|
init_securityGetBypassIp();
|
|
88194
88515
|
init_getbypassipop();
|
|
88195
88516
|
init_tools();
|
|
88196
|
-
|
|
88517
|
+
args139 = {
|
|
88197
88518
|
request: GetBypassIpRequest$inboundSchema
|
|
88198
88519
|
};
|
|
88199
88520
|
tool$securityGetBypassIp = {
|
|
@@ -88201,9 +88522,9 @@ var init_securityGetBypassIp2 = __esm(() => {
|
|
|
88201
88522
|
description: `Read System Bypass
|
|
88202
88523
|
|
|
88203
88524
|
Retrieve the system bypass rules configured for the specified project`,
|
|
88204
|
-
args:
|
|
88205
|
-
tool: async (client,
|
|
88206
|
-
const [result, apiCall] = await securityGetBypassIp(client,
|
|
88525
|
+
args: args139,
|
|
88526
|
+
tool: async (client, args140, ctx) => {
|
|
88527
|
+
const [result, apiCall] = await securityGetBypassIp(client, args140.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
88207
88528
|
if (!result.ok) {
|
|
88208
88529
|
return {
|
|
88209
88530
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -88807,9 +89128,9 @@ var init_getfirewallconfigop = __esm(() => {
|
|
|
88807
89128
|
|
|
88808
89129
|
// src/funcs/securityGetFirewallConfig.ts
|
|
88809
89130
|
function securityGetFirewallConfig(client, request, options) {
|
|
88810
|
-
return new APIPromise($
|
|
89131
|
+
return new APIPromise($do141(client, request, options));
|
|
88811
89132
|
}
|
|
88812
|
-
async function $
|
|
89133
|
+
async function $do141(client, request, options) {
|
|
88813
89134
|
const parsed = safeParse(request, (value) => GetFirewallConfigRequest$outboundSchema.parse(value), "Input validation failed");
|
|
88814
89135
|
if (!parsed.ok) {
|
|
88815
89136
|
return [parsed, { status: "invalid" }];
|
|
@@ -88891,12 +89212,12 @@ var init_securityGetFirewallConfig = __esm(() => {
|
|
|
88891
89212
|
});
|
|
88892
89213
|
|
|
88893
89214
|
// src/mcp-server/tools/securityGetFirewallConfig.ts
|
|
88894
|
-
var
|
|
89215
|
+
var args140, tool$securityGetFirewallConfig;
|
|
88895
89216
|
var init_securityGetFirewallConfig2 = __esm(() => {
|
|
88896
89217
|
init_securityGetFirewallConfig();
|
|
88897
89218
|
init_getfirewallconfigop();
|
|
88898
89219
|
init_tools();
|
|
88899
|
-
|
|
89220
|
+
args140 = {
|
|
88900
89221
|
request: GetFirewallConfigRequest$inboundSchema
|
|
88901
89222
|
};
|
|
88902
89223
|
tool$securityGetFirewallConfig = {
|
|
@@ -88904,9 +89225,9 @@ var init_securityGetFirewallConfig2 = __esm(() => {
|
|
|
88904
89225
|
description: `Read Firewall Configuration
|
|
88905
89226
|
|
|
88906
89227
|
Retrieve the specified firewall configuration for a project. The deployed configVersion will be \`active\``,
|
|
88907
|
-
args:
|
|
88908
|
-
tool: async (client,
|
|
88909
|
-
const [result, apiCall] = await securityGetFirewallConfig(client,
|
|
89228
|
+
args: args140,
|
|
89229
|
+
tool: async (client, args141, ctx) => {
|
|
89230
|
+
const [result, apiCall] = await securityGetFirewallConfig(client, args141.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
88910
89231
|
if (!result.ok) {
|
|
88911
89232
|
return {
|
|
88912
89233
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -89016,9 +89337,9 @@ var init_removebypassipop = __esm(() => {
|
|
|
89016
89337
|
|
|
89017
89338
|
// src/funcs/securityRemoveBypassIp.ts
|
|
89018
89339
|
function securityRemoveBypassIp(client, request, options) {
|
|
89019
|
-
return new APIPromise($
|
|
89340
|
+
return new APIPromise($do142(client, request, options));
|
|
89020
89341
|
}
|
|
89021
|
-
async function $
|
|
89342
|
+
async function $do142(client, request, options) {
|
|
89022
89343
|
const parsed = safeParse(request, (value) => RemoveBypassIpRequest$outboundSchema.parse(value), "Input validation failed");
|
|
89023
89344
|
if (!parsed.ok) {
|
|
89024
89345
|
return [parsed, { status: "invalid" }];
|
|
@@ -89095,12 +89416,12 @@ var init_securityRemoveBypassIp = __esm(() => {
|
|
|
89095
89416
|
});
|
|
89096
89417
|
|
|
89097
89418
|
// src/mcp-server/tools/securityRemoveBypassIp.ts
|
|
89098
|
-
var
|
|
89419
|
+
var args141, tool$securityRemoveBypassIp;
|
|
89099
89420
|
var init_securityRemoveBypassIp2 = __esm(() => {
|
|
89100
89421
|
init_securityRemoveBypassIp();
|
|
89101
89422
|
init_removebypassipop();
|
|
89102
89423
|
init_tools();
|
|
89103
|
-
|
|
89424
|
+
args141 = {
|
|
89104
89425
|
request: RemoveBypassIpRequest$inboundSchema
|
|
89105
89426
|
};
|
|
89106
89427
|
tool$securityRemoveBypassIp = {
|
|
@@ -89108,9 +89429,9 @@ var init_securityRemoveBypassIp2 = __esm(() => {
|
|
|
89108
89429
|
description: `Remove System Bypass Rule
|
|
89109
89430
|
|
|
89110
89431
|
Remove system bypass rules`,
|
|
89111
|
-
args:
|
|
89112
|
-
tool: async (client,
|
|
89113
|
-
const [result, apiCall] = await securityRemoveBypassIp(client,
|
|
89432
|
+
args: args141,
|
|
89433
|
+
tool: async (client, args142, ctx) => {
|
|
89434
|
+
const [result, apiCall] = await securityRemoveBypassIp(client, args142.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
89114
89435
|
if (!result.ok) {
|
|
89115
89436
|
return {
|
|
89116
89437
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -89180,9 +89501,9 @@ var init_updateattackchallengemodeop = __esm(() => {
|
|
|
89180
89501
|
|
|
89181
89502
|
// src/funcs/securityUpdateAttackChallengeMode.ts
|
|
89182
89503
|
function securityUpdateAttackChallengeMode(client, request, options) {
|
|
89183
|
-
return new APIPromise($
|
|
89504
|
+
return new APIPromise($do143(client, request, options));
|
|
89184
89505
|
}
|
|
89185
|
-
async function $
|
|
89506
|
+
async function $do143(client, request, options) {
|
|
89186
89507
|
const parsed = safeParse(request, (value) => UpdateAttackChallengeModeRequest$outboundSchema.parse(value), "Input validation failed");
|
|
89187
89508
|
if (!parsed.ok) {
|
|
89188
89509
|
return [parsed, { status: "invalid" }];
|
|
@@ -89258,12 +89579,12 @@ var init_securityUpdateAttackChallengeMode = __esm(() => {
|
|
|
89258
89579
|
});
|
|
89259
89580
|
|
|
89260
89581
|
// src/mcp-server/tools/securityUpdateAttackChallengeMode.ts
|
|
89261
|
-
var
|
|
89582
|
+
var args142, tool$securityUpdateAttackChallengeMode;
|
|
89262
89583
|
var init_securityUpdateAttackChallengeMode2 = __esm(() => {
|
|
89263
89584
|
init_securityUpdateAttackChallengeMode();
|
|
89264
89585
|
init_updateattackchallengemodeop();
|
|
89265
89586
|
init_tools();
|
|
89266
|
-
|
|
89587
|
+
args142 = {
|
|
89267
89588
|
request: UpdateAttackChallengeModeRequest$inboundSchema
|
|
89268
89589
|
};
|
|
89269
89590
|
tool$securityUpdateAttackChallengeMode = {
|
|
@@ -89271,9 +89592,9 @@ var init_securityUpdateAttackChallengeMode2 = __esm(() => {
|
|
|
89271
89592
|
description: `Update Attack Challenge mode
|
|
89272
89593
|
|
|
89273
89594
|
Update the setting for determining if the project has Attack Challenge mode enabled.`,
|
|
89274
|
-
args:
|
|
89275
|
-
tool: async (client,
|
|
89276
|
-
const [result, apiCall] = await securityUpdateAttackChallengeMode(client,
|
|
89595
|
+
args: args142,
|
|
89596
|
+
tool: async (client, args143, ctx) => {
|
|
89597
|
+
const [result, apiCall] = await securityUpdateAttackChallengeMode(client, args143.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
89277
89598
|
if (!result.ok) {
|
|
89278
89599
|
return {
|
|
89279
89600
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -90249,9 +90570,9 @@ var init_updatefirewallconfigop = __esm(() => {
|
|
|
90249
90570
|
|
|
90250
90571
|
// src/funcs/securityUpdateFirewallConfig.ts
|
|
90251
90572
|
function securityUpdateFirewallConfig(client, request, options) {
|
|
90252
|
-
return new APIPromise($
|
|
90573
|
+
return new APIPromise($do144(client, request, options));
|
|
90253
90574
|
}
|
|
90254
|
-
async function $
|
|
90575
|
+
async function $do144(client, request, options) {
|
|
90255
90576
|
const parsed = safeParse(request, (value) => UpdateFirewallConfigRequest$outboundSchema.parse(value), "Input validation failed");
|
|
90256
90577
|
if (!parsed.ok) {
|
|
90257
90578
|
return [parsed, { status: "invalid" }];
|
|
@@ -90328,12 +90649,12 @@ var init_securityUpdateFirewallConfig = __esm(() => {
|
|
|
90328
90649
|
});
|
|
90329
90650
|
|
|
90330
90651
|
// src/mcp-server/tools/securityUpdateFirewallConfig.ts
|
|
90331
|
-
var
|
|
90652
|
+
var args143, tool$securityUpdateFirewallConfig;
|
|
90332
90653
|
var init_securityUpdateFirewallConfig2 = __esm(() => {
|
|
90333
90654
|
init_securityUpdateFirewallConfig();
|
|
90334
90655
|
init_updatefirewallconfigop();
|
|
90335
90656
|
init_tools();
|
|
90336
|
-
|
|
90657
|
+
args143 = {
|
|
90337
90658
|
request: UpdateFirewallConfigRequest$inboundSchema
|
|
90338
90659
|
};
|
|
90339
90660
|
tool$securityUpdateFirewallConfig = {
|
|
@@ -90341,9 +90662,9 @@ var init_securityUpdateFirewallConfig2 = __esm(() => {
|
|
|
90341
90662
|
description: `Update Firewall Configuration
|
|
90342
90663
|
|
|
90343
90664
|
Process updates to modify the existing firewall config for a project`,
|
|
90344
|
-
args:
|
|
90345
|
-
tool: async (client,
|
|
90346
|
-
const [result, apiCall] = await securityUpdateFirewallConfig(client,
|
|
90665
|
+
args: args143,
|
|
90666
|
+
tool: async (client, args144, ctx) => {
|
|
90667
|
+
const [result, apiCall] = await securityUpdateFirewallConfig(client, args144.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
90347
90668
|
if (!result.ok) {
|
|
90348
90669
|
return {
|
|
90349
90670
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -90430,9 +90751,9 @@ var init_createteamop = __esm(() => {
|
|
|
90430
90751
|
|
|
90431
90752
|
// src/funcs/teamsCreateTeam.ts
|
|
90432
90753
|
function teamsCreateTeam(client, request, options) {
|
|
90433
|
-
return new APIPromise($
|
|
90754
|
+
return new APIPromise($do145(client, request, options));
|
|
90434
90755
|
}
|
|
90435
|
-
async function $
|
|
90756
|
+
async function $do145(client, request, options) {
|
|
90436
90757
|
const parsed = safeParse(request, (value) => CreateTeamRequestBody$outboundSchema.parse(value), "Input validation failed");
|
|
90437
90758
|
if (!parsed.ok) {
|
|
90438
90759
|
return [parsed, { status: "invalid" }];
|
|
@@ -90502,12 +90823,12 @@ var init_teamsCreateTeam = __esm(() => {
|
|
|
90502
90823
|
});
|
|
90503
90824
|
|
|
90504
90825
|
// src/mcp-server/tools/teamsCreateTeam.ts
|
|
90505
|
-
var
|
|
90826
|
+
var args144, tool$teamsCreateTeam;
|
|
90506
90827
|
var init_teamsCreateTeam2 = __esm(() => {
|
|
90507
90828
|
init_teamsCreateTeam();
|
|
90508
90829
|
init_createteamop();
|
|
90509
90830
|
init_tools();
|
|
90510
|
-
|
|
90831
|
+
args144 = {
|
|
90511
90832
|
request: CreateTeamRequestBody$inboundSchema
|
|
90512
90833
|
};
|
|
90513
90834
|
tool$teamsCreateTeam = {
|
|
@@ -90515,9 +90836,9 @@ var init_teamsCreateTeam2 = __esm(() => {
|
|
|
90515
90836
|
description: `Create a Team
|
|
90516
90837
|
|
|
90517
90838
|
Create a new Team under your account. You need to send a POST request with the desired Team slug, and optionally the Team name.`,
|
|
90518
|
-
args:
|
|
90519
|
-
tool: async (client,
|
|
90520
|
-
const [result, apiCall] = await teamsCreateTeam(client,
|
|
90839
|
+
args: args144,
|
|
90840
|
+
tool: async (client, args145, ctx) => {
|
|
90841
|
+
const [result, apiCall] = await teamsCreateTeam(client, args145.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
90521
90842
|
if (!result.ok) {
|
|
90522
90843
|
return {
|
|
90523
90844
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -90597,9 +90918,9 @@ var init_deleteteamop = __esm(() => {
|
|
|
90597
90918
|
|
|
90598
90919
|
// src/funcs/teamsDeleteTeam.ts
|
|
90599
90920
|
function teamsDeleteTeam(client, request, options) {
|
|
90600
|
-
return new APIPromise($
|
|
90921
|
+
return new APIPromise($do146(client, request, options));
|
|
90601
90922
|
}
|
|
90602
|
-
async function $
|
|
90923
|
+
async function $do146(client, request, options) {
|
|
90603
90924
|
const parsed = safeParse(request, (value) => DeleteTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
90604
90925
|
if (!parsed.ok) {
|
|
90605
90926
|
return [parsed, { status: "invalid" }];
|
|
@@ -90681,12 +91002,12 @@ var init_teamsDeleteTeam = __esm(() => {
|
|
|
90681
91002
|
});
|
|
90682
91003
|
|
|
90683
91004
|
// src/mcp-server/tools/teamsDeleteTeam.ts
|
|
90684
|
-
var
|
|
91005
|
+
var args145, tool$teamsDeleteTeam;
|
|
90685
91006
|
var init_teamsDeleteTeam2 = __esm(() => {
|
|
90686
91007
|
init_teamsDeleteTeam();
|
|
90687
91008
|
init_deleteteamop();
|
|
90688
91009
|
init_tools();
|
|
90689
|
-
|
|
91010
|
+
args145 = {
|
|
90690
91011
|
request: DeleteTeamRequest$inboundSchema
|
|
90691
91012
|
};
|
|
90692
91013
|
tool$teamsDeleteTeam = {
|
|
@@ -90694,9 +91015,9 @@ var init_teamsDeleteTeam2 = __esm(() => {
|
|
|
90694
91015
|
description: `Delete a Team
|
|
90695
91016
|
|
|
90696
91017
|
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.`,
|
|
90697
|
-
args:
|
|
90698
|
-
tool: async (client,
|
|
90699
|
-
const [result, apiCall] = await teamsDeleteTeam(client,
|
|
91018
|
+
args: args145,
|
|
91019
|
+
tool: async (client, args146, ctx) => {
|
|
91020
|
+
const [result, apiCall] = await teamsDeleteTeam(client, args146.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
90700
91021
|
if (!result.ok) {
|
|
90701
91022
|
return {
|
|
90702
91023
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -90739,9 +91060,9 @@ var init_deleteteaminvitecodeop = __esm(() => {
|
|
|
90739
91060
|
|
|
90740
91061
|
// src/funcs/teamsDeleteTeamInviteCode.ts
|
|
90741
91062
|
function teamsDeleteTeamInviteCode(client, request, options) {
|
|
90742
|
-
return new APIPromise($
|
|
91063
|
+
return new APIPromise($do147(client, request, options));
|
|
90743
91064
|
}
|
|
90744
|
-
async function $
|
|
91065
|
+
async function $do147(client, request, options) {
|
|
90745
91066
|
const parsed = safeParse(request, (value) => DeleteTeamInviteCodeRequest$outboundSchema.parse(value), "Input validation failed");
|
|
90746
91067
|
if (!parsed.ok) {
|
|
90747
91068
|
return [parsed, { status: "invalid" }];
|
|
@@ -90821,12 +91142,12 @@ var init_teamsDeleteTeamInviteCode = __esm(() => {
|
|
|
90821
91142
|
});
|
|
90822
91143
|
|
|
90823
91144
|
// src/mcp-server/tools/teamsDeleteTeamInviteCode.ts
|
|
90824
|
-
var
|
|
91145
|
+
var args146, tool$teamsDeleteTeamInviteCode;
|
|
90825
91146
|
var init_teamsDeleteTeamInviteCode2 = __esm(() => {
|
|
90826
91147
|
init_teamsDeleteTeamInviteCode();
|
|
90827
91148
|
init_deleteteaminvitecodeop();
|
|
90828
91149
|
init_tools();
|
|
90829
|
-
|
|
91150
|
+
args146 = {
|
|
90830
91151
|
request: DeleteTeamInviteCodeRequest$inboundSchema
|
|
90831
91152
|
};
|
|
90832
91153
|
tool$teamsDeleteTeamInviteCode = {
|
|
@@ -90834,9 +91155,9 @@ var init_teamsDeleteTeamInviteCode2 = __esm(() => {
|
|
|
90834
91155
|
description: `Delete a Team invite code
|
|
90835
91156
|
|
|
90836
91157
|
Delete an active Team invite code.`,
|
|
90837
|
-
args:
|
|
90838
|
-
tool: async (client,
|
|
90839
|
-
const [result, apiCall] = await teamsDeleteTeamInviteCode(client,
|
|
91158
|
+
args: args146,
|
|
91159
|
+
tool: async (client, args147, ctx) => {
|
|
91160
|
+
const [result, apiCall] = await teamsDeleteTeamInviteCode(client, args147.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
90840
91161
|
if (!result.ok) {
|
|
90841
91162
|
return {
|
|
90842
91163
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -90869,9 +91190,9 @@ var init_getteamop = __esm(() => {
|
|
|
90869
91190
|
|
|
90870
91191
|
// src/funcs/teamsGetTeam.ts
|
|
90871
91192
|
function teamsGetTeam(client, request, options) {
|
|
90872
|
-
return new APIPromise($
|
|
91193
|
+
return new APIPromise($do148(client, request, options));
|
|
90873
91194
|
}
|
|
90874
|
-
async function $
|
|
91195
|
+
async function $do148(client, request, options) {
|
|
90875
91196
|
const parsed = safeParse(request, (value) => GetTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
90876
91197
|
if (!parsed.ok) {
|
|
90877
91198
|
return [parsed, { status: "invalid" }];
|
|
@@ -90952,12 +91273,12 @@ var init_teamsGetTeam = __esm(() => {
|
|
|
90952
91273
|
});
|
|
90953
91274
|
|
|
90954
91275
|
// src/mcp-server/tools/teamsGetTeam.ts
|
|
90955
|
-
var
|
|
91276
|
+
var args147, tool$teamsGetTeam;
|
|
90956
91277
|
var init_teamsGetTeam2 = __esm(() => {
|
|
90957
91278
|
init_teamsGetTeam();
|
|
90958
91279
|
init_getteamop();
|
|
90959
91280
|
init_tools();
|
|
90960
|
-
|
|
91281
|
+
args147 = {
|
|
90961
91282
|
request: GetTeamRequest$inboundSchema
|
|
90962
91283
|
};
|
|
90963
91284
|
tool$teamsGetTeam = {
|
|
@@ -90965,9 +91286,9 @@ var init_teamsGetTeam2 = __esm(() => {
|
|
|
90965
91286
|
description: `Get a Team
|
|
90966
91287
|
|
|
90967
91288
|
Get information for the Team specified by the \`teamId\` parameter.`,
|
|
90968
|
-
args:
|
|
90969
|
-
tool: async (client,
|
|
90970
|
-
const [result, apiCall] = await teamsGetTeam(client,
|
|
91289
|
+
args: args147,
|
|
91290
|
+
tool: async (client, args148, ctx) => {
|
|
91291
|
+
const [result, apiCall] = await teamsGetTeam(client, args148.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
90971
91292
|
if (!result.ok) {
|
|
90972
91293
|
return {
|
|
90973
91294
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -91109,9 +91430,9 @@ var init_getteamaccessrequestop = __esm(() => {
|
|
|
91109
91430
|
|
|
91110
91431
|
// src/funcs/teamsGetTeamAccessRequest.ts
|
|
91111
91432
|
function teamsGetTeamAccessRequest(client, request, options) {
|
|
91112
|
-
return new APIPromise($
|
|
91433
|
+
return new APIPromise($do149(client, request, options));
|
|
91113
91434
|
}
|
|
91114
|
-
async function $
|
|
91435
|
+
async function $do149(client, request, options) {
|
|
91115
91436
|
const parsed = safeParse(request, (value) => GetTeamAccessRequestRequest$outboundSchema.parse(value), "Input validation failed");
|
|
91116
91437
|
if (!parsed.ok) {
|
|
91117
91438
|
return [parsed, { status: "invalid" }];
|
|
@@ -91191,12 +91512,12 @@ var init_teamsGetTeamAccessRequest = __esm(() => {
|
|
|
91191
91512
|
});
|
|
91192
91513
|
|
|
91193
91514
|
// src/mcp-server/tools/teamsGetTeamAccessRequest.ts
|
|
91194
|
-
var
|
|
91515
|
+
var args148, tool$teamsGetTeamAccessRequest;
|
|
91195
91516
|
var init_teamsGetTeamAccessRequest2 = __esm(() => {
|
|
91196
91517
|
init_teamsGetTeamAccessRequest();
|
|
91197
91518
|
init_getteamaccessrequestop();
|
|
91198
91519
|
init_tools();
|
|
91199
|
-
|
|
91520
|
+
args148 = {
|
|
91200
91521
|
request: GetTeamAccessRequestRequest$inboundSchema
|
|
91201
91522
|
};
|
|
91202
91523
|
tool$teamsGetTeamAccessRequest = {
|
|
@@ -91204,9 +91525,9 @@ var init_teamsGetTeamAccessRequest2 = __esm(() => {
|
|
|
91204
91525
|
description: `Get access request status
|
|
91205
91526
|
|
|
91206
91527
|
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.`,
|
|
91207
|
-
args:
|
|
91208
|
-
tool: async (client,
|
|
91209
|
-
const [result, apiCall] = await teamsGetTeamAccessRequest(client,
|
|
91528
|
+
args: args148,
|
|
91529
|
+
tool: async (client, args149, ctx) => {
|
|
91530
|
+
const [result, apiCall] = await teamsGetTeamAccessRequest(client, args149.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
91210
91531
|
if (!result.ok) {
|
|
91211
91532
|
return {
|
|
91212
91533
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -91506,9 +91827,9 @@ var init_getteammembersop = __esm(() => {
|
|
|
91506
91827
|
|
|
91507
91828
|
// src/funcs/teamsGetTeamMembers.ts
|
|
91508
91829
|
function teamsGetTeamMembers(client, request, options) {
|
|
91509
|
-
return new APIPromise($
|
|
91830
|
+
return new APIPromise($do150(client, request, options));
|
|
91510
91831
|
}
|
|
91511
|
-
async function $
|
|
91832
|
+
async function $do150(client, request, options) {
|
|
91512
91833
|
const parsed = safeParse(request, (value) => GetTeamMembersRequest$outboundSchema.parse(value), "Input validation failed");
|
|
91513
91834
|
if (!parsed.ok) {
|
|
91514
91835
|
return [parsed, { status: "invalid" }];
|
|
@@ -91588,12 +91909,12 @@ var init_teamsGetTeamMembers = __esm(() => {
|
|
|
91588
91909
|
});
|
|
91589
91910
|
|
|
91590
91911
|
// src/mcp-server/tools/teamsGetTeamMembers.ts
|
|
91591
|
-
var
|
|
91912
|
+
var args149, tool$teamsGetTeamMembers;
|
|
91592
91913
|
var init_teamsGetTeamMembers2 = __esm(() => {
|
|
91593
91914
|
init_teamsGetTeamMembers();
|
|
91594
91915
|
init_getteammembersop();
|
|
91595
91916
|
init_tools();
|
|
91596
|
-
|
|
91917
|
+
args149 = {
|
|
91597
91918
|
request: GetTeamMembersRequest$inboundSchema
|
|
91598
91919
|
};
|
|
91599
91920
|
tool$teamsGetTeamMembers = {
|
|
@@ -91601,9 +91922,9 @@ var init_teamsGetTeamMembers2 = __esm(() => {
|
|
|
91601
91922
|
description: `List team members
|
|
91602
91923
|
|
|
91603
91924
|
Get a paginated list of team members for the provided team.`,
|
|
91604
|
-
args:
|
|
91605
|
-
tool: async (client,
|
|
91606
|
-
const [result, apiCall] = await teamsGetTeamMembers(client,
|
|
91925
|
+
args: args149,
|
|
91926
|
+
tool: async (client, args150, ctx) => {
|
|
91927
|
+
const [result, apiCall] = await teamsGetTeamMembers(client, args150.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
91607
91928
|
if (!result.ok) {
|
|
91608
91929
|
return {
|
|
91609
91930
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -91878,9 +92199,9 @@ var init_getteamsop = __esm(() => {
|
|
|
91878
92199
|
|
|
91879
92200
|
// src/funcs/teamsGetTeams.ts
|
|
91880
92201
|
function teamsGetTeams(client, request, options) {
|
|
91881
|
-
return new APIPromise($
|
|
92202
|
+
return new APIPromise($do151(client, request, options));
|
|
91882
92203
|
}
|
|
91883
|
-
async function $
|
|
92204
|
+
async function $do151(client, request, options) {
|
|
91884
92205
|
const parsed = safeParse(request, (value) => GetTeamsRequest$outboundSchema.parse(value), "Input validation failed");
|
|
91885
92206
|
if (!parsed.ok) {
|
|
91886
92207
|
return [parsed, { status: "invalid" }];
|
|
@@ -91955,12 +92276,12 @@ var init_teamsGetTeams = __esm(() => {
|
|
|
91955
92276
|
});
|
|
91956
92277
|
|
|
91957
92278
|
// src/mcp-server/tools/teamsGetTeams.ts
|
|
91958
|
-
var
|
|
92279
|
+
var args150, tool$teamsGetTeams;
|
|
91959
92280
|
var init_teamsGetTeams2 = __esm(() => {
|
|
91960
92281
|
init_teamsGetTeams();
|
|
91961
92282
|
init_getteamsop();
|
|
91962
92283
|
init_tools();
|
|
91963
|
-
|
|
92284
|
+
args150 = {
|
|
91964
92285
|
request: GetTeamsRequest$inboundSchema
|
|
91965
92286
|
};
|
|
91966
92287
|
tool$teamsGetTeams = {
|
|
@@ -91968,9 +92289,9 @@ var init_teamsGetTeams2 = __esm(() => {
|
|
|
91968
92289
|
description: `List all teams
|
|
91969
92290
|
|
|
91970
92291
|
Get a paginated list of all the Teams the authenticated User is a member of.`,
|
|
91971
|
-
args:
|
|
91972
|
-
tool: async (client,
|
|
91973
|
-
const [result, apiCall] = await teamsGetTeams(client,
|
|
92292
|
+
args: args150,
|
|
92293
|
+
tool: async (client, args151, ctx) => {
|
|
92294
|
+
const [result, apiCall] = await teamsGetTeams(client, args151.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
91974
92295
|
if (!result.ok) {
|
|
91975
92296
|
return {
|
|
91976
92297
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -92202,9 +92523,9 @@ var init_inviteusertoteamop = __esm(() => {
|
|
|
92202
92523
|
|
|
92203
92524
|
// src/funcs/teamsInviteUserToTeam.ts
|
|
92204
92525
|
function teamsInviteUserToTeam(client, request, options) {
|
|
92205
|
-
return new APIPromise($
|
|
92526
|
+
return new APIPromise($do152(client, request, options));
|
|
92206
92527
|
}
|
|
92207
|
-
async function $
|
|
92528
|
+
async function $do152(client, request, options) {
|
|
92208
92529
|
const parsed = safeParse(request, (value) => InviteUserToTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
92209
92530
|
if (!parsed.ok) {
|
|
92210
92531
|
return [parsed, { status: "invalid" }];
|
|
@@ -92281,12 +92602,12 @@ var init_teamsInviteUserToTeam = __esm(() => {
|
|
|
92281
92602
|
});
|
|
92282
92603
|
|
|
92283
92604
|
// src/mcp-server/tools/teamsInviteUserToTeam.ts
|
|
92284
|
-
var
|
|
92605
|
+
var args151, tool$teamsInviteUserToTeam;
|
|
92285
92606
|
var init_teamsInviteUserToTeam2 = __esm(() => {
|
|
92286
92607
|
init_teamsInviteUserToTeam();
|
|
92287
92608
|
init_inviteusertoteamop();
|
|
92288
92609
|
init_tools();
|
|
92289
|
-
|
|
92610
|
+
args151 = {
|
|
92290
92611
|
request: InviteUserToTeamRequest$inboundSchema
|
|
92291
92612
|
};
|
|
92292
92613
|
tool$teamsInviteUserToTeam = {
|
|
@@ -92294,9 +92615,9 @@ var init_teamsInviteUserToTeam2 = __esm(() => {
|
|
|
92294
92615
|
description: `Invite a user
|
|
92295
92616
|
|
|
92296
92617
|
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.`,
|
|
92297
|
-
args:
|
|
92298
|
-
tool: async (client,
|
|
92299
|
-
const [result, apiCall] = await teamsInviteUserToTeam(client,
|
|
92618
|
+
args: args151,
|
|
92619
|
+
tool: async (client, args152, ctx) => {
|
|
92620
|
+
const [result, apiCall] = await teamsInviteUserToTeam(client, args152.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
92300
92621
|
if (!result.ok) {
|
|
92301
92622
|
return {
|
|
92302
92623
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -92364,9 +92685,9 @@ var init_jointeamop = __esm(() => {
|
|
|
92364
92685
|
|
|
92365
92686
|
// src/funcs/teamsJoinTeam.ts
|
|
92366
92687
|
function teamsJoinTeam(client, request, options) {
|
|
92367
|
-
return new APIPromise($
|
|
92688
|
+
return new APIPromise($do153(client, request, options));
|
|
92368
92689
|
}
|
|
92369
|
-
async function $
|
|
92690
|
+
async function $do153(client, request, options) {
|
|
92370
92691
|
const parsed = safeParse(request, (value) => JoinTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
92371
92692
|
if (!parsed.ok) {
|
|
92372
92693
|
return [parsed, { status: "invalid" }];
|
|
@@ -92443,12 +92764,12 @@ var init_teamsJoinTeam = __esm(() => {
|
|
|
92443
92764
|
});
|
|
92444
92765
|
|
|
92445
92766
|
// src/mcp-server/tools/teamsJoinTeam.ts
|
|
92446
|
-
var
|
|
92767
|
+
var args152, tool$teamsJoinTeam;
|
|
92447
92768
|
var init_teamsJoinTeam2 = __esm(() => {
|
|
92448
92769
|
init_teamsJoinTeam();
|
|
92449
92770
|
init_jointeamop();
|
|
92450
92771
|
init_tools();
|
|
92451
|
-
|
|
92772
|
+
args152 = {
|
|
92452
92773
|
request: JoinTeamRequest$inboundSchema
|
|
92453
92774
|
};
|
|
92454
92775
|
tool$teamsJoinTeam = {
|
|
@@ -92456,9 +92777,9 @@ var init_teamsJoinTeam2 = __esm(() => {
|
|
|
92456
92777
|
description: `Join a team
|
|
92457
92778
|
|
|
92458
92779
|
Join a team with a provided invite code or team ID.`,
|
|
92459
|
-
args:
|
|
92460
|
-
tool: async (client,
|
|
92461
|
-
const [result, apiCall] = await teamsJoinTeam(client,
|
|
92780
|
+
args: args152,
|
|
92781
|
+
tool: async (client, args153, ctx) => {
|
|
92782
|
+
const [result, apiCall] = await teamsJoinTeam(client, args153.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
92462
92783
|
if (!result.ok) {
|
|
92463
92784
|
return {
|
|
92464
92785
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -92591,9 +92912,9 @@ var init_patchteamop = __esm(() => {
|
|
|
92591
92912
|
|
|
92592
92913
|
// src/funcs/teamsPatchTeam.ts
|
|
92593
92914
|
function teamsPatchTeam(client, request, options) {
|
|
92594
|
-
return new APIPromise($
|
|
92915
|
+
return new APIPromise($do154(client, request, options));
|
|
92595
92916
|
}
|
|
92596
|
-
async function $
|
|
92917
|
+
async function $do154(client, request, options) {
|
|
92597
92918
|
const parsed = safeParse(request, (value) => PatchTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
92598
92919
|
if (!parsed.ok) {
|
|
92599
92920
|
return [parsed, { status: "invalid" }];
|
|
@@ -92675,12 +92996,12 @@ var init_teamsPatchTeam = __esm(() => {
|
|
|
92675
92996
|
});
|
|
92676
92997
|
|
|
92677
92998
|
// src/mcp-server/tools/teamsPatchTeam.ts
|
|
92678
|
-
var
|
|
92999
|
+
var args153, tool$teamsPatchTeam;
|
|
92679
93000
|
var init_teamsPatchTeam2 = __esm(() => {
|
|
92680
93001
|
init_teamsPatchTeam();
|
|
92681
93002
|
init_patchteamop();
|
|
92682
93003
|
init_tools();
|
|
92683
|
-
|
|
93004
|
+
args153 = {
|
|
92684
93005
|
request: PatchTeamRequest$inboundSchema
|
|
92685
93006
|
};
|
|
92686
93007
|
tool$teamsPatchTeam = {
|
|
@@ -92688,9 +93009,9 @@ var init_teamsPatchTeam2 = __esm(() => {
|
|
|
92688
93009
|
description: `Update a Team
|
|
92689
93010
|
|
|
92690
93011
|
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.`,
|
|
92691
|
-
args:
|
|
92692
|
-
tool: async (client,
|
|
92693
|
-
const [result, apiCall] = await teamsPatchTeam(client,
|
|
93012
|
+
args: args153,
|
|
93013
|
+
tool: async (client, args154, ctx) => {
|
|
93014
|
+
const [result, apiCall] = await teamsPatchTeam(client, args154.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
92694
93015
|
if (!result.ok) {
|
|
92695
93016
|
return {
|
|
92696
93017
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -92735,9 +93056,9 @@ var init_removeteammemberop = __esm(() => {
|
|
|
92735
93056
|
|
|
92736
93057
|
// src/funcs/teamsRemoveTeamMember.ts
|
|
92737
93058
|
function teamsRemoveTeamMember(client, request, options) {
|
|
92738
|
-
return new APIPromise($
|
|
93059
|
+
return new APIPromise($do155(client, request, options));
|
|
92739
93060
|
}
|
|
92740
|
-
async function $
|
|
93061
|
+
async function $do155(client, request, options) {
|
|
92741
93062
|
const parsed = safeParse(request, (value) => RemoveTeamMemberRequest$outboundSchema.parse(value), "Input validation failed");
|
|
92742
93063
|
if (!parsed.ok) {
|
|
92743
93064
|
return [parsed, { status: "invalid" }];
|
|
@@ -92821,12 +93142,12 @@ var init_teamsRemoveTeamMember = __esm(() => {
|
|
|
92821
93142
|
});
|
|
92822
93143
|
|
|
92823
93144
|
// src/mcp-server/tools/teamsRemoveTeamMember.ts
|
|
92824
|
-
var
|
|
93145
|
+
var args154, tool$teamsRemoveTeamMember;
|
|
92825
93146
|
var init_teamsRemoveTeamMember2 = __esm(() => {
|
|
92826
93147
|
init_teamsRemoveTeamMember();
|
|
92827
93148
|
init_removeteammemberop();
|
|
92828
93149
|
init_tools();
|
|
92829
|
-
|
|
93150
|
+
args154 = {
|
|
92830
93151
|
request: RemoveTeamMemberRequest$inboundSchema
|
|
92831
93152
|
};
|
|
92832
93153
|
tool$teamsRemoveTeamMember = {
|
|
@@ -92834,9 +93155,9 @@ var init_teamsRemoveTeamMember2 = __esm(() => {
|
|
|
92834
93155
|
description: `Remove a Team Member
|
|
92835
93156
|
|
|
92836
93157
|
Remove a Team Member from the Team, or dismiss a user that requested access, or leave a team.`,
|
|
92837
|
-
args:
|
|
92838
|
-
tool: async (client,
|
|
92839
|
-
const [result, apiCall] = await teamsRemoveTeamMember(client,
|
|
93158
|
+
args: args154,
|
|
93159
|
+
tool: async (client, args155, ctx) => {
|
|
93160
|
+
const [result, apiCall] = await teamsRemoveTeamMember(client, args155.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
92840
93161
|
if (!result.ok) {
|
|
92841
93162
|
return {
|
|
92842
93163
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -93038,9 +93359,9 @@ var init_requestaccesstoteamop = __esm(() => {
|
|
|
93038
93359
|
|
|
93039
93360
|
// src/funcs/teamsRequestAccessToTeam.ts
|
|
93040
93361
|
function teamsRequestAccessToTeam(client, request, options) {
|
|
93041
|
-
return new APIPromise($
|
|
93362
|
+
return new APIPromise($do156(client, request, options));
|
|
93042
93363
|
}
|
|
93043
|
-
async function $
|
|
93364
|
+
async function $do156(client, request, options) {
|
|
93044
93365
|
const parsed = safeParse(request, (value) => RequestAccessToTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
93045
93366
|
if (!parsed.ok) {
|
|
93046
93367
|
return [parsed, { status: "invalid" }];
|
|
@@ -93117,12 +93438,12 @@ var init_teamsRequestAccessToTeam = __esm(() => {
|
|
|
93117
93438
|
});
|
|
93118
93439
|
|
|
93119
93440
|
// src/mcp-server/tools/teamsRequestAccessToTeam.ts
|
|
93120
|
-
var
|
|
93441
|
+
var args155, tool$teamsRequestAccessToTeam;
|
|
93121
93442
|
var init_teamsRequestAccessToTeam2 = __esm(() => {
|
|
93122
93443
|
init_teamsRequestAccessToTeam();
|
|
93123
93444
|
init_requestaccesstoteamop();
|
|
93124
93445
|
init_tools();
|
|
93125
|
-
|
|
93446
|
+
args155 = {
|
|
93126
93447
|
request: RequestAccessToTeamRequest$inboundSchema
|
|
93127
93448
|
};
|
|
93128
93449
|
tool$teamsRequestAccessToTeam = {
|
|
@@ -93130,9 +93451,9 @@ var init_teamsRequestAccessToTeam2 = __esm(() => {
|
|
|
93130
93451
|
description: `Request access to a team
|
|
93131
93452
|
|
|
93132
93453
|
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.`,
|
|
93133
|
-
args:
|
|
93134
|
-
tool: async (client,
|
|
93135
|
-
const [result, apiCall] = await teamsRequestAccessToTeam(client,
|
|
93454
|
+
args: args155,
|
|
93455
|
+
tool: async (client, args156, ctx) => {
|
|
93456
|
+
const [result, apiCall] = await teamsRequestAccessToTeam(client, args156.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
93136
93457
|
if (!result.ok) {
|
|
93137
93458
|
return {
|
|
93138
93459
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -93235,9 +93556,9 @@ var init_updateteammemberop = __esm(() => {
|
|
|
93235
93556
|
|
|
93236
93557
|
// src/funcs/teamsUpdateTeamMember.ts
|
|
93237
93558
|
function teamsUpdateTeamMember(client, request, options) {
|
|
93238
|
-
return new APIPromise($
|
|
93559
|
+
return new APIPromise($do157(client, request, options));
|
|
93239
93560
|
}
|
|
93240
|
-
async function $
|
|
93561
|
+
async function $do157(client, request, options) {
|
|
93241
93562
|
const parsed = safeParse(request, (value) => UpdateTeamMemberRequest$outboundSchema.parse(value), "Input validation failed");
|
|
93242
93563
|
if (!parsed.ok) {
|
|
93243
93564
|
return [parsed, { status: "invalid" }];
|
|
@@ -93318,12 +93639,12 @@ var init_teamsUpdateTeamMember = __esm(() => {
|
|
|
93318
93639
|
});
|
|
93319
93640
|
|
|
93320
93641
|
// src/mcp-server/tools/teamsUpdateTeamMember.ts
|
|
93321
|
-
var
|
|
93642
|
+
var args156, tool$teamsUpdateTeamMember;
|
|
93322
93643
|
var init_teamsUpdateTeamMember2 = __esm(() => {
|
|
93323
93644
|
init_teamsUpdateTeamMember();
|
|
93324
93645
|
init_updateteammemberop();
|
|
93325
93646
|
init_tools();
|
|
93326
|
-
|
|
93647
|
+
args156 = {
|
|
93327
93648
|
request: UpdateTeamMemberRequest$inboundSchema
|
|
93328
93649
|
};
|
|
93329
93650
|
tool$teamsUpdateTeamMember = {
|
|
@@ -93331,9 +93652,9 @@ var init_teamsUpdateTeamMember2 = __esm(() => {
|
|
|
93331
93652
|
description: `Update a Team Member
|
|
93332
93653
|
|
|
93333
93654
|
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.`,
|
|
93334
|
-
args:
|
|
93335
|
-
tool: async (client,
|
|
93336
|
-
const [result, apiCall] = await teamsUpdateTeamMember(client,
|
|
93655
|
+
args: args156,
|
|
93656
|
+
tool: async (client, args157, ctx) => {
|
|
93657
|
+
const [result, apiCall] = await teamsUpdateTeamMember(client, args157.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
93337
93658
|
if (!result.ok) {
|
|
93338
93659
|
return {
|
|
93339
93660
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -93347,7 +93668,7 @@ Update the membership of a Team Member on the Team specified by \`teamId\`, such
|
|
|
93347
93668
|
});
|
|
93348
93669
|
|
|
93349
93670
|
// src/models/authuser.ts
|
|
93350
|
-
var Reason, BlockedDueToOverageType, ViewPreference, FavoritesViewPreference, RecentsViewPreference, ImportFlowGitProvider, Version, Reason$inboundSchema, Reason$outboundSchema, Reason$, BlockedDueToOverageType$inboundSchema, BlockedDueToOverageType$outboundSchema, BlockedDueToOverageType$, SoftBlock$inboundSchema, SoftBlock$outboundSchema, SoftBlock$, Billing$inboundSchema, Billing$outboundSchema, Billing$, BuildEntitlements$inboundSchema, BuildEntitlements$outboundSchema, BuildEntitlements$, ResourceConfig$inboundSchema, ResourceConfig$outboundSchema, ResourceConfig$, ViewPreference$inboundSchema, ViewPreference$outboundSchema, ViewPreference$, FavoritesViewPreference$inboundSchema, FavoritesViewPreference$outboundSchema, FavoritesViewPreference$, RecentsViewPreference$inboundSchema, RecentsViewPreference$outboundSchema, RecentsViewPreference$, ActiveDashboardViews$inboundSchema, ActiveDashboardViews$outboundSchema, ActiveDashboardViews$, ImportFlowGitNamespace$inboundSchema, ImportFlowGitNamespace$outboundSchema, ImportFlowGitNamespace$, ImportFlowGitNamespaceId$inboundSchema, ImportFlowGitNamespaceId$outboundSchema, ImportFlowGitNamespaceId$, ImportFlowGitProvider$inboundSchema, ImportFlowGitProvider$outboundSchema, ImportFlowGitProvider$, GitNamespaceId$inboundSchema, GitNamespaceId$outboundSchema, GitNamespaceId$, PreferredScopesAndGitNamespaces$inboundSchema, PreferredScopesAndGitNamespaces$outboundSchema, PreferredScopesAndGitNamespaces$, Dismissals$inboundSchema, Dismissals$outboundSchema, Dismissals$, DismissedToasts$inboundSchema, DismissedToasts$outboundSchema, DismissedToasts$,
|
|
93671
|
+
var Reason, BlockedDueToOverageType, ViewPreference, FavoritesViewPreference, RecentsViewPreference, ImportFlowGitProvider, Version, Reason$inboundSchema, Reason$outboundSchema, Reason$, BlockedDueToOverageType$inboundSchema, BlockedDueToOverageType$outboundSchema, BlockedDueToOverageType$, SoftBlock$inboundSchema, SoftBlock$outboundSchema, SoftBlock$, Billing$inboundSchema, Billing$outboundSchema, Billing$, BuildEntitlements$inboundSchema, BuildEntitlements$outboundSchema, BuildEntitlements$, ResourceConfig$inboundSchema, ResourceConfig$outboundSchema, ResourceConfig$, ViewPreference$inboundSchema, ViewPreference$outboundSchema, ViewPreference$, FavoritesViewPreference$inboundSchema, FavoritesViewPreference$outboundSchema, FavoritesViewPreference$, RecentsViewPreference$inboundSchema, RecentsViewPreference$outboundSchema, RecentsViewPreference$, ActiveDashboardViews$inboundSchema, ActiveDashboardViews$outboundSchema, ActiveDashboardViews$, ImportFlowGitNamespace$inboundSchema, ImportFlowGitNamespace$outboundSchema, ImportFlowGitNamespace$, ImportFlowGitNamespaceId$inboundSchema, ImportFlowGitNamespaceId$outboundSchema, ImportFlowGitNamespaceId$, ImportFlowGitProvider$inboundSchema, ImportFlowGitProvider$outboundSchema, ImportFlowGitProvider$, GitNamespaceId$inboundSchema, GitNamespaceId$outboundSchema, GitNamespaceId$, PreferredScopesAndGitNamespaces$inboundSchema, PreferredScopesAndGitNamespaces$outboundSchema, PreferredScopesAndGitNamespaces$, Dismissals$inboundSchema, Dismissals$outboundSchema, Dismissals$, DismissedToasts$inboundSchema, DismissedToasts$outboundSchema, DismissedToasts$, FavoriteProjectsAndSpaces$inboundSchema, FavoriteProjectsAndSpaces$outboundSchema, FavoriteProjectsAndSpaces$, RemoteCaching$inboundSchema, RemoteCaching$outboundSchema, RemoteCaching$, DataCache$inboundSchema, DataCache$outboundSchema, DataCache$, WebAnalytics$inboundSchema, WebAnalytics$outboundSchema, WebAnalytics$, FeatureBlocks$inboundSchema, FeatureBlocks$outboundSchema, FeatureBlocks$, NorthstarMigration$inboundSchema, NorthstarMigration$outboundSchema, NorthstarMigration$, Version$inboundSchema, Version$outboundSchema, Version$, AuthUser$inboundSchema, AuthUser$outboundSchema, AuthUser$;
|
|
93351
93672
|
var init_authuser = __esm(() => {
|
|
93352
93673
|
init_lib();
|
|
93353
93674
|
Reason = {
|
|
@@ -93486,7 +93807,9 @@ var init_authuser = __esm(() => {
|
|
|
93486
93807
|
cronJobs: numberType().optional(),
|
|
93487
93808
|
cronJobsPerProject: numberType().optional(),
|
|
93488
93809
|
microfrontendGroupsPerTeam: numberType().optional(),
|
|
93489
|
-
microfrontendProjectsPerGroup: numberType().optional()
|
|
93810
|
+
microfrontendProjectsPerGroup: numberType().optional(),
|
|
93811
|
+
flagsExplorerOverridesThreshold: numberType().optional(),
|
|
93812
|
+
flagsExplorerUnlimitedOverrides: booleanType().optional()
|
|
93490
93813
|
});
|
|
93491
93814
|
ResourceConfig$outboundSchema = objectType({
|
|
93492
93815
|
nodeType: stringType().optional(),
|
|
@@ -93509,7 +93832,9 @@ var init_authuser = __esm(() => {
|
|
|
93509
93832
|
cronJobs: numberType().optional(),
|
|
93510
93833
|
cronJobsPerProject: numberType().optional(),
|
|
93511
93834
|
microfrontendGroupsPerTeam: numberType().optional(),
|
|
93512
|
-
microfrontendProjectsPerGroup: numberType().optional()
|
|
93835
|
+
microfrontendProjectsPerGroup: numberType().optional(),
|
|
93836
|
+
flagsExplorerOverridesThreshold: numberType().optional(),
|
|
93837
|
+
flagsExplorerUnlimitedOverrides: booleanType().optional()
|
|
93513
93838
|
});
|
|
93514
93839
|
((ResourceConfig$) => {
|
|
93515
93840
|
ResourceConfig$.inboundSchema = ResourceConfig$inboundSchema;
|
|
@@ -93609,46 +93934,14 @@ var init_authuser = __esm(() => {
|
|
|
93609
93934
|
DismissedToasts$.inboundSchema = DismissedToasts$inboundSchema;
|
|
93610
93935
|
DismissedToasts$.outboundSchema = DismissedToasts$outboundSchema;
|
|
93611
93936
|
})(DismissedToasts$ ||= {});
|
|
93612
|
-
|
|
93613
|
-
|
|
93614
|
-
|
|
93615
|
-
scopeId: stringType(),
|
|
93616
|
-
teamId: stringType().optional()
|
|
93617
|
-
});
|
|
93618
|
-
FavoriteProjectsAndSpaces2$outboundSchema = objectType({
|
|
93619
|
-
spaceId: stringType(),
|
|
93620
|
-
scopeSlug: stringType(),
|
|
93621
|
-
scopeId: stringType(),
|
|
93622
|
-
teamId: stringType().optional()
|
|
93623
|
-
});
|
|
93624
|
-
((FavoriteProjectsAndSpaces2$) => {
|
|
93625
|
-
FavoriteProjectsAndSpaces2$.inboundSchema = FavoriteProjectsAndSpaces2$inboundSchema;
|
|
93626
|
-
FavoriteProjectsAndSpaces2$.outboundSchema = FavoriteProjectsAndSpaces2$outboundSchema;
|
|
93627
|
-
})(FavoriteProjectsAndSpaces2$ ||= {});
|
|
93628
|
-
FavoriteProjectsAndSpaces1$inboundSchema = objectType({
|
|
93629
|
-
projectId: stringType(),
|
|
93630
|
-
scopeSlug: stringType(),
|
|
93631
|
-
scopeId: stringType(),
|
|
93632
|
-
teamId: stringType().optional()
|
|
93937
|
+
FavoriteProjectsAndSpaces$inboundSchema = objectType({
|
|
93938
|
+
teamId: stringType(),
|
|
93939
|
+
projectId: stringType()
|
|
93633
93940
|
});
|
|
93634
|
-
|
|
93635
|
-
|
|
93636
|
-
|
|
93637
|
-
scopeId: stringType(),
|
|
93638
|
-
teamId: stringType().optional()
|
|
93941
|
+
FavoriteProjectsAndSpaces$outboundSchema = objectType({
|
|
93942
|
+
teamId: stringType(),
|
|
93943
|
+
projectId: stringType()
|
|
93639
93944
|
});
|
|
93640
|
-
((FavoriteProjectsAndSpaces1$) => {
|
|
93641
|
-
FavoriteProjectsAndSpaces1$.inboundSchema = FavoriteProjectsAndSpaces1$inboundSchema;
|
|
93642
|
-
FavoriteProjectsAndSpaces1$.outboundSchema = FavoriteProjectsAndSpaces1$outboundSchema;
|
|
93643
|
-
})(FavoriteProjectsAndSpaces1$ ||= {});
|
|
93644
|
-
FavoriteProjectsAndSpaces$inboundSchema = unionType([
|
|
93645
|
-
lazyType(() => FavoriteProjectsAndSpaces1$inboundSchema),
|
|
93646
|
-
lazyType(() => FavoriteProjectsAndSpaces2$inboundSchema)
|
|
93647
|
-
]);
|
|
93648
|
-
FavoriteProjectsAndSpaces$outboundSchema = unionType([
|
|
93649
|
-
lazyType(() => FavoriteProjectsAndSpaces1$outboundSchema),
|
|
93650
|
-
lazyType(() => FavoriteProjectsAndSpaces2$outboundSchema)
|
|
93651
|
-
]);
|
|
93652
93945
|
((FavoriteProjectsAndSpaces$) => {
|
|
93653
93946
|
FavoriteProjectsAndSpaces$.inboundSchema = FavoriteProjectsAndSpaces$inboundSchema;
|
|
93654
93947
|
FavoriteProjectsAndSpaces$.outboundSchema = FavoriteProjectsAndSpaces$outboundSchema;
|
|
@@ -93737,10 +94030,7 @@ var init_authuser = __esm(() => {
|
|
|
93737
94030
|
importFlowGitProvider: nullableType(ImportFlowGitProvider$inboundSchema).optional(),
|
|
93738
94031
|
preferredScopesAndGitNamespaces: arrayType(lazyType(() => PreferredScopesAndGitNamespaces$inboundSchema)).optional(),
|
|
93739
94032
|
dismissedToasts: arrayType(lazyType(() => DismissedToasts$inboundSchema)).optional(),
|
|
93740
|
-
favoriteProjectsAndSpaces: arrayType(
|
|
93741
|
-
lazyType(() => FavoriteProjectsAndSpaces1$inboundSchema),
|
|
93742
|
-
lazyType(() => FavoriteProjectsAndSpaces2$inboundSchema)
|
|
93743
|
-
])).optional(),
|
|
94033
|
+
favoriteProjectsAndSpaces: arrayType(lazyType(() => FavoriteProjectsAndSpaces$inboundSchema)).optional(),
|
|
93744
94034
|
hasTrialAvailable: booleanType(),
|
|
93745
94035
|
remoteCaching: lazyType(() => RemoteCaching$inboundSchema).optional(),
|
|
93746
94036
|
dataCache: lazyType(() => DataCache$inboundSchema).optional(),
|
|
@@ -93766,10 +94056,7 @@ var init_authuser = __esm(() => {
|
|
|
93766
94056
|
importFlowGitProvider: nullableType(ImportFlowGitProvider$outboundSchema).optional(),
|
|
93767
94057
|
preferredScopesAndGitNamespaces: arrayType(lazyType(() => PreferredScopesAndGitNamespaces$outboundSchema)).optional(),
|
|
93768
94058
|
dismissedToasts: arrayType(lazyType(() => DismissedToasts$outboundSchema)).optional(),
|
|
93769
|
-
favoriteProjectsAndSpaces: arrayType(
|
|
93770
|
-
lazyType(() => FavoriteProjectsAndSpaces1$outboundSchema),
|
|
93771
|
-
lazyType(() => FavoriteProjectsAndSpaces2$outboundSchema)
|
|
93772
|
-
])).optional(),
|
|
94059
|
+
favoriteProjectsAndSpaces: arrayType(lazyType(() => FavoriteProjectsAndSpaces$outboundSchema)).optional(),
|
|
93773
94060
|
hasTrialAvailable: booleanType(),
|
|
93774
94061
|
remoteCaching: lazyType(() => RemoteCaching$outboundSchema).optional(),
|
|
93775
94062
|
dataCache: lazyType(() => DataCache$outboundSchema).optional(),
|
|
@@ -93854,9 +94141,9 @@ var init_getauthuserop = __esm(() => {
|
|
|
93854
94141
|
|
|
93855
94142
|
// src/funcs/userGetAuthUser.ts
|
|
93856
94143
|
function userGetAuthUser(client, options) {
|
|
93857
|
-
return new APIPromise($
|
|
94144
|
+
return new APIPromise($do158(client, options));
|
|
93858
94145
|
}
|
|
93859
|
-
async function $
|
|
94146
|
+
async function $do158(client, options) {
|
|
93860
94147
|
const path = pathToFunc("/v2/user")();
|
|
93861
94148
|
const headers = new Headers(compactMap({
|
|
93862
94149
|
Accept: "application/json"
|
|
@@ -93940,7 +94227,7 @@ Retrieves information related to the currently authenticated User.`,
|
|
|
93940
94227
|
});
|
|
93941
94228
|
|
|
93942
94229
|
// src/models/userevent.ts
|
|
93943
|
-
var UserEventType, GrantType, AuthMethod, Tier, UserEventPayload130Role, UserEventPayload129Role, 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, 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$, OneHundredAndFortySeven$inboundSchema, OneHundredAndFortySeven$outboundSchema, OneHundredAndFortySeven$, UserEventPayload146Team$inboundSchema, UserEventPayload146Team$outboundSchema, UserEventPayload146Team$, UserEventPayload146Configuration$inboundSchema, UserEventPayload146Configuration$outboundSchema, UserEventPayload146Configuration$, UserEventPayloadPeering$inboundSchema, UserEventPayloadPeering$outboundSchema, UserEventPayloadPeering$, OneHundredAndFortySix$inboundSchema, OneHundredAndFortySix$outboundSchema, OneHundredAndFortySix$, UserEventPayload145Team$inboundSchema, UserEventPayload145Team$outboundSchema, UserEventPayload145Team$, UserEventPayload145Configuration$inboundSchema, UserEventPayload145Configuration$outboundSchema, UserEventPayload145Configuration$, PayloadPeering$inboundSchema, PayloadPeering$outboundSchema, PayloadPeering$, OneHundredAndFortyFive$inboundSchema, OneHundredAndFortyFive$outboundSchema, OneHundredAndFortyFive$, UserEventPayload144Team$inboundSchema, UserEventPayload144Team$outboundSchema, UserEventPayload144Team$, UserEventPayload144Configuration$inboundSchema, UserEventPayload144Configuration$outboundSchema, UserEventPayload144Configuration$, Peering$inboundSchema, Peering$outboundSchema, Peering$, OneHundredAndFortyFour$inboundSchema, OneHundredAndFortyFour$outboundSchema, OneHundredAndFortyFour$, OneHundredAndFortyThree$inboundSchema, OneHundredAndFortyThree$outboundSchema, OneHundredAndFortyThree$, OneHundredAndFortyTwo$inboundSchema, OneHundredAndFortyTwo$outboundSchema, OneHundredAndFortyTwo$, OneHundredAndFortyOne$inboundSchema, OneHundredAndFortyOne$outboundSchema, OneHundredAndFortyOne$, OneHundredAndForty$inboundSchema, OneHundredAndForty$outboundSchema, OneHundredAndForty$, Tier$inboundSchema, Tier$outboundSchema, Tier$, OneHundredAndThirtyNine$inboundSchema, OneHundredAndThirtyNine$outboundSchema, OneHundredAndThirtyNine$, ProjectWebAnalytics$inboundSchema, ProjectWebAnalytics$outboundSchema, ProjectWebAnalytics$, PrevProjectWebAnalytics$inboundSchema, PrevProjectWebAnalytics$outboundSchema, PrevProjectWebAnalytics$, OneHundredAndThirtyEight$inboundSchema, OneHundredAndThirtyEight$outboundSchema, OneHundredAndThirtyEight$, Microfrontends2$inboundSchema, Microfrontends2$outboundSchema, Microfrontends2$, Microfrontends1$inboundSchema, Microfrontends1$outboundSchema, Microfrontends1$, Microfrontends$inboundSchema, Microfrontends$outboundSchema, Microfrontends$, UserEventPayload137Project$inboundSchema, UserEventPayload137Project$outboundSchema, UserEventPayload137Project$, UserEventMicrofrontends2$inboundSchema, UserEventMicrofrontends2$outboundSchema, UserEventMicrofrontends2$, UserEventMicrofrontends1$inboundSchema, UserEventMicrofrontends1$outboundSchema, UserEventMicrofrontends1$, PayloadMicrofrontends$inboundSchema, PayloadMicrofrontends$outboundSchema, PayloadMicrofrontends$, UserEventPayload137PrevProject$inboundSchema, UserEventPayload137PrevProject$outboundSchema, UserEventPayload137PrevProject$, PayloadPrev$inboundSchema, PayloadPrev$outboundSchema, PayloadPrev$, PayloadGroup$inboundSchema, PayloadGroup$outboundSchema, PayloadGroup$, OneHundredAndThirtySeven$inboundSchema, OneHundredAndThirtySeven$outboundSchema, OneHundredAndThirtySeven$, UserEventPayload136Project$inboundSchema, UserEventPayload136Project$outboundSchema, UserEventPayload136Project$, Group$inboundSchema, Group$outboundSchema, Group$, OneHundredAndThirtySix$inboundSchema, OneHundredAndThirtySix$outboundSchema, OneHundredAndThirtySix$, Prev$inboundSchema, Prev$outboundSchema, Prev$, OneHundredAndThirtyFive$inboundSchema, OneHundredAndThirtyFive$outboundSchema, OneHundredAndThirtyFive$, OneHundredAndThirtyFour$inboundSchema, OneHundredAndThirtyFour$outboundSchema, OneHundredAndThirtyFour$, OneHundredAndThirtyThree$inboundSchema, OneHundredAndThirtyThree$outboundSchema, OneHundredAndThirtyThree$, OneHundredAndThirtyTwo$inboundSchema, OneHundredAndThirtyTwo$outboundSchema, OneHundredAndThirtyTwo$, OneHundredAndThirtyOne$inboundSchema, OneHundredAndThirtyOne$outboundSchema, OneHundredAndThirtyOne$, UserEventPayload130Role$inboundSchema, UserEventPayload130Role$outboundSchema, UserEventPayload130Role$, UserEventPayload130Project$inboundSchema, UserEventPayload130Project$outboundSchema, UserEventPayload130Project$, OneHundredAndThirty$inboundSchema, OneHundredAndThirty$outboundSchema, OneHundredAndThirty$, UserEventPayload129Project$inboundSchema, UserEventPayload129Project$outboundSchema, UserEventPayload129Project$, UserEventPayload129Role$inboundSchema, UserEventPayload129Role$outboundSchema, UserEventPayload129Role$, PreviousRole$inboundSchema, PreviousRole$outboundSchema, PreviousRole$, PayloadProjectMembership$inboundSchema, PayloadProjectMembership$outboundSchema, PayloadProjectMembership$, OneHundredAndTwentyNine$inboundSchema, OneHundredAndTwentyNine$outboundSchema, OneHundredAndTwentyNine$, UserEventPayload128Project$inboundSchema, UserEventPayload128Project$outboundSchema, UserEventPayload128Project$, UserEventPayloadRole$inboundSchema, UserEventPayloadRole$outboundSchema, UserEventPayloadRole$, RemovedMembership$inboundSchema, RemovedMembership$outboundSchema, RemovedMembership$, OneHundredAndTwentyEight$inboundSchema, OneHundredAndTwentyEight$outboundSchema, OneHundredAndTwentyEight$, UserEventPayload127Project$inboundSchema, UserEventPayload127Project$outboundSchema, UserEventPayload127Project$, PayloadRole$inboundSchema, PayloadRole$outboundSchema, PayloadRole$, ProjectMembership$inboundSchema, ProjectMembership$outboundSchema, ProjectMembership$, 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$, OneHundredAndThirteen$inboundSchema, OneHundredAndThirteen$outboundSchema, OneHundredAndThirteen$, Previous$inboundSchema, Previous$outboundSchema, Previous$, Next$inboundSchema, Next$outboundSchema, Next$, OneHundredAndTwelve$inboundSchema, OneHundredAndTwelve$outboundSchema, OneHundredAndTwelve$, PayloadRemoteCaching$inboundSchema, PayloadRemoteCaching$outboundSchema, PayloadRemoteCaching$, 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$, UserEventFavoriteProjectsAndSpaces2$inboundSchema, UserEventFavoriteProjectsAndSpaces2$outboundSchema, UserEventFavoriteProjectsAndSpaces2$, UserEventFavoriteProjectsAndSpaces1$inboundSchema, UserEventFavoriteProjectsAndSpaces1$outboundSchema, UserEventFavoriteProjectsAndSpaces1$, 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$, 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$;
|
|
94230
|
+
var UserEventType, GrantType, AuthMethod, Tier, UserEventPayload130Role, UserEventPayload129Role, 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, 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$, OneHundredAndFortySeven$inboundSchema, OneHundredAndFortySeven$outboundSchema, OneHundredAndFortySeven$, UserEventPayload146Team$inboundSchema, UserEventPayload146Team$outboundSchema, UserEventPayload146Team$, UserEventPayload146Configuration$inboundSchema, UserEventPayload146Configuration$outboundSchema, UserEventPayload146Configuration$, UserEventPayloadPeering$inboundSchema, UserEventPayloadPeering$outboundSchema, UserEventPayloadPeering$, OneHundredAndFortySix$inboundSchema, OneHundredAndFortySix$outboundSchema, OneHundredAndFortySix$, UserEventPayload145Team$inboundSchema, UserEventPayload145Team$outboundSchema, UserEventPayload145Team$, UserEventPayload145Configuration$inboundSchema, UserEventPayload145Configuration$outboundSchema, UserEventPayload145Configuration$, PayloadPeering$inboundSchema, PayloadPeering$outboundSchema, PayloadPeering$, OneHundredAndFortyFive$inboundSchema, OneHundredAndFortyFive$outboundSchema, OneHundredAndFortyFive$, UserEventPayload144Team$inboundSchema, UserEventPayload144Team$outboundSchema, UserEventPayload144Team$, UserEventPayload144Configuration$inboundSchema, UserEventPayload144Configuration$outboundSchema, UserEventPayload144Configuration$, Peering$inboundSchema, Peering$outboundSchema, Peering$, OneHundredAndFortyFour$inboundSchema, OneHundredAndFortyFour$outboundSchema, OneHundredAndFortyFour$, OneHundredAndFortyThree$inboundSchema, OneHundredAndFortyThree$outboundSchema, OneHundredAndFortyThree$, OneHundredAndFortyTwo$inboundSchema, OneHundredAndFortyTwo$outboundSchema, OneHundredAndFortyTwo$, OneHundredAndFortyOne$inboundSchema, OneHundredAndFortyOne$outboundSchema, OneHundredAndFortyOne$, OneHundredAndForty$inboundSchema, OneHundredAndForty$outboundSchema, OneHundredAndForty$, Tier$inboundSchema, Tier$outboundSchema, Tier$, OneHundredAndThirtyNine$inboundSchema, OneHundredAndThirtyNine$outboundSchema, OneHundredAndThirtyNine$, ProjectWebAnalytics$inboundSchema, ProjectWebAnalytics$outboundSchema, ProjectWebAnalytics$, PrevProjectWebAnalytics$inboundSchema, PrevProjectWebAnalytics$outboundSchema, PrevProjectWebAnalytics$, OneHundredAndThirtyEight$inboundSchema, OneHundredAndThirtyEight$outboundSchema, OneHundredAndThirtyEight$, Microfrontends2$inboundSchema, Microfrontends2$outboundSchema, Microfrontends2$, Microfrontends1$inboundSchema, Microfrontends1$outboundSchema, Microfrontends1$, Microfrontends$inboundSchema, Microfrontends$outboundSchema, Microfrontends$, UserEventPayload137Project$inboundSchema, UserEventPayload137Project$outboundSchema, UserEventPayload137Project$, UserEventMicrofrontends2$inboundSchema, UserEventMicrofrontends2$outboundSchema, UserEventMicrofrontends2$, UserEventMicrofrontends1$inboundSchema, UserEventMicrofrontends1$outboundSchema, UserEventMicrofrontends1$, PayloadMicrofrontends$inboundSchema, PayloadMicrofrontends$outboundSchema, PayloadMicrofrontends$, UserEventPayload137PrevProject$inboundSchema, UserEventPayload137PrevProject$outboundSchema, UserEventPayload137PrevProject$, PayloadPrev$inboundSchema, PayloadPrev$outboundSchema, PayloadPrev$, PayloadGroup$inboundSchema, PayloadGroup$outboundSchema, PayloadGroup$, OneHundredAndThirtySeven$inboundSchema, OneHundredAndThirtySeven$outboundSchema, OneHundredAndThirtySeven$, UserEventPayload136Project$inboundSchema, UserEventPayload136Project$outboundSchema, UserEventPayload136Project$, Group$inboundSchema, Group$outboundSchema, Group$, OneHundredAndThirtySix$inboundSchema, OneHundredAndThirtySix$outboundSchema, OneHundredAndThirtySix$, Prev$inboundSchema, Prev$outboundSchema, Prev$, OneHundredAndThirtyFive$inboundSchema, OneHundredAndThirtyFive$outboundSchema, OneHundredAndThirtyFive$, OneHundredAndThirtyFour$inboundSchema, OneHundredAndThirtyFour$outboundSchema, OneHundredAndThirtyFour$, OneHundredAndThirtyThree$inboundSchema, OneHundredAndThirtyThree$outboundSchema, OneHundredAndThirtyThree$, OneHundredAndThirtyTwo$inboundSchema, OneHundredAndThirtyTwo$outboundSchema, OneHundredAndThirtyTwo$, OneHundredAndThirtyOne$inboundSchema, OneHundredAndThirtyOne$outboundSchema, OneHundredAndThirtyOne$, UserEventPayload130Role$inboundSchema, UserEventPayload130Role$outboundSchema, UserEventPayload130Role$, UserEventPayload130Project$inboundSchema, UserEventPayload130Project$outboundSchema, UserEventPayload130Project$, OneHundredAndThirty$inboundSchema, OneHundredAndThirty$outboundSchema, OneHundredAndThirty$, UserEventPayload129Project$inboundSchema, UserEventPayload129Project$outboundSchema, UserEventPayload129Project$, UserEventPayload129Role$inboundSchema, UserEventPayload129Role$outboundSchema, UserEventPayload129Role$, PreviousRole$inboundSchema, PreviousRole$outboundSchema, PreviousRole$, PayloadProjectMembership$inboundSchema, PayloadProjectMembership$outboundSchema, PayloadProjectMembership$, OneHundredAndTwentyNine$inboundSchema, OneHundredAndTwentyNine$outboundSchema, OneHundredAndTwentyNine$, UserEventPayload128Project$inboundSchema, UserEventPayload128Project$outboundSchema, UserEventPayload128Project$, UserEventPayloadRole$inboundSchema, UserEventPayloadRole$outboundSchema, UserEventPayloadRole$, RemovedMembership$inboundSchema, RemovedMembership$outboundSchema, RemovedMembership$, OneHundredAndTwentyEight$inboundSchema, OneHundredAndTwentyEight$outboundSchema, OneHundredAndTwentyEight$, UserEventPayload127Project$inboundSchema, UserEventPayload127Project$outboundSchema, UserEventPayload127Project$, PayloadRole$inboundSchema, PayloadRole$outboundSchema, PayloadRole$, ProjectMembership$inboundSchema, ProjectMembership$outboundSchema, ProjectMembership$, 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$, OneHundredAndThirteen$inboundSchema, OneHundredAndThirteen$outboundSchema, OneHundredAndThirteen$, Previous$inboundSchema, Previous$outboundSchema, Previous$, Next$inboundSchema, Next$outboundSchema, Next$, OneHundredAndTwelve$inboundSchema, OneHundredAndTwelve$outboundSchema, OneHundredAndTwelve$, PayloadRemoteCaching$inboundSchema, PayloadRemoteCaching$outboundSchema, PayloadRemoteCaching$, 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$, 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$;
|
|
93944
94231
|
var init_userevent = __esm(() => {
|
|
93945
94232
|
init_lib();
|
|
93946
94233
|
init_primitives();
|
|
@@ -97255,46 +97542,14 @@ var init_userevent = __esm(() => {
|
|
|
97255
97542
|
PayloadDismissedToasts$.inboundSchema = PayloadDismissedToasts$inboundSchema;
|
|
97256
97543
|
PayloadDismissedToasts$.outboundSchema = PayloadDismissedToasts$outboundSchema;
|
|
97257
97544
|
})(PayloadDismissedToasts$ ||= {});
|
|
97258
|
-
|
|
97259
|
-
|
|
97260
|
-
|
|
97261
|
-
scopeId: stringType(),
|
|
97262
|
-
teamId: stringType().optional()
|
|
97263
|
-
});
|
|
97264
|
-
UserEventFavoriteProjectsAndSpaces2$outboundSchema = objectType({
|
|
97265
|
-
spaceId: stringType(),
|
|
97266
|
-
scopeSlug: stringType(),
|
|
97267
|
-
scopeId: stringType(),
|
|
97268
|
-
teamId: stringType().optional()
|
|
97269
|
-
});
|
|
97270
|
-
((UserEventFavoriteProjectsAndSpaces2$) => {
|
|
97271
|
-
UserEventFavoriteProjectsAndSpaces2$.inboundSchema = UserEventFavoriteProjectsAndSpaces2$inboundSchema;
|
|
97272
|
-
UserEventFavoriteProjectsAndSpaces2$.outboundSchema = UserEventFavoriteProjectsAndSpaces2$outboundSchema;
|
|
97273
|
-
})(UserEventFavoriteProjectsAndSpaces2$ ||= {});
|
|
97274
|
-
UserEventFavoriteProjectsAndSpaces1$inboundSchema = objectType({
|
|
97275
|
-
projectId: stringType(),
|
|
97276
|
-
scopeSlug: stringType(),
|
|
97277
|
-
scopeId: stringType(),
|
|
97278
|
-
teamId: stringType().optional()
|
|
97545
|
+
PayloadFavoriteProjectsAndSpaces$inboundSchema = objectType({
|
|
97546
|
+
teamId: stringType(),
|
|
97547
|
+
projectId: stringType()
|
|
97279
97548
|
});
|
|
97280
|
-
|
|
97281
|
-
|
|
97282
|
-
|
|
97283
|
-
scopeId: stringType(),
|
|
97284
|
-
teamId: stringType().optional()
|
|
97549
|
+
PayloadFavoriteProjectsAndSpaces$outboundSchema = objectType({
|
|
97550
|
+
teamId: stringType(),
|
|
97551
|
+
projectId: stringType()
|
|
97285
97552
|
});
|
|
97286
|
-
((UserEventFavoriteProjectsAndSpaces1$) => {
|
|
97287
|
-
UserEventFavoriteProjectsAndSpaces1$.inboundSchema = UserEventFavoriteProjectsAndSpaces1$inboundSchema;
|
|
97288
|
-
UserEventFavoriteProjectsAndSpaces1$.outboundSchema = UserEventFavoriteProjectsAndSpaces1$outboundSchema;
|
|
97289
|
-
})(UserEventFavoriteProjectsAndSpaces1$ ||= {});
|
|
97290
|
-
PayloadFavoriteProjectsAndSpaces$inboundSchema = unionType([
|
|
97291
|
-
lazyType(() => UserEventFavoriteProjectsAndSpaces1$inboundSchema),
|
|
97292
|
-
lazyType(() => UserEventFavoriteProjectsAndSpaces2$inboundSchema)
|
|
97293
|
-
]);
|
|
97294
|
-
PayloadFavoriteProjectsAndSpaces$outboundSchema = unionType([
|
|
97295
|
-
lazyType(() => UserEventFavoriteProjectsAndSpaces1$outboundSchema),
|
|
97296
|
-
lazyType(() => UserEventFavoriteProjectsAndSpaces2$outboundSchema)
|
|
97297
|
-
]);
|
|
97298
97553
|
((PayloadFavoriteProjectsAndSpaces$) => {
|
|
97299
97554
|
PayloadFavoriteProjectsAndSpaces$.inboundSchema = PayloadFavoriteProjectsAndSpaces$inboundSchema;
|
|
97300
97555
|
PayloadFavoriteProjectsAndSpaces$.outboundSchema = PayloadFavoriteProjectsAndSpaces$outboundSchema;
|
|
@@ -97382,7 +97637,9 @@ var init_userevent = __esm(() => {
|
|
|
97382
97637
|
cronJobs: numberType().optional(),
|
|
97383
97638
|
cronJobsPerProject: numberType().optional(),
|
|
97384
97639
|
microfrontendGroupsPerTeam: numberType().optional(),
|
|
97385
|
-
microfrontendProjectsPerGroup: numberType().optional()
|
|
97640
|
+
microfrontendProjectsPerGroup: numberType().optional(),
|
|
97641
|
+
flagsExplorerOverridesThreshold: numberType().optional(),
|
|
97642
|
+
flagsExplorerUnlimitedOverrides: booleanType().optional()
|
|
97386
97643
|
});
|
|
97387
97644
|
PayloadResourceConfig$outboundSchema = objectType({
|
|
97388
97645
|
nodeType: stringType().optional(),
|
|
@@ -97405,7 +97662,9 @@ var init_userevent = __esm(() => {
|
|
|
97405
97662
|
cronJobs: numberType().optional(),
|
|
97406
97663
|
cronJobsPerProject: numberType().optional(),
|
|
97407
97664
|
microfrontendGroupsPerTeam: numberType().optional(),
|
|
97408
|
-
microfrontendProjectsPerGroup: numberType().optional()
|
|
97665
|
+
microfrontendProjectsPerGroup: numberType().optional(),
|
|
97666
|
+
flagsExplorerOverridesThreshold: numberType().optional(),
|
|
97667
|
+
flagsExplorerUnlimitedOverrides: booleanType().optional()
|
|
97409
97668
|
});
|
|
97410
97669
|
((PayloadResourceConfig$) => {
|
|
97411
97670
|
PayloadResourceConfig$.inboundSchema = PayloadResourceConfig$inboundSchema;
|
|
@@ -98706,10 +98965,7 @@ var init_userevent = __esm(() => {
|
|
|
98706
98965
|
deploymentSecret: stringType(),
|
|
98707
98966
|
dismissedTeams: arrayType(stringType()).optional(),
|
|
98708
98967
|
dismissedToasts: arrayType(lazyType(() => PayloadDismissedToasts$inboundSchema)).optional(),
|
|
98709
|
-
favoriteProjectsAndSpaces: arrayType(
|
|
98710
|
-
lazyType(() => UserEventFavoriteProjectsAndSpaces1$inboundSchema),
|
|
98711
|
-
lazyType(() => UserEventFavoriteProjectsAndSpaces2$inboundSchema)
|
|
98712
|
-
])).optional(),
|
|
98968
|
+
favoriteProjectsAndSpaces: arrayType(lazyType(() => PayloadFavoriteProjectsAndSpaces$inboundSchema)).optional(),
|
|
98713
98969
|
email: stringType(),
|
|
98714
98970
|
id: stringType(),
|
|
98715
98971
|
importFlowGitNamespace: nullableType(unionType([stringType(), numberType()])).optional(),
|
|
@@ -98785,10 +99041,7 @@ var init_userevent = __esm(() => {
|
|
|
98785
99041
|
deploymentSecret: stringType(),
|
|
98786
99042
|
dismissedTeams: arrayType(stringType()).optional(),
|
|
98787
99043
|
dismissedToasts: arrayType(lazyType(() => PayloadDismissedToasts$outboundSchema)).optional(),
|
|
98788
|
-
favoriteProjectsAndSpaces: arrayType(
|
|
98789
|
-
lazyType(() => UserEventFavoriteProjectsAndSpaces1$outboundSchema),
|
|
98790
|
-
lazyType(() => UserEventFavoriteProjectsAndSpaces2$outboundSchema)
|
|
98791
|
-
])).optional(),
|
|
99044
|
+
favoriteProjectsAndSpaces: arrayType(lazyType(() => PayloadFavoriteProjectsAndSpaces$outboundSchema)).optional(),
|
|
98792
99045
|
email: stringType(),
|
|
98793
99046
|
id: stringType(),
|
|
98794
99047
|
importFlowGitNamespace: nullableType(unionType([stringType(), numberType()])).optional(),
|
|
@@ -101038,9 +101291,9 @@ var init_listusereventsop = __esm(() => {
|
|
|
101038
101291
|
|
|
101039
101292
|
// src/funcs/userListUserEvents.ts
|
|
101040
101293
|
function userListUserEvents(client, request, options) {
|
|
101041
|
-
return new APIPromise($
|
|
101294
|
+
return new APIPromise($do159(client, request, options));
|
|
101042
101295
|
}
|
|
101043
|
-
async function $
|
|
101296
|
+
async function $do159(client, request, options) {
|
|
101044
101297
|
const parsed = safeParse(request, (value) => ListUserEventsRequest$outboundSchema.parse(value), "Input validation failed");
|
|
101045
101298
|
if (!parsed.ok) {
|
|
101046
101299
|
return [parsed, { status: "invalid" }];
|
|
@@ -101120,12 +101373,12 @@ var init_userListUserEvents = __esm(() => {
|
|
|
101120
101373
|
});
|
|
101121
101374
|
|
|
101122
101375
|
// src/mcp-server/tools/userListUserEvents.ts
|
|
101123
|
-
var
|
|
101376
|
+
var args157, tool$userListUserEvents;
|
|
101124
101377
|
var init_userListUserEvents2 = __esm(() => {
|
|
101125
101378
|
init_userListUserEvents();
|
|
101126
101379
|
init_listusereventsop();
|
|
101127
101380
|
init_tools();
|
|
101128
|
-
|
|
101381
|
+
args157 = {
|
|
101129
101382
|
request: ListUserEventsRequest$inboundSchema
|
|
101130
101383
|
};
|
|
101131
101384
|
tool$userListUserEvents = {
|
|
@@ -101133,9 +101386,9 @@ var init_userListUserEvents2 = __esm(() => {
|
|
|
101133
101386
|
description: `List User Events
|
|
101134
101387
|
|
|
101135
101388
|
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.`,
|
|
101136
|
-
args:
|
|
101137
|
-
tool: async (client,
|
|
101138
|
-
const [result, apiCall] = await userListUserEvents(client,
|
|
101389
|
+
args: args157,
|
|
101390
|
+
tool: async (client, args158, ctx) => {
|
|
101391
|
+
const [result, apiCall] = await userListUserEvents(client, args158.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
101139
101392
|
if (!result.ok) {
|
|
101140
101393
|
return {
|
|
101141
101394
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -101192,9 +101445,9 @@ var init_requestdeleteop = __esm(() => {
|
|
|
101192
101445
|
|
|
101193
101446
|
// src/funcs/userRequestDelete.ts
|
|
101194
101447
|
function userRequestDelete(client, request, options) {
|
|
101195
|
-
return new APIPromise($
|
|
101448
|
+
return new APIPromise($do160(client, request, options));
|
|
101196
101449
|
}
|
|
101197
|
-
async function $
|
|
101450
|
+
async function $do160(client, request, options) {
|
|
101198
101451
|
const parsed = safeParse(request, (value) => RequestDeleteRequestBody$outboundSchema.parse(value), "Input validation failed");
|
|
101199
101452
|
if (!parsed.ok) {
|
|
101200
101453
|
return [parsed, { status: "invalid" }];
|
|
@@ -101264,12 +101517,12 @@ var init_userRequestDelete = __esm(() => {
|
|
|
101264
101517
|
});
|
|
101265
101518
|
|
|
101266
101519
|
// src/mcp-server/tools/userRequestDelete.ts
|
|
101267
|
-
var
|
|
101520
|
+
var args158, tool$userRequestDelete;
|
|
101268
101521
|
var init_userRequestDelete2 = __esm(() => {
|
|
101269
101522
|
init_userRequestDelete();
|
|
101270
101523
|
init_requestdeleteop();
|
|
101271
101524
|
init_tools();
|
|
101272
|
-
|
|
101525
|
+
args158 = {
|
|
101273
101526
|
request: RequestDeleteRequestBody$inboundSchema
|
|
101274
101527
|
};
|
|
101275
101528
|
tool$userRequestDelete = {
|
|
@@ -101277,9 +101530,9 @@ var init_userRequestDelete2 = __esm(() => {
|
|
|
101277
101530
|
description: `Delete User Account
|
|
101278
101531
|
|
|
101279
101532
|
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.`,
|
|
101280
|
-
args:
|
|
101281
|
-
tool: async (client,
|
|
101282
|
-
const [result, apiCall] = await userRequestDelete(client,
|
|
101533
|
+
args: args158,
|
|
101534
|
+
tool: async (client, args159, ctx) => {
|
|
101535
|
+
const [result, apiCall] = await userRequestDelete(client, args159.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
101283
101536
|
if (!result.ok) {
|
|
101284
101537
|
return {
|
|
101285
101538
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -101463,9 +101716,9 @@ var init_createwebhookop = __esm(() => {
|
|
|
101463
101716
|
|
|
101464
101717
|
// src/funcs/webhooksCreateWebhook.ts
|
|
101465
101718
|
function webhooksCreateWebhook(client, request, options) {
|
|
101466
|
-
return new APIPromise($
|
|
101719
|
+
return new APIPromise($do161(client, request, options));
|
|
101467
101720
|
}
|
|
101468
|
-
async function $
|
|
101721
|
+
async function $do161(client, request, options) {
|
|
101469
101722
|
const parsed = safeParse(request, (value) => CreateWebhookRequest$outboundSchema.parse(value), "Input validation failed");
|
|
101470
101723
|
if (!parsed.ok) {
|
|
101471
101724
|
return [parsed, { status: "invalid" }];
|
|
@@ -101540,12 +101793,12 @@ var init_webhooksCreateWebhook = __esm(() => {
|
|
|
101540
101793
|
});
|
|
101541
101794
|
|
|
101542
101795
|
// src/mcp-server/tools/webhooksCreateWebhook.ts
|
|
101543
|
-
var
|
|
101796
|
+
var args159, tool$webhooksCreateWebhook;
|
|
101544
101797
|
var init_webhooksCreateWebhook2 = __esm(() => {
|
|
101545
101798
|
init_webhooksCreateWebhook();
|
|
101546
101799
|
init_createwebhookop();
|
|
101547
101800
|
init_tools();
|
|
101548
|
-
|
|
101801
|
+
args159 = {
|
|
101549
101802
|
request: CreateWebhookRequest$inboundSchema
|
|
101550
101803
|
};
|
|
101551
101804
|
tool$webhooksCreateWebhook = {
|
|
@@ -101553,9 +101806,9 @@ var init_webhooksCreateWebhook2 = __esm(() => {
|
|
|
101553
101806
|
description: `Creates a webhook
|
|
101554
101807
|
|
|
101555
101808
|
Creates a webhook`,
|
|
101556
|
-
args:
|
|
101557
|
-
tool: async (client,
|
|
101558
|
-
const [result, apiCall] = await webhooksCreateWebhook(client,
|
|
101809
|
+
args: args159,
|
|
101810
|
+
tool: async (client, args160, ctx) => {
|
|
101811
|
+
const [result, apiCall] = await webhooksCreateWebhook(client, args160.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
101559
101812
|
if (!result.ok) {
|
|
101560
101813
|
return {
|
|
101561
101814
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -101590,9 +101843,9 @@ var init_deletewebhookop = __esm(() => {
|
|
|
101590
101843
|
|
|
101591
101844
|
// src/funcs/webhooksDeleteWebhook.ts
|
|
101592
101845
|
function webhooksDeleteWebhook(client, request, options) {
|
|
101593
|
-
return new APIPromise($
|
|
101846
|
+
return new APIPromise($do162(client, request, options));
|
|
101594
101847
|
}
|
|
101595
|
-
async function $
|
|
101848
|
+
async function $do162(client, request, options) {
|
|
101596
101849
|
const parsed = safeParse(request, (value) => DeleteWebhookRequest$outboundSchema.parse(value), "Input validation failed");
|
|
101597
101850
|
if (!parsed.ok) {
|
|
101598
101851
|
return [parsed, { status: "invalid" }];
|
|
@@ -101673,12 +101926,12 @@ var init_webhooksDeleteWebhook = __esm(() => {
|
|
|
101673
101926
|
});
|
|
101674
101927
|
|
|
101675
101928
|
// src/mcp-server/tools/webhooksDeleteWebhook.ts
|
|
101676
|
-
var
|
|
101929
|
+
var args160, tool$webhooksDeleteWebhook;
|
|
101677
101930
|
var init_webhooksDeleteWebhook2 = __esm(() => {
|
|
101678
101931
|
init_webhooksDeleteWebhook();
|
|
101679
101932
|
init_deletewebhookop();
|
|
101680
101933
|
init_tools();
|
|
101681
|
-
|
|
101934
|
+
args160 = {
|
|
101682
101935
|
request: DeleteWebhookRequest$inboundSchema
|
|
101683
101936
|
};
|
|
101684
101937
|
tool$webhooksDeleteWebhook = {
|
|
@@ -101686,9 +101939,9 @@ var init_webhooksDeleteWebhook2 = __esm(() => {
|
|
|
101686
101939
|
description: `Deletes a webhook
|
|
101687
101940
|
|
|
101688
101941
|
Deletes a webhook`,
|
|
101689
|
-
args:
|
|
101690
|
-
tool: async (client,
|
|
101691
|
-
const [result, apiCall] = await webhooksDeleteWebhook(client,
|
|
101942
|
+
args: args160,
|
|
101943
|
+
tool: async (client, args161, ctx) => {
|
|
101944
|
+
const [result, apiCall] = await webhooksDeleteWebhook(client, args161.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
101692
101945
|
if (!result.ok) {
|
|
101693
101946
|
return {
|
|
101694
101947
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -101795,9 +102048,9 @@ var init_getwebhookop = __esm(() => {
|
|
|
101795
102048
|
|
|
101796
102049
|
// src/funcs/webhooksGetWebhook.ts
|
|
101797
102050
|
function webhooksGetWebhook(client, request, options) {
|
|
101798
|
-
return new APIPromise($
|
|
102051
|
+
return new APIPromise($do163(client, request, options));
|
|
101799
102052
|
}
|
|
101800
|
-
async function $
|
|
102053
|
+
async function $do163(client, request, options) {
|
|
101801
102054
|
const parsed = safeParse(request, (value) => GetWebhookRequest$outboundSchema.parse(value), "Input validation failed");
|
|
101802
102055
|
if (!parsed.ok) {
|
|
101803
102056
|
return [parsed, { status: "invalid" }];
|
|
@@ -101877,12 +102130,12 @@ var init_webhooksGetWebhook = __esm(() => {
|
|
|
101877
102130
|
});
|
|
101878
102131
|
|
|
101879
102132
|
// src/mcp-server/tools/webhooksGetWebhook.ts
|
|
101880
|
-
var
|
|
102133
|
+
var args161, tool$webhooksGetWebhook;
|
|
101881
102134
|
var init_webhooksGetWebhook2 = __esm(() => {
|
|
101882
102135
|
init_webhooksGetWebhook();
|
|
101883
102136
|
init_getwebhookop();
|
|
101884
102137
|
init_tools();
|
|
101885
|
-
|
|
102138
|
+
args161 = {
|
|
101886
102139
|
request: GetWebhookRequest$inboundSchema
|
|
101887
102140
|
};
|
|
101888
102141
|
tool$webhooksGetWebhook = {
|
|
@@ -101890,9 +102143,9 @@ var init_webhooksGetWebhook2 = __esm(() => {
|
|
|
101890
102143
|
description: `Get a webhook
|
|
101891
102144
|
|
|
101892
102145
|
Get a webhook`,
|
|
101893
|
-
args:
|
|
101894
|
-
tool: async (client,
|
|
101895
|
-
const [result, apiCall] = await webhooksGetWebhook(client,
|
|
102146
|
+
args: args161,
|
|
102147
|
+
tool: async (client, args162, ctx) => {
|
|
102148
|
+
const [result, apiCall] = await webhooksGetWebhook(client, args162.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
101896
102149
|
if (!result.ok) {
|
|
101897
102150
|
return {
|
|
101898
102151
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -102157,9 +102410,9 @@ var init_getwebhooksop = __esm(() => {
|
|
|
102157
102410
|
|
|
102158
102411
|
// src/funcs/webhooksGetWebhooks.ts
|
|
102159
102412
|
function webhooksGetWebhooks(client, request, options) {
|
|
102160
|
-
return new APIPromise($
|
|
102413
|
+
return new APIPromise($do164(client, request, options));
|
|
102161
102414
|
}
|
|
102162
|
-
async function $
|
|
102415
|
+
async function $do164(client, request, options) {
|
|
102163
102416
|
const parsed = safeParse(request, (value) => GetWebhooksRequest$outboundSchema.parse(value), "Input validation failed");
|
|
102164
102417
|
if (!parsed.ok) {
|
|
102165
102418
|
return [parsed, { status: "invalid" }];
|
|
@@ -102234,12 +102487,12 @@ var init_webhooksGetWebhooks = __esm(() => {
|
|
|
102234
102487
|
});
|
|
102235
102488
|
|
|
102236
102489
|
// src/mcp-server/tools/webhooksGetWebhooks.ts
|
|
102237
|
-
var
|
|
102490
|
+
var args162, tool$webhooksGetWebhooks;
|
|
102238
102491
|
var init_webhooksGetWebhooks2 = __esm(() => {
|
|
102239
102492
|
init_webhooksGetWebhooks();
|
|
102240
102493
|
init_getwebhooksop();
|
|
102241
102494
|
init_tools();
|
|
102242
|
-
|
|
102495
|
+
args162 = {
|
|
102243
102496
|
request: GetWebhooksRequest$inboundSchema
|
|
102244
102497
|
};
|
|
102245
102498
|
tool$webhooksGetWebhooks = {
|
|
@@ -102247,9 +102500,9 @@ var init_webhooksGetWebhooks2 = __esm(() => {
|
|
|
102247
102500
|
description: `Get a list of webhooks
|
|
102248
102501
|
|
|
102249
102502
|
Get a list of webhooks`,
|
|
102250
|
-
args:
|
|
102251
|
-
tool: async (client,
|
|
102252
|
-
const [result, apiCall] = await webhooksGetWebhooks(client,
|
|
102503
|
+
args: args162,
|
|
102504
|
+
tool: async (client, args163, ctx) => {
|
|
102505
|
+
const [result, apiCall] = await webhooksGetWebhooks(client, args163.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
102253
102506
|
if (!result.ok) {
|
|
102254
102507
|
return {
|
|
102255
102508
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -102266,14 +102519,14 @@ Get a list of webhooks`,
|
|
|
102266
102519
|
function createMCPServer(deps) {
|
|
102267
102520
|
const server = new McpServer({
|
|
102268
102521
|
name: "Vercel",
|
|
102269
|
-
version: "1.6.
|
|
102522
|
+
version: "1.6.2"
|
|
102270
102523
|
});
|
|
102271
102524
|
const client = new VercelCore({
|
|
102272
102525
|
bearerToken: deps.bearerToken,
|
|
102273
102526
|
serverURL: deps.serverURL,
|
|
102274
102527
|
serverIdx: deps.serverIdx
|
|
102275
102528
|
});
|
|
102276
|
-
const scopes = new Set(deps.scopes
|
|
102529
|
+
const scopes = new Set(deps.scopes);
|
|
102277
102530
|
const allowedTools = deps.allowedTools && new Set(deps.allowedTools);
|
|
102278
102531
|
const tool = createRegisterTool(deps.logger, server, client, scopes, allowedTools);
|
|
102279
102532
|
const resource = createRegisterResource(deps.logger, server, client, scopes);
|
|
@@ -102323,6 +102576,8 @@ function createMCPServer(deps) {
|
|
|
102323
102576
|
tool(tool$projectsUpdateProjectProtectionBypass);
|
|
102324
102577
|
tool(tool$projectsRequestPromote);
|
|
102325
102578
|
tool(tool$projectsListPromoteAliases);
|
|
102579
|
+
tool(tool$projectsPauseProject);
|
|
102580
|
+
tool(tool$projectsUnpauseProject);
|
|
102326
102581
|
tool(tool$deploymentsGetDeploymentEvents);
|
|
102327
102582
|
tool(tool$deploymentsUpdateIntegrationDeploymentAction);
|
|
102328
102583
|
tool(tool$deploymentsGetDeployment);
|
|
@@ -102391,7 +102646,6 @@ function createMCPServer(deps) {
|
|
|
102391
102646
|
tool(tool$marketplaceUpdateResourceSecretsById);
|
|
102392
102647
|
tool(tool$marketplaceImportResource);
|
|
102393
102648
|
tool(tool$marketplaceExchangeSsoToken);
|
|
102394
|
-
tool(tool$marketplaceQueryExperimentationItems);
|
|
102395
102649
|
tool(tool$marketplaceCreateInstallationIntegrationConfiguration);
|
|
102396
102650
|
tool(tool$marketplaceUpdateInstallationIntegrationConfiguration);
|
|
102397
102651
|
tool(tool$marketplaceDeleteInstallationIntegrationConfiguration);
|
|
@@ -102449,7 +102703,6 @@ var init_server2 = __esm(() => {
|
|
|
102449
102703
|
init_mcp();
|
|
102450
102704
|
init_core();
|
|
102451
102705
|
init_resources();
|
|
102452
|
-
init_scopes();
|
|
102453
102706
|
init_tools();
|
|
102454
102707
|
init_accessGroupsCreateAccessGroup2();
|
|
102455
102708
|
init_accessGroupsCreateAccessGroupProject2();
|
|
@@ -102554,7 +102807,6 @@ var init_server2 = __esm(() => {
|
|
|
102554
102807
|
init_marketplaceGetInvoice2();
|
|
102555
102808
|
init_marketplaceGetMember2();
|
|
102556
102809
|
init_marketplaceImportResource2();
|
|
102557
|
-
init_marketplaceQueryExperimentationItems2();
|
|
102558
102810
|
init_marketplaceSubmitBillingData2();
|
|
102559
102811
|
init_marketplaceSubmitInvoice2();
|
|
102560
102812
|
init_marketplaceSubmitPrepaymentBalances2();
|
|
@@ -102579,9 +102831,11 @@ var init_server2 = __esm(() => {
|
|
|
102579
102831
|
init_projectsGetProjectEnv2();
|
|
102580
102832
|
init_projectsGetProjects2();
|
|
102581
102833
|
init_projectsListPromoteAliases2();
|
|
102834
|
+
init_projectsPauseProject2();
|
|
102582
102835
|
init_projectsRemoveProjectDomain2();
|
|
102583
102836
|
init_projectsRemoveProjectEnv2();
|
|
102584
102837
|
init_projectsRequestPromote2();
|
|
102838
|
+
init_projectsUnpauseProject2();
|
|
102585
102839
|
init_projectsUpdateProject2();
|
|
102586
102840
|
init_projectsUpdateProjectDataCache2();
|
|
102587
102841
|
init_projectsUpdateProjectDomain2();
|
|
@@ -103695,7 +103949,11 @@ function buildContext(process2) {
|
|
|
103695
103949
|
// src/mcp-server/cli/start/command.ts
|
|
103696
103950
|
init_lib();
|
|
103697
103951
|
init_console_logger();
|
|
103698
|
-
|
|
103952
|
+
|
|
103953
|
+
// src/mcp-server/scopes.ts
|
|
103954
|
+
var mcpScopes = [];
|
|
103955
|
+
|
|
103956
|
+
// src/mcp-server/cli/start/command.ts
|
|
103699
103957
|
var startCommand = on({
|
|
103700
103958
|
loader: async () => {
|
|
103701
103959
|
const { main: main2 } = await Promise.resolve().then(() => (init_impl(), exports_impl));
|
|
@@ -103800,7 +104058,7 @@ var routes = an({
|
|
|
103800
104058
|
var app = He(routes, {
|
|
103801
104059
|
name: "mcp",
|
|
103802
104060
|
versionInfo: {
|
|
103803
|
-
currentVersion: "1.6.
|
|
104061
|
+
currentVersion: "1.6.2"
|
|
103804
104062
|
}
|
|
103805
104063
|
});
|
|
103806
104064
|
zt(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -103808,5 +104066,5 @@ export {
|
|
|
103808
104066
|
app
|
|
103809
104067
|
};
|
|
103810
104068
|
|
|
103811
|
-
//# debugId=
|
|
104069
|
+
//# debugId=1C0D709848679D0B64756E2164756E21
|
|
103812
104070
|
//# sourceMappingURL=mcp-server.js.map
|