@tap-payments/apple-pay-button 0.0.69-development → 0.0.71-development

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.
@@ -23,6 +23,7 @@ export interface ApplePayDataToLunchSDKFromMerchantSide {
23
23
  applePayRequestData: ApplePayRequestData;
24
24
  debug?: boolean;
25
25
  applePaySDKVersion?: number;
26
+ paymentProcessor?: string;
26
27
  }
27
28
  export interface Interface {
28
29
  locale?: Locale;
@@ -92,6 +92,7 @@ export interface PaymentMethod {
92
92
  button_style: Buttonstyle;
93
93
  display_name: string;
94
94
  default_currency: string;
95
+ identifier?: string;
95
96
  }
96
97
  interface Buttonstyle {
97
98
  background: Background2;
package/build/api.d.ts CHANGED
@@ -1,18 +1,13 @@
1
1
  import { MerchantResponse, CheckoutProfileRequest, ChargeRequestBody, AuthorizeRequestBody } from './@types';
2
2
  export declare const setAxiosGlobalHeaders: (headers: Record<string, string>) => void;
3
3
  export declare const getAxiosGlobalHeaders: () => {
4
- [x: string]: (string | number | boolean | string[] | import("axios").AxiosHeaders | null) | undefined;
5
- head?: import("axios").AxiosHeaders | undefined;
6
- link?: import("axios").AxiosHeaders | undefined;
7
- post?: import("axios").AxiosHeaders | undefined;
8
- get?: import("axios").AxiosHeaders | undefined;
9
- delete?: import("axios").AxiosHeaders | undefined;
10
- options?: import("axios").AxiosHeaders | undefined;
11
- put?: import("axios").AxiosHeaders | undefined;
12
- patch?: import("axios").AxiosHeaders | undefined;
13
- purge?: import("axios").AxiosHeaders | undefined;
14
- unlink?: import("axios").AxiosHeaders | undefined;
15
- common?: import("axios").AxiosHeaders | undefined;
4
+ [x: string]: import("axios").AxiosHeaderValue | undefined;
5
+ Accept?: import("axios").AxiosHeaderValue | undefined;
6
+ "Content-Length"?: import("axios").AxiosHeaderValue | undefined;
7
+ "User-Agent"?: import("axios").AxiosHeaderValue | undefined;
8
+ "Content-Encoding"?: import("axios").AxiosHeaderValue | undefined;
9
+ Authorization?: import("axios").AxiosHeaderValue | undefined;
10
+ 'Content-Type'?: import("axios").AxiosHeaderValue | undefined;
16
11
  };
17
12
  declare class APPService {
18
13
  setHttpHeaders(headers: Record<string, string>): Promise<void>;
@@ -25,7 +20,7 @@ declare class APPService {
25
20
  merchant: any;
26
21
  payment_options: any;
27
22
  }>;
28
- appleSession(merchant: Pick<MerchantResponse, 'name' | 'id'>, validationURL: string, merchantRegisteredDomain: string, merchantIdentifier: string): Promise<any>;
23
+ appleSession(merchant: Pick<MerchantResponse, 'name' | 'id'>, validationURL: string, merchantRegisteredDomain: string, merchantIdentifier: string, paymentProcessor: string): Promise<any>;
29
24
  tapTokenization(applePaymentData: Record<string, string>): Promise<any>;
30
25
  createCharge(request: ChargeRequestBody): Promise<any>;
31
26
  createAuthorize(request: AuthorizeRequestBody): Promise<any>;
package/build/api.js CHANGED
@@ -149,7 +149,7 @@ var APPService = (function () {
149
149
  enumerable: false,
150
150
  configurable: true,
151
151
  writable: true,
152
- value: function (merchant, validationURL, merchantRegisteredDomain, merchantIdentifier) {
152
+ value: function (merchant, validationURL, merchantRegisteredDomain, merchantIdentifier, paymentProcessor) {
153
153
  return __awaiter(this, void 0, void 0, function () {
154
154
  var body, data;
155
155
  return __generator(this, function (_a) {
@@ -160,7 +160,8 @@ var APPService = (function () {
160
160
  origin: merchantRegisteredDomain,
161
161
  merchantIdentifier: merchantIdentifier,
162
162
  merchantId: merchant.id,
163
- merchantName: merchant.name
163
+ merchantName: merchant.name,
164
+ paymentProcessor: paymentProcessor
164
165
  };
165
166
  return [4, axiosInstance.post('/validatemerchant', body)];
166
167
  case 1:
@@ -58,13 +58,17 @@ export var useApplePay = function (_a) {
58
58
  var buttonProps = _a.buttonProps;
59
59
  var _c = useState(), applePayRequestData = _c[0], setApplePayRequestData = _c[1];
60
60
  var _d = useState(), applePayRequestConfiguration = _d[0], setApplePayRequestConfiguration = _d[1];
61
- var _e = useState(), profileData = _e[0], setProfile = _e[1];
62
- var _f = useState(false), disabled = _f[0], setDisabled = _f[1];
63
- var _g = useState(false), initialLoading = _g[0], setInitialLoading = _g[1];
64
- var _h = useState(false), error = _h[0], setError = _h[1];
65
- var _j = useState(false), success = _j[0], setSuccess = _j[1];
66
- var _k = useState(false), loading = _k[0], setLoading = _k[1];
67
- var _l = useState(false), isRounded = _l[0], setIsRounded = _l[1];
61
+ var _e = useState(), paymentMethodIdentifier = _e[0], setPaymentMethodIdentifier = _e[1];
62
+ var _f = useState(), profileData = _f[0], setProfile = _f[1];
63
+ var _g = useState(false), disabled = _g[0], setDisabled = _g[1];
64
+ var _h = useState(false), initialLoading = _h[0], setInitialLoading = _h[1];
65
+ var _j = useState(false), error = _j[0], setError = _j[1];
66
+ var _k = useState(false), success = _k[0], setSuccess = _k[1];
67
+ var _l = useState(false), loading = _l[0], setLoading = _l[1];
68
+ var _m = useState(false), isRounded = _m[0], setIsRounded = _m[1];
69
+ var paymentProcessor = useMemo(function () {
70
+ return (paymentMethodIdentifier !== null && paymentMethodIdentifier !== void 0 ? paymentMethodIdentifier : '').toLowerCase().includes('knet') ? 'knet' : 'tap';
71
+ }, [paymentMethodIdentifier]);
68
72
  var mappedProps = __assign(__assign({}, buttonProps), { interface: mapingInterface(buttonProps.interface) });
69
73
  var interfaceObj = mappedProps.interface, merchant = mappedProps.merchant, customer = mappedProps.customer, acceptance = mappedProps.acceptance, scope = mappedProps.scope, debug = mappedProps.debug, onError = mappedProps.onError, onSuccess = mappedProps.onSuccess, onCancel = mappedProps.onCancel, onReady = mappedProps.onReady, metaData = mappedProps.metaData, headers = mappedProps.headers, operator = mappedProps.operator, order = mappedProps.order, onOrderCreated = mappedProps.onOrderCreated, transaction = mappedProps.transaction, post = mappedProps.post, redirect = mappedProps.redirect;
70
74
  var isIframeIntegration = buttonProps.integration === 'iframe';
@@ -92,7 +96,7 @@ export var useApplePay = function (_a) {
92
96
  return getApplePayPaymentMethod(profileData.payment_options.payment_methods || []);
93
97
  }, [profileData]);
94
98
  var initialize = function (metaData) { return __awaiter(void 0, void 0, void 0, function () {
95
- var merchantProfile, payment_options, headers_1, data, err_1;
99
+ var merchantProfile, payment_options, headers_1, data, applePayPreparedData, err_1;
96
100
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
97
101
  return __generator(this, function (_o) {
98
102
  switch (_o.label) {
@@ -158,7 +162,9 @@ export var useApplePay = function (_a) {
158
162
  if (debug)
159
163
  console.log('merchant configuration: ', data);
160
164
  setProfile(data);
161
- setApplePayRequestData(prepareApplePayRequest(__assign(__assign({}, data), { order: order, acceptance: acceptance, customer: customer })));
165
+ applePayPreparedData = prepareApplePayRequest(__assign(__assign({}, data), { order: order, acceptance: acceptance, customer: customer }));
166
+ setApplePayRequestData(applePayPreparedData.applePaySessionRequest);
167
+ setPaymentMethodIdentifier(applePayPreparedData.paymentMethod.identifier);
162
168
  onOrderCreated === null || onOrderCreated === void 0 ? void 0 : onOrderCreated((_l = (_k = data.payment_options) === null || _k === void 0 ? void 0 : _k.order) === null || _l === void 0 ? void 0 : _l.id);
163
169
  setApplePayRequestConfiguration({
164
170
  BASE_URL: MW_BASE_URL,
@@ -218,7 +224,7 @@ export var useApplePay = function (_a) {
218
224
  if (debug) {
219
225
  console.info("creating merchant session for merchantData: ".concat(JSON.stringify(profileData.merchant), " and validationURL: ").concat(event.validationURL, " and merchant.domain: ").concat(window.location.hostname));
220
226
  }
221
- return [4, appService.appleSession(__assign(__assign({}, profileData.merchant), { id: merchant.id || profileData.merchant.id }), event.validationURL, window.location.hostname, merchant.identifier || merchant.id || profileData.merchant.id)];
227
+ return [4, appService.appleSession(__assign(__assign({}, profileData.merchant), { id: merchant.id || profileData.merchant.id }), event.validationURL, window.location.hostname, merchant.identifier || merchant.id || profileData.merchant.id, paymentProcessor)];
222
228
  case 2:
223
229
  merchantSession = _a.sent();
224
230
  if (debug)
@@ -384,12 +390,19 @@ export var useApplePay = function (_a) {
384
390
  var handleClick = useCallback(function () {
385
391
  var _a, _b;
386
392
  if (isIframeIntegration) {
387
- (_a = buttonProps.onClick) === null || _a === void 0 ? void 0 : _a.call(buttonProps, __assign(__assign({}, applePayRequestConfiguration), { applePayRequestData: applePayRequestData }));
393
+ (_a = buttonProps.onClick) === null || _a === void 0 ? void 0 : _a.call(buttonProps, __assign(__assign({}, applePayRequestConfiguration), { applePayRequestData: applePayRequestData, paymentProcessor: paymentProcessor }));
388
394
  return;
389
395
  }
390
396
  onApplePayButtonClicked();
391
397
  (_b = buttonProps.onClick) === null || _b === void 0 ? void 0 : _b.call(buttonProps);
392
- }, [applePayRequestConfiguration, applePayRequestData, buttonProps, isIframeIntegration, onApplePayButtonClicked]);
398
+ }, [
399
+ applePayRequestConfiguration,
400
+ applePayRequestData,
401
+ buttonProps,
402
+ isIframeIntegration,
403
+ onApplePayButtonClicked,
404
+ paymentProcessor
405
+ ]);
393
406
  useEffect(function () {
394
407
  initialize(metaData);
395
408
  }, []);
@@ -7,5 +7,8 @@ export declare const getApplePayRequest: ({ order, customer, supportedNetworks,
7
7
  countryCode: string;
8
8
  name: string;
9
9
  }) => ApplePayRequestData;
10
- export declare const prepareApplePayRequest: ({ payment_options, merchant, order, customer, acceptance }: Pick<MetaData, 'merchant' | 'payment_options'> & Pick<ApplePayButtonProps, 'order' | 'customer' | 'acceptance'>) => ApplePayRequestData;
10
+ export declare const prepareApplePayRequest: ({ payment_options, merchant, order, customer, acceptance }: Pick<MetaData, 'merchant' | 'payment_options'> & Pick<ApplePayButtonProps, 'order' | 'customer' | 'acceptance'>) => {
11
+ applePaySessionRequest: ApplePayRequestData;
12
+ paymentMethod: PaymentMethod;
13
+ };
11
14
  export declare const shallRenderApplePay: () => boolean;
@@ -57,7 +57,7 @@ export var prepareApplePayRequest = function (_a) {
57
57
  merchantCapabilities: getMerchantCapabilities(acceptance === null || acceptance === void 0 ? void 0 : acceptance.supportedFundSource),
58
58
  name: merchant.name
59
59
  });
60
- return request;
60
+ return { applePaySessionRequest: request, paymentMethod: paymentMethod };
61
61
  };
62
62
  export var shallRenderApplePay = function () {
63
63
  var https = window.location.protocol === 'https:';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tap-payments/apple-pay-button",
3
- "version": "0.0.69-development",
3
+ "version": "0.0.71-development",
4
4
  "description": "Apple Pay Button React Component",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.js",