From 66b407facb898d2d8f08fff333fe305d5d77b31b Mon Sep 17 00:00:00 2001 From: Tak Hoffman <781889+Takhoffman@users.noreply.github.com> Date: Mon, 2 Mar 2026 10:48:16 -0600 Subject: [PATCH] fix(types): unblock tsgo baseline for plugin routes and harness --- extensions/googlechat/src/monitor.ts | 1 - extensions/phone-control/index.test.ts | 1 - src/gateway/server-http.test-harness.ts | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/extensions/googlechat/src/monitor.ts b/extensions/googlechat/src/monitor.ts index b43dba6dace..e8577f248cb 100644 --- a/extensions/googlechat/src/monitor.ts +++ b/extensions/googlechat/src/monitor.ts @@ -7,7 +7,6 @@ import { readJsonBodyWithLimit, registerPluginHttpRoute, registerWebhookTarget, - registerPluginHttpRoute, rejectNonPostWebhookRequest, isDangerousNameMatchingEnabled, resolveAllowlistProviderRuntimeGroupPolicy, diff --git a/extensions/phone-control/index.test.ts b/extensions/phone-control/index.test.ts index 480d1390452..4711400c700 100644 --- a/extensions/phone-control/index.test.ts +++ b/extensions/phone-control/index.test.ts @@ -33,7 +33,6 @@ function createApi(params: { logger: { info() {}, warn() {}, error() {} }, registerTool() {}, registerHook() {}, - registerHttpHandler() {}, registerHttpRoute() {}, registerChannel() {}, registerGatewayMethod() {}, diff --git a/src/gateway/server-http.test-harness.ts b/src/gateway/server-http.test-harness.ts index 09c7510b8d1..bf963487038 100644 --- a/src/gateway/server-http.test-harness.ts +++ b/src/gateway/server-http.test-harness.ts @@ -128,7 +128,7 @@ export async function sendRequest( authorization?: string; method?: string; }, -) { +): Promise> { const response = createResponse(); await dispatchRequest(server, createRequest(params), response.res); return response;