@asgcard/sdk 1.0.6 → 1.0.7
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 +2 -1
- package/dist/types/index.d.ts +1 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @asgcard/sdk
|
|
2
2
|
|
|
3
|
-
TypeScript SDK for [ASG Card](https://asgcard.dev) — instant virtual
|
|
3
|
+
TypeScript SDK for [ASG Card](https://asgcard.dev) — instant virtual MasterCard cards for AI agents, paid via x402 on Stellar.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -104,6 +104,7 @@ import {
|
|
|
104
104
|
|
|
105
105
|
- [Documentation](https://asgcard.dev/docs)
|
|
106
106
|
- [OpenAPI Spec](https://asgcard.dev/openapi.json)
|
|
107
|
+
- [GitHub](https://github.com/ASGCompute/asgcard-public)
|
|
107
108
|
- [API Status](https://api.asgcard.dev/health)
|
|
108
109
|
|
|
109
110
|
## License
|
package/dist/types/index.d.ts
CHANGED
|
@@ -71,7 +71,7 @@ export interface CardResult {
|
|
|
71
71
|
txHash: string;
|
|
72
72
|
network: string;
|
|
73
73
|
};
|
|
74
|
-
/** Sensitive card details (agent-first model, one-time access) */
|
|
74
|
+
/** Sensitive card details (agent-first model, one-time access on create) */
|
|
75
75
|
detailsEnvelope?: {
|
|
76
76
|
cardNumber: string;
|
|
77
77
|
expiryMonth: number;
|
|
@@ -81,8 +81,6 @@ export interface CardResult {
|
|
|
81
81
|
oneTimeAccess: boolean;
|
|
82
82
|
expiresInSeconds: number;
|
|
83
83
|
};
|
|
84
|
-
/** @deprecated use detailsEnvelope */
|
|
85
|
-
details?: SensitiveCardDetails;
|
|
86
84
|
}
|
|
87
85
|
export interface FundResult {
|
|
88
86
|
success: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@asgcard/sdk",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "SDK for ASG Card — virtual
|
|
3
|
+
"version": "1.0.7",
|
|
4
|
+
"description": "SDK for ASG Card — virtual MasterCard cards for AI agents, paid via x402 on Stellar",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"repository": {
|
|
29
29
|
"type": "git",
|
|
30
|
-
"url": "https://github.com/asgcard
|
|
30
|
+
"url": "https://github.com/ASGCompute/asgcard-public"
|
|
31
31
|
},
|
|
32
32
|
"homepage": "https://asgcard.dev",
|
|
33
33
|
"publishConfig": {
|