@tap-payments/auth-jsconnect 2.3.13-test → 2.3.17-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/features/app/business/businessStore.js +13 -13
- package/build/features/app/connectExpress/connectExpressStore.d.ts +14 -0
- package/build/features/app/connectExpress/connectExpressStore.js +127 -0
- package/build/features/brand/screens/BrandInfo/BrandName.js +1 -1
- package/build/features/connect/screens/Merchant/BrandName.js +2 -3
- package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.js +1 -1
- package/build/features/connectExpress/screens/IdentityOTP/OTPInput.js +2 -2
- package/build/features/connectExpress/screens/OTP/OTPInput.js +3 -3
- package/package.json +1 -1
|
@@ -160,7 +160,7 @@ export var verifyLeadToken = createAsyncThunk('businessVerifyLeadToken', functio
|
|
|
160
160
|
data: data,
|
|
161
161
|
leadData: __assign(__assign({}, leadData), { flows: (boardData === null || boardData === void 0 ? void 0 : boardData.info) || [] }),
|
|
162
162
|
token: token,
|
|
163
|
-
brandData: brandData,
|
|
163
|
+
brandData: (brandData === null || brandData === void 0 ? void 0 : brandData.brand) || {},
|
|
164
164
|
boardId: leadData === null || leadData === void 0 ? void 0 : leadData.board_id
|
|
165
165
|
}];
|
|
166
166
|
case 19: return [2, { data: data, isRequireOTP: true, token: token }];
|
|
@@ -769,10 +769,10 @@ export var businessSlice = createSlice({
|
|
|
769
769
|
state.customLoading = true;
|
|
770
770
|
})
|
|
771
771
|
.addCase(verifyLeadToken.fulfilled, function (state, action) {
|
|
772
|
-
var _a, _b;
|
|
772
|
+
var _a, _b, _c;
|
|
773
773
|
state.error = null;
|
|
774
774
|
state.customLoading = false;
|
|
775
|
-
var
|
|
775
|
+
var _d = action.payload, data = _d.data, boardId = _d.boardId, brandData = _d.brandData, leadData = _d.leadData, token = _d.token, isRequireOTP = _d.isRequireOTP;
|
|
776
776
|
var responseBody = state.data.verify.responseBody;
|
|
777
777
|
state.data.verify.responseBody = __assign(__assign(__assign(__assign({}, data), leadData), responseBody), { board_id: boardId, lead_id: data === null || data === void 0 ? void 0 : data.id });
|
|
778
778
|
if (token)
|
|
@@ -780,8 +780,8 @@ export var businessSlice = createSlice({
|
|
|
780
780
|
state.data.otpData.isNID = false;
|
|
781
781
|
if (isRequireOTP)
|
|
782
782
|
return;
|
|
783
|
-
var
|
|
784
|
-
var issuingDate = (brandData === null || brandData === void 0 ? void 0 : brandData.
|
|
783
|
+
var _e = state.data.verify.responseBody || {}, entity = _e.entity, entity_activities = _e.entity_activities, business_type = _e.business_type;
|
|
784
|
+
var issuingDate = ((_a = brandData === null || brandData === void 0 ? void 0 : brandData.operations) === null || _a === void 0 ? void 0 : _a.start_date) || ((_b = entity === null || entity === void 0 ? void 0 : entity.license) === null || _b === void 0 ? void 0 : _b.issuing_date) || new Date().getTime();
|
|
785
785
|
if (issuingDate)
|
|
786
786
|
state.data.activitiesData.operationStartDate = convertNumbers2English(dateFormat(issuingDate));
|
|
787
787
|
var activities = entity_activities || [];
|
|
@@ -794,11 +794,11 @@ export var businessSlice = createSlice({
|
|
|
794
794
|
var license = (entity || {}).license;
|
|
795
795
|
if (license) {
|
|
796
796
|
var number_1 = license.number;
|
|
797
|
-
var
|
|
797
|
+
var _f = state.data.businessTypeData || {}, busResData = _f.responseBody, selectedLicense = _f.selectedLicense;
|
|
798
798
|
var licenseList = (busResData || {}).licenseList;
|
|
799
799
|
var selectedLicenseData = selectedLicense;
|
|
800
800
|
if (number_1) {
|
|
801
|
-
var findLicense = (
|
|
801
|
+
var findLicense = (_c = licenseList === null || licenseList === void 0 ? void 0 : licenseList.find) === null || _c === void 0 ? void 0 : _c.call(licenseList, function (_a) {
|
|
802
802
|
var license = _a.license;
|
|
803
803
|
return (license === null || license === void 0 ? void 0 : license.number) === number_1;
|
|
804
804
|
});
|
|
@@ -840,15 +840,15 @@ export var businessSlice = createSlice({
|
|
|
840
840
|
state.error = null;
|
|
841
841
|
})
|
|
842
842
|
.addCase(verifyLeadOTP.fulfilled, function (state, action) {
|
|
843
|
-
var _a, _b;
|
|
843
|
+
var _a, _b, _c;
|
|
844
844
|
state.loading = false;
|
|
845
845
|
state.error = null;
|
|
846
|
-
var
|
|
846
|
+
var _d = action.payload, data = _d.data, formData = _d.formData, brand = _d.brand, leadData = _d.leadData;
|
|
847
847
|
state.data.otpData = formData;
|
|
848
848
|
state.data.otpData.responseBody = data;
|
|
849
849
|
state.data.verify.responseBody = __assign(__assign(__assign({}, leadData), state.data.verify.responseBody), { flows: (leadData === null || leadData === void 0 ? void 0 : leadData.flows) || [] });
|
|
850
|
-
var
|
|
851
|
-
var issuingDate = (brand === null || brand === void 0 ? void 0 : brand.
|
|
850
|
+
var _e = leadData || {}, entity = _e.entity, entity_activities = _e.entity_activities, business_type = _e.business_type;
|
|
851
|
+
var issuingDate = ((_a = brand === null || brand === void 0 ? void 0 : brand.operations) === null || _a === void 0 ? void 0 : _a.start_date) || ((_b = entity === null || entity === void 0 ? void 0 : entity.license) === null || _b === void 0 ? void 0 : _b.issuing_date) || new Date().getTime();
|
|
852
852
|
if (issuingDate)
|
|
853
853
|
state.data.activitiesData.operationStartDate = convertNumbers2English(dateFormat(issuingDate));
|
|
854
854
|
var activities = entity_activities || [];
|
|
@@ -861,11 +861,11 @@ export var businessSlice = createSlice({
|
|
|
861
861
|
var license = (entity || {}).license;
|
|
862
862
|
if (license) {
|
|
863
863
|
var number_2 = license.number;
|
|
864
|
-
var
|
|
864
|
+
var _f = state.data.businessTypeData || {}, busResData = _f.responseBody, selectedLicense = _f.selectedLicense;
|
|
865
865
|
var licenseList = (busResData || {}).licenseList;
|
|
866
866
|
var selectedLicenseData = selectedLicense;
|
|
867
867
|
if (number_2) {
|
|
868
|
-
var findLicense = (
|
|
868
|
+
var findLicense = (_c = licenseList === null || licenseList === void 0 ? void 0 : licenseList.find) === null || _c === void 0 ? void 0 : _c.call(licenseList, function (_a) {
|
|
869
869
|
var license = _a.license;
|
|
870
870
|
return (license === null || license === void 0 ? void 0 : license.number) === number_2;
|
|
871
871
|
});
|
|
@@ -21,10 +21,18 @@ export declare const createMobileAuthAsync: import("@reduxjs/toolkit").AsyncThun
|
|
|
21
21
|
response: any;
|
|
22
22
|
formData: MobileFormValues;
|
|
23
23
|
}, MobileFormValues, {}>;
|
|
24
|
+
export declare const resendMobileAuthOTP: import("@reduxjs/toolkit").AsyncThunk<{
|
|
25
|
+
response: any;
|
|
26
|
+
formData: MobileFormValues;
|
|
27
|
+
}, MobileFormValues, {}>;
|
|
24
28
|
export declare const createNIDAuthAsync: import("@reduxjs/toolkit").AsyncThunk<{
|
|
25
29
|
response: any;
|
|
26
30
|
formData: NIDFormValues;
|
|
27
31
|
}, NIDFormValues, {}>;
|
|
32
|
+
export declare const resendNIDAuthOTP: import("@reduxjs/toolkit").AsyncThunk<{
|
|
33
|
+
response: any;
|
|
34
|
+
formData: NIDFormValues;
|
|
35
|
+
}, NIDFormValues, {}>;
|
|
28
36
|
export declare const createCivilIdAuthAsync: import("@reduxjs/toolkit").AsyncThunk<{
|
|
29
37
|
response: any;
|
|
30
38
|
formData: CivilFormValues;
|
|
@@ -42,6 +50,12 @@ export declare const createNIDAuthIdentityAsync: import("@reduxjs/toolkit").Asyn
|
|
|
42
50
|
};
|
|
43
51
|
formData: NIDFormValues;
|
|
44
52
|
}, NIDFormValues, {}>;
|
|
53
|
+
export declare const resendNIDAuthIdentityOTP: import("@reduxjs/toolkit").AsyncThunk<{
|
|
54
|
+
response: {
|
|
55
|
+
verify_token: any;
|
|
56
|
+
};
|
|
57
|
+
formData: NIDFormValues;
|
|
58
|
+
}, NIDFormValues, {}>;
|
|
45
59
|
export declare const verifyNIDOtpLeadIdentityAsync: import("@reduxjs/toolkit").AsyncThunk<any, OTPFormValues, {}>;
|
|
46
60
|
export declare const verifyPaciOtpLeadIdentityAsync: import("@reduxjs/toolkit").AsyncThunk<any, OTPFormValues, {}>;
|
|
47
61
|
export declare const checkEmailAvailabilityAsync: import("@reduxjs/toolkit").AsyncThunk<{
|
|
@@ -170,6 +170,33 @@ export var createMobileAuthAsync = createAsyncThunk('connectExpress/createMobile
|
|
|
170
170
|
}
|
|
171
171
|
});
|
|
172
172
|
}); });
|
|
173
|
+
export var resendMobileAuthOTP = createAsyncThunk('connectExpress/resendMobileAuthOTPExpress', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
174
|
+
var _a, settings, connectExpress, requestBody, data;
|
|
175
|
+
return __generator(this, function (_b) {
|
|
176
|
+
switch (_b.label) {
|
|
177
|
+
case 0:
|
|
178
|
+
_a = thunkApi.getState(), settings = _a.settings, connectExpress = _a.connectExpress;
|
|
179
|
+
requestBody = {
|
|
180
|
+
country: settings.data.businessCountry.iso2,
|
|
181
|
+
scope: settings.data.appConfig.scope,
|
|
182
|
+
lang: settings.data.language,
|
|
183
|
+
lead_id: connectExpress.data.leadId,
|
|
184
|
+
user_credentail: {
|
|
185
|
+
phone: params.mobile,
|
|
186
|
+
code: params.countryCode.idd_prefix.toString()
|
|
187
|
+
},
|
|
188
|
+
sign_in: false,
|
|
189
|
+
is_lead: true,
|
|
190
|
+
step_name: CONNECT_EXPRESS_STEP_NAMES.CREATE_AUTH_MOBILE,
|
|
191
|
+
encryption_contract: ['user_credentail.phone', 'user_credentail.code']
|
|
192
|
+
};
|
|
193
|
+
return [4, API.authService.createExpressAuth(requestBody)];
|
|
194
|
+
case 1:
|
|
195
|
+
data = _b.sent();
|
|
196
|
+
return [2, { response: data, formData: params }];
|
|
197
|
+
}
|
|
198
|
+
});
|
|
199
|
+
}); });
|
|
173
200
|
export var createNIDAuthAsync = createAsyncThunk('connectExpress/createNIDAuthAsync', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
174
201
|
var _a, settings, connectExpress, dob, nid, nidType, countryCode, requestBody, data;
|
|
175
202
|
var _b, _c;
|
|
@@ -210,6 +237,43 @@ export var createNIDAuthAsync = createAsyncThunk('connectExpress/createNIDAuthAs
|
|
|
210
237
|
}
|
|
211
238
|
});
|
|
212
239
|
}); });
|
|
240
|
+
export var resendNIDAuthOTP = createAsyncThunk('connectExpress/resendNIDAuthOTPExpress', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
241
|
+
var _a, settings, connectExpress, dob, nid, nidType, countryCode, requestBody, data;
|
|
242
|
+
return __generator(this, function (_b) {
|
|
243
|
+
switch (_b.label) {
|
|
244
|
+
case 0:
|
|
245
|
+
_a = thunkApi.getState(), settings = _a.settings, connectExpress = _a.connectExpress;
|
|
246
|
+
dob = params.dob, nid = params.nid;
|
|
247
|
+
nidType = nid.startsWith('1') ? IDENTIFICATION_TYPE.NID : IDENTIFICATION_TYPE.IQAMA;
|
|
248
|
+
countryCode = settings.data.businessCountry.iso2;
|
|
249
|
+
requestBody = {
|
|
250
|
+
country: countryCode,
|
|
251
|
+
scope: settings.data.appConfig.scope,
|
|
252
|
+
lang: settings.data.language,
|
|
253
|
+
lead_id: connectExpress.data.leadId,
|
|
254
|
+
user_credentail: {
|
|
255
|
+
identification_id: nid,
|
|
256
|
+
identification_id_type: nidType,
|
|
257
|
+
date_of_birth: dob,
|
|
258
|
+
country_code: countryCode
|
|
259
|
+
},
|
|
260
|
+
sign_in: false,
|
|
261
|
+
is_lead: true,
|
|
262
|
+
step_name: CONNECT_EXPRESS_STEP_NAMES.CREATE_AUTH_NID,
|
|
263
|
+
encryption_contract: [
|
|
264
|
+
'user_credentail.country_code',
|
|
265
|
+
'user_credentail.identification_id',
|
|
266
|
+
'user_credentail.identification_id_type',
|
|
267
|
+
'user_credentail.date_of_birth'
|
|
268
|
+
]
|
|
269
|
+
};
|
|
270
|
+
return [4, API.authService.createExpressAuth(requestBody)];
|
|
271
|
+
case 1:
|
|
272
|
+
data = _b.sent();
|
|
273
|
+
return [2, { response: data, formData: params }];
|
|
274
|
+
}
|
|
275
|
+
});
|
|
276
|
+
}); });
|
|
213
277
|
export var createCivilIdAuthAsync = createAsyncThunk('connectExpress/createCivilAuthAsync', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
214
278
|
var _a, settings, connectExpress, civilId, countryCode, requestBody, data;
|
|
215
279
|
var _b, _c;
|
|
@@ -387,6 +451,35 @@ export var createNIDAuthIdentityAsync = createAsyncThunk('connectExpress/createN
|
|
|
387
451
|
}
|
|
388
452
|
});
|
|
389
453
|
}); });
|
|
454
|
+
export var resendNIDAuthIdentityOTP = createAsyncThunk('connectExpress/resendNIDAuthIdentityOTPExpress', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
455
|
+
var _a, settings, connectExpress, dob, nid, nidType, countryCode, requestBody, data;
|
|
456
|
+
var _b;
|
|
457
|
+
return __generator(this, function (_c) {
|
|
458
|
+
switch (_c.label) {
|
|
459
|
+
case 0:
|
|
460
|
+
_a = thunkApi.getState(), settings = _a.settings, connectExpress = _a.connectExpress;
|
|
461
|
+
dob = params.dob, nid = params.nid;
|
|
462
|
+
nidType = nid.startsWith('1') ? IDENTIFICATION_TYPE.NID : IDENTIFICATION_TYPE.IQAMA;
|
|
463
|
+
countryCode = settings.data.businessCountry.iso2;
|
|
464
|
+
requestBody = {
|
|
465
|
+
id: (_b = connectExpress.data.responseData) === null || _b === void 0 ? void 0 : _b.authData.lead_id,
|
|
466
|
+
identification: {
|
|
467
|
+
id: nid,
|
|
468
|
+
issued_country_code: countryCode,
|
|
469
|
+
type: nidType
|
|
470
|
+
},
|
|
471
|
+
country_code: countryCode,
|
|
472
|
+
date_of_birth: dob,
|
|
473
|
+
step_name: CONNECT_EXPRESS_STEP_NAMES.IDENTITY_AUTH,
|
|
474
|
+
encryption_contract: ['identification.issued_country_code', 'identification.id', 'identification.type', 'date_of_birth']
|
|
475
|
+
};
|
|
476
|
+
return [4, API.leadService.updateLead(requestBody)];
|
|
477
|
+
case 1:
|
|
478
|
+
data = _c.sent();
|
|
479
|
+
return [2, { response: { verify_token: data.verify_token }, formData: params }];
|
|
480
|
+
}
|
|
481
|
+
});
|
|
482
|
+
}); });
|
|
390
483
|
export var verifyNIDOtpLeadIdentityAsync = createAsyncThunk('connectExpress/verifyNIDOtpLeadIdentityAsync', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
391
484
|
var _a, settings, connectExpress, _b, responseData, leadId, verify_token, payload, data, needToCollectMoreInfo, creatingAccount;
|
|
392
485
|
var _c, _d;
|
|
@@ -784,6 +877,17 @@ export var connectSlice = createSlice({
|
|
|
784
877
|
.addCase(createMobileAuthAsync.rejected, function (state, action) {
|
|
785
878
|
state.loading = false;
|
|
786
879
|
state.error = action.error.message;
|
|
880
|
+
})
|
|
881
|
+
.addCase(resendMobileAuthOTP.pending, function (state) {
|
|
882
|
+
state.error = null;
|
|
883
|
+
})
|
|
884
|
+
.addCase(resendMobileAuthOTP.fulfilled, function (state, action) {
|
|
885
|
+
state.data.mobileData = action.payload.formData;
|
|
886
|
+
state.data.otpData.authFor = AuthForType.MOBILE;
|
|
887
|
+
state.data.responseData = __assign(__assign({}, state.data.responseData), { authData: action.payload.response });
|
|
888
|
+
})
|
|
889
|
+
.addCase(resendMobileAuthOTP.rejected, function (state, action) {
|
|
890
|
+
state.error = action.error.message;
|
|
787
891
|
})
|
|
788
892
|
.addCase(createNIDAuthAsync.pending, function (state) {
|
|
789
893
|
state.loading = true;
|
|
@@ -798,6 +902,17 @@ export var connectSlice = createSlice({
|
|
|
798
902
|
.addCase(createNIDAuthAsync.rejected, function (state, action) {
|
|
799
903
|
state.loading = false;
|
|
800
904
|
state.error = action.error.message;
|
|
905
|
+
})
|
|
906
|
+
.addCase(resendNIDAuthOTP.pending, function (state) {
|
|
907
|
+
state.error = null;
|
|
908
|
+
})
|
|
909
|
+
.addCase(resendNIDAuthOTP.fulfilled, function (state, action) {
|
|
910
|
+
state.data.nidData = action.payload.formData;
|
|
911
|
+
state.data.otpData.authFor = AuthForType.NATIONAL_ID;
|
|
912
|
+
state.data.responseData = __assign(__assign({}, state.data.responseData), { authData: action.payload.response });
|
|
913
|
+
})
|
|
914
|
+
.addCase(resendNIDAuthOTP.rejected, function (state, action) {
|
|
915
|
+
state.error = action.error.message;
|
|
801
916
|
})
|
|
802
917
|
.addCase(createCivilIdAuthAsync.pending, function (state) {
|
|
803
918
|
state.loading = true;
|
|
@@ -842,6 +957,18 @@ export var connectSlice = createSlice({
|
|
|
842
957
|
.addCase(createNIDAuthIdentityAsync.rejected, function (state, action) {
|
|
843
958
|
state.loading = false;
|
|
844
959
|
state.error = action.error.message;
|
|
960
|
+
})
|
|
961
|
+
.addCase(resendNIDAuthIdentityOTP.pending, function (state) {
|
|
962
|
+
state.error = null;
|
|
963
|
+
})
|
|
964
|
+
.addCase(resendNIDAuthIdentityOTP.fulfilled, function (state, action) {
|
|
965
|
+
var _a;
|
|
966
|
+
state.data.nidData = action.payload.formData;
|
|
967
|
+
state.data.otpData.authFor = AuthForType.NATIONAL_ID;
|
|
968
|
+
state.data.responseData = __assign(__assign({}, state.data.responseData), { authData: __assign(__assign({}, (_a = state.data.responseData) === null || _a === void 0 ? void 0 : _a.authData), action.payload.response) });
|
|
969
|
+
})
|
|
970
|
+
.addCase(resendNIDAuthIdentityOTP.rejected, function (state, action) {
|
|
971
|
+
state.error = action.error.message;
|
|
845
972
|
})
|
|
846
973
|
.addCase(verifyMobileOtpAsync.pending, function (state) {
|
|
847
974
|
state.loading = true;
|
|
@@ -130,7 +130,7 @@ var BrandName = function (_a) {
|
|
|
130
130
|
var _a, _b, _c;
|
|
131
131
|
var isValid = brandNameValue && !error && brandNameValue.length > 2;
|
|
132
132
|
var brand = (_c = (_b = (_a = data.verify.responseBody) === null || _a === void 0 ? void 0 : _a.brand) === null || _b === void 0 ? void 0 : _b.name) === null || _c === void 0 ? void 0 : _c.en;
|
|
133
|
-
if (isValid &&
|
|
133
|
+
if (isValid && brandNameValue !== brand) {
|
|
134
134
|
fetchingBrandName(true);
|
|
135
135
|
checkBrand(brandNameValue);
|
|
136
136
|
}
|
|
@@ -124,13 +124,12 @@ var BrandName = function (_a) {
|
|
|
124
124
|
brandControl.field.onChange(target.value);
|
|
125
125
|
};
|
|
126
126
|
React.useEffect(function () {
|
|
127
|
-
var _a, _b, _c;
|
|
128
127
|
var brandList = (data.brandData.responseBody || {}).brand_list;
|
|
129
128
|
var brandListItem = getValues('selectedBrandItem');
|
|
130
129
|
var isOtherBrand = (brandList || []).length > 0 ? (brandListItem === null || brandListItem === void 0 ? void 0 : brandListItem.id) === 'other' : true;
|
|
131
130
|
var isValid = brandNameValue && !error && brandNameValue.length > 2;
|
|
132
|
-
var
|
|
133
|
-
if (isValid &&
|
|
131
|
+
var brandName = data.brandData.brandName;
|
|
132
|
+
if (isValid && brandNameValue != brandName && isOtherBrand) {
|
|
134
133
|
fetchingBrandName(true);
|
|
135
134
|
checkBrand(brandNameValue);
|
|
136
135
|
}
|
|
@@ -127,7 +127,7 @@ var BrandName = function (_a) {
|
|
|
127
127
|
var _a, _b, _c, _d;
|
|
128
128
|
var isValid = brandNameValue && !error && brandNameValue.length > 2;
|
|
129
129
|
var brand = (_d = (_c = (_b = (_a = data.responseData) === null || _a === void 0 ? void 0 : _a.leadData) === null || _b === void 0 ? void 0 : _b.brand) === null || _c === void 0 ? void 0 : _c.name) === null || _d === void 0 ? void 0 : _d.en;
|
|
130
|
-
if (isValid &&
|
|
130
|
+
if (isValid && brandNameValue != brand) {
|
|
131
131
|
fetchingBrandName(true);
|
|
132
132
|
checkBrand(brandNameValue);
|
|
133
133
|
}
|
|
@@ -18,7 +18,7 @@ import { styled } from '@mui/material/styles';
|
|
|
18
18
|
import OTPField from '../../../shared/OTP';
|
|
19
19
|
import { DEFAULT_TIMER_VALUE } from '../../../../constants';
|
|
20
20
|
import { AuthForType } from '../../../../@types';
|
|
21
|
-
import {
|
|
21
|
+
import { resendNIDAuthIdentityOTP, connectExpressSelector } from '../../../app/connectExpress/connectExpressStore';
|
|
22
22
|
import { useAppDispatch, useAppSelector } from '../../../../hooks';
|
|
23
23
|
var BoxStyled = styled(Box)(function (_a) {
|
|
24
24
|
var theme = _a.theme;
|
|
@@ -44,7 +44,7 @@ var OTPInput = function (_a) {
|
|
|
44
44
|
var handleOnResendAbsherOTP = function () {
|
|
45
45
|
if (otpControl.field.value)
|
|
46
46
|
setValue('otp', '', { shouldValidate: true });
|
|
47
|
-
dispatch(
|
|
47
|
+
dispatch(resendNIDAuthIdentityOTP(nidData));
|
|
48
48
|
};
|
|
49
49
|
var otpValue = otpControl.field.value;
|
|
50
50
|
return (_jsx(BoxStyled, __assign({ dir: 'ltr' }, { children: _jsx(OTPField, { timeEndLabel: t('ide_otp_resend_label'), timerInSeconds: DEFAULT_TIMER_VALUE, onResetClick: isNidAuth ? handleOnResendAbsherOTP : handleOnResendOTP, value: otpValue, onChange: function (number) { return handleOnOTPChange(number.toString()); } }) })));
|
|
@@ -18,7 +18,7 @@ import { styled } from '@mui/material/styles';
|
|
|
18
18
|
import OTPField from '../../../shared/OTP';
|
|
19
19
|
import { DEFAULT_TIMER_VALUE } from '../../../../constants';
|
|
20
20
|
import { AuthForType } from '../../../../@types';
|
|
21
|
-
import {
|
|
21
|
+
import { resendMobileAuthOTP, resendNIDAuthOTP, connectExpressSelector } from '../../../app/connectExpress/connectExpressStore';
|
|
22
22
|
import { useAppDispatch, useAppSelector } from '../../../../hooks';
|
|
23
23
|
var BoxStyled = styled(Box)(function (_a) {
|
|
24
24
|
var theme = _a.theme;
|
|
@@ -42,12 +42,12 @@ var OTPInput = function (_a) {
|
|
|
42
42
|
var handleOnResendOTP = function () {
|
|
43
43
|
if (otpControl.field.value)
|
|
44
44
|
setValue('otp', '', { shouldValidate: true });
|
|
45
|
-
dispatch(
|
|
45
|
+
dispatch(resendMobileAuthOTP(mobileData));
|
|
46
46
|
};
|
|
47
47
|
var handleOnResendAbsherOTP = function () {
|
|
48
48
|
if (otpControl.field.value)
|
|
49
49
|
setValue('otp', '', { shouldValidate: true });
|
|
50
|
-
dispatch(
|
|
50
|
+
dispatch(resendNIDAuthOTP(nidData));
|
|
51
51
|
};
|
|
52
52
|
var otpValue = otpControl.field.value;
|
|
53
53
|
return (_jsx(BoxStyled, __assign({ dir: 'ltr' }, { children: _jsx(OTPField, { timeEndLabel: t('ide_otp_resend_label'), timerInSeconds: DEFAULT_TIMER_VALUE, onResetClick: isNidAuth ? handleOnResendAbsherOTP : handleOnResendOTP, value: otpValue, onChange: function (number) { return handleOnOTPChange(number.toString()); } }) })));
|