saafe-redirection-flow 2.0.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.
- package/.github/workflows/build-and-deploy.yml +41 -0
- package/.gitlab-ci.yml +108 -0
- package/.releaserc.json +18 -0
- package/.storybook/main.ts +28 -0
- package/.storybook/preview.ts +16 -0
- package/.storybook/vitest.setup.ts +9 -0
- package/.vite/deps/@radix-ui_react-avatar.js +230 -0
- package/.vite/deps/@radix-ui_react-avatar.js.map +7 -0
- package/.vite/deps/@radix-ui_react-slot.js +12 -0
- package/.vite/deps/@radix-ui_react-slot.js.map +7 -0
- package/.vite/deps/_metadata.json +79 -0
- package/.vite/deps/chunk-5VGQBUCU.js +597 -0
- package/.vite/deps/chunk-5VGQBUCU.js.map +7 -0
- package/.vite/deps/chunk-DC5AMYBS.js +38 -0
- package/.vite/deps/chunk-DC5AMYBS.js.map +7 -0
- package/.vite/deps/chunk-HUIEPYH7.js +11265 -0
- package/.vite/deps/chunk-HUIEPYH7.js.map +7 -0
- package/.vite/deps/chunk-TKHB4QMX.js +281 -0
- package/.vite/deps/chunk-TKHB4QMX.js.map +7 -0
- package/.vite/deps/chunk-YLDSBLSF.js +1139 -0
- package/.vite/deps/chunk-YLDSBLSF.js.map +7 -0
- package/.vite/deps/class-variance-authority.js +63 -0
- package/.vite/deps/class-variance-authority.js.map +7 -0
- package/.vite/deps/lucide-react.js +36984 -0
- package/.vite/deps/lucide-react.js.map +7 -0
- package/.vite/deps/package.json +3 -0
- package/.vite/deps/react-dom_client.js +17917 -0
- package/.vite/deps/react-dom_client.js.map +7 -0
- package/.vite/deps/react-router-dom.js +452 -0
- package/.vite/deps/react-router-dom.js.map +7 -0
- package/.vite/deps/react-router.js +234 -0
- package/.vite/deps/react-router.js.map +7 -0
- package/.vite/deps/react.js +5 -0
- package/.vite/deps/react.js.map +7 -0
- package/.vite/deps/react_jsx-dev-runtime.js +470 -0
- package/.vite/deps/react_jsx-dev-runtime.js.map +7 -0
- package/CHANGELOG.md +420 -0
- package/LICENSE +21 -0
- package/README.md +129 -0
- package/RELEASE_CHEATSHEET.md +93 -0
- package/RELEASE_NOTES.md +120 -0
- package/components.json +21 -0
- package/docs/DEPLOYMENT_WORKFLOW.md +262 -0
- package/docs/RELEASE_GUIDE.md +591 -0
- package/docs/architecture.md +432 -0
- package/docs/components.md +199 -0
- package/docs/index.md +69 -0
- package/docs/local-release-workflow.md +234 -0
- package/docs/routes.md +118 -0
- package/docs/sdk-integration.md +325 -0
- package/docs/semantic-release.md +124 -0
- package/docs/user-flow.md +206 -0
- package/eslint.config.js +28 -0
- package/index.html +19 -0
- package/install.sh +198 -0
- package/package.json +115 -0
- package/public/images/bank-logo.png +0 -0
- package/public/saafe-icon.svg +9 -0
- package/src/App.tsx +171 -0
- package/src/__tests__/url-parameters.test.ts +82 -0
- package/src/assets/brand/applestore.svg +13 -0
- package/src/assets/brand/playstore.svg +23 -0
- package/src/assets/brand/saafe-color-white-logo.svg +14 -0
- package/src/assets/brand/saafe-icon.svg +9 -0
- package/src/assets/brand/saafe-logo.svg +18 -0
- package/src/assets/icons/check-icon-dark.svg +27 -0
- package/src/assets/icons/check-icon.svg +23 -0
- package/src/components/ErrorBoundary.tsx +132 -0
- package/src/components/alert/alert.tsx +27 -0
- package/src/components/auth/AuthGuard.tsx +76 -0
- package/src/components/cards/BankCard.stories.tsx +69 -0
- package/src/components/cards/BankCard.tsx +227 -0
- package/src/components/cards/OuterCard.tsx +109 -0
- package/src/components/cards/WrapperCard.tsx +64 -0
- package/src/components/documents/PrivacyContent.tsx +1 -0
- package/src/components/dummyFooter.tsx +29 -0
- package/src/components/icons/github.tsx +12 -0
- package/src/components/language/LanguageSwitcher.tsx +44 -0
- package/src/components/layouts/FrostedLayout.stories.tsx +42 -0
- package/src/components/layouts/FrostedLayout.tsx +333 -0
- package/src/components/layouts/MobileLayout.tsx +403 -0
- package/src/components/mobile-background.tsx +136 -0
- package/src/components/mobileAppDownload.tsx +30 -0
- package/src/components/modal/ModalComp.tsx +27 -0
- package/src/components/mode-toggle.tsx +36 -0
- package/src/components/page-header.tsx +50 -0
- package/src/components/session/SessionTimeoutScreen.tsx +134 -0
- package/src/components/session/SessionTimer.tsx +173 -0
- package/src/components/step-navigation.tsx +87 -0
- package/src/components/title/AppBar.stories.tsx +50 -0
- package/src/components/title/AppBar.tsx +150 -0
- package/src/components/title/SectionTitle.tsx +31 -0
- package/src/components/ui/AnimatedButton.module.css +13 -0
- package/src/components/ui/alert.tsx +66 -0
- package/src/components/ui/animatedButton.tsx +111 -0
- package/src/components/ui/avatar.tsx +51 -0
- package/src/components/ui/badge.tsx +36 -0
- package/src/components/ui/bottom-sheet.tsx +122 -0
- package/src/components/ui/button.tsx +59 -0
- package/src/components/ui/calendar.tsx +86 -0
- package/src/components/ui/card.tsx +92 -0
- package/src/components/ui/checkbox.stories.tsx +49 -0
- package/src/components/ui/checkbox.tsx +67 -0
- package/src/components/ui/collapsible.tsx +45 -0
- package/src/components/ui/dialog.tsx +134 -0
- package/src/components/ui/document-link.tsx +26 -0
- package/src/components/ui/dot-stepper.tsx +57 -0
- package/src/components/ui/dropdown-menu.tsx +255 -0
- package/src/components/ui/form.tsx +165 -0
- package/src/components/ui/frosted-panel.stories.tsx +86 -0
- package/src/components/ui/frosted-panel.tsx +276 -0
- package/src/components/ui/input.tsx +39 -0
- package/src/components/ui/label.stories.tsx +67 -0
- package/src/components/ui/label.tsx +23 -0
- package/src/components/ui/mobile-footer.tsx +54 -0
- package/src/components/ui/modal.tsx +90 -0
- package/src/components/ui/otp-input.stories.tsx +62 -0
- package/src/components/ui/otp-input.tsx +221 -0
- package/src/components/ui/platform-specific-behavior.tsx +28 -0
- package/src/components/ui/popover.tsx +46 -0
- package/src/components/ui/progress.tsx +103 -0
- package/src/components/ui/radio-group.tsx +45 -0
- package/src/components/ui/scroll-area.tsx +56 -0
- package/src/components/ui/sdk-params-docs.tsx +53 -0
- package/src/components/ui/select.tsx +159 -0
- package/src/components/ui/separator.tsx +28 -0
- package/src/components/ui/sheet.tsx +137 -0
- package/src/components/ui/sidebar.tsx +724 -0
- package/src/components/ui/skeleton.stories.tsx +50 -0
- package/src/components/ui/skeleton.tsx +15 -0
- package/src/components/ui/sonner.tsx +23 -0
- package/src/components/ui/step.stories.tsx +132 -0
- package/src/components/ui/step.tsx +234 -0
- package/src/components/ui/stepper-progress.tsx +136 -0
- package/src/components/ui/stepper.tsx +259 -0
- package/src/components/ui/tabs.tsx +55 -0
- package/src/components/ui/tooltip.tsx +61 -0
- package/src/components/ui/url-decode-loader.tsx +36 -0
- package/src/components/ui/version-display.tsx +104 -0
- package/src/components/ui/web-footer.tsx +36 -0
- package/src/config/environments.ts +99 -0
- package/src/config/urls.ts +53 -0
- package/src/const/fiTypeCategoryMap.ts +19 -0
- package/src/contexts/LanguageContext.tsx +41 -0
- package/src/contexts/RTLContext.tsx +42 -0
- package/src/contexts/ThemeContext.tsx +93 -0
- package/src/hooks/use-account-discovery.ts +205 -0
- package/src/hooks/use-auth-query.ts +141 -0
- package/src/hooks/use-fip-query.ts +72 -0
- package/src/hooks/use-media-query.ts +32 -0
- package/src/hooks/use-mobile.ts +24 -0
- package/src/hooks/use-page-title.tsx +48 -0
- package/src/hooks/use-platform.ts +52 -0
- package/src/hooks/use-trusted-count.ts +21 -0
- package/src/hooks/use-url-decode.ts +90 -0
- package/src/hooks/useStep.ts +170 -0
- package/src/index.css +154 -0
- package/src/interfaces/app.interfaces.ts +39 -0
- package/src/interfaces/services.interfaces.ts +65 -0
- package/src/lib/i18n.ts +68 -0
- package/src/lib/utils.ts +6 -0
- package/src/locales/en/common.json +167 -0
- package/src/locales/hi/common.json +137 -0
- package/src/locales/kn/common.json +137 -0
- package/src/locales/ml/common.json +137 -0
- package/src/locales/ta/common.json +137 -0
- package/src/locales/te/common.json +137 -0
- package/src/locales/ur/common.json +138 -0
- package/src/main.tsx +46 -0
- package/src/pages/Login.tsx +363 -0
- package/src/pages/accounts/AccountsToProceed.tsx +396 -0
- package/src/pages/accounts/Discover.tsx +76 -0
- package/src/pages/accounts/DiscoverAccount.tsx +751 -0
- package/src/pages/accounts/LinkSelectedAccounts.tsx +638 -0
- package/src/pages/accounts/OldUser.tsx +329 -0
- package/src/pages/accounts/link-accounts.tsx +913 -0
- package/src/pages/consent/ReviewConsent.tsx +836 -0
- package/src/pages/consent/rejected.tsx +253 -0
- package/src/pages/consent/success.tsx +220 -0
- package/src/providers/query-provider.tsx +24 -0
- package/src/providers/toast-provider.tsx +26 -0
- package/src/services/api/account.service.ts +296 -0
- package/src/services/api/auth.service.ts +206 -0
- package/src/services/api/axios.ts +138 -0
- package/src/services/api/consent.service.ts +142 -0
- package/src/services/api/decode.service.ts +53 -0
- package/src/services/api/feedback.service.ts +34 -0
- package/src/services/api/fip.service.ts +187 -0
- package/src/services/api/index.ts +9 -0
- package/src/services/api/public.service.ts +18 -0
- package/src/services/api.ts +2 -0
- package/src/services/postMessage.service.ts +179 -0
- package/src/store/NavigationBlockContext.tsx +34 -0
- package/src/store/auth.store.ts +79 -0
- package/src/store/fip.store.ts +396 -0
- package/src/store/mandatoryConsent.store.ts +24 -0
- package/src/store/redirect.store.ts +73 -0
- package/src/store/step.store.ts +124 -0
- package/src/stories/Button.stories.ts +53 -0
- package/src/stories/Button.tsx +37 -0
- package/src/stories/Configure.mdx +364 -0
- package/src/stories/Header.stories.ts +33 -0
- package/src/stories/Header.tsx +56 -0
- package/src/stories/Page.stories.ts +32 -0
- package/src/stories/Page.tsx +73 -0
- package/src/stories/button.css +30 -0
- package/src/stories/header.css +32 -0
- package/src/stories/page.css +68 -0
- package/src/styles/rtl-utils.css +90 -0
- package/src/styles/rtl.css +105 -0
- package/src/utils/api-error.ts +26 -0
- package/src/utils/cn.ts +10 -0
- package/src/utils/error-callback.ts +116 -0
- package/src/utils/formatAccountNumber.ts +9 -0
- package/src/utils/handleIdentifiers.ts +90 -0
- package/src/utils/posthog.ts +67 -0
- package/src/utils/toast-helpers.ts +61 -0
- package/src/vite-env.d.ts +1 -0
- package/stage-aa-2506251021.zip +0 -0
- package/tsconfig.app.json +33 -0
- package/tsconfig.json +13 -0
- package/tsconfig.node.json +24 -0
- package/vite.config.ts +45 -0
- package/vitest.shims.d.ts +1 -0
- package/vitest.workspace.ts +46 -0
package/CHANGELOG.md
ADDED
@@ -0,0 +1,420 @@
|
|
1
|
+
# [2.0.0](https://gitlab.com/Networth360/saafe-redirection/compare/v1.1.0...v2.0.0) (2025-07-02)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* conflict merge with stage ([3337a44](https://gitlab.com/Networth360/saafe-redirection/commit/3337a44361c67da3c1bc469b8e4eb5eb56c13aa0))
|
7
|
+
* fixed account discovery failure from UI ([72f9b2a](https://gitlab.com/Networth360/saafe-redirection/commit/72f9b2a5a4ff2029d2a8d9f75c611d7e6b6211d1))
|
8
|
+
* removed showing multiple FIP name due to UX ([fe989cd](https://gitlab.com/Networth360/saafe-redirection/commit/fe989cd08545a5046e2b5384062e148a67eb85c9))
|
9
|
+
* update deployment workflow to prevent merge conflicts ([ceeb30b](https://gitlab.com/Networth360/saafe-redirection/commit/ceeb30ba26d5dcb609e11b518e213c8e7ee7adc9))
|
10
|
+
|
11
|
+
|
12
|
+
### BREAKING CHANGES
|
13
|
+
|
14
|
+
* Only prod branch will create semantic releases now
|
15
|
+
|
16
|
+
# [1.1.0](https://gitlab.com/Networth360/saafe-redirection/compare/v1.0.0...v1.1.0) (2025-06-25)
|
17
|
+
|
18
|
+
|
19
|
+
### Bug Fixes
|
20
|
+
|
21
|
+
* removed env label and api label from version info ([66f9281](https://gitlab.com/Networth360/saafe-redirection/commit/66f9281bb0263b06de8306063c4a47b06822eefa))
|
22
|
+
* update next to skip ([ef14299](https://gitlab.com/Networth360/saafe-redirection/commit/ef14299031f0fc997b5e3996b5e7f8afe7d0d8ab))
|
23
|
+
|
24
|
+
|
25
|
+
### Features
|
26
|
+
|
27
|
+
* prod release configs ([b94ca81](https://gitlab.com/Networth360/saafe-redirection/commit/b94ca810a5b00725d844d04f33514867604736f0))
|
28
|
+
|
29
|
+
# [1.0.0-stage.5](https://gitlab.com/Networth360/saafe-redirection/compare/v1.0.0-stage.4...v1.0.0-stage.5) (2025-06-25)
|
30
|
+
|
31
|
+
|
32
|
+
### Bug Fixes
|
33
|
+
|
34
|
+
* fixed account discovery failure from UI ([72f9b2a](https://gitlab.com/Networth360/saafe-redirection/commit/72f9b2a5a4ff2029d2a8d9f75c611d7e6b6211d1))
|
35
|
+
* main branch fix ([a05d979](https://gitlab.com/Networth360/saafe-redirection/commit/a05d9797a49177627583544aaca77f618446c242))
|
36
|
+
|
37
|
+
# [1.0.0-sandbox.4](https://gitlab.com/Networth360/saafe-redirection/compare/v1.0.0-sandbox.3...v1.0.0-sandbox.4) (2025-06-25)
|
38
|
+
|
39
|
+
|
40
|
+
### Bug Fixes
|
41
|
+
|
42
|
+
* update next to skip ([ef14299](https://gitlab.com/Networth360/saafe-redirection/commit/ef14299031f0fc997b5e3996b5e7f8afe7d0d8ab))
|
43
|
+
|
44
|
+
|
45
|
+
### Features
|
46
|
+
|
47
|
+
* prod release configs ([b94ca81](https://gitlab.com/Networth360/saafe-redirection/commit/b94ca810a5b00725d844d04f33514867604736f0))
|
48
|
+
|
49
|
+
# 1.0.0 (2025-06-24)
|
50
|
+
|
51
|
+
|
52
|
+
### Bug Fixes
|
53
|
+
|
54
|
+
* **authGuard:** fixed the redirection issue ([82fa55d](https://gitlab.com/Networth360/saafe-redirection/commit/82fa55d3845f6a3536de1c88093f9c1956eaceb1))
|
55
|
+
* conflict fixes ([6b5e3c4](https://gitlab.com/Networth360/saafe-redirection/commit/6b5e3c440d33fa87e4fdfc8ea8cfa87d8beab504))
|
56
|
+
* conflict fixes ([4f59bc6](https://gitlab.com/Networth360/saafe-redirection/commit/4f59bc6907d87fa3bf00d8ea6e3eaab7ea23042d))
|
57
|
+
* Consent reject screen adaptive responsivenes ([c564a89](https://gitlab.com/Networth360/saafe-redirection/commit/c564a89eee6cafa5c76a510b5a740264aa702399))
|
58
|
+
* **Consent:** handled the madatory consent ([e157d4a](https://gitlab.com/Networth360/saafe-redirection/commit/e157d4a95de88f38a16d2bddd05043fb7d4e506e))
|
59
|
+
* **Consent:** handled the madatory consent ([c1dcbf9](https://gitlab.com/Networth360/saafe-redirection/commit/c1dcbf9ce4ecf0f367a8f7876e2ecd284f26b3f4))
|
60
|
+
* **ConsentReview:** added the fix for consent approve ([add1f02](https://gitlab.com/Networth360/saafe-redirection/commit/add1f0286c61d2bc4f0c6286a08eda1237fa8b2c))
|
61
|
+
* **link-account:** fixed the select issue ([b8e2b1e](https://gitlab.com/Networth360/saafe-redirection/commit/b8e2b1e742f1b6e24e961e93c8826a3e0fb74df7))
|
62
|
+
* **link-account:** fixed the select issue ([1053315](https://gitlab.com/Networth360/saafe-redirection/commit/1053315d41a6f60e40964237394d9478085847f0))
|
63
|
+
* **link-account:** fixed the select issue ([91eae70](https://gitlab.com/Networth360/saafe-redirection/commit/91eae706bdbe409844e00e12c43c58540a0e6a85))
|
64
|
+
* **link-account:** hidden the add mobile number ([b5f1b47](https://gitlab.com/Networth360/saafe-redirection/commit/b5f1b47b3f332a28892f0a902736283e02e32988))
|
65
|
+
* **LinkAccount:** added the prod change ([de33056](https://gitlab.com/Networth360/saafe-redirection/commit/de33056b2db79d854b1909d19a7706e19976ccdd))
|
66
|
+
* **login:** ui correction ([d9adeb1](https://gitlab.com/Networth360/saafe-redirection/commit/d9adeb14451fc26ccde390f41ebfe0e2a25d0b1e))
|
67
|
+
* **login:** ui correction ([a615d8a](https://gitlab.com/Networth360/saafe-redirection/commit/a615d8aaa56282ca968a4ef714b137ae5e67282a))
|
68
|
+
* main branch fix ([a05d979](https://gitlab.com/Networth360/saafe-redirection/commit/a05d9797a49177627583544aaca77f618446c242))
|
69
|
+
* **old-user:** fixed the old user flow ([a55a24a](https://gitlab.com/Networth360/saafe-redirection/commit/a55a24ad91536006aaefc58700dc9d42dda2dbf2))
|
70
|
+
* release guide updated with clear guidelines ([a7fe4f6](https://gitlab.com/Networth360/saafe-redirection/commit/a7fe4f6be5ad8a90d023c272ff3cef33461f509d))
|
71
|
+
* release script ([d0c53a7](https://gitlab.com/Networth360/saafe-redirection/commit/d0c53a7a7a6d642e2eac2952ec5712265cb24cbb))
|
72
|
+
* remove old changelog ([a55cd49](https://gitlab.com/Networth360/saafe-redirection/commit/a55cd49e57fb3a2540828543b7969f78a85b3fdd))
|
73
|
+
* remove testing deployment configs ([8a8c61f](https://gitlab.com/Networth360/saafe-redirection/commit/8a8c61fb1223acdaa18442b7f1e03ccde4e04f5e))
|
74
|
+
* **reviewConsent:** handled the code 101 & 102 ([a481979](https://gitlab.com/Networth360/saafe-redirection/commit/a4819791451c6ee8342218f4110a7b6201b77418))
|
75
|
+
* ui corrections ([886d489](https://gitlab.com/Networth360/saafe-redirection/commit/886d489f2a58373cf923c179bf9e9517793ed2e2))
|
76
|
+
* **UI Corrections:** added the ui corrections ([b594f32](https://gitlab.com/Networth360/saafe-redirection/commit/b594f320be64157c30d21579889a74903247a4d1))
|
77
|
+
* **UI-bug:** added fix for linkSelectedAccount and review consent ([1e3e6a2](https://gitlab.com/Networth360/saafe-redirection/commit/1e3e6a25a6016b4b34ec7471a7a4f7e985c9cbb4))
|
78
|
+
* **UI:** added new ui corrections ([e51a9c7](https://gitlab.com/Networth360/saafe-redirection/commit/e51a9c73d7dc6bfddd35431de2aa44ce4833d58d))
|
79
|
+
* **UI:** added some ui corrections ([b3d606d](https://gitlab.com/Networth360/saafe-redirection/commit/b3d606da608cc54e9e12458a5ff412b48486f343))
|
80
|
+
* **UI:** added the ui changes ([222245f](https://gitlab.com/Networth360/saafe-redirection/commit/222245f6abe031335ffd421acbbcbfa91b3b7921))
|
81
|
+
* **UI:** hadled the success and reject screen ([8fc9bef](https://gitlab.com/Networth360/saafe-redirection/commit/8fc9bef28430caef983ac8f3840816b6117309fc))
|
82
|
+
* **UI:** hadled the success and reject screen ([e2d16f8](https://gitlab.com/Networth360/saafe-redirection/commit/e2d16f8519934126ce0ff827dd93429cda5316e0))
|
83
|
+
* **UI:** handled the duplicates ([d530ce5](https://gitlab.com/Networth360/saafe-redirection/commit/d530ce5ed81b9f2e9e01f37760561721e018f817))
|
84
|
+
* **UI:** handled the side bar select ([e392b64](https://gitlab.com/Networth360/saafe-redirection/commit/e392b643b7f43560fc834b96ebcea0e27cedc0dc))
|
85
|
+
* **ui:** refix the contents ([cace344](https://gitlab.com/Networth360/saafe-redirection/commit/cace34440cccf23a8c7f1889a36450ba14c79ebb))
|
86
|
+
|
87
|
+
|
88
|
+
### Features
|
89
|
+
|
90
|
+
* **App:** handled the non consent flow ([15f54da](https://gitlab.com/Networth360/saafe-redirection/commit/15f54daa843b1615e5c81a2f3d325799bf078131))
|
91
|
+
* Authentication and Token handlers implemented ([33256dc](https://gitlab.com/Networth360/saafe-redirection/commit/33256dc17b5453519e371c1616e2d6a9afc752f3))
|
92
|
+
* configure prod branch for production releases ([7d29b7a](https://gitlab.com/Networth360/saafe-redirection/commit/7d29b7a18d8467b56cc8d4a6df98660ebb26c199))
|
93
|
+
* **Consent:** handled the selected account ([ea48003](https://gitlab.com/Networth360/saafe-redirection/commit/ea48003c9341f2bc7275e53849ba83d27ea9b564))
|
94
|
+
* **Dashboard:** Handled the account pre select ([b23691d](https://gitlab.com/Networth360/saafe-redirection/commit/b23691dad93afd4c2fdcd65a48f6051042605824))
|
95
|
+
* dynamic footer content ([bdbb9c6](https://gitlab.com/Networth360/saafe-redirection/commit/bdbb9c6824f0b02a9be1f4e383f188f7a0ae9d73))
|
96
|
+
* fip flow Api Integrations and flow routing ([dcfacfb](https://gitlab.com/Networth360/saafe-redirection/commit/dcfacfb81daf7d962e4c373bb6224bb816760fc0))
|
97
|
+
* **Flow:** added 1 new flow ([c3bc7b1](https://gitlab.com/Networth360/saafe-redirection/commit/c3bc7b19335d7bb50ba3a75645395f965220a253))
|
98
|
+
* **Flow:** added 2 new flow ([42347ee](https://gitlab.com/Networth360/saafe-redirection/commit/42347ee84231eeb1c95a89ae9ec2e931d0f945eb))
|
99
|
+
* **Flow:** added 3 new flow ([7eceba8](https://gitlab.com/Networth360/saafe-redirection/commit/7eceba8c66842cba1783c78296d2033e2b321a1c))
|
100
|
+
* **Flow:** added old user and consent flow ([e679edf](https://gitlab.com/Networth360/saafe-redirection/commit/e679edf2393c96dcc77df92df14b6887a2496d9f))
|
101
|
+
* **flow:** added the linked bank flow ([a07119d](https://gitlab.com/Networth360/saafe-redirection/commit/a07119da3e02119661f8bd41a30b9794d83a5b9f))
|
102
|
+
* **Flow:** added the new flow ([e794fbb](https://gitlab.com/Networth360/saafe-redirection/commit/e794fbb11f4e7b04f45dbca5f8e3ddae729e8d65))
|
103
|
+
* **Flow:** added the new flow ([81b0e90](https://gitlab.com/Networth360/saafe-redirection/commit/81b0e9036a4a3868adbbc37b8d87ca531435a921))
|
104
|
+
* **Flow:** added the new flow ([203fbe7](https://gitlab.com/Networth360/saafe-redirection/commit/203fbe7fa95f096e4524fb09d134a6685a61f132))
|
105
|
+
* **Help:** added the help text ([575865a](https://gitlab.com/Networth360/saafe-redirection/commit/575865a5d90c2f0ef2d088a3792edfbd19ec6a89))
|
106
|
+
* **Initial Flow:** added the initial flow ([493668d](https://gitlab.com/Networth360/saafe-redirection/commit/493668de29f57177c7ba2ec40536c324fac93d12))
|
107
|
+
* localization and handles ([441458e](https://gitlab.com/Networth360/saafe-redirection/commit/441458e988a453badceb4ea409c12048041e725a))
|
108
|
+
* **mostPicked:** added the most picked up list ([6600d13](https://gitlab.com/Networth360/saafe-redirection/commit/6600d132aeab65218422e385cecbd2c5b2235dca))
|
109
|
+
* **NewNumber:** added new number flow ([db9d96e](https://gitlab.com/Networth360/saafe-redirection/commit/db9d96ee2dd65ab4ee90a6f5adc14fbcce835059))
|
110
|
+
* **NewNumber:** added new number flow ([c701645](https://gitlab.com/Networth360/saafe-redirection/commit/c70164599bdc7e92d58a45dcf8b1fe78bb0c7329))
|
111
|
+
* **old-user:** handled the old user flow ([e5e10d4](https://gitlab.com/Networth360/saafe-redirection/commit/e5e10d4b3c5cb61083a8a640d06721e17fe45e08))
|
112
|
+
* promote sandbox changes to stage environment ([017ec64](https://gitlab.com/Networth360/saafe-redirection/commit/017ec64fceed8cd95c962be6c0306cd8d9a53437))
|
113
|
+
* redirection flow components ([af2a43f](https://gitlab.com/Networth360/saafe-redirection/commit/af2a43f5b23d38ccd862565397fdeb16d00ab474))
|
114
|
+
* semantinc release and deployment configurations ([57de21e](https://gitlab.com/Networth360/saafe-redirection/commit/57de21e1aab236715db5b084983da22051402781))
|
115
|
+
* session timer and handler ([2bd36c2](https://gitlab.com/Networth360/saafe-redirection/commit/2bd36c2dfe90a7aa4f07d687571a69724cd29b84))
|
116
|
+
* storybook and stepper child added ([14ee819](https://gitlab.com/Networth360/saafe-redirection/commit/14ee819a832e33c8066429f7aec8614be8617340))
|
117
|
+
|
118
|
+
|
119
|
+
### BREAKING CHANGES
|
120
|
+
|
121
|
+
* Production releases now use 'prod' branch instead of 'main'
|
122
|
+
|
123
|
+
# 1.0.0 (2025-06-24)
|
124
|
+
|
125
|
+
|
126
|
+
### Bug Fixes
|
127
|
+
|
128
|
+
* **authGuard:** fixed the redirection issue ([82fa55d](https://gitlab.com/Networth360/saafe-redirection/commit/82fa55d3845f6a3536de1c88093f9c1956eaceb1))
|
129
|
+
* conflict fixes ([6b5e3c4](https://gitlab.com/Networth360/saafe-redirection/commit/6b5e3c440d33fa87e4fdfc8ea8cfa87d8beab504))
|
130
|
+
* conflict fixes ([4f59bc6](https://gitlab.com/Networth360/saafe-redirection/commit/4f59bc6907d87fa3bf00d8ea6e3eaab7ea23042d))
|
131
|
+
* Consent reject screen adaptive responsivenes ([c564a89](https://gitlab.com/Networth360/saafe-redirection/commit/c564a89eee6cafa5c76a510b5a740264aa702399))
|
132
|
+
* **Consent:** handled the madatory consent ([e157d4a](https://gitlab.com/Networth360/saafe-redirection/commit/e157d4a95de88f38a16d2bddd05043fb7d4e506e))
|
133
|
+
* **Consent:** handled the madatory consent ([c1dcbf9](https://gitlab.com/Networth360/saafe-redirection/commit/c1dcbf9ce4ecf0f367a8f7876e2ecd284f26b3f4))
|
134
|
+
* **ConsentReview:** added the fix for consent approve ([add1f02](https://gitlab.com/Networth360/saafe-redirection/commit/add1f0286c61d2bc4f0c6286a08eda1237fa8b2c))
|
135
|
+
* **link-account:** fixed the select issue ([b8e2b1e](https://gitlab.com/Networth360/saafe-redirection/commit/b8e2b1e742f1b6e24e961e93c8826a3e0fb74df7))
|
136
|
+
* **link-account:** fixed the select issue ([1053315](https://gitlab.com/Networth360/saafe-redirection/commit/1053315d41a6f60e40964237394d9478085847f0))
|
137
|
+
* **link-account:** fixed the select issue ([91eae70](https://gitlab.com/Networth360/saafe-redirection/commit/91eae706bdbe409844e00e12c43c58540a0e6a85))
|
138
|
+
* **link-account:** hidden the add mobile number ([b5f1b47](https://gitlab.com/Networth360/saafe-redirection/commit/b5f1b47b3f332a28892f0a902736283e02e32988))
|
139
|
+
* **LinkAccount:** added the prod change ([de33056](https://gitlab.com/Networth360/saafe-redirection/commit/de33056b2db79d854b1909d19a7706e19976ccdd))
|
140
|
+
* **login:** ui correction ([d9adeb1](https://gitlab.com/Networth360/saafe-redirection/commit/d9adeb14451fc26ccde390f41ebfe0e2a25d0b1e))
|
141
|
+
* **login:** ui correction ([a615d8a](https://gitlab.com/Networth360/saafe-redirection/commit/a615d8aaa56282ca968a4ef714b137ae5e67282a))
|
142
|
+
* main branch fix ([a05d979](https://gitlab.com/Networth360/saafe-redirection/commit/a05d9797a49177627583544aaca77f618446c242))
|
143
|
+
* **old-user:** fixed the old user flow ([a55a24a](https://gitlab.com/Networth360/saafe-redirection/commit/a55a24ad91536006aaefc58700dc9d42dda2dbf2))
|
144
|
+
* release guide updated with clear guidelines ([a7fe4f6](https://gitlab.com/Networth360/saafe-redirection/commit/a7fe4f6be5ad8a90d023c272ff3cef33461f509d))
|
145
|
+
* release script ([d0c53a7](https://gitlab.com/Networth360/saafe-redirection/commit/d0c53a7a7a6d642e2eac2952ec5712265cb24cbb))
|
146
|
+
* remove old changelog ([a55cd49](https://gitlab.com/Networth360/saafe-redirection/commit/a55cd49e57fb3a2540828543b7969f78a85b3fdd))
|
147
|
+
* remove testing deployment configs ([8a8c61f](https://gitlab.com/Networth360/saafe-redirection/commit/8a8c61fb1223acdaa18442b7f1e03ccde4e04f5e))
|
148
|
+
* **reviewConsent:** handled the code 101 & 102 ([a481979](https://gitlab.com/Networth360/saafe-redirection/commit/a4819791451c6ee8342218f4110a7b6201b77418))
|
149
|
+
* ui corrections ([886d489](https://gitlab.com/Networth360/saafe-redirection/commit/886d489f2a58373cf923c179bf9e9517793ed2e2))
|
150
|
+
* **UI Corrections:** added the ui corrections ([b594f32](https://gitlab.com/Networth360/saafe-redirection/commit/b594f320be64157c30d21579889a74903247a4d1))
|
151
|
+
* **UI-bug:** added fix for linkSelectedAccount and review consent ([1e3e6a2](https://gitlab.com/Networth360/saafe-redirection/commit/1e3e6a25a6016b4b34ec7471a7a4f7e985c9cbb4))
|
152
|
+
* **UI:** added new ui corrections ([e51a9c7](https://gitlab.com/Networth360/saafe-redirection/commit/e51a9c73d7dc6bfddd35431de2aa44ce4833d58d))
|
153
|
+
* **UI:** added some ui corrections ([b3d606d](https://gitlab.com/Networth360/saafe-redirection/commit/b3d606da608cc54e9e12458a5ff412b48486f343))
|
154
|
+
* **UI:** added the ui changes ([222245f](https://gitlab.com/Networth360/saafe-redirection/commit/222245f6abe031335ffd421acbbcbfa91b3b7921))
|
155
|
+
* **UI:** hadled the success and reject screen ([8fc9bef](https://gitlab.com/Networth360/saafe-redirection/commit/8fc9bef28430caef983ac8f3840816b6117309fc))
|
156
|
+
* **UI:** hadled the success and reject screen ([e2d16f8](https://gitlab.com/Networth360/saafe-redirection/commit/e2d16f8519934126ce0ff827dd93429cda5316e0))
|
157
|
+
* **UI:** handled the duplicates ([d530ce5](https://gitlab.com/Networth360/saafe-redirection/commit/d530ce5ed81b9f2e9e01f37760561721e018f817))
|
158
|
+
* **UI:** handled the side bar select ([e392b64](https://gitlab.com/Networth360/saafe-redirection/commit/e392b643b7f43560fc834b96ebcea0e27cedc0dc))
|
159
|
+
* **ui:** refix the contents ([cace344](https://gitlab.com/Networth360/saafe-redirection/commit/cace34440cccf23a8c7f1889a36450ba14c79ebb))
|
160
|
+
|
161
|
+
|
162
|
+
### Features
|
163
|
+
|
164
|
+
* **App:** handled the non consent flow ([15f54da](https://gitlab.com/Networth360/saafe-redirection/commit/15f54daa843b1615e5c81a2f3d325799bf078131))
|
165
|
+
* Authentication and Token handlers implemented ([33256dc](https://gitlab.com/Networth360/saafe-redirection/commit/33256dc17b5453519e371c1616e2d6a9afc752f3))
|
166
|
+
* configure prod branch for production releases ([7d29b7a](https://gitlab.com/Networth360/saafe-redirection/commit/7d29b7a18d8467b56cc8d4a6df98660ebb26c199))
|
167
|
+
* **Consent:** handled the selected account ([ea48003](https://gitlab.com/Networth360/saafe-redirection/commit/ea48003c9341f2bc7275e53849ba83d27ea9b564))
|
168
|
+
* **Dashboard:** Handled the account pre select ([b23691d](https://gitlab.com/Networth360/saafe-redirection/commit/b23691dad93afd4c2fdcd65a48f6051042605824))
|
169
|
+
* dynamic footer content ([bdbb9c6](https://gitlab.com/Networth360/saafe-redirection/commit/bdbb9c6824f0b02a9be1f4e383f188f7a0ae9d73))
|
170
|
+
* fip flow Api Integrations and flow routing ([dcfacfb](https://gitlab.com/Networth360/saafe-redirection/commit/dcfacfb81daf7d962e4c373bb6224bb816760fc0))
|
171
|
+
* **Flow:** added 1 new flow ([c3bc7b1](https://gitlab.com/Networth360/saafe-redirection/commit/c3bc7b19335d7bb50ba3a75645395f965220a253))
|
172
|
+
* **Flow:** added 2 new flow ([42347ee](https://gitlab.com/Networth360/saafe-redirection/commit/42347ee84231eeb1c95a89ae9ec2e931d0f945eb))
|
173
|
+
* **Flow:** added 3 new flow ([7eceba8](https://gitlab.com/Networth360/saafe-redirection/commit/7eceba8c66842cba1783c78296d2033e2b321a1c))
|
174
|
+
* **Flow:** added old user and consent flow ([e679edf](https://gitlab.com/Networth360/saafe-redirection/commit/e679edf2393c96dcc77df92df14b6887a2496d9f))
|
175
|
+
* **flow:** added the linked bank flow ([a07119d](https://gitlab.com/Networth360/saafe-redirection/commit/a07119da3e02119661f8bd41a30b9794d83a5b9f))
|
176
|
+
* **Flow:** added the new flow ([e794fbb](https://gitlab.com/Networth360/saafe-redirection/commit/e794fbb11f4e7b04f45dbca5f8e3ddae729e8d65))
|
177
|
+
* **Flow:** added the new flow ([81b0e90](https://gitlab.com/Networth360/saafe-redirection/commit/81b0e9036a4a3868adbbc37b8d87ca531435a921))
|
178
|
+
* **Flow:** added the new flow ([203fbe7](https://gitlab.com/Networth360/saafe-redirection/commit/203fbe7fa95f096e4524fb09d134a6685a61f132))
|
179
|
+
* **Help:** added the help text ([575865a](https://gitlab.com/Networth360/saafe-redirection/commit/575865a5d90c2f0ef2d088a3792edfbd19ec6a89))
|
180
|
+
* **Initial Flow:** added the initial flow ([493668d](https://gitlab.com/Networth360/saafe-redirection/commit/493668de29f57177c7ba2ec40536c324fac93d12))
|
181
|
+
* localization and handles ([441458e](https://gitlab.com/Networth360/saafe-redirection/commit/441458e988a453badceb4ea409c12048041e725a))
|
182
|
+
* **mostPicked:** added the most picked up list ([6600d13](https://gitlab.com/Networth360/saafe-redirection/commit/6600d132aeab65218422e385cecbd2c5b2235dca))
|
183
|
+
* **NewNumber:** added new number flow ([db9d96e](https://gitlab.com/Networth360/saafe-redirection/commit/db9d96ee2dd65ab4ee90a6f5adc14fbcce835059))
|
184
|
+
* **NewNumber:** added new number flow ([c701645](https://gitlab.com/Networth360/saafe-redirection/commit/c70164599bdc7e92d58a45dcf8b1fe78bb0c7329))
|
185
|
+
* **old-user:** handled the old user flow ([e5e10d4](https://gitlab.com/Networth360/saafe-redirection/commit/e5e10d4b3c5cb61083a8a640d06721e17fe45e08))
|
186
|
+
* promote sandbox changes to stage environment ([017ec64](https://gitlab.com/Networth360/saafe-redirection/commit/017ec64fceed8cd95c962be6c0306cd8d9a53437))
|
187
|
+
* redirection flow components ([af2a43f](https://gitlab.com/Networth360/saafe-redirection/commit/af2a43f5b23d38ccd862565397fdeb16d00ab474))
|
188
|
+
* semantinc release and deployment configurations ([57de21e](https://gitlab.com/Networth360/saafe-redirection/commit/57de21e1aab236715db5b084983da22051402781))
|
189
|
+
* session timer and handler ([2bd36c2](https://gitlab.com/Networth360/saafe-redirection/commit/2bd36c2dfe90a7aa4f07d687571a69724cd29b84))
|
190
|
+
* storybook and stepper child added ([14ee819](https://gitlab.com/Networth360/saafe-redirection/commit/14ee819a832e33c8066429f7aec8614be8617340))
|
191
|
+
|
192
|
+
|
193
|
+
### BREAKING CHANGES
|
194
|
+
|
195
|
+
* Production releases now use 'prod' branch instead of 'main'
|
196
|
+
|
197
|
+
# [1.0.0-stage.4](https://gitlab.com/Networth360/saafe-redirection/compare/v1.0.0-stage.3...v1.0.0-stage.4) (2025-06-24)
|
198
|
+
|
199
|
+
|
200
|
+
### Bug Fixes
|
201
|
+
|
202
|
+
* release guide updated with clear guidelines ([a7fe4f6](https://gitlab.com/Networth360/saafe-redirection/commit/a7fe4f6be5ad8a90d023c272ff3cef33461f509d))
|
203
|
+
|
204
|
+
|
205
|
+
### Features
|
206
|
+
|
207
|
+
* promote sandbox changes to stage environment ([017ec64](https://gitlab.com/Networth360/saafe-redirection/commit/017ec64fceed8cd95c962be6c0306cd8d9a53437))
|
208
|
+
|
209
|
+
# [1.0.0-stage.3](https://gitlab.com/Networth360/saafe-redirection/compare/v1.0.0-stage.2...v1.0.0-stage.3) (2025-06-24)
|
210
|
+
|
211
|
+
|
212
|
+
### Features
|
213
|
+
|
214
|
+
* promote sandbox changes to stage environment ([017ec64](https://gitlab.com/Networth360/saafe-redirection/commit/017ec64fceed8cd95c962be6c0306cd8d9a53437))
|
215
|
+
|
216
|
+
# 1.0.0-sandbox.1 (2025-06-23)
|
217
|
+
|
218
|
+
|
219
|
+
### Bug Fixes
|
220
|
+
|
221
|
+
* **authGuard:** fixed the redirection issue ([82fa55d](https://gitlab.com/Networth360/saafe-redirection/commit/82fa55d3845f6a3536de1c88093f9c1956eaceb1))
|
222
|
+
* conflict fixes ([6b5e3c4](https://gitlab.com/Networth360/saafe-redirection/commit/6b5e3c440d33fa87e4fdfc8ea8cfa87d8beab504))
|
223
|
+
* conflict fixes ([4f59bc6](https://gitlab.com/Networth360/saafe-redirection/commit/4f59bc6907d87fa3bf00d8ea6e3eaab7ea23042d))
|
224
|
+
* Consent reject screen adaptive responsivenes ([c564a89](https://gitlab.com/Networth360/saafe-redirection/commit/c564a89eee6cafa5c76a510b5a740264aa702399))
|
225
|
+
* **Consent:** handled the madatory consent ([e157d4a](https://gitlab.com/Networth360/saafe-redirection/commit/e157d4a95de88f38a16d2bddd05043fb7d4e506e))
|
226
|
+
* **Consent:** handled the madatory consent ([c1dcbf9](https://gitlab.com/Networth360/saafe-redirection/commit/c1dcbf9ce4ecf0f367a8f7876e2ecd284f26b3f4))
|
227
|
+
* **ConsentReview:** added the fix for consent approve ([add1f02](https://gitlab.com/Networth360/saafe-redirection/commit/add1f0286c61d2bc4f0c6286a08eda1237fa8b2c))
|
228
|
+
* **link-account:** fixed the select issue ([b8e2b1e](https://gitlab.com/Networth360/saafe-redirection/commit/b8e2b1e742f1b6e24e961e93c8826a3e0fb74df7))
|
229
|
+
* **link-account:** fixed the select issue ([1053315](https://gitlab.com/Networth360/saafe-redirection/commit/1053315d41a6f60e40964237394d9478085847f0))
|
230
|
+
* **link-account:** fixed the select issue ([91eae70](https://gitlab.com/Networth360/saafe-redirection/commit/91eae706bdbe409844e00e12c43c58540a0e6a85))
|
231
|
+
* **link-account:** hidden the add mobile number ([b5f1b47](https://gitlab.com/Networth360/saafe-redirection/commit/b5f1b47b3f332a28892f0a902736283e02e32988))
|
232
|
+
* **LinkAccount:** added the prod change ([de33056](https://gitlab.com/Networth360/saafe-redirection/commit/de33056b2db79d854b1909d19a7706e19976ccdd))
|
233
|
+
* **login:** ui correction ([d9adeb1](https://gitlab.com/Networth360/saafe-redirection/commit/d9adeb14451fc26ccde390f41ebfe0e2a25d0b1e))
|
234
|
+
* **login:** ui correction ([a615d8a](https://gitlab.com/Networth360/saafe-redirection/commit/a615d8aaa56282ca968a4ef714b137ae5e67282a))
|
235
|
+
* **old-user:** fixed the old user flow ([a55a24a](https://gitlab.com/Networth360/saafe-redirection/commit/a55a24ad91536006aaefc58700dc9d42dda2dbf2))
|
236
|
+
* release script ([d0c53a7](https://gitlab.com/Networth360/saafe-redirection/commit/d0c53a7a7a6d642e2eac2952ec5712265cb24cbb))
|
237
|
+
* remove old changelog ([a55cd49](https://gitlab.com/Networth360/saafe-redirection/commit/a55cd49e57fb3a2540828543b7969f78a85b3fdd))
|
238
|
+
* remove testing deployment configs ([8a8c61f](https://gitlab.com/Networth360/saafe-redirection/commit/8a8c61fb1223acdaa18442b7f1e03ccde4e04f5e))
|
239
|
+
* **reviewConsent:** handled the code 101 & 102 ([a481979](https://gitlab.com/Networth360/saafe-redirection/commit/a4819791451c6ee8342218f4110a7b6201b77418))
|
240
|
+
* ui corrections ([886d489](https://gitlab.com/Networth360/saafe-redirection/commit/886d489f2a58373cf923c179bf9e9517793ed2e2))
|
241
|
+
* **UI Corrections:** added the ui corrections ([b594f32](https://gitlab.com/Networth360/saafe-redirection/commit/b594f320be64157c30d21579889a74903247a4d1))
|
242
|
+
* **UI-bug:** added fix for linkSelectedAccount and review consent ([1e3e6a2](https://gitlab.com/Networth360/saafe-redirection/commit/1e3e6a25a6016b4b34ec7471a7a4f7e985c9cbb4))
|
243
|
+
* **UI:** added new ui corrections ([e51a9c7](https://gitlab.com/Networth360/saafe-redirection/commit/e51a9c73d7dc6bfddd35431de2aa44ce4833d58d))
|
244
|
+
* **UI:** added some ui corrections ([b3d606d](https://gitlab.com/Networth360/saafe-redirection/commit/b3d606da608cc54e9e12458a5ff412b48486f343))
|
245
|
+
* **UI:** added the ui changes ([222245f](https://gitlab.com/Networth360/saafe-redirection/commit/222245f6abe031335ffd421acbbcbfa91b3b7921))
|
246
|
+
* **UI:** hadled the success and reject screen ([8fc9bef](https://gitlab.com/Networth360/saafe-redirection/commit/8fc9bef28430caef983ac8f3840816b6117309fc))
|
247
|
+
* **UI:** hadled the success and reject screen ([e2d16f8](https://gitlab.com/Networth360/saafe-redirection/commit/e2d16f8519934126ce0ff827dd93429cda5316e0))
|
248
|
+
* **UI:** handled the duplicates ([d530ce5](https://gitlab.com/Networth360/saafe-redirection/commit/d530ce5ed81b9f2e9e01f37760561721e018f817))
|
249
|
+
* **UI:** handled the side bar select ([e392b64](https://gitlab.com/Networth360/saafe-redirection/commit/e392b643b7f43560fc834b96ebcea0e27cedc0dc))
|
250
|
+
* **ui:** refix the contents ([cace344](https://gitlab.com/Networth360/saafe-redirection/commit/cace34440cccf23a8c7f1889a36450ba14c79ebb))
|
251
|
+
|
252
|
+
|
253
|
+
### Features
|
254
|
+
|
255
|
+
* **App:** handled the non consent flow ([15f54da](https://gitlab.com/Networth360/saafe-redirection/commit/15f54daa843b1615e5c81a2f3d325799bf078131))
|
256
|
+
* Authentication and Token handlers implemented ([33256dc](https://gitlab.com/Networth360/saafe-redirection/commit/33256dc17b5453519e371c1616e2d6a9afc752f3))
|
257
|
+
* **Consent:** handled the selected account ([ea48003](https://gitlab.com/Networth360/saafe-redirection/commit/ea48003c9341f2bc7275e53849ba83d27ea9b564))
|
258
|
+
* **Dashboard:** Handled the account pre select ([b23691d](https://gitlab.com/Networth360/saafe-redirection/commit/b23691dad93afd4c2fdcd65a48f6051042605824))
|
259
|
+
* dynamic footer content ([bdbb9c6](https://gitlab.com/Networth360/saafe-redirection/commit/bdbb9c6824f0b02a9be1f4e383f188f7a0ae9d73))
|
260
|
+
* fip flow Api Integrations and flow routing ([dcfacfb](https://gitlab.com/Networth360/saafe-redirection/commit/dcfacfb81daf7d962e4c373bb6224bb816760fc0))
|
261
|
+
* **Flow:** added 1 new flow ([c3bc7b1](https://gitlab.com/Networth360/saafe-redirection/commit/c3bc7b19335d7bb50ba3a75645395f965220a253))
|
262
|
+
* **Flow:** added 2 new flow ([42347ee](https://gitlab.com/Networth360/saafe-redirection/commit/42347ee84231eeb1c95a89ae9ec2e931d0f945eb))
|
263
|
+
* **Flow:** added 3 new flow ([7eceba8](https://gitlab.com/Networth360/saafe-redirection/commit/7eceba8c66842cba1783c78296d2033e2b321a1c))
|
264
|
+
* **Flow:** added old user and consent flow ([e679edf](https://gitlab.com/Networth360/saafe-redirection/commit/e679edf2393c96dcc77df92df14b6887a2496d9f))
|
265
|
+
* **flow:** added the linked bank flow ([a07119d](https://gitlab.com/Networth360/saafe-redirection/commit/a07119da3e02119661f8bd41a30b9794d83a5b9f))
|
266
|
+
* **Flow:** added the new flow ([e794fbb](https://gitlab.com/Networth360/saafe-redirection/commit/e794fbb11f4e7b04f45dbca5f8e3ddae729e8d65))
|
267
|
+
* **Flow:** added the new flow ([81b0e90](https://gitlab.com/Networth360/saafe-redirection/commit/81b0e9036a4a3868adbbc37b8d87ca531435a921))
|
268
|
+
* **Flow:** added the new flow ([203fbe7](https://gitlab.com/Networth360/saafe-redirection/commit/203fbe7fa95f096e4524fb09d134a6685a61f132))
|
269
|
+
* **Help:** added the help text ([575865a](https://gitlab.com/Networth360/saafe-redirection/commit/575865a5d90c2f0ef2d088a3792edfbd19ec6a89))
|
270
|
+
* **Initial Flow:** added the initial flow ([493668d](https://gitlab.com/Networth360/saafe-redirection/commit/493668de29f57177c7ba2ec40536c324fac93d12))
|
271
|
+
* localization and handles ([441458e](https://gitlab.com/Networth360/saafe-redirection/commit/441458e988a453badceb4ea409c12048041e725a))
|
272
|
+
* **mostPicked:** added the most picked up list ([6600d13](https://gitlab.com/Networth360/saafe-redirection/commit/6600d132aeab65218422e385cecbd2c5b2235dca))
|
273
|
+
* **NewNumber:** added new number flow ([db9d96e](https://gitlab.com/Networth360/saafe-redirection/commit/db9d96ee2dd65ab4ee90a6f5adc14fbcce835059))
|
274
|
+
* **NewNumber:** added new number flow ([c701645](https://gitlab.com/Networth360/saafe-redirection/commit/c70164599bdc7e92d58a45dcf8b1fe78bb0c7329))
|
275
|
+
* **old-user:** handled the old user flow ([e5e10d4](https://gitlab.com/Networth360/saafe-redirection/commit/e5e10d4b3c5cb61083a8a640d06721e17fe45e08))
|
276
|
+
* redirection flow components ([af2a43f](https://gitlab.com/Networth360/saafe-redirection/commit/af2a43f5b23d38ccd862565397fdeb16d00ab474))
|
277
|
+
* semantinc release and deployment configurations ([57de21e](https://gitlab.com/Networth360/saafe-redirection/commit/57de21e1aab236715db5b084983da22051402781))
|
278
|
+
* session timer and handler ([2bd36c2](https://gitlab.com/Networth360/saafe-redirection/commit/2bd36c2dfe90a7aa4f07d687571a69724cd29b84))
|
279
|
+
* storybook and stepper child added ([14ee819](https://gitlab.com/Networth360/saafe-redirection/commit/14ee819a832e33c8066429f7aec8614be8617340))
|
280
|
+
|
281
|
+
# [1.0.0-stage.2](https://gitlab.com/Networth360/saafe-redirection/compare/v1.0.0-stage.1...v1.0.0-stage.2) (2025-06-23)
|
282
|
+
|
283
|
+
|
284
|
+
### Bug Fixes
|
285
|
+
|
286
|
+
* remove testing deployment configs ([8a8c61f](https://gitlab.com/Networth360/saafe-redirection/commit/8a8c61fb1223acdaa18442b7f1e03ccde4e04f5e))
|
287
|
+
|
288
|
+
# 1.0.0-stage.1 (2025-06-23)
|
289
|
+
|
290
|
+
|
291
|
+
### Bug Fixes
|
292
|
+
|
293
|
+
* **authGuard:** fixed the redirection issue ([82fa55d](https://gitlab.com/Networth360/saafe-redirection/commit/82fa55d3845f6a3536de1c88093f9c1956eaceb1))
|
294
|
+
* conflict fixes ([6b5e3c4](https://gitlab.com/Networth360/saafe-redirection/commit/6b5e3c440d33fa87e4fdfc8ea8cfa87d8beab504))
|
295
|
+
* conflict fixes ([4f59bc6](https://gitlab.com/Networth360/saafe-redirection/commit/4f59bc6907d87fa3bf00d8ea6e3eaab7ea23042d))
|
296
|
+
* Consent reject screen adaptive responsivenes ([c564a89](https://gitlab.com/Networth360/saafe-redirection/commit/c564a89eee6cafa5c76a510b5a740264aa702399))
|
297
|
+
* **Consent:** handled the madatory consent ([e157d4a](https://gitlab.com/Networth360/saafe-redirection/commit/e157d4a95de88f38a16d2bddd05043fb7d4e506e))
|
298
|
+
* **Consent:** handled the madatory consent ([c1dcbf9](https://gitlab.com/Networth360/saafe-redirection/commit/c1dcbf9ce4ecf0f367a8f7876e2ecd284f26b3f4))
|
299
|
+
* **ConsentReview:** added the fix for consent approve ([add1f02](https://gitlab.com/Networth360/saafe-redirection/commit/add1f0286c61d2bc4f0c6286a08eda1237fa8b2c))
|
300
|
+
* **link-account:** fixed the select issue ([b8e2b1e](https://gitlab.com/Networth360/saafe-redirection/commit/b8e2b1e742f1b6e24e961e93c8826a3e0fb74df7))
|
301
|
+
* **link-account:** fixed the select issue ([1053315](https://gitlab.com/Networth360/saafe-redirection/commit/1053315d41a6f60e40964237394d9478085847f0))
|
302
|
+
* **link-account:** fixed the select issue ([91eae70](https://gitlab.com/Networth360/saafe-redirection/commit/91eae706bdbe409844e00e12c43c58540a0e6a85))
|
303
|
+
* **link-account:** hidden the add mobile number ([b5f1b47](https://gitlab.com/Networth360/saafe-redirection/commit/b5f1b47b3f332a28892f0a902736283e02e32988))
|
304
|
+
* **LinkAccount:** added the prod change ([de33056](https://gitlab.com/Networth360/saafe-redirection/commit/de33056b2db79d854b1909d19a7706e19976ccdd))
|
305
|
+
* **login:** ui correction ([d9adeb1](https://gitlab.com/Networth360/saafe-redirection/commit/d9adeb14451fc26ccde390f41ebfe0e2a25d0b1e))
|
306
|
+
* **login:** ui correction ([a615d8a](https://gitlab.com/Networth360/saafe-redirection/commit/a615d8aaa56282ca968a4ef714b137ae5e67282a))
|
307
|
+
* **old-user:** fixed the old user flow ([a55a24a](https://gitlab.com/Networth360/saafe-redirection/commit/a55a24ad91536006aaefc58700dc9d42dda2dbf2))
|
308
|
+
* release script ([d0c53a7](https://gitlab.com/Networth360/saafe-redirection/commit/d0c53a7a7a6d642e2eac2952ec5712265cb24cbb))
|
309
|
+
* remove old changelog ([a55cd49](https://gitlab.com/Networth360/saafe-redirection/commit/a55cd49e57fb3a2540828543b7969f78a85b3fdd))
|
310
|
+
* **reviewConsent:** handled the code 101 & 102 ([a481979](https://gitlab.com/Networth360/saafe-redirection/commit/a4819791451c6ee8342218f4110a7b6201b77418))
|
311
|
+
* ui corrections ([886d489](https://gitlab.com/Networth360/saafe-redirection/commit/886d489f2a58373cf923c179bf9e9517793ed2e2))
|
312
|
+
* **UI Corrections:** added the ui corrections ([b594f32](https://gitlab.com/Networth360/saafe-redirection/commit/b594f320be64157c30d21579889a74903247a4d1))
|
313
|
+
* **UI-bug:** added fix for linkSelectedAccount and review consent ([1e3e6a2](https://gitlab.com/Networth360/saafe-redirection/commit/1e3e6a25a6016b4b34ec7471a7a4f7e985c9cbb4))
|
314
|
+
* **UI:** added new ui corrections ([e51a9c7](https://gitlab.com/Networth360/saafe-redirection/commit/e51a9c73d7dc6bfddd35431de2aa44ce4833d58d))
|
315
|
+
* **UI:** added some ui corrections ([b3d606d](https://gitlab.com/Networth360/saafe-redirection/commit/b3d606da608cc54e9e12458a5ff412b48486f343))
|
316
|
+
* **UI:** added the ui changes ([222245f](https://gitlab.com/Networth360/saafe-redirection/commit/222245f6abe031335ffd421acbbcbfa91b3b7921))
|
317
|
+
* **UI:** hadled the success and reject screen ([8fc9bef](https://gitlab.com/Networth360/saafe-redirection/commit/8fc9bef28430caef983ac8f3840816b6117309fc))
|
318
|
+
* **UI:** hadled the success and reject screen ([e2d16f8](https://gitlab.com/Networth360/saafe-redirection/commit/e2d16f8519934126ce0ff827dd93429cda5316e0))
|
319
|
+
* **UI:** handled the duplicates ([d530ce5](https://gitlab.com/Networth360/saafe-redirection/commit/d530ce5ed81b9f2e9e01f37760561721e018f817))
|
320
|
+
* **UI:** handled the side bar select ([e392b64](https://gitlab.com/Networth360/saafe-redirection/commit/e392b643b7f43560fc834b96ebcea0e27cedc0dc))
|
321
|
+
* **ui:** refix the contents ([cace344](https://gitlab.com/Networth360/saafe-redirection/commit/cace34440cccf23a8c7f1889a36450ba14c79ebb))
|
322
|
+
|
323
|
+
|
324
|
+
### Features
|
325
|
+
|
326
|
+
* **App:** handled the non consent flow ([15f54da](https://gitlab.com/Networth360/saafe-redirection/commit/15f54daa843b1615e5c81a2f3d325799bf078131))
|
327
|
+
* Authentication and Token handlers implemented ([33256dc](https://gitlab.com/Networth360/saafe-redirection/commit/33256dc17b5453519e371c1616e2d6a9afc752f3))
|
328
|
+
* **Consent:** handled the selected account ([ea48003](https://gitlab.com/Networth360/saafe-redirection/commit/ea48003c9341f2bc7275e53849ba83d27ea9b564))
|
329
|
+
* **Dashboard:** Handled the account pre select ([b23691d](https://gitlab.com/Networth360/saafe-redirection/commit/b23691dad93afd4c2fdcd65a48f6051042605824))
|
330
|
+
* dynamic footer content ([bdbb9c6](https://gitlab.com/Networth360/saafe-redirection/commit/bdbb9c6824f0b02a9be1f4e383f188f7a0ae9d73))
|
331
|
+
* fip flow Api Integrations and flow routing ([dcfacfb](https://gitlab.com/Networth360/saafe-redirection/commit/dcfacfb81daf7d962e4c373bb6224bb816760fc0))
|
332
|
+
* **Flow:** added 1 new flow ([c3bc7b1](https://gitlab.com/Networth360/saafe-redirection/commit/c3bc7b19335d7bb50ba3a75645395f965220a253))
|
333
|
+
* **Flow:** added 2 new flow ([42347ee](https://gitlab.com/Networth360/saafe-redirection/commit/42347ee84231eeb1c95a89ae9ec2e931d0f945eb))
|
334
|
+
* **Flow:** added 3 new flow ([7eceba8](https://gitlab.com/Networth360/saafe-redirection/commit/7eceba8c66842cba1783c78296d2033e2b321a1c))
|
335
|
+
* **Flow:** added old user and consent flow ([e679edf](https://gitlab.com/Networth360/saafe-redirection/commit/e679edf2393c96dcc77df92df14b6887a2496d9f))
|
336
|
+
* **flow:** added the linked bank flow ([a07119d](https://gitlab.com/Networth360/saafe-redirection/commit/a07119da3e02119661f8bd41a30b9794d83a5b9f))
|
337
|
+
* **Flow:** added the new flow ([e794fbb](https://gitlab.com/Networth360/saafe-redirection/commit/e794fbb11f4e7b04f45dbca5f8e3ddae729e8d65))
|
338
|
+
* **Flow:** added the new flow ([81b0e90](https://gitlab.com/Networth360/saafe-redirection/commit/81b0e9036a4a3868adbbc37b8d87ca531435a921))
|
339
|
+
* **Flow:** added the new flow ([203fbe7](https://gitlab.com/Networth360/saafe-redirection/commit/203fbe7fa95f096e4524fb09d134a6685a61f132))
|
340
|
+
* **Help:** added the help text ([575865a](https://gitlab.com/Networth360/saafe-redirection/commit/575865a5d90c2f0ef2d088a3792edfbd19ec6a89))
|
341
|
+
* **Initial Flow:** added the initial flow ([493668d](https://gitlab.com/Networth360/saafe-redirection/commit/493668de29f57177c7ba2ec40536c324fac93d12))
|
342
|
+
* localization and handles ([441458e](https://gitlab.com/Networth360/saafe-redirection/commit/441458e988a453badceb4ea409c12048041e725a))
|
343
|
+
* **mostPicked:** added the most picked up list ([6600d13](https://gitlab.com/Networth360/saafe-redirection/commit/6600d132aeab65218422e385cecbd2c5b2235dca))
|
344
|
+
* **NewNumber:** added new number flow ([db9d96e](https://gitlab.com/Networth360/saafe-redirection/commit/db9d96ee2dd65ab4ee90a6f5adc14fbcce835059))
|
345
|
+
* **NewNumber:** added new number flow ([c701645](https://gitlab.com/Networth360/saafe-redirection/commit/c70164599bdc7e92d58a45dcf8b1fe78bb0c7329))
|
346
|
+
* **old-user:** handled the old user flow ([e5e10d4](https://gitlab.com/Networth360/saafe-redirection/commit/e5e10d4b3c5cb61083a8a640d06721e17fe45e08))
|
347
|
+
* redirection flow components ([af2a43f](https://gitlab.com/Networth360/saafe-redirection/commit/af2a43f5b23d38ccd862565397fdeb16d00ab474))
|
348
|
+
* semantinc release and deployment configurations ([57de21e](https://gitlab.com/Networth360/saafe-redirection/commit/57de21e1aab236715db5b084983da22051402781))
|
349
|
+
* session timer and handler ([2bd36c2](https://gitlab.com/Networth360/saafe-redirection/commit/2bd36c2dfe90a7aa4f07d687571a69724cd29b84))
|
350
|
+
* storybook and stepper child added ([14ee819](https://gitlab.com/Networth360/saafe-redirection/commit/14ee819a832e33c8066429f7aec8614be8617340))
|
351
|
+
|
352
|
+
# [1.0.0-feat-deployment.2](https://gitlab.com/Networth360/saafe-redirection/compare/v1.0.0-feat-deployment.1...v1.0.0-feat-deployment.2) (2025-06-23)
|
353
|
+
|
354
|
+
|
355
|
+
### Bug Fixes
|
356
|
+
|
357
|
+
* release script ([d0c53a7](https://gitlab.com/Networth360/saafe-redirection/commit/d0c53a7a7a6d642e2eac2952ec5712265cb24cbb))
|
358
|
+
|
359
|
+
# 1.0.0-feat-deployment.1 (2025-06-23)
|
360
|
+
|
361
|
+
|
362
|
+
### Bug Fixes
|
363
|
+
|
364
|
+
* **authGuard:** fixed the redirection issue ([82fa55d](https://gitlab.com/Networth360/saafe-redirection/commit/82fa55d3845f6a3536de1c88093f9c1956eaceb1))
|
365
|
+
* conflict fixes ([6b5e3c4](https://gitlab.com/Networth360/saafe-redirection/commit/6b5e3c440d33fa87e4fdfc8ea8cfa87d8beab504))
|
366
|
+
* conflict fixes ([4f59bc6](https://gitlab.com/Networth360/saafe-redirection/commit/4f59bc6907d87fa3bf00d8ea6e3eaab7ea23042d))
|
367
|
+
* Consent reject screen adaptive responsivenes ([c564a89](https://gitlab.com/Networth360/saafe-redirection/commit/c564a89eee6cafa5c76a510b5a740264aa702399))
|
368
|
+
* **Consent:** handled the madatory consent ([e157d4a](https://gitlab.com/Networth360/saafe-redirection/commit/e157d4a95de88f38a16d2bddd05043fb7d4e506e))
|
369
|
+
* **Consent:** handled the madatory consent ([c1dcbf9](https://gitlab.com/Networth360/saafe-redirection/commit/c1dcbf9ce4ecf0f367a8f7876e2ecd284f26b3f4))
|
370
|
+
* **ConsentReview:** added the fix for consent approve ([add1f02](https://gitlab.com/Networth360/saafe-redirection/commit/add1f0286c61d2bc4f0c6286a08eda1237fa8b2c))
|
371
|
+
* **link-account:** fixed the select issue ([b8e2b1e](https://gitlab.com/Networth360/saafe-redirection/commit/b8e2b1e742f1b6e24e961e93c8826a3e0fb74df7))
|
372
|
+
* **link-account:** fixed the select issue ([1053315](https://gitlab.com/Networth360/saafe-redirection/commit/1053315d41a6f60e40964237394d9478085847f0))
|
373
|
+
* **link-account:** fixed the select issue ([91eae70](https://gitlab.com/Networth360/saafe-redirection/commit/91eae706bdbe409844e00e12c43c58540a0e6a85))
|
374
|
+
* **link-account:** hidden the add mobile number ([b5f1b47](https://gitlab.com/Networth360/saafe-redirection/commit/b5f1b47b3f332a28892f0a902736283e02e32988))
|
375
|
+
* **LinkAccount:** added the prod change ([de33056](https://gitlab.com/Networth360/saafe-redirection/commit/de33056b2db79d854b1909d19a7706e19976ccdd))
|
376
|
+
* **login:** ui correction ([d9adeb1](https://gitlab.com/Networth360/saafe-redirection/commit/d9adeb14451fc26ccde390f41ebfe0e2a25d0b1e))
|
377
|
+
* **login:** ui correction ([a615d8a](https://gitlab.com/Networth360/saafe-redirection/commit/a615d8aaa56282ca968a4ef714b137ae5e67282a))
|
378
|
+
* **old-user:** fixed the old user flow ([a55a24a](https://gitlab.com/Networth360/saafe-redirection/commit/a55a24ad91536006aaefc58700dc9d42dda2dbf2))
|
379
|
+
* remove old changelog ([a55cd49](https://gitlab.com/Networth360/saafe-redirection/commit/a55cd49e57fb3a2540828543b7969f78a85b3fdd))
|
380
|
+
* **reviewConsent:** handled the code 101 & 102 ([a481979](https://gitlab.com/Networth360/saafe-redirection/commit/a4819791451c6ee8342218f4110a7b6201b77418))
|
381
|
+
* ui corrections ([886d489](https://gitlab.com/Networth360/saafe-redirection/commit/886d489f2a58373cf923c179bf9e9517793ed2e2))
|
382
|
+
* **UI Corrections:** added the ui corrections ([b594f32](https://gitlab.com/Networth360/saafe-redirection/commit/b594f320be64157c30d21579889a74903247a4d1))
|
383
|
+
* **UI-bug:** added fix for linkSelectedAccount and review consent ([1e3e6a2](https://gitlab.com/Networth360/saafe-redirection/commit/1e3e6a25a6016b4b34ec7471a7a4f7e985c9cbb4))
|
384
|
+
* **UI:** added new ui corrections ([e51a9c7](https://gitlab.com/Networth360/saafe-redirection/commit/e51a9c73d7dc6bfddd35431de2aa44ce4833d58d))
|
385
|
+
* **UI:** added some ui corrections ([b3d606d](https://gitlab.com/Networth360/saafe-redirection/commit/b3d606da608cc54e9e12458a5ff412b48486f343))
|
386
|
+
* **UI:** added the ui changes ([222245f](https://gitlab.com/Networth360/saafe-redirection/commit/222245f6abe031335ffd421acbbcbfa91b3b7921))
|
387
|
+
* **UI:** hadled the success and reject screen ([8fc9bef](https://gitlab.com/Networth360/saafe-redirection/commit/8fc9bef28430caef983ac8f3840816b6117309fc))
|
388
|
+
* **UI:** hadled the success and reject screen ([e2d16f8](https://gitlab.com/Networth360/saafe-redirection/commit/e2d16f8519934126ce0ff827dd93429cda5316e0))
|
389
|
+
* **UI:** handled the duplicates ([d530ce5](https://gitlab.com/Networth360/saafe-redirection/commit/d530ce5ed81b9f2e9e01f37760561721e018f817))
|
390
|
+
* **UI:** handled the side bar select ([e392b64](https://gitlab.com/Networth360/saafe-redirection/commit/e392b643b7f43560fc834b96ebcea0e27cedc0dc))
|
391
|
+
* **ui:** refix the contents ([cace344](https://gitlab.com/Networth360/saafe-redirection/commit/cace34440cccf23a8c7f1889a36450ba14c79ebb))
|
392
|
+
|
393
|
+
|
394
|
+
### Features
|
395
|
+
|
396
|
+
* **App:** handled the non consent flow ([15f54da](https://gitlab.com/Networth360/saafe-redirection/commit/15f54daa843b1615e5c81a2f3d325799bf078131))
|
397
|
+
* Authentication and Token handlers implemented ([33256dc](https://gitlab.com/Networth360/saafe-redirection/commit/33256dc17b5453519e371c1616e2d6a9afc752f3))
|
398
|
+
* **Consent:** handled the selected account ([ea48003](https://gitlab.com/Networth360/saafe-redirection/commit/ea48003c9341f2bc7275e53849ba83d27ea9b564))
|
399
|
+
* **Dashboard:** Handled the account pre select ([b23691d](https://gitlab.com/Networth360/saafe-redirection/commit/b23691dad93afd4c2fdcd65a48f6051042605824))
|
400
|
+
* dynamic footer content ([bdbb9c6](https://gitlab.com/Networth360/saafe-redirection/commit/bdbb9c6824f0b02a9be1f4e383f188f7a0ae9d73))
|
401
|
+
* fip flow Api Integrations and flow routing ([dcfacfb](https://gitlab.com/Networth360/saafe-redirection/commit/dcfacfb81daf7d962e4c373bb6224bb816760fc0))
|
402
|
+
* **Flow:** added 1 new flow ([c3bc7b1](https://gitlab.com/Networth360/saafe-redirection/commit/c3bc7b19335d7bb50ba3a75645395f965220a253))
|
403
|
+
* **Flow:** added 2 new flow ([42347ee](https://gitlab.com/Networth360/saafe-redirection/commit/42347ee84231eeb1c95a89ae9ec2e931d0f945eb))
|
404
|
+
* **Flow:** added 3 new flow ([7eceba8](https://gitlab.com/Networth360/saafe-redirection/commit/7eceba8c66842cba1783c78296d2033e2b321a1c))
|
405
|
+
* **Flow:** added old user and consent flow ([e679edf](https://gitlab.com/Networth360/saafe-redirection/commit/e679edf2393c96dcc77df92df14b6887a2496d9f))
|
406
|
+
* **flow:** added the linked bank flow ([a07119d](https://gitlab.com/Networth360/saafe-redirection/commit/a07119da3e02119661f8bd41a30b9794d83a5b9f))
|
407
|
+
* **Flow:** added the new flow ([e794fbb](https://gitlab.com/Networth360/saafe-redirection/commit/e794fbb11f4e7b04f45dbca5f8e3ddae729e8d65))
|
408
|
+
* **Flow:** added the new flow ([81b0e90](https://gitlab.com/Networth360/saafe-redirection/commit/81b0e9036a4a3868adbbc37b8d87ca531435a921))
|
409
|
+
* **Flow:** added the new flow ([203fbe7](https://gitlab.com/Networth360/saafe-redirection/commit/203fbe7fa95f096e4524fb09d134a6685a61f132))
|
410
|
+
* **Help:** added the help text ([575865a](https://gitlab.com/Networth360/saafe-redirection/commit/575865a5d90c2f0ef2d088a3792edfbd19ec6a89))
|
411
|
+
* **Initial Flow:** added the initial flow ([493668d](https://gitlab.com/Networth360/saafe-redirection/commit/493668de29f57177c7ba2ec40536c324fac93d12))
|
412
|
+
* localization and handles ([441458e](https://gitlab.com/Networth360/saafe-redirection/commit/441458e988a453badceb4ea409c12048041e725a))
|
413
|
+
* **mostPicked:** added the most picked up list ([6600d13](https://gitlab.com/Networth360/saafe-redirection/commit/6600d132aeab65218422e385cecbd2c5b2235dca))
|
414
|
+
* **NewNumber:** added new number flow ([db9d96e](https://gitlab.com/Networth360/saafe-redirection/commit/db9d96ee2dd65ab4ee90a6f5adc14fbcce835059))
|
415
|
+
* **NewNumber:** added new number flow ([c701645](https://gitlab.com/Networth360/saafe-redirection/commit/c70164599bdc7e92d58a45dcf8b1fe78bb0c7329))
|
416
|
+
* **old-user:** handled the old user flow ([e5e10d4](https://gitlab.com/Networth360/saafe-redirection/commit/e5e10d4b3c5cb61083a8a640d06721e17fe45e08))
|
417
|
+
* redirection flow components ([af2a43f](https://gitlab.com/Networth360/saafe-redirection/commit/af2a43f5b23d38ccd862565397fdeb16d00ab474))
|
418
|
+
* semantinc release and deployment configurations ([57de21e](https://gitlab.com/Networth360/saafe-redirection/commit/57de21e1aab236715db5b084983da22051402781))
|
419
|
+
* session timer and handler ([2bd36c2](https://gitlab.com/Networth360/saafe-redirection/commit/2bd36c2dfe90a7aa4f07d687571a69724cd29b84))
|
420
|
+
* storybook and stepper child added ([14ee819](https://gitlab.com/Networth360/saafe-redirection/commit/14ee819a832e33c8066429f7aec8614be8617340))
|
package/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2023 Hayyi
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
@@ -0,0 +1,129 @@
|
|
1
|
+
# SAAFE Redirection Flow
|
2
|
+
|
3
|
+
A modern React application that provides a secure account linking experience for the SAAFE (Secure Account Access Financial Environment) platform. This application is designed to be embedded in mobile and web applications via an SDK.
|
4
|
+
|
5
|
+
## Overview
|
6
|
+
|
7
|
+
The SAAFE Redirection Flow application facilitates secure account linking between financial institutions and third-party applications. It provides a streamlined user experience for authentication, account discovery, and consent management.
|
8
|
+
|
9
|
+
## Features
|
10
|
+
|
11
|
+
- **Multi-platform Support**: Optimized for iOS, Android, React Native, Flutter, and web platforms
|
12
|
+
- **Theming**: Supports light, dark, and system-defined themes
|
13
|
+
- **Internationalization**: Multi-language support via i18next
|
14
|
+
- **Responsive Design**: Adapts to different screen sizes and devices
|
15
|
+
- **Authentication**: Secure login and session management
|
16
|
+
- **Account Discovery**: Find and link financial accounts
|
17
|
+
- **Consent Management**: Review and approve data sharing permissions
|
18
|
+
- **Analytics**: Track user journey with PostHog
|
19
|
+
|
20
|
+
## Tech Stack
|
21
|
+
|
22
|
+
- **Framework**: React 19 with TypeScript
|
23
|
+
- **Routing**: React Router v7
|
24
|
+
- **Styling**: Tailwind CSS with theme support
|
25
|
+
- **State Management**: Zustand
|
26
|
+
- **API Integration**: Axios with React Query
|
27
|
+
- **Form Handling**: React Hook Form with Zod validation
|
28
|
+
- **UI Components**: Radix UI primitives
|
29
|
+
- **Testing**: Vitest and Playwright
|
30
|
+
- **Documentation**: Storybook
|
31
|
+
|
32
|
+
## SDK Integration
|
33
|
+
|
34
|
+
This application can be integrated into mobile applications via an SDK that renders the app in a WebView (iOS, Android) or iframe (Web).
|
35
|
+
|
36
|
+
### URL Parameters
|
37
|
+
|
38
|
+
When embedding this application in your SDK, you can customize its behavior using the following URL parameters:
|
39
|
+
|
40
|
+
| Parameter | Description | Valid Values | Required |
|
41
|
+
|-----------|-------------|-------------|----------|
|
42
|
+
| fi | Financial Institution ID | String | Yes |
|
43
|
+
| ecreq | Encrypted Request | String | Yes |
|
44
|
+
| reqdate | Request Date | String | Yes |
|
45
|
+
| profile | User Profile | String | No |
|
46
|
+
| platform | Client Platform | ios, android, react-native, flutter, web | No |
|
47
|
+
| theme | Application Theme | light, dark, system | No |
|
48
|
+
|
49
|
+
### Example URL
|
50
|
+
|
51
|
+
```
|
52
|
+
https://saafe-app.com/login?fi=value&ecreq=value&reqdate=value&platform=ios&theme=dark
|
53
|
+
```
|
54
|
+
|
55
|
+
### Platform-Specific Behaviors
|
56
|
+
|
57
|
+
When the `platform` parameter is specified, the application will adjust certain behaviors:
|
58
|
+
|
59
|
+
- **iOS/Android**: Optimized for mobile WebViews with adjusted UI elements
|
60
|
+
- **React Native/Flutter**: Suitable configurations for cross-platform SDKs
|
61
|
+
- **Web**: Default desktop experience with navigation safeguards
|
62
|
+
|
63
|
+
#### Document Handling
|
64
|
+
|
65
|
+
The application handles document displays differently based on the platform:
|
66
|
+
|
67
|
+
- **Web**: Terms and conditions, privacy policy and other documents open in new tabs
|
68
|
+
- **Mobile/SDK platforms**: Documents are displayed in a modern, centered modal dialog with local React components
|
69
|
+
|
70
|
+
Our approach uses local React components instead of iframes to avoid cross-origin restrictions. Benefits include:
|
71
|
+
- No X-Frame-Options or Content-Security-Policy issues with external websites
|
72
|
+
- Consistent styling with the rest of your application
|
73
|
+
- Better accessibility and performance
|
74
|
+
- Prevents navigation away from your app in WebViews
|
75
|
+
- Full control over content and presentation
|
76
|
+
|
77
|
+
This solution is particularly effective for mobile SDKs where navigation between pages should be minimized for a better user experience.
|
78
|
+
|
79
|
+
### Theme Handling
|
80
|
+
|
81
|
+
When the `theme` parameter is specified, the application will use the provided theme:
|
82
|
+
|
83
|
+
- **light**: Forces light theme regardless of system preference
|
84
|
+
- **dark**: Forces dark theme regardless of system preference
|
85
|
+
- **system**: Uses the device's theme preference (default if not specified)
|
86
|
+
|
87
|
+
## Documentation
|
88
|
+
|
89
|
+
For more detailed documentation, please refer to the [docs directory](/docs). The documentation includes:
|
90
|
+
|
91
|
+
- [Overview and Getting Started](/docs/index.md) - Introduction and quick start guide
|
92
|
+
- [Architecture Overview](/docs/architecture.md) - Technical architecture and design decisions
|
93
|
+
- [Component Library](/docs/components.md) - UI components documentation
|
94
|
+
- [Routes and Pages](/docs/routes.md) - Available routes and navigation flow
|
95
|
+
- [SDK Integration Guide](/docs/sdk-integration.md) - Detailed integration instructions for iOS, Android, and Web platforms
|
96
|
+
- [User Journey](/docs/user-flow.md) - Detailed explanation of the end-to-end user flow
|
97
|
+
|
98
|
+
## Getting Started with Development
|
99
|
+
|
100
|
+
1. Clone the repository
|
101
|
+
```bash
|
102
|
+
git clone https://gitlab.com/Networth360/saafe-redirection.git
|
103
|
+
cd saafe-redirection-flow
|
104
|
+
```
|
105
|
+
|
106
|
+
2. Install dependencies
|
107
|
+
```bash
|
108
|
+
npm install
|
109
|
+
```
|
110
|
+
|
111
|
+
3. Run the development server
|
112
|
+
```bash
|
113
|
+
npm run dev
|
114
|
+
```
|
115
|
+
|
116
|
+
4. Build for production
|
117
|
+
```bash
|
118
|
+
npm run build
|
119
|
+
```
|
120
|
+
|
121
|
+
5. Preview the production build
|
122
|
+
```bash
|
123
|
+
npm run preview
|
124
|
+
```
|
125
|
+
|
126
|
+
6. Run Storybook to explore UI components
|
127
|
+
```bash
|
128
|
+
npm run storybook
|
129
|
+
```
|