@intentic/sandbox-contract 1.145.0 → 1.146.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intentic/sandbox-contract",
3
- "version": "1.145.0",
3
+ "version": "1.146.0",
4
4
  "description": "oRPC wire contract for the intentic sandbox daemon — shared by the daemon and its browser client",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -45,7 +45,7 @@
45
45
  "@orpc/contract": "1.14.3",
46
46
  "tslib": "2.8.1",
47
47
  "zod": "4.4.3",
48
- "@intentic/extension-api": "1.145.0"
48
+ "@intentic/extension-api": "1.146.0"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@types/node": "24.13.2",
@@ -58,7 +58,7 @@ export const workspaceContract = {
58
58
  // Per-monorepo apps, driven by the web app's apps extension (owner-authed; {repo} is validated in the
59
59
  // handler): add one or more apps into an existing monorepo, list them with per-app preview URL + status,
60
60
  // and start/stop each app's preview dev server. `addApps` kicks off a one-shot tmux job (session
61
- // panel-<repo>--add_apps) that runs `intentic add-app` — the attachable terminal is the progress/error
61
+ // panel-<repo>--add_apps) that runs `intentic scaffold add-app` — the attachable terminal is the progress/error
62
62
  // surface; the extension polls the session's `running` for completion. It returns immediately (an ack).
63
63
  addApps: oc.route({ method: "POST", path: "/workspace/repos/{repo}/apps" }).input(AddAppsSchema).output(OkSchema),
64
64
  appsList: oc.route({ method: "GET", path: "/workspace/repos/{repo}/apps" }).input(RepoAppsParamSchema).output(AppsListSchema),