@avallon-labs/mcp 15.1.0 → 15.2.0
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/dist/index.js
CHANGED
|
@@ -3128,7 +3128,8 @@ var ListArtifactsResponseItem = zod.object({
|
|
|
3128
3128
|
created_at: zod.string().datetime({}),
|
|
3129
3129
|
created_at_document: zod.union([zod.string(), zod.null()]),
|
|
3130
3130
|
updated_at: zod.string().datetime({}),
|
|
3131
|
-
has_content: zod.boolean()
|
|
3131
|
+
has_content: zod.boolean(),
|
|
3132
|
+
status: zod.enum(["processing", "completed", "failed"])
|
|
3132
3133
|
});
|
|
3133
3134
|
var ListArtifactsResponse = zod.array(ListArtifactsResponseItem);
|
|
3134
3135
|
var GetArtifactParams = zod.object({
|
|
@@ -3143,7 +3144,8 @@ var GetArtifactResponse = zod.object({
|
|
|
3143
3144
|
created_at: zod.string().datetime({}),
|
|
3144
3145
|
created_at_document: zod.union([zod.string(), zod.null()]),
|
|
3145
3146
|
updated_at: zod.string().datetime({}),
|
|
3146
|
-
content_md: zod.union([zod.string(), zod.null()])
|
|
3147
|
+
content_md: zod.union([zod.string(), zod.null()]),
|
|
3148
|
+
status: zod.enum(["processing", "completed", "failed"])
|
|
3147
3149
|
})
|
|
3148
3150
|
});
|
|
3149
3151
|
var getArtifactMetadataKeysQueryLimitDefault = 100;
|
|
@@ -3180,7 +3182,8 @@ var UpdateArtifactMetadataResponse = zod.object({
|
|
|
3180
3182
|
created_at: zod.string().datetime({}),
|
|
3181
3183
|
created_at_document: zod.union([zod.string(), zod.null()]),
|
|
3182
3184
|
updated_at: zod.string().datetime({}),
|
|
3183
|
-
content_md: zod.union([zod.string(), zod.null()])
|
|
3185
|
+
content_md: zod.union([zod.string(), zod.null()]),
|
|
3186
|
+
status: zod.enum(["processing", "completed", "failed"])
|
|
3184
3187
|
})
|
|
3185
3188
|
});
|
|
3186
3189
|
var SignUpBody = zod.object({
|
|
@@ -5142,4 +5145,4 @@ var transport = new StdioServerTransport();
|
|
|
5142
5145
|
server.connect(transport).then(() => {
|
|
5143
5146
|
console.error("MCP server running on stdio");
|
|
5144
5147
|
}).catch(console.error);
|
|
5145
|
-
//# sourceMappingURL=server-
|
|
5148
|
+
//# sourceMappingURL=server-3NP5OLSE.js.map
|