@avallon-labs/mcp 27.4.0-staging.778 → 27.5.0-staging.779
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
|
@@ -5254,7 +5254,10 @@ var GetArtifactResponse = zod.object({
|
|
|
5254
5254
|
created_at: zod.string().datetime({}),
|
|
5255
5255
|
created_at_document: zod.union([zod.string(), zod.null()]),
|
|
5256
5256
|
updated_at: zod.string().datetime({}),
|
|
5257
|
-
content_md: zod.union([zod.string(), zod.null()])
|
|
5257
|
+
content_md: zod.union([zod.string(), zod.null()]),
|
|
5258
|
+
content_with_chunkids_md: zod.union([zod.string(), zod.null()]).describe(
|
|
5259
|
+
"Parsed content annotated with [chunk_id=...] markers, always included when the artifact has parsed chunks. Chunk IDs are stable citation anchors usable to attribute extracted values to their source location. Null when the artifact has no parsed chunks."
|
|
5260
|
+
)
|
|
5258
5261
|
})
|
|
5259
5262
|
});
|
|
5260
5263
|
var getArtifactMetadataKeysQueryLimitDefault = 100;
|
|
@@ -5291,7 +5294,10 @@ var UpdateArtifactMetadataResponse = zod.object({
|
|
|
5291
5294
|
created_at: zod.string().datetime({}),
|
|
5292
5295
|
created_at_document: zod.union([zod.string(), zod.null()]),
|
|
5293
5296
|
updated_at: zod.string().datetime({}),
|
|
5294
|
-
content_md: zod.union([zod.string(), zod.null()])
|
|
5297
|
+
content_md: zod.union([zod.string(), zod.null()]),
|
|
5298
|
+
content_with_chunkids_md: zod.union([zod.string(), zod.null()]).describe(
|
|
5299
|
+
"Parsed content annotated with [chunk_id=...] markers, always included when the artifact has parsed chunks. Chunk IDs are stable citation anchors usable to attribute extracted values to their source location. Null when the artifact has no parsed chunks."
|
|
5300
|
+
)
|
|
5295
5301
|
})
|
|
5296
5302
|
});
|
|
5297
5303
|
var SignUpBody = zod.object({
|
|
@@ -8133,4 +8139,4 @@ var transport = new StdioServerTransport();
|
|
|
8133
8139
|
server.connect(transport).then(() => {
|
|
8134
8140
|
console.error("MCP server running on stdio");
|
|
8135
8141
|
}).catch(console.error);
|
|
8136
|
-
//# sourceMappingURL=server-
|
|
8142
|
+
//# sourceMappingURL=server-6GQVMXJU.js.map
|