@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.
@@ -6,6 +6,9 @@
6
6
  "channels": [
7
7
  "pier"
8
8
  ],
9
+ "features": [
10
+ "login"
11
+ ],
9
12
  "configSchema": {
10
13
  "type": "object",
11
14
  "additionalProperties": false,
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.39",
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({ plugin: pierChannel });
737
+ api.registerChannel({
738
+ id: 'pier',
739
+ plugin: pierChannel
740
+ });
736
741
 
737
742
  // ── 2. Register background service ─────────────────────────────────
738
743