@badgerclaw/connect 1.4.6 → 1.4.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@badgerclaw/connect",
3
- "version": "1.4.6",
3
+ "version": "1.4.7",
4
4
  "description": "BadgerClaw channel plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "dependencies": {
@@ -1,7 +1,7 @@
1
1
  import type { LocationMessageEventContent, MatrixClient } from "@vector-im/matrix-bot-sdk";
2
2
  import {
3
3
  DEFAULT_ACCOUNT_ID,
4
- createScopedPairingAccess,
4
+ createChannelPairingController,
5
5
  createReplyPrefixOptions,
6
6
  createTypingCallbacks,
7
7
  dispatchReplyFromConfigWithSettledDispatcher,
@@ -154,7 +154,7 @@ export function createMatrixRoomMessageHandler(params: MatrixMonitorHandlerParam
154
154
  accountId,
155
155
  } = params;
156
156
  const resolvedAccountId = accountId?.trim() || DEFAULT_ACCOUNT_ID;
157
- const pairing = createScopedPairingAccess({
157
+ const pairing = createChannelPairingController({
158
158
  core,
159
159
  channel: "badgerclaw",
160
160
  accountId: resolvedAccountId,