@hachej/boring-core 0.1.76 → 0.1.78
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/dist/app/server/index.js +2 -0
- package/package.json +4 -4
package/dist/app/server/index.js
CHANGED
|
@@ -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.
|
|
3
|
+
"version": "0.1.78",
|
|
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.
|
|
83
|
-
"@hachej/boring-
|
|
84
|
-
"@hachej/boring-
|
|
82
|
+
"@hachej/boring-agent": "0.1.78",
|
|
83
|
+
"@hachej/boring-workspace": "0.1.78",
|
|
84
|
+
"@hachej/boring-ui-kit": "0.1.78"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
87
|
"@testing-library/jest-dom": "^6.9.1",
|