@100pay-hq/100pay.js 1.4.3 → 1.4.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.
Files changed (2) hide show
  1. package/README.MD +2 -2
  2. package/package.json +1 -1
package/README.MD CHANGED
@@ -513,10 +513,10 @@ const response = await client.request<ResponseType>(
513
513
  **Example:**
514
514
 
515
515
  ```typescript
516
- // Get user balance
516
+ // Get user app balance
517
517
  const balance = await client.request<BalanceResponse>(
518
518
  'GET',
519
- '/api/v1/user/balance'
519
+ '/api/v1/user-apps/:appId/wallet-balance/:symbol'
520
520
  );
521
521
  ```
522
522
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@100pay-hq/100pay.js",
3
- "version": "1.4.3",
3
+ "version": "1.4.4",
4
4
  "description": "100Pay.js is the official Nodejs API wrapper SDK that lets you easily verify crypto payments, run bulk payout, transfer assets and many more.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",