@tap-payments/auth-jsconnect 2.8.63-sandbox → 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/constants/api.d.ts +1 -0
- package/build/constants/api.js +2 -0
- package/build/constants/app.d.ts +1 -0
- package/build/constants/app.js +1 -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 -19
- package/build/features/app/password/passwordStore.js +216 -170
- 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 +3 -3
- 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
|
@@ -6,6 +6,8 @@ interface verifyLeadTokenProps {
|
|
|
6
6
|
}
|
|
7
7
|
export declare const verifyLeadToken: import("@reduxjs/toolkit").AsyncThunk<{
|
|
8
8
|
data: any;
|
|
9
|
+
individualData: any;
|
|
10
|
+
boardResponse: any;
|
|
9
11
|
token: string;
|
|
10
12
|
}, verifyLeadTokenProps, {
|
|
11
13
|
state?: unknown;
|
|
@@ -29,12 +31,9 @@ export declare const resendOTP: import("@reduxjs/toolkit").AsyncThunk<{
|
|
|
29
31
|
fulfilledMeta?: unknown;
|
|
30
32
|
rejectedMeta?: unknown;
|
|
31
33
|
}>;
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
individualType: string;
|
|
36
|
-
};
|
|
37
|
-
export declare const retrieveBoardDetails: import("@reduxjs/toolkit").AsyncThunk<any, RetrieveBoardProps, {
|
|
34
|
+
export declare const retrieveBoardDetails: import("@reduxjs/toolkit").AsyncThunk<{
|
|
35
|
+
data: any;
|
|
36
|
+
}, string, {
|
|
38
37
|
state?: unknown;
|
|
39
38
|
dispatch?: import("redux").Dispatch<import("redux").AnyAction> | undefined;
|
|
40
39
|
extra?: unknown;
|
|
@@ -73,11 +72,15 @@ export declare const createPassword: import("@reduxjs/toolkit").AsyncThunk<{
|
|
|
73
72
|
rejectedMeta?: unknown;
|
|
74
73
|
}>;
|
|
75
74
|
export declare const updateBoardSuccess: import("@reduxjs/toolkit").AsyncThunk<{
|
|
76
|
-
|
|
75
|
+
response: any;
|
|
76
|
+
formData: void;
|
|
77
|
+
data?: undefined;
|
|
77
78
|
flows?: undefined;
|
|
78
79
|
} | {
|
|
79
80
|
data: any;
|
|
80
81
|
flows: any;
|
|
82
|
+
response?: undefined;
|
|
83
|
+
formData?: undefined;
|
|
81
84
|
} | undefined, void, {
|
|
82
85
|
state?: unknown;
|
|
83
86
|
dispatch?: import("redux").Dispatch<import("redux").AnyAction> | undefined;
|
|
@@ -100,23 +103,19 @@ export declare const retrieveBoardStatus: import("@reduxjs/toolkit").AsyncThunk<
|
|
|
100
103
|
fulfilledMeta?: unknown;
|
|
101
104
|
rejectedMeta?: unknown;
|
|
102
105
|
}>;
|
|
103
|
-
|
|
106
|
+
export declare const verifyOperationToken: import("@reduxjs/toolkit").AsyncThunk<{
|
|
107
|
+
data: any;
|
|
104
108
|
token: string;
|
|
105
109
|
boardId: string;
|
|
106
110
|
boardInfoId: string;
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
recipient?: {
|
|
112
|
-
id: string;
|
|
113
|
-
type: string;
|
|
114
|
-
} | undefined;
|
|
115
|
-
data: any;
|
|
111
|
+
individualData: any;
|
|
112
|
+
boardResponse: any;
|
|
113
|
+
flows: any;
|
|
114
|
+
}, {
|
|
116
115
|
token: string;
|
|
117
116
|
boardId: string;
|
|
118
117
|
boardInfoId: string;
|
|
119
|
-
},
|
|
118
|
+
}, {
|
|
120
119
|
state?: unknown;
|
|
121
120
|
dispatch?: import("redux").Dispatch<import("redux").AnyAction> | undefined;
|
|
122
121
|
extra?: unknown;
|
|
@@ -160,7 +159,14 @@ export declare const resetPassword: import("@reduxjs/toolkit").AsyncThunk<{
|
|
|
160
159
|
}>;
|
|
161
160
|
export declare const retrieveBoardResetPasswordSuccess: import("@reduxjs/toolkit").AsyncThunk<{
|
|
162
161
|
id: any;
|
|
163
|
-
|
|
162
|
+
response: {
|
|
163
|
+
flows?: undefined;
|
|
164
|
+
};
|
|
165
|
+
} | {
|
|
166
|
+
id: any;
|
|
167
|
+
response: {
|
|
168
|
+
flows: any;
|
|
169
|
+
};
|
|
164
170
|
}, void, {
|
|
165
171
|
state?: unknown;
|
|
166
172
|
dispatch?: import("redux").Dispatch<import("redux").AnyAction> | undefined;
|