@stripe/link-cli 0.2.3 → 0.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.
Files changed (3) hide show
  1. package/README.md +19 -1
  2. package/dist/cli.js +1748 -422
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -35,7 +35,7 @@ Link CLI can also run as a local MCP server. Add the following to your MCP clien
35
35
 
36
36
  ### Login
37
37
 
38
- The `link-cli` requires a Link account. You can login to your existing one or [register online](https://app.link.com).
38
+ The `link-cli` requires a Link account. You can log in to your existing one or [register online](https://app.link.com).
39
39
 
40
40
  ```bash
41
41
  link-cli auth login
@@ -176,6 +176,24 @@ link-cli mpp decode \
176
176
  | `LINK_AUTH_BASE_URL` | Override the auth base URL |
177
177
  | `LINK_HTTP_PROXY` | Route all requests through an HTTP proxy (requires `undici`) |
178
178
 
179
+ ## Onboard
180
+
181
+ Run the guided setup flow — authenticates, checks payment methods, shows the app download QR, and walks through both demo flows:
182
+
183
+ ```bash
184
+ link-cli onboard
185
+ ```
186
+
187
+ ## Demo
188
+
189
+ Run an interactive demo of both Link payment flows (always uses test mode — no real charges):
190
+
191
+ ```bash
192
+ link-cli demo # shows menu to choose flow
193
+ link-cli demo --only-card # virtual card flow only
194
+ link-cli demo --only-spt # machine payment (SPT) flow only
195
+ ```
196
+
179
197
  ## Development
180
198
 
181
199
  ```bash