From 80f725742b261195c79b727777facd0c2dce73d5 Mon Sep 17 00:00:00 2001 From: Matt Date: Wed, 20 May 2026 12:00:53 +0200 Subject: [PATCH] fix(ai-proxy): re-export FOREST_INTEGRATION_NAMES from package index [PRD-375] The const was declared and exported from forest-integration-client.ts in 1.10.0, but the package's index.ts has a selective re-export block that did not include it. Consumers importing from '@forestadmin/ai-proxy' got undefined at runtime and any at types. This adds the missing re-export so the runtime const is accessible through the package's main entry point, completing the work started in 1.10.0. Co-Authored-By: Claude Opus 4.7 (1M context) --- packages/ai-proxy/src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/ai-proxy/src/index.ts b/packages/ai-proxy/src/index.ts index a80c2e49f1..e04be0d8da 100644 --- a/packages/ai-proxy/src/index.ts +++ b/packages/ai-proxy/src/index.ts @@ -7,6 +7,7 @@ export { createAiProvider } from './create-ai-provider'; export { default as ProviderDispatcher } from './provider-dispatcher'; export { + FOREST_INTEGRATION_NAMES, ForestIntegrationConfig, CustomConfig, ForestIntegrationName,