- Modified shared.ts to maintain a Map of clients per accountId - Each account gets its own Matrix client instance - Backwards compatible with single-account usage - resolveMatrixAuth now accepts accountId parameter - stopSharedClient can stop specific or all accounts Files changed: - src/matrix/client/shared.ts (main changes) - src/matrix/client/config.ts (accountId support) - src/matrix/accounts.ts (list enabled accounts) - src/matrix/monitor/index.ts (pass accountId) - src/types.ts (accounts config type)
9 lines
376 B
TypeScript
9 lines
376 B
TypeScript
export type { MatrixAuth, MatrixResolvedConfig } from "./client/types.js";
|
|
export { isBunRuntime } from "./client/runtime.js";
|
|
export { resolveMatrixConfig, resolveMatrixAuth } from "./client/config.js";
|
|
export { createMatrixClient } from "./client/create-client.js";
|
|
export {
|
|
resolveSharedMatrixClient,
|
|
waitForMatrixSync,
|
|
stopSharedClient,
|
|
} from "./client/shared.js";
|