crosscheck-mcp 0.1.13 → 0.1.15
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/node-stdio.cjs +361 -16
- package/dist/node-stdio.cjs.map +1 -1
- package/dist/node-stdio.d.cts +14 -0
- package/dist/node-stdio.d.ts +14 -0
- package/dist/node-stdio.js +361 -16
- package/dist/node-stdio.js.map +1 -1
- package/dist/pricing.json +3 -1
- package/package.json +4 -8
package/dist/node-stdio.d.cts
CHANGED
|
@@ -223,6 +223,20 @@ interface StorageRead {
|
|
|
223
223
|
cost_usd: number;
|
|
224
224
|
errors: number;
|
|
225
225
|
}[]>;
|
|
226
|
+
/** Per-(provider, model) rollup for ONE session — powers the
|
|
227
|
+
* end-of-task "session spend per model" summary. Distinct from
|
|
228
|
+
* listUsageGroupedByProvider (which is global, per-purpose) because a
|
|
229
|
+
* single provider can serve multiple models in a session (e.g. Opus 4.8
|
|
230
|
+
* on most seats and a Fable 5 reasoning-upgrade on the lead seat). */
|
|
231
|
+
listUsageGroupedByModel(sessionId: string): Promise<readonly {
|
|
232
|
+
provider: string;
|
|
233
|
+
model: string;
|
|
234
|
+
calls: number;
|
|
235
|
+
prompt_tokens: number;
|
|
236
|
+
completion_tokens: number;
|
|
237
|
+
total_tokens: number;
|
|
238
|
+
cost_usd: number;
|
|
239
|
+
}[]>;
|
|
226
240
|
/** Per-provider per-purpose averages for the smart router. Filters
|
|
227
241
|
* to ts >= sinceMs (epoch ms) when supplied. Returns provider,
|
|
228
242
|
* calls + token sum + averages (tokens, cost, wall_ms). Mirrors
|
package/dist/node-stdio.d.ts
CHANGED
|
@@ -223,6 +223,20 @@ interface StorageRead {
|
|
|
223
223
|
cost_usd: number;
|
|
224
224
|
errors: number;
|
|
225
225
|
}[]>;
|
|
226
|
+
/** Per-(provider, model) rollup for ONE session — powers the
|
|
227
|
+
* end-of-task "session spend per model" summary. Distinct from
|
|
228
|
+
* listUsageGroupedByProvider (which is global, per-purpose) because a
|
|
229
|
+
* single provider can serve multiple models in a session (e.g. Opus 4.8
|
|
230
|
+
* on most seats and a Fable 5 reasoning-upgrade on the lead seat). */
|
|
231
|
+
listUsageGroupedByModel(sessionId: string): Promise<readonly {
|
|
232
|
+
provider: string;
|
|
233
|
+
model: string;
|
|
234
|
+
calls: number;
|
|
235
|
+
prompt_tokens: number;
|
|
236
|
+
completion_tokens: number;
|
|
237
|
+
total_tokens: number;
|
|
238
|
+
cost_usd: number;
|
|
239
|
+
}[]>;
|
|
226
240
|
/** Per-provider per-purpose averages for the smart router. Filters
|
|
227
241
|
* to ts >= sinceMs (epoch ms) when supplied. Returns provider,
|
|
228
242
|
* calls + token sum + averages (tokens, cost, wall_ms). Mirrors
|