@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
@@ -6,17 +6,16 @@ interface verifyLeadTokenProps {
6
6
  }
7
7
  export declare const verifyLeadToken: import("@reduxjs/toolkit").AsyncThunk<{
8
8
  data: any;
9
+ individualData: any;
10
+ boardResponse: any;
9
11
  token: string;
10
12
  }, verifyLeadTokenProps, {}>;
11
13
  export declare const resendOTP: import("@reduxjs/toolkit").AsyncThunk<{
12
14
  data: any;
13
15
  }, void, {}>;
14
- declare type RetrieveBoardProps = {
15
- boardId: string;
16
- individualId: string;
17
- individualType: string;
18
- };
19
- export declare const retrieveBoardDetails: import("@reduxjs/toolkit").AsyncThunk<any, RetrieveBoardProps, {}>;
16
+ export declare const retrieveBoardDetails: import("@reduxjs/toolkit").AsyncThunk<{
17
+ data: any;
18
+ }, string, {}>;
20
19
  export declare const verifyPasswordLeadOTP: import("@reduxjs/toolkit").AsyncThunk<{
21
20
  data: any;
22
21
  formData: {
@@ -28,32 +27,32 @@ export declare const createPassword: import("@reduxjs/toolkit").AsyncThunk<{
28
27
  formData: PasswordCreateFormValues;
29
28
  }, PasswordCreateFormValues, {}>;
30
29
  export declare const updateBoardSuccess: import("@reduxjs/toolkit").AsyncThunk<{
31
- data: any;
30
+ response: any;
31
+ formData: void;
32
+ data?: undefined;
32
33
  flows?: undefined;
33
34
  } | {
34
35
  data: any;
35
36
  flows: any;
37
+ response?: undefined;
38
+ formData?: undefined;
36
39
  } | undefined, void, {}>;
37
40
  export declare const retrieveBoardStatus: import("@reduxjs/toolkit").AsyncThunk<{
38
41
  flows: any;
39
42
  }, void, {}>;
40
- interface verifyOperationTokenProps {
43
+ export declare const verifyOperationToken: import("@reduxjs/toolkit").AsyncThunk<{
44
+ data: any;
41
45
  token: string;
42
46
  boardId: string;
43
47
  boardInfoId: string;
44
- userId: string;
45
- userType: string;
46
- }
47
- export declare const verifyOperationToken: import("@reduxjs/toolkit").AsyncThunk<{
48
- recipient?: {
49
- id: string;
50
- type: string;
51
- } | undefined;
52
- data: any;
48
+ individualData: any;
49
+ boardResponse: any;
50
+ flows: any;
51
+ }, {
53
52
  token: string;
54
53
  boardId: string;
55
54
  boardInfoId: string;
56
- }, verifyOperationTokenProps, {}>;
55
+ }, {}>;
57
56
  export declare const resendOperationOTP: import("@reduxjs/toolkit").AsyncThunk<{
58
57
  data: any;
59
58
  }, void, {}>;
@@ -70,7 +69,14 @@ export declare const resetPassword: import("@reduxjs/toolkit").AsyncThunk<{
70
69
  }, OTPFormValues, {}>;
71
70
  export declare const retrieveBoardResetPasswordSuccess: import("@reduxjs/toolkit").AsyncThunk<{
72
71
  id: any;
73
- flows: any;
72
+ response: {
73
+ flows?: undefined;
74
+ };
75
+ } | {
76
+ id: any;
77
+ response: {
78
+ flows: any;
79
+ };
74
80
  }, void, {}>;
75
81
  export declare const onCloseCompletePassword: import("@reduxjs/toolkit").AsyncThunk<void, void, {}>;
76
82
  declare type VerifyData = {