@visa/cli 2.4.0-rc.1 → 2.4.0-rc.3

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 CHANGED
@@ -6,15 +6,15 @@ AI-powered payments over MCP. Exposes Visa-funded paid tools as MCP (Model Conte
6
6
 
7
7
  | Platform | Credential Storage | Payment Auth | Install |
8
8
  |----------|-------------------|--------------|---------|
9
- | **macOS** | Keychain | Touch ID / Secure Enclave | `bash <(curl -fsSL https://visacli.sh/install.sh)` or `npm i -g @visa/cli` |
10
- | **Windows** | ACL-restricted file | Server-verified (restricted limits) | `npm i -g @visa/cli` or `iwr -useb https://visacli.sh/install.ps1 \| iex` |
11
- | **Linux** | libsecret (GNOME Keyring / KDE Wallet) | Server-verified (restricted limits) | `bash <(curl -fsSL https://visacli.sh/install.sh)` or `npm i -g @visa/cli` |
9
+ | **macOS** | Keychain | Touch ID / Secure Enclave | `npm i -g @visa/cli` — see [Install](#install) for curl one-liner |
10
+ | **Windows** | ACL-restricted file | Server-verified (restricted limits) | `npm i -g @visa/cli` or `iwr -useb https://app.visacli.sh/install.ps1 \| iex` |
11
+ | **Linux** | libsecret (GNOME Keyring / KDE Wallet) | Server-verified (restricted limits) | `npm i -g @visa/cli` — see [Install](#install) for curl one-liner |
12
12
 
13
13
  ## Install
14
14
 
15
15
  ```bash
16
16
  # one-liner (installs Node.js check + npm install + verification)
17
- bash <(curl -fsSL https://visacli.sh/install.sh)
17
+ ( tmp="$(mktemp)" && trap 'rm -f "$tmp"' EXIT && curl --proto '=https' --tlsv1.2 -fsSL https://app.visacli.sh/install/bash -o "$tmp" && bash "$tmp" )
18
18
 
19
19
  # or directly via npm
20
20
  npm install -g @visa/cli