@tap-payments/auth-jsconnect 2.8.60-sandbox → 2.8.61-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 (46) hide show
  1. package/build/@types/redux.d.ts +0 -1
  2. package/build/api/entity.d.ts +2 -2
  3. package/build/api/entity.js +4 -12
  4. package/build/api/index.d.ts +2 -2
  5. package/build/constants/api.d.ts +1 -0
  6. package/build/constants/api.js +2 -0
  7. package/build/constants/app.d.ts +1 -0
  8. package/build/constants/app.js +1 -0
  9. package/build/features/app/bank/bankStore.d.ts +19 -13
  10. package/build/features/app/bank/bankStore.js +165 -183
  11. package/build/features/app/board/boardStore.js +10 -16
  12. package/build/features/app/brand/brandStore.d.ts +31 -16
  13. package/build/features/app/brand/brandStore.js +239 -243
  14. package/build/features/app/business/businessStore.js +1 -7
  15. package/build/features/app/entity/entityStore.d.ts +34 -20
  16. package/build/features/app/entity/entityStore.js +249 -204
  17. package/build/features/app/individual/individualStore.d.ts +36 -17
  18. package/build/features/app/individual/individualStore.js +270 -221
  19. package/build/features/app/password/passwordStore.d.ts +25 -19
  20. package/build/features/app/password/passwordStore.js +216 -170
  21. package/build/features/app/tax/taxStore.d.ts +7 -13
  22. package/build/features/app/tax/taxStore.js +147 -168
  23. package/build/features/bank/screens/BankDetails/BankDetails.js +4 -17
  24. package/build/features/brand/screens/BrandActivities/BrandActivities.js +11 -48
  25. package/build/features/brand/screens/BrandInfo/BrandInfo.js +4 -22
  26. package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.js +6 -22
  27. package/build/features/business/screens/Activities/Activities.js +1 -9
  28. package/build/features/business/screens/Customers/Customers.js +1 -9
  29. package/build/features/connect/screens/BusinessCountry/BusinessCountry.js +1 -7
  30. package/build/features/entity/screens/EntityCapital/EntityCapital.js +9 -33
  31. package/build/features/entity/screens/EntityName/EntityName.js +14 -31
  32. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.js +10 -43
  33. package/build/features/individual/screens/IndividualList/IndividualList.js +0 -7
  34. package/build/features/individual/screens/IndividualList/UserList.js +3 -3
  35. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.js +18 -73
  36. package/build/features/password/Password.js +1 -1
  37. package/build/features/shared/Button/FlowsButtons.js +1 -7
  38. package/build/features/signIn/SignIn.js +2 -10
  39. package/build/features/tax/screens/TaxDetails/TaxDetails.js +2 -7
  40. package/build/hooks/index.d.ts +0 -1
  41. package/build/hooks/index.js +0 -1
  42. package/build/index.css +21 -1
  43. package/build/utils/common.js +3 -3
  44. package/package.json +2 -2
  45. package/build/hooks/useFormDirtyCheck.d.ts +0 -10
  46. package/build/hooks/useFormDirtyCheck.js +0 -66
@@ -8,8 +8,21 @@ interface VerifyLeadTokenProps {
8
8
  }
9
9
  export declare const verifyToken: import("@reduxjs/toolkit").AsyncThunk<{
10
10
  data: any;
11
- countries: import("../../../@types").CountryCode[];
12
- countryCode: any;
11
+ boardResponse: {
12
+ brand: any;
13
+ bank_account: any;
14
+ entity: any;
15
+ merchant: any;
16
+ merchant_id: any;
17
+ name: any;
18
+ contact: any;
19
+ individuals: any;
20
+ countries: import("../../../@types").CountryCode[];
21
+ countryCode: any;
22
+ notification: any;
23
+ business: any;
24
+ flows: any;
25
+ };
13
26
  token: string;
14
27
  userList: User[];
15
28
  }, VerifyLeadTokenProps, {}>;
@@ -57,18 +70,26 @@ export declare const retrieveDataList: import("@reduxjs/toolkit").AsyncThunk<{
57
70
  export declare const retrieveBoardStatus: import("@reduxjs/toolkit").AsyncThunk<{
58
71
  flows: any;
59
72
  }, void, {}>;
60
- declare type RetrieveBoardProps = {
61
- boardId: string;
62
- individualId?: string;
63
- individualType?: string;
64
- };
65
73
  export declare const retrieveBoardDetails: import("@reduxjs/toolkit").AsyncThunk<{
66
74
  data: any;
67
- }, RetrieveBoardProps, {}>;
75
+ }, string, {}>;
68
76
  export declare const verifyLeadOTP: import("@reduxjs/toolkit").AsyncThunk<{
69
77
  data: any;
70
- countries: import("../../../@types").CountryCode[];
71
- countryCode: any;
78
+ boardResponse: {
79
+ brand: any;
80
+ bank_account: any;
81
+ entity: any;
82
+ merchant: any;
83
+ merchant_id: any;
84
+ name: any;
85
+ contact: any;
86
+ individuals: any;
87
+ countries: import("../../../@types").CountryCode[];
88
+ countryCode: any;
89
+ notification: any;
90
+ business: any;
91
+ flows: any;
92
+ };
72
93
  formData: {
73
94
  otp: string;
74
95
  };
@@ -85,7 +106,7 @@ export declare const updateIndividualPersonalInfo: import("@reduxjs/toolkit").As
85
106
  export declare const updateIndividualInfo: import("@reduxjs/toolkit").AsyncThunk<{
86
107
  data: any;
87
108
  formData: IndividualExtraFormValues;
88
- individualData: any;
109
+ individualData: User;
89
110
  userList: any;
90
111
  isKWOrSACountry: boolean;
91
112
  }, AsyncThunkParams<IndividualExtraFormValues>, {}>;
@@ -100,13 +121,11 @@ export declare const checkEmailAvailability: import("@reduxjs/toolkit").AsyncThu
100
121
  export declare const updateBoardSuccess: import("@reduxjs/toolkit").AsyncThunk<{
101
122
  response: any;
102
123
  formData: void;
103
- data?: undefined;
104
- flows?: undefined;
124
+ individualData?: undefined;
105
125
  } | {
106
- data: any;
107
- flows: any;
108
- response?: undefined;
109
- formData?: undefined;
126
+ response: any;
127
+ formData: void;
128
+ individualData: any;
110
129
  } | undefined, void, {}>;
111
130
  export declare const onCloseCompleteIndividual: import("@reduxjs/toolkit").AsyncThunk<void, void, {}>;
112
131
  declare type VerifyData = {