@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
|
@@ -6,8 +6,9 @@ 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
|
-
flows: any;
|
|
11
12
|
}, verifyLeadTokenProps, {
|
|
12
13
|
state?: unknown;
|
|
13
14
|
dispatch?: import("redux").Dispatch<import("redux").AnyAction> | undefined;
|
|
@@ -30,12 +31,9 @@ export declare const resendOTP: import("@reduxjs/toolkit").AsyncThunk<{
|
|
|
30
31
|
fulfilledMeta?: unknown;
|
|
31
32
|
rejectedMeta?: unknown;
|
|
32
33
|
}>;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
individualType: string;
|
|
37
|
-
};
|
|
38
|
-
export declare const retrieveBoardDetails: import("@reduxjs/toolkit").AsyncThunk<any, RetrieveBoardProps, {
|
|
34
|
+
export declare const retrieveBoardDetails: import("@reduxjs/toolkit").AsyncThunk<{
|
|
35
|
+
data: any;
|
|
36
|
+
}, string, {
|
|
39
37
|
state?: unknown;
|
|
40
38
|
dispatch?: import("redux").Dispatch<import("redux").AnyAction> | undefined;
|
|
41
39
|
extra?: unknown;
|
|
@@ -50,7 +48,6 @@ export declare const verifyPasswordLeadOTP: import("@reduxjs/toolkit").AsyncThun
|
|
|
50
48
|
formData: {
|
|
51
49
|
otp: string;
|
|
52
50
|
};
|
|
53
|
-
flows: any;
|
|
54
51
|
}, OTPFormValues, {
|
|
55
52
|
state?: unknown;
|
|
56
53
|
dispatch?: import("redux").Dispatch<import("redux").AnyAction> | undefined;
|
|
@@ -75,11 +72,15 @@ export declare const createPassword: import("@reduxjs/toolkit").AsyncThunk<{
|
|
|
75
72
|
rejectedMeta?: unknown;
|
|
76
73
|
}>;
|
|
77
74
|
export declare const updateBoardSuccess: import("@reduxjs/toolkit").AsyncThunk<{
|
|
78
|
-
|
|
75
|
+
response: any;
|
|
76
|
+
formData: void;
|
|
77
|
+
data?: undefined;
|
|
79
78
|
flows?: undefined;
|
|
80
79
|
} | {
|
|
81
80
|
data: any;
|
|
82
81
|
flows: any;
|
|
82
|
+
response?: undefined;
|
|
83
|
+
formData?: undefined;
|
|
83
84
|
} | undefined, void, {
|
|
84
85
|
state?: unknown;
|
|
85
86
|
dispatch?: import("redux").Dispatch<import("redux").AnyAction> | undefined;
|
|
@@ -102,23 +103,19 @@ export declare const retrieveBoardStatus: import("@reduxjs/toolkit").AsyncThunk<
|
|
|
102
103
|
fulfilledMeta?: unknown;
|
|
103
104
|
rejectedMeta?: unknown;
|
|
104
105
|
}>;
|
|
105
|
-
|
|
106
|
+
export declare const verifyOperationToken: import("@reduxjs/toolkit").AsyncThunk<{
|
|
107
|
+
data: any;
|
|
106
108
|
token: string;
|
|
107
109
|
boardId: string;
|
|
108
110
|
boardInfoId: string;
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
recipient?: {
|
|
114
|
-
id: string;
|
|
115
|
-
type: string;
|
|
116
|
-
} | undefined;
|
|
117
|
-
data: any;
|
|
111
|
+
individualData: any;
|
|
112
|
+
boardResponse: any;
|
|
113
|
+
flows: any;
|
|
114
|
+
}, {
|
|
118
115
|
token: string;
|
|
119
116
|
boardId: string;
|
|
120
117
|
boardInfoId: string;
|
|
121
|
-
},
|
|
118
|
+
}, {
|
|
122
119
|
state?: unknown;
|
|
123
120
|
dispatch?: import("redux").Dispatch<import("redux").AnyAction> | undefined;
|
|
124
121
|
extra?: unknown;
|
|
@@ -162,7 +159,14 @@ export declare const resetPassword: import("@reduxjs/toolkit").AsyncThunk<{
|
|
|
162
159
|
}>;
|
|
163
160
|
export declare const retrieveBoardResetPasswordSuccess: import("@reduxjs/toolkit").AsyncThunk<{
|
|
164
161
|
id: any;
|
|
165
|
-
|
|
162
|
+
response: {
|
|
163
|
+
flows?: undefined;
|
|
164
|
+
};
|
|
165
|
+
} | {
|
|
166
|
+
id: any;
|
|
167
|
+
response: {
|
|
168
|
+
flows: any;
|
|
169
|
+
};
|
|
166
170
|
}, void, {
|
|
167
171
|
state?: unknown;
|
|
168
172
|
dispatch?: import("redux").Dispatch<import("redux").AnyAction> | undefined;
|