Skip to content

Commit d0cb8c1

Browse files
committed
chore: wtf.
1 parent ed11e93 commit d0cb8c1

1,111 files changed

Lines changed: 2044 additions & 2044 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

extensions/bluebubbles/src/actions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import {
1010
type ChannelMessageActionName,
1111
type ChannelToolSend,
1212
} from "openclaw/plugin-sdk";
13-
import type { BlueBubblesSendTarget } from "./types.js";
1413
import { resolveBlueBubblesAccount } from "./accounts.js";
1514
import { sendBlueBubblesAttachment } from "./attachments.js";
1615
import {
@@ -27,6 +26,7 @@ import { getCachedBlueBubblesPrivateApiStatus, isMacOS26OrHigher } from "./probe
2726
import { sendBlueBubblesReaction } from "./reactions.js";
2827
import { resolveChatGuidForTarget, sendMessageBlueBubbles } from "./send.js";
2928
import { normalizeBlueBubblesHandle, parseBlueBubblesTarget } from "./targets.js";
29+
import type { BlueBubblesSendTarget } from "./types.js";
3030

3131
const providerId = "bluebubbles";
3232

extensions/bluebubbles/src/attachments.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
22
import "./test-mocks.js";
3-
import type { BlueBubblesAttachment } from "./types.js";
43
import { downloadBlueBubblesAttachment, sendBlueBubblesAttachment } from "./attachments.js";
54
import { getCachedBlueBubblesPrivateApiStatus } from "./probe.js";
65
import { installBlueBubblesFetchTestHooks } from "./test-harness.js";
6+
import type { BlueBubblesAttachment } from "./types.js";
77

88
const mockFetch = vi.fn();
99

extensions/bluebubbles/src/attachments.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import type { OpenClawConfig } from "openclaw/plugin-sdk";
21
import crypto from "node:crypto";
32
import path from "node:path";
3+
import type { OpenClawConfig } from "openclaw/plugin-sdk";
44
import { resolveBlueBubblesServerAccount } from "./account-resolve.js";
55
import { postMultipartFormData } from "./multipart.js";
66
import { getCachedBlueBubblesPrivateApiStatus } from "./probe.js";

extensions/bluebubbles/src/chat.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import type { OpenClawConfig } from "openclaw/plugin-sdk";
21
import crypto from "node:crypto";
32
import path from "node:path";
3+
import type { OpenClawConfig } from "openclaw/plugin-sdk";
44
import { resolveBlueBubblesServerAccount } from "./account-resolve.js";
55
import { postMultipartFormData } from "./multipart.js";
66
import { getCachedBlueBubblesPrivateApiStatus } from "./probe.js";

extensions/bluebubbles/src/media-send.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import type { OpenClawConfig, PluginRuntime } from "openclaw/plugin-sdk";
21
import fs from "node:fs/promises";
32
import os from "node:os";
43
import path from "node:path";
54
import { pathToFileURL } from "node:url";
5+
import type { OpenClawConfig, PluginRuntime } from "openclaw/plugin-sdk";
66
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
77
import { sendBlueBubblesMedia } from "./media-send.js";
88
import { setBlueBubblesRuntime } from "./runtime.js";

extensions/bluebubbles/src/monitor-normalize.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import type { BlueBubblesAttachment } from "./types.js";
21
import { normalizeBlueBubblesHandle } from "./targets.js";
2+
import type { BlueBubblesAttachment } from "./types.js";
33

44
function asRecord(value: unknown): Record<string, unknown> | null {
55
return value && typeof value === "object" && !Array.isArray(value)

extensions/bluebubbles/src/monitor-processing.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@ import {
77
resolveAckReaction,
88
resolveControlCommandGate,
99
} from "openclaw/plugin-sdk";
10-
import type {
11-
BlueBubblesCoreRuntime,
12-
BlueBubblesRuntimeEnv,
13-
WebhookTarget,
14-
} from "./monitor-shared.js";
1510
import { downloadBlueBubblesAttachment } from "./attachments.js";
1611
import { markBlueBubblesChatRead, sendBlueBubblesTyping } from "./chat.js";
1712
import { sendBlueBubblesMedia } from "./media-send.js";
@@ -32,6 +27,11 @@ import {
3227
resolveBlueBubblesMessageId,
3328
resolveReplyContextFromCache,
3429
} from "./monitor-reply-cache.js";
30+
import type {
31+
BlueBubblesCoreRuntime,
32+
BlueBubblesRuntimeEnv,
33+
WebhookTarget,
34+
} from "./monitor-shared.js";
3535
import { getCachedBlueBubblesPrivateApiStatus } from "./probe.js";
3636
import { normalizeBlueBubblesReactionInput, sendBlueBubblesReaction } from "./reactions.js";
3737
import { resolveChatGuidForTarget, sendMessageBlueBubbles } from "./send.js";

extensions/bluebubbles/src/monitor-shared.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { OpenClawConfig } from "openclaw/plugin-sdk";
22
import type { ResolvedBlueBubblesAccount } from "./accounts.js";
3-
import type { BlueBubblesAccountConfig } from "./types.js";
43
import { getBlueBubblesRuntime } from "./runtime.js";
4+
import type { BlueBubblesAccountConfig } from "./types.js";
55

66
export type BlueBubblesRuntimeEnv = {
77
log?: (message: string) => void;

extensions/bluebubbles/src/monitor.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import { EventEmitter } from "node:events";
12
import type { IncomingMessage, ServerResponse } from "node:http";
23
import type { OpenClawConfig, PluginRuntime } from "openclaw/plugin-sdk";
3-
import { EventEmitter } from "node:events";
44
import { removeAckReactionAfterReply, shouldAckReaction } from "openclaw/plugin-sdk";
55
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
66
import type { ResolvedBlueBubblesAccount } from "./accounts.js";

extensions/bluebubbles/src/monitor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import { timingSafeEqual } from "node:crypto";
12
import type { IncomingMessage, ServerResponse } from "node:http";
23
import type { OpenClawConfig } from "openclaw/plugin-sdk";
3-
import { timingSafeEqual } from "node:crypto";
44
import {
55
registerWebhookTarget,
66
rejectNonPostWebhookRequest,

0 commit comments

Comments
 (0)