refactor: prune stale extension types

This commit is contained in:
Peter Steinberger
2026-05-01 10:34:04 +01:00
parent 4eec2843cd
commit e26357fee8
10 changed files with 0 additions and 156 deletions

View File

@@ -126,15 +126,6 @@ export type BlueBubblesAccountConfig = {
coalesceSameSenderDms?: boolean;
};
export type BlueBubblesConfig = Omit<BlueBubblesAccountConfig, "actions"> & {
/** Optional per-account BlueBubbles configuration (multi-account). */
accounts?: Record<string, BlueBubblesAccountConfig>;
/** Optional default account id when multiple accounts are configured. */
defaultAccount?: string;
/** Per-action tool gating (default: true for all). */
actions?: BlueBubblesActionConfig;
};
export type BlueBubblesSendTarget =
| { kind: "chat_id"; chatId: number }
| { kind: "chat_guid"; chatGuid: string }