@hachej/boring-core 0.1.75 → 0.1.77

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.
@@ -901,6 +901,8 @@ async function createCoreWorkspaceAgentServer(options = {}) {
901
901
  sandboxHandleStore: options.sandboxHandleStore ?? new WorkspaceRuntimeSandboxHandleStore(workspaceStore),
902
902
  getWorkspaceId: resolveWorkspaceId,
903
903
  getWorkspaceRoot: resolveRoot,
904
+ getTrustedWorkspaceRoot: options.getTrustedWorkspaceRoot ?? (options.getWorkspaceRoot ? void 0 : async ({ workspaceId }) => await resolveWorkspaceRoot(workspaceRoot, workspaceId)),
905
+ onWorkspaceAgentDispatcher: options.onWorkspaceAgentDispatcher,
904
906
  provisionRuntime: async ({ provisioningAdapter, runtimeLayout, workspaceId, request, runtimeMode }) => {
905
907
  if (!provisioningAdapter) return void 0;
906
908
  const runtimePlugins = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hachej/boring-core",
3
- "version": "0.1.75",
3
+ "version": "0.1.77",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Foundation package for boring-ui-v2 apps: DB, auth, config, HTTP app factory, and frontend app shell.",
@@ -79,9 +79,9 @@
79
79
  "react-router-dom": "^7.18.0",
80
80
  "smol-toml": "^1.7.0",
81
81
  "zod": "^3.25.76",
82
- "@hachej/boring-agent": "0.1.75",
83
- "@hachej/boring-ui-kit": "0.1.75",
84
- "@hachej/boring-workspace": "0.1.75"
82
+ "@hachej/boring-ui-kit": "0.1.77",
83
+ "@hachej/boring-workspace": "0.1.77",
84
+ "@hachej/boring-agent": "0.1.77"
85
85
  },
86
86
  "devDependencies": {
87
87
  "@testing-library/jest-dom": "^6.9.1",