tonder-web-sdk 1.16.7 → 1.16.8

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 CHANGED
@@ -438,6 +438,10 @@ const paymentData = {
438
438
  postCode: "12345",
439
439
  email: "john.doe@example.com",
440
440
  phone: "1234567890",
441
+ identification:{
442
+ type: "CPF",
443
+ number: "19119119100"
444
+ }
441
445
  },
442
446
  cart: {
443
447
  total: "100.00",
@@ -571,7 +575,7 @@ If using the Tonder SDK, include your generated signature in the `signatures` fi
571
575
 
572
576
  ```javascript
573
577
  const inlineCheckout = new InlineCheckout({
574
- mode: "development",
578
+ mode: "stage",
575
579
  apiKey: "<YOUR_API_KEY>",
576
580
  returnUrl: "https://your-website.com/checkout",
577
581
  signatures: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tonder-web-sdk",
3
- "version": "1.16.7",
3
+ "version": "1.16.8",
4
4
  "description": "tonder sdk for integrations",
5
5
  "scripts": {
6
6
  "start": "webpack-dev-server",
@@ -9,4 +9,8 @@ export type ICustomer = {
9
9
  email: string;
10
10
  phone?: string;
11
11
  address?: string;
12
+ identification?: {
13
+ type: string;
14
+ number: string;
15
+ };
12
16
  };