From b2b545719dab1ca7ce0f5b16001bc0afb2c1a437 Mon Sep 17 00:00:00 2001 From: Emily Klassen Date: Tue, 16 Sep 2025 18:55:19 -0700 Subject: [PATCH] chore(js): mark runWithStreamingCallback as deprecated --- js/core/src/action.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/core/src/action.ts b/js/core/src/action.ts index a767dcedf0..53e3f832fe 100644 --- a/js/core/src/action.ts +++ b/js/core/src/action.ts @@ -529,6 +529,8 @@ export const sentinelNoopStreamingCallback = () => null; /** * Executes provided function with streaming callback in async local storage which can be retrieved * using {@link getStreamingCallback}. + * + * @deprecated `getStreamingCallback` is no longer used internally */ export function runWithStreamingCallback( streamingCallback: StreamingCallback | undefined,