From 53cd6fac13f5d0cbe4bdf5a43bd29af73fa014e1 Mon Sep 17 00:00:00 2001 From: xaeon2026 Date: Mon, 9 Mar 2026 14:20:46 -0400 Subject: [PATCH] Add channelAccessTokenConfigured/channelSecretConfigured to ChannelAccountSnapshot type The LINE channel sets these boolean fields in its status snapshot and uses them in collectStatusIssues(), but they were missing from the shared ChannelAccountSnapshot type definition. This caused a type mismatch that only surfaced at compile time with strict type checking. --- src/channels/plugins/types.core.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/channels/plugins/types.core.ts b/src/channels/plugins/types.core.ts index 22f8e458e79..c1ee5c815ef 100644 --- a/src/channels/plugins/types.core.ts +++ b/src/channels/plugins/types.core.ts @@ -156,6 +156,8 @@ export type ChannelAccountSnapshot = { profile?: unknown; channelAccessToken?: string; channelSecret?: string; + channelAccessTokenConfigured?: boolean; + channelSecretConfigured?: boolean; }; export type ChannelLogSink = {