@openclaw/twitch 2026.5.19-beta.2 → 2026.5.20-beta.1
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 +2 -2
- package/dist/channel-plugin-api.js +1 -1
- package/dist/{monitor-CChgaNlJ.js → monitor-Bf1feqSo.js} +2 -2
- package/dist/{plugin-DXTLfG2F.js → plugin-Bhtgv1oH.js} +2 -2
- package/dist/setup-plugin-api.js +1 -1
- package/package.json +4 -4
- /package/dist/{runtime-C5O5cqdz.js → runtime-B5If4b0g.js} +0 -0
- /package/dist/{setup-surface-BiDFQV9J.js → setup-surface-Ba8s3iy8.js} +0 -0
package/dist/api.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { t as twitchPlugin } from "./plugin-
|
|
2
|
-
import { n as setTwitchRuntime } from "./runtime-
|
|
1
|
+
import { t as twitchPlugin } from "./plugin-Bhtgv1oH.js";
|
|
2
|
+
import { n as setTwitchRuntime } from "./runtime-B5If4b0g.js";
|
|
3
3
|
export { setTwitchRuntime, twitchPlugin };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as twitchPlugin } from "./plugin-
|
|
1
|
+
import { t as twitchPlugin } from "./plugin-Bhtgv1oH.js";
|
|
2
2
|
export { twitchPlugin };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { n as stripMarkdownForTwitch, r as getOrCreateClientManager } from "./plugin-
|
|
2
|
-
import { t as getTwitchRuntime } from "./runtime-
|
|
1
|
+
import { n as stripMarkdownForTwitch, r as getOrCreateClientManager } from "./plugin-Bhtgv1oH.js";
|
|
2
|
+
import { t as getTwitchRuntime } from "./runtime-B5If4b0g.js";
|
|
3
3
|
import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";
|
|
4
4
|
import { normalizeLowercaseStringOrEmpty } from "openclaw/plugin-sdk/string-coerce-runtime";
|
|
5
5
|
import { createChannelIngressResolver, defineStableChannelIngressIdentity } from "openclaw/plugin-sdk/channel-ingress-runtime";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as getAccountConfig, c as resolveTwitchAccountContext, d as isAccountConfigured, f as missingTargetError, h as resolveTwitchToken, i as DEFAULT_ACCOUNT_ID, l as resolveTwitchSnapshotAccountId, m as normalizeTwitchChannel, o as listAccountIds, p as normalizeToken, r as twitchSetupWizard, s as resolveDefaultTwitchAccountId, t as twitchSetupAdapter, u as generateMessageId } from "./setup-surface-
|
|
1
|
+
import { a as getAccountConfig, c as resolveTwitchAccountContext, d as isAccountConfigured, f as missingTargetError, h as resolveTwitchToken, i as DEFAULT_ACCOUNT_ID, l as resolveTwitchSnapshotAccountId, m as normalizeTwitchChannel, o as listAccountIds, p as normalizeToken, r as twitchSetupWizard, s as resolveDefaultTwitchAccountId, t as twitchSetupAdapter, u as generateMessageId } from "./setup-surface-Ba8s3iy8.js";
|
|
2
2
|
import { describeAccountSnapshot } from "openclaw/plugin-sdk/account-helpers";
|
|
3
3
|
import { buildChannelConfigSchema } from "openclaw/plugin-sdk/channel-config-schema";
|
|
4
4
|
import { createChatChannelPlugin } from "openclaw/plugin-sdk/channel-core";
|
|
@@ -1257,7 +1257,7 @@ const twitchPlugin = createChatChannelPlugin({
|
|
|
1257
1257
|
await runStoppablePassiveMonitor({
|
|
1258
1258
|
abortSignal: ctx.abortSignal,
|
|
1259
1259
|
start: async () => {
|
|
1260
|
-
const { monitorTwitchProvider } = await import("./monitor-
|
|
1260
|
+
const { monitorTwitchProvider } = await import("./monitor-Bf1feqSo.js");
|
|
1261
1261
|
return monitorTwitchProvider({
|
|
1262
1262
|
account,
|
|
1263
1263
|
accountId,
|
package/dist/setup-plugin-api.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { n as twitchSetupPlugin } from "./setup-surface-
|
|
1
|
+
import { n as twitchSetupPlugin } from "./setup-surface-Ba8s3iy8.js";
|
|
2
2
|
export { twitchSetupPlugin };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/twitch",
|
|
3
|
-
"version": "2026.5.
|
|
3
|
+
"version": "2026.5.20-beta.1",
|
|
4
4
|
"description": "OpenClaw Twitch channel plugin",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"minHostVersion": ">=2026.4.10"
|
|
28
28
|
},
|
|
29
29
|
"compat": {
|
|
30
|
-
"pluginApi": ">=2026.5.
|
|
30
|
+
"pluginApi": ">=2026.5.20-beta.1"
|
|
31
31
|
},
|
|
32
32
|
"build": {
|
|
33
|
-
"openclawVersion": "2026.5.
|
|
33
|
+
"openclawVersion": "2026.5.20-beta.1"
|
|
34
34
|
},
|
|
35
35
|
"channel": {
|
|
36
36
|
"id": "twitch",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"README.md"
|
|
58
58
|
],
|
|
59
59
|
"peerDependencies": {
|
|
60
|
-
"openclaw": ">=2026.5.
|
|
60
|
+
"openclaw": ">=2026.5.20-beta.1"
|
|
61
61
|
},
|
|
62
62
|
"peerDependenciesMeta": {
|
|
63
63
|
"openclaw": {
|
|
File without changes
|
|
File without changes
|