@vercel/sdk 1.6.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -2
- package/bin/mcp-server.js +718 -728
- package/bin/mcp-server.js.map +23 -26
- package/docs/sdks/marketplace/README.md +0 -81
- 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 +13 -15
- package/esm/__tests__/projects.test.js.map +1 -1
- package/esm/funcs/deploymentsUploadFile.js +2 -1
- package/esm/funcs/deploymentsUploadFile.js.map +1 -1
- 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 +2 -5
- package/esm/mcp-server/server.js.map +1 -1
- 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/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/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/marketplace.test.ts +5 -15
- package/src/__tests__/projects.test.ts +13 -15
- package/src/funcs/deploymentsUploadFile.ts +2 -1
- 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 +3 -5
- 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/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/vercel-spec.json +271 -229
- package/esm/funcs/marketplaceQueryExperimentationItems.d.ts +0 -18
- package/esm/funcs/marketplaceQueryExperimentationItems.d.ts.map +0 -1
- package/esm/funcs/marketplaceQueryExperimentationItems.js +0 -84
- 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/funcs/marketplaceQueryExperimentationItems.ts +0 -183
- 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.1",
|
|
34194
|
+
genVersion: "2.570.3",
|
|
34195
|
+
userAgent: "speakeasy-sdk/typescript 1.6.1 2.570.3 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 }],
|
|
@@ -78675,9 +78732,9 @@ var init_removeprojectdomainop = __esm(() => {
|
|
|
78675
78732
|
|
|
78676
78733
|
// src/funcs/projectsRemoveProjectDomain.ts
|
|
78677
78734
|
function projectsRemoveProjectDomain(client, request, options) {
|
|
78678
|
-
return new APIPromise($
|
|
78735
|
+
return new APIPromise($do128(client, request, options));
|
|
78679
78736
|
}
|
|
78680
|
-
async function $
|
|
78737
|
+
async function $do128(client, request, options) {
|
|
78681
78738
|
const parsed = safeParse(request, (value) => RemoveProjectDomainRequest$outboundSchema.parse(value), "Input validation failed");
|
|
78682
78739
|
if (!parsed.ok) {
|
|
78683
78740
|
return [parsed, { status: "invalid" }];
|
|
@@ -78762,12 +78819,12 @@ var init_projectsRemoveProjectDomain = __esm(() => {
|
|
|
78762
78819
|
});
|
|
78763
78820
|
|
|
78764
78821
|
// src/mcp-server/tools/projectsRemoveProjectDomain.ts
|
|
78765
|
-
var
|
|
78822
|
+
var args127, tool$projectsRemoveProjectDomain;
|
|
78766
78823
|
var init_projectsRemoveProjectDomain2 = __esm(() => {
|
|
78767
78824
|
init_projectsRemoveProjectDomain();
|
|
78768
78825
|
init_removeprojectdomainop();
|
|
78769
78826
|
init_tools();
|
|
78770
|
-
|
|
78827
|
+
args127 = {
|
|
78771
78828
|
request: RemoveProjectDomainRequest$inboundSchema
|
|
78772
78829
|
};
|
|
78773
78830
|
tool$projectsRemoveProjectDomain = {
|
|
@@ -78775,9 +78832,9 @@ var init_projectsRemoveProjectDomain2 = __esm(() => {
|
|
|
78775
78832
|
description: `Remove a domain from a project
|
|
78776
78833
|
|
|
78777
78834
|
Remove a domain from a project by passing the domain name and by specifying the project by either passing the project \`id\` or \`name\` in the URL.`,
|
|
78778
|
-
args:
|
|
78779
|
-
tool: async (client,
|
|
78780
|
-
const [result, apiCall] = await projectsRemoveProjectDomain(client,
|
|
78835
|
+
args: args127,
|
|
78836
|
+
tool: async (client, args128, ctx) => {
|
|
78837
|
+
const [result, apiCall] = await projectsRemoveProjectDomain(client, args128.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
78781
78838
|
if (!result.ok) {
|
|
78782
78839
|
return {
|
|
78783
78840
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -80371,9 +80428,9 @@ var init_removeprojectenvop = __esm(() => {
|
|
|
80371
80428
|
|
|
80372
80429
|
// src/funcs/projectsRemoveProjectEnv.ts
|
|
80373
80430
|
function projectsRemoveProjectEnv(client, request, options) {
|
|
80374
|
-
return new APIPromise($
|
|
80431
|
+
return new APIPromise($do129(client, request, options));
|
|
80375
80432
|
}
|
|
80376
|
-
async function $
|
|
80433
|
+
async function $do129(client, request, options) {
|
|
80377
80434
|
const parsed = safeParse(request, (value) => RemoveProjectEnvRequest$outboundSchema.parse(value), "Input validation failed");
|
|
80378
80435
|
if (!parsed.ok) {
|
|
80379
80436
|
return [parsed, { status: "invalid" }];
|
|
@@ -80459,12 +80516,12 @@ var init_projectsRemoveProjectEnv = __esm(() => {
|
|
|
80459
80516
|
});
|
|
80460
80517
|
|
|
80461
80518
|
// src/mcp-server/tools/projectsRemoveProjectEnv.ts
|
|
80462
|
-
var
|
|
80519
|
+
var args128, tool$projectsRemoveProjectEnv;
|
|
80463
80520
|
var init_projectsRemoveProjectEnv2 = __esm(() => {
|
|
80464
80521
|
init_projectsRemoveProjectEnv();
|
|
80465
80522
|
init_removeprojectenvop();
|
|
80466
80523
|
init_tools();
|
|
80467
|
-
|
|
80524
|
+
args128 = {
|
|
80468
80525
|
request: RemoveProjectEnvRequest$inboundSchema
|
|
80469
80526
|
};
|
|
80470
80527
|
tool$projectsRemoveProjectEnv = {
|
|
@@ -80472,9 +80529,9 @@ var init_projectsRemoveProjectEnv2 = __esm(() => {
|
|
|
80472
80529
|
description: `Remove an environment variable
|
|
80473
80530
|
|
|
80474
80531
|
Delete a specific environment variable for a given project by passing the environment variable identifier and either passing the project \`id\` or \`name\` in the URL.`,
|
|
80475
|
-
args:
|
|
80476
|
-
tool: async (client,
|
|
80477
|
-
const [result, apiCall] = await projectsRemoveProjectEnv(client,
|
|
80532
|
+
args: args128,
|
|
80533
|
+
tool: async (client, args129, ctx) => {
|
|
80534
|
+
const [result, apiCall] = await projectsRemoveProjectEnv(client, args129.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
80478
80535
|
if (!result.ok) {
|
|
80479
80536
|
return {
|
|
80480
80537
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -80511,9 +80568,9 @@ var init_requestpromoteop = __esm(() => {
|
|
|
80511
80568
|
|
|
80512
80569
|
// src/funcs/projectsRequestPromote.ts
|
|
80513
80570
|
function projectsRequestPromote(client, request, options) {
|
|
80514
|
-
return new APIPromise($
|
|
80571
|
+
return new APIPromise($do130(client, request, options));
|
|
80515
80572
|
}
|
|
80516
|
-
async function $
|
|
80573
|
+
async function $do130(client, request, options) {
|
|
80517
80574
|
const parsed = safeParse(request, (value) => RequestPromoteRequest$outboundSchema.parse(value), "Input validation failed");
|
|
80518
80575
|
if (!parsed.ok) {
|
|
80519
80576
|
return [parsed, { status: "invalid" }];
|
|
@@ -80598,12 +80655,12 @@ var init_projectsRequestPromote = __esm(() => {
|
|
|
80598
80655
|
});
|
|
80599
80656
|
|
|
80600
80657
|
// src/mcp-server/tools/projectsRequestPromote.ts
|
|
80601
|
-
var
|
|
80658
|
+
var args129, tool$projectsRequestPromote;
|
|
80602
80659
|
var init_projectsRequestPromote2 = __esm(() => {
|
|
80603
80660
|
init_projectsRequestPromote();
|
|
80604
80661
|
init_requestpromoteop();
|
|
80605
80662
|
init_tools();
|
|
80606
|
-
|
|
80663
|
+
args129 = {
|
|
80607
80664
|
request: RequestPromoteRequest$inboundSchema
|
|
80608
80665
|
};
|
|
80609
80666
|
tool$projectsRequestPromote = {
|
|
@@ -80611,9 +80668,9 @@ var init_projectsRequestPromote2 = __esm(() => {
|
|
|
80611
80668
|
description: `Points all production domains for a project to the given deploy
|
|
80612
80669
|
|
|
80613
80670
|
Allows users to promote a deployment to production. Note: This does NOT rebuild the deployment. If you need that, then call create-deployments endpoint.`,
|
|
80614
|
-
args:
|
|
80615
|
-
tool: async (client,
|
|
80616
|
-
const [result, apiCall] = await projectsRequestPromote(client,
|
|
80671
|
+
args: args129,
|
|
80672
|
+
tool: async (client, args130, ctx) => {
|
|
80673
|
+
const [result, apiCall] = await projectsRequestPromote(client, args130.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
80617
80674
|
if (!result.ok) {
|
|
80618
80675
|
return {
|
|
80619
80676
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -81039,12 +81096,12 @@ var init_updateprojectop = __esm(() => {
|
|
|
81039
81096
|
UpdateProjectIssuerMode$.outboundSchema = UpdateProjectIssuerMode$outboundSchema;
|
|
81040
81097
|
})(UpdateProjectIssuerMode$ ||= {});
|
|
81041
81098
|
UpdateProjectOidcTokenConfig$inboundSchema = objectType({
|
|
81042
|
-
enabled: booleanType(),
|
|
81043
|
-
issuerMode: UpdateProjectIssuerMode$inboundSchema.default("
|
|
81099
|
+
enabled: booleanType().default(true),
|
|
81100
|
+
issuerMode: UpdateProjectIssuerMode$inboundSchema.default("team")
|
|
81044
81101
|
});
|
|
81045
81102
|
UpdateProjectOidcTokenConfig$outboundSchema = objectType({
|
|
81046
|
-
enabled: booleanType(),
|
|
81047
|
-
issuerMode: UpdateProjectIssuerMode$outboundSchema.default("
|
|
81103
|
+
enabled: booleanType().default(true),
|
|
81104
|
+
issuerMode: UpdateProjectIssuerMode$outboundSchema.default("team")
|
|
81048
81105
|
});
|
|
81049
81106
|
((UpdateProjectOidcTokenConfig$) => {
|
|
81050
81107
|
UpdateProjectOidcTokenConfig$.inboundSchema = UpdateProjectOidcTokenConfig$inboundSchema;
|
|
@@ -83646,9 +83703,9 @@ var init_updateprojectop = __esm(() => {
|
|
|
83646
83703
|
|
|
83647
83704
|
// src/funcs/projectsUpdateProject.ts
|
|
83648
83705
|
function projectsUpdateProject(client, request, options) {
|
|
83649
|
-
return new APIPromise($
|
|
83706
|
+
return new APIPromise($do131(client, request, options));
|
|
83650
83707
|
}
|
|
83651
|
-
async function $
|
|
83708
|
+
async function $do131(client, request, options) {
|
|
83652
83709
|
const parsed = safeParse(request, (value) => UpdateProjectRequest$outboundSchema.parse(value), "Input validation failed");
|
|
83653
83710
|
if (!parsed.ok) {
|
|
83654
83711
|
return [parsed, { status: "invalid" }];
|
|
@@ -83730,12 +83787,12 @@ var init_projectsUpdateProject = __esm(() => {
|
|
|
83730
83787
|
});
|
|
83731
83788
|
|
|
83732
83789
|
// src/mcp-server/tools/projectsUpdateProject.ts
|
|
83733
|
-
var
|
|
83790
|
+
var args130, tool$projectsUpdateProject;
|
|
83734
83791
|
var init_projectsUpdateProject2 = __esm(() => {
|
|
83735
83792
|
init_projectsUpdateProject();
|
|
83736
83793
|
init_updateprojectop();
|
|
83737
83794
|
init_tools();
|
|
83738
|
-
|
|
83795
|
+
args130 = {
|
|
83739
83796
|
request: UpdateProjectRequest$inboundSchema
|
|
83740
83797
|
};
|
|
83741
83798
|
tool$projectsUpdateProject = {
|
|
@@ -83743,9 +83800,9 @@ var init_projectsUpdateProject2 = __esm(() => {
|
|
|
83743
83800
|
description: `Update an existing project
|
|
83744
83801
|
|
|
83745
83802
|
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,
|
|
83803
|
+
args: args130,
|
|
83804
|
+
tool: async (client, args131, ctx) => {
|
|
83805
|
+
const [result, apiCall] = await projectsUpdateProject(client, args131.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
83749
83806
|
if (!result.ok) {
|
|
83750
83807
|
return {
|
|
83751
83808
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -86549,9 +86606,9 @@ var init_updateprojectdatacacheop = __esm(() => {
|
|
|
86549
86606
|
|
|
86550
86607
|
// src/funcs/projectsUpdateProjectDataCache.ts
|
|
86551
86608
|
function projectsUpdateProjectDataCache(client, request, options) {
|
|
86552
|
-
return new APIPromise($
|
|
86609
|
+
return new APIPromise($do132(client, request, options));
|
|
86553
86610
|
}
|
|
86554
|
-
async function $
|
|
86611
|
+
async function $do132(client, request, options) {
|
|
86555
86612
|
const parsed = safeParse(request, (value) => UpdateProjectDataCacheRequest$outboundSchema.parse(value), "Input validation failed");
|
|
86556
86613
|
if (!parsed.ok) {
|
|
86557
86614
|
return [parsed, { status: "invalid" }];
|
|
@@ -86633,12 +86690,12 @@ var init_projectsUpdateProjectDataCache = __esm(() => {
|
|
|
86633
86690
|
});
|
|
86634
86691
|
|
|
86635
86692
|
// src/mcp-server/tools/projectsUpdateProjectDataCache.ts
|
|
86636
|
-
var
|
|
86693
|
+
var args131, tool$projectsUpdateProjectDataCache;
|
|
86637
86694
|
var init_projectsUpdateProjectDataCache2 = __esm(() => {
|
|
86638
86695
|
init_projectsUpdateProjectDataCache();
|
|
86639
86696
|
init_updateprojectdatacacheop();
|
|
86640
86697
|
init_tools();
|
|
86641
|
-
|
|
86698
|
+
args131 = {
|
|
86642
86699
|
request: UpdateProjectDataCacheRequest$inboundSchema
|
|
86643
86700
|
};
|
|
86644
86701
|
tool$projectsUpdateProjectDataCache = {
|
|
@@ -86646,9 +86703,9 @@ var init_projectsUpdateProjectDataCache2 = __esm(() => {
|
|
|
86646
86703
|
description: `Update the data cache feature
|
|
86647
86704
|
|
|
86648
86705
|
Update the data cache feature on a project.`,
|
|
86649
|
-
args:
|
|
86650
|
-
tool: async (client,
|
|
86651
|
-
const [result, apiCall] = await projectsUpdateProjectDataCache(client,
|
|
86706
|
+
args: args131,
|
|
86707
|
+
tool: async (client, args132, ctx) => {
|
|
86708
|
+
const [result, apiCall] = await projectsUpdateProjectDataCache(client, args132.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
86652
86709
|
if (!result.ok) {
|
|
86653
86710
|
return {
|
|
86654
86711
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -86768,9 +86825,9 @@ var init_updateprojectdomainop = __esm(() => {
|
|
|
86768
86825
|
|
|
86769
86826
|
// src/funcs/projectsUpdateProjectDomain.ts
|
|
86770
86827
|
function projectsUpdateProjectDomain(client, request, options) {
|
|
86771
|
-
return new APIPromise($
|
|
86828
|
+
return new APIPromise($do133(client, request, options));
|
|
86772
86829
|
}
|
|
86773
|
-
async function $
|
|
86830
|
+
async function $do133(client, request, options) {
|
|
86774
86831
|
const parsed = safeParse(request, (value) => UpdateProjectDomainRequest$outboundSchema.parse(value), "Input validation failed");
|
|
86775
86832
|
if (!parsed.ok) {
|
|
86776
86833
|
return [parsed, { status: "invalid" }];
|
|
@@ -86855,12 +86912,12 @@ var init_projectsUpdateProjectDomain = __esm(() => {
|
|
|
86855
86912
|
});
|
|
86856
86913
|
|
|
86857
86914
|
// src/mcp-server/tools/projectsUpdateProjectDomain.ts
|
|
86858
|
-
var
|
|
86915
|
+
var args132, tool$projectsUpdateProjectDomain;
|
|
86859
86916
|
var init_projectsUpdateProjectDomain2 = __esm(() => {
|
|
86860
86917
|
init_projectsUpdateProjectDomain();
|
|
86861
86918
|
init_updateprojectdomainop();
|
|
86862
86919
|
init_tools();
|
|
86863
|
-
|
|
86920
|
+
args132 = {
|
|
86864
86921
|
request: UpdateProjectDomainRequest$inboundSchema
|
|
86865
86922
|
};
|
|
86866
86923
|
tool$projectsUpdateProjectDomain = {
|
|
@@ -86868,9 +86925,9 @@ var init_projectsUpdateProjectDomain2 = __esm(() => {
|
|
|
86868
86925
|
description: `Update a project domain
|
|
86869
86926
|
|
|
86870
86927
|
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,
|
|
86928
|
+
args: args132,
|
|
86929
|
+
tool: async (client, args133, ctx) => {
|
|
86930
|
+
const [result, apiCall] = await projectsUpdateProjectDomain(client, args133.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
86874
86931
|
if (!result.ok) {
|
|
86875
86932
|
return {
|
|
86876
86933
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -86983,9 +87040,9 @@ var init_updateprojectprotectionbypassop = __esm(() => {
|
|
|
86983
87040
|
|
|
86984
87041
|
// src/funcs/projectsUpdateProjectProtectionBypass.ts
|
|
86985
87042
|
function projectsUpdateProjectProtectionBypass(client, request, options) {
|
|
86986
|
-
return new APIPromise($
|
|
87043
|
+
return new APIPromise($do134(client, request, options));
|
|
86987
87044
|
}
|
|
86988
|
-
async function $
|
|
87045
|
+
async function $do134(client, request, options) {
|
|
86989
87046
|
const parsed = safeParse(request, (value) => UpdateProjectProtectionBypassRequest$outboundSchema.parse(value), "Input validation failed");
|
|
86990
87047
|
if (!parsed.ok) {
|
|
86991
87048
|
return [parsed, { status: "invalid" }];
|
|
@@ -87067,12 +87124,12 @@ var init_projectsUpdateProjectProtectionBypass = __esm(() => {
|
|
|
87067
87124
|
});
|
|
87068
87125
|
|
|
87069
87126
|
// src/mcp-server/tools/projectsUpdateProjectProtectionBypass.ts
|
|
87070
|
-
var
|
|
87127
|
+
var args133, tool$projectsUpdateProjectProtectionBypass;
|
|
87071
87128
|
var init_projectsUpdateProjectProtectionBypass2 = __esm(() => {
|
|
87072
87129
|
init_projectsUpdateProjectProtectionBypass();
|
|
87073
87130
|
init_updateprojectprotectionbypassop();
|
|
87074
87131
|
init_tools();
|
|
87075
|
-
|
|
87132
|
+
args133 = {
|
|
87076
87133
|
request: UpdateProjectProtectionBypassRequest$inboundSchema
|
|
87077
87134
|
};
|
|
87078
87135
|
tool$projectsUpdateProjectProtectionBypass = {
|
|
@@ -87080,9 +87137,9 @@ var init_projectsUpdateProjectProtectionBypass2 = __esm(() => {
|
|
|
87080
87137
|
description: `Update Protection Bypass for Automation
|
|
87081
87138
|
|
|
87082
87139
|
Update the deployment protection automation bypass for a project`,
|
|
87083
|
-
args:
|
|
87084
|
-
tool: async (client,
|
|
87085
|
-
const [result, apiCall] = await projectsUpdateProjectProtectionBypass(client,
|
|
87140
|
+
args: args133,
|
|
87141
|
+
tool: async (client, args134, ctx) => {
|
|
87142
|
+
const [result, apiCall] = await projectsUpdateProjectProtectionBypass(client, args134.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
87086
87143
|
if (!result.ok) {
|
|
87087
87144
|
return {
|
|
87088
87145
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -87147,9 +87204,9 @@ var init_verifyprojectdomainop = __esm(() => {
|
|
|
87147
87204
|
|
|
87148
87205
|
// src/funcs/projectsVerifyProjectDomain.ts
|
|
87149
87206
|
function projectsVerifyProjectDomain(client, request, options) {
|
|
87150
|
-
return new APIPromise($
|
|
87207
|
+
return new APIPromise($do135(client, request, options));
|
|
87151
87208
|
}
|
|
87152
|
-
async function $
|
|
87209
|
+
async function $do135(client, request, options) {
|
|
87153
87210
|
const parsed = safeParse(request, (value) => VerifyProjectDomainRequest$outboundSchema.parse(value), "Input validation failed");
|
|
87154
87211
|
if (!parsed.ok) {
|
|
87155
87212
|
return [parsed, { status: "invalid" }];
|
|
@@ -87233,12 +87290,12 @@ var init_projectsVerifyProjectDomain = __esm(() => {
|
|
|
87233
87290
|
});
|
|
87234
87291
|
|
|
87235
87292
|
// src/mcp-server/tools/projectsVerifyProjectDomain.ts
|
|
87236
|
-
var
|
|
87293
|
+
var args134, tool$projectsVerifyProjectDomain;
|
|
87237
87294
|
var init_projectsVerifyProjectDomain2 = __esm(() => {
|
|
87238
87295
|
init_projectsVerifyProjectDomain();
|
|
87239
87296
|
init_verifyprojectdomainop();
|
|
87240
87297
|
init_tools();
|
|
87241
|
-
|
|
87298
|
+
args134 = {
|
|
87242
87299
|
request: VerifyProjectDomainRequest$inboundSchema
|
|
87243
87300
|
};
|
|
87244
87301
|
tool$projectsVerifyProjectDomain = {
|
|
@@ -87246,9 +87303,9 @@ var init_projectsVerifyProjectDomain2 = __esm(() => {
|
|
|
87246
87303
|
description: `Verify project domain
|
|
87247
87304
|
|
|
87248
87305
|
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,
|
|
87306
|
+
args: args134,
|
|
87307
|
+
tool: async (client, args135, ctx) => {
|
|
87308
|
+
const [result, apiCall] = await projectsVerifyProjectDomain(client, args135.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
87252
87309
|
if (!result.ok) {
|
|
87253
87310
|
return {
|
|
87254
87311
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -87512,9 +87569,9 @@ var init_addbypassipop = __esm(() => {
|
|
|
87512
87569
|
|
|
87513
87570
|
// src/funcs/securityAddBypassIp.ts
|
|
87514
87571
|
function securityAddBypassIp(client, request, options) {
|
|
87515
|
-
return new APIPromise($
|
|
87572
|
+
return new APIPromise($do136(client, request, options));
|
|
87516
87573
|
}
|
|
87517
|
-
async function $
|
|
87574
|
+
async function $do136(client, request, options) {
|
|
87518
87575
|
const parsed = safeParse(request, (value) => AddBypassIpRequest$outboundSchema.parse(value), "Input validation failed");
|
|
87519
87576
|
if (!parsed.ok) {
|
|
87520
87577
|
return [parsed, { status: "invalid" }];
|
|
@@ -87591,12 +87648,12 @@ var init_securityAddBypassIp = __esm(() => {
|
|
|
87591
87648
|
});
|
|
87592
87649
|
|
|
87593
87650
|
// src/mcp-server/tools/securityAddBypassIp.ts
|
|
87594
|
-
var
|
|
87651
|
+
var args135, tool$securityAddBypassIp;
|
|
87595
87652
|
var init_securityAddBypassIp2 = __esm(() => {
|
|
87596
87653
|
init_securityAddBypassIp();
|
|
87597
87654
|
init_addbypassipop();
|
|
87598
87655
|
init_tools();
|
|
87599
|
-
|
|
87656
|
+
args135 = {
|
|
87600
87657
|
request: AddBypassIpRequest$inboundSchema
|
|
87601
87658
|
};
|
|
87602
87659
|
tool$securityAddBypassIp = {
|
|
@@ -87604,9 +87661,9 @@ var init_securityAddBypassIp2 = __esm(() => {
|
|
|
87604
87661
|
description: `Create System Bypass Rule
|
|
87605
87662
|
|
|
87606
87663
|
Create new system bypass rules`,
|
|
87607
|
-
args:
|
|
87608
|
-
tool: async (client,
|
|
87609
|
-
const [result, apiCall] = await securityAddBypassIp(client,
|
|
87664
|
+
args: args135,
|
|
87665
|
+
tool: async (client, args136, ctx) => {
|
|
87666
|
+
const [result, apiCall] = await securityAddBypassIp(client, args136.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
87610
87667
|
if (!result.ok) {
|
|
87611
87668
|
return {
|
|
87612
87669
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -87748,9 +87805,9 @@ var init_getactiveattackstatusop = __esm(() => {
|
|
|
87748
87805
|
|
|
87749
87806
|
// src/funcs/securityGetActiveAttackStatus.ts
|
|
87750
87807
|
function securityGetActiveAttackStatus(client, request, options) {
|
|
87751
|
-
return new APIPromise($
|
|
87808
|
+
return new APIPromise($do137(client, request, options));
|
|
87752
87809
|
}
|
|
87753
|
-
async function $
|
|
87810
|
+
async function $do137(client, request, options) {
|
|
87754
87811
|
const parsed = safeParse(request, (value) => GetActiveAttackStatusRequest$outboundSchema.parse(value), "Input validation failed");
|
|
87755
87812
|
if (!parsed.ok) {
|
|
87756
87813
|
return [parsed, { status: "invalid" }];
|
|
@@ -87826,12 +87883,12 @@ var init_securityGetActiveAttackStatus = __esm(() => {
|
|
|
87826
87883
|
});
|
|
87827
87884
|
|
|
87828
87885
|
// src/mcp-server/tools/securityGetActiveAttackStatus.ts
|
|
87829
|
-
var
|
|
87886
|
+
var args136, tool$securityGetActiveAttackStatus;
|
|
87830
87887
|
var init_securityGetActiveAttackStatus2 = __esm(() => {
|
|
87831
87888
|
init_securityGetActiveAttackStatus();
|
|
87832
87889
|
init_getactiveattackstatusop();
|
|
87833
87890
|
init_tools();
|
|
87834
|
-
|
|
87891
|
+
args136 = {
|
|
87835
87892
|
request: GetActiveAttackStatusRequest$inboundSchema
|
|
87836
87893
|
};
|
|
87837
87894
|
tool$securityGetActiveAttackStatus = {
|
|
@@ -87839,9 +87896,9 @@ var init_securityGetActiveAttackStatus2 = __esm(() => {
|
|
|
87839
87896
|
description: `Read active attack data
|
|
87840
87897
|
|
|
87841
87898
|
Retrieve active attack data within the last 24h window`,
|
|
87842
|
-
args:
|
|
87843
|
-
tool: async (client,
|
|
87844
|
-
const [result, apiCall] = await securityGetActiveAttackStatus(client,
|
|
87899
|
+
args: args136,
|
|
87900
|
+
tool: async (client, args137, ctx) => {
|
|
87901
|
+
const [result, apiCall] = await securityGetActiveAttackStatus(client, args137.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
87845
87902
|
if (!result.ok) {
|
|
87846
87903
|
return {
|
|
87847
87904
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -88105,9 +88162,9 @@ var init_getbypassipop = __esm(() => {
|
|
|
88105
88162
|
|
|
88106
88163
|
// src/funcs/securityGetBypassIp.ts
|
|
88107
88164
|
function securityGetBypassIp(client, request, options) {
|
|
88108
|
-
return new APIPromise($
|
|
88165
|
+
return new APIPromise($do138(client, request, options));
|
|
88109
88166
|
}
|
|
88110
|
-
async function $
|
|
88167
|
+
async function $do138(client, request, options) {
|
|
88111
88168
|
const parsed = safeParse(request, (value) => GetBypassIpRequest$outboundSchema.parse(value), "Input validation failed");
|
|
88112
88169
|
if (!parsed.ok) {
|
|
88113
88170
|
return [parsed, { status: "invalid" }];
|
|
@@ -88188,12 +88245,12 @@ var init_securityGetBypassIp = __esm(() => {
|
|
|
88188
88245
|
});
|
|
88189
88246
|
|
|
88190
88247
|
// src/mcp-server/tools/securityGetBypassIp.ts
|
|
88191
|
-
var
|
|
88248
|
+
var args137, tool$securityGetBypassIp;
|
|
88192
88249
|
var init_securityGetBypassIp2 = __esm(() => {
|
|
88193
88250
|
init_securityGetBypassIp();
|
|
88194
88251
|
init_getbypassipop();
|
|
88195
88252
|
init_tools();
|
|
88196
|
-
|
|
88253
|
+
args137 = {
|
|
88197
88254
|
request: GetBypassIpRequest$inboundSchema
|
|
88198
88255
|
};
|
|
88199
88256
|
tool$securityGetBypassIp = {
|
|
@@ -88201,9 +88258,9 @@ var init_securityGetBypassIp2 = __esm(() => {
|
|
|
88201
88258
|
description: `Read System Bypass
|
|
88202
88259
|
|
|
88203
88260
|
Retrieve the system bypass rules configured for the specified project`,
|
|
88204
|
-
args:
|
|
88205
|
-
tool: async (client,
|
|
88206
|
-
const [result, apiCall] = await securityGetBypassIp(client,
|
|
88261
|
+
args: args137,
|
|
88262
|
+
tool: async (client, args138, ctx) => {
|
|
88263
|
+
const [result, apiCall] = await securityGetBypassIp(client, args138.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
88207
88264
|
if (!result.ok) {
|
|
88208
88265
|
return {
|
|
88209
88266
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -88807,9 +88864,9 @@ var init_getfirewallconfigop = __esm(() => {
|
|
|
88807
88864
|
|
|
88808
88865
|
// src/funcs/securityGetFirewallConfig.ts
|
|
88809
88866
|
function securityGetFirewallConfig(client, request, options) {
|
|
88810
|
-
return new APIPromise($
|
|
88867
|
+
return new APIPromise($do139(client, request, options));
|
|
88811
88868
|
}
|
|
88812
|
-
async function $
|
|
88869
|
+
async function $do139(client, request, options) {
|
|
88813
88870
|
const parsed = safeParse(request, (value) => GetFirewallConfigRequest$outboundSchema.parse(value), "Input validation failed");
|
|
88814
88871
|
if (!parsed.ok) {
|
|
88815
88872
|
return [parsed, { status: "invalid" }];
|
|
@@ -88891,12 +88948,12 @@ var init_securityGetFirewallConfig = __esm(() => {
|
|
|
88891
88948
|
});
|
|
88892
88949
|
|
|
88893
88950
|
// src/mcp-server/tools/securityGetFirewallConfig.ts
|
|
88894
|
-
var
|
|
88951
|
+
var args138, tool$securityGetFirewallConfig;
|
|
88895
88952
|
var init_securityGetFirewallConfig2 = __esm(() => {
|
|
88896
88953
|
init_securityGetFirewallConfig();
|
|
88897
88954
|
init_getfirewallconfigop();
|
|
88898
88955
|
init_tools();
|
|
88899
|
-
|
|
88956
|
+
args138 = {
|
|
88900
88957
|
request: GetFirewallConfigRequest$inboundSchema
|
|
88901
88958
|
};
|
|
88902
88959
|
tool$securityGetFirewallConfig = {
|
|
@@ -88904,9 +88961,9 @@ var init_securityGetFirewallConfig2 = __esm(() => {
|
|
|
88904
88961
|
description: `Read Firewall Configuration
|
|
88905
88962
|
|
|
88906
88963
|
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,
|
|
88964
|
+
args: args138,
|
|
88965
|
+
tool: async (client, args139, ctx) => {
|
|
88966
|
+
const [result, apiCall] = await securityGetFirewallConfig(client, args139.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
88910
88967
|
if (!result.ok) {
|
|
88911
88968
|
return {
|
|
88912
88969
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -89016,9 +89073,9 @@ var init_removebypassipop = __esm(() => {
|
|
|
89016
89073
|
|
|
89017
89074
|
// src/funcs/securityRemoveBypassIp.ts
|
|
89018
89075
|
function securityRemoveBypassIp(client, request, options) {
|
|
89019
|
-
return new APIPromise($
|
|
89076
|
+
return new APIPromise($do140(client, request, options));
|
|
89020
89077
|
}
|
|
89021
|
-
async function $
|
|
89078
|
+
async function $do140(client, request, options) {
|
|
89022
89079
|
const parsed = safeParse(request, (value) => RemoveBypassIpRequest$outboundSchema.parse(value), "Input validation failed");
|
|
89023
89080
|
if (!parsed.ok) {
|
|
89024
89081
|
return [parsed, { status: "invalid" }];
|
|
@@ -89095,12 +89152,12 @@ var init_securityRemoveBypassIp = __esm(() => {
|
|
|
89095
89152
|
});
|
|
89096
89153
|
|
|
89097
89154
|
// src/mcp-server/tools/securityRemoveBypassIp.ts
|
|
89098
|
-
var
|
|
89155
|
+
var args139, tool$securityRemoveBypassIp;
|
|
89099
89156
|
var init_securityRemoveBypassIp2 = __esm(() => {
|
|
89100
89157
|
init_securityRemoveBypassIp();
|
|
89101
89158
|
init_removebypassipop();
|
|
89102
89159
|
init_tools();
|
|
89103
|
-
|
|
89160
|
+
args139 = {
|
|
89104
89161
|
request: RemoveBypassIpRequest$inboundSchema
|
|
89105
89162
|
};
|
|
89106
89163
|
tool$securityRemoveBypassIp = {
|
|
@@ -89108,9 +89165,9 @@ var init_securityRemoveBypassIp2 = __esm(() => {
|
|
|
89108
89165
|
description: `Remove System Bypass Rule
|
|
89109
89166
|
|
|
89110
89167
|
Remove system bypass rules`,
|
|
89111
|
-
args:
|
|
89112
|
-
tool: async (client,
|
|
89113
|
-
const [result, apiCall] = await securityRemoveBypassIp(client,
|
|
89168
|
+
args: args139,
|
|
89169
|
+
tool: async (client, args140, ctx) => {
|
|
89170
|
+
const [result, apiCall] = await securityRemoveBypassIp(client, args140.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
89114
89171
|
if (!result.ok) {
|
|
89115
89172
|
return {
|
|
89116
89173
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -89180,9 +89237,9 @@ var init_updateattackchallengemodeop = __esm(() => {
|
|
|
89180
89237
|
|
|
89181
89238
|
// src/funcs/securityUpdateAttackChallengeMode.ts
|
|
89182
89239
|
function securityUpdateAttackChallengeMode(client, request, options) {
|
|
89183
|
-
return new APIPromise($
|
|
89240
|
+
return new APIPromise($do141(client, request, options));
|
|
89184
89241
|
}
|
|
89185
|
-
async function $
|
|
89242
|
+
async function $do141(client, request, options) {
|
|
89186
89243
|
const parsed = safeParse(request, (value) => UpdateAttackChallengeModeRequest$outboundSchema.parse(value), "Input validation failed");
|
|
89187
89244
|
if (!parsed.ok) {
|
|
89188
89245
|
return [parsed, { status: "invalid" }];
|
|
@@ -89258,12 +89315,12 @@ var init_securityUpdateAttackChallengeMode = __esm(() => {
|
|
|
89258
89315
|
});
|
|
89259
89316
|
|
|
89260
89317
|
// src/mcp-server/tools/securityUpdateAttackChallengeMode.ts
|
|
89261
|
-
var
|
|
89318
|
+
var args140, tool$securityUpdateAttackChallengeMode;
|
|
89262
89319
|
var init_securityUpdateAttackChallengeMode2 = __esm(() => {
|
|
89263
89320
|
init_securityUpdateAttackChallengeMode();
|
|
89264
89321
|
init_updateattackchallengemodeop();
|
|
89265
89322
|
init_tools();
|
|
89266
|
-
|
|
89323
|
+
args140 = {
|
|
89267
89324
|
request: UpdateAttackChallengeModeRequest$inboundSchema
|
|
89268
89325
|
};
|
|
89269
89326
|
tool$securityUpdateAttackChallengeMode = {
|
|
@@ -89271,9 +89328,9 @@ var init_securityUpdateAttackChallengeMode2 = __esm(() => {
|
|
|
89271
89328
|
description: `Update Attack Challenge mode
|
|
89272
89329
|
|
|
89273
89330
|
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,
|
|
89331
|
+
args: args140,
|
|
89332
|
+
tool: async (client, args141, ctx) => {
|
|
89333
|
+
const [result, apiCall] = await securityUpdateAttackChallengeMode(client, args141.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
89277
89334
|
if (!result.ok) {
|
|
89278
89335
|
return {
|
|
89279
89336
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -90249,9 +90306,9 @@ var init_updatefirewallconfigop = __esm(() => {
|
|
|
90249
90306
|
|
|
90250
90307
|
// src/funcs/securityUpdateFirewallConfig.ts
|
|
90251
90308
|
function securityUpdateFirewallConfig(client, request, options) {
|
|
90252
|
-
return new APIPromise($
|
|
90309
|
+
return new APIPromise($do142(client, request, options));
|
|
90253
90310
|
}
|
|
90254
|
-
async function $
|
|
90311
|
+
async function $do142(client, request, options) {
|
|
90255
90312
|
const parsed = safeParse(request, (value) => UpdateFirewallConfigRequest$outboundSchema.parse(value), "Input validation failed");
|
|
90256
90313
|
if (!parsed.ok) {
|
|
90257
90314
|
return [parsed, { status: "invalid" }];
|
|
@@ -90328,12 +90385,12 @@ var init_securityUpdateFirewallConfig = __esm(() => {
|
|
|
90328
90385
|
});
|
|
90329
90386
|
|
|
90330
90387
|
// src/mcp-server/tools/securityUpdateFirewallConfig.ts
|
|
90331
|
-
var
|
|
90388
|
+
var args141, tool$securityUpdateFirewallConfig;
|
|
90332
90389
|
var init_securityUpdateFirewallConfig2 = __esm(() => {
|
|
90333
90390
|
init_securityUpdateFirewallConfig();
|
|
90334
90391
|
init_updatefirewallconfigop();
|
|
90335
90392
|
init_tools();
|
|
90336
|
-
|
|
90393
|
+
args141 = {
|
|
90337
90394
|
request: UpdateFirewallConfigRequest$inboundSchema
|
|
90338
90395
|
};
|
|
90339
90396
|
tool$securityUpdateFirewallConfig = {
|
|
@@ -90341,9 +90398,9 @@ var init_securityUpdateFirewallConfig2 = __esm(() => {
|
|
|
90341
90398
|
description: `Update Firewall Configuration
|
|
90342
90399
|
|
|
90343
90400
|
Process updates to modify the existing firewall config for a project`,
|
|
90344
|
-
args:
|
|
90345
|
-
tool: async (client,
|
|
90346
|
-
const [result, apiCall] = await securityUpdateFirewallConfig(client,
|
|
90401
|
+
args: args141,
|
|
90402
|
+
tool: async (client, args142, ctx) => {
|
|
90403
|
+
const [result, apiCall] = await securityUpdateFirewallConfig(client, args142.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
90347
90404
|
if (!result.ok) {
|
|
90348
90405
|
return {
|
|
90349
90406
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -90430,9 +90487,9 @@ var init_createteamop = __esm(() => {
|
|
|
90430
90487
|
|
|
90431
90488
|
// src/funcs/teamsCreateTeam.ts
|
|
90432
90489
|
function teamsCreateTeam(client, request, options) {
|
|
90433
|
-
return new APIPromise($
|
|
90490
|
+
return new APIPromise($do143(client, request, options));
|
|
90434
90491
|
}
|
|
90435
|
-
async function $
|
|
90492
|
+
async function $do143(client, request, options) {
|
|
90436
90493
|
const parsed = safeParse(request, (value) => CreateTeamRequestBody$outboundSchema.parse(value), "Input validation failed");
|
|
90437
90494
|
if (!parsed.ok) {
|
|
90438
90495
|
return [parsed, { status: "invalid" }];
|
|
@@ -90502,12 +90559,12 @@ var init_teamsCreateTeam = __esm(() => {
|
|
|
90502
90559
|
});
|
|
90503
90560
|
|
|
90504
90561
|
// src/mcp-server/tools/teamsCreateTeam.ts
|
|
90505
|
-
var
|
|
90562
|
+
var args142, tool$teamsCreateTeam;
|
|
90506
90563
|
var init_teamsCreateTeam2 = __esm(() => {
|
|
90507
90564
|
init_teamsCreateTeam();
|
|
90508
90565
|
init_createteamop();
|
|
90509
90566
|
init_tools();
|
|
90510
|
-
|
|
90567
|
+
args142 = {
|
|
90511
90568
|
request: CreateTeamRequestBody$inboundSchema
|
|
90512
90569
|
};
|
|
90513
90570
|
tool$teamsCreateTeam = {
|
|
@@ -90515,9 +90572,9 @@ var init_teamsCreateTeam2 = __esm(() => {
|
|
|
90515
90572
|
description: `Create a Team
|
|
90516
90573
|
|
|
90517
90574
|
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,
|
|
90575
|
+
args: args142,
|
|
90576
|
+
tool: async (client, args143, ctx) => {
|
|
90577
|
+
const [result, apiCall] = await teamsCreateTeam(client, args143.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
90521
90578
|
if (!result.ok) {
|
|
90522
90579
|
return {
|
|
90523
90580
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -90597,9 +90654,9 @@ var init_deleteteamop = __esm(() => {
|
|
|
90597
90654
|
|
|
90598
90655
|
// src/funcs/teamsDeleteTeam.ts
|
|
90599
90656
|
function teamsDeleteTeam(client, request, options) {
|
|
90600
|
-
return new APIPromise($
|
|
90657
|
+
return new APIPromise($do144(client, request, options));
|
|
90601
90658
|
}
|
|
90602
|
-
async function $
|
|
90659
|
+
async function $do144(client, request, options) {
|
|
90603
90660
|
const parsed = safeParse(request, (value) => DeleteTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
90604
90661
|
if (!parsed.ok) {
|
|
90605
90662
|
return [parsed, { status: "invalid" }];
|
|
@@ -90681,12 +90738,12 @@ var init_teamsDeleteTeam = __esm(() => {
|
|
|
90681
90738
|
});
|
|
90682
90739
|
|
|
90683
90740
|
// src/mcp-server/tools/teamsDeleteTeam.ts
|
|
90684
|
-
var
|
|
90741
|
+
var args143, tool$teamsDeleteTeam;
|
|
90685
90742
|
var init_teamsDeleteTeam2 = __esm(() => {
|
|
90686
90743
|
init_teamsDeleteTeam();
|
|
90687
90744
|
init_deleteteamop();
|
|
90688
90745
|
init_tools();
|
|
90689
|
-
|
|
90746
|
+
args143 = {
|
|
90690
90747
|
request: DeleteTeamRequest$inboundSchema
|
|
90691
90748
|
};
|
|
90692
90749
|
tool$teamsDeleteTeam = {
|
|
@@ -90694,9 +90751,9 @@ var init_teamsDeleteTeam2 = __esm(() => {
|
|
|
90694
90751
|
description: `Delete a Team
|
|
90695
90752
|
|
|
90696
90753
|
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,
|
|
90754
|
+
args: args143,
|
|
90755
|
+
tool: async (client, args144, ctx) => {
|
|
90756
|
+
const [result, apiCall] = await teamsDeleteTeam(client, args144.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
90700
90757
|
if (!result.ok) {
|
|
90701
90758
|
return {
|
|
90702
90759
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -90739,9 +90796,9 @@ var init_deleteteaminvitecodeop = __esm(() => {
|
|
|
90739
90796
|
|
|
90740
90797
|
// src/funcs/teamsDeleteTeamInviteCode.ts
|
|
90741
90798
|
function teamsDeleteTeamInviteCode(client, request, options) {
|
|
90742
|
-
return new APIPromise($
|
|
90799
|
+
return new APIPromise($do145(client, request, options));
|
|
90743
90800
|
}
|
|
90744
|
-
async function $
|
|
90801
|
+
async function $do145(client, request, options) {
|
|
90745
90802
|
const parsed = safeParse(request, (value) => DeleteTeamInviteCodeRequest$outboundSchema.parse(value), "Input validation failed");
|
|
90746
90803
|
if (!parsed.ok) {
|
|
90747
90804
|
return [parsed, { status: "invalid" }];
|
|
@@ -90821,12 +90878,12 @@ var init_teamsDeleteTeamInviteCode = __esm(() => {
|
|
|
90821
90878
|
});
|
|
90822
90879
|
|
|
90823
90880
|
// src/mcp-server/tools/teamsDeleteTeamInviteCode.ts
|
|
90824
|
-
var
|
|
90881
|
+
var args144, tool$teamsDeleteTeamInviteCode;
|
|
90825
90882
|
var init_teamsDeleteTeamInviteCode2 = __esm(() => {
|
|
90826
90883
|
init_teamsDeleteTeamInviteCode();
|
|
90827
90884
|
init_deleteteaminvitecodeop();
|
|
90828
90885
|
init_tools();
|
|
90829
|
-
|
|
90886
|
+
args144 = {
|
|
90830
90887
|
request: DeleteTeamInviteCodeRequest$inboundSchema
|
|
90831
90888
|
};
|
|
90832
90889
|
tool$teamsDeleteTeamInviteCode = {
|
|
@@ -90834,9 +90891,9 @@ var init_teamsDeleteTeamInviteCode2 = __esm(() => {
|
|
|
90834
90891
|
description: `Delete a Team invite code
|
|
90835
90892
|
|
|
90836
90893
|
Delete an active Team invite code.`,
|
|
90837
|
-
args:
|
|
90838
|
-
tool: async (client,
|
|
90839
|
-
const [result, apiCall] = await teamsDeleteTeamInviteCode(client,
|
|
90894
|
+
args: args144,
|
|
90895
|
+
tool: async (client, args145, ctx) => {
|
|
90896
|
+
const [result, apiCall] = await teamsDeleteTeamInviteCode(client, args145.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
90840
90897
|
if (!result.ok) {
|
|
90841
90898
|
return {
|
|
90842
90899
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -90869,9 +90926,9 @@ var init_getteamop = __esm(() => {
|
|
|
90869
90926
|
|
|
90870
90927
|
// src/funcs/teamsGetTeam.ts
|
|
90871
90928
|
function teamsGetTeam(client, request, options) {
|
|
90872
|
-
return new APIPromise($
|
|
90929
|
+
return new APIPromise($do146(client, request, options));
|
|
90873
90930
|
}
|
|
90874
|
-
async function $
|
|
90931
|
+
async function $do146(client, request, options) {
|
|
90875
90932
|
const parsed = safeParse(request, (value) => GetTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
90876
90933
|
if (!parsed.ok) {
|
|
90877
90934
|
return [parsed, { status: "invalid" }];
|
|
@@ -90952,12 +91009,12 @@ var init_teamsGetTeam = __esm(() => {
|
|
|
90952
91009
|
});
|
|
90953
91010
|
|
|
90954
91011
|
// src/mcp-server/tools/teamsGetTeam.ts
|
|
90955
|
-
var
|
|
91012
|
+
var args145, tool$teamsGetTeam;
|
|
90956
91013
|
var init_teamsGetTeam2 = __esm(() => {
|
|
90957
91014
|
init_teamsGetTeam();
|
|
90958
91015
|
init_getteamop();
|
|
90959
91016
|
init_tools();
|
|
90960
|
-
|
|
91017
|
+
args145 = {
|
|
90961
91018
|
request: GetTeamRequest$inboundSchema
|
|
90962
91019
|
};
|
|
90963
91020
|
tool$teamsGetTeam = {
|
|
@@ -90965,9 +91022,9 @@ var init_teamsGetTeam2 = __esm(() => {
|
|
|
90965
91022
|
description: `Get a Team
|
|
90966
91023
|
|
|
90967
91024
|
Get information for the Team specified by the \`teamId\` parameter.`,
|
|
90968
|
-
args:
|
|
90969
|
-
tool: async (client,
|
|
90970
|
-
const [result, apiCall] = await teamsGetTeam(client,
|
|
91025
|
+
args: args145,
|
|
91026
|
+
tool: async (client, args146, ctx) => {
|
|
91027
|
+
const [result, apiCall] = await teamsGetTeam(client, args146.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
90971
91028
|
if (!result.ok) {
|
|
90972
91029
|
return {
|
|
90973
91030
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -91109,9 +91166,9 @@ var init_getteamaccessrequestop = __esm(() => {
|
|
|
91109
91166
|
|
|
91110
91167
|
// src/funcs/teamsGetTeamAccessRequest.ts
|
|
91111
91168
|
function teamsGetTeamAccessRequest(client, request, options) {
|
|
91112
|
-
return new APIPromise($
|
|
91169
|
+
return new APIPromise($do147(client, request, options));
|
|
91113
91170
|
}
|
|
91114
|
-
async function $
|
|
91171
|
+
async function $do147(client, request, options) {
|
|
91115
91172
|
const parsed = safeParse(request, (value) => GetTeamAccessRequestRequest$outboundSchema.parse(value), "Input validation failed");
|
|
91116
91173
|
if (!parsed.ok) {
|
|
91117
91174
|
return [parsed, { status: "invalid" }];
|
|
@@ -91191,12 +91248,12 @@ var init_teamsGetTeamAccessRequest = __esm(() => {
|
|
|
91191
91248
|
});
|
|
91192
91249
|
|
|
91193
91250
|
// src/mcp-server/tools/teamsGetTeamAccessRequest.ts
|
|
91194
|
-
var
|
|
91251
|
+
var args146, tool$teamsGetTeamAccessRequest;
|
|
91195
91252
|
var init_teamsGetTeamAccessRequest2 = __esm(() => {
|
|
91196
91253
|
init_teamsGetTeamAccessRequest();
|
|
91197
91254
|
init_getteamaccessrequestop();
|
|
91198
91255
|
init_tools();
|
|
91199
|
-
|
|
91256
|
+
args146 = {
|
|
91200
91257
|
request: GetTeamAccessRequestRequest$inboundSchema
|
|
91201
91258
|
};
|
|
91202
91259
|
tool$teamsGetTeamAccessRequest = {
|
|
@@ -91204,9 +91261,9 @@ var init_teamsGetTeamAccessRequest2 = __esm(() => {
|
|
|
91204
91261
|
description: `Get access request status
|
|
91205
91262
|
|
|
91206
91263
|
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,
|
|
91264
|
+
args: args146,
|
|
91265
|
+
tool: async (client, args147, ctx) => {
|
|
91266
|
+
const [result, apiCall] = await teamsGetTeamAccessRequest(client, args147.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
91210
91267
|
if (!result.ok) {
|
|
91211
91268
|
return {
|
|
91212
91269
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -91506,9 +91563,9 @@ var init_getteammembersop = __esm(() => {
|
|
|
91506
91563
|
|
|
91507
91564
|
// src/funcs/teamsGetTeamMembers.ts
|
|
91508
91565
|
function teamsGetTeamMembers(client, request, options) {
|
|
91509
|
-
return new APIPromise($
|
|
91566
|
+
return new APIPromise($do148(client, request, options));
|
|
91510
91567
|
}
|
|
91511
|
-
async function $
|
|
91568
|
+
async function $do148(client, request, options) {
|
|
91512
91569
|
const parsed = safeParse(request, (value) => GetTeamMembersRequest$outboundSchema.parse(value), "Input validation failed");
|
|
91513
91570
|
if (!parsed.ok) {
|
|
91514
91571
|
return [parsed, { status: "invalid" }];
|
|
@@ -91588,12 +91645,12 @@ var init_teamsGetTeamMembers = __esm(() => {
|
|
|
91588
91645
|
});
|
|
91589
91646
|
|
|
91590
91647
|
// src/mcp-server/tools/teamsGetTeamMembers.ts
|
|
91591
|
-
var
|
|
91648
|
+
var args147, tool$teamsGetTeamMembers;
|
|
91592
91649
|
var init_teamsGetTeamMembers2 = __esm(() => {
|
|
91593
91650
|
init_teamsGetTeamMembers();
|
|
91594
91651
|
init_getteammembersop();
|
|
91595
91652
|
init_tools();
|
|
91596
|
-
|
|
91653
|
+
args147 = {
|
|
91597
91654
|
request: GetTeamMembersRequest$inboundSchema
|
|
91598
91655
|
};
|
|
91599
91656
|
tool$teamsGetTeamMembers = {
|
|
@@ -91601,9 +91658,9 @@ var init_teamsGetTeamMembers2 = __esm(() => {
|
|
|
91601
91658
|
description: `List team members
|
|
91602
91659
|
|
|
91603
91660
|
Get a paginated list of team members for the provided team.`,
|
|
91604
|
-
args:
|
|
91605
|
-
tool: async (client,
|
|
91606
|
-
const [result, apiCall] = await teamsGetTeamMembers(client,
|
|
91661
|
+
args: args147,
|
|
91662
|
+
tool: async (client, args148, ctx) => {
|
|
91663
|
+
const [result, apiCall] = await teamsGetTeamMembers(client, args148.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
91607
91664
|
if (!result.ok) {
|
|
91608
91665
|
return {
|
|
91609
91666
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -91878,9 +91935,9 @@ var init_getteamsop = __esm(() => {
|
|
|
91878
91935
|
|
|
91879
91936
|
// src/funcs/teamsGetTeams.ts
|
|
91880
91937
|
function teamsGetTeams(client, request, options) {
|
|
91881
|
-
return new APIPromise($
|
|
91938
|
+
return new APIPromise($do149(client, request, options));
|
|
91882
91939
|
}
|
|
91883
|
-
async function $
|
|
91940
|
+
async function $do149(client, request, options) {
|
|
91884
91941
|
const parsed = safeParse(request, (value) => GetTeamsRequest$outboundSchema.parse(value), "Input validation failed");
|
|
91885
91942
|
if (!parsed.ok) {
|
|
91886
91943
|
return [parsed, { status: "invalid" }];
|
|
@@ -91955,12 +92012,12 @@ var init_teamsGetTeams = __esm(() => {
|
|
|
91955
92012
|
});
|
|
91956
92013
|
|
|
91957
92014
|
// src/mcp-server/tools/teamsGetTeams.ts
|
|
91958
|
-
var
|
|
92015
|
+
var args148, tool$teamsGetTeams;
|
|
91959
92016
|
var init_teamsGetTeams2 = __esm(() => {
|
|
91960
92017
|
init_teamsGetTeams();
|
|
91961
92018
|
init_getteamsop();
|
|
91962
92019
|
init_tools();
|
|
91963
|
-
|
|
92020
|
+
args148 = {
|
|
91964
92021
|
request: GetTeamsRequest$inboundSchema
|
|
91965
92022
|
};
|
|
91966
92023
|
tool$teamsGetTeams = {
|
|
@@ -91968,9 +92025,9 @@ var init_teamsGetTeams2 = __esm(() => {
|
|
|
91968
92025
|
description: `List all teams
|
|
91969
92026
|
|
|
91970
92027
|
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,
|
|
92028
|
+
args: args148,
|
|
92029
|
+
tool: async (client, args149, ctx) => {
|
|
92030
|
+
const [result, apiCall] = await teamsGetTeams(client, args149.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
91974
92031
|
if (!result.ok) {
|
|
91975
92032
|
return {
|
|
91976
92033
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -92202,9 +92259,9 @@ var init_inviteusertoteamop = __esm(() => {
|
|
|
92202
92259
|
|
|
92203
92260
|
// src/funcs/teamsInviteUserToTeam.ts
|
|
92204
92261
|
function teamsInviteUserToTeam(client, request, options) {
|
|
92205
|
-
return new APIPromise($
|
|
92262
|
+
return new APIPromise($do150(client, request, options));
|
|
92206
92263
|
}
|
|
92207
|
-
async function $
|
|
92264
|
+
async function $do150(client, request, options) {
|
|
92208
92265
|
const parsed = safeParse(request, (value) => InviteUserToTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
92209
92266
|
if (!parsed.ok) {
|
|
92210
92267
|
return [parsed, { status: "invalid" }];
|
|
@@ -92281,12 +92338,12 @@ var init_teamsInviteUserToTeam = __esm(() => {
|
|
|
92281
92338
|
});
|
|
92282
92339
|
|
|
92283
92340
|
// src/mcp-server/tools/teamsInviteUserToTeam.ts
|
|
92284
|
-
var
|
|
92341
|
+
var args149, tool$teamsInviteUserToTeam;
|
|
92285
92342
|
var init_teamsInviteUserToTeam2 = __esm(() => {
|
|
92286
92343
|
init_teamsInviteUserToTeam();
|
|
92287
92344
|
init_inviteusertoteamop();
|
|
92288
92345
|
init_tools();
|
|
92289
|
-
|
|
92346
|
+
args149 = {
|
|
92290
92347
|
request: InviteUserToTeamRequest$inboundSchema
|
|
92291
92348
|
};
|
|
92292
92349
|
tool$teamsInviteUserToTeam = {
|
|
@@ -92294,9 +92351,9 @@ var init_teamsInviteUserToTeam2 = __esm(() => {
|
|
|
92294
92351
|
description: `Invite a user
|
|
92295
92352
|
|
|
92296
92353
|
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,
|
|
92354
|
+
args: args149,
|
|
92355
|
+
tool: async (client, args150, ctx) => {
|
|
92356
|
+
const [result, apiCall] = await teamsInviteUserToTeam(client, args150.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
92300
92357
|
if (!result.ok) {
|
|
92301
92358
|
return {
|
|
92302
92359
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -92364,9 +92421,9 @@ var init_jointeamop = __esm(() => {
|
|
|
92364
92421
|
|
|
92365
92422
|
// src/funcs/teamsJoinTeam.ts
|
|
92366
92423
|
function teamsJoinTeam(client, request, options) {
|
|
92367
|
-
return new APIPromise($
|
|
92424
|
+
return new APIPromise($do151(client, request, options));
|
|
92368
92425
|
}
|
|
92369
|
-
async function $
|
|
92426
|
+
async function $do151(client, request, options) {
|
|
92370
92427
|
const parsed = safeParse(request, (value) => JoinTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
92371
92428
|
if (!parsed.ok) {
|
|
92372
92429
|
return [parsed, { status: "invalid" }];
|
|
@@ -92443,12 +92500,12 @@ var init_teamsJoinTeam = __esm(() => {
|
|
|
92443
92500
|
});
|
|
92444
92501
|
|
|
92445
92502
|
// src/mcp-server/tools/teamsJoinTeam.ts
|
|
92446
|
-
var
|
|
92503
|
+
var args150, tool$teamsJoinTeam;
|
|
92447
92504
|
var init_teamsJoinTeam2 = __esm(() => {
|
|
92448
92505
|
init_teamsJoinTeam();
|
|
92449
92506
|
init_jointeamop();
|
|
92450
92507
|
init_tools();
|
|
92451
|
-
|
|
92508
|
+
args150 = {
|
|
92452
92509
|
request: JoinTeamRequest$inboundSchema
|
|
92453
92510
|
};
|
|
92454
92511
|
tool$teamsJoinTeam = {
|
|
@@ -92456,9 +92513,9 @@ var init_teamsJoinTeam2 = __esm(() => {
|
|
|
92456
92513
|
description: `Join a team
|
|
92457
92514
|
|
|
92458
92515
|
Join a team with a provided invite code or team ID.`,
|
|
92459
|
-
args:
|
|
92460
|
-
tool: async (client,
|
|
92461
|
-
const [result, apiCall] = await teamsJoinTeam(client,
|
|
92516
|
+
args: args150,
|
|
92517
|
+
tool: async (client, args151, ctx) => {
|
|
92518
|
+
const [result, apiCall] = await teamsJoinTeam(client, args151.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
92462
92519
|
if (!result.ok) {
|
|
92463
92520
|
return {
|
|
92464
92521
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -92591,9 +92648,9 @@ var init_patchteamop = __esm(() => {
|
|
|
92591
92648
|
|
|
92592
92649
|
// src/funcs/teamsPatchTeam.ts
|
|
92593
92650
|
function teamsPatchTeam(client, request, options) {
|
|
92594
|
-
return new APIPromise($
|
|
92651
|
+
return new APIPromise($do152(client, request, options));
|
|
92595
92652
|
}
|
|
92596
|
-
async function $
|
|
92653
|
+
async function $do152(client, request, options) {
|
|
92597
92654
|
const parsed = safeParse(request, (value) => PatchTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
92598
92655
|
if (!parsed.ok) {
|
|
92599
92656
|
return [parsed, { status: "invalid" }];
|
|
@@ -92675,12 +92732,12 @@ var init_teamsPatchTeam = __esm(() => {
|
|
|
92675
92732
|
});
|
|
92676
92733
|
|
|
92677
92734
|
// src/mcp-server/tools/teamsPatchTeam.ts
|
|
92678
|
-
var
|
|
92735
|
+
var args151, tool$teamsPatchTeam;
|
|
92679
92736
|
var init_teamsPatchTeam2 = __esm(() => {
|
|
92680
92737
|
init_teamsPatchTeam();
|
|
92681
92738
|
init_patchteamop();
|
|
92682
92739
|
init_tools();
|
|
92683
|
-
|
|
92740
|
+
args151 = {
|
|
92684
92741
|
request: PatchTeamRequest$inboundSchema
|
|
92685
92742
|
};
|
|
92686
92743
|
tool$teamsPatchTeam = {
|
|
@@ -92688,9 +92745,9 @@ var init_teamsPatchTeam2 = __esm(() => {
|
|
|
92688
92745
|
description: `Update a Team
|
|
92689
92746
|
|
|
92690
92747
|
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,
|
|
92748
|
+
args: args151,
|
|
92749
|
+
tool: async (client, args152, ctx) => {
|
|
92750
|
+
const [result, apiCall] = await teamsPatchTeam(client, args152.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
92694
92751
|
if (!result.ok) {
|
|
92695
92752
|
return {
|
|
92696
92753
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -92735,9 +92792,9 @@ var init_removeteammemberop = __esm(() => {
|
|
|
92735
92792
|
|
|
92736
92793
|
// src/funcs/teamsRemoveTeamMember.ts
|
|
92737
92794
|
function teamsRemoveTeamMember(client, request, options) {
|
|
92738
|
-
return new APIPromise($
|
|
92795
|
+
return new APIPromise($do153(client, request, options));
|
|
92739
92796
|
}
|
|
92740
|
-
async function $
|
|
92797
|
+
async function $do153(client, request, options) {
|
|
92741
92798
|
const parsed = safeParse(request, (value) => RemoveTeamMemberRequest$outboundSchema.parse(value), "Input validation failed");
|
|
92742
92799
|
if (!parsed.ok) {
|
|
92743
92800
|
return [parsed, { status: "invalid" }];
|
|
@@ -92821,12 +92878,12 @@ var init_teamsRemoveTeamMember = __esm(() => {
|
|
|
92821
92878
|
});
|
|
92822
92879
|
|
|
92823
92880
|
// src/mcp-server/tools/teamsRemoveTeamMember.ts
|
|
92824
|
-
var
|
|
92881
|
+
var args152, tool$teamsRemoveTeamMember;
|
|
92825
92882
|
var init_teamsRemoveTeamMember2 = __esm(() => {
|
|
92826
92883
|
init_teamsRemoveTeamMember();
|
|
92827
92884
|
init_removeteammemberop();
|
|
92828
92885
|
init_tools();
|
|
92829
|
-
|
|
92886
|
+
args152 = {
|
|
92830
92887
|
request: RemoveTeamMemberRequest$inboundSchema
|
|
92831
92888
|
};
|
|
92832
92889
|
tool$teamsRemoveTeamMember = {
|
|
@@ -92834,9 +92891,9 @@ var init_teamsRemoveTeamMember2 = __esm(() => {
|
|
|
92834
92891
|
description: `Remove a Team Member
|
|
92835
92892
|
|
|
92836
92893
|
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,
|
|
92894
|
+
args: args152,
|
|
92895
|
+
tool: async (client, args153, ctx) => {
|
|
92896
|
+
const [result, apiCall] = await teamsRemoveTeamMember(client, args153.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
92840
92897
|
if (!result.ok) {
|
|
92841
92898
|
return {
|
|
92842
92899
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -93038,9 +93095,9 @@ var init_requestaccesstoteamop = __esm(() => {
|
|
|
93038
93095
|
|
|
93039
93096
|
// src/funcs/teamsRequestAccessToTeam.ts
|
|
93040
93097
|
function teamsRequestAccessToTeam(client, request, options) {
|
|
93041
|
-
return new APIPromise($
|
|
93098
|
+
return new APIPromise($do154(client, request, options));
|
|
93042
93099
|
}
|
|
93043
|
-
async function $
|
|
93100
|
+
async function $do154(client, request, options) {
|
|
93044
93101
|
const parsed = safeParse(request, (value) => RequestAccessToTeamRequest$outboundSchema.parse(value), "Input validation failed");
|
|
93045
93102
|
if (!parsed.ok) {
|
|
93046
93103
|
return [parsed, { status: "invalid" }];
|
|
@@ -93117,12 +93174,12 @@ var init_teamsRequestAccessToTeam = __esm(() => {
|
|
|
93117
93174
|
});
|
|
93118
93175
|
|
|
93119
93176
|
// src/mcp-server/tools/teamsRequestAccessToTeam.ts
|
|
93120
|
-
var
|
|
93177
|
+
var args153, tool$teamsRequestAccessToTeam;
|
|
93121
93178
|
var init_teamsRequestAccessToTeam2 = __esm(() => {
|
|
93122
93179
|
init_teamsRequestAccessToTeam();
|
|
93123
93180
|
init_requestaccesstoteamop();
|
|
93124
93181
|
init_tools();
|
|
93125
|
-
|
|
93182
|
+
args153 = {
|
|
93126
93183
|
request: RequestAccessToTeamRequest$inboundSchema
|
|
93127
93184
|
};
|
|
93128
93185
|
tool$teamsRequestAccessToTeam = {
|
|
@@ -93130,9 +93187,9 @@ var init_teamsRequestAccessToTeam2 = __esm(() => {
|
|
|
93130
93187
|
description: `Request access to a team
|
|
93131
93188
|
|
|
93132
93189
|
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,
|
|
93190
|
+
args: args153,
|
|
93191
|
+
tool: async (client, args154, ctx) => {
|
|
93192
|
+
const [result, apiCall] = await teamsRequestAccessToTeam(client, args154.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
93136
93193
|
if (!result.ok) {
|
|
93137
93194
|
return {
|
|
93138
93195
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -93235,9 +93292,9 @@ var init_updateteammemberop = __esm(() => {
|
|
|
93235
93292
|
|
|
93236
93293
|
// src/funcs/teamsUpdateTeamMember.ts
|
|
93237
93294
|
function teamsUpdateTeamMember(client, request, options) {
|
|
93238
|
-
return new APIPromise($
|
|
93295
|
+
return new APIPromise($do155(client, request, options));
|
|
93239
93296
|
}
|
|
93240
|
-
async function $
|
|
93297
|
+
async function $do155(client, request, options) {
|
|
93241
93298
|
const parsed = safeParse(request, (value) => UpdateTeamMemberRequest$outboundSchema.parse(value), "Input validation failed");
|
|
93242
93299
|
if (!parsed.ok) {
|
|
93243
93300
|
return [parsed, { status: "invalid" }];
|
|
@@ -93318,12 +93375,12 @@ var init_teamsUpdateTeamMember = __esm(() => {
|
|
|
93318
93375
|
});
|
|
93319
93376
|
|
|
93320
93377
|
// src/mcp-server/tools/teamsUpdateTeamMember.ts
|
|
93321
|
-
var
|
|
93378
|
+
var args154, tool$teamsUpdateTeamMember;
|
|
93322
93379
|
var init_teamsUpdateTeamMember2 = __esm(() => {
|
|
93323
93380
|
init_teamsUpdateTeamMember();
|
|
93324
93381
|
init_updateteammemberop();
|
|
93325
93382
|
init_tools();
|
|
93326
|
-
|
|
93383
|
+
args154 = {
|
|
93327
93384
|
request: UpdateTeamMemberRequest$inboundSchema
|
|
93328
93385
|
};
|
|
93329
93386
|
tool$teamsUpdateTeamMember = {
|
|
@@ -93331,9 +93388,9 @@ var init_teamsUpdateTeamMember2 = __esm(() => {
|
|
|
93331
93388
|
description: `Update a Team Member
|
|
93332
93389
|
|
|
93333
93390
|
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,
|
|
93391
|
+
args: args154,
|
|
93392
|
+
tool: async (client, args155, ctx) => {
|
|
93393
|
+
const [result, apiCall] = await teamsUpdateTeamMember(client, args155.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
93337
93394
|
if (!result.ok) {
|
|
93338
93395
|
return {
|
|
93339
93396
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -93347,7 +93404,7 @@ Update the membership of a Team Member on the Team specified by \`teamId\`, such
|
|
|
93347
93404
|
});
|
|
93348
93405
|
|
|
93349
93406
|
// 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$,
|
|
93407
|
+
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
93408
|
var init_authuser = __esm(() => {
|
|
93352
93409
|
init_lib();
|
|
93353
93410
|
Reason = {
|
|
@@ -93486,7 +93543,9 @@ var init_authuser = __esm(() => {
|
|
|
93486
93543
|
cronJobs: numberType().optional(),
|
|
93487
93544
|
cronJobsPerProject: numberType().optional(),
|
|
93488
93545
|
microfrontendGroupsPerTeam: numberType().optional(),
|
|
93489
|
-
microfrontendProjectsPerGroup: numberType().optional()
|
|
93546
|
+
microfrontendProjectsPerGroup: numberType().optional(),
|
|
93547
|
+
flagsExplorerOverridesThreshold: numberType().optional(),
|
|
93548
|
+
flagsExplorerUnlimitedOverrides: booleanType().optional()
|
|
93490
93549
|
});
|
|
93491
93550
|
ResourceConfig$outboundSchema = objectType({
|
|
93492
93551
|
nodeType: stringType().optional(),
|
|
@@ -93509,7 +93568,9 @@ var init_authuser = __esm(() => {
|
|
|
93509
93568
|
cronJobs: numberType().optional(),
|
|
93510
93569
|
cronJobsPerProject: numberType().optional(),
|
|
93511
93570
|
microfrontendGroupsPerTeam: numberType().optional(),
|
|
93512
|
-
microfrontendProjectsPerGroup: numberType().optional()
|
|
93571
|
+
microfrontendProjectsPerGroup: numberType().optional(),
|
|
93572
|
+
flagsExplorerOverridesThreshold: numberType().optional(),
|
|
93573
|
+
flagsExplorerUnlimitedOverrides: booleanType().optional()
|
|
93513
93574
|
});
|
|
93514
93575
|
((ResourceConfig$) => {
|
|
93515
93576
|
ResourceConfig$.inboundSchema = ResourceConfig$inboundSchema;
|
|
@@ -93609,46 +93670,14 @@ var init_authuser = __esm(() => {
|
|
|
93609
93670
|
DismissedToasts$.inboundSchema = DismissedToasts$inboundSchema;
|
|
93610
93671
|
DismissedToasts$.outboundSchema = DismissedToasts$outboundSchema;
|
|
93611
93672
|
})(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()
|
|
93673
|
+
FavoriteProjectsAndSpaces$inboundSchema = objectType({
|
|
93674
|
+
teamId: stringType(),
|
|
93675
|
+
projectId: stringType()
|
|
93633
93676
|
});
|
|
93634
|
-
|
|
93635
|
-
|
|
93636
|
-
|
|
93637
|
-
scopeId: stringType(),
|
|
93638
|
-
teamId: stringType().optional()
|
|
93677
|
+
FavoriteProjectsAndSpaces$outboundSchema = objectType({
|
|
93678
|
+
teamId: stringType(),
|
|
93679
|
+
projectId: stringType()
|
|
93639
93680
|
});
|
|
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
93681
|
((FavoriteProjectsAndSpaces$) => {
|
|
93653
93682
|
FavoriteProjectsAndSpaces$.inboundSchema = FavoriteProjectsAndSpaces$inboundSchema;
|
|
93654
93683
|
FavoriteProjectsAndSpaces$.outboundSchema = FavoriteProjectsAndSpaces$outboundSchema;
|
|
@@ -93737,10 +93766,7 @@ var init_authuser = __esm(() => {
|
|
|
93737
93766
|
importFlowGitProvider: nullableType(ImportFlowGitProvider$inboundSchema).optional(),
|
|
93738
93767
|
preferredScopesAndGitNamespaces: arrayType(lazyType(() => PreferredScopesAndGitNamespaces$inboundSchema)).optional(),
|
|
93739
93768
|
dismissedToasts: arrayType(lazyType(() => DismissedToasts$inboundSchema)).optional(),
|
|
93740
|
-
favoriteProjectsAndSpaces: arrayType(
|
|
93741
|
-
lazyType(() => FavoriteProjectsAndSpaces1$inboundSchema),
|
|
93742
|
-
lazyType(() => FavoriteProjectsAndSpaces2$inboundSchema)
|
|
93743
|
-
])).optional(),
|
|
93769
|
+
favoriteProjectsAndSpaces: arrayType(lazyType(() => FavoriteProjectsAndSpaces$inboundSchema)).optional(),
|
|
93744
93770
|
hasTrialAvailable: booleanType(),
|
|
93745
93771
|
remoteCaching: lazyType(() => RemoteCaching$inboundSchema).optional(),
|
|
93746
93772
|
dataCache: lazyType(() => DataCache$inboundSchema).optional(),
|
|
@@ -93766,10 +93792,7 @@ var init_authuser = __esm(() => {
|
|
|
93766
93792
|
importFlowGitProvider: nullableType(ImportFlowGitProvider$outboundSchema).optional(),
|
|
93767
93793
|
preferredScopesAndGitNamespaces: arrayType(lazyType(() => PreferredScopesAndGitNamespaces$outboundSchema)).optional(),
|
|
93768
93794
|
dismissedToasts: arrayType(lazyType(() => DismissedToasts$outboundSchema)).optional(),
|
|
93769
|
-
favoriteProjectsAndSpaces: arrayType(
|
|
93770
|
-
lazyType(() => FavoriteProjectsAndSpaces1$outboundSchema),
|
|
93771
|
-
lazyType(() => FavoriteProjectsAndSpaces2$outboundSchema)
|
|
93772
|
-
])).optional(),
|
|
93795
|
+
favoriteProjectsAndSpaces: arrayType(lazyType(() => FavoriteProjectsAndSpaces$outboundSchema)).optional(),
|
|
93773
93796
|
hasTrialAvailable: booleanType(),
|
|
93774
93797
|
remoteCaching: lazyType(() => RemoteCaching$outboundSchema).optional(),
|
|
93775
93798
|
dataCache: lazyType(() => DataCache$outboundSchema).optional(),
|
|
@@ -93854,9 +93877,9 @@ var init_getauthuserop = __esm(() => {
|
|
|
93854
93877
|
|
|
93855
93878
|
// src/funcs/userGetAuthUser.ts
|
|
93856
93879
|
function userGetAuthUser(client, options) {
|
|
93857
|
-
return new APIPromise($
|
|
93880
|
+
return new APIPromise($do156(client, options));
|
|
93858
93881
|
}
|
|
93859
|
-
async function $
|
|
93882
|
+
async function $do156(client, options) {
|
|
93860
93883
|
const path = pathToFunc("/v2/user")();
|
|
93861
93884
|
const headers = new Headers(compactMap({
|
|
93862
93885
|
Accept: "application/json"
|
|
@@ -93940,7 +93963,7 @@ Retrieves information related to the currently authenticated User.`,
|
|
|
93940
93963
|
});
|
|
93941
93964
|
|
|
93942
93965
|
// 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$;
|
|
93966
|
+
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
93967
|
var init_userevent = __esm(() => {
|
|
93945
93968
|
init_lib();
|
|
93946
93969
|
init_primitives();
|
|
@@ -97255,46 +97278,14 @@ var init_userevent = __esm(() => {
|
|
|
97255
97278
|
PayloadDismissedToasts$.inboundSchema = PayloadDismissedToasts$inboundSchema;
|
|
97256
97279
|
PayloadDismissedToasts$.outboundSchema = PayloadDismissedToasts$outboundSchema;
|
|
97257
97280
|
})(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()
|
|
97281
|
+
PayloadFavoriteProjectsAndSpaces$inboundSchema = objectType({
|
|
97282
|
+
teamId: stringType(),
|
|
97283
|
+
projectId: stringType()
|
|
97279
97284
|
});
|
|
97280
|
-
|
|
97281
|
-
|
|
97282
|
-
|
|
97283
|
-
scopeId: stringType(),
|
|
97284
|
-
teamId: stringType().optional()
|
|
97285
|
+
PayloadFavoriteProjectsAndSpaces$outboundSchema = objectType({
|
|
97286
|
+
teamId: stringType(),
|
|
97287
|
+
projectId: stringType()
|
|
97285
97288
|
});
|
|
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
97289
|
((PayloadFavoriteProjectsAndSpaces$) => {
|
|
97299
97290
|
PayloadFavoriteProjectsAndSpaces$.inboundSchema = PayloadFavoriteProjectsAndSpaces$inboundSchema;
|
|
97300
97291
|
PayloadFavoriteProjectsAndSpaces$.outboundSchema = PayloadFavoriteProjectsAndSpaces$outboundSchema;
|
|
@@ -97382,7 +97373,9 @@ var init_userevent = __esm(() => {
|
|
|
97382
97373
|
cronJobs: numberType().optional(),
|
|
97383
97374
|
cronJobsPerProject: numberType().optional(),
|
|
97384
97375
|
microfrontendGroupsPerTeam: numberType().optional(),
|
|
97385
|
-
microfrontendProjectsPerGroup: numberType().optional()
|
|
97376
|
+
microfrontendProjectsPerGroup: numberType().optional(),
|
|
97377
|
+
flagsExplorerOverridesThreshold: numberType().optional(),
|
|
97378
|
+
flagsExplorerUnlimitedOverrides: booleanType().optional()
|
|
97386
97379
|
});
|
|
97387
97380
|
PayloadResourceConfig$outboundSchema = objectType({
|
|
97388
97381
|
nodeType: stringType().optional(),
|
|
@@ -97405,7 +97398,9 @@ var init_userevent = __esm(() => {
|
|
|
97405
97398
|
cronJobs: numberType().optional(),
|
|
97406
97399
|
cronJobsPerProject: numberType().optional(),
|
|
97407
97400
|
microfrontendGroupsPerTeam: numberType().optional(),
|
|
97408
|
-
microfrontendProjectsPerGroup: numberType().optional()
|
|
97401
|
+
microfrontendProjectsPerGroup: numberType().optional(),
|
|
97402
|
+
flagsExplorerOverridesThreshold: numberType().optional(),
|
|
97403
|
+
flagsExplorerUnlimitedOverrides: booleanType().optional()
|
|
97409
97404
|
});
|
|
97410
97405
|
((PayloadResourceConfig$) => {
|
|
97411
97406
|
PayloadResourceConfig$.inboundSchema = PayloadResourceConfig$inboundSchema;
|
|
@@ -98706,10 +98701,7 @@ var init_userevent = __esm(() => {
|
|
|
98706
98701
|
deploymentSecret: stringType(),
|
|
98707
98702
|
dismissedTeams: arrayType(stringType()).optional(),
|
|
98708
98703
|
dismissedToasts: arrayType(lazyType(() => PayloadDismissedToasts$inboundSchema)).optional(),
|
|
98709
|
-
favoriteProjectsAndSpaces: arrayType(
|
|
98710
|
-
lazyType(() => UserEventFavoriteProjectsAndSpaces1$inboundSchema),
|
|
98711
|
-
lazyType(() => UserEventFavoriteProjectsAndSpaces2$inboundSchema)
|
|
98712
|
-
])).optional(),
|
|
98704
|
+
favoriteProjectsAndSpaces: arrayType(lazyType(() => PayloadFavoriteProjectsAndSpaces$inboundSchema)).optional(),
|
|
98713
98705
|
email: stringType(),
|
|
98714
98706
|
id: stringType(),
|
|
98715
98707
|
importFlowGitNamespace: nullableType(unionType([stringType(), numberType()])).optional(),
|
|
@@ -98785,10 +98777,7 @@ var init_userevent = __esm(() => {
|
|
|
98785
98777
|
deploymentSecret: stringType(),
|
|
98786
98778
|
dismissedTeams: arrayType(stringType()).optional(),
|
|
98787
98779
|
dismissedToasts: arrayType(lazyType(() => PayloadDismissedToasts$outboundSchema)).optional(),
|
|
98788
|
-
favoriteProjectsAndSpaces: arrayType(
|
|
98789
|
-
lazyType(() => UserEventFavoriteProjectsAndSpaces1$outboundSchema),
|
|
98790
|
-
lazyType(() => UserEventFavoriteProjectsAndSpaces2$outboundSchema)
|
|
98791
|
-
])).optional(),
|
|
98780
|
+
favoriteProjectsAndSpaces: arrayType(lazyType(() => PayloadFavoriteProjectsAndSpaces$outboundSchema)).optional(),
|
|
98792
98781
|
email: stringType(),
|
|
98793
98782
|
id: stringType(),
|
|
98794
98783
|
importFlowGitNamespace: nullableType(unionType([stringType(), numberType()])).optional(),
|
|
@@ -101038,9 +101027,9 @@ var init_listusereventsop = __esm(() => {
|
|
|
101038
101027
|
|
|
101039
101028
|
// src/funcs/userListUserEvents.ts
|
|
101040
101029
|
function userListUserEvents(client, request, options) {
|
|
101041
|
-
return new APIPromise($
|
|
101030
|
+
return new APIPromise($do157(client, request, options));
|
|
101042
101031
|
}
|
|
101043
|
-
async function $
|
|
101032
|
+
async function $do157(client, request, options) {
|
|
101044
101033
|
const parsed = safeParse(request, (value) => ListUserEventsRequest$outboundSchema.parse(value), "Input validation failed");
|
|
101045
101034
|
if (!parsed.ok) {
|
|
101046
101035
|
return [parsed, { status: "invalid" }];
|
|
@@ -101120,12 +101109,12 @@ var init_userListUserEvents = __esm(() => {
|
|
|
101120
101109
|
});
|
|
101121
101110
|
|
|
101122
101111
|
// src/mcp-server/tools/userListUserEvents.ts
|
|
101123
|
-
var
|
|
101112
|
+
var args155, tool$userListUserEvents;
|
|
101124
101113
|
var init_userListUserEvents2 = __esm(() => {
|
|
101125
101114
|
init_userListUserEvents();
|
|
101126
101115
|
init_listusereventsop();
|
|
101127
101116
|
init_tools();
|
|
101128
|
-
|
|
101117
|
+
args155 = {
|
|
101129
101118
|
request: ListUserEventsRequest$inboundSchema
|
|
101130
101119
|
};
|
|
101131
101120
|
tool$userListUserEvents = {
|
|
@@ -101133,9 +101122,9 @@ var init_userListUserEvents2 = __esm(() => {
|
|
|
101133
101122
|
description: `List User Events
|
|
101134
101123
|
|
|
101135
101124
|
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,
|
|
101125
|
+
args: args155,
|
|
101126
|
+
tool: async (client, args156, ctx) => {
|
|
101127
|
+
const [result, apiCall] = await userListUserEvents(client, args156.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
101139
101128
|
if (!result.ok) {
|
|
101140
101129
|
return {
|
|
101141
101130
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -101192,9 +101181,9 @@ var init_requestdeleteop = __esm(() => {
|
|
|
101192
101181
|
|
|
101193
101182
|
// src/funcs/userRequestDelete.ts
|
|
101194
101183
|
function userRequestDelete(client, request, options) {
|
|
101195
|
-
return new APIPromise($
|
|
101184
|
+
return new APIPromise($do158(client, request, options));
|
|
101196
101185
|
}
|
|
101197
|
-
async function $
|
|
101186
|
+
async function $do158(client, request, options) {
|
|
101198
101187
|
const parsed = safeParse(request, (value) => RequestDeleteRequestBody$outboundSchema.parse(value), "Input validation failed");
|
|
101199
101188
|
if (!parsed.ok) {
|
|
101200
101189
|
return [parsed, { status: "invalid" }];
|
|
@@ -101264,12 +101253,12 @@ var init_userRequestDelete = __esm(() => {
|
|
|
101264
101253
|
});
|
|
101265
101254
|
|
|
101266
101255
|
// src/mcp-server/tools/userRequestDelete.ts
|
|
101267
|
-
var
|
|
101256
|
+
var args156, tool$userRequestDelete;
|
|
101268
101257
|
var init_userRequestDelete2 = __esm(() => {
|
|
101269
101258
|
init_userRequestDelete();
|
|
101270
101259
|
init_requestdeleteop();
|
|
101271
101260
|
init_tools();
|
|
101272
|
-
|
|
101261
|
+
args156 = {
|
|
101273
101262
|
request: RequestDeleteRequestBody$inboundSchema
|
|
101274
101263
|
};
|
|
101275
101264
|
tool$userRequestDelete = {
|
|
@@ -101277,9 +101266,9 @@ var init_userRequestDelete2 = __esm(() => {
|
|
|
101277
101266
|
description: `Delete User Account
|
|
101278
101267
|
|
|
101279
101268
|
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,
|
|
101269
|
+
args: args156,
|
|
101270
|
+
tool: async (client, args157, ctx) => {
|
|
101271
|
+
const [result, apiCall] = await userRequestDelete(client, args157.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
101283
101272
|
if (!result.ok) {
|
|
101284
101273
|
return {
|
|
101285
101274
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -101463,9 +101452,9 @@ var init_createwebhookop = __esm(() => {
|
|
|
101463
101452
|
|
|
101464
101453
|
// src/funcs/webhooksCreateWebhook.ts
|
|
101465
101454
|
function webhooksCreateWebhook(client, request, options) {
|
|
101466
|
-
return new APIPromise($
|
|
101455
|
+
return new APIPromise($do159(client, request, options));
|
|
101467
101456
|
}
|
|
101468
|
-
async function $
|
|
101457
|
+
async function $do159(client, request, options) {
|
|
101469
101458
|
const parsed = safeParse(request, (value) => CreateWebhookRequest$outboundSchema.parse(value), "Input validation failed");
|
|
101470
101459
|
if (!parsed.ok) {
|
|
101471
101460
|
return [parsed, { status: "invalid" }];
|
|
@@ -101540,12 +101529,12 @@ var init_webhooksCreateWebhook = __esm(() => {
|
|
|
101540
101529
|
});
|
|
101541
101530
|
|
|
101542
101531
|
// src/mcp-server/tools/webhooksCreateWebhook.ts
|
|
101543
|
-
var
|
|
101532
|
+
var args157, tool$webhooksCreateWebhook;
|
|
101544
101533
|
var init_webhooksCreateWebhook2 = __esm(() => {
|
|
101545
101534
|
init_webhooksCreateWebhook();
|
|
101546
101535
|
init_createwebhookop();
|
|
101547
101536
|
init_tools();
|
|
101548
|
-
|
|
101537
|
+
args157 = {
|
|
101549
101538
|
request: CreateWebhookRequest$inboundSchema
|
|
101550
101539
|
};
|
|
101551
101540
|
tool$webhooksCreateWebhook = {
|
|
@@ -101553,9 +101542,9 @@ var init_webhooksCreateWebhook2 = __esm(() => {
|
|
|
101553
101542
|
description: `Creates a webhook
|
|
101554
101543
|
|
|
101555
101544
|
Creates a webhook`,
|
|
101556
|
-
args:
|
|
101557
|
-
tool: async (client,
|
|
101558
|
-
const [result, apiCall] = await webhooksCreateWebhook(client,
|
|
101545
|
+
args: args157,
|
|
101546
|
+
tool: async (client, args158, ctx) => {
|
|
101547
|
+
const [result, apiCall] = await webhooksCreateWebhook(client, args158.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
101559
101548
|
if (!result.ok) {
|
|
101560
101549
|
return {
|
|
101561
101550
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -101590,9 +101579,9 @@ var init_deletewebhookop = __esm(() => {
|
|
|
101590
101579
|
|
|
101591
101580
|
// src/funcs/webhooksDeleteWebhook.ts
|
|
101592
101581
|
function webhooksDeleteWebhook(client, request, options) {
|
|
101593
|
-
return new APIPromise($
|
|
101582
|
+
return new APIPromise($do160(client, request, options));
|
|
101594
101583
|
}
|
|
101595
|
-
async function $
|
|
101584
|
+
async function $do160(client, request, options) {
|
|
101596
101585
|
const parsed = safeParse(request, (value) => DeleteWebhookRequest$outboundSchema.parse(value), "Input validation failed");
|
|
101597
101586
|
if (!parsed.ok) {
|
|
101598
101587
|
return [parsed, { status: "invalid" }];
|
|
@@ -101673,12 +101662,12 @@ var init_webhooksDeleteWebhook = __esm(() => {
|
|
|
101673
101662
|
});
|
|
101674
101663
|
|
|
101675
101664
|
// src/mcp-server/tools/webhooksDeleteWebhook.ts
|
|
101676
|
-
var
|
|
101665
|
+
var args158, tool$webhooksDeleteWebhook;
|
|
101677
101666
|
var init_webhooksDeleteWebhook2 = __esm(() => {
|
|
101678
101667
|
init_webhooksDeleteWebhook();
|
|
101679
101668
|
init_deletewebhookop();
|
|
101680
101669
|
init_tools();
|
|
101681
|
-
|
|
101670
|
+
args158 = {
|
|
101682
101671
|
request: DeleteWebhookRequest$inboundSchema
|
|
101683
101672
|
};
|
|
101684
101673
|
tool$webhooksDeleteWebhook = {
|
|
@@ -101686,9 +101675,9 @@ var init_webhooksDeleteWebhook2 = __esm(() => {
|
|
|
101686
101675
|
description: `Deletes a webhook
|
|
101687
101676
|
|
|
101688
101677
|
Deletes a webhook`,
|
|
101689
|
-
args:
|
|
101690
|
-
tool: async (client,
|
|
101691
|
-
const [result, apiCall] = await webhooksDeleteWebhook(client,
|
|
101678
|
+
args: args158,
|
|
101679
|
+
tool: async (client, args159, ctx) => {
|
|
101680
|
+
const [result, apiCall] = await webhooksDeleteWebhook(client, args159.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
101692
101681
|
if (!result.ok) {
|
|
101693
101682
|
return {
|
|
101694
101683
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -101795,9 +101784,9 @@ var init_getwebhookop = __esm(() => {
|
|
|
101795
101784
|
|
|
101796
101785
|
// src/funcs/webhooksGetWebhook.ts
|
|
101797
101786
|
function webhooksGetWebhook(client, request, options) {
|
|
101798
|
-
return new APIPromise($
|
|
101787
|
+
return new APIPromise($do161(client, request, options));
|
|
101799
101788
|
}
|
|
101800
|
-
async function $
|
|
101789
|
+
async function $do161(client, request, options) {
|
|
101801
101790
|
const parsed = safeParse(request, (value) => GetWebhookRequest$outboundSchema.parse(value), "Input validation failed");
|
|
101802
101791
|
if (!parsed.ok) {
|
|
101803
101792
|
return [parsed, { status: "invalid" }];
|
|
@@ -101877,12 +101866,12 @@ var init_webhooksGetWebhook = __esm(() => {
|
|
|
101877
101866
|
});
|
|
101878
101867
|
|
|
101879
101868
|
// src/mcp-server/tools/webhooksGetWebhook.ts
|
|
101880
|
-
var
|
|
101869
|
+
var args159, tool$webhooksGetWebhook;
|
|
101881
101870
|
var init_webhooksGetWebhook2 = __esm(() => {
|
|
101882
101871
|
init_webhooksGetWebhook();
|
|
101883
101872
|
init_getwebhookop();
|
|
101884
101873
|
init_tools();
|
|
101885
|
-
|
|
101874
|
+
args159 = {
|
|
101886
101875
|
request: GetWebhookRequest$inboundSchema
|
|
101887
101876
|
};
|
|
101888
101877
|
tool$webhooksGetWebhook = {
|
|
@@ -101890,9 +101879,9 @@ var init_webhooksGetWebhook2 = __esm(() => {
|
|
|
101890
101879
|
description: `Get a webhook
|
|
101891
101880
|
|
|
101892
101881
|
Get a webhook`,
|
|
101893
|
-
args:
|
|
101894
|
-
tool: async (client,
|
|
101895
|
-
const [result, apiCall] = await webhooksGetWebhook(client,
|
|
101882
|
+
args: args159,
|
|
101883
|
+
tool: async (client, args160, ctx) => {
|
|
101884
|
+
const [result, apiCall] = await webhooksGetWebhook(client, args160.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
101896
101885
|
if (!result.ok) {
|
|
101897
101886
|
return {
|
|
101898
101887
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -102157,9 +102146,9 @@ var init_getwebhooksop = __esm(() => {
|
|
|
102157
102146
|
|
|
102158
102147
|
// src/funcs/webhooksGetWebhooks.ts
|
|
102159
102148
|
function webhooksGetWebhooks(client, request, options) {
|
|
102160
|
-
return new APIPromise($
|
|
102149
|
+
return new APIPromise($do162(client, request, options));
|
|
102161
102150
|
}
|
|
102162
|
-
async function $
|
|
102151
|
+
async function $do162(client, request, options) {
|
|
102163
102152
|
const parsed = safeParse(request, (value) => GetWebhooksRequest$outboundSchema.parse(value), "Input validation failed");
|
|
102164
102153
|
if (!parsed.ok) {
|
|
102165
102154
|
return [parsed, { status: "invalid" }];
|
|
@@ -102234,12 +102223,12 @@ var init_webhooksGetWebhooks = __esm(() => {
|
|
|
102234
102223
|
});
|
|
102235
102224
|
|
|
102236
102225
|
// src/mcp-server/tools/webhooksGetWebhooks.ts
|
|
102237
|
-
var
|
|
102226
|
+
var args160, tool$webhooksGetWebhooks;
|
|
102238
102227
|
var init_webhooksGetWebhooks2 = __esm(() => {
|
|
102239
102228
|
init_webhooksGetWebhooks();
|
|
102240
102229
|
init_getwebhooksop();
|
|
102241
102230
|
init_tools();
|
|
102242
|
-
|
|
102231
|
+
args160 = {
|
|
102243
102232
|
request: GetWebhooksRequest$inboundSchema
|
|
102244
102233
|
};
|
|
102245
102234
|
tool$webhooksGetWebhooks = {
|
|
@@ -102247,9 +102236,9 @@ var init_webhooksGetWebhooks2 = __esm(() => {
|
|
|
102247
102236
|
description: `Get a list of webhooks
|
|
102248
102237
|
|
|
102249
102238
|
Get a list of webhooks`,
|
|
102250
|
-
args:
|
|
102251
|
-
tool: async (client,
|
|
102252
|
-
const [result, apiCall] = await webhooksGetWebhooks(client,
|
|
102239
|
+
args: args160,
|
|
102240
|
+
tool: async (client, args161, ctx) => {
|
|
102241
|
+
const [result, apiCall] = await webhooksGetWebhooks(client, args161.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
102253
102242
|
if (!result.ok) {
|
|
102254
102243
|
return {
|
|
102255
102244
|
content: [{ type: "text", text: result.error.message }],
|
|
@@ -102266,14 +102255,14 @@ Get a list of webhooks`,
|
|
|
102266
102255
|
function createMCPServer(deps) {
|
|
102267
102256
|
const server = new McpServer({
|
|
102268
102257
|
name: "Vercel",
|
|
102269
|
-
version: "1.6.
|
|
102258
|
+
version: "1.6.1"
|
|
102270
102259
|
});
|
|
102271
102260
|
const client = new VercelCore({
|
|
102272
102261
|
bearerToken: deps.bearerToken,
|
|
102273
102262
|
serverURL: deps.serverURL,
|
|
102274
102263
|
serverIdx: deps.serverIdx
|
|
102275
102264
|
});
|
|
102276
|
-
const scopes = new Set(deps.scopes
|
|
102265
|
+
const scopes = new Set(deps.scopes);
|
|
102277
102266
|
const allowedTools = deps.allowedTools && new Set(deps.allowedTools);
|
|
102278
102267
|
const tool = createRegisterTool(deps.logger, server, client, scopes, allowedTools);
|
|
102279
102268
|
const resource = createRegisterResource(deps.logger, server, client, scopes);
|
|
@@ -102391,7 +102380,6 @@ function createMCPServer(deps) {
|
|
|
102391
102380
|
tool(tool$marketplaceUpdateResourceSecretsById);
|
|
102392
102381
|
tool(tool$marketplaceImportResource);
|
|
102393
102382
|
tool(tool$marketplaceExchangeSsoToken);
|
|
102394
|
-
tool(tool$marketplaceQueryExperimentationItems);
|
|
102395
102383
|
tool(tool$marketplaceCreateInstallationIntegrationConfiguration);
|
|
102396
102384
|
tool(tool$marketplaceUpdateInstallationIntegrationConfiguration);
|
|
102397
102385
|
tool(tool$marketplaceDeleteInstallationIntegrationConfiguration);
|
|
@@ -102449,7 +102437,6 @@ var init_server2 = __esm(() => {
|
|
|
102449
102437
|
init_mcp();
|
|
102450
102438
|
init_core();
|
|
102451
102439
|
init_resources();
|
|
102452
|
-
init_scopes();
|
|
102453
102440
|
init_tools();
|
|
102454
102441
|
init_accessGroupsCreateAccessGroup2();
|
|
102455
102442
|
init_accessGroupsCreateAccessGroupProject2();
|
|
@@ -102554,7 +102541,6 @@ var init_server2 = __esm(() => {
|
|
|
102554
102541
|
init_marketplaceGetInvoice2();
|
|
102555
102542
|
init_marketplaceGetMember2();
|
|
102556
102543
|
init_marketplaceImportResource2();
|
|
102557
|
-
init_marketplaceQueryExperimentationItems2();
|
|
102558
102544
|
init_marketplaceSubmitBillingData2();
|
|
102559
102545
|
init_marketplaceSubmitInvoice2();
|
|
102560
102546
|
init_marketplaceSubmitPrepaymentBalances2();
|
|
@@ -103695,7 +103681,11 @@ function buildContext(process2) {
|
|
|
103695
103681
|
// src/mcp-server/cli/start/command.ts
|
|
103696
103682
|
init_lib();
|
|
103697
103683
|
init_console_logger();
|
|
103698
|
-
|
|
103684
|
+
|
|
103685
|
+
// src/mcp-server/scopes.ts
|
|
103686
|
+
var mcpScopes = [];
|
|
103687
|
+
|
|
103688
|
+
// src/mcp-server/cli/start/command.ts
|
|
103699
103689
|
var startCommand = on({
|
|
103700
103690
|
loader: async () => {
|
|
103701
103691
|
const { main: main2 } = await Promise.resolve().then(() => (init_impl(), exports_impl));
|
|
@@ -103800,7 +103790,7 @@ var routes = an({
|
|
|
103800
103790
|
var app = He(routes, {
|
|
103801
103791
|
name: "mcp",
|
|
103802
103792
|
versionInfo: {
|
|
103803
|
-
currentVersion: "1.6.
|
|
103793
|
+
currentVersion: "1.6.1"
|
|
103804
103794
|
}
|
|
103805
103795
|
});
|
|
103806
103796
|
zt(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -103808,5 +103798,5 @@ export {
|
|
|
103808
103798
|
app
|
|
103809
103799
|
};
|
|
103810
103800
|
|
|
103811
|
-
//# debugId=
|
|
103801
|
+
//# debugId=412AC2A856489CE064756E2164756E21
|
|
103812
103802
|
//# sourceMappingURL=mcp-server.js.map
|