@hachej/boring-core 0.1.80 → 0.1.81

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.
@@ -796,7 +796,11 @@ async function createCoreWorkspaceAgentServer(options = {}) {
796
796
  trusted: {
797
797
  workspaceAgentDispatcherResolver: trustedDispatcherProxy,
798
798
  actorResolver: trustedPluginActorResolver,
799
- sql
799
+ sql,
800
+ actorVerifier: async (actor) => Boolean(
801
+ await workspaceStore.get(actor.workspaceId) && await workspaceStore.isMember(actor.workspaceId, actor.userId) && await userStore.getById(actor.userId)
802
+ ),
803
+ hostedAutomationTriggerToken: process.env.BORING_AUTOMATION_TRIGGER_TOKEN
800
804
  }
801
805
  };
802
806
  const resolvedPlugins = await Promise.all(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hachej/boring-core",
3
- "version": "0.1.80",
3
+ "version": "0.1.81",
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.80",
83
- "@hachej/boring-workspace": "0.1.80",
84
- "@hachej/boring-ui-kit": "0.1.80"
82
+ "@hachej/boring-agent": "0.1.81",
83
+ "@hachej/boring-workspace": "0.1.81",
84
+ "@hachej/boring-ui-kit": "0.1.81"
85
85
  },
86
86
  "devDependencies": {
87
87
  "@testing-library/jest-dom": "^6.9.1",