@openclaw/irc 2026.7.1-beta.1 → 2026.7.1-beta.2

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/dist/api.js CHANGED
@@ -1,3 +1,3 @@
1
- import { g as resolveIrcAccount, h as resolveDefaultIrcAccountId, m as listIrcAccountIds, n as ircSetupWizard, p as listEnabledIrcAccounts, r as ircSetupAdapter, t as ircPlugin } from "./channel-X7F4NSHn.js";
1
+ import { g as resolveIrcAccount, h as resolveDefaultIrcAccountId, m as listIrcAccountIds, n as ircSetupWizard, p as listEnabledIrcAccounts, r as ircSetupAdapter, t as ircPlugin } from "./channel-BTyt-Cxx.js";
2
2
  import { n as setIrcRuntime } from "./runtime-DZfYm3vY.js";
3
3
  export { ircPlugin, ircSetupAdapter, ircSetupWizard, listEnabledIrcAccounts, listIrcAccountIds, resolveDefaultIrcAccountId, resolveIrcAccount, setIrcRuntime };
@@ -7,6 +7,7 @@ import { adaptScopedAccountAccessor, createScopedChannelConfigAdapter, createSco
7
7
  import { createChatChannelPlugin, parseOptionalDelimitedEntries, tryReadSecretFileSync } from "openclaw/plugin-sdk/channel-core";
8
8
  import { composeAccountWarningCollectors, createAllowlistProviderOpenWarningCollector, createDangerousNameMatchingMutableAllowlistWarningCollector } from "openclaw/plugin-sdk/channel-policy";
9
9
  import { createChannelDirectoryAdapter, createResolvedDirectoryEntriesLister } from "openclaw/plugin-sdk/directory-runtime";
10
+ import { createLazyRuntimeModule } from "openclaw/plugin-sdk/lazy-runtime";
10
11
  import { buildBaseChannelStatusSummary, createComputedAccountStatusAdapter, createDefaultChannelRuntimeState } from "openclaw/plugin-sdk/status-helpers";
11
12
  import { DEFAULT_ACCOUNT_ID, DEFAULT_ACCOUNT_ID as DEFAULT_ACCOUNT_ID$2, normalizeAccountId } from "openclaw/plugin-sdk/account-id";
12
13
  import { resolveMergedAccountConfig } from "openclaw/plugin-sdk/account-resolution";
@@ -196,11 +197,7 @@ const collectIrcMutableAllowlistWarnings = createDangerousNameMatchingMutableAll
196
197
  });
197
198
  //#endregion
198
199
  //#region extensions/irc/src/gateway.ts
199
- let ircChannelRuntimePromise$1;
200
- async function loadIrcChannelRuntime$1() {
201
- ircChannelRuntimePromise$1 ??= import("./channel-runtime-BUK62iQX.js");
202
- return await ircChannelRuntimePromise$1;
203
- }
200
+ const loadIrcChannelRuntime$1 = createLazyRuntimeModule(() => import("./channel-runtime-CdlR5F_m.js"));
204
201
  async function startIrcGatewayAccount(ctx) {
205
202
  const account = ctx.account;
206
203
  const statusSink = createAccountStatusSink({
@@ -1289,11 +1286,7 @@ const meta = {
1289
1286
  systemImage: "number",
1290
1287
  markdownCapable: true
1291
1288
  };
1292
- let ircChannelRuntimePromise;
1293
- async function loadIrcChannelRuntime() {
1294
- ircChannelRuntimePromise ??= import("./channel-runtime-BUK62iQX.js");
1295
- return await ircChannelRuntimePromise;
1296
- }
1289
+ const loadIrcChannelRuntime = createLazyRuntimeModule(() => import("./channel-runtime-CdlR5F_m.js"));
1297
1290
  function normalizePairingTarget(raw) {
1298
1291
  const normalized = normalizeIrcAllowEntry(raw);
1299
1292
  if (!normalized) return "";
@@ -1,2 +1,2 @@
1
- import { t as ircPlugin } from "./channel-X7F4NSHn.js";
1
+ import { t as ircPlugin } from "./channel-BTyt-Cxx.js";
2
2
  export { ircPlugin };
@@ -1,4 +1,4 @@
1
- import { a as resolveIrcRequireMention, c as isChannelTarget, d as connectIrcClient, f as makeIrcMessageId, g as resolveIrcAccount, i as resolveIrcGroupMatch, l as normalizeIrcAllowEntry, o as sendMessageIrc, s as buildIrcAllowlistCandidates, u as buildIrcConnectOptions } from "./channel-X7F4NSHn.js";
1
+ import { a as resolveIrcRequireMention, c as isChannelTarget, d as connectIrcClient, f as makeIrcMessageId, g as resolveIrcAccount, i as resolveIrcGroupMatch, l as normalizeIrcAllowEntry, o as sendMessageIrc, s as buildIrcAllowlistCandidates, u as buildIrcConnectOptions } from "./channel-BTyt-Cxx.js";
2
2
  import { t as getIrcRuntime } from "./runtime-DZfYm3vY.js";
3
3
  import { normalizeLowercaseStringOrEmpty, normalizeOptionalString, normalizeStringEntries } from "openclaw/plugin-sdk/string-coerce-runtime";
4
4
  import { resolveLoggerBackedRuntime } from "openclaw/plugin-sdk/extension-shared";
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@openclaw/irc",
3
- "version": "2026.7.1-beta.1",
3
+ "version": "2026.7.1-beta.2",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@openclaw/irc",
9
- "version": "2026.7.1-beta.1",
9
+ "version": "2026.7.1-beta.2",
10
10
  "dependencies": {
11
11
  "zod": "4.4.3"
12
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclaw/irc",
3
- "version": "2026.7.1-beta.1",
3
+ "version": "2026.7.1-beta.2",
4
4
  "description": "OpenClaw IRC channel plugin",
5
5
  "type": "module",
6
6
  "openclaw": {
@@ -39,10 +39,10 @@
39
39
  }
40
40
  },
41
41
  "compat": {
42
- "pluginApi": ">=2026.7.1-beta.1"
42
+ "pluginApi": ">=2026.7.1-beta.2"
43
43
  },
44
44
  "build": {
45
- "openclawVersion": "2026.7.1-beta.1",
45
+ "openclawVersion": "2026.7.1-beta.2",
46
46
  "bundledDist": false
47
47
  },
48
48
  "release": {
@@ -68,7 +68,7 @@
68
68
  "README.md"
69
69
  ],
70
70
  "peerDependencies": {
71
- "openclaw": ">=2026.7.1-beta.1"
71
+ "openclaw": ">=2026.7.1-beta.2"
72
72
  },
73
73
  "peerDependenciesMeta": {
74
74
  "openclaw": {