@zitadel/cli 0.0.0 → 0.1.0-alpha.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 +5 -0
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -27,6 +27,11 @@ npm run dev
|
|
|
27
27
|
|
|
28
28
|
`setup` creates a project on the Zitadel server, scaffolds `app/login`, `app/register`, `app/profile`, and `middleware.ts`, and writes `.env.local` and `.zitadel/`. The project's default user schema and login flow are provisioned server-side at creation time, so the CLI does not scaffold or upload them. Open `http://localhost:3000/login` to see the login page.
|
|
29
29
|
|
|
30
|
+
The default project flow supports password registration/login, passkey
|
|
31
|
+
registration/login, and optional passkey setup after password registration.
|
|
32
|
+
Users who skip passkey setup can still sign in with password; users who add a
|
|
33
|
+
passkey can sign in with either credential.
|
|
34
|
+
|
|
30
35
|
## Other commands
|
|
31
36
|
|
|
32
37
|
- `zitadel doctor` — verify the generated files and local state
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zitadel/cli",
|
|
3
|
-
"version": "0.0.0",
|
|
3
|
+
"version": "0.1.0-alpha.0",
|
|
4
4
|
"description": "Agent-friendly Zitadel CLI",
|
|
5
5
|
"homepage": "https://github.com/zitadel/nextgen/tree/main/apps/cli#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"safe-stable-stringify": "^2.5.0",
|
|
56
56
|
"zod": "^4.3.6",
|
|
57
57
|
"picocolors": "^1.1.1",
|
|
58
|
-
"@zitadel/api": "0.0.0"
|
|
58
|
+
"@zitadel/api": "0.1.0-alpha.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@types/node": "^25.6.0",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"tsdown": "^0.21.10",
|
|
65
65
|
"vitest": "^3.0.0",
|
|
66
66
|
"@zitadel/api-mock": "0.0.0",
|
|
67
|
-
"@zitadel/sdk-next": "0.0.0"
|
|
67
|
+
"@zitadel/sdk-next": "0.1.0-alpha.0"
|
|
68
68
|
},
|
|
69
69
|
"nx": {
|
|
70
70
|
"targets": {
|