@opencode-ai/client 0.0.0-next-17227 → 0.0.0-next-17232

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.
@@ -1074,7 +1074,7 @@ export function make(options) {
1074
1074
  projectCopy: {
1075
1075
  create: (input, requestOptions) => request({
1076
1076
  method: "POST",
1077
- path: `/experimental/project/${encodeURIComponent(input.projectID)}/copy`,
1077
+ path: `/api/experimental/project/${encodeURIComponent(input.projectID)}/copy`,
1078
1078
  query: { location: input["location"] },
1079
1079
  body: { strategy: input["strategy"], directory: input["directory"], name: input["name"] },
1080
1080
  successStatus: 200,
@@ -1083,7 +1083,7 @@ export function make(options) {
1083
1083
  }, requestOptions),
1084
1084
  remove: (input, requestOptions) => request({
1085
1085
  method: "DELETE",
1086
- path: `/experimental/project/${encodeURIComponent(input.projectID)}/copy`,
1086
+ path: `/api/experimental/project/${encodeURIComponent(input.projectID)}/copy`,
1087
1087
  query: { location: input["location"] },
1088
1088
  body: { directory: input["directory"], force: input["force"] },
1089
1089
  successStatus: 204,
@@ -1092,7 +1092,7 @@ export function make(options) {
1092
1092
  }, requestOptions),
1093
1093
  refresh: (input, requestOptions) => request({
1094
1094
  method: "POST",
1095
- path: `/experimental/project/${encodeURIComponent(input.projectID)}/copy/refresh`,
1095
+ path: `/api/experimental/project/${encodeURIComponent(input.projectID)}/copy/refresh`,
1096
1096
  query: { location: input["location"] },
1097
1097
  successStatus: 204,
1098
1098
  declaredStatuses: [400, 401],
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@opencode-ai/client",
4
- "version": "0.0.0-next-17227",
4
+ "version": "0.0.0-next-17232",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -53,8 +53,8 @@
53
53
  "typecheck": "tsgo --noEmit"
54
54
  },
55
55
  "dependencies": {
56
- "@opencode-ai/schema": "0.0.0-next-17227",
57
- "@opencode-ai/protocol": "0.0.0-next-17227"
56
+ "@opencode-ai/schema": "0.0.0-next-17232",
57
+ "@opencode-ai/protocol": "0.0.0-next-17232"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "effect": "4.0.0-beta.101"
@@ -66,7 +66,7 @@
66
66
  },
67
67
  "devDependencies": {
68
68
  "@effect/platform-node": "4.0.0-beta.101",
69
- "@opencode-ai/httpapi-codegen": "0.0.0-next-17227",
69
+ "@opencode-ai/httpapi-codegen": "0.0.0-next-17232",
70
70
  "@tsconfig/bun": "1.0.9",
71
71
  "@types/bun": "1.3.13",
72
72
  "@typescript/native-preview": "7.0.0-dev.20251207.1",