@pague-dev/sdk-node 0.1.4 → 0.1.5

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 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -24,6 +24,8 @@ await pdev.pix.create({ amount, description, customer });
24
24
 
25
25
  // Charges
26
26
  await pdev.charges.create({ projectId, name, amount, paymentMethods });
27
+ await pdev.charges.list({ page, limit });
28
+ await pdev.charges.get(id);
27
29
 
28
30
  // Customers
29
31
  await pdev.customers.create({ name, document });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pague-dev/sdk-node",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Node.js SDK for the pague.dev API",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",