@tap-payments/auth-jsconnect 2.8.63-development → 2.8.64-beta
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 +0 -1
- package/build/api/entity.d.ts +2 -2
- package/build/api/entity.js +4 -12
- package/build/api/index.d.ts +2 -2
- package/build/app/settings.js +2 -3
- package/build/components/Tooltip/Tooltip.js +1 -1
- package/build/constants/api.d.ts +1 -0
- package/build/constants/api.js +2 -0
- package/build/constants/app.d.ts +3 -0
- package/build/constants/app.js +3 -0
- package/build/features/app/bank/bankStore.d.ts +19 -13
- package/build/features/app/bank/bankStore.js +165 -183
- package/build/features/app/board/boardStore.js +10 -16
- package/build/features/app/brand/brandStore.d.ts +31 -16
- package/build/features/app/brand/brandStore.js +239 -243
- package/build/features/app/business/businessStore.js +1 -7
- package/build/features/app/entity/entityStore.d.ts +34 -20
- package/build/features/app/entity/entityStore.js +249 -204
- package/build/features/app/individual/individualStore.d.ts +36 -17
- package/build/features/app/individual/individualStore.js +270 -221
- package/build/features/app/password/passwordStore.d.ts +25 -21
- package/build/features/app/password/passwordStore.js +219 -196
- package/build/features/app/tax/taxStore.d.ts +7 -13
- package/build/features/app/tax/taxStore.js +147 -168
- package/build/features/auth/screens/AuthenticationList/LicenseNumber.js +2 -2
- package/build/features/bank/screens/BankDetails/BankDetails.js +4 -17
- package/build/features/brand/screens/BrandActivities/BrandActivities.js +11 -48
- package/build/features/brand/screens/BrandInfo/BrandInfo.js +4 -22
- package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.js +6 -22
- package/build/features/business/screens/Activities/Activities.js +1 -9
- package/build/features/business/screens/BusinessType/LicenseNumber.js +2 -2
- package/build/features/business/screens/Customers/Customers.js +1 -9
- package/build/features/connect/screens/BusinessCountry/BusinessCountry.js +1 -7
- package/build/features/connectExpress/screens/AuthenticationList/LicenseNumber.js +2 -2
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.js +2 -2
- package/build/features/entity/screens/EntityCapital/EntityCapital.js +9 -33
- package/build/features/entity/screens/EntityName/EntityName.js +14 -31
- package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.js +10 -43
- package/build/features/individual/screens/IndividualList/IndividualList.js +0 -7
- package/build/features/individual/screens/IndividualList/UserList.js +3 -3
- package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.js +18 -73
- package/build/features/password/Password.js +1 -1
- package/build/features/shared/Button/FlowsButtons.js +1 -7
- package/build/features/signIn/SignIn.js +2 -10
- package/build/features/tax/screens/TaxDetails/TaxDetails.js +2 -7
- package/build/hooks/index.d.ts +0 -1
- package/build/hooks/index.js +0 -1
- package/build/utils/common.js +4 -4
- package/build/utils/validation.d.ts +1 -0
- package/build/utils/validation.js +3 -0
- package/package.json +2 -2
- package/build/hooks/useFormDirtyCheck.d.ts +0 -10
- package/build/hooks/useFormDirtyCheck.js +0 -66
|
@@ -8,8 +8,21 @@ interface VerifyLeadTokenProps {
|
|
|
8
8
|
}
|
|
9
9
|
export declare const verifyToken: import("@reduxjs/toolkit").AsyncThunk<{
|
|
10
10
|
data: any;
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
boardResponse: {
|
|
12
|
+
brand: any;
|
|
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
|
+
};
|
|
13
26
|
token: string;
|
|
14
27
|
userList: User[];
|
|
15
28
|
}, VerifyLeadTokenProps, {
|
|
@@ -147,14 +160,9 @@ export declare const retrieveBoardStatus: import("@reduxjs/toolkit").AsyncThunk<
|
|
|
147
160
|
fulfilledMeta?: unknown;
|
|
148
161
|
rejectedMeta?: unknown;
|
|
149
162
|
}>;
|
|
150
|
-
type RetrieveBoardProps = {
|
|
151
|
-
boardId: string;
|
|
152
|
-
individualId?: string;
|
|
153
|
-
individualType?: string;
|
|
154
|
-
};
|
|
155
163
|
export declare const retrieveBoardDetails: import("@reduxjs/toolkit").AsyncThunk<{
|
|
156
164
|
data: any;
|
|
157
|
-
},
|
|
165
|
+
}, string, {
|
|
158
166
|
state?: unknown;
|
|
159
167
|
dispatch?: import("redux").Dispatch<import("redux").AnyAction> | undefined;
|
|
160
168
|
extra?: unknown;
|
|
@@ -166,8 +174,21 @@ export declare const retrieveBoardDetails: import("@reduxjs/toolkit").AsyncThunk
|
|
|
166
174
|
}>;
|
|
167
175
|
export declare const verifyLeadOTP: import("@reduxjs/toolkit").AsyncThunk<{
|
|
168
176
|
data: any;
|
|
169
|
-
|
|
170
|
-
|
|
177
|
+
boardResponse: {
|
|
178
|
+
brand: any;
|
|
179
|
+
bank_account: any;
|
|
180
|
+
entity: any;
|
|
181
|
+
merchant: any;
|
|
182
|
+
merchant_id: any;
|
|
183
|
+
name: any;
|
|
184
|
+
contact: any;
|
|
185
|
+
individuals: any;
|
|
186
|
+
countries: import("../../../@types").CountryCode[];
|
|
187
|
+
countryCode: any;
|
|
188
|
+
notification: any;
|
|
189
|
+
business: any;
|
|
190
|
+
flows: any;
|
|
191
|
+
};
|
|
171
192
|
formData: {
|
|
172
193
|
otp: string;
|
|
173
194
|
};
|
|
@@ -211,7 +232,7 @@ export declare const updateIndividualPersonalInfo: import("@reduxjs/toolkit").As
|
|
|
211
232
|
export declare const updateIndividualInfo: import("@reduxjs/toolkit").AsyncThunk<{
|
|
212
233
|
data: any;
|
|
213
234
|
formData: IndividualExtraFormValues;
|
|
214
|
-
individualData:
|
|
235
|
+
individualData: User;
|
|
215
236
|
userList: any;
|
|
216
237
|
isKWOrSACountry: boolean;
|
|
217
238
|
}, AsyncThunkParams<IndividualExtraFormValues>, {
|
|
@@ -244,13 +265,11 @@ export declare const checkEmailAvailability: import("@reduxjs/toolkit").AsyncThu
|
|
|
244
265
|
export declare const updateBoardSuccess: import("@reduxjs/toolkit").AsyncThunk<{
|
|
245
266
|
response: any;
|
|
246
267
|
formData: void;
|
|
247
|
-
|
|
248
|
-
flows?: undefined;
|
|
268
|
+
individualData?: undefined;
|
|
249
269
|
} | {
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
formData?: undefined;
|
|
270
|
+
response: any;
|
|
271
|
+
formData: void;
|
|
272
|
+
individualData: any;
|
|
254
273
|
} | undefined, void, {
|
|
255
274
|
state?: unknown;
|
|
256
275
|
dispatch?: import("redux").Dispatch<import("redux").AnyAction> | undefined;
|