@tap-payments/auth-jsconnect 2.8.62-beta → 2.8.62-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, {
|
|
@@ -160,9 +147,14 @@ export declare const retrieveBoardStatus: import("@reduxjs/toolkit").AsyncThunk<
|
|
|
160
147
|
fulfilledMeta?: unknown;
|
|
161
148
|
rejectedMeta?: unknown;
|
|
162
149
|
}>;
|
|
150
|
+
type RetrieveBoardProps = {
|
|
151
|
+
boardId: string;
|
|
152
|
+
individualId?: string;
|
|
153
|
+
individualType?: string;
|
|
154
|
+
};
|
|
163
155
|
export declare const retrieveBoardDetails: import("@reduxjs/toolkit").AsyncThunk<{
|
|
164
156
|
data: any;
|
|
165
|
-
},
|
|
157
|
+
}, RetrieveBoardProps, {
|
|
166
158
|
state?: unknown;
|
|
167
159
|
dispatch?: import("redux").Dispatch<import("redux").AnyAction> | undefined;
|
|
168
160
|
extra?: unknown;
|
|
@@ -174,21 +166,8 @@ export declare const retrieveBoardDetails: import("@reduxjs/toolkit").AsyncThunk
|
|
|
174
166
|
}>;
|
|
175
167
|
export declare const verifyLeadOTP: import("@reduxjs/toolkit").AsyncThunk<{
|
|
176
168
|
data: any;
|
|
177
|
-
|
|
178
|
-
|
|
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
|
-
};
|
|
169
|
+
countries: import("../../../@types").CountryCode[];
|
|
170
|
+
countryCode: any;
|
|
192
171
|
formData: {
|
|
193
172
|
otp: string;
|
|
194
173
|
};
|
|
@@ -232,7 +211,7 @@ export declare const updateIndividualPersonalInfo: import("@reduxjs/toolkit").As
|
|
|
232
211
|
export declare const updateIndividualInfo: import("@reduxjs/toolkit").AsyncThunk<{
|
|
233
212
|
data: any;
|
|
234
213
|
formData: IndividualExtraFormValues;
|
|
235
|
-
individualData:
|
|
214
|
+
individualData: any;
|
|
236
215
|
userList: any;
|
|
237
216
|
isKWOrSACountry: boolean;
|
|
238
217
|
}, AsyncThunkParams<IndividualExtraFormValues>, {
|
|
@@ -265,11 +244,13 @@ export declare const checkEmailAvailability: import("@reduxjs/toolkit").AsyncThu
|
|
|
265
244
|
export declare const updateBoardSuccess: import("@reduxjs/toolkit").AsyncThunk<{
|
|
266
245
|
response: any;
|
|
267
246
|
formData: void;
|
|
268
|
-
|
|
247
|
+
data?: undefined;
|
|
248
|
+
flows?: undefined;
|
|
269
249
|
} | {
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
250
|
+
data: any;
|
|
251
|
+
flows: any;
|
|
252
|
+
response?: undefined;
|
|
253
|
+
formData?: undefined;
|
|
273
254
|
} | undefined, void, {
|
|
274
255
|
state?: unknown;
|
|
275
256
|
dispatch?: import("redux").Dispatch<import("redux").AnyAction> | undefined;
|