@tap-payments/connect 2.7.7-test → 2.8.0-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.
- package/README.md +3 -1
- package/build/@types/config.d.ts +10 -0
- package/build/@types/index.d.ts +3 -1
- package/build/constants/index.d.ts +1 -1
- package/build/constants/index.js +1 -1
- package/build/features/Connect/Connect.d.ts +1 -1
- package/build/features/Connect/ConnectAuth.d.ts +1 -1
- package/build/features/Connect/ConnectBank.d.ts +2 -2
- package/build/features/Connect/ConnectBank.js +4 -1
- package/build/features/Connect/ConnectBoard.d.ts +2 -2
- package/build/features/Connect/ConnectBoard.js +3 -1
- package/build/features/Connect/ConnectBrand.d.ts +2 -2
- package/build/features/Connect/ConnectBrand.js +4 -1
- package/build/features/Connect/ConnectEntity.d.ts +2 -2
- package/build/features/Connect/ConnectEntity.js +4 -1
- package/build/features/Connect/ConnectIndividual.d.ts +2 -2
- package/build/features/Connect/ConnectIndividual.js +4 -1
- package/build/features/Connect/ConnectPassword.d.ts +2 -2
- package/build/features/Connect/ConnectPassword.js +4 -1
- package/build/features/Connect/ConnectTax.d.ts +2 -2
- package/build/features/Connect/ConnectTax.js +4 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -85,7 +85,7 @@ const ConnectComponent = () => {
|
|
|
85
85
|
content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no,shrink-to-fit=no"
|
|
86
86
|
/>
|
|
87
87
|
<title>Auth-JsConnect</title>
|
|
88
|
-
<script src="https://tap-sdks.b-cdn.net/connect/build-2.
|
|
88
|
+
<script src="https://tap-sdks.b-cdn.net/connect/build-2.8.0-test/main.js"></script>
|
|
89
89
|
</head>
|
|
90
90
|
<body>
|
|
91
91
|
<div id="root"></div>
|
|
@@ -157,6 +157,7 @@ const ConnectComponent = () => {
|
|
|
157
157
|
| hideMerchantLogo `optional` | `boolean` | Used to hide the **auth** merchant logo and it can be used only for auth kit |
|
|
158
158
|
| loaderColor `optional` | `string` | Used to change loader color and it can be used only for board kit |
|
|
159
159
|
| boardMaturity `optional` | `boolean` | Decide the board maturity |
|
|
160
|
+
| settingData `optional` | `boolean` | This is to get settings information. It is used board kit and other kits open from board |
|
|
160
161
|
| postURL `optional` | `string` | The POST Method URL used to push te data from our server to the merchant server and |
|
|
161
162
|
| | | it's required only if `mature` is `false` |
|
|
162
163
|
| redirectUrl `optional` | `string` | This redirect url after verify authentication go to merchant website |
|
|
@@ -168,3 +169,4 @@ const ConnectComponent = () => {
|
|
|
168
169
|
| onError `optional` | `function` | Callback function to handle the error response, it will run if the user face any error |
|
|
169
170
|
| onClose `optional` | `function` | Callback function to called when `TapConnect` get close |
|
|
170
171
|
| onBoardCompleted `optional` | `function` | Callback function to called when you complete all flows |
|
|
172
|
+
| onSettingFetched `optional` | `function` | Callback function to called after fetch settings information. It is used board kit and other kits open from board |
|
package/build/@types/config.d.ts
CHANGED
|
@@ -32,4 +32,14 @@ interface Lead {
|
|
|
32
32
|
interface Operator {
|
|
33
33
|
public_key: string;
|
|
34
34
|
}
|
|
35
|
+
type RecordType = Record<string, any>;
|
|
36
|
+
export interface SettingAsyncData {
|
|
37
|
+
fingerPrint: RecordType;
|
|
38
|
+
locale: RecordType;
|
|
39
|
+
country_list: RecordType;
|
|
40
|
+
ip_info: RecordType;
|
|
41
|
+
merchant: RecordType;
|
|
42
|
+
operator: RecordType;
|
|
43
|
+
config: RecordType;
|
|
44
|
+
}
|
|
35
45
|
export {};
|
package/build/@types/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Language } from '../constants';
|
|
2
|
-
import { ConfigInfo } from './config';
|
|
2
|
+
import { ConfigInfo, SettingAsyncData } from './config';
|
|
3
3
|
export interface ConnectProps {
|
|
4
4
|
elementId: string;
|
|
5
5
|
publicKey: string;
|
|
@@ -23,12 +23,14 @@ export interface ConnectProps {
|
|
|
23
23
|
postURL?: string;
|
|
24
24
|
redirectUrl?: string;
|
|
25
25
|
data?: Array<string>;
|
|
26
|
+
settingData?: SettingAsyncData;
|
|
26
27
|
onError?: (err: Error) => void;
|
|
27
28
|
onReady?: () => void;
|
|
28
29
|
onClose?: () => void;
|
|
29
30
|
onCreated?: (res: object) => void;
|
|
30
31
|
onSuccess?: (res: object) => void;
|
|
31
32
|
onBoardCompleted?: () => void;
|
|
33
|
+
onSettingFetched?: (data: SettingAsyncData) => void;
|
|
32
34
|
}
|
|
33
35
|
export interface OriginalConnectProps {
|
|
34
36
|
publicKey: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const CDN_LIBRARY_BASE_URL = "https://auth-jsconnect.b-cdn.net/build-2.
|
|
1
|
+
export declare const CDN_LIBRARY_BASE_URL = "https://auth-jsconnect.b-cdn.net/build-2.8.0-test/";
|
|
2
2
|
export declare const Maturity: {
|
|
3
3
|
readonly FULL: "full";
|
|
4
4
|
readonly EXPRESS: "express";
|
package/build/constants/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { ConnectProps as ConnectAttrs } from '../../@types';
|
|
3
3
|
export type ConnectProps = Omit<ConnectAttrs, 'elementId'>;
|
|
4
|
-
export declare const TapConnect: React.MemoExoticComponent<(props: ConnectAttrs) =>
|
|
4
|
+
export declare const TapConnect: React.MemoExoticComponent<(props: ConnectAttrs) => JSX.Element>;
|
|
5
5
|
export declare const renderTapConnect: (props: ConnectProps, elementId: string) => Promise<any>;
|
|
@@ -3,5 +3,5 @@ import { ConnectProps as ConnectAttrs } from '../../@types';
|
|
|
3
3
|
export type ConnectAuthProps = Pick<ConnectAttrs, 'open' | 'domain' | 'publicKey' | 'redirectUrl' | 'data' | 'postURL' | 'lead' | 'country' | 'language' | 'onSuccess' | 'onError' | 'onReady' | 'onClose' | 'hideOverlay' | 'hideMerchantLogo' | 'hideLoaderOverlay' | 'openAnimationDirection' | 'closeAnimationDirection'>;
|
|
4
4
|
export declare const TapConnectAuth: React.MemoExoticComponent<(props: ConnectAuthProps & {
|
|
5
5
|
id?: string;
|
|
6
|
-
}) =>
|
|
6
|
+
}) => JSX.Element>;
|
|
7
7
|
export declare const renderTapConnectAuth: (props: ConnectAuthProps, elementId: string) => Promise<any>;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { ConnectProps as ConnectAttrs } from '../../@types';
|
|
3
|
-
type BankProps = Pick<ConnectAttrs, 'open' | 'mode' | 'scope' | 'domain' | 'publicKey' | 'postURL' | 'country' | 'language' | 'onSuccess' | 'onError' | 'onReady' | 'onClose' | 'loaderColor'>;
|
|
3
|
+
type BankProps = Pick<ConnectAttrs, 'open' | 'mode' | 'scope' | 'domain' | 'board' | 'publicKey' | 'postURL' | 'country' | 'language' | 'onSuccess' | 'onError' | 'onReady' | 'onClose' | 'loaderColor' | 'settingData' | 'onSettingFetched'>;
|
|
4
4
|
export type TapBankProps = BankProps & {
|
|
5
5
|
verifyToken: string;
|
|
6
6
|
onBoardButtonClick: (data: Record<string, string>) => void;
|
|
7
7
|
};
|
|
8
8
|
export declare const TapBank: React.MemoExoticComponent<(props: TapBankProps & {
|
|
9
9
|
id?: string;
|
|
10
|
-
}) =>
|
|
10
|
+
}) => JSX.Element>;
|
|
11
11
|
export declare const renderTapBank: (props: TapBankProps, elementId: string) => Promise<any>;
|
|
12
12
|
export {};
|
|
@@ -70,6 +70,7 @@ var Bank = function (props) {
|
|
|
70
70
|
mode: props.mode,
|
|
71
71
|
scope: props.scope,
|
|
72
72
|
merchantDomain: props.domain,
|
|
73
|
+
showBoard: props.board,
|
|
73
74
|
publicKey: props.publicKey,
|
|
74
75
|
postURL: props.postURL,
|
|
75
76
|
appInfo: {
|
|
@@ -83,7 +84,9 @@ var Bank = function (props) {
|
|
|
83
84
|
onClose: props.onClose,
|
|
84
85
|
loaderColor: props.loaderColor,
|
|
85
86
|
verifyToken: props.verifyToken,
|
|
86
|
-
onBoardButtonClick: props.onBoardButtonClick
|
|
87
|
+
onBoardButtonClick: props.onBoardButtonClick,
|
|
88
|
+
settingData: props.settingData,
|
|
89
|
+
onSettingFetched: props.onSettingFetched
|
|
87
90
|
}, (_a = props.id) !== null && _a !== void 0 ? _a : 'tap-connect-bank-lib-id').unmount;
|
|
88
91
|
return function () {
|
|
89
92
|
unmount();
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { ConnectProps as ConnectAttrs } from '../../@types';
|
|
3
|
-
export type BoardProps = Pick<ConnectAttrs, 'open' | 'mode' | 'scope' | 'domain' | 'publicKey' | 'postURL' | 'country' | 'language' | 'onSuccess' | 'onError' | 'onReady' | 'onClose' | 'loaderColor' | 'boardId'>;
|
|
3
|
+
export type BoardProps = Pick<ConnectAttrs, 'open' | 'mode' | 'scope' | 'domain' | 'publicKey' | 'postURL' | 'country' | 'language' | 'onSuccess' | 'onError' | 'onReady' | 'onClose' | 'loaderColor' | 'boardId' | 'settingData' | 'onSettingFetched'>;
|
|
4
4
|
export type TapBoardProps = BoardProps & {
|
|
5
5
|
onBoardButtonClick: (data: Record<string, string>) => void;
|
|
6
6
|
};
|
|
7
7
|
export declare const TapBoard: React.MemoExoticComponent<(props: TapBoardProps & {
|
|
8
8
|
id?: string;
|
|
9
|
-
}) =>
|
|
9
|
+
}) => JSX.Element>;
|
|
10
10
|
export declare const renderTapBoard: (props: TapBoardProps, elementId: string) => Promise<any>;
|
|
@@ -83,7 +83,9 @@ var Board = function (props) {
|
|
|
83
83
|
onClose: props.onClose,
|
|
84
84
|
loaderColor: props.loaderColor,
|
|
85
85
|
boardId: props.boardId,
|
|
86
|
-
onBoardButtonClick: props.onBoardButtonClick
|
|
86
|
+
onBoardButtonClick: props.onBoardButtonClick,
|
|
87
|
+
settingData: props.settingData,
|
|
88
|
+
onSettingFetched: props.onSettingFetched
|
|
87
89
|
}, (_a = props.id) !== null && _a !== void 0 ? _a : 'tap-connect-board-lib-id').unmount;
|
|
88
90
|
return function () {
|
|
89
91
|
unmount();
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { ConnectProps as ConnectAttrs } from '../../@types';
|
|
3
|
-
type BrandProps = Pick<ConnectAttrs, 'open' | 'mode' | 'scope' | 'domain' | 'publicKey' | 'postURL' | 'country' | 'language' | 'onSuccess' | 'onError' | 'onReady' | 'onClose' | 'loaderColor'>;
|
|
3
|
+
type BrandProps = Pick<ConnectAttrs, 'open' | 'mode' | 'scope' | 'domain' | 'board' | 'publicKey' | 'postURL' | 'country' | 'language' | 'onSuccess' | 'onError' | 'onReady' | 'onClose' | 'loaderColor' | 'settingData' | 'onSettingFetched'>;
|
|
4
4
|
export type TapBrandProps = BrandProps & {
|
|
5
5
|
verifyToken: string;
|
|
6
6
|
onBoardButtonClick: (data: Record<string, string>) => void;
|
|
7
7
|
};
|
|
8
8
|
export declare const TapBrand: React.MemoExoticComponent<(props: TapBrandProps & {
|
|
9
9
|
id?: string;
|
|
10
|
-
}) =>
|
|
10
|
+
}) => JSX.Element>;
|
|
11
11
|
export declare const renderTapBrand: (props: TapBrandProps, elementId: string) => Promise<any>;
|
|
12
12
|
export {};
|
|
@@ -70,6 +70,7 @@ var Brand = function (props) {
|
|
|
70
70
|
mode: props.mode,
|
|
71
71
|
scope: props.scope,
|
|
72
72
|
merchantDomain: props.domain,
|
|
73
|
+
showBoard: props.board,
|
|
73
74
|
publicKey: props.publicKey,
|
|
74
75
|
postURL: props.postURL,
|
|
75
76
|
appInfo: {
|
|
@@ -83,7 +84,9 @@ var Brand = function (props) {
|
|
|
83
84
|
onClose: props.onClose,
|
|
84
85
|
loaderColor: props.loaderColor,
|
|
85
86
|
verifyToken: props.verifyToken,
|
|
86
|
-
onBoardButtonClick: props.onBoardButtonClick
|
|
87
|
+
onBoardButtonClick: props.onBoardButtonClick,
|
|
88
|
+
settingData: props.settingData,
|
|
89
|
+
onSettingFetched: props.onSettingFetched
|
|
87
90
|
}, (_a = props.id) !== null && _a !== void 0 ? _a : 'tap-connect-brand-lib-id').unmount;
|
|
88
91
|
return function () {
|
|
89
92
|
unmount();
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { ConnectProps as ConnectAttrs } from '../../@types';
|
|
3
|
-
type EntityProps = Pick<ConnectAttrs, 'open' | 'mode' | 'scope' | 'domain' | 'publicKey' | 'postURL' | 'country' | 'language' | 'onSuccess' | 'onError' | 'onReady' | 'onClose' | 'loaderColor'>;
|
|
3
|
+
type EntityProps = Pick<ConnectAttrs, 'open' | 'mode' | 'scope' | 'domain' | 'board' | 'publicKey' | 'postURL' | 'country' | 'language' | 'onSuccess' | 'onError' | 'onReady' | 'onClose' | 'loaderColor' | 'settingData' | 'onSettingFetched'>;
|
|
4
4
|
export type TapEntityProps = EntityProps & {
|
|
5
5
|
verifyToken: string;
|
|
6
6
|
onBoardButtonClick: (data: Record<string, string>) => void;
|
|
7
7
|
};
|
|
8
8
|
export declare const TapEntity: React.MemoExoticComponent<(props: TapEntityProps & {
|
|
9
9
|
id?: string;
|
|
10
|
-
}) =>
|
|
10
|
+
}) => JSX.Element>;
|
|
11
11
|
export declare const renderTapEntity: (props: TapEntityProps, elementId: string) => Promise<any>;
|
|
12
12
|
export {};
|
|
@@ -70,6 +70,7 @@ var Entity = function (props) {
|
|
|
70
70
|
mode: props.mode,
|
|
71
71
|
scope: props.scope,
|
|
72
72
|
merchantDomain: props.domain,
|
|
73
|
+
showBoard: props.board,
|
|
73
74
|
publicKey: props.publicKey,
|
|
74
75
|
postURL: props.postURL,
|
|
75
76
|
appInfo: {
|
|
@@ -83,7 +84,9 @@ var Entity = function (props) {
|
|
|
83
84
|
onClose: props.onClose,
|
|
84
85
|
loaderColor: props.loaderColor,
|
|
85
86
|
verifyToken: props.verifyToken,
|
|
86
|
-
onBoardButtonClick: props.onBoardButtonClick
|
|
87
|
+
onBoardButtonClick: props.onBoardButtonClick,
|
|
88
|
+
settingData: props.settingData,
|
|
89
|
+
onSettingFetched: props.onSettingFetched
|
|
87
90
|
}, (_a = props.id) !== null && _a !== void 0 ? _a : 'tap-connect-entity-lib-id').unmount;
|
|
88
91
|
return function () {
|
|
89
92
|
unmount();
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { ConnectProps as ConnectAttrs } from '../../@types';
|
|
3
|
-
type IndividualProps = Pick<ConnectAttrs, 'open' | 'mode' | 'scope' | 'domain' | 'publicKey' | 'postURL' | 'country' | 'language' | 'onSuccess' | 'onError' | 'onReady' | 'onClose' | 'loaderColor'>;
|
|
3
|
+
type IndividualProps = Pick<ConnectAttrs, 'open' | 'mode' | 'scope' | 'domain' | 'board' | 'publicKey' | 'postURL' | 'country' | 'language' | 'onSuccess' | 'onError' | 'onReady' | 'onClose' | 'loaderColor' | 'settingData' | 'onSettingFetched'>;
|
|
4
4
|
export type TapIndividualProps = IndividualProps & {
|
|
5
5
|
verifyToken: string;
|
|
6
6
|
onBoardButtonClick: (data: Record<string, string>) => void;
|
|
7
7
|
};
|
|
8
8
|
export declare const TapIndividual: React.MemoExoticComponent<(props: TapIndividualProps & {
|
|
9
9
|
id?: string;
|
|
10
|
-
}) =>
|
|
10
|
+
}) => JSX.Element>;
|
|
11
11
|
export declare const renderTapIndividual: (props: TapIndividualProps, elementId: string) => Promise<any>;
|
|
12
12
|
export {};
|
|
@@ -70,6 +70,7 @@ var Individual = function (props) {
|
|
|
70
70
|
mode: props.mode,
|
|
71
71
|
scope: props.scope,
|
|
72
72
|
merchantDomain: props.domain,
|
|
73
|
+
showBoard: props.board,
|
|
73
74
|
publicKey: props.publicKey,
|
|
74
75
|
postURL: props.postURL,
|
|
75
76
|
appInfo: {
|
|
@@ -83,7 +84,9 @@ var Individual = function (props) {
|
|
|
83
84
|
onClose: props.onClose,
|
|
84
85
|
loaderColor: props.loaderColor,
|
|
85
86
|
verifyToken: props.verifyToken,
|
|
86
|
-
onBoardButtonClick: props.onBoardButtonClick
|
|
87
|
+
onBoardButtonClick: props.onBoardButtonClick,
|
|
88
|
+
settingData: props.settingData,
|
|
89
|
+
onSettingFetched: props.onSettingFetched
|
|
87
90
|
}, (_a = props.id) !== null && _a !== void 0 ? _a : 'tap-connect-individual-lib-id').unmount;
|
|
88
91
|
return function () {
|
|
89
92
|
unmount();
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { ConnectProps as ConnectAttrs } from '../../@types';
|
|
3
|
-
type PasswordProps = Pick<ConnectAttrs, 'open' | 'mode' | 'scope' | 'domain' | 'publicKey' | 'postURL' | 'country' | 'language' | 'onSuccess' | 'onError' | 'onReady' | 'onClose' | 'loaderColor'>;
|
|
3
|
+
type PasswordProps = Pick<ConnectAttrs, 'open' | 'mode' | 'scope' | 'domain' | 'board' | 'publicKey' | 'postURL' | 'country' | 'language' | 'onSuccess' | 'onError' | 'onReady' | 'onClose' | 'loaderColor' | 'settingData' | 'onSettingFetched'>;
|
|
4
4
|
export type TapPasswordProps = PasswordProps & {
|
|
5
5
|
verifyToken: string;
|
|
6
6
|
onBoardButtonClick: (data: Record<string, string>) => void;
|
|
7
7
|
};
|
|
8
8
|
export declare const TapPassword: React.MemoExoticComponent<(props: TapPasswordProps & {
|
|
9
9
|
id?: string;
|
|
10
|
-
}) =>
|
|
10
|
+
}) => JSX.Element>;
|
|
11
11
|
export declare const renderTapPassword: (props: TapPasswordProps, elementId: string) => Promise<any>;
|
|
12
12
|
export {};
|
|
@@ -70,6 +70,7 @@ var Password = function (props) {
|
|
|
70
70
|
mode: props.mode,
|
|
71
71
|
scope: props.scope,
|
|
72
72
|
merchantDomain: props.domain,
|
|
73
|
+
showBoard: props.board,
|
|
73
74
|
publicKey: props.publicKey,
|
|
74
75
|
postURL: props.postURL,
|
|
75
76
|
appInfo: {
|
|
@@ -83,7 +84,9 @@ var Password = function (props) {
|
|
|
83
84
|
onClose: props.onClose,
|
|
84
85
|
loaderColor: props.loaderColor,
|
|
85
86
|
verifyToken: props.verifyToken,
|
|
86
|
-
onBoardButtonClick: props.onBoardButtonClick
|
|
87
|
+
onBoardButtonClick: props.onBoardButtonClick,
|
|
88
|
+
settingData: props.settingData,
|
|
89
|
+
onSettingFetched: props.onSettingFetched
|
|
87
90
|
}, (_a = props.id) !== null && _a !== void 0 ? _a : 'tap-connect-password-lib-id').unmount;
|
|
88
91
|
return function () {
|
|
89
92
|
unmount();
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { ConnectProps as ConnectAttrs } from '../../@types';
|
|
3
|
-
type TaxProps = Pick<ConnectAttrs, 'open' | 'mode' | 'scope' | 'domain' | 'publicKey' | 'postURL' | 'country' | 'language' | 'onSuccess' | 'onError' | 'onReady' | 'onClose' | 'loaderColor'>;
|
|
3
|
+
type TaxProps = Pick<ConnectAttrs, 'open' | 'mode' | 'scope' | 'domain' | 'board' | 'publicKey' | 'postURL' | 'country' | 'language' | 'onSuccess' | 'onError' | 'onReady' | 'onClose' | 'loaderColor' | 'settingData' | 'onSettingFetched'>;
|
|
4
4
|
export type TapTaxProps = TaxProps & {
|
|
5
5
|
verifyToken: string;
|
|
6
6
|
onBoardButtonClick: (data: Record<string, string>) => void;
|
|
7
7
|
};
|
|
8
8
|
export declare const TapTax: React.MemoExoticComponent<(props: TapTaxProps & {
|
|
9
9
|
id?: string;
|
|
10
|
-
}) =>
|
|
10
|
+
}) => JSX.Element>;
|
|
11
11
|
export declare const renderTapTax: (props: TapTaxProps, elementId: string) => Promise<any>;
|
|
12
12
|
export {};
|
|
@@ -70,6 +70,7 @@ var Tax = function (props) {
|
|
|
70
70
|
mode: props.mode,
|
|
71
71
|
scope: props.scope,
|
|
72
72
|
merchantDomain: props.domain,
|
|
73
|
+
showBoard: props.board,
|
|
73
74
|
publicKey: props.publicKey,
|
|
74
75
|
postURL: props.postURL,
|
|
75
76
|
appInfo: {
|
|
@@ -83,7 +84,9 @@ var Tax = function (props) {
|
|
|
83
84
|
onClose: props.onClose,
|
|
84
85
|
loaderColor: props.loaderColor,
|
|
85
86
|
verifyToken: props.verifyToken,
|
|
86
|
-
onBoardButtonClick: props.onBoardButtonClick
|
|
87
|
+
onBoardButtonClick: props.onBoardButtonClick,
|
|
88
|
+
settingData: props.settingData,
|
|
89
|
+
onSettingFetched: props.onSettingFetched
|
|
87
90
|
}, (_a = props.id) !== null && _a !== void 0 ? _a : 'tap-connect-tax-lib-id').unmount;
|
|
88
91
|
return function () {
|
|
89
92
|
unmount();
|