summaryrefslogtreecommitdiffhomepage
path: root/packages
diff options
context:
space:
mode:
authoropencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>2026-03-26 14:16:07 +0000
committeropencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>2026-03-26 14:16:07 +0000
commit1d363fa19fe9c1445f635498da48211bf09cbc97 (patch)
treeb5025081446ace7706820374e00b76db58e4a5b0 /packages
parent1b028d0632c78a9061d8c235e329313b8f41646f (diff)
downloadopencode-1d363fa19fe9c1445f635498da48211bf09cbc97.tar.gz
opencode-1d363fa19fe9c1445f635498da48211bf09cbc97.zip
chore: generate
Diffstat (limited to 'packages')
-rw-r--r--packages/opencode/test/project/vcs.test.ts14
-rw-r--r--packages/sdk/js/src/v2/gen/types.gen.ts2
-rw-r--r--packages/sdk/openapi.json56
3 files changed, 11 insertions, 61 deletions
diff --git a/packages/opencode/test/project/vcs.test.ts b/packages/opencode/test/project/vcs.test.ts
index a7287e7a5..346f55039 100644
--- a/packages/opencode/test/project/vcs.test.ts
+++ b/packages/opencode/test/project/vcs.test.ts
@@ -82,8 +82,11 @@ describeVcs("Vcs", () => {
const pending = nextBranchUpdate(tmp.path)
const head = path.join(tmp.path, ".git", "HEAD")
- await fs.writeFile(head, `ref: refs/heads/${branch}
-`)
+ await fs.writeFile(
+ head,
+ `ref: refs/heads/${branch}
+`,
+ )
const updated = await pending
expect(updated).toBe(branch)
@@ -99,8 +102,11 @@ describeVcs("Vcs", () => {
const pending = nextBranchUpdate(tmp.path)
const head = path.join(tmp.path, ".git", "HEAD")
- await fs.writeFile(head, `ref: refs/heads/${branch}
-`)
+ await fs.writeFile(
+ head,
+ `ref: refs/heads/${branch}
+`,
+ )
await pending
const current = await Vcs.branch()
diff --git a/packages/sdk/js/src/v2/gen/types.gen.ts b/packages/sdk/js/src/v2/gen/types.gen.ts
index 7faa77c26..4a2ae9591 100644
--- a/packages/sdk/js/src/v2/gen/types.gen.ts
+++ b/packages/sdk/js/src/v2/gen/types.gen.ts
@@ -1994,7 +1994,7 @@ export type Path = {
}
export type VcsInfo = {
- branch: string
+ branch?: string
}
export type Command = {
diff --git a/packages/sdk/openapi.json b/packages/sdk/openapi.json
index bbe1093bd..245df2ce1 100644
--- a/packages/sdk/openapi.json
+++ b/packages/sdk/openapi.json
@@ -6718,59 +6718,6 @@
]
}
},
- "/vcs/diff": {
- "get": {
- "operationId": "vcs.diff",
- "parameters": [
- {
- "in": "query",
- "name": "directory",
- "schema": {
- "type": "string"
- }
- },
- {
- "in": "query",
- "name": "workspace",
- "schema": {
- "type": "string"
- }
- },
- {
- "in": "query",
- "name": "mode",
- "schema": {
- "type": "string",
- "enum": ["git", "branch"]
- },
- "required": true
- }
- ],
- "summary": "Get VCS diff",
- "description": "Retrieve the current git diff for the working tree or against the default branch.",
- "responses": {
- "200": {
- "description": "VCS diff",
- "content": {
- "application/json": {
- "schema": {
- "type": "array",
- "items": {
- "$ref": "#/components/schemas/FileDiff"
- }
- }
- }
- }
- }
- },
- "x-codeSamples": [
- {
- "lang": "js",
- "source": "import { createOpencodeClient } from \"@opencode-ai/sdk\n\nconst client = createOpencodeClient()\nawait client.vcs.diff({\n ...\n})"
- }
- ]
- }
- },
"/command": {
"get": {
"operationId": "command.list",
@@ -12534,9 +12481,6 @@
"properties": {
"branch": {
"type": "string"
- },
- "default_branch": {
- "type": "string"
}
}
},