@claudexor/schema 3.10.2 → 3.10.4

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.
@@ -756,6 +756,51 @@
756
756
  }
757
757
  ],
758
758
  "default": null
759
+ },
760
+ "input_token_usage": {
761
+ "type": "object",
762
+ "properties": {
763
+ "total_tokens": {
764
+ "anyOf": [
765
+ {
766
+ "type": "integer",
767
+ "minimum": 0
768
+ },
769
+ {
770
+ "type": "null"
771
+ }
772
+ ]
773
+ },
774
+ "cache_read_tokens": {
775
+ "anyOf": [
776
+ {
777
+ "type": "integer",
778
+ "minimum": 0
779
+ },
780
+ {
781
+ "type": "null"
782
+ }
783
+ ]
784
+ },
785
+ "cache_write_tokens": {
786
+ "anyOf": [
787
+ {
788
+ "type": "integer",
789
+ "minimum": 0
790
+ },
791
+ {
792
+ "type": "null"
793
+ }
794
+ ]
795
+ }
796
+ },
797
+ "required": [
798
+ "total_tokens",
799
+ "cache_read_tokens",
800
+ "cache_write_tokens"
801
+ ],
802
+ "additionalProperties": false,
803
+ "description": "Complete reported input total, including cache reads/writes, and its separately measured cache subsets. Null means unknown, never zero or a partial sum."
759
804
  }
760
805
  },
761
806
  "additionalProperties": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claudexor/schema",
3
- "version": "3.10.2",
3
+ "version": "3.10.4",
4
4
  "license": "MIT",
5
5
  "description": "Single source of truth for all Claudexor data shapes (Zod + generated JSON Schema).",
6
6
  "type": "module",
@@ -20,7 +20,7 @@
20
20
  "dependencies": {
21
21
  "zod": "^4.4.3",
22
22
  "zod-to-json-schema": "^3.24.1",
23
- "@claudexor/util": "3.10.2"
23
+ "@claudexor/util": "3.10.4"
24
24
  },
25
25
  "repository": {
26
26
  "type": "git",