mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-12 06:53:43 +00:00
Revert "feat: add Linq channel — real iMessage via API, no Mac required"
This reverts commit d4a142fd8f.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { requireActivePluginRegistry } from "../plugins/runtime.js";
|
||||
import type { ChannelMeta } from "./plugins/types.js";
|
||||
import type { ChannelId } from "./plugins/types.js";
|
||||
import { requireActivePluginRegistry } from "../plugins/runtime.js";
|
||||
|
||||
// Channel docking: add new core channels here (order + meta + aliases), then
|
||||
// register the plugin in its extension entrypoint and keep protocol IDs in sync.
|
||||
@@ -13,7 +13,6 @@ export const CHAT_CHANNEL_ORDER = [
|
||||
"slack",
|
||||
"signal",
|
||||
"imessage",
|
||||
"linq",
|
||||
] as const;
|
||||
|
||||
export type ChatChannelId = (typeof CHAT_CHANNEL_ORDER)[number];
|
||||
@@ -110,16 +109,6 @@ const CHAT_CHANNEL_META: Record<ChatChannelId, ChannelMeta> = {
|
||||
blurb: "this is still a work in progress.",
|
||||
systemImage: "message.fill",
|
||||
},
|
||||
linq: {
|
||||
id: "linq",
|
||||
label: "Linq",
|
||||
selectionLabel: "Linq (iMessage API)",
|
||||
detailLabel: "Linq iMessage",
|
||||
docsPath: "/channels/linq",
|
||||
docsLabel: "linq",
|
||||
blurb: "real iMessage blue bubbles via API — no Mac required. Get a token at linqapp.com.",
|
||||
systemImage: "bubble.left.and.text.bubble.right",
|
||||
},
|
||||
};
|
||||
|
||||
export const CHAT_CHANNEL_ALIASES: Record<string, ChatChannelId> = {
|
||||
@@ -127,7 +116,6 @@ export const CHAT_CHANNEL_ALIASES: Record<string, ChatChannelId> = {
|
||||
"internet-relay-chat": "irc",
|
||||
"google-chat": "googlechat",
|
||||
gchat: "googlechat",
|
||||
"linq-imessage": "linq",
|
||||
};
|
||||
|
||||
const normalizeChannelKey = (raw?: string | null): string | undefined => {
|
||||
|
||||
Reference in New Issue
Block a user