@asgpay/sdk 1.0.0 → 1.0.2

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 (2) hide show
  1. package/README.md +5 -3
  2. package/package.json +31 -9
package/README.md CHANGED
@@ -59,9 +59,11 @@ await client.freezeCard(card.id);
59
59
  |---------|---------|
60
60
  | **[@asgpay/pay](https://npmjs.com/package/@asgpay/pay)** | Multi-chain payment SDK (x402 + MPP) |
61
61
  | **[@asgpay/sdk](https://npmjs.com/package/@asgpay/sdk)** | ← You are here. Card management. |
62
- | **[@asgpay/cli](https://npmjs.com/package/@asgpay/cli)** | Command-line card management |
63
- | **[@asgpay/mcp-server](https://npmjs.com/package/@asgpay/mcp-server)** | AI agent tools (Claude, Codex) |
64
- | **[@asgpay/fund](https://npmjs.com/package/@asgpay/fund)** | One-link agent funding |
62
+ | **[@asgpay/cli](https://npmjs.com/package/@asgpay/cli)** | Card creation & management CLI |
63
+ | **[@asgpay/mcp-server](https://npmjs.com/package/@asgpay/mcp-server)** | AI agent tools (Claude, Codex, Cursor) |
64
+ | **[@asgpay/fund](https://npmjs.com/package/@asgpay/fund)** | One-link agent wallet funding |
65
+ | **[@asgpay/agent-cash](https://npmjs.com/package/@asgpay/agent-cash)** | Autonomous virtual credit cards |
66
+ | **[@asgpay/create-app](https://npmjs.com/package/@asgpay/create-app)** | Project scaffolding |
65
67
 
66
68
  ## Links
67
69
 
package/package.json CHANGED
@@ -1,20 +1,42 @@
1
1
  {
2
2
  "name": "@asgpay/sdk",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "ASG Pay SDK — programmatic virtual Mastercard cards for AI agents. Issue, fund, freeze, and manage spending limits. Part of the ASG Pay ecosystem.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
7
7
  "keywords": [
8
- "asg-pay", "asgpay", "virtual-card", "ai-agent-card", "mastercard",
9
- "stripe-issuing", "card-management", "agent-wallet", "ai-payments",
10
- "autonomous-agent", "fintech", "spend-management", "card-issuance",
11
- "usdc", "stellar", "mcp", "asgcard"
8
+ "asg-pay",
9
+ "asgpay",
10
+ "virtual-card",
11
+ "ai-agent-card",
12
+ "mastercard",
13
+ "stripe-issuing",
14
+ "card-management",
15
+ "agent-wallet",
16
+ "ai-payments",
17
+ "autonomous-agent",
18
+ "fintech",
19
+ "spend-management",
20
+ "card-issuance",
21
+ "usdc",
22
+ "stellar",
23
+ "mcp",
24
+ "asgcard"
12
25
  ],
13
26
  "author": "ASG Compute <aidar@asgcompute.com>",
14
27
  "license": "MIT",
15
28
  "homepage": "https://asgcard.dev",
16
- "repository": { "type": "git", "url": "git+https://github.com/ASGCompute/asgcard-public.git" },
17
- "bugs": { "url": "https://github.com/ASGCompute/asgcard-public/issues" },
18
- "dependencies": { "@asgcard/sdk": "^1.1.4" },
19
- "publishConfig": { "access": "public" }
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "git+https://github.com/ASGCompute/asgcard-public.git"
32
+ },
33
+ "bugs": {
34
+ "url": "https://github.com/ASGCompute/asgcard-public/issues"
35
+ },
36
+ "dependencies": {
37
+ "@asgcard/sdk": "^1.1.5"
38
+ },
39
+ "publishConfig": {
40
+ "access": "public"
41
+ }
20
42
  }