@techsologic/unolock-agent 0.1.39 → 0.1.41
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/bin/unolock-agent.js
CHANGED
|
@@ -7,8 +7,8 @@ const path = require("path");
|
|
|
7
7
|
const https = require("https");
|
|
8
8
|
const { spawn } = require("child_process");
|
|
9
9
|
|
|
10
|
-
const PACKAGE_VERSION = "0.1.
|
|
11
|
-
const FALLBACK_BINARY_VERSION = "0.1.
|
|
10
|
+
const PACKAGE_VERSION = "0.1.41";
|
|
11
|
+
const FALLBACK_BINARY_VERSION = "0.1.41";
|
|
12
12
|
const REPO = "TechSologic/unolock-agent";
|
|
13
13
|
const INSTALL_LOCK_TIMEOUT_MS = 120000;
|
|
14
14
|
const INSTALL_LOCK_STALE_MS = 300000;
|
|
@@ -69,7 +69,7 @@ Choose the object that matches the work:
|
|
|
69
69
|
- `unolock-agent register '<agent-key-url>' '<pin>'`: first setup on this device
|
|
70
70
|
- `unolock-agent set-agent-pin '<pin>'`: provide the PIN again after restart or re-authentication
|
|
71
71
|
- `unolock-agent list-spaces`, `unolock-agent get-current-space`, `unolock-agent set-current-space <space_id>`: inspect and switch the current Space
|
|
72
|
-
- `unolock-agent list-notes`, `unolock-agent create-note <title> <text>`, `unolock-agent update-note
|
|
72
|
+
- `unolock-agent list-notes`, `unolock-agent create-note <title> <text>`, `unolock-agent update-note <record_ref> [--title <title>] [--text <text>]`, `unolock-agent append-note ...`: read and write notes
|
|
73
73
|
- `unolock-agent list-checklists`, `unolock-agent create-checklist ...`, `unolock-agent set-checklist-item-done ...`, `unolock-agent add-checklist-item ...`, `unolock-agent remove-checklist-item ...`: read and write checklists
|
|
74
74
|
- `unolock-agent list-files`, `unolock-agent get-file <archive_id>`, `unolock-agent download-file ...`, `unolock-agent upload-file ...`, `unolock-agent rename-file ...`, `unolock-agent replace-file ...`, `unolock-agent delete-file ...`: read and manage Cloud files
|
|
75
75
|
- `unolock-agent get-record <record_ref>` and `unolock-agent rename-record ...`: inspect or rename an existing note or checklist
|
package/package.json
CHANGED
|
@@ -70,7 +70,7 @@ Choose the object that matches the work:
|
|
|
70
70
|
- `unolock-agent register '<agent-key-url>' '<pin>'`: first setup on this device
|
|
71
71
|
- `unolock-agent set-agent-pin '<pin>'`: provide the PIN again after restart or re-authentication
|
|
72
72
|
- `unolock-agent list-spaces`, `unolock-agent get-current-space`, `unolock-agent set-current-space <space_id>`: inspect and switch the current Space
|
|
73
|
-
- `unolock-agent list-notes`, `unolock-agent create-note <title> <text>`, `unolock-agent update-note
|
|
73
|
+
- `unolock-agent list-notes`, `unolock-agent create-note <title> <text>`, `unolock-agent update-note <record_ref> [--title <title>] [--text <text>]`, `unolock-agent append-note ...`: read and write notes
|
|
74
74
|
- `unolock-agent list-checklists`, `unolock-agent create-checklist ...`, `unolock-agent set-checklist-item-done ...`, `unolock-agent add-checklist-item ...`, `unolock-agent remove-checklist-item ...`: read and write checklists
|
|
75
75
|
- `unolock-agent list-files`, `unolock-agent get-file <archive_id>`, `unolock-agent download-file ...`, `unolock-agent upload-file ...`, `unolock-agent rename-file ...`, `unolock-agent replace-file ...`, `unolock-agent delete-file ...`: read and manage Cloud files
|
|
76
76
|
- `unolock-agent get-record <record_ref>` and `unolock-agent rename-record ...`: inspect or rename an existing note or checklist
|