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