@visa/cli 2.4.0-rc.2 → 2.4.0-rc.4

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/install.ps1 CHANGED
@@ -1,5 +1,5 @@
1
1
  # Visa CLI installer for Windows
2
- # Usage: iwr -useb https://visacli.sh/install.ps1 | iex
2
+ # Usage: iwr -useb https://app.visacli.sh/install.ps1 | iex
3
3
 
4
4
  $ErrorActionPreference = "Stop"
5
5
 
package/install.sh CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env bash
2
2
  # Visa CLI installer for macOS and Linux
3
- # Usage: bash <(curl -fsSL https://visacli.sh/install.sh)
3
+ # Usage: ( tmp="$(mktemp)" && trap 'rm -f "$tmp"' EXIT && curl --proto '=https' --tlsv1.2 -fsSL https://app.visacli.sh/install/bash -o "$tmp" && bash "$tmp" )
4
4
  #
5
5
  # The entire body is wrapped in _visa_install() so bash must parse the full
6
6
  # file before executing anything — prevents partial-download execution if
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visa/cli",
3
- "version": "2.4.0-rc.2",
3
+ "version": "2.4.0-rc.4",
4
4
  "description": "AI-powered payments for Claude Code",
5
5
  "bin": {
6
6
  "visa-cli": "./bin/visa-cli.js"
package/server.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
3
3
  "name": "io.github.visa-crypto-labs/visa-cli",
4
- "version": "2.4.0-rc.2",
4
+ "version": "2.4.0-rc.4",
5
5
  "title": "Visa CLI",
6
6
  "description": "AI-powered payments and creative tools for coding agents. Generate images, music, video, query crypto prices, and make purchases — all from your AI coding assistant.",
7
7
  "websiteUrl": "https://github.com/Visa-Crypto-Labs/Visa-mono/tree/main/packages/cli#readme",
@@ -9,7 +9,7 @@
9
9
  {
10
10
  "registryType": "npm",
11
11
  "identifier": "@visa/cli",
12
- "version": "2.4.0-rc.2",
12
+ "version": "2.4.0-rc.4",
13
13
  "transport": {
14
14
  "type": "stdio"
15
15
  },