@vellumai/vellum-gateway 0.4.43 → 0.4.44

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": "@vellumai/vellum-gateway",
3
- "version": "0.4.43",
3
+ "version": "0.4.44",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./twilio/verify": "./src/twilio/verify.ts",
@@ -29,6 +29,7 @@ const PROFILE_SCOPES: Record<ScopeProfile, ReadonlySet<Scope>> = {
29
29
  ]),
30
30
  gateway_ingress_v1: new Set<Scope>(["ingress.write", "internal.write"]),
31
31
  gateway_service_v1: new Set<Scope>([
32
+ "chat.read",
32
33
  "chat.write",
33
34
  "settings.read",
34
35
  "settings.write",
@@ -4,7 +4,7 @@ export const TELEGRAM_CHANNEL_TRANSPORT_HINTS = [
4
4
  "defer-dashboard-only-tasks",
5
5
  ] as const;
6
6
  export const TELEGRAM_CHANNEL_TRANSPORT_UX_BRIEF =
7
- "Telegram is chat-only. Complete channel-safe steps in-channel and defer dashboard-only Home Base tasks to desktop.";
7
+ "Telegram is chat-only. Complete channel-safe steps in-channel and defer dashboard-only tasks to desktop.";
8
8
 
9
9
  export function buildTelegramTransportMetadata(): {
10
10
  hints: string[];
@@ -104,6 +104,14 @@
104
104
  "label": "App Builder Multi-file",
105
105
  "description": "Enable multi-file TSX app creation with esbuild compilation instead of single-HTML apps",
106
106
  "defaultEnabled": false
107
+ },
108
+ {
109
+ "id": "sentry-testing",
110
+ "scope": "macos",
111
+ "key": "sentry_testing_enabled",
112
+ "label": "Sentry Testing",
113
+ "description": "Show the Sentry Testing tab in Settings for triggering test crash reports and error events",
114
+ "defaultEnabled": false
107
115
  }
108
116
  ]
109
117
  }
@@ -91,9 +91,5 @@ export function createBrainGraphProxyHandler(config: GatewayConfig) {
91
91
  return proxyTo(req, `${config.assistantRuntimeBaseUrl}/v1/brain-graph-ui`);
92
92
  }
93
93
 
94
- async function handleHomeBaseUI(req: Request): Promise<Response> {
95
- return proxyTo(req, `${config.assistantRuntimeBaseUrl}/v1/home-base-ui`);
96
- }
97
-
98
- return { handleBrainGraph, handleBrainGraphUI, handleHomeBaseUI };
94
+ return { handleBrainGraph, handleBrainGraphUI };
99
95
  }
package/src/index.ts CHANGED
@@ -386,13 +386,6 @@ async function main() {
386
386
  auth: "edge",
387
387
  handler: (req) => brainGraphProxy.handleBrainGraphUI(req),
388
388
  },
389
- {
390
- path: "/v1/home-base-ui",
391
- method: "GET",
392
- auth: "edge",
393
- handler: (req) => brainGraphProxy.handleHomeBaseUI(req),
394
- },
395
-
396
389
  // ── Telegram control plane ──
397
390
  {
398
391
  path: "/v1/integrations/telegram/config",
package/src/schema.ts CHANGED
@@ -194,29 +194,6 @@ export function buildSchema(): Record<string, unknown> {
194
194
  },
195
195
  },
196
196
  },
197
- "/v1/home-base-ui": {
198
- get: {
199
- summary: "Home base UI",
200
- description:
201
- "Authenticated gateway endpoint that serves the home base dashboard UI from the assistant runtime.",
202
- operationId: "homeBaseUI",
203
- security: [{ BearerAuth: [] }],
204
- responses: {
205
- "200": {
206
- description: "Home base UI HTML returned",
207
- content: {
208
- "text/html": { schema: { type: "string" } },
209
- },
210
- },
211
- "401": {
212
- description: "Unauthorized — missing or invalid bearer token",
213
- },
214
- "503": { description: "Bearer token not configured" },
215
- "502": { description: "Failed to reach assistant runtime" },
216
- "504": { description: "Assistant runtime request timed out" },
217
- },
218
- },
219
- },
220
197
  "/webhooks/telegram": {
221
198
  post: {
222
199
  summary: "Telegram webhook",