nervepay 1.3.1 → 1.3.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.
@@ -427,12 +427,14 @@ async function deviceNodePairing(options) {
427
427
  method: 'connect',
428
428
  params: {
429
429
  role: 'operator',
430
+ minProtocol: 1,
431
+ maxProtocol: 1,
430
432
  scopes: ['operator.read', 'operator.write'],
431
433
  client: {
432
- id: `nervepay-cli-${crypto.randomUUID().slice(0, 8)}`,
434
+ id: crypto.randomUUID(),
433
435
  version: '1.2.6',
434
- platform: 'cli',
435
- mode: 'pairing',
436
+ platform: process.platform,
437
+ mode: 'node',
436
438
  },
437
439
  device: {
438
440
  id: deviceId,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nervepay",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "NervePay plugin for OpenClaw - Self-sovereign identity, vault, and orchestration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",