@tap-payments/apple-pay-button 1.0.0-test → 1.0.1-test

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.
@@ -22,7 +22,7 @@ export interface Customer {
22
22
  number: string;
23
23
  };
24
24
  };
25
- requiredShippingContactFields?: Array<RequiredShippingContactField>;
25
+ shippingContactFields?: Array<RequiredShippingContactField>;
26
26
  }
27
27
  export interface Acceptance {
28
28
  supportedBrands?: Array<typeof SupportedNetworks[keyof typeof SupportedNetworks]>;
@@ -43,7 +43,7 @@ export var getApplePayRequest = function (_a) {
43
43
  },
44
44
  supportsCouponCode: acceptance.supportsCouponCode,
45
45
  couponCode: transaction.couponCode,
46
- requiredShippingContactFields: customer === null || customer === void 0 ? void 0 : customer.requiredShippingContactFields,
46
+ requiredShippingContactFields: customer === null || customer === void 0 ? void 0 : customer.shippingContactFields,
47
47
  shippingMethods: transaction.shipping
48
48
  };
49
49
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tap-payments/apple-pay-button",
3
- "version": "1.0.0-test",
3
+ "version": "1.0.1-test",
4
4
  "description": "Apple Pay Button React Component",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.js",