saafe-redirection-flow 2.0.0 → 2.2.0

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 (38) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/aa-redirection-1607251826.zip +0 -0
  3. package/docs/features/account-discovery.md +803 -0
  4. package/docs/features/authentication.md +583 -0
  5. package/docs/features/consent-management.md +740 -0
  6. package/docs/features/index.md +206 -0
  7. package/docs/features/navigation-routing.md +846 -0
  8. package/docs/features/overview.md +554 -0
  9. package/docs/features/theming-internationalization.md +982 -0
  10. package/docs/index.md +1 -1
  11. package/package.json +1 -1
  12. package/src/components/AutoDiscoveryLoader.tsx +29 -0
  13. package/src/components/LinkedAccountTypeAccordion.tsx +154 -0
  14. package/src/components/alert/alert.tsx +10 -4
  15. package/src/components/modal/HelpModal.tsx +122 -0
  16. package/src/components/session/SessionTimer.tsx +20 -33
  17. package/src/components/title/AppBar.tsx +1 -1
  18. package/src/components/ui/bottom-sheet.tsx +1 -1
  19. package/src/components/ui/frosted-panel.tsx +0 -2
  20. package/src/components/ui/otp-input.tsx +38 -6
  21. package/src/hooks/use-account-discovery.ts +13 -6
  22. package/src/hooks/use-auto-discovery.ts +226 -0
  23. package/src/index.css +3 -0
  24. package/src/pages/accounts/AccountsToProceed.tsx +598 -59
  25. package/src/pages/accounts/Discover.tsx +127 -9
  26. package/src/pages/accounts/DiscoverAccount.tsx +195 -42
  27. package/src/pages/accounts/LinkSelectedAccounts.tsx +15 -9
  28. package/src/pages/accounts/OldUser.tsx +184 -79
  29. package/src/pages/accounts/link-accounts.tsx +19 -11
  30. package/src/pages/consent/ReviewConsent.tsx +19 -10
  31. package/src/pages/consent/rejected.tsx +17 -8
  32. package/src/pages/consent/success.tsx +125 -76
  33. package/src/services/api/account.service.ts +2 -2
  34. package/src/store/fip.store.ts +74 -28
  35. package/src/store/redirect.store.ts +19 -0
  36. package/src/utils/auto-discovery.ts +126 -0
  37. package/src/utils/toast-helpers.ts +5 -0
  38. package/stage-aa-2506251021.zip +0 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,26 @@
1
+ # [2.2.0](https://gitlab.com/Networth360/saafe-redirection/compare/v2.1.0...v2.2.0) (2025-07-16)
2
+
3
+
4
+ ### Features
5
+
6
+ * feature docs added ([723221f](https://gitlab.com/Networth360/saafe-redirection/commit/723221f35d4a84bbf5d7b83ff1e434abf36aa18d))
7
+
8
+ # [2.1.0](https://gitlab.com/Networth360/saafe-redirection/compare/v2.0.0...v2.1.0) (2025-07-04)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * link signature and auto discovery ([5953384](https://gitlab.com/Networth360/saafe-redirection/commit/5953384080386c4bf29aa9b1a74bad87b31443c9))
14
+ * merger branch conflict ([b524051](https://gitlab.com/Networth360/saafe-redirection/commit/b524051f4590521933e61835aaa37105ef472bb1))
15
+ * mobile view accepted screen and help greveance ([88dd323](https://gitlab.com/Networth360/saafe-redirection/commit/88dd323530c18bcc665c0a0bd8259eef1f201665))
16
+ * otp input eye placement ([2206d3a](https://gitlab.com/Networth360/saafe-redirection/commit/2206d3ab63897f6ebfe4240b81a14781433f55c8))
17
+
18
+
19
+ ### Features
20
+
21
+ * customer support info added ([b8842bb](https://gitlab.com/Networth360/saafe-redirection/commit/b8842bb6df8a95c2d4a29f4f861d7b0241726b7a))
22
+ * **Success:** handled the rejected consent in approved screen ([d3e483e](https://gitlab.com/Networth360/saafe-redirection/commit/d3e483e1a436e62385abefb408f3fcb9dcbbf399))
23
+
1
24
  # [2.0.0](https://gitlab.com/Networth360/saafe-redirection/compare/v1.1.0...v2.0.0) (2025-07-02)
2
25
 
3
26
 
Binary file