From 9c60942cc9065a6f3a148352619b88836d979455 Mon Sep 17 00:00:00 2001 From: Vincent Lin Date: Tue, 7 Oct 2025 17:09:47 +0100 Subject: [PATCH] docs(types): fix broken ChatKit docs link to chatkit-js --- packages/chatkit/types/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/chatkit/types/index.d.ts b/packages/chatkit/types/index.d.ts index 0873ece..2c5d1b9 100644 --- a/packages/chatkit/types/index.d.ts +++ b/packages/chatkit/types/index.d.ts @@ -164,7 +164,7 @@ export type StartScreenOption = { export type WidgetsOption = { /** * Called when a widget action is triggered. - * See https://openai.github.io/chatkit/guides/widget-actions/ for details. + * See https://openai.github.io/chatkit-js/guides/widget-actions/ for details. */ onAction?: ( action: { type: string; payload?: Record }, @@ -791,7 +791,7 @@ export interface OpenAIChatKit extends HTMLElement { /** * Sends a custom application-defined action to your backend. - * See https://openai.github.io/chatkit/guides/widget-actions/ for more details. + * See https://openai.github.io/chatkit-js/guides/widget-actions/ for more details. */ sendCustomAction( action: { type: string; payload?: Record },