clerk 3.2.1-canary.71bcb8e → 3.3.0
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 +17 -17
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -24,37 +24,37 @@ Usage: clerk [options] [command]
|
|
|
24
24
|
Clerk CLI
|
|
25
25
|
|
|
26
26
|
Options:
|
|
27
|
-
-
|
|
27
|
+
-h, --help Display help for command
|
|
28
28
|
--input-json <json> Pass command options as a JSON string, @file.json, or -
|
|
29
29
|
for stdin
|
|
30
30
|
--mode <mode> Force interaction mode (human or agent). Defaults to
|
|
31
31
|
auto-detect based on TTY.
|
|
32
|
+
-v, --version Output the version number
|
|
32
33
|
--verbose Show detailed output (enables debug messages)
|
|
33
|
-
-h, --help Display help for command
|
|
34
34
|
|
|
35
35
|
Commands:
|
|
36
|
-
|
|
37
|
-
auth Manage authentication
|
|
38
|
-
link [options] Link this project to a Clerk application
|
|
39
|
-
unlink [options] Unlink this project from its Clerk application
|
|
40
|
-
whoami [options] Show the current logged-in user and linked application
|
|
41
|
-
open Open Clerk resources in your browser
|
|
36
|
+
api [options] [endpoint] [filter] Call any Clerk API endpoint (200+; `clerk api ls` to browse)
|
|
42
37
|
apps Manage your Clerk applications
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
env Manage environment variables
|
|
38
|
+
auth Manage authentication
|
|
39
|
+
completion [shell] Generate shell autocompletion script
|
|
46
40
|
config Manage instance configuration
|
|
47
|
-
|
|
48
|
-
enable Enable Clerk features on the linked instance
|
|
41
|
+
deploy Deploy a Clerk application to production
|
|
49
42
|
disable Disable Clerk features on the linked instance
|
|
50
|
-
api [options] [endpoint] [filter] Call any Clerk API endpoint (200+; `clerk api ls` to browse)
|
|
51
43
|
doctor [options] Check your project's Clerk integration health
|
|
44
|
+
enable Enable Clerk features on the linked instance
|
|
45
|
+
env Manage environment variables
|
|
46
|
+
help [command] Display help for command
|
|
47
|
+
impersonate|imp [options] [user] Impersonate a Clerk user
|
|
48
|
+
init [options] Initialize Clerk in your project
|
|
49
|
+
link [options] Link this project to a Clerk application
|
|
52
50
|
mcp Manage the Clerk remote MCP server connection for AI editors and CLIs
|
|
53
|
-
|
|
51
|
+
open Open Clerk resources in your browser
|
|
52
|
+
telemetry Control CLI usage telemetry (status, disable, enable)
|
|
53
|
+
unlink [options] Unlink this project from its Clerk application
|
|
54
54
|
update [options] Update the Clerk CLI to the latest version
|
|
55
|
-
|
|
55
|
+
users [options] Manage Clerk users
|
|
56
56
|
webhooks Stream webhook events to a local handler and verify their signatures
|
|
57
|
-
|
|
57
|
+
whoami [options] Show the current logged-in user and linked application
|
|
58
58
|
bird Play Clerk Bird, a Flappy Bird game in your terminal
|
|
59
59
|
```
|
|
60
60
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clerk",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"description": "Clerk CLI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"authentication",
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"node": ">=20.0.0"
|
|
31
31
|
},
|
|
32
32
|
"optionalDependencies": {
|
|
33
|
-
"@clerk/cli-darwin-arm64": "3.
|
|
34
|
-
"@clerk/cli-darwin-x64": "3.
|
|
35
|
-
"@clerk/cli-linux-arm64": "3.
|
|
36
|
-
"@clerk/cli-linux-arm64-musl": "3.
|
|
37
|
-
"@clerk/cli-linux-x64": "3.
|
|
38
|
-
"@clerk/cli-linux-x64-musl": "3.
|
|
39
|
-
"@clerk/cli-win32-arm64": "3.
|
|
40
|
-
"@clerk/cli-win32-x64": "3.
|
|
33
|
+
"@clerk/cli-darwin-arm64": "3.3.0",
|
|
34
|
+
"@clerk/cli-darwin-x64": "3.3.0",
|
|
35
|
+
"@clerk/cli-linux-arm64": "3.3.0",
|
|
36
|
+
"@clerk/cli-linux-arm64-musl": "3.3.0",
|
|
37
|
+
"@clerk/cli-linux-x64": "3.3.0",
|
|
38
|
+
"@clerk/cli-linux-x64-musl": "3.3.0",
|
|
39
|
+
"@clerk/cli-win32-arm64": "3.3.0",
|
|
40
|
+
"@clerk/cli-win32-x64": "3.3.0"
|
|
41
41
|
}
|
|
42
42
|
}
|