@tap-payments/auth-jsconnect 2.8.61-beta → 2.8.61-sandbox

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 (45) 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/constants/api.d.ts +0 -1
  6. package/build/constants/api.js +0 -2
  7. package/build/constants/app.d.ts +0 -1
  8. package/build/constants/app.js +0 -1
  9. package/build/features/app/bank/bankStore.d.ts +13 -19
  10. package/build/features/app/bank/bankStore.js +183 -165
  11. package/build/features/app/board/boardStore.js +16 -10
  12. package/build/features/app/brand/brandStore.d.ts +16 -31
  13. package/build/features/app/brand/brandStore.js +243 -239
  14. package/build/features/app/business/businessStore.js +7 -1
  15. package/build/features/app/entity/entityStore.d.ts +20 -34
  16. package/build/features/app/entity/entityStore.js +204 -249
  17. package/build/features/app/individual/individualStore.d.ts +17 -36
  18. package/build/features/app/individual/individualStore.js +221 -270
  19. package/build/features/app/password/passwordStore.d.ts +19 -25
  20. package/build/features/app/password/passwordStore.js +170 -216
  21. package/build/features/app/tax/taxStore.d.ts +13 -7
  22. package/build/features/app/tax/taxStore.js +168 -147
  23. package/build/features/bank/screens/BankDetails/BankDetails.js +17 -4
  24. package/build/features/brand/screens/BrandActivities/BrandActivities.js +48 -11
  25. package/build/features/brand/screens/BrandInfo/BrandInfo.js +22 -4
  26. package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.js +22 -6
  27. package/build/features/business/screens/Activities/Activities.js +9 -1
  28. package/build/features/business/screens/Customers/Customers.js +9 -1
  29. package/build/features/connect/screens/BusinessCountry/BusinessCountry.js +7 -1
  30. package/build/features/entity/screens/EntityCapital/EntityCapital.js +33 -9
  31. package/build/features/entity/screens/EntityName/EntityName.js +31 -14
  32. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.js +43 -10
  33. package/build/features/individual/screens/IndividualList/IndividualList.js +7 -0
  34. package/build/features/individual/screens/IndividualList/UserList.js +3 -3
  35. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.js +73 -18
  36. package/build/features/password/Password.js +1 -1
  37. package/build/features/shared/Button/FlowsButtons.js +7 -1
  38. package/build/features/signIn/SignIn.js +10 -2
  39. package/build/features/tax/screens/TaxDetails/TaxDetails.js +7 -2
  40. package/build/hooks/index.d.ts +1 -0
  41. package/build/hooks/index.js +1 -0
  42. package/build/hooks/useFormDirtyCheck.d.ts +10 -0
  43. package/build/hooks/useFormDirtyCheck.js +66 -0
  44. package/build/utils/common.js +3 -3
  45. package/package.json +2 -2
@@ -6,16 +6,17 @@ 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
  export declare const resendOTP: import("@reduxjs/toolkit").AsyncThunk<{
14
12
  data: any;
15
13
  }, void, {}>;
16
- export declare const retrieveBoardDetails: import("@reduxjs/toolkit").AsyncThunk<{
17
- data: any;
18
- }, string, {}>;
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, {}>;
19
20
  export declare const verifyPasswordLeadOTP: import("@reduxjs/toolkit").AsyncThunk<{
20
21
  data: any;
21
22
  formData: {
@@ -27,32 +28,32 @@ export declare const createPassword: import("@reduxjs/toolkit").AsyncThunk<{
27
28
  formData: PasswordCreateFormValues;
28
29
  }, PasswordCreateFormValues, {}>;
29
30
  export declare const updateBoardSuccess: import("@reduxjs/toolkit").AsyncThunk<{
30
- response: any;
31
- formData: void;
32
- data?: undefined;
31
+ data: any;
33
32
  flows?: undefined;
34
33
  } | {
35
34
  data: any;
36
35
  flows: any;
37
- response?: undefined;
38
- formData?: undefined;
39
36
  } | undefined, void, {}>;
40
37
  export declare const retrieveBoardStatus: import("@reduxjs/toolkit").AsyncThunk<{
41
38
  flows: any;
42
39
  }, void, {}>;
43
- export declare const verifyOperationToken: import("@reduxjs/toolkit").AsyncThunk<{
44
- data: any;
40
+ interface verifyOperationTokenProps {
45
41
  token: string;
46
42
  boardId: string;
47
43
  boardInfoId: string;
48
- individualData: any;
49
- boardResponse: any;
50
- flows: any;
51
- }, {
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;
52
53
  token: string;
53
54
  boardId: string;
54
55
  boardInfoId: string;
55
- }, {}>;
56
+ }, verifyOperationTokenProps, {}>;
56
57
  export declare const resendOperationOTP: import("@reduxjs/toolkit").AsyncThunk<{
57
58
  data: any;
58
59
  }, void, {}>;
@@ -69,14 +70,7 @@ export declare const resetPassword: import("@reduxjs/toolkit").AsyncThunk<{
69
70
  }, OTPFormValues, {}>;
70
71
  export declare const retrieveBoardResetPasswordSuccess: import("@reduxjs/toolkit").AsyncThunk<{
71
72
  id: any;
72
- response: {
73
- flows?: undefined;
74
- };
75
- } | {
76
- id: any;
77
- response: {
78
- flows: any;
79
- };
73
+ flows: any;
80
74
  }, void, {}>;
81
75
  export declare const onCloseCompletePassword: import("@reduxjs/toolkit").AsyncThunk<void, void, {}>;
82
76
  declare type VerifyData = {