From f93f76dcc494a39721fc3d1aec4d8a46a2b0be75 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Sat, 4 Apr 2026 02:26:31 +0900 Subject: [PATCH] fix(ci): dedupe bluebubbles actions config type --- extensions/bluebubbles/src/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }