@meetkai/mka1 0.48.40 → 0.48.41
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/bin/mcp-server.js +44 -12
- package/bin/mcp-server.js.map +9 -9
- package/dist/commonjs/lib/config.d.ts +3 -3
- package/dist/commonjs/lib/config.js +3 -3
- package/dist/commonjs/lib/http.d.ts +1 -1
- package/dist/commonjs/lib/http.d.ts.map +1 -1
- package/dist/commonjs/lib/http.js +1 -1
- package/dist/commonjs/lib/http.js.map +1 -1
- package/dist/commonjs/lib/security.d.ts +5 -4
- package/dist/commonjs/lib/security.d.ts.map +1 -1
- package/dist/commonjs/lib/security.js +6 -7
- package/dist/commonjs/lib/security.js.map +1 -1
- package/dist/commonjs/mcp-server/mcp-server.js +1 -1
- package/dist/commonjs/mcp-server/server.js +1 -1
- package/dist/commonjs/models/components/addregistrymodelrequest.d.ts +21 -0
- package/dist/commonjs/models/components/addregistrymodelrequest.d.ts.map +1 -1
- package/dist/commonjs/models/components/addregistrymodelrequest.js +25 -1
- package/dist/commonjs/models/components/addregistrymodelrequest.js.map +1 -1
- package/dist/commonjs/models/components/updateregistrymodelrequest.d.ts +21 -0
- package/dist/commonjs/models/components/updateregistrymodelrequest.d.ts.map +1 -1
- package/dist/commonjs/models/components/updateregistrymodelrequest.js +25 -1
- package/dist/commonjs/models/components/updateregistrymodelrequest.js.map +1 -1
- package/dist/esm/lib/config.d.ts +3 -3
- package/dist/esm/lib/config.js +3 -3
- package/dist/esm/lib/http.d.ts +1 -1
- package/dist/esm/lib/http.d.ts.map +1 -1
- package/dist/esm/lib/http.js +1 -1
- package/dist/esm/lib/http.js.map +1 -1
- package/dist/esm/lib/security.d.ts +5 -4
- package/dist/esm/lib/security.d.ts.map +1 -1
- package/dist/esm/lib/security.js +4 -5
- package/dist/esm/lib/security.js.map +1 -1
- package/dist/esm/mcp-server/mcp-server.js +1 -1
- package/dist/esm/mcp-server/server.js +1 -1
- package/dist/esm/models/components/addregistrymodelrequest.d.ts +21 -0
- package/dist/esm/models/components/addregistrymodelrequest.d.ts.map +1 -1
- package/dist/esm/models/components/addregistrymodelrequest.js +22 -0
- package/dist/esm/models/components/addregistrymodelrequest.js.map +1 -1
- package/dist/esm/models/components/updateregistrymodelrequest.d.ts +21 -0
- package/dist/esm/models/components/updateregistrymodelrequest.d.ts.map +1 -1
- package/dist/esm/models/components/updateregistrymodelrequest.js +22 -0
- package/dist/esm/models/components/updateregistrymodelrequest.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/lib/http.ts +3 -1
- package/src/lib/security.ts +10 -5
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/addregistrymodelrequest.ts +55 -0
- package/src/models/components/updateregistrymodelrequest.ts +69 -0
package/bin/mcp-server.js
CHANGED
|
@@ -52876,9 +52876,9 @@ var init_config = __esm(() => {
|
|
|
52876
52876
|
SDK_METADATA = {
|
|
52877
52877
|
language: "typescript",
|
|
52878
52878
|
openapiDocVersion: "1.1.0",
|
|
52879
|
-
sdkVersion: "0.48.
|
|
52880
|
-
genVersion: "2.916.
|
|
52881
|
-
userAgent: "speakeasy-sdk/typescript 0.48.
|
|
52879
|
+
sdkVersion: "0.48.41",
|
|
52880
|
+
genVersion: "2.916.4",
|
|
52881
|
+
userAgent: "speakeasy-sdk/typescript 0.48.41 2.916.4 1.1.0 @meetkai/mka1"
|
|
52882
52882
|
};
|
|
52883
52883
|
});
|
|
52884
52884
|
|
|
@@ -53223,11 +53223,11 @@ var init_encodings = __esm(() => {
|
|
|
53223
53223
|
|
|
53224
53224
|
// src/lib/http.ts
|
|
53225
53225
|
class HTTPClient {
|
|
53226
|
-
options;
|
|
53227
53226
|
fetcher;
|
|
53228
53227
|
requestHooks = [];
|
|
53229
53228
|
requestErrorHooks = [];
|
|
53230
53229
|
responseHooks = [];
|
|
53230
|
+
options;
|
|
53231
53231
|
constructor(options = {}) {
|
|
53232
53232
|
this.options = options;
|
|
53233
53233
|
this.fetcher = options.fetcher || DEFAULT_FETCHER;
|
|
@@ -54462,8 +54462,12 @@ async function extractSecurity(sec) {
|
|
|
54462
54462
|
}
|
|
54463
54463
|
return typeof sec === "function" ? sec() : sec;
|
|
54464
54464
|
}
|
|
54465
|
-
var SecurityError;
|
|
54465
|
+
var SecurityErrorCode, SecurityError;
|
|
54466
54466
|
var init_security = __esm(() => {
|
|
54467
|
+
SecurityErrorCode = {
|
|
54468
|
+
Incomplete: "incomplete",
|
|
54469
|
+
UnrecognisedSecurityType: "unrecognized_security_type"
|
|
54470
|
+
};
|
|
54467
54471
|
SecurityError = class SecurityError extends Error {
|
|
54468
54472
|
code;
|
|
54469
54473
|
constructor(code, message) {
|
|
@@ -54472,10 +54476,10 @@ var init_security = __esm(() => {
|
|
|
54472
54476
|
this.name = "SecurityError";
|
|
54473
54477
|
}
|
|
54474
54478
|
static incomplete() {
|
|
54475
|
-
return new SecurityError(
|
|
54479
|
+
return new SecurityError(SecurityErrorCode.Incomplete, "Security requirements not met in order to perform the operation");
|
|
54476
54480
|
}
|
|
54477
54481
|
static unrecognizedType(type) {
|
|
54478
|
-
return new SecurityError(
|
|
54482
|
+
return new SecurityError(SecurityErrorCode.UnrecognisedSecurityType, `Unrecognised security type: ${type}`);
|
|
54479
54483
|
}
|
|
54480
54484
|
};
|
|
54481
54485
|
});
|
|
@@ -54568,7 +54572,7 @@ var init_autoendpoint = __esm(() => {
|
|
|
54568
54572
|
});
|
|
54569
54573
|
|
|
54570
54574
|
// src/models/components/addregistrymodelrequest.ts
|
|
54571
|
-
var ApiProviderType, AddRegistryModelRequestInput, AddRegistryModelRequestOutput, Scope, Modality, AddRegistryModelRequestHealthCheckMethod, HealthCheckMethod, ApiProviderType$inboundSchema, ApiProviderType$outboundSchema, AddRegistryModelRequestStrategies4$inboundSchema, AddRegistryModelRequestStrategies4$outboundSchema, AddRegistryModelRequestStrategies3$inboundSchema, AddRegistryModelRequestStrategies3$outboundSchema, AddRegistryModelRequestStrategies2$inboundSchema, AddRegistryModelRequestStrategies2$outboundSchema, AddRegistryModelRequestStrategies1$inboundSchema, AddRegistryModelRequestStrategies1$outboundSchema, StrategiesStrategies$inboundSchema, StrategiesStrategies$outboundSchema, Strategies4$inboundSchema, Strategies4$outboundSchema, Strategies3$inboundSchema, Strategies3$outboundSchema, Strategies2$inboundSchema, Strategies2$outboundSchema, Strategies1$inboundSchema, Strategies1$outboundSchema, Strategies$inboundSchema, Strategies$outboundSchema, Auth4$inboundSchema, Auth4$outboundSchema, Auth3$inboundSchema, Auth3$outboundSchema, Auth2$inboundSchema, Auth2$outboundSchema, Auth1$inboundSchema, Auth1$outboundSchema, Auth$inboundSchema, Auth$outboundSchema, AddRegistryModelRequestInput$inboundSchema, AddRegistryModelRequestInput$outboundSchema, AddRegistryModelRequestOutput$inboundSchema, AddRegistryModelRequestOutput$outboundSchema, AddRegistryModelRequestModalities$inboundSchema, AddRegistryModelRequestModalities$outboundSchema, MaxImageResolution$inboundSchema, MaxImageResolution$outboundSchema, MinImageResolution$inboundSchema, MinImageResolution$outboundSchema, Capabilities$inboundSchema, Capabilities$outboundSchema, Scope$inboundSchema, Scope$outboundSchema, Queue$inboundSchema, Queue$outboundSchema, RateLimits$inboundSchema, RateLimits$outboundSchema, DefaultParams$inboundSchema, DefaultParams$outboundSchema, Trigger4$inboundSchema, Trigger4$outboundSchema, Trigger3$inboundSchema, Trigger3$outboundSchema, Trigger2$inboundSchema, Trigger2$outboundSchema, Modality$inboundSchema, Modality$outboundSchema, Trigger1$inboundSchema, Trigger1$outboundSchema, Trigger$inboundSchema, Trigger$outboundSchema, RerouteRules$inboundSchema, RerouteRules$outboundSchema, Dimensions2$inboundSchema, Dimensions2$outboundSchema, Dimensions$inboundSchema, Dimensions$outboundSchema, EmbeddingLimits$inboundSchema, EmbeddingLimits$outboundSchema, AddRegistryModelRequestHealthCheckMethod$inboundSchema, AddRegistryModelRequestHealthCheckMethod$outboundSchema, HealthCheck3$inboundSchema, HealthCheck3$outboundSchema, HealthCheckMethod$inboundSchema, HealthCheckMethod$outboundSchema, HealthCheck2$inboundSchema, HealthCheck2$outboundSchema, HealthCheck1$inboundSchema, HealthCheck1$outboundSchema, HealthCheck$inboundSchema, HealthCheck$outboundSchema, AddRegistryModelRequest$inboundSchema, AddRegistryModelRequest$outboundSchema;
|
|
54575
|
+
var ApiProviderType, AddRegistryModelRequestInput, AddRegistryModelRequestOutput, Scope, Modality, AddRegistryModelRequestHealthCheckMethod, HealthCheckMethod, ApiProviderType$inboundSchema, ApiProviderType$outboundSchema, AddRegistryModelRequestStrategies4$inboundSchema, AddRegistryModelRequestStrategies4$outboundSchema, AddRegistryModelRequestStrategies3$inboundSchema, AddRegistryModelRequestStrategies3$outboundSchema, AddRegistryModelRequestStrategies2$inboundSchema, AddRegistryModelRequestStrategies2$outboundSchema, AddRegistryModelRequestStrategies1$inboundSchema, AddRegistryModelRequestStrategies1$outboundSchema, StrategiesStrategies$inboundSchema, StrategiesStrategies$outboundSchema, Strategies4$inboundSchema, Strategies4$outboundSchema, Strategies3$inboundSchema, Strategies3$outboundSchema, Strategies2$inboundSchema, Strategies2$outboundSchema, Strategies1$inboundSchema, Strategies1$outboundSchema, Strategies$inboundSchema, Strategies$outboundSchema, Auth4$inboundSchema, Auth4$outboundSchema, Auth3$inboundSchema, Auth3$outboundSchema, Auth2$inboundSchema, Auth2$outboundSchema, Auth1$inboundSchema, Auth1$outboundSchema, Auth$inboundSchema, Auth$outboundSchema, AddRegistryModelRequestInput$inboundSchema, AddRegistryModelRequestInput$outboundSchema, AddRegistryModelRequestOutput$inboundSchema, AddRegistryModelRequestOutput$outboundSchema, AddRegistryModelRequestModalities$inboundSchema, AddRegistryModelRequestModalities$outboundSchema, MaxImageResolution$inboundSchema, MaxImageResolution$outboundSchema, MinImageResolution$inboundSchema, MinImageResolution$outboundSchema, Capabilities$inboundSchema, Capabilities$outboundSchema, Scope$inboundSchema, Scope$outboundSchema, Queue$inboundSchema, Queue$outboundSchema, RateLimits$inboundSchema, RateLimits$outboundSchema, Concurrency$inboundSchema, Concurrency$outboundSchema, DefaultParams$inboundSchema, DefaultParams$outboundSchema, Trigger4$inboundSchema, Trigger4$outboundSchema, Trigger3$inboundSchema, Trigger3$outboundSchema, Trigger2$inboundSchema, Trigger2$outboundSchema, Modality$inboundSchema, Modality$outboundSchema, Trigger1$inboundSchema, Trigger1$outboundSchema, Trigger$inboundSchema, Trigger$outboundSchema, RerouteRules$inboundSchema, RerouteRules$outboundSchema, Dimensions2$inboundSchema, Dimensions2$outboundSchema, Dimensions$inboundSchema, Dimensions$outboundSchema, EmbeddingLimits$inboundSchema, EmbeddingLimits$outboundSchema, AddRegistryModelRequestHealthCheckMethod$inboundSchema, AddRegistryModelRequestHealthCheckMethod$outboundSchema, HealthCheck3$inboundSchema, HealthCheck3$outboundSchema, HealthCheckMethod$inboundSchema, HealthCheckMethod$outboundSchema, HealthCheck2$inboundSchema, HealthCheck2$outboundSchema, HealthCheck1$inboundSchema, HealthCheck1$outboundSchema, HealthCheck$inboundSchema, HealthCheck$outboundSchema, AddRegistryModelRequest$inboundSchema, AddRegistryModelRequest$outboundSchema;
|
|
54572
54576
|
var init_addregistrymodelrequest = __esm(() => {
|
|
54573
54577
|
init_esm();
|
|
54574
54578
|
init_autoendpoint();
|
|
@@ -54849,6 +54853,14 @@ var init_addregistrymodelrequest = __esm(() => {
|
|
|
54849
54853
|
duration: numberType().int().optional(),
|
|
54850
54854
|
queue: lazyType(() => Queue$outboundSchema).optional()
|
|
54851
54855
|
});
|
|
54856
|
+
Concurrency$inboundSchema = objectType({
|
|
54857
|
+
max: numberType().int(),
|
|
54858
|
+
maxWaitMs: numberType().int().optional()
|
|
54859
|
+
});
|
|
54860
|
+
Concurrency$outboundSchema = objectType({
|
|
54861
|
+
max: numberType().int(),
|
|
54862
|
+
maxWaitMs: numberType().int().optional()
|
|
54863
|
+
});
|
|
54852
54864
|
DefaultParams$inboundSchema = objectType({
|
|
54853
54865
|
temperature: numberType().optional(),
|
|
54854
54866
|
topP: numberType().optional(),
|
|
@@ -55018,6 +55030,9 @@ var init_addregistrymodelrequest = __esm(() => {
|
|
|
55018
55030
|
contextWindow: numberType().int().optional(),
|
|
55019
55031
|
rpm: numberType().int().optional(),
|
|
55020
55032
|
rateLimits: arrayType(lazyType(() => RateLimits$inboundSchema)).optional(),
|
|
55033
|
+
concurrency: lazyType(() => Concurrency$inboundSchema).optional(),
|
|
55034
|
+
requestTimeoutMs: numberType().int().optional(),
|
|
55035
|
+
maxRetries: numberType().int().optional(),
|
|
55021
55036
|
defaultParams: lazyType(() => DefaultParams$inboundSchema).optional(),
|
|
55022
55037
|
rerouteRules: arrayType(lazyType(() => RerouteRules$inboundSchema)).optional(),
|
|
55023
55038
|
hidden: booleanType().optional(),
|
|
@@ -55047,6 +55062,9 @@ var init_addregistrymodelrequest = __esm(() => {
|
|
|
55047
55062
|
contextWindow: numberType().int().optional(),
|
|
55048
55063
|
rpm: numberType().int().optional(),
|
|
55049
55064
|
rateLimits: arrayType(lazyType(() => RateLimits$outboundSchema)).optional(),
|
|
55065
|
+
concurrency: lazyType(() => Concurrency$outboundSchema).optional(),
|
|
55066
|
+
requestTimeoutMs: numberType().int().optional(),
|
|
55067
|
+
maxRetries: numberType().int().optional(),
|
|
55050
55068
|
defaultParams: lazyType(() => DefaultParams$outboundSchema).optional(),
|
|
55051
55069
|
rerouteRules: arrayType(lazyType(() => RerouteRules$outboundSchema)).optional(),
|
|
55052
55070
|
hidden: booleanType().optional(),
|
|
@@ -76208,7 +76226,7 @@ var init_updatememorystorerequest = __esm(() => {
|
|
|
76208
76226
|
});
|
|
76209
76227
|
|
|
76210
76228
|
// src/models/components/updateregistrymodelrequest.ts
|
|
76211
|
-
var UpdateRegistryModelRequestApiProviderType, UpdateRegistryModelRequestInput, UpdateRegistryModelRequestOutput, RateLimitsScope, TriggerModality, UpdateRegistryModelRequestHealthCheck3Method, UpdateRegistryModelRequestHealthCheckMethod, UpdateRegistryModelRequestApiProviderType$inboundSchema, UpdateRegistryModelRequestApiProviderType$outboundSchema, UpdateRegistryModelRequestStrategiesAuth4$inboundSchema, UpdateRegistryModelRequestStrategiesAuth4$outboundSchema, UpdateRegistryModelRequestStrategiesAuth3$inboundSchema, UpdateRegistryModelRequestStrategiesAuth3$outboundSchema, UpdateRegistryModelRequestStrategiesAuth2$inboundSchema, UpdateRegistryModelRequestStrategiesAuth2$outboundSchema, UpdateRegistryModelRequestStrategiesAuth1$inboundSchema, UpdateRegistryModelRequestStrategiesAuth1$outboundSchema, UpdateRegistryModelRequestStrategiesStrategies$inboundSchema, UpdateRegistryModelRequestStrategiesStrategies$outboundSchema, UpdateRegistryModelRequestStrategies4$inboundSchema, UpdateRegistryModelRequestStrategies4$outboundSchema, UpdateRegistryModelRequestStrategies3$inboundSchema, UpdateRegistryModelRequestStrategies3$outboundSchema, UpdateRegistryModelRequestStrategies2$inboundSchema, UpdateRegistryModelRequestStrategies2$outboundSchema, UpdateRegistryModelRequestStrategies1$inboundSchema, UpdateRegistryModelRequestStrategies1$outboundSchema, AuthStrategies$inboundSchema, AuthStrategies$outboundSchema, UpdateRegistryModelRequestAuth4$inboundSchema, UpdateRegistryModelRequestAuth4$outboundSchema, UpdateRegistryModelRequestAuth3$inboundSchema, UpdateRegistryModelRequestAuth3$outboundSchema, UpdateRegistryModelRequestAuth2$inboundSchema, UpdateRegistryModelRequestAuth2$outboundSchema, UpdateRegistryModelRequestAuth1$inboundSchema, UpdateRegistryModelRequestAuth1$outboundSchema, UpdateRegistryModelRequestAuth$inboundSchema, UpdateRegistryModelRequestAuth$outboundSchema, UpdateRegistryModelRequestInput$inboundSchema, UpdateRegistryModelRequestInput$outboundSchema, UpdateRegistryModelRequestOutput$inboundSchema, UpdateRegistryModelRequestOutput$outboundSchema, UpdateRegistryModelRequestModalities$inboundSchema, UpdateRegistryModelRequestModalities$outboundSchema, UpdateRegistryModelRequestMaxImageResolution$inboundSchema, UpdateRegistryModelRequestMaxImageResolution$outboundSchema, UpdateRegistryModelRequestMinImageResolution$inboundSchema, UpdateRegistryModelRequestMinImageResolution$outboundSchema, UpdateRegistryModelRequestCapabilities$inboundSchema, UpdateRegistryModelRequestCapabilities$outboundSchema, RateLimitsScope$inboundSchema, RateLimitsScope$outboundSchema, RateLimitsQueue$inboundSchema, RateLimitsQueue$outboundSchema, UpdateRegistryModelRequestRateLimits$inboundSchema, UpdateRegistryModelRequestRateLimits$outboundSchema, UpdateRegistryModelRequestDefaultParams$inboundSchema, UpdateRegistryModelRequestDefaultParams$outboundSchema, UpdateRegistryModelRequestTrigger4$inboundSchema, UpdateRegistryModelRequestTrigger4$outboundSchema, UpdateRegistryModelRequestTrigger3$inboundSchema, UpdateRegistryModelRequestTrigger3$outboundSchema, UpdateRegistryModelRequestTrigger2$inboundSchema, UpdateRegistryModelRequestTrigger2$outboundSchema, TriggerModality$inboundSchema, TriggerModality$outboundSchema, UpdateRegistryModelRequestTrigger1$inboundSchema, UpdateRegistryModelRequestTrigger1$outboundSchema, RerouteRulesTrigger$inboundSchema, RerouteRulesTrigger$outboundSchema, UpdateRegistryModelRequestRerouteRules$inboundSchema, UpdateRegistryModelRequestRerouteRules$outboundSchema, UpdateRegistryModelRequestDimensions2$inboundSchema, UpdateRegistryModelRequestDimensions2$outboundSchema, EmbeddingLimitsDimensions$inboundSchema, EmbeddingLimitsDimensions$outboundSchema, UpdateRegistryModelRequestEmbeddingLimits$inboundSchema, UpdateRegistryModelRequestEmbeddingLimits$outboundSchema, UpdateRegistryModelRequestHealthCheck3Method$inboundSchema, UpdateRegistryModelRequestHealthCheck3Method$outboundSchema, UpdateRegistryModelRequestHealthCheck3$inboundSchema, UpdateRegistryModelRequestHealthCheck3$outboundSchema, UpdateRegistryModelRequestHealthCheckMethod$inboundSchema, UpdateRegistryModelRequestHealthCheckMethod$outboundSchema, UpdateRegistryModelRequestHealthCheck2$inboundSchema, UpdateRegistryModelRequestHealthCheck2$outboundSchema, UpdateRegistryModelRequestHealthCheck1$inboundSchema, UpdateRegistryModelRequestHealthCheck1$outboundSchema, UpdateRegistryModelRequestHealthCheck$inboundSchema, UpdateRegistryModelRequestHealthCheck$outboundSchema, UpdateRegistryModelRequest$inboundSchema, UpdateRegistryModelRequest$outboundSchema;
|
|
76229
|
+
var UpdateRegistryModelRequestApiProviderType, UpdateRegistryModelRequestInput, UpdateRegistryModelRequestOutput, RateLimitsScope, TriggerModality, UpdateRegistryModelRequestHealthCheck3Method, UpdateRegistryModelRequestHealthCheckMethod, UpdateRegistryModelRequestApiProviderType$inboundSchema, UpdateRegistryModelRequestApiProviderType$outboundSchema, UpdateRegistryModelRequestStrategiesAuth4$inboundSchema, UpdateRegistryModelRequestStrategiesAuth4$outboundSchema, UpdateRegistryModelRequestStrategiesAuth3$inboundSchema, UpdateRegistryModelRequestStrategiesAuth3$outboundSchema, UpdateRegistryModelRequestStrategiesAuth2$inboundSchema, UpdateRegistryModelRequestStrategiesAuth2$outboundSchema, UpdateRegistryModelRequestStrategiesAuth1$inboundSchema, UpdateRegistryModelRequestStrategiesAuth1$outboundSchema, UpdateRegistryModelRequestStrategiesStrategies$inboundSchema, UpdateRegistryModelRequestStrategiesStrategies$outboundSchema, UpdateRegistryModelRequestStrategies4$inboundSchema, UpdateRegistryModelRequestStrategies4$outboundSchema, UpdateRegistryModelRequestStrategies3$inboundSchema, UpdateRegistryModelRequestStrategies3$outboundSchema, UpdateRegistryModelRequestStrategies2$inboundSchema, UpdateRegistryModelRequestStrategies2$outboundSchema, UpdateRegistryModelRequestStrategies1$inboundSchema, UpdateRegistryModelRequestStrategies1$outboundSchema, AuthStrategies$inboundSchema, AuthStrategies$outboundSchema, UpdateRegistryModelRequestAuth4$inboundSchema, UpdateRegistryModelRequestAuth4$outboundSchema, UpdateRegistryModelRequestAuth3$inboundSchema, UpdateRegistryModelRequestAuth3$outboundSchema, UpdateRegistryModelRequestAuth2$inboundSchema, UpdateRegistryModelRequestAuth2$outboundSchema, UpdateRegistryModelRequestAuth1$inboundSchema, UpdateRegistryModelRequestAuth1$outboundSchema, UpdateRegistryModelRequestAuth$inboundSchema, UpdateRegistryModelRequestAuth$outboundSchema, UpdateRegistryModelRequestInput$inboundSchema, UpdateRegistryModelRequestInput$outboundSchema, UpdateRegistryModelRequestOutput$inboundSchema, UpdateRegistryModelRequestOutput$outboundSchema, UpdateRegistryModelRequestModalities$inboundSchema, UpdateRegistryModelRequestModalities$outboundSchema, UpdateRegistryModelRequestMaxImageResolution$inboundSchema, UpdateRegistryModelRequestMaxImageResolution$outboundSchema, UpdateRegistryModelRequestMinImageResolution$inboundSchema, UpdateRegistryModelRequestMinImageResolution$outboundSchema, UpdateRegistryModelRequestCapabilities$inboundSchema, UpdateRegistryModelRequestCapabilities$outboundSchema, RateLimitsScope$inboundSchema, RateLimitsScope$outboundSchema, RateLimitsQueue$inboundSchema, RateLimitsQueue$outboundSchema, UpdateRegistryModelRequestRateLimits$inboundSchema, UpdateRegistryModelRequestRateLimits$outboundSchema, UpdateRegistryModelRequestConcurrency$inboundSchema, UpdateRegistryModelRequestConcurrency$outboundSchema, UpdateRegistryModelRequestDefaultParams$inboundSchema, UpdateRegistryModelRequestDefaultParams$outboundSchema, UpdateRegistryModelRequestTrigger4$inboundSchema, UpdateRegistryModelRequestTrigger4$outboundSchema, UpdateRegistryModelRequestTrigger3$inboundSchema, UpdateRegistryModelRequestTrigger3$outboundSchema, UpdateRegistryModelRequestTrigger2$inboundSchema, UpdateRegistryModelRequestTrigger2$outboundSchema, TriggerModality$inboundSchema, TriggerModality$outboundSchema, UpdateRegistryModelRequestTrigger1$inboundSchema, UpdateRegistryModelRequestTrigger1$outboundSchema, RerouteRulesTrigger$inboundSchema, RerouteRulesTrigger$outboundSchema, UpdateRegistryModelRequestRerouteRules$inboundSchema, UpdateRegistryModelRequestRerouteRules$outboundSchema, UpdateRegistryModelRequestDimensions2$inboundSchema, UpdateRegistryModelRequestDimensions2$outboundSchema, EmbeddingLimitsDimensions$inboundSchema, EmbeddingLimitsDimensions$outboundSchema, UpdateRegistryModelRequestEmbeddingLimits$inboundSchema, UpdateRegistryModelRequestEmbeddingLimits$outboundSchema, UpdateRegistryModelRequestHealthCheck3Method$inboundSchema, UpdateRegistryModelRequestHealthCheck3Method$outboundSchema, UpdateRegistryModelRequestHealthCheck3$inboundSchema, UpdateRegistryModelRequestHealthCheck3$outboundSchema, UpdateRegistryModelRequestHealthCheckMethod$inboundSchema, UpdateRegistryModelRequestHealthCheckMethod$outboundSchema, UpdateRegistryModelRequestHealthCheck2$inboundSchema, UpdateRegistryModelRequestHealthCheck2$outboundSchema, UpdateRegistryModelRequestHealthCheck1$inboundSchema, UpdateRegistryModelRequestHealthCheck1$outboundSchema, UpdateRegistryModelRequestHealthCheck$inboundSchema, UpdateRegistryModelRequestHealthCheck$outboundSchema, UpdateRegistryModelRequest$inboundSchema, UpdateRegistryModelRequest$outboundSchema;
|
|
76212
76230
|
var init_updateregistrymodelrequest = __esm(() => {
|
|
76213
76231
|
init_esm();
|
|
76214
76232
|
init_autoendpoint();
|
|
@@ -76489,6 +76507,14 @@ var init_updateregistrymodelrequest = __esm(() => {
|
|
|
76489
76507
|
duration: numberType().int().optional(),
|
|
76490
76508
|
queue: lazyType(() => RateLimitsQueue$outboundSchema).optional()
|
|
76491
76509
|
});
|
|
76510
|
+
UpdateRegistryModelRequestConcurrency$inboundSchema = objectType({
|
|
76511
|
+
max: numberType().int(),
|
|
76512
|
+
maxWaitMs: numberType().int().optional()
|
|
76513
|
+
});
|
|
76514
|
+
UpdateRegistryModelRequestConcurrency$outboundSchema = objectType({
|
|
76515
|
+
max: numberType().int(),
|
|
76516
|
+
maxWaitMs: numberType().int().optional()
|
|
76517
|
+
});
|
|
76492
76518
|
UpdateRegistryModelRequestDefaultParams$inboundSchema = objectType({
|
|
76493
76519
|
temperature: numberType().optional(),
|
|
76494
76520
|
topP: numberType().optional(),
|
|
@@ -76663,6 +76689,9 @@ var init_updateregistrymodelrequest = __esm(() => {
|
|
|
76663
76689
|
contextWindow: nullableType(numberType().int()).optional(),
|
|
76664
76690
|
rpm: nullableType(numberType().int()).optional(),
|
|
76665
76691
|
rateLimits: nullableType(arrayType(lazyType(() => UpdateRegistryModelRequestRateLimits$inboundSchema))).optional(),
|
|
76692
|
+
concurrency: nullableType(lazyType(() => UpdateRegistryModelRequestConcurrency$inboundSchema)).optional(),
|
|
76693
|
+
requestTimeoutMs: nullableType(numberType().int()).optional(),
|
|
76694
|
+
maxRetries: nullableType(numberType().int()).optional(),
|
|
76666
76695
|
defaultParams: nullableType(lazyType(() => UpdateRegistryModelRequestDefaultParams$inboundSchema)).optional(),
|
|
76667
76696
|
rerouteRules: nullableType(arrayType(lazyType(() => UpdateRegistryModelRequestRerouteRules$inboundSchema))).optional(),
|
|
76668
76697
|
hidden: nullableType(booleanType()).optional(),
|
|
@@ -76691,6 +76720,9 @@ var init_updateregistrymodelrequest = __esm(() => {
|
|
|
76691
76720
|
contextWindow: nullableType(numberType().int()).optional(),
|
|
76692
76721
|
rpm: nullableType(numberType().int()).optional(),
|
|
76693
76722
|
rateLimits: nullableType(arrayType(lazyType(() => UpdateRegistryModelRequestRateLimits$outboundSchema))).optional(),
|
|
76723
|
+
concurrency: nullableType(lazyType(() => UpdateRegistryModelRequestConcurrency$outboundSchema)).optional(),
|
|
76724
|
+
requestTimeoutMs: nullableType(numberType().int()).optional(),
|
|
76725
|
+
maxRetries: nullableType(numberType().int()).optional(),
|
|
76694
76726
|
defaultParams: nullableType(lazyType(() => UpdateRegistryModelRequestDefaultParams$outboundSchema)).optional(),
|
|
76695
76727
|
rerouteRules: nullableType(arrayType(lazyType(() => UpdateRegistryModelRequestRerouteRules$outboundSchema))).optional(),
|
|
76696
76728
|
hidden: nullableType(booleanType()).optional(),
|
|
@@ -139034,7 +139066,7 @@ Aggregate sandbox usage (session lifecycle, execution, and workspace operations)
|
|
|
139034
139066
|
function createMCPServer(deps) {
|
|
139035
139067
|
const server = new McpServer({
|
|
139036
139068
|
name: "SDK",
|
|
139037
|
-
version: "0.48.
|
|
139069
|
+
version: "0.48.41"
|
|
139038
139070
|
});
|
|
139039
139071
|
const client = new SDKCore({
|
|
139040
139072
|
bearerAuth: deps.bearerAuth,
|
|
@@ -140898,7 +140930,7 @@ var routes = rn({
|
|
|
140898
140930
|
var app = Ve(routes, {
|
|
140899
140931
|
name: "mcp",
|
|
140900
140932
|
versionInfo: {
|
|
140901
|
-
currentVersion: "0.48.
|
|
140933
|
+
currentVersion: "0.48.41"
|
|
140902
140934
|
}
|
|
140903
140935
|
});
|
|
140904
140936
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -140906,5 +140938,5 @@ export {
|
|
|
140906
140938
|
app
|
|
140907
140939
|
};
|
|
140908
140940
|
|
|
140909
|
-
//# debugId=
|
|
140941
|
+
//# debugId=7C5AAFE5739D3C5F64756E2164756E21
|
|
140910
140942
|
//# sourceMappingURL=mcp-server.js.map
|