@tap-payments/auth-jsconnect 2.0.20-test → 2.0.21-test
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/app.d.ts +5 -0
- package/build/api/board.d.ts +1 -0
- package/build/api/board.js +8 -1
- package/build/api/index.d.ts +1 -1
- package/build/api/lead.d.ts +0 -1
- package/build/api/lead.js +0 -5
- package/build/features/app/bank/bankStore.d.ts +4 -2
- package/build/features/app/bank/bankStore.js +47 -62
- package/build/features/app/business/businessStore.d.ts +2 -1
- package/build/features/app/business/businessStore.js +61 -63
- package/build/features/app/individual/individualStore.d.ts +14 -3
- package/build/features/app/individual/individualStore.js +81 -81
- package/build/features/app/password/passwordStore.d.ts +7 -5
- package/build/features/app/password/passwordStore.js +68 -96
- package/build/features/app/tax/taxStore.d.ts +0 -1
- package/build/features/app/tax/taxStore.js +38 -49
- package/build/features/bank/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -2
- package/build/features/business/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -2
- package/build/features/individual/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -2
- package/build/features/password/Password.js +2 -1
- package/build/features/password/screens/Success/Success.js +2 -2
- package/build/features/password/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +3 -2
- package/build/features/tax/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +4 -4
- package/build/features/tax/screens/Verify/Verify.js +1 -1
- package/build/utils/string.d.ts +1 -1
- package/build/utils/string.js +2 -2
- package/package.json +1 -1
|
@@ -1,8 +1,19 @@
|
|
|
1
1
|
import { RootState } from '../../../app/store';
|
|
2
|
-
import { FlowsTypes, IndividualExtraFormValues, OTPFormValues, ResponseData, SharedState } from '../../../@types';
|
|
2
|
+
import { CountryCode, FlowsTypes, IndividualExtraFormValues, OTPFormValues, ResponseData, SharedState } from '../../../@types';
|
|
3
3
|
export declare const verifyLeadToken: import("@reduxjs/toolkit").AsyncThunk<{
|
|
4
4
|
data: any;
|
|
5
|
-
boardResponse:
|
|
5
|
+
boardResponse: {
|
|
6
|
+
user: any;
|
|
7
|
+
brand: any;
|
|
8
|
+
bank_account: any;
|
|
9
|
+
entity: any;
|
|
10
|
+
merchant: any;
|
|
11
|
+
name: any;
|
|
12
|
+
contact: any;
|
|
13
|
+
countries: CountryCode[];
|
|
14
|
+
countryCode: any;
|
|
15
|
+
flows: any;
|
|
16
|
+
};
|
|
6
17
|
token: string;
|
|
7
18
|
}, string, {}>;
|
|
8
19
|
export declare const resendOTP: import("@reduxjs/toolkit").AsyncThunk<{
|
|
@@ -13,7 +24,7 @@ export declare const retrieveDataList: import("@reduxjs/toolkit").AsyncThunk<{
|
|
|
13
24
|
monthlyIncome: any;
|
|
14
25
|
occupation: any;
|
|
15
26
|
}, string, {}>;
|
|
16
|
-
export declare const
|
|
27
|
+
export declare const retrieveBoardDetails: import("@reduxjs/toolkit").AsyncThunk<{
|
|
17
28
|
data: any;
|
|
18
29
|
}, string, {}>;
|
|
19
30
|
export declare const verifyLeadOTP: import("@reduxjs/toolkit").AsyncThunk<{
|
|
@@ -49,13 +49,13 @@ var _a;
|
|
|
49
49
|
import { createAsyncThunk, createSlice } from '@reduxjs/toolkit';
|
|
50
50
|
import API from '../../../api';
|
|
51
51
|
import { FlowsTypes } from '../../../@types';
|
|
52
|
-
import { hasKey } from '../../../utils';
|
|
53
52
|
import { handleCurrentActiveScreen, handleNextScreenStep } from '../../../app/settings';
|
|
54
53
|
import { INDIVIDUAl_STEP_NAMES } from '../../../constants';
|
|
55
54
|
export var verifyLeadToken = createAsyncThunk('individualVerifyLeadToken', function (token, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
56
|
-
var payload, settings, data, boardData,
|
|
57
|
-
|
|
58
|
-
|
|
55
|
+
var payload, settings, data, boardData, countryCode, boardInfoData, countries, board_id, board_info_id, entity, info, hasIndividualCompleted;
|
|
56
|
+
var _a, _b, _c;
|
|
57
|
+
return __generator(this, function (_d) {
|
|
58
|
+
switch (_d.label) {
|
|
59
59
|
case 0:
|
|
60
60
|
payload = {
|
|
61
61
|
service_name: 'tap_email',
|
|
@@ -64,47 +64,51 @@ export var verifyLeadToken = createAsyncThunk('individualVerifyLeadToken', funct
|
|
|
64
64
|
settings = thunkApi.getState().settings;
|
|
65
65
|
return [4, API.leadService.verifyLeadToken(payload)];
|
|
66
66
|
case 1:
|
|
67
|
-
data = (
|
|
67
|
+
data = (_d.sent()).data;
|
|
68
68
|
boardInfoData = undefined;
|
|
69
69
|
countries = settings.data.countries;
|
|
70
|
-
if (!(!(data === null || data === void 0 ? void 0 : data.errors) && !(data === null || data === void 0 ? void 0 : data.mw_error))) return [3,
|
|
71
|
-
return [4, API.boardService.retrieveBoard(data === null || data === void 0 ? void 0 : data.id)];
|
|
72
|
-
case 2:
|
|
73
|
-
boardData = _b.sent();
|
|
70
|
+
if (!(!(data === null || data === void 0 ? void 0 : data.errors) && !(data === null || data === void 0 ? void 0 : data.mw_error))) return [3, 6];
|
|
74
71
|
board_id = data === null || data === void 0 ? void 0 : data.id;
|
|
75
72
|
board_info_id = data === null || data === void 0 ? void 0 : data.board_info_id;
|
|
76
|
-
if (!(!!board_id && !!board_info_id)) return [3,
|
|
73
|
+
if (!(!!board_id && !!board_info_id)) return [3, 3];
|
|
77
74
|
return [4, API.boardService.retrieveBoardInfo({ id: board_id, infoId: board_info_id })];
|
|
78
|
-
case
|
|
79
|
-
boardInfoData =
|
|
80
|
-
|
|
75
|
+
case 2:
|
|
76
|
+
boardInfoData = _d.sent();
|
|
77
|
+
_d.label = 3;
|
|
78
|
+
case 3: return [4, API.boardService.retrieveBoardDetails(board_id)];
|
|
81
79
|
case 4:
|
|
82
|
-
|
|
80
|
+
boardData = _d.sent();
|
|
81
|
+
entity = ((boardData === null || boardData === void 0 ? void 0 : boardData.business) || {}).entity;
|
|
83
82
|
countryCode = entity === null || entity === void 0 ? void 0 : entity.country;
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
userData = _b.sent();
|
|
87
|
-
hasTaxCompleted = hasKey(steps, INDIVIDUAl_STEP_NAMES.INDIVIDUAl_SUCCESS);
|
|
88
|
-
if (!(data.step_name === INDIVIDUAl_STEP_NAMES.PHONE_AUTH)) return [3, 6];
|
|
89
|
-
thunkApi.dispatch(handleCurrentActiveScreen('INDIVIDUAL_VERIFY_STEP'));
|
|
90
|
-
return [3, 10];
|
|
91
|
-
case 6:
|
|
92
|
-
if (!hasTaxCompleted) return [3, 8];
|
|
93
|
-
return [4, thunkApi.dispatch(retrieveEntityInfo(entity === null || entity === void 0 ? void 0 : entity.id))];
|
|
94
|
-
case 7:
|
|
95
|
-
_b.sent();
|
|
96
|
-
thunkApi.dispatch(handleNextScreenStep('INDIVIDUAL_SUCCESS_FOUR_FLOWS_BUTTONS_STEP'));
|
|
97
|
-
return [3, 10];
|
|
98
|
-
case 8:
|
|
99
|
-
if (!(data.step_name === INDIVIDUAl_STEP_NAMES.INDIVIDUAl_INFO)) return [3, 10];
|
|
83
|
+
info = boardInfoData.info;
|
|
84
|
+
hasIndividualCompleted = ((_a = info === null || info === void 0 ? void 0 : info.find(function (flow) { return flow.name === 'individual'; })) === null || _a === void 0 ? void 0 : _a.status) === 'completed';
|
|
100
85
|
return [4, thunkApi.dispatch(retrieveDataList(entity === null || entity === void 0 ? void 0 : entity.country))];
|
|
101
|
-
case
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
86
|
+
case 5:
|
|
87
|
+
_d.sent();
|
|
88
|
+
if (data.step_name === INDIVIDUAl_STEP_NAMES.PHONE_AUTH) {
|
|
89
|
+
thunkApi.dispatch(handleCurrentActiveScreen('INDIVIDUAL_VERIFY_STEP'));
|
|
90
|
+
}
|
|
91
|
+
else if (hasIndividualCompleted) {
|
|
92
|
+
thunkApi.dispatch(handleNextScreenStep('INDIVIDUAL_SUCCESS_FOUR_FLOWS_BUTTONS_STEP'));
|
|
93
|
+
}
|
|
94
|
+
else if (data.step_name === INDIVIDUAl_STEP_NAMES.INDIVIDUAl_INFO) {
|
|
95
|
+
thunkApi.dispatch(handleNextScreenStep('INDIVIDUAL_ADDITIONAL_INDIVIDUAL_INFO_STEP'));
|
|
96
|
+
}
|
|
97
|
+
_d.label = 6;
|
|
98
|
+
case 6: return [2, {
|
|
106
99
|
data: data,
|
|
107
|
-
boardResponse:
|
|
100
|
+
boardResponse: {
|
|
101
|
+
user: boardData === null || boardData === void 0 ? void 0 : boardData.user,
|
|
102
|
+
brand: boardData === null || boardData === void 0 ? void 0 : boardData.brand,
|
|
103
|
+
bank_account: boardData === null || boardData === void 0 ? void 0 : boardData.bank_account,
|
|
104
|
+
entity: boardData === null || boardData === void 0 ? void 0 : boardData.entity,
|
|
105
|
+
merchant: boardData === null || boardData === void 0 ? void 0 : boardData.merchant,
|
|
106
|
+
name: (_b = boardData === null || boardData === void 0 ? void 0 : boardData.user) === null || _b === void 0 ? void 0 : _b.name,
|
|
107
|
+
contact: (_c = boardData === null || boardData === void 0 ? void 0 : boardData.user) === null || _c === void 0 ? void 0 : _c.contact,
|
|
108
|
+
countries: countries,
|
|
109
|
+
countryCode: countryCode,
|
|
110
|
+
flows: boardInfoData === null || boardInfoData === void 0 ? void 0 : boardInfoData.info
|
|
111
|
+
},
|
|
108
112
|
token: token
|
|
109
113
|
}];
|
|
110
114
|
}
|
|
@@ -146,51 +150,50 @@ export var retrieveDataList = createAsyncThunk('individualRetrieveDataList', fun
|
|
|
146
150
|
}
|
|
147
151
|
});
|
|
148
152
|
}); });
|
|
149
|
-
export var
|
|
153
|
+
export var retrieveBoardDetails = createAsyncThunk('retrieveIndividualBoardDetails', function (boardId) { return __awaiter(void 0, void 0, void 0, function () {
|
|
150
154
|
var data;
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
155
|
+
var _a, _b;
|
|
156
|
+
return __generator(this, function (_c) {
|
|
157
|
+
switch (_c.label) {
|
|
158
|
+
case 0: return [4, API.boardService.retrieveBoardDetails(boardId)];
|
|
154
159
|
case 1:
|
|
155
|
-
data =
|
|
156
|
-
return [2, {
|
|
160
|
+
data = _c.sent();
|
|
161
|
+
return [2, {
|
|
162
|
+
data: __assign(__assign({}, data), { user: data === null || data === void 0 ? void 0 : data.user, brand: data === null || data === void 0 ? void 0 : data.brand, bank_account: data === null || data === void 0 ? void 0 : data.bank_account, entity: data === null || data === void 0 ? void 0 : data.entity, merchant: data === null || data === void 0 ? void 0 : data.merchant, name: (_a = data === null || data === void 0 ? void 0 : data.user) === null || _a === void 0 ? void 0 : _a.name, contact: (_b = data === null || data === void 0 ? void 0 : data.user) === null || _b === void 0 ? void 0 : _b.contact })
|
|
163
|
+
}];
|
|
157
164
|
}
|
|
158
165
|
});
|
|
159
166
|
}); });
|
|
160
167
|
export var verifyLeadOTP = createAsyncThunk('verifyIndividualLeadOTP', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
161
|
-
var _a, individual, settings, responseBody, payload, data,
|
|
162
|
-
var _c, _d, _e
|
|
163
|
-
return __generator(this, function (
|
|
164
|
-
switch (
|
|
168
|
+
var _a, individual, settings, responseBody, payload, data, flows, hasIndividualCompleted;
|
|
169
|
+
var _b, _c, _d, _e;
|
|
170
|
+
return __generator(this, function (_f) {
|
|
171
|
+
switch (_f.label) {
|
|
165
172
|
case 0:
|
|
166
173
|
_a = thunkApi.getState(), individual = _a.individual, settings = _a.settings;
|
|
167
174
|
responseBody = individual.data.verify.responseBody;
|
|
168
175
|
payload = {
|
|
169
176
|
data: params.otp,
|
|
170
|
-
service_name: (
|
|
177
|
+
service_name: (_b = responseBody === null || responseBody === void 0 ? void 0 : responseBody.verification_by) === null || _b === void 0 ? void 0 : _b.service_name,
|
|
171
178
|
verify_token: responseBody === null || responseBody === void 0 ? void 0 : responseBody.verify_token,
|
|
172
179
|
step_name: INDIVIDUAl_STEP_NAMES.PHONE_AUTH,
|
|
173
180
|
encryption_contract: ['data']
|
|
174
181
|
};
|
|
175
182
|
return [4, API.leadService.verifyLeadOTP(payload)];
|
|
176
183
|
case 1:
|
|
177
|
-
data = (
|
|
178
|
-
if (
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
_g.sent();
|
|
191
|
-
thunkApi.dispatch(handleNextScreenStep('INDIVIDUAL_ADDITIONAL_INDIVIDUAL_INFO_STEP'));
|
|
192
|
-
_g.label = 5;
|
|
193
|
-
case 5: return [2, { data: data, formData: __assign({}, params) }];
|
|
184
|
+
data = (_f.sent()).data;
|
|
185
|
+
if (!(data === null || data === void 0 ? void 0 : data.errors)) {
|
|
186
|
+
(_d = (_c = settings.data.appConfig).onStepCompleted) === null || _d === void 0 ? void 0 : _d.call(_c, settings.data.activeScreen.name, { otp: params.otp });
|
|
187
|
+
flows = (responseBody || {}).flows;
|
|
188
|
+
hasIndividualCompleted = ((_e = flows === null || flows === void 0 ? void 0 : flows.find(function (flow) { return flow.name === 'individual'; })) === null || _e === void 0 ? void 0 : _e.status) === 'completed';
|
|
189
|
+
if (hasIndividualCompleted) {
|
|
190
|
+
thunkApi.dispatch(handleNextScreenStep('INDIVIDUAL_SUCCESS_FOUR_FLOWS_BUTTONS_STEP'));
|
|
191
|
+
}
|
|
192
|
+
else {
|
|
193
|
+
thunkApi.dispatch(handleNextScreenStep('INDIVIDUAL_ADDITIONAL_INDIVIDUAL_INFO_STEP'));
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
return [2, { data: data, formData: __assign({}, params) }];
|
|
194
197
|
}
|
|
195
198
|
});
|
|
196
199
|
}); });
|
|
@@ -226,13 +229,13 @@ export var updateIndividualInfo = createAsyncThunk('updateIndividualInfo', funct
|
|
|
226
229
|
});
|
|
227
230
|
}); });
|
|
228
231
|
export var updateBoardSuccess = createAsyncThunk('individualUpdateBoardSuccess', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
229
|
-
var _a, settings, individual, _b, id, infoId,
|
|
232
|
+
var _a, settings, individual, _b, id, infoId, payload, data;
|
|
230
233
|
var _c, _d, _e, _f;
|
|
231
234
|
return __generator(this, function (_g) {
|
|
232
235
|
switch (_g.label) {
|
|
233
236
|
case 0:
|
|
234
237
|
_a = thunkApi.getState(), settings = _a.settings, individual = _a.individual;
|
|
235
|
-
_b = individual.data.verify.responseBody || {}, id = _b.board_id, infoId = _b.board_info_id
|
|
238
|
+
_b = individual.data.verify.responseBody || {}, id = _b.board_id, infoId = _b.board_info_id;
|
|
236
239
|
if (!id)
|
|
237
240
|
return [2];
|
|
238
241
|
payload = {
|
|
@@ -243,7 +246,7 @@ export var updateBoardSuccess = createAsyncThunk('individualUpdateBoardSuccess',
|
|
|
243
246
|
return [4, API.boardService.updateBoardInfo(__assign({ id: id, infoId: infoId }, payload))];
|
|
244
247
|
case 1:
|
|
245
248
|
data = _g.sent();
|
|
246
|
-
return [4, thunkApi.dispatch(
|
|
249
|
+
return [4, thunkApi.dispatch(retrieveBoardDetails(id))];
|
|
247
250
|
case 2:
|
|
248
251
|
_g.sent();
|
|
249
252
|
(_d = (_c = settings.data.appConfig).onStepCompleted) === null || _d === void 0 ? void 0 : _d.call(_c, settings.data.activeScreen.name, params);
|
|
@@ -307,8 +310,9 @@ export var individualSlice = createSlice({
|
|
|
307
310
|
}
|
|
308
311
|
state.data.verify.responseBody = __assign(__assign(__assign(__assign({}, data), boardResponse), state.data.verify.responseBody), { board_id: data.id });
|
|
309
312
|
state.data.verify.token = token;
|
|
310
|
-
var _c = boardResponse || {},
|
|
311
|
-
var _d =
|
|
313
|
+
var _c = boardResponse || {}, countries = _c.countries, countryCode = _c.countryCode, brand = _c.brand;
|
|
314
|
+
var _d = brand || {}, source_income = _d.source_income, actual_income = _d.actual_income, occupation = _d.occupation, is_relative_PEP = _d.is_relative_PEP, is_influencer = _d.is_influencer;
|
|
315
|
+
var _e = state.data.individualData.responseBody || {}, sourceIncomeList = _e.sourceIncomeList, monthlyIncomeList = _e.monthlyIncomeList, occupationList = _e.occupationList;
|
|
312
316
|
var selectedSourceIncome = (sourceIncomeList === null || sourceIncomeList === void 0 ? void 0 : sourceIncomeList.find(function (source) { var _a, _b; return ((_a = source === null || source === void 0 ? void 0 : source.name_en) === null || _a === void 0 ? void 0 : _a.toLocaleLowerCase()) === ((_b = source_income === null || source_income === void 0 ? void 0 : source_income[0]) === null || _b === void 0 ? void 0 : _b.toLocaleLowerCase()); })) || (sourceIncomeList === null || sourceIncomeList === void 0 ? void 0 : sourceIncomeList[0]);
|
|
313
317
|
if (!!selectedSourceIncome)
|
|
314
318
|
state.data.individualData.sourceIncome = selectedSourceIncome;
|
|
@@ -363,6 +367,7 @@ export var individualSlice = createSlice({
|
|
|
363
367
|
}
|
|
364
368
|
state.data.otpData = formData;
|
|
365
369
|
state.data.otpData.responseBody = data;
|
|
370
|
+
state.data.individualData = __assign({}, state.data.individualData);
|
|
366
371
|
})
|
|
367
372
|
.addCase(verifyLeadOTP.rejected, function (state, action) {
|
|
368
373
|
state.loading = false;
|
|
@@ -404,23 +409,18 @@ export var individualSlice = createSlice({
|
|
|
404
409
|
state.loading = false;
|
|
405
410
|
state.error = action.error.message;
|
|
406
411
|
})
|
|
407
|
-
.addCase(
|
|
412
|
+
.addCase(retrieveBoardDetails.pending, function (state) {
|
|
408
413
|
state.error = null;
|
|
409
414
|
state.loading = true;
|
|
410
415
|
})
|
|
411
|
-
.addCase(
|
|
412
|
-
var _a;
|
|
416
|
+
.addCase(retrieveBoardDetails.fulfilled, function (state, action) {
|
|
413
417
|
state.error = null;
|
|
414
418
|
state.loading = false;
|
|
415
419
|
var data = (action.payload || {}).data;
|
|
416
|
-
var
|
|
417
|
-
|
|
418
|
-
state.error = description;
|
|
419
|
-
return;
|
|
420
|
-
}
|
|
421
|
-
state.data.verify.responseBody = __assign(__assign({}, state.data.verify.responseBody), data);
|
|
420
|
+
var _a = data || {}, entity = _a.entity, user = _a.user;
|
|
421
|
+
state.data.verify.responseBody = __assign(__assign(__assign({}, state.data.verify.responseBody), data), { entity: entity, name: user === null || user === void 0 ? void 0 : user.name });
|
|
422
422
|
})
|
|
423
|
-
.addCase(
|
|
423
|
+
.addCase(retrieveBoardDetails.rejected, function (state, action) {
|
|
424
424
|
state.error = action.error.message;
|
|
425
425
|
state.loading = false;
|
|
426
426
|
})
|
|
@@ -434,8 +434,8 @@ export var individualSlice = createSlice({
|
|
|
434
434
|
state.error = description;
|
|
435
435
|
return;
|
|
436
436
|
}
|
|
437
|
-
var flows = response.flows
|
|
438
|
-
state.data.verify.responseBody = __assign(__assign({}, state.data.verify.responseBody), { flows: flows
|
|
437
|
+
var flows = response.flows;
|
|
438
|
+
state.data.verify.responseBody = __assign(__assign({}, state.data.verify.responseBody), { flows: flows });
|
|
439
439
|
})
|
|
440
440
|
.addCase(updateBoardSuccess.pending, function (state) {
|
|
441
441
|
state.loading = true;
|
|
@@ -2,13 +2,15 @@ import { RootState } from '../../../app/store';
|
|
|
2
2
|
import { FlowsTypes, OTPFormValues, PasswordCreateFormValues, ResponseData, SharedState } from '../../../@types';
|
|
3
3
|
export declare const verifyLeadToken: import("@reduxjs/toolkit").AsyncThunk<{
|
|
4
4
|
data: any;
|
|
5
|
-
boardResponse:
|
|
5
|
+
boardResponse: {
|
|
6
|
+
flows: any;
|
|
7
|
+
};
|
|
6
8
|
token: string;
|
|
7
9
|
}, string, {}>;
|
|
8
10
|
export declare const resendOTP: import("@reduxjs/toolkit").AsyncThunk<{
|
|
9
11
|
data: any;
|
|
10
12
|
}, void, {}>;
|
|
11
|
-
export declare const
|
|
13
|
+
export declare const retrieveBoardDetails: import("@reduxjs/toolkit").AsyncThunk<{
|
|
12
14
|
data: any;
|
|
13
15
|
}, string, {}>;
|
|
14
16
|
export declare const verifyPasswordLeadOTP: import("@reduxjs/toolkit").AsyncThunk<{
|
|
@@ -33,6 +35,7 @@ export declare const verifyOperationToken: import("@reduxjs/toolkit").AsyncThunk
|
|
|
33
35
|
}, {
|
|
34
36
|
token: string;
|
|
35
37
|
boardId: string;
|
|
38
|
+
boardInfoId: string;
|
|
36
39
|
}, {}>;
|
|
37
40
|
export declare const resendOperationOTP: import("@reduxjs/toolkit").AsyncThunk<{
|
|
38
41
|
data: any;
|
|
@@ -48,9 +51,8 @@ export declare const resetPassword: import("@reduxjs/toolkit").AsyncThunk<{
|
|
|
48
51
|
otp: string;
|
|
49
52
|
};
|
|
50
53
|
}, OTPFormValues, {}>;
|
|
51
|
-
export declare const
|
|
52
|
-
|
|
53
|
-
entity: any;
|
|
54
|
+
export declare const retrieveBoardResetPasswordSuccess: import("@reduxjs/toolkit").AsyncThunk<{
|
|
55
|
+
id: any;
|
|
54
56
|
}, void, {}>;
|
|
55
57
|
declare type VerifyData = {
|
|
56
58
|
token: string;
|