mirror of https://github.com/openclaw/openclaw.git
fix(matrix): restore local helper seams
This commit is contained in:
parent
4e2a072b5b
commit
2befbc5e60
|
|
@ -1,6 +1,4 @@
|
|||
import type { Command } from "commander";
|
||||
import { normalizeAccountId } from "openclaw/plugin-sdk/account-id";
|
||||
import { formatZonedTimestamp, type ChannelSetupInput } from "openclaw/plugin-sdk/matrix";
|
||||
import { resolveMatrixAccount, resolveMatrixAccountConfig } from "./matrix/accounts.js";
|
||||
import { withResolvedActionClient, withStartedActionClient } from "./matrix/actions/client.js";
|
||||
import { listMatrixOwnDevices, pruneMatrixStaleGatewayDevices } from "./matrix/actions/devices.js";
|
||||
|
|
@ -24,6 +22,7 @@ import {
|
|||
type MatrixDirectRoomCandidate,
|
||||
} from "./matrix/direct-management.js";
|
||||
import { applyMatrixProfileUpdate, type MatrixProfileUpdateResult } from "./profile-update.js";
|
||||
import { formatZonedTimestamp, normalizeAccountId, type ChannelSetupInput } from "./runtime-api.js";
|
||||
import { getMatrixRuntime } from "./runtime.js";
|
||||
import { matrixSetupAdapter } from "./setup-core.js";
|
||||
import type { CoreConfig } from "./types.js";
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
* - m.poll.end - Closes a poll
|
||||
*/
|
||||
|
||||
import { normalizePollInput, type PollInput } from "openclaw/plugin-sdk/matrix";
|
||||
import { normalizePollInput, type PollInput } from "../runtime-api.js";
|
||||
|
||||
export const M_POLL_START = "m.poll.start" as const;
|
||||
export const M_POLL_RESPONSE = "m.poll.response" as const;
|
||||
|
|
|
|||
|
|
@ -13445,7 +13445,7 @@ export const GENERATED_BASE_CONFIG_SCHEMA = {
|
|||
},
|
||||
"agents.defaults.memorySearch.qmd.extraCollections.name": {
|
||||
label: "QMD Extra Collection Name",
|
||||
help: "Use this to preserve a stable collection label for shared transcript roots; omit it only when you want the default agent-scoped name.",
|
||||
help: "Preserves the configured collection label only when the path points outside the agent workspace; paths inside the workspace stay agent-scoped even if a name is provided. Use this for shared cross-agent transcript roots that live outside the workspace.",
|
||||
tags: ["advanced"],
|
||||
},
|
||||
"agents.defaults.memorySearch.qmd.extraCollections.pattern": {
|
||||
|
|
|
|||
Loading…
Reference in New Issue