@openclaw/nextcloud-talk 2026.3.7 → 2026.3.8-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/package.json +1 -1
- package/src/channel.ts +1 -1
- package/src/runtime.ts +4 -12
package/package.json
CHANGED
package/src/channel.ts
CHANGED
|
@@ -15,11 +15,11 @@ import {
|
|
|
15
15
|
deleteAccountFromConfigSection,
|
|
16
16
|
normalizeAccountId,
|
|
17
17
|
setAccountEnabledInConfigSection,
|
|
18
|
+
waitForAbortSignal,
|
|
18
19
|
type ChannelPlugin,
|
|
19
20
|
type OpenClawConfig,
|
|
20
21
|
type ChannelSetupInput,
|
|
21
22
|
} from "openclaw/plugin-sdk/nextcloud-talk";
|
|
22
|
-
import { waitForAbortSignal } from "../../../src/infra/abort-signal.js";
|
|
23
23
|
import {
|
|
24
24
|
listNextcloudTalkAccountIds,
|
|
25
25
|
resolveDefaultNextcloudTalkAccountId,
|
package/src/runtime.ts
CHANGED
|
@@ -1,14 +1,6 @@
|
|
|
1
|
+
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/compat";
|
|
1
2
|
import type { PluginRuntime } from "openclaw/plugin-sdk/nextcloud-talk";
|
|
2
3
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export
|
|
6
|
-
runtime = next;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
export function getNextcloudTalkRuntime(): PluginRuntime {
|
|
10
|
-
if (!runtime) {
|
|
11
|
-
throw new Error("Nextcloud Talk runtime not initialized");
|
|
12
|
-
}
|
|
13
|
-
return runtime;
|
|
14
|
-
}
|
|
4
|
+
const { setRuntime: setNextcloudTalkRuntime, getRuntime: getNextcloudTalkRuntime } =
|
|
5
|
+
createPluginRuntimeStore<PluginRuntime>("Nextcloud Talk runtime not initialized");
|
|
6
|
+
export { getNextcloudTalkRuntime, setNextcloudTalkRuntime };
|