@meetkai/mka1 0.54.17 → 0.54.18
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 +16 -7
- package/bin/mcp-server.js.map +6 -6
- package/dist/commonjs/lib/config.d.ts +2 -2
- package/dist/commonjs/lib/config.js +2 -2
- package/dist/commonjs/mcp-server/mcp-server.js +1 -1
- package/dist/commonjs/mcp-server/server.js +1 -1
- package/dist/commonjs/models/components/classificationresponse.d.ts +2 -2
- package/dist/commonjs/models/components/classificationresponse.d.ts.map +1 -1
- package/dist/commonjs/models/components/classificationresponse.js +11 -2
- package/dist/commonjs/models/components/classificationresponse.js.map +1 -1
- package/dist/esm/lib/config.d.ts +2 -2
- package/dist/esm/lib/config.js +2 -2
- package/dist/esm/mcp-server/mcp-server.js +1 -1
- package/dist/esm/mcp-server/server.js +1 -1
- package/dist/esm/models/components/classificationresponse.d.ts +2 -2
- package/dist/esm/models/components/classificationresponse.d.ts.map +1 -1
- package/dist/esm/models/components/classificationresponse.js +11 -2
- package/dist/esm/models/components/classificationresponse.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/classificationresponse.ts +15 -4
package/bin/mcp-server.js
CHANGED
|
@@ -52917,9 +52917,9 @@ var init_config = __esm(() => {
|
|
|
52917
52917
|
SDK_METADATA = {
|
|
52918
52918
|
language: "typescript",
|
|
52919
52919
|
openapiDocVersion: "1.1.0",
|
|
52920
|
-
sdkVersion: "0.54.
|
|
52920
|
+
sdkVersion: "0.54.18",
|
|
52921
52921
|
genVersion: "2.935.1",
|
|
52922
|
-
userAgent: "speakeasy-sdk/typescript 0.54.
|
|
52922
|
+
userAgent: "speakeasy-sdk/typescript 0.54.18 2.935.1 1.1.0 @meetkai/mka1"
|
|
52923
52923
|
};
|
|
52924
52924
|
});
|
|
52925
52925
|
|
|
@@ -57547,6 +57547,7 @@ var init_classificationrequest = __esm(() => {
|
|
|
57547
57547
|
var ClassificationResponseData$inboundSchema, ClassificationResponseData$outboundSchema, Metadata$inboundSchema, Metadata$outboundSchema, ClassificationResponse$inboundSchema, ClassificationResponse$outboundSchema;
|
|
57548
57548
|
var init_classificationresponse = __esm(() => {
|
|
57549
57549
|
init_esm();
|
|
57550
|
+
init_primitives();
|
|
57550
57551
|
ClassificationResponseData$inboundSchema = objectType({
|
|
57551
57552
|
label: stringType(),
|
|
57552
57553
|
confidence: numberType().optional(),
|
|
@@ -57560,12 +57561,20 @@ var init_classificationresponse = __esm(() => {
|
|
|
57560
57561
|
Metadata$inboundSchema = objectType({
|
|
57561
57562
|
model: stringType(),
|
|
57562
57563
|
labels: arrayType(stringType()),
|
|
57563
|
-
|
|
57564
|
+
classified_at: stringType().datetime({ offset: true }).transform((v2) => new Date(v2))
|
|
57565
|
+
}).transform((v2) => {
|
|
57566
|
+
return remap(v2, {
|
|
57567
|
+
classified_at: "classifiedAt"
|
|
57568
|
+
});
|
|
57564
57569
|
});
|
|
57565
57570
|
Metadata$outboundSchema = objectType({
|
|
57566
57571
|
model: stringType(),
|
|
57567
57572
|
labels: arrayType(stringType()),
|
|
57568
|
-
classifiedAt:
|
|
57573
|
+
classifiedAt: dateType().transform((v2) => v2.toISOString())
|
|
57574
|
+
}).transform((v2) => {
|
|
57575
|
+
return remap(v2, {
|
|
57576
|
+
classifiedAt: "classified_at"
|
|
57577
|
+
});
|
|
57569
57578
|
});
|
|
57570
57579
|
ClassificationResponse$inboundSchema = objectType({
|
|
57571
57580
|
success: booleanType(),
|
|
@@ -149986,7 +149995,7 @@ Aggregate sandbox usage (session lifecycle, execution, and workspace operations)
|
|
|
149986
149995
|
function createMCPServer(deps) {
|
|
149987
149996
|
const server = new McpServer({
|
|
149988
149997
|
name: "SDK",
|
|
149989
|
-
version: "0.54.
|
|
149998
|
+
version: "0.54.18"
|
|
149990
149999
|
});
|
|
149991
150000
|
const client = new SDKCore({
|
|
149992
150001
|
bearerAuth: deps.bearerAuth,
|
|
@@ -151930,7 +151939,7 @@ var routes = rn({
|
|
|
151930
151939
|
var app = Ve(routes, {
|
|
151931
151940
|
name: "mcp",
|
|
151932
151941
|
versionInfo: {
|
|
151933
|
-
currentVersion: "0.54.
|
|
151942
|
+
currentVersion: "0.54.18"
|
|
151934
151943
|
}
|
|
151935
151944
|
});
|
|
151936
151945
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -151938,5 +151947,5 @@ export {
|
|
|
151938
151947
|
app
|
|
151939
151948
|
};
|
|
151940
151949
|
|
|
151941
|
-
//# debugId=
|
|
151950
|
+
//# debugId=6E16655AA9E85D1164756E2164756E21
|
|
151942
151951
|
//# sourceMappingURL=mcp-server.js.map
|