@gholl-studio/pier-connector 0.2.39 → 0.2.40
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/openclaw.plugin.json +3 -0
- package/package.json +1 -1
- package/src/index.js +6 -1
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gholl-studio/pier-connector",
|
|
3
3
|
"author": "gholl",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.40",
|
|
5
5
|
"description": "OpenClaw plugin that connects to the Pier job marketplace. Automatically fetches, executes, and reports distributed tasks for rewards.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "src/index.js",
|
package/src/index.js
CHANGED
|
@@ -549,6 +549,8 @@ export default function register(api) {
|
|
|
549
549
|
aliases: ['pier-connector'],
|
|
550
550
|
},
|
|
551
551
|
|
|
552
|
+
id: 'pier',
|
|
553
|
+
|
|
552
554
|
capabilities: {
|
|
553
555
|
chatTypes: ['direct'],
|
|
554
556
|
},
|
|
@@ -732,7 +734,10 @@ export default function register(api) {
|
|
|
732
734
|
},
|
|
733
735
|
};
|
|
734
736
|
|
|
735
|
-
api.registerChannel({
|
|
737
|
+
api.registerChannel({
|
|
738
|
+
id: 'pier',
|
|
739
|
+
plugin: pierChannel
|
|
740
|
+
});
|
|
736
741
|
|
|
737
742
|
// ── 2. Register background service ─────────────────────────────────
|
|
738
743
|
|