Skip to content

Commit 1d8a015

Browse files
authored
Merge branch 'dev' into fix/lsp-jdtls-initialize-timeout
2 parents 42b88a3 + ca2411d commit 1d8a015

32 files changed

Lines changed: 273 additions & 127 deletions

File tree

bun.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencode-ai/app",
3-
"version": "1.14.33",
3+
"version": "1.14.35",
44
"description": "",
55
"type": "module",
66
"exports": {

packages/console/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencode-ai/console-app",
3-
"version": "1.14.33",
3+
"version": "1.14.35",
44
"type": "module",
55
"license": "MIT",
66
"scripts": {

packages/console/app/src/routes/zen/util/handler.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -919,6 +919,13 @@ export async function handler(
919919
"tokens.cache_read": cacheReadTokens,
920920
"tokens.cache_write_5m": cacheWrite5mTokens,
921921
"tokens.cache_write_1h": cacheWrite1hTokens,
922+
"cost.input.microcents": centsToMicroCents(inputCost),
923+
"cost.output.microcents": centsToMicroCents(outputCost),
924+
"cost.reasoning.microcents": reasoningCost ? centsToMicroCents(reasoningCost) : undefined,
925+
"cost.cache_read.microcents": cacheReadCost ? centsToMicroCents(cacheReadCost) : undefined,
926+
"cost.cache_write.microcents": cacheWrite5mCost ? centsToMicroCents(cacheWrite5mCost) : undefined,
927+
"cost.total.microcents": centsToMicroCents(totalCostInCent),
928+
// deprecated - remove after May 20, 2026
922929
"cost.input": Math.round(inputCost),
923930
"cost.output": Math.round(outputCost),
924931
"cost.reasoning": reasoningCost ? Math.round(reasoningCost) : undefined,

packages/console/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "@opencode-ai/console-core",
4-
"version": "1.14.33",
4+
"version": "1.14.35",
55
"private": true,
66
"type": "module",
77
"license": "MIT",

packages/console/function/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencode-ai/console-function",
3-
"version": "1.14.33",
3+
"version": "1.14.35",
44
"$schema": "https://json.schemastore.org/package.json",
55
"private": true,
66
"type": "module",

packages/console/mail/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencode-ai/console-mail",
3-
"version": "1.14.33",
3+
"version": "1.14.35",
44
"dependencies": {
55
"@jsx-email/all": "2.2.3",
66
"@jsx-email/cli": "1.4.3",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
3-
"version": "1.14.33",
3+
"version": "1.14.35",
44
"name": "@opencode-ai/core",
55
"type": "module",
66
"license": "MIT",

packages/desktop-electron/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@opencode-ai/desktop-electron",
33
"private": true,
4-
"version": "1.14.33",
4+
"version": "1.14.35",
55
"type": "module",
66
"license": "MIT",
77
"homepage": "https://opencode.ai",

packages/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@opencode-ai/desktop",
33
"private": true,
4-
"version": "1.14.33",
4+
"version": "1.14.35",
55
"type": "module",
66
"license": "MIT",
77
"scripts": {

0 commit comments

Comments
 (0)