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.
This commit is contained in:
xaeon2026 2026-03-09 14:20:46 -04:00
parent 73e641c1b4
commit 53cd6fac13

View File

@ -156,6 +156,8 @@ export type ChannelAccountSnapshot = {
profile?: unknown;
channelAccessToken?: string;
channelSecret?: string;
channelAccessTokenConfigured?: boolean;
channelSecretConfigured?: boolean;
};
export type ChannelLogSink = {