altimate-receipts 0.6.1 → 0.6.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/{chunk-54J2FEKI.js → chunk-5R6W4W4R.js} +2 -2
- package/dist/{chunk-DBQWQVZZ.js → chunk-72Y2GS7I.js} +13 -3
- package/dist/chunk-72Y2GS7I.js.map +1 -0
- package/dist/{chunk-543NGQTN.js → chunk-OQJHGUIN.js} +2 -2
- package/dist/cli.js +8 -3
- package/dist/cli.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/mcp/server.js +2 -2
- package/package.json +1 -1
- package/dist/chunk-DBQWQVZZ.js.map +0 -1
- /package/dist/{chunk-54J2FEKI.js.map → chunk-5R6W4W4R.js.map} +0 -0
- /package/dist/{chunk-543NGQTN.js.map → chunk-OQJHGUIN.js.map} +0 -0
|
@@ -20,7 +20,7 @@ import {
|
|
|
20
20
|
redactReceipt,
|
|
21
21
|
rewritesHistory,
|
|
22
22
|
touchedPaths
|
|
23
|
-
} from "./chunk-
|
|
23
|
+
} from "./chunk-72Y2GS7I.js";
|
|
24
24
|
|
|
25
25
|
// src/receipt/canonical.ts
|
|
26
26
|
function canonicalize(value) {
|
|
@@ -604,4 +604,4 @@ export {
|
|
|
604
604
|
rederiveFromTranscript,
|
|
605
605
|
compareToTranscript
|
|
606
606
|
};
|
|
607
|
-
//# sourceMappingURL=chunk-
|
|
607
|
+
//# sourceMappingURL=chunk-5R6W4W4R.js.map
|
|
@@ -612,10 +612,20 @@ var PRICES = [
|
|
|
612
612
|
{ match: /opus/i, price: { input: 15, output: 75, cacheRead: 1.5, cacheWrite: 18.75 } },
|
|
613
613
|
{ match: /sonnet/i, price: { input: 3, output: 15, cacheRead: 0.3, cacheWrite: 3.75 } },
|
|
614
614
|
{ match: /haiku/i, price: { input: 1, output: 5, cacheRead: 0.1, cacheWrite: 1.25 } },
|
|
615
|
-
// OpenAI
|
|
615
|
+
// OpenAI — rates from the live pricing page (2026-06; cached input = 10% of
|
|
616
|
+
// input, prompt caching has no write surcharge). Field-calibrated after a codex
|
|
617
|
+
// gpt-5.5 marathon receipt priced 1B cache-read tokens 2.5× high (core-internal #146).
|
|
616
618
|
{
|
|
617
619
|
match: /gpt-?5.*mini|o4-?mini/i,
|
|
618
|
-
price: { input: 0.75, output: 4.5, cacheRead: 0.
|
|
620
|
+
price: { input: 0.75, output: 4.5, cacheRead: 0.075, cacheWrite: 0 }
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
match: /gpt-?5\.\d+-?codex/i,
|
|
624
|
+
price: { input: 1.75, output: 14, cacheRead: 0.175, cacheWrite: 0 }
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
match: /gpt-?5\.[5-9]/i,
|
|
628
|
+
price: { input: 5, output: 30, cacheRead: 0.5, cacheWrite: 0 }
|
|
619
629
|
},
|
|
620
630
|
{
|
|
621
631
|
match: /gpt-?5|gpt-?4\.1|gpt-?4o/i,
|
|
@@ -4720,4 +4730,4 @@ export {
|
|
|
4720
4730
|
redact,
|
|
4721
4731
|
redactReceipt
|
|
4722
4732
|
};
|
|
4723
|
-
//# sourceMappingURL=chunk-
|
|
4733
|
+
//# sourceMappingURL=chunk-72Y2GS7I.js.map
|