diff --git a/extensions/bluebubbles/src/types.ts b/extensions/bluebubbles/src/types.ts index 49a2e7ab19f..71dfb5754bb 100644 --- a/extensions/bluebubbles/src/types.ts +++ b/extensions/bluebubbles/src/types.ts @@ -85,14 +85,14 @@ export type BlueBubblesActionConfig = { sendAttachment?: boolean; }; -export type BlueBubblesConfig = { +export type BlueBubblesConfig = Omit & { /** Optional per-account BlueBubbles configuration (multi-account). */ accounts?: Record; /** Optional default account id when multiple accounts are configured. */ defaultAccount?: string; /** Per-action tool gating (default: true for all). */ actions?: BlueBubblesActionConfig; -} & BlueBubblesAccountConfig; +}; export type BlueBubblesSendTarget = | { kind: "chat_id"; chatId: number }