@tap-payments/auth-jsconnect 2.8.93-development → 2.8.97-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.
Files changed (62) hide show
  1. package/build/@types/form.d.ts +3 -0
  2. package/build/components/ArabicDatePicker/ArabicDatePicker.d.ts +1 -1
  3. package/build/components/ArabicDatePicker/ArabicDatePicker.js +2 -2
  4. package/build/components/DatePicker/DatePicker.d.ts +1 -1
  5. package/build/components/DatePicker/DatePicker.js +2 -2
  6. package/build/components/Tooltip/Tooltip.js +1 -1
  7. package/build/constants/api.d.ts +1 -0
  8. package/build/constants/api.js +2 -0
  9. package/build/constants/app.d.ts +7 -0
  10. package/build/constants/app.js +47 -9
  11. package/build/features/app/auth/authStore.d.ts +6 -1
  12. package/build/features/app/auth/authStore.js +86 -28
  13. package/build/features/app/business/businessStore.d.ts +20 -3
  14. package/build/features/app/business/businessStore.js +100 -35
  15. package/build/features/app/connect/connectStore.d.ts +11 -2
  16. package/build/features/app/connect/connectStore.js +52 -5
  17. package/build/features/app/connectExpress/connectExpressStore.d.ts +23 -4
  18. package/build/features/app/connectExpress/connectExpressStore.js +74 -14
  19. package/build/features/app/individual/individualStore.js +1 -0
  20. package/build/features/auth/screens/DOB/DOB.d.ts +6 -0
  21. package/build/features/auth/screens/DOB/DOB.js +47 -0
  22. package/build/features/auth/screens/DOB/DOBForm.d.ts +5 -0
  23. package/build/features/auth/screens/DOB/DOBForm.js +59 -0
  24. package/build/features/auth/screens/DOB/index.d.ts +3 -0
  25. package/build/features/auth/screens/DOB/index.js +2 -0
  26. package/build/features/auth/screens/DOB/validation.d.ts +8 -0
  27. package/build/features/auth/screens/DOB/validation.js +4 -0
  28. package/build/features/brand/screens/BrandInfo/BrandName.js +2 -2
  29. package/build/features/business/screens/BusinessType/BusinessType.js +2 -2
  30. package/build/features/business/screens/DOB/DOB.d.ts +6 -0
  31. package/build/features/business/screens/DOB/DOB.js +45 -0
  32. package/build/features/business/screens/DOB/DOBForm.d.ts +5 -0
  33. package/build/features/business/screens/DOB/DOBForm.js +72 -0
  34. package/build/features/business/screens/DOB/index.d.ts +3 -0
  35. package/build/features/business/screens/DOB/index.js +2 -0
  36. package/build/features/business/screens/DOB/validation.d.ts +8 -0
  37. package/build/features/business/screens/DOB/validation.js +4 -0
  38. package/build/features/connect/screens/DOB/DOB.d.ts +6 -0
  39. package/build/features/connect/screens/DOB/DOB.js +47 -0
  40. package/build/features/connect/screens/DOB/DOBForm.d.ts +5 -0
  41. package/build/features/connect/screens/DOB/DOBForm.js +59 -0
  42. package/build/features/connect/screens/DOB/index.d.ts +3 -0
  43. package/build/features/connect/screens/DOB/index.js +2 -0
  44. package/build/features/connect/screens/DOB/validation.d.ts +8 -0
  45. package/build/features/connect/screens/DOB/validation.js +4 -0
  46. package/build/features/connect/screens/Individual/Individual.js +10 -3
  47. package/build/features/connect/screens/Merchant/BrandName.js +2 -2
  48. package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.js +2 -2
  49. package/build/features/connectExpress/screens/CollectIndividualInfo/CollectIndividualInfo.js +21 -4
  50. package/build/features/connectExpress/screens/DOB/DOB.d.ts +6 -0
  51. package/build/features/connectExpress/screens/DOB/DOB.js +47 -0
  52. package/build/features/connectExpress/screens/DOB/DOBForm.d.ts +5 -0
  53. package/build/features/connectExpress/screens/DOB/DOBForm.js +63 -0
  54. package/build/features/connectExpress/screens/DOB/index.d.ts +3 -0
  55. package/build/features/connectExpress/screens/DOB/index.js +2 -0
  56. package/build/features/connectExpress/screens/DOB/validation.d.ts +8 -0
  57. package/build/features/connectExpress/screens/DOB/validation.js +4 -0
  58. package/build/features/featuresScreens.js +20 -0
  59. package/build/features/shared/Calender/Calender.d.ts +2 -1
  60. package/build/features/shared/Calender/Calender.js +3 -3
  61. package/build/utils/common.js +4 -4
  62. package/package.json +2 -2
@@ -18,6 +18,9 @@ export declare type NIDFormValues = {
18
18
  dob?: any;
19
19
  termAndConditionChecked?: boolean;
20
20
  };
21
+ export declare type DOBFormValues = {
22
+ dob: any;
23
+ };
21
24
  export declare type CivilFormValues = {
22
25
  civilId: string;
23
26
  termAndConditionChecked?: boolean;
@@ -12,5 +12,5 @@ export interface DatePickerProps extends CalendarProps {
12
12
  isDob?: boolean;
13
13
  isVerified?: boolean;
14
14
  }
15
- declare const _default: React.MemoExoticComponent<({ open, disabled, dir, readOnly, onDateChange, onClick, onDatePicked, value, isDob, isVerified, ...rest }: DatePickerProps) => JSX.Element>;
15
+ declare const _default: React.MemoExoticComponent<({ open, disabled, dir, readOnly, onDateChange, onClick, onDatePicked, value, isDob, isVerified, minDate, maxDate, ...rest }: DatePickerProps) => JSX.Element>;
16
16
  export default _default;
@@ -71,7 +71,7 @@ var ArrowIcon = styled(Text, { shouldForwardProp: function (prop) { return prop
71
71
  });
72
72
  });
73
73
  var DatePicker = function (_a) {
74
- var _b = _a.open, open = _b === void 0 ? false : _b, disabled = _a.disabled, dir = _a.dir, readOnly = _a.readOnly, onDateChange = _a.onDateChange, onClick = _a.onClick, onDatePicked = _a.onDatePicked, value = _a.value, isDob = _a.isDob, isVerified = _a.isVerified, rest = __rest(_a, ["open", "disabled", "dir", "readOnly", "onDateChange", "onClick", "onDatePicked", "value", "isDob", "isVerified"]);
74
+ var _b = _a.open, open = _b === void 0 ? false : _b, disabled = _a.disabled, dir = _a.dir, readOnly = _a.readOnly, onDateChange = _a.onDateChange, onClick = _a.onClick, onDatePicked = _a.onDatePicked, value = _a.value, isDob = _a.isDob, isVerified = _a.isVerified, minDate = _a.minDate, maxDate = _a.maxDate, rest = __rest(_a, ["open", "disabled", "dir", "readOnly", "onDateChange", "onClick", "onDatePicked", "value", "isDob", "isVerified", "minDate", "maxDate"]);
75
75
  var _c = React.useState(), date = _c[0], setDate = _c[1];
76
76
  var _d = React.useState(null), anchor = _d[0], setAnchor = _d[1];
77
77
  var _e = React.useState(open), openCalender = _e[0], setOpenCalender = _e[1];
@@ -111,6 +111,6 @@ var DatePicker = function (_a) {
111
111
  return (_jsxs(Container, __assign({ openCalender: openCalender, disabled: disabled, id: 'arabic-container-calendar' }, { children: [_jsx(InputFieldStyled, { endAdornment: _jsx(ArrowIcon, __assign({ disabled: disabled }, { children: getEndAdornment() })), value: date ? formateDate(date) : '', placeholder: DATE_FORMAT, onClick: function (e) {
112
112
  if (!disabled)
113
113
  toggleCalender(e);
114
- }, startAdornment: calenderIcon, disabled: disabled, readOnly: readOnly, dir: dir }), _jsxs(Collapse, __assign({ in: openCalender }, { children: [_jsx(Calendar, __assign({ calendar: arabic, locale: dir === 'rtl' ? arabic_ar : arabic_en, maxDate: rest.maxDate || defaultMax, minDate: defaultMin, format: DATE_FORMAT, onChange: handleOnDateChange, value: date || (isDob ? new Date(getEighteenYearsAgo()) : undefined), className: 'custom-container' }, rest)), _jsx(Divider, {})] }))] })));
114
+ }, startAdornment: calenderIcon, disabled: disabled, readOnly: readOnly, dir: dir }), _jsxs(Collapse, __assign({ in: openCalender }, { children: [_jsx(Calendar, __assign({ calendar: arabic, locale: dir === 'rtl' ? arabic_ar : arabic_en, maxDate: maxDate || defaultMax, minDate: minDate || defaultMin, format: DATE_FORMAT, onChange: handleOnDateChange, value: date || (isDob ? new Date(getEighteenYearsAgo()) : undefined), className: 'custom-container' }, rest)), _jsx(Divider, {})] }))] })));
115
115
  };
116
116
  export default memo(DatePicker);
@@ -13,5 +13,5 @@ export interface DatePickerProps extends CalendarProps {
13
13
  isDob?: boolean;
14
14
  isVerified?: boolean;
15
15
  }
16
- declare const _default: React.MemoExoticComponent<({ onDateChange, disabled, readOnly, onClick, onDatePicked, dir, defaultValue, isDob, isVerified, open, ...rest }: DatePickerProps) => JSX.Element>;
16
+ declare const _default: React.MemoExoticComponent<({ onDateChange, disabled, readOnly, onClick, onDatePicked, dir, defaultValue, isDob, isVerified, open, minDate, maxDate, ...rest }: DatePickerProps) => JSX.Element>;
17
17
  export default _default;
@@ -67,7 +67,7 @@ var ArrowIcon = styled(Text, { shouldForwardProp: function (prop) { return prop
67
67
  });
68
68
  });
69
69
  var DatePicker = function (_a) {
70
- var onDateChange = _a.onDateChange, disabled = _a.disabled, readOnly = _a.readOnly, onClick = _a.onClick, onDatePicked = _a.onDatePicked, dir = _a.dir, defaultValue = _a.defaultValue, isDob = _a.isDob, isVerified = _a.isVerified, open = _a.open, rest = __rest(_a, ["onDateChange", "disabled", "readOnly", "onClick", "onDatePicked", "dir", "defaultValue", "isDob", "isVerified", "open"]);
70
+ var onDateChange = _a.onDateChange, disabled = _a.disabled, readOnly = _a.readOnly, onClick = _a.onClick, onDatePicked = _a.onDatePicked, dir = _a.dir, defaultValue = _a.defaultValue, isDob = _a.isDob, isVerified = _a.isVerified, open = _a.open, minDate = _a.minDate, maxDate = _a.maxDate, rest = __rest(_a, ["onDateChange", "disabled", "readOnly", "onClick", "onDatePicked", "dir", "defaultValue", "isDob", "isVerified", "open", "minDate", "maxDate"]);
71
71
  var _b = useState(), date = _b[0], setDate = _b[1];
72
72
  var _c = React.useState(null), anchor = _c[0], setAnchor = _c[1];
73
73
  var _d = React.useState(open), openCalender = _d[0], setOpenCalender = _d[1];
@@ -106,6 +106,6 @@ var DatePicker = function (_a) {
106
106
  return (_jsxs(Container, __assign({ disabled: disabled, id: 'container-calendar' }, { children: [_jsx(InputFieldStyled, { endAdornment: _jsx(ArrowIcon, __assign({ disabled: disabled }, { children: getEndAdornment() })), value: date ? convertToEnglishDateFormat(date) : '', placeholder: 'YYYY-MM-DD', onClick: function (e) {
107
107
  if (!disabled)
108
108
  toggleCalender(e);
109
- }, startAdornment: calenderIcon, disabled: disabled, readOnly: readOnly, dir: dir }), _jsxs(Collapse, __assign({ in: openCalender }, { children: [_jsx(Calendar, __assign({}, rest, { value: date || (isDob ? new Date(getEighteenYearsAgo()) : undefined), calendarType: 'Hebrew', onChange: handleOnDateChange, locale: rest.locale, maxDate: rest.maxDate || defaultMax, minDate: rest.minDate || defaultMin })), _jsx(Divider, {})] }))] })));
109
+ }, startAdornment: calenderIcon, disabled: disabled, readOnly: readOnly, dir: dir }), _jsxs(Collapse, __assign({ in: openCalender }, { children: [_jsx(Calendar, __assign({}, rest, { value: date || (isDob ? new Date(getEighteenYearsAgo()) : undefined), calendarType: 'Hebrew', onChange: handleOnDateChange, locale: rest.locale, maxDate: maxDate || defaultMax, minDate: minDate || defaultMin })), _jsx(Divider, {})] }))] })));
110
110
  };
111
111
  export default memo(DatePicker);
@@ -33,7 +33,7 @@ var StyledTooltip = styled(function (_a) {
33
33
  var _b;
34
34
  var theme = _a.theme;
35
35
  return (_b = {},
36
- _b["& .".concat(tooltipClasses.tooltip)] = __assign(__assign({ color: alpha(theme.palette.text.primary, 0.5), width: 'fit-content', maxHeight: 'fit-content' }, theme.typography.body2), { fontWeight: theme.typography.fontWeightLight, backgroundColor: theme.palette.secondary.light, border: "1px solid ".concat(alpha(theme.palette.divider, 0.8)) }),
36
+ _b["& .".concat(tooltipClasses.tooltip)] = __assign(__assign({ color: alpha(theme.palette.text.primary, 0.5), width: 'fit-content', maxHeight: 'fit-content' }, theme.typography.body2), { fontWeight: theme.typography.fontWeightLight, backgroundColor: theme.palette.secondary.light, border: "1px solid ".concat(alpha(theme.palette.divider, 0.8)), zIndex: 2147483647 }),
37
37
  _b);
38
38
  });
39
39
  var TextStyled = styled(Text, { shouldForwardProp: function (prop) { return prop !== 'isAr'; } })(function (_a) {
@@ -12,6 +12,7 @@ export declare const ENDPOINT_PATHS: {
12
12
  SANDBOX_BASE_URL: string;
13
13
  PRODUCTION_BASE_URL: string;
14
14
  DEV_BASE_URL: string;
15
+ BETA_BASE_URL: string;
15
16
  BUSINESS_COUNTRIES: string;
16
17
  COUNTRIES: string;
17
18
  IP: string;
@@ -1,6 +1,7 @@
1
1
  var SANDBOX_BASE_URL = 'https://connect-mw.sandbox.tap.company/middleware';
2
2
  var PRODUCTION_BASE_URL = 'https://connect-mw.tap.company/middleware';
3
3
  var DEV_BASE_URL = 'https://connect-mw.dev.tap.company/middleware';
4
+ var BETA_BASE_URL = 'https://connect-mw.beta.tap.company/middleware';
4
5
  var API_BUSINESS_COUNTRIES = 'https://godata.sandbox.tap.company/api/v1/business/country/list';
5
6
  var API_COUNTRIES = 'https://utilities.tap.company/api/v1/country/list';
6
7
  var CURRENCY_PATH = 'https://utilities.tap.company/api/v1/currency/iso';
@@ -69,6 +70,7 @@ export var ENDPOINT_PATHS = {
69
70
  SANDBOX_BASE_URL: SANDBOX_BASE_URL,
70
71
  PRODUCTION_BASE_URL: PRODUCTION_BASE_URL,
71
72
  DEV_BASE_URL: DEV_BASE_URL,
73
+ BETA_BASE_URL: BETA_BASE_URL,
72
74
  BUSINESS_COUNTRIES: API_BUSINESS_COUNTRIES,
73
75
  COUNTRIES: API_COUNTRIES,
74
76
  IP: IP_PATH,
@@ -1,5 +1,7 @@
1
1
  import { ScreenStepNavigation, BusinessType } from '../@types';
2
2
  export declare const CONNECT_DEV_URL = "https://connect.dev.tap.company";
3
+ export declare const CONNECT_SANDBOX_URL = "https://connect.sandbox.tap.company";
4
+ export declare const CONNECT_BETA_URL = "https://connect.beta.tap.company";
3
5
  export declare const CONNECT_PROD_URL = "https://connect.tap.company";
4
6
  export declare const CLIENT_ORIGIN: string;
5
7
  export declare const TAP_WEBSITE = "https://www.tap.company/";
@@ -11,6 +13,7 @@ export declare const LOCAL_STORAGE_KEYS: {
11
13
  export declare const SCOPE_AUTH = "auth";
12
14
  export declare const DEFAULT_COUNTRY_ISO2 = "KW";
13
15
  export declare const NAFATH_VERIFICATION_FAILED = "nafath_verification_failed";
16
+ export declare const COLLECT_DOB_INFO_NAFATH = "collect_date_of_birth";
14
17
  export declare const EXTERNAL_LINKS: {
15
18
  TOS_EN: string;
16
19
  TOS_AR: string;
@@ -90,6 +93,7 @@ export declare const CONNECT_STEP_NAMES: {
90
93
  VERIFY_AUTH_MOBILE: string;
91
94
  CREATE_AUTH_NID: string;
92
95
  VERIFY_AUTH_NID: string;
96
+ UPDATE_LEAD_DOB: string;
93
97
  UPDATE_LEAD_INDIVIDUAL: string;
94
98
  UPDATE_LEAD_BRAND: string;
95
99
  UPDATE_BRAND_INFO: string;
@@ -106,6 +110,7 @@ export declare const AUTH_STEP_NAMES: {
106
110
  VERIFY_AUTH_EMAIL: string;
107
111
  CREATE_AUTH_NID: string;
108
112
  VERIFY_AUTH_NID: string;
113
+ UPDATE_DOB_INFO: string;
109
114
  };
110
115
  export declare const CONNECT_EXPRESS_STEP_NAMES: {
111
116
  CREATE_AUTH_MOBILE: string;
@@ -116,6 +121,7 @@ export declare const CONNECT_EXPRESS_STEP_NAMES: {
116
121
  VERIFY_AUTH_NID: string;
117
122
  IDENTITY_AUTH: string;
118
123
  VERIFY_IDENTITY_AUTH: string;
124
+ UPDATE_LEAD_DOB: string;
119
125
  UPDATE_LEAD_INDIVIDUAL: string;
120
126
  UPDATE_LEAD_BRAND_BUSINESS: string;
121
127
  UPDATE_BRAND_INFO: string;
@@ -137,6 +143,7 @@ export declare const BUSINESS_STEP_NAMES: {
137
143
  IDENTITY_AUTH: string;
138
144
  CREATE_AUTH_CIVIL_ID: string;
139
145
  IDENTITY_VERIFY_AUTH: string;
146
+ BUSINESS_DOB_INFO: string;
140
147
  BUSINESS_CR_INFO: string;
141
148
  BUSINESS_INFO_CONFIRM: string;
142
149
  BUSINESS_CR_ACTIVITIES: string;
@@ -1,5 +1,7 @@
1
1
  import { BusinessType } from '../@types';
2
2
  export var CONNECT_DEV_URL = 'https://connect.dev.tap.company';
3
+ export var CONNECT_SANDBOX_URL = 'https://connect.sandbox.tap.company';
4
+ export var CONNECT_BETA_URL = 'https://connect.beta.tap.company';
3
5
  export var CONNECT_PROD_URL = 'https://connect.tap.company';
4
6
  export var CLIENT_ORIGIN = window.location.origin;
5
7
  export var TAP_WEBSITE = 'https://www.tap.company/';
@@ -11,6 +13,7 @@ export var LOCAL_STORAGE_KEYS = {
11
13
  export var SCOPE_AUTH = 'auth';
12
14
  export var DEFAULT_COUNTRY_ISO2 = 'KW';
13
15
  export var NAFATH_VERIFICATION_FAILED = 'nafath_verification_failed';
16
+ export var COLLECT_DOB_INFO_NAFATH = 'collect_date_of_birth';
14
17
  export var EXTERNAL_LINKS = {
15
18
  TOS_EN: '/en/terms-conditions',
16
19
  TOS_AR: '/ar/terms-conditions',
@@ -60,7 +63,7 @@ export var CONNECT_SCREENS_NAVIGATION = [
60
63
  },
61
64
  {
62
65
  name: 'CONNECT_VERIFY_NAFATH_STEP',
63
- next: 'CONNECT_INDIVIDUAL_STEP',
66
+ next: ['CONNECT_INDIVIDUAL_STEP', 'CONNECT_DOB_STEP'],
64
67
  prev: 'CONNECT_NID_STEP',
65
68
  order: 2
66
69
  },
@@ -70,10 +73,16 @@ export var CONNECT_SCREENS_NAVIGATION = [
70
73
  prev: ['CONNECT_MOBILE_STEP', 'CONNECT_NID_STEP'],
71
74
  order: 2
72
75
  },
76
+ {
77
+ name: 'CONNECT_DOB_STEP',
78
+ next: 'CONNECT_INDIVIDUAL_STEP',
79
+ prev: 'CONNECT_NID_STEP',
80
+ order: 2
81
+ },
73
82
  {
74
83
  name: 'CONNECT_INDIVIDUAL_STEP',
75
84
  next: 'CONNECT_MERCHANT_INFO_STEP',
76
- prev: ['CONNECT_MOBILE_STEP', 'CONNECT_NID_STEP', 'CONNECT_CIVIL_ID_STEP'],
85
+ prev: ['CONNECT_MOBILE_STEP', 'CONNECT_NID_STEP', 'CONNECT_CIVIL_ID_STEP', 'CONNECT_DOB_STEP'],
77
86
  order: 3
78
87
  },
79
88
  {
@@ -130,6 +139,7 @@ export var CONNECT_EXPRESS_SCREENS_NAVIGATION = [
130
139
  name: 'CONNECT_EXPRESS_VERIFY_NAFATH_STEP',
131
140
  next: [
132
141
  'CONNECT_EXPRESS_COLLECT_INDIVIDUAL_INFO_STEP',
142
+ 'CONNECT_EXPRESS_COLLECT_DOB_INFO_STEP',
133
143
  'CONNECT_EXPRESS_WAITING_FOR_CREATING_ACCOUNT_STEP',
134
144
  'CONNECT_EXPRESS_AUTHENTICATION_LIST_STEP'
135
145
  ],
@@ -190,7 +200,11 @@ export var CONNECT_EXPRESS_SCREENS_NAVIGATION = [
190
200
  },
191
201
  {
192
202
  name: 'CONNECT_EXPRESS_IDENTITY_VERIFY_NAFATH_STEP',
193
- next: ['CONNECT_EXPRESS_COLLECT_INDIVIDUAL_INFO_STEP', 'CONNECT_EXPRESS_WAITING_FOR_CREATING_ACCOUNT_STEP'],
203
+ next: [
204
+ 'CONNECT_EXPRESS_COLLECT_INDIVIDUAL_INFO_STEP',
205
+ 'CONNECT_EXPRESS_COLLECT_DOB_INFO_STEP',
206
+ 'CONNECT_EXPRESS_WAITING_FOR_CREATING_ACCOUNT_STEP'
207
+ ],
194
208
  prev: 'CONNECT_EXPRESS_NID_MISSED_STEP',
195
209
  order: 4
196
210
  },
@@ -200,6 +214,12 @@ export var CONNECT_EXPRESS_SCREENS_NAVIGATION = [
200
214
  prev: 'CONNECT_EXPRESS_CIVIL_ID_MISSED_STEP',
201
215
  order: 4
202
216
  },
217
+ {
218
+ name: 'CONNECT_EXPRESS_COLLECT_DOB_INFO_STEP',
219
+ next: ['CONNECT_EXPRESS_COLLECT_INDIVIDUAL_INFO_STEP', 'CONNECT_EXPRESS_WAITING_FOR_CREATING_ACCOUNT_STEP'],
220
+ prev: ['CONNECT_EXPRESS_NID_STEP', 'CONNECT_EXPRESS_NID_MISSED_STEP'],
221
+ order: 5
222
+ },
203
223
  {
204
224
  name: 'CONNECT_EXPRESS_COLLECT_INDIVIDUAL_INFO_STEP',
205
225
  next: ['CONNECT_EXPRESS_COLLECT_BUSINESS_INFO_STEP', 'CONNECT_EXPRESS_WAITING_FOR_CREATING_ACCOUNT_STEP'],
@@ -208,7 +228,8 @@ export var CONNECT_EXPRESS_SCREENS_NAVIGATION = [
208
228
  'CONNECT_EXPRESS_NID_STEP',
209
229
  'CONNECT_EXPRESS_CIVIL_ID_STEP',
210
230
  'CONNECT_EXPRESS_CIVIL_ID_MISSED_STEP',
211
- 'CONNECT_EXPRESS_NID_MISSED_STEP'
231
+ 'CONNECT_EXPRESS_NID_MISSED_STEP',
232
+ 'CONNECT_EXPRESS_COLLECT_DOB_INFO_STEP'
212
233
  ],
213
234
  order: 5
214
235
  },
@@ -294,7 +315,7 @@ export var AUTH_SCREENS_NAVIGATION = [
294
315
  },
295
316
  {
296
317
  name: 'AUTH_NAFATH_VERIFY_STEP',
297
- next: 'AUTH_PREPARING_DATA_STEP',
318
+ next: ['AUTH_PREPARING_DATA_STEP', 'AUTH_DOB_STEP'],
298
319
  prev: 'AUTH_NID_STEP',
299
320
  order: 2
300
321
  },
@@ -316,6 +337,12 @@ export var AUTH_SCREENS_NAVIGATION = [
316
337
  prev: 'AUTH_CIVIL_ID_STEP',
317
338
  order: 2
318
339
  },
340
+ {
341
+ name: 'AUTH_DOB_STEP',
342
+ next: 'AUTH_PREPARING_DATA_STEP',
343
+ prev: 'AUTH_NID_STEP',
344
+ order: 2
345
+ },
319
346
  {
320
347
  name: 'AUTH_PREPARING_DATA_STEP',
321
348
  next: ['AUTH_AUTHENTICATION_LIST_STEP', 'AUTH_ACCOUNT_NOT_FOUND_STEP'],
@@ -370,7 +397,8 @@ export var BUSINESS_SCREENS_NAVIGATION = [
370
397
  'BUSINESS_ACTIVITIES_STEP',
371
398
  'BUSINESS_SUCCESS_FOUR_FLOWS_BUTTONS_STEP',
372
399
  'BUSINESS_CIVIL_ID_STEP',
373
- 'BUSINESS_VERIFY_BRAND_INFO'
400
+ 'BUSINESS_VERIFY_BRAND_INFO',
401
+ 'BUSINESS_DOB_STEP'
374
402
  ],
375
403
  prev: '',
376
404
  order: 1
@@ -401,14 +429,20 @@ export var BUSINESS_SCREENS_NAVIGATION = [
401
429
  },
402
430
  {
403
431
  name: 'BUSINESS_VERIFY_NAFATH_STEP',
404
- next: 'BUSINESS_BUSINESS_TYPE_STEP',
432
+ next: ['BUSINESS_BUSINESS_TYPE_STEP', 'BUSINESS_DOB_STEP'],
405
433
  prev: 'BUSINESS_IDBOD_STEP',
406
434
  order: 3
407
435
  },
436
+ {
437
+ name: 'BUSINESS_DOB_STEP',
438
+ next: 'BUSINESS_BUSINESS_TYPE_STEP',
439
+ prev: 'BUSINESS_IDBOD_STEP',
440
+ order: 2
441
+ },
408
442
  {
409
443
  name: 'BUSINESS_BUSINESS_TYPE_STEP',
410
444
  next: ['BUSINESS_ACTIVITIES_STEP', 'BUSINESS_VERIFY_BRAND_INFO'],
411
- prev: 'BUSINESS_IDBOD_STEP',
445
+ prev: ['BUSINESS_IDBOD_STEP', 'BUSINESS_DOB_STEP'],
412
446
  order: 2
413
447
  },
414
448
  {
@@ -881,6 +915,7 @@ export var CONNECT_STEP_NAMES = {
881
915
  VERIFY_AUTH_MOBILE: 'connect_verify_auth_mobile',
882
916
  CREATE_AUTH_NID: 'connect_create_auth_nid',
883
917
  VERIFY_AUTH_NID: 'connect_verify_auth_nid',
918
+ UPDATE_LEAD_DOB: 'connect_update_lead_dob',
884
919
  UPDATE_LEAD_INDIVIDUAL: 'connect_update_lead_individual',
885
920
  UPDATE_LEAD_BRAND: 'connect_update_lead_brand',
886
921
  UPDATE_BRAND_INFO: 'connect_update_brand_info',
@@ -896,7 +931,8 @@ export var AUTH_STEP_NAMES = {
896
931
  VERIFY_AUTH_MOBILE: 'auth_verify_auth_mobile',
897
932
  VERIFY_AUTH_EMAIL: 'auth_verify_auth_email',
898
933
  CREATE_AUTH_NID: 'auth_create_auth_nid',
899
- VERIFY_AUTH_NID: 'auth_verify_auth_nid'
934
+ VERIFY_AUTH_NID: 'auth_verify_auth_nid',
935
+ UPDATE_DOB_INFO: 'auth_update_dob_info'
900
936
  };
901
937
  export var CONNECT_EXPRESS_STEP_NAMES = {
902
938
  CREATE_AUTH_MOBILE: 'connect_express_create_auth_mobile',
@@ -907,6 +943,7 @@ export var CONNECT_EXPRESS_STEP_NAMES = {
907
943
  VERIFY_AUTH_NID: 'connect_express_verify_auth_nid',
908
944
  IDENTITY_AUTH: 'connect_express_identity_auth',
909
945
  VERIFY_IDENTITY_AUTH: 'connect_express_verify_identity_auth',
946
+ UPDATE_LEAD_DOB: 'connect_express_update_lead_dob',
910
947
  UPDATE_LEAD_INDIVIDUAL: 'connect_express_update_lead_individual',
911
948
  UPDATE_LEAD_BRAND_BUSINESS: 'connect_express_update_lead_brand_business',
912
949
  UPDATE_BRAND_INFO: 'connect_express_update_brand_info',
@@ -928,6 +965,7 @@ export var BUSINESS_STEP_NAMES = {
928
965
  IDENTITY_AUTH: 'business_identity_auth',
929
966
  CREATE_AUTH_CIVIL_ID: 'business_create_auth_civil_id',
930
967
  IDENTITY_VERIFY_AUTH: 'business_identity_auth_verify',
968
+ BUSINESS_DOB_INFO: 'business_dob_info',
931
969
  BUSINESS_CR_INFO: 'business_cr_info',
932
970
  BUSINESS_INFO_CONFIRM: 'business_info_confirm',
933
971
  BUSINESS_CR_ACTIVITIES: 'business_cr_activities',
@@ -1,5 +1,5 @@
1
1
  import { RootState } from '../../../app/store';
2
- import { ActionState, AuthEmailFormValues, AuthForType, AuthMerchantFormValues, AuthenticationListFormValues, CivilFormValues, CountryCode, FlowsTypes, MobileFormValues, NIDFormValues, OTPFormValues, PasswordFormValues, SharedState } from '../../../@types';
2
+ import { ActionState, AuthEmailFormValues, AuthForType, AuthMerchantFormValues, AuthenticationListFormValues, CivilFormValues, CountryCode, DOBFormValues, FlowsTypes, MobileFormValues, NIDFormValues, OTPFormValues, PasswordFormValues, SharedState } from '../../../@types';
3
3
  export declare const updateBusinessCountry: import("@reduxjs/toolkit").AsyncThunk<any, string, {}>;
4
4
  export declare const retrieveLeadIdentityByIdAsync: import("@reduxjs/toolkit").AsyncThunk<{
5
5
  data: any;
@@ -33,6 +33,10 @@ interface verifyNafathParams {
33
33
  onFailure?: () => void;
34
34
  }
35
35
  export declare const verifyNafath: import("@reduxjs/toolkit").AsyncThunk<any, verifyNafathParams, {}>;
36
+ export declare const updateLeadDOB: import("@reduxjs/toolkit").AsyncThunk<{
37
+ data: any;
38
+ formData: DOBFormValues;
39
+ }, DOBFormValues, {}>;
36
40
  export declare const createCivilIdAuth: import("@reduxjs/toolkit").AsyncThunk<{
37
41
  response: any;
38
42
  formData: CivilFormValues;
@@ -67,6 +71,7 @@ export interface authData {
67
71
  nidData: NIDFormValues;
68
72
  civilIdData: CivilFormValues;
69
73
  emailData: AuthEmailFormValues;
74
+ dobData: DOBFormValues;
70
75
  otpData: OTPFormValues & {
71
76
  authFor?: AuthForType;
72
77
  };
@@ -57,7 +57,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
57
57
  var _a;
58
58
  import { createAsyncThunk, createSlice } from '@reduxjs/toolkit';
59
59
  import { AuthForType, AuthTypeNumber, FlowsTypes, MigrationStatus } from '../../../@types';
60
- import { ADD_NEW_ENTITY, AUTH_STEP_NAMES, IDENTIFICATION_TYPE, NAFATH_VERIFICATION_FAILED, SCOPE_AUTH, defaultCountry } from '../../../constants';
60
+ import { ADD_NEW_ENTITY, AUTH_STEP_NAMES, COLLECT_DOB_INFO_NAFATH, IDENTIFICATION_TYPE, NAFATH_VERIFICATION_FAILED, SCOPE_AUTH, defaultCountry } from '../../../constants';
61
61
  import API from '../../../api';
62
62
  import { handleCurrentActiveScreen, handleNextScreenStep, handleOpen, handlePrevScreenStep, handleSetCountryByIso2 } from '../../../app/settings';
63
63
  import { findCountryByIddPrefix, openConnect, sendCustomEventToGTM, sleep } from '../../../utils';
@@ -397,7 +397,7 @@ export var createNafathAuth = createAsyncThunk('auth/createNafathAuth', function
397
397
  });
398
398
  }); });
399
399
  export var verifyNafath = createAsyncThunk('auth/verifyNafath', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
400
- var _a, settings, auth, authResponse, expiry, scope, interval, maxCalls, count, data, isSuccess, isFailed;
400
+ var _a, settings, auth, authResponse, expiry, scope, interval, maxCalls, _loop_1, count, state_1;
401
401
  var _b, _c, _d, _e, _f;
402
402
  return __generator(this, function (_g) {
403
403
  switch (_g.label) {
@@ -408,39 +408,79 @@ export var verifyNafath = createAsyncThunk('auth/verifyNafath', function (params
408
408
  scope = settings.data.appConfig.scope;
409
409
  interval = 3;
410
410
  maxCalls = Math.floor(expiry / interval);
411
+ _loop_1 = function (count) {
412
+ var data, isSuccess, isFailed, screen_1;
413
+ return __generator(this, function (_h) {
414
+ switch (_h.label) {
415
+ case 0:
416
+ if (thunkApi.signal.aborted) {
417
+ return [2, "break"];
418
+ }
419
+ return [4, API.authService.getVerifyAuth(authResponse === null || authResponse === void 0 ? void 0 : authResponse.auth_token)];
420
+ case 1:
421
+ data = _h.sent();
422
+ isSuccess = ((_b = data.status) === null || _b === void 0 ? void 0 : _b.toLowerCase()) === 'success';
423
+ isFailed = ((_c = data === null || data === void 0 ? void 0 : data.status) === null || _c === void 0 ? void 0 : _c.toLowerCase()) === 'failed';
424
+ if (isFailed) {
425
+ (_d = params.onFailure) === null || _d === void 0 ? void 0 : _d.call(params);
426
+ return [2, { value: data }];
427
+ }
428
+ if (isSuccess) {
429
+ if (scope === 'merchant') {
430
+ openConnect(settings.data.appConfig.publicKey, settings.data.businessCountry.iso2);
431
+ return [2, { value: data }];
432
+ }
433
+ (_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, params);
434
+ screen_1 = data.step_name === COLLECT_DOB_INFO_NAFATH ? 'AUTH_DOB_STEP' : 'AUTH_PREPARING_DATA_STEP';
435
+ sleep(100).then(function () { return thunkApi.dispatch(handleNextScreenStep(screen_1)); });
436
+ return [2, { value: data }];
437
+ }
438
+ return [4, sleep(interval * 1000)];
439
+ case 2:
440
+ _h.sent();
441
+ return [2];
442
+ }
443
+ });
444
+ };
411
445
  count = 1;
412
446
  _g.label = 1;
413
447
  case 1:
414
- if (!(count <= maxCalls)) return [3, 5];
415
- if (thunkApi.signal.aborted) {
416
- return [3, 5];
417
- }
418
- return [4, API.authService.getVerifyAuth(authResponse === null || authResponse === void 0 ? void 0 : authResponse.auth_token)];
448
+ if (!(count <= maxCalls)) return [3, 4];
449
+ return [5, _loop_1(count)];
419
450
  case 2:
420
- data = _g.sent();
421
- isSuccess = ((_b = data.status) === null || _b === void 0 ? void 0 : _b.toLowerCase()) === 'success';
422
- isFailed = ((_c = data === null || data === void 0 ? void 0 : data.status) === null || _c === void 0 ? void 0 : _c.toLowerCase()) === 'failed';
423
- if (isFailed) {
424
- (_d = params.onFailure) === null || _d === void 0 ? void 0 : _d.call(params);
425
- return [2, data];
426
- }
427
- if (isSuccess) {
428
- if (scope === 'merchant') {
429
- openConnect(settings.data.appConfig.publicKey, settings.data.businessCountry.iso2);
430
- return [2, data];
431
- }
432
- (_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, params);
433
- sleep(100).then(function () { return thunkApi.dispatch(handleNextScreenStep('AUTH_PREPARING_DATA_STEP')); });
434
- return [2, data];
435
- }
436
- return [4, sleep(interval * 1000)];
451
+ state_1 = _g.sent();
452
+ if (typeof state_1 === "object")
453
+ return [2, state_1.value];
454
+ if (state_1 === "break")
455
+ return [3, 4];
456
+ _g.label = 3;
437
457
  case 3:
438
- _g.sent();
439
- _g.label = 4;
440
- case 4:
441
458
  count++;
442
459
  return [3, 1];
443
- case 5: throw new Error(NAFATH_VERIFICATION_FAILED);
460
+ case 4: throw new Error(NAFATH_VERIFICATION_FAILED);
461
+ }
462
+ });
463
+ }); });
464
+ export var updateLeadDOB = createAsyncThunk('auth/updateLeadDOB', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
465
+ var _a, settings, auth, leadId, requestBody, data;
466
+ var _b, _c, _d, _e;
467
+ return __generator(this, function (_f) {
468
+ switch (_f.label) {
469
+ case 0:
470
+ _a = thunkApi.getState(), settings = _a.settings, auth = _a.auth;
471
+ leadId = ((_c = (_b = auth.data.responseData) === null || _b === void 0 ? void 0 : _b.authResponse) === null || _c === void 0 ? void 0 : _c.lead_id) || '';
472
+ requestBody = {
473
+ id: leadId,
474
+ date_of_birth: params.dob,
475
+ step_name: AUTH_STEP_NAMES.UPDATE_DOB_INFO,
476
+ encryption_contract: ['date_of_birth']
477
+ };
478
+ return [4, API.leadService.updateLead(requestBody)];
479
+ case 1:
480
+ data = _f.sent();
481
+ thunkApi.dispatch(handleNextScreenStep());
482
+ (_e = (_d = settings.data.appConfig).onStepCompleted) === null || _e === void 0 ? void 0 : _e.call(_d, settings.data.activeScreen.name, requestBody);
483
+ return [2, { data: data, formData: params }];
444
484
  }
445
485
  });
446
486
  }); });
@@ -777,6 +817,9 @@ var initialState = {
777
817
  emailData: {
778
818
  email: ''
779
819
  },
820
+ dobData: {
821
+ dob: ''
822
+ },
780
823
  otpData: {
781
824
  otp: '',
782
825
  authFor: AuthForType.MOBILE
@@ -989,6 +1032,21 @@ export var authSlice = createSlice({
989
1032
  if (error !== 'Aborted') {
990
1033
  state.error = error;
991
1034
  }
1035
+ })
1036
+ .addCase(updateLeadDOB.pending, function (state, action) {
1037
+ state.loading = true;
1038
+ state.error = null;
1039
+ })
1040
+ .addCase(updateLeadDOB.fulfilled, function (state, action) {
1041
+ var _a;
1042
+ state.loading = false;
1043
+ var _b = action.payload, data = _b.data, formData = _b.formData;
1044
+ state.data.dobData = formData;
1045
+ state.data.responseData = __assign(__assign({}, state.data.responseData), { leadResponse: __assign(__assign({}, (_a = state.data.responseData) === null || _a === void 0 ? void 0 : _a.leadResponse), data) });
1046
+ })
1047
+ .addCase(updateLeadDOB.rejected, function (state, action) {
1048
+ state.loading = false;
1049
+ state.error = action.error.message;
992
1050
  })
993
1051
  .addCase(createCivilIdAuth.pending, function (state) {
994
1052
  state.loading = true;
@@ -1,7 +1,8 @@
1
1
  import { RootState } from '../../../app/store';
2
- import { ActivitiesFormValues, CustomersFormValues, BusinessTypeFormValues, NIDFormValues, OTPFormValues, ResponseData, SharedState, FlowsTypes, CivilFormValues, ActionState, AsyncThunkParams } from '../../../@types';
2
+ import { ActivitiesFormValues, CustomersFormValues, BusinessTypeFormValues, NIDFormValues, OTPFormValues, ResponseData, SharedState, FlowsTypes, CivilFormValues, ActionState, AsyncThunkParams, DOBFormValues } from '../../../@types';
3
3
  export declare const verifyLeadToken: import("@reduxjs/toolkit").AsyncThunk<{
4
4
  data: any;
5
+ verifyNextStepName: any;
5
6
  isicActivityList: any;
6
7
  leadData: any;
7
8
  token: string;
@@ -12,6 +13,7 @@ export declare const verifyLeadToken: import("@reduxjs/toolkit").AsyncThunk<{
12
13
  data: any;
13
14
  isRequireOTP: boolean;
14
15
  token: string;
16
+ verifyNextStepName: any;
15
17
  isicActivityList?: undefined;
16
18
  leadData?: undefined;
17
19
  brandData?: undefined;
@@ -19,9 +21,11 @@ export declare const verifyLeadToken: import("@reduxjs/toolkit").AsyncThunk<{
19
21
  }, string, {}>;
20
22
  export declare const resendOTP: import("@reduxjs/toolkit").AsyncThunk<{
21
23
  data: any;
24
+ verifyNextStepName: any;
22
25
  }, void, {}>;
23
26
  export declare const verifyLeadOTP: import("@reduxjs/toolkit").AsyncThunk<{
24
27
  data: any;
28
+ verifyNextStepName: any;
25
29
  isicActivityList: any;
26
30
  formData: {
27
31
  isNID: boolean;
@@ -34,7 +38,13 @@ interface verifyNafathParams {
34
38
  onSuccess?: () => void;
35
39
  onFailure?: () => void;
36
40
  }
37
- export declare const verifyNafath: import("@reduxjs/toolkit").AsyncThunk<any, verifyNafathParams, {}>;
41
+ export declare const verifyNafath: import("@reduxjs/toolkit").AsyncThunk<{
42
+ response: any;
43
+ isNextScreenDob?: undefined;
44
+ } | {
45
+ response: any;
46
+ isNextScreenDob: boolean;
47
+ }, verifyNafathParams, {}>;
38
48
  interface verifyPACIParams {
39
49
  onSuccess?: () => void;
40
50
  }
@@ -54,6 +64,10 @@ export declare const updateLeadIdentity: import("@reduxjs/toolkit").AsyncThunk<{
54
64
  termAndConditionChecked?: boolean | undefined;
55
65
  };
56
66
  }, NIDFormValues, {}>;
67
+ export declare const updateLeadDOB: import("@reduxjs/toolkit").AsyncThunk<{
68
+ data: any;
69
+ formData: DOBFormValues;
70
+ }, DOBFormValues, {}>;
57
71
  export declare const retrieveEntityList: import("@reduxjs/toolkit").AsyncThunk<any, {
58
72
  leadId: string;
59
73
  }, {}>;
@@ -109,7 +123,10 @@ export interface BusinessData {
109
123
  type: string;
110
124
  };
111
125
  civilIdData: CivilFormValues & ResponseData;
112
- businessTypeData: BusinessTypeFormValues & ResponseData;
126
+ dobData: DOBFormValues & ResponseData;
127
+ businessTypeData: BusinessTypeFormValues & ResponseData & {
128
+ isPrevDob?: boolean;
129
+ };
113
130
  activitiesData: ActivitiesFormValues & ResponseData;
114
131
  customersData: CustomersFormValues & ResponseData;
115
132
  flowName: FlowsTypes;