@tap-payments/auth-jsconnect 2.8.61-beta → 2.8.61-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.
- package/build/@types/redux.d.ts +1 -0
- package/build/api/entity.d.ts +2 -2
- package/build/api/entity.js +12 -4
- package/build/api/index.d.ts +2 -2
- package/build/components/Tooltip/Tooltip.js +1 -1
- package/build/constants/api.d.ts +0 -1
- package/build/constants/api.js +0 -2
- package/build/constants/app.d.ts +0 -2
- package/build/constants/app.js +0 -2
- package/build/features/app/bank/bankStore.d.ts +13 -19
- package/build/features/app/bank/bankStore.js +183 -165
- package/build/features/app/board/boardStore.js +16 -10
- package/build/features/app/brand/brandStore.d.ts +16 -31
- package/build/features/app/brand/brandStore.js +243 -239
- package/build/features/app/business/businessStore.js +7 -1
- package/build/features/app/entity/entityStore.d.ts +20 -34
- package/build/features/app/entity/entityStore.js +204 -249
- package/build/features/app/individual/individualStore.d.ts +17 -36
- package/build/features/app/individual/individualStore.js +221 -270
- package/build/features/app/password/passwordStore.d.ts +19 -25
- package/build/features/app/password/passwordStore.js +170 -216
- package/build/features/app/tax/taxStore.d.ts +13 -7
- package/build/features/app/tax/taxStore.js +168 -147
- package/build/features/bank/screens/BankDetails/BankDetails.js +17 -4
- package/build/features/brand/screens/BrandActivities/BrandActivities.js +48 -11
- package/build/features/brand/screens/BrandInfo/BrandInfo.js +22 -4
- package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.js +22 -6
- package/build/features/business/screens/Activities/Activities.js +9 -1
- package/build/features/business/screens/Customers/Customers.js +9 -1
- package/build/features/connect/screens/BusinessCountry/BusinessCountry.js +7 -1
- package/build/features/entity/screens/EntityCapital/EntityCapital.js +33 -9
- package/build/features/entity/screens/EntityName/EntityName.js +31 -14
- package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.js +43 -10
- package/build/features/individual/screens/IndividualList/IndividualList.js +7 -0
- package/build/features/individual/screens/IndividualList/UserList.js +3 -3
- package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.js +73 -18
- package/build/features/password/Password.js +1 -1
- package/build/features/shared/Button/FlowsButtons.js +7 -1
- package/build/features/signIn/SignIn.js +10 -2
- package/build/features/tax/screens/TaxDetails/TaxDetails.js +7 -2
- package/build/hooks/index.d.ts +1 -0
- package/build/hooks/index.js +1 -0
- package/build/hooks/useFormDirtyCheck.d.ts +10 -0
- package/build/hooks/useFormDirtyCheck.js +66 -0
- package/build/utils/common.js +4 -4
- package/package.json +2 -2
|
@@ -8,21 +8,8 @@ interface VerifyLeadTokenProps {
|
|
|
8
8
|
}
|
|
9
9
|
export declare const verifyToken: import("@reduxjs/toolkit").AsyncThunk<{
|
|
10
10
|
data: any;
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
bank_account: any;
|
|
14
|
-
entity: any;
|
|
15
|
-
merchant: any;
|
|
16
|
-
merchant_id: any;
|
|
17
|
-
name: any;
|
|
18
|
-
contact: any;
|
|
19
|
-
individuals: any;
|
|
20
|
-
countries: import("../../../@types").CountryCode[];
|
|
21
|
-
countryCode: any;
|
|
22
|
-
notification: any;
|
|
23
|
-
business: any;
|
|
24
|
-
flows: any;
|
|
25
|
-
};
|
|
11
|
+
countries: import("../../../@types").CountryCode[];
|
|
12
|
+
countryCode: any;
|
|
26
13
|
token: string;
|
|
27
14
|
userList: User[];
|
|
28
15
|
}, VerifyLeadTokenProps, {}>;
|
|
@@ -70,26 +57,18 @@ export declare const retrieveDataList: import("@reduxjs/toolkit").AsyncThunk<{
|
|
|
70
57
|
export declare const retrieveBoardStatus: import("@reduxjs/toolkit").AsyncThunk<{
|
|
71
58
|
flows: any;
|
|
72
59
|
}, void, {}>;
|
|
60
|
+
declare type RetrieveBoardProps = {
|
|
61
|
+
boardId: string;
|
|
62
|
+
individualId?: string;
|
|
63
|
+
individualType?: string;
|
|
64
|
+
};
|
|
73
65
|
export declare const retrieveBoardDetails: import("@reduxjs/toolkit").AsyncThunk<{
|
|
74
66
|
data: any;
|
|
75
|
-
},
|
|
67
|
+
}, RetrieveBoardProps, {}>;
|
|
76
68
|
export declare const verifyLeadOTP: import("@reduxjs/toolkit").AsyncThunk<{
|
|
77
69
|
data: any;
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
bank_account: any;
|
|
81
|
-
entity: any;
|
|
82
|
-
merchant: any;
|
|
83
|
-
merchant_id: any;
|
|
84
|
-
name: any;
|
|
85
|
-
contact: any;
|
|
86
|
-
individuals: any;
|
|
87
|
-
countries: import("../../../@types").CountryCode[];
|
|
88
|
-
countryCode: any;
|
|
89
|
-
notification: any;
|
|
90
|
-
business: any;
|
|
91
|
-
flows: any;
|
|
92
|
-
};
|
|
70
|
+
countries: import("../../../@types").CountryCode[];
|
|
71
|
+
countryCode: any;
|
|
93
72
|
formData: {
|
|
94
73
|
otp: string;
|
|
95
74
|
};
|
|
@@ -106,7 +85,7 @@ export declare const updateIndividualPersonalInfo: import("@reduxjs/toolkit").As
|
|
|
106
85
|
export declare const updateIndividualInfo: import("@reduxjs/toolkit").AsyncThunk<{
|
|
107
86
|
data: any;
|
|
108
87
|
formData: IndividualExtraFormValues;
|
|
109
|
-
individualData:
|
|
88
|
+
individualData: any;
|
|
110
89
|
userList: any;
|
|
111
90
|
isKWOrSACountry: boolean;
|
|
112
91
|
}, AsyncThunkParams<IndividualExtraFormValues>, {}>;
|
|
@@ -121,11 +100,13 @@ export declare const checkEmailAvailability: import("@reduxjs/toolkit").AsyncThu
|
|
|
121
100
|
export declare const updateBoardSuccess: import("@reduxjs/toolkit").AsyncThunk<{
|
|
122
101
|
response: any;
|
|
123
102
|
formData: void;
|
|
124
|
-
|
|
103
|
+
data?: undefined;
|
|
104
|
+
flows?: undefined;
|
|
125
105
|
} | {
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
106
|
+
data: any;
|
|
107
|
+
flows: any;
|
|
108
|
+
response?: undefined;
|
|
109
|
+
formData?: undefined;
|
|
129
110
|
} | undefined, void, {}>;
|
|
130
111
|
export declare const onCloseCompleteIndividual: import("@reduxjs/toolkit").AsyncThunk<void, void, {}>;
|
|
131
112
|
declare type VerifyData = {
|