File tree Expand file tree Collapse file tree
extensions/bluebubbles/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ type BlueBubblesTarget =
1919 | { kind : "chat_identifier" ; chatIdentifier : string }
2020 | { kind : "handle" ; to : string ; service : BlueBubblesService } ;
2121
22- export type BlueBubblesAllowTarget = ParsedChatTarget | { kind : "handle" ; handle : string } ;
22+ type BlueBubblesAllowTarget = ParsedChatTarget | { kind : "handle" ; handle : string } ;
2323
2424const CHAT_ID_PREFIXES = [ "chat_id:" , "chatid:" , "chat:" ] ;
2525const CHAT_GUID_PREFIXES = [ "chat_guid:" , "chatguid:" , "guid:" ] ;
Original file line number Diff line number Diff line change @@ -2,10 +2,7 @@ import { fetchWithRuntimeDispatcherOrMockedGlobal } from "openclaw/plugin-sdk/ru
22import type { DmPolicy , GroupPolicy } from "openclaw/plugin-sdk/setup" ;
33import { fetchWithSsrFGuard , type SsrFPolicy } from "openclaw/plugin-sdk/ssrf-runtime" ;
44
5- export type { SsrFPolicy } from "openclaw/plugin-sdk/ssrf-runtime" ;
6- export type { DmPolicy , GroupPolicy } from "openclaw/plugin-sdk/setup" ;
7-
8- export type BlueBubblesGroupConfig = {
5+ type BlueBubblesGroupConfig = {
96 /** If true, only respond in this group when mentioned. */
107 requireMention ?: boolean ;
118 /** Optional tool policy overrides for this group. */
@@ -17,7 +14,7 @@ export type BlueBubblesGroupConfig = {
1714 systemPrompt ?: string ;
1815} ;
1916
20- export type BlueBubblesActionConfig = {
17+ type BlueBubblesActionConfig = {
2118 reactions ?: boolean ;
2219 edit ?: boolean ;
2320 unsend ?: boolean ;
@@ -31,7 +28,7 @@ export type BlueBubblesActionConfig = {
3128 sendAttachment ?: boolean ;
3229} ;
3330
34- export type BlueBubblesNetworkConfig = {
31+ type BlueBubblesNetworkConfig = {
3532 /** Dangerous opt-in for same-host or trusted private/internal BlueBubbles deployments. */
3633 dangerouslyAllowPrivateNetwork ?: boolean ;
3734} ;
You can’t perform that action at this time.
0 commit comments