@tap-payments/auth-jsconnect 2.8.62-beta → 2.8.62-development

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 +1 -0
  2. package/build/api/entity.d.ts +2 -2
  3. package/build/api/entity.js +12 -4
  4. package/build/api/index.d.ts +2 -2
  5. package/build/components/Tooltip/Tooltip.js +1 -1
  6. package/build/constants/api.d.ts +0 -1
  7. package/build/constants/api.js +0 -2
  8. package/build/constants/app.d.ts +0 -2
  9. package/build/constants/app.js +0 -2
  10. package/build/features/app/bank/bankStore.d.ts +13 -19
  11. package/build/features/app/bank/bankStore.js +183 -165
  12. package/build/features/app/board/boardStore.js +16 -10
  13. package/build/features/app/brand/brandStore.d.ts +16 -31
  14. package/build/features/app/brand/brandStore.js +243 -239
  15. package/build/features/app/business/businessStore.js +7 -1
  16. package/build/features/app/entity/entityStore.d.ts +20 -34
  17. package/build/features/app/entity/entityStore.js +204 -249
  18. package/build/features/app/individual/individualStore.d.ts +17 -36
  19. package/build/features/app/individual/individualStore.js +221 -270
  20. package/build/features/app/password/passwordStore.d.ts +19 -25
  21. package/build/features/app/password/passwordStore.js +170 -216
  22. package/build/features/app/tax/taxStore.d.ts +13 -7
  23. package/build/features/app/tax/taxStore.js +168 -147
  24. package/build/features/bank/screens/BankDetails/BankDetails.js +17 -4
  25. package/build/features/brand/screens/BrandActivities/BrandActivities.js +48 -11
  26. package/build/features/brand/screens/BrandInfo/BrandInfo.js +22 -4
  27. package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.js +22 -6
  28. package/build/features/business/screens/Activities/Activities.js +9 -1
  29. package/build/features/business/screens/Customers/Customers.js +9 -1
  30. package/build/features/connect/screens/BusinessCountry/BusinessCountry.js +7 -1
  31. package/build/features/entity/screens/EntityCapital/EntityCapital.js +33 -9
  32. package/build/features/entity/screens/EntityName/EntityName.js +31 -14
  33. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.js +43 -10
  34. package/build/features/individual/screens/IndividualList/IndividualList.js +7 -0
  35. package/build/features/individual/screens/IndividualList/UserList.js +3 -3
  36. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.js +73 -18
  37. package/build/features/password/Password.js +1 -1
  38. package/build/features/shared/Button/FlowsButtons.js +7 -1
  39. package/build/features/signIn/SignIn.js +10 -2
  40. package/build/features/tax/screens/TaxDetails/TaxDetails.js +7 -2
  41. package/build/hooks/index.d.ts +1 -0
  42. package/build/hooks/index.js +1 -0
  43. package/build/hooks/useFormDirtyCheck.d.ts +10 -0
  44. package/build/hooks/useFormDirtyCheck.js +66 -0
  45. package/build/utils/common.js +4 -4
  46. 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
- export declare const retrieveBoardDetails: import("@reduxjs/toolkit").AsyncThunk<{
35
- data: any;
36
- }, string, {
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
- response: any;
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
- export declare const verifyOperationToken: import("@reduxjs/toolkit").AsyncThunk<{
107
- data: any;
103
+ interface verifyOperationTokenProps {
108
104
  token: string;
109
105
  boardId: string;
110
106
  boardInfoId: string;
111
- individualData: any;
112
- boardResponse: any;
113
- flows: any;
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
- response: {
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;