@vellumai/vellum-gateway 0.4.17 → 0.4.18

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/README.md CHANGED
@@ -412,7 +412,7 @@ See [`benchmarking/gateway/README.md`](../benchmarking/gateway/README.md) for lo
412
412
  | "No route configured" replies | Add a routing entry or set `GATEWAY_UNMAPPED_POLICY=default` with a default assistant |
413
413
  | Runtime errors | Is `ASSISTANT_RUNTIME_BASE_URL` reachable? Check runtime logs. |
414
414
  | No reply from assistant | Is the assistant runtime processing messages? Check for `RUNTIME_HTTP_PORT` env var. |
415
- | 403 on channel inbound | The runtime rejected the request because JWT authentication failed. Ensure the gateway and runtime share the same signing key (`RUNTIME_BEARER_TOKEN` / `~/.vellum/http-token`). |
415
+ | 403 on channel inbound | The runtime rejected the request because JWT authentication failed. Ensure the gateway and runtime share the same signing key (`~/.vellum/protected/actor-token-signing-key`). |
416
416
 
417
417
  ### Guardian-Specific Troubleshooting
418
418
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellumai/vellum-gateway",
3
- "version": "0.4.17",
3
+ "version": "0.4.18",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./twilio/verify": "./src/twilio/verify.ts",
@@ -42,6 +42,9 @@ const PROFILE_SCOPES: Record<ScopeProfile, ReadonlySet<Scope>> = {
42
42
  ipc_v1: new Set<Scope>([
43
43
  'ipc.all',
44
44
  ]),
45
+ ui_page_v1: new Set<Scope>([
46
+ 'settings.read',
47
+ ]),
45
48
  };
46
49
 
47
50
  // ---------------------------------------------------------------------------
package/src/auth/types.ts CHANGED
@@ -13,7 +13,8 @@ export type ScopeProfile =
13
13
  | 'actor_client_v1'
14
14
  | 'gateway_ingress_v1'
15
15
  | 'gateway_service_v1'
16
- | 'ipc_v1';
16
+ | 'ipc_v1'
17
+ | 'ui_page_v1';
17
18
 
18
19
  // ---------------------------------------------------------------------------
19
20
  // Individual scope strings