@link.me/cli 0.2.54 → 0.2.56
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/README.md +5 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -18,9 +18,12 @@ Pre-compiled binaries are provided for macOS (arm64, x64), Linux (x64, arm64), a
|
|
|
18
18
|
# Authenticate in the browser
|
|
19
19
|
linkme auth login
|
|
20
20
|
|
|
21
|
-
# Print the browser URL
|
|
21
|
+
# Print the browser URL and exit
|
|
22
22
|
linkme auth login --manual
|
|
23
23
|
|
|
24
|
+
# Finish a manual browser login after approval
|
|
25
|
+
linkme auth resume
|
|
26
|
+
|
|
24
27
|
# Authenticate with email/password flags for CI
|
|
25
28
|
linkme auth login --email you@example.com --password '***'
|
|
26
29
|
|
|
@@ -60,6 +63,7 @@ linkme profile --quiet
|
|
|
60
63
|
| Command | Description |
|
|
61
64
|
|---------|-------------|
|
|
62
65
|
| `auth login` | Log in with browser auth by default, or email/password flags |
|
|
66
|
+
| `auth resume` | Finish a pending browser login started with `auth login --manual` |
|
|
63
67
|
| `auth logout` | Log out and clear stored tokens |
|
|
64
68
|
| `auth sessions` | List active sessions |
|
|
65
69
|
| `auth switch` | Switch the active profile |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@link.me/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.56",
|
|
4
4
|
"description": "Linkme platform CLI for agents, scripts, and automation",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"bin": {
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"automation"
|
|
16
16
|
],
|
|
17
17
|
"optionalDependencies": {
|
|
18
|
-
"@link.me/cli-darwin-arm64": "0.2.
|
|
19
|
-
"@link.me/cli-darwin-x64": "0.2.
|
|
20
|
-
"@link.me/cli-linux-x64": "0.2.
|
|
21
|
-
"@link.me/cli-linux-arm64": "0.2.
|
|
22
|
-
"@link.me/cli-windows-x64": "0.2.
|
|
18
|
+
"@link.me/cli-darwin-arm64": "0.2.56",
|
|
19
|
+
"@link.me/cli-darwin-x64": "0.2.56",
|
|
20
|
+
"@link.me/cli-linux-x64": "0.2.56",
|
|
21
|
+
"@link.me/cli-linux-arm64": "0.2.56",
|
|
22
|
+
"@link.me/cli-windows-x64": "0.2.56"
|
|
23
23
|
}
|
|
24
24
|
}
|