fix(frontend): add cache token fields to UserCostSummary in openapi.json

The backend added total_cache_read_tokens and total_cache_creation_tokens
to UserCostSummary but the OpenAPI spec was not updated, causing frontend
build failures.
This commit is contained in:
majdyz
2026-04-13 10:12:44 +00:00
parent 95087cd170
commit ec2acfb9e3

View File

@@ -15757,6 +15757,16 @@
"type": "integer",
"title": "Cost Bearing Request Count",
"default": 0
},
"total_cache_read_tokens": {
"default": 0,
"title": "Total Cache Read Tokens",
"type": "integer"
},
"total_cache_creation_tokens": {
"default": 0,
"title": "Total Cache Creation Tokens",
"type": "integer"
}
},
"type": "object",