This commit is contained in:
Manuel Jiménez Torres 2026-01-30 12:15:43 +00:00 committed by GitHub
commit 0824c5cc63
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,6 +11,17 @@ export const GATEWAY_CLIENT_IDS = {
TEST: "test", TEST: "test",
FINGERPRINT: "fingerprint", FINGERPRINT: "fingerprint",
PROBE: "openclaw-probe", PROBE: "openclaw-probe",
// Legacy client IDs (clawdbot/moltbot -> openclaw rename compat)
LEGACY_CLAWDBOT_CONTROL_UI: "clawdbot-control-ui",
LEGACY_CLAWDBOT_MACOS_APP: "clawdbot-macos",
LEGACY_CLAWDBOT_IOS_APP: "clawdbot-ios",
LEGACY_CLAWDBOT_ANDROID_APP: "clawdbot-android",
LEGACY_CLAWDBOT_PROBE: "clawdbot-probe",
LEGACY_MOLTBOT_CONTROL_UI: "moltbot-control-ui",
LEGACY_MOLTBOT_MACOS_APP: "moltbot-macos",
LEGACY_MOLTBOT_IOS_APP: "moltbot-ios",
LEGACY_MOLTBOT_ANDROID_APP: "moltbot-android",
LEGACY_MOLTBOT_PROBE: "moltbot-probe",
} as const; } as const;
export type GatewayClientId = (typeof GATEWAY_CLIENT_IDS)[keyof typeof GATEWAY_CLIENT_IDS]; export type GatewayClientId = (typeof GATEWAY_CLIENT_IDS)[keyof typeof GATEWAY_CLIENT_IDS];