@cronicorn/mcp-server 1.12.3 → 1.13.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 +8 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14520,6 +14520,10 @@ var DashboardStatsResponseSchema = external_exports.object({
|
|
|
14520
14520
|
})).openapi({
|
|
14521
14521
|
description: "Time-series data for run activity grouped by endpoint (filtered by query params)"
|
|
14522
14522
|
}),
|
|
14523
|
+
endpointTimeSeriesMaxStacked: external_exports.number().nonnegative().openapi({
|
|
14524
|
+
description: "Pre-calculated maximum stacked value for endpointTimeSeries chart Y-axis domain. Includes 10% padding.",
|
|
14525
|
+
example: 110
|
|
14526
|
+
}),
|
|
14523
14527
|
aiSessionTimeSeries: external_exports.array(external_exports.object({
|
|
14524
14528
|
date: external_exports.string().openapi({
|
|
14525
14529
|
description: "Date in YYYY-MM-DD format",
|
|
@@ -14543,6 +14547,10 @@ var DashboardStatsResponseSchema = external_exports.object({
|
|
|
14543
14547
|
})
|
|
14544
14548
|
})).openapi({
|
|
14545
14549
|
description: "Time-series data for AI session activity grouped by endpoint (filtered by query params)"
|
|
14550
|
+
}),
|
|
14551
|
+
aiSessionTimeSeriesMaxStacked: external_exports.number().nonnegative().openapi({
|
|
14552
|
+
description: "Pre-calculated maximum stacked value for aiSessionTimeSeries chart Y-axis domain. Includes 10% padding.",
|
|
14553
|
+
example: 55
|
|
14546
14554
|
})
|
|
14547
14555
|
}).openapi({
|
|
14548
14556
|
description: "Aggregated dashboard statistics for the authenticated user"
|