@spacelr/mcp 0.2.1 → 0.2.2

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.mjs CHANGED
@@ -1273,6 +1273,9 @@ function registerDatabaseTools(server, api) {
1273
1273
  bucketWindow: z4.enum(["day", "week", "month"]).optional().describe("Time window each segment spans. Required when enabled."),
1274
1274
  segmentSizeBytes: z4.number().int().min(1).optional().describe("Target uncompressed size of a segment before it is flushed. Required when enabled."),
1275
1275
  maxDocsPerSegment: z4.number().int().min(1).optional().describe("Optional hard cap on documents per segment."),
1276
+ archivePurgeGraceMs: z4.number().int().min(0).optional().describe(
1277
+ "Delay in ms after archiving before the hot-tier copy is purged. 0 = purge at the next tick; omit for the backend default (1 day)."
1278
+ ),
1276
1279
  historyPolicy: z4.enum(["full_history", "from_join_time", "from_key_epoch"]).optional().describe("Optional read-history policy for partitioned access.")
1277
1280
  }).refine(
1278
1281
  (c) => c.enabled !== true || c.expireField !== void 0 && c.expireAfterMs !== void 0 && c.bucketWindow !== void 0 && c.segmentSizeBytes !== void 0,