@mixrpay/agent-sdk 0.8.2 → 0.8.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/README.md +12 -0
- package/dist/index.cjs +897 -15
- package/dist/index.d.cts +722 -5
- package/dist/index.d.ts +722 -5
- package/dist/index.js +897 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
Enable AI agents to make payments to MixrPay-powered APIs.
|
|
4
4
|
|
|
5
|
+
## Important: Session Key Security
|
|
6
|
+
|
|
7
|
+
Your session key (`sk_live_...`) is a **private key**. Treat it like a password:
|
|
8
|
+
|
|
9
|
+
- **Save it immediately** when you receive it (from `claimInvite()` or dashboard)
|
|
10
|
+
- **Store it securely** (environment variable, secrets manager)
|
|
11
|
+
- **Never commit it** to version control
|
|
12
|
+
- **Never log it** to console or files
|
|
13
|
+
- **It cannot be recovered** if lost - you will need a new invite
|
|
14
|
+
|
|
15
|
+
The session key is shown **only once** when claimed. MixrPay does not store it.
|
|
16
|
+
|
|
5
17
|
## Installation
|
|
6
18
|
|
|
7
19
|
```bash
|