├── .cursor └── mcp.json ├── .cursorindexingignore ├── .documentation ├── analytics │ └── main.md ├── api-sandbox │ ├── how-to-use-api-sandbox.md │ └── main.md ├── authentication │ ├── how-to-add-authentication-to-your-app.md │ └── main.md ├── build │ └── main.md ├── components-included-in-app │ └── main.md ├── docker │ ├── main.md │ ├── package-as-a-runnable-docker-container.md │ └── running-with-docker.md ├── further-help │ └── main.md ├── generate │ ├── generate-a-component.md │ ├── generate-a-library.md │ ├── generate-an-application.md │ └── main.md ├── introduction │ └── main.md ├── journeys │ ├── communication-service.md │ ├── configure.md │ ├── custom-component.md │ ├── main.md │ └── simple-examples.md ├── load-app-development │ └── main.md ├── main.md ├── overview │ └── main.md ├── pre-requisites │ └── main.md ├── run-app │ └── main.md ├── tests │ ├── main.md │ ├── running-e2e-tests.md │ └── running-unit-tests.md ├── understand-your-workspace │ └── main.md └── user-credentials │ └── main.md ├── .editorconfig ├── .github ├── actions │ ├── aider │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── action.yml │ │ ├── entrypoint.sh │ │ └── requirements.txt │ └── node-step │ │ └── action.yml ├── dependabot.yml ├── release-drafter-ach-positive-pay.yml ├── release-drafter-transactions.yml ├── release-drafter-transfer.yml ├── release-drafter.yml └── workflows │ ├── .gitkeep │ ├── aider-issue-to-pr.README.md │ ├── aider-issue-to-pr.yml │ ├── aider-on-issue-labeled.README.md │ ├── aider-on-issue-labeled.yml │ ├── delete-runs.yml │ ├── foundation-ang-trigger.yml │ ├── pull-request.yml │ ├── release-drafter.yml │ ├── release.yml │ └── update-visual-test-snapshots.yml ├── .gitignore ├── .markdown.json ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── Dockerfile ├── README.md ├── apps ├── golden-sample-app-e2e │ ├── eslint.config.mjs │ ├── playwright-readme.md │ ├── playwright.config.ts │ ├── playwright.localhost-mocks.config.ts │ ├── playwright.localhost-sndbx.config.ts │ ├── playwright.remote.config.ts │ ├── project.json │ ├── src │ │ ├── config │ │ │ ├── mocks.config.ts │ │ │ └── sndbx.config.ts │ │ ├── data │ │ │ ├── credentials.ts │ │ │ ├── data-types │ │ │ │ └── user.ts │ │ │ ├── features │ │ │ │ ├── login-flow.feature │ │ │ │ ├── transaction-details.feature │ │ │ │ └── transactions-list.feature │ │ │ ├── localization │ │ │ │ └── login-page-data.ts │ │ │ ├── mocks-data │ │ │ │ ├── index.ts │ │ │ │ └── transactions.mocks.api.data.ts │ │ │ └── sandbox-api-data │ │ │ │ ├── index.ts │ │ │ │ └── transactions.sandbox.api.data.ts │ │ ├── fixtures │ │ │ ├── environment.ts │ │ │ ├── test.ts │ │ │ └── transactions.fixture.ts │ │ ├── global-setup.ts │ │ ├── page-objects │ │ │ └── pages │ │ │ │ └── identity-page.ts │ │ └── specs │ │ │ ├── adopted-tests │ │ │ ├── transaction-details.spec.ts │ │ │ └── transactions-list.spec.ts │ │ │ └── custom-tests │ │ │ ├── login-flow.spec.ts │ │ │ ├── transactions.a11y.spec.ts │ │ │ ├── visual-transactions.spec.ts │ │ │ └── visual-transactions.spec.ts-snapshots │ │ │ ├── transactions-page-full-localhost-mocks-visual-chrome-linux.png │ │ │ ├── transactions-page-full-mobile-chrome-linux.png │ │ │ ├── transactions-page-with-masked-data-localhost-mocks-visual-chrome-linux.png │ │ │ └── transactions-page-with-masked-data-mobile-chrome-linux.png │ └── tsconfig.json └── golden-sample-app │ ├── eslint.config.mjs │ ├── jest.config.ts │ ├── project.json │ ├── proxy.mocks.conf.js │ ├── proxy.stg-ebp.conf.js │ ├── src │ ├── app │ │ ├── app-routes.ts │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ ├── app.error-handler.ts │ │ ├── error-page │ │ │ ├── error-page.component.html │ │ │ └── error-page.component.ts │ │ ├── interceptors │ │ │ └── ach-positive-pay.interceptor.ts │ │ ├── locale-selector │ │ │ ├── locale-selector.component.html │ │ │ ├── locale-selector.component.spec.ts │ │ │ ├── locale-selector.component.ts │ │ │ └── locales-catalog.ts │ │ ├── navigation-menu │ │ │ └── navigation-menu.config.ts │ │ ├── services │ │ │ └── analytics.service.ts │ │ ├── theme-switcher │ │ │ ├── theme-service.ts │ │ │ ├── theme-switcher.component.html │ │ │ └── theme-switcher.component.ts │ │ └── user-context │ │ │ ├── user-context.component.html │ │ │ ├── user-context.component.spec.ts │ │ │ └── user-context.component.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── content │ │ │ ├── backgrounds-login-2x.jpg │ │ │ ├── backgrounds-login-collection.json │ │ │ ├── fogg-no-comments-sm.png │ │ │ ├── login-header.json │ │ │ ├── logo-emblem.svg │ │ │ └── notFoundText.json │ │ └── fonts │ │ │ └── IcoMoon │ │ │ ├── Readme.txt │ │ │ ├── bb-custom-font.json │ │ │ └── icomoon.ttf │ ├── environments │ │ ├── README.md │ │ ├── api-sandbox-interceptor.ts │ │ ├── environment.mocks.ts │ │ ├── environment.prod.ts │ │ ├── environment.ts │ │ └── telemetry-config.ts │ ├── favicon.ico │ ├── index.html │ ├── locale │ │ ├── messages.nl-NL.xlf │ │ └── messages.xlf │ ├── main.ts │ ├── styles.scss │ ├── styles_theme-overrides.scss │ ├── test-setup.ts │ ├── themes │ │ └── theme-premium │ │ │ ├── main.scss │ │ │ └── variables │ │ │ ├── _index.scss │ │ │ └── color │ │ │ ├── _background.scss │ │ │ ├── _border.scss │ │ │ ├── _focus.scss │ │ │ ├── _foreground.scss │ │ │ ├── _index.scss │ │ │ ├── _link.scss │ │ │ └── _on-background.scss │ └── xliffmerge.json │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── docker-compose.yml ├── eslint.config.mjs ├── jest.config.ts ├── jest.preset.js ├── libs ├── ach-positive-pay-journey │ ├── README.md │ ├── eslint.config.mjs │ ├── internal │ │ ├── data-access │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── ng-package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── models │ │ │ │ │ │ ├── accounts.ts │ │ │ │ │ │ └── ach-rule.ts │ │ │ │ │ └── services │ │ │ │ │ │ └── ach-positive-pay-http │ │ │ │ │ │ ├── ach-positive-pay.http.service.spec.ts │ │ │ │ │ │ └── ach-positive-pay.http.service.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ ├── tsconfig.lib.prod.json │ │ │ └── tsconfig.spec.json │ │ ├── feature │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── ng-package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── components │ │ │ │ │ │ ├── ach-positive-pay-journey │ │ │ │ │ │ ├── ach-positive-pay-journey.component.html │ │ │ │ │ │ ├── ach-positive-pay-journey.component.spec.ts │ │ │ │ │ │ └── ach-positive-pay-journey.component.ts │ │ │ │ │ │ └── ach-positive-pay-new-rule │ │ │ │ │ │ ├── ach-positive-pay-new-rule.component.html │ │ │ │ │ │ ├── ach-positive-pay-new-rule.component.spec.ts │ │ │ │ │ │ └── ach-positive-pay-new-rule.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ ├── tsconfig.lib.prod.json │ │ │ └── tsconfig.spec.json │ │ ├── shared-data │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── ng-package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── constants │ │ │ │ │ │ ├── dynamic-translations.ts │ │ │ │ │ │ └── permissions.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ ├── tsconfig.lib.prod.json │ │ │ └── tsconfig.spec.json │ │ └── ui │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── ng-package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── components │ │ │ │ │ ├── ach-positive-pay-rule-form │ │ │ │ │ ├── ach-positive-pay-rule-form.component.css │ │ │ │ │ ├── ach-positive-pay-rule-form.component.html │ │ │ │ │ ├── ach-positive-pay-rule-form.component.spec.ts │ │ │ │ │ └── ach-positive-pay-rule-form.component.ts │ │ │ │ │ └── ach-positive-pay-rules │ │ │ │ │ ├── ach-positive-pay-rules.component.html │ │ │ │ │ ├── ach-positive-pay-rules.component.spec.ts │ │ │ │ │ └── ach-positive-pay-rules.component.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ ├── tsconfig.lib.prod.json │ │ │ └── tsconfig.spec.json │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── ach-positive-pay-journey.routes.ts │ │ │ └── provide-ach-positive-pay-journey.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── journey-bundles │ ├── ach-positive-pay │ │ ├── README.md │ │ ├── eslint.config.mjs │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── ach-positive-pay-journey-bundle.ts │ │ │ │ ├── navigation.ts │ │ │ │ └── route.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── custom-payment │ │ ├── README.md │ │ ├── eslint.config.mjs │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── components │ │ │ │ │ └── initiator │ │ │ │ │ │ ├── initiator.component.ts │ │ │ │ │ │ ├── initiator.model.ts │ │ │ │ │ │ ├── initiator.service.spec.ts │ │ │ │ │ │ └── initiator.service.ts │ │ │ │ ├── custom-payment.config.ts │ │ │ │ ├── initiate-payment-journey-bundle.module.ts │ │ │ │ ├── navigation.ts │ │ │ │ ├── provide-custom-payment-journey.ts │ │ │ │ └── route.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── transactions │ │ ├── README.md │ │ ├── eslint.config.mjs │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── navigation.ts │ │ │ │ ├── route.ts │ │ │ │ ├── transaction-additional-details.component.html │ │ │ │ ├── transaction-additional-details.component.scss │ │ │ │ ├── transaction-additional-details.component.ts │ │ │ │ └── transactions.bundle.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── transfer │ │ ├── README.md │ │ ├── eslint.config.mjs │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── navigation.ts │ │ │ │ ├── route.ts │ │ │ │ └── transfer-journey.bundle.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── user-accounts │ │ ├── README.md │ │ ├── eslint.config.mjs │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── model │ │ │ │ └── tracker-events.ts │ │ │ ├── navigation.ts │ │ │ ├── route.ts │ │ │ ├── user-accounts-view │ │ │ │ ├── user-accounts-view.component.html │ │ │ │ ├── user-accounts-view.component.spec.ts │ │ │ │ └── user-accounts-view.component.ts │ │ │ ├── user-accounts.routes.spec.ts │ │ │ └── user-accounts.routes.ts │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── shared │ ├── feature │ │ ├── auth │ │ │ ├── README.md │ │ │ ├── eslint.config.mjs │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── activity-monitor │ │ │ │ │ │ ├── activity-monitor.config.ts │ │ │ │ │ │ ├── container │ │ │ │ │ │ │ ├── activity-monitor.component.html │ │ │ │ │ │ │ ├── activity-monitor.component.spec.ts │ │ │ │ │ │ │ └── activity-monitor.component.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── layout │ │ │ │ │ │ │ ├── activity-monitor-layout.component.html │ │ │ │ │ │ │ └── activity-monitor-layout.component.ts │ │ │ │ │ ├── auth-events-handler │ │ │ │ │ │ ├── auth-events-handler.service.spec.ts │ │ │ │ │ │ └── auth-events-handler.service.ts │ │ │ │ │ ├── guard │ │ │ │ │ │ ├── auth.guard.spec.ts │ │ │ │ │ │ └── auth.guard.ts │ │ │ │ │ ├── initializer │ │ │ │ │ │ ├── auth-provider.ts │ │ │ │ │ │ └── oauth-app-initializer.ts │ │ │ │ │ ├── interceptor │ │ │ │ │ │ ├── auth.interceptor.spec.ts │ │ │ │ │ │ └── auth.interceptor.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── auth.utils.spec.ts │ │ │ │ │ │ └── auth.utils.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── communication │ │ │ ├── README.md │ │ │ ├── eslint.config.mjs │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── journey-communication.service.spec.ts │ │ │ │ │ ├── journey-communication.service.ts │ │ │ │ │ └── payments-communication.service.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── navigation-menu │ │ │ ├── README.md │ │ │ ├── eslint.config.mjs │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── menu-item-id.pipe.spec.ts │ │ │ │ │ ├── menu-item-id.pipe.ts │ │ │ │ │ ├── navigation-menu.component.html │ │ │ │ │ ├── navigation-menu.component.spec.ts │ │ │ │ │ └── navigation-menu.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── user-context │ │ │ ├── README.md │ │ │ ├── eslint.config.mjs │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── shared-user-context.guard.spec.ts │ │ │ │ │ ├── shared-user-context.guard.ts │ │ │ │ │ ├── shared-user-context.interceptor.spec.ts │ │ │ │ │ ├── shared-user-context.interceptor.ts │ │ │ │ │ ├── shared-user-context.service.spec.ts │ │ │ │ │ └── shared-user-context.service.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── view-wrapper │ │ │ ├── README.md │ │ │ ├── eslint.config.mjs │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── view-wrapper.component.html │ │ │ │ └── view-wrapper.component.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ └── util │ │ ├── app-core │ │ ├── README.md │ │ ├── eslint.config.mjs │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── journey-bundle-configuration.model.ts │ │ │ │ ├── locales.service.spec.ts │ │ │ │ ├── locales.service.ts │ │ │ │ ├── navigation-tree.factory.spec.ts │ │ │ │ └── navigation-tree.factory.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ │ ├── config │ │ ├── README.md │ │ ├── eslint.config.mjs │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── shared.config.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ │ ├── e2e-test-accelerators │ │ ├── .gitignore │ │ ├── package.json │ │ └── project.json │ │ ├── e2e-tests │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── page-objects │ │ │ │ ├── _base-component.ts │ │ │ │ ├── _base-page.ts │ │ │ │ ├── index.ts │ │ │ │ └── page-info.ts │ │ │ └── utils │ │ │ │ ├── a11y │ │ │ │ ├── a11y-scanner.ts │ │ │ │ ├── a11y-violations-utility.ts │ │ │ │ └── index.ts │ │ │ │ ├── custom-assertions │ │ │ │ ├── a11y-expect.ts │ │ │ │ ├── custom-expects.ts │ │ │ │ ├── index.ts │ │ │ │ ├── list-to-contain-text-expect.ts │ │ │ │ ├── object-comparator.ts │ │ │ │ ├── objects-contain-expect.ts │ │ │ │ └── objects-list-expect.ts │ │ │ │ ├── data-utils.ts │ │ │ │ ├── date-time-utils.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interfaces │ │ │ │ ├── date-formats.ts │ │ │ │ ├── index.ts │ │ │ │ ├── visual-page-types.ts │ │ │ │ └── visual-types.ts │ │ │ │ ├── locator-options.ts │ │ │ │ ├── playwright-utils.ts │ │ │ │ ├── read-file.ts │ │ │ │ ├── string-utils.ts │ │ │ │ ├── timeouts.ts │ │ │ │ ├── timer-utils.ts │ │ │ │ ├── url-utils.ts │ │ │ │ ├── visual │ │ │ │ ├── index.ts │ │ │ │ └── visual-validator.ts │ │ │ │ └── wait-time-utils.ts │ │ └── tsconfig.json │ │ └── permissions │ │ ├── README.md │ │ ├── eslint.config.mjs │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── entitlementsTriplets.ts │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── transactions-journey │ ├── README.md │ ├── assets │ │ ├── default.png │ │ ├── food.png │ │ └── travel.png │ ├── e2e-tests │ │ ├── data │ │ │ ├── account.ts │ │ │ ├── amount.ts │ │ │ └── transfer.ts │ │ ├── fixture │ │ │ ├── index.ts │ │ │ └── transaction.ts │ │ ├── index.ts │ │ ├── mocks │ │ │ ├── access-control-context.json │ │ │ ├── access-control-summary.json │ │ │ ├── index.ts │ │ │ ├── product-summary-arrangements.json │ │ │ └── transactions-list.json │ │ ├── model │ │ │ ├── index.ts │ │ │ └── transaction.ts │ │ ├── page-objects │ │ │ ├── index.ts │ │ │ ├── pages │ │ │ │ ├── index.ts │ │ │ │ ├── make-transfer.ts │ │ │ │ ├── transaction-details-page.ts │ │ │ │ └── transactions-list-page.ts │ │ │ └── ui-components │ │ │ │ ├── account-selector.ts │ │ │ │ ├── amount.ts │ │ │ │ ├── index.ts │ │ │ │ ├── labeled-data.ts │ │ │ │ ├── transaction-details.ts │ │ │ │ ├── transaction-item.ts │ │ │ │ └── transactions.ts │ │ ├── specs │ │ │ ├── transaction-details.spec.ts │ │ │ └── transactions-list.spec.ts │ │ └── test-cases │ │ │ ├── transaction-details │ │ │ └── transaction-details.feature │ │ │ └── transactions-list │ │ │ └── transaction-list-display-and-search.fixture │ ├── eslint.config.mjs │ ├── internal │ │ ├── data-access │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── ng-package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── services │ │ │ │ │ │ ├── arrangements │ │ │ │ │ │ ├── arrangements.service.spec.ts │ │ │ │ │ │ └── arrangements.service.ts │ │ │ │ │ │ ├── transactions-http │ │ │ │ │ │ ├── transactions.http.service.spec.ts │ │ │ │ │ │ └── transactions.http.service.ts │ │ │ │ │ │ ├── transactions-journey-communication │ │ │ │ │ │ └── transactions-journey-communication.service.ts │ │ │ │ │ │ └── transactions-route-title-resolver │ │ │ │ │ │ ├── transactions-route-title-resolver.service.spec.ts │ │ │ │ │ │ └── transactions-route-title-resolver.service.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ ├── tsconfig.lib.prod.json │ │ │ └── tsconfig.spec.json │ │ ├── feature-transaction-details-view │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── ng-package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── transactions-journey-feature-transaction-details-view.component.html │ │ │ │ │ ├── transactions-journey-feature-transaction-details-view.component.scss │ │ │ │ │ └── transactions-journey-feature-transaction-details-view.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ ├── tsconfig.lib.prod.json │ │ │ └── tsconfig.spec.json │ │ ├── feature-transaction-view │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── ng-package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── components │ │ │ │ │ │ ├── transaction-item │ │ │ │ │ │ │ ├── transaction-item.component.html │ │ │ │ │ │ │ ├── transaction-item.component.scss │ │ │ │ │ │ │ ├── transaction-item.component.spec.ts │ │ │ │ │ │ │ └── transaction-item.component.ts │ │ │ │ │ │ └── transactions-view │ │ │ │ │ │ │ ├── transactions-view.component.html │ │ │ │ │ │ │ ├── transactions-view.component.scss │ │ │ │ │ │ │ ├── transactions-view.component.spec.ts │ │ │ │ │ │ │ └── transactions-view.component.ts │ │ │ │ │ └── extensions │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── transaction-addition-details.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ ├── tsconfig.lib.prod.json │ │ │ └── tsconfig.spec.json │ │ ├── shared-data │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── ng-package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── config │ │ │ │ │ │ ├── constants │ │ │ │ │ │ ├── dynamic-translations.ts │ │ │ │ │ │ └── icon-map.ts │ │ │ │ │ │ └── model │ │ │ │ │ │ ├── tracker-events.ts │ │ │ │ │ │ └── transactions-journey-config.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ ├── tsconfig.lib.prod.json │ │ │ └── tsconfig.spec.json │ │ ├── ui │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── ng-package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── components │ │ │ │ │ │ └── text-filter │ │ │ │ │ │ ├── text-filter.component.html │ │ │ │ │ │ ├── text-filter.component.scss │ │ │ │ │ │ ├── text-filter.component.spec.ts │ │ │ │ │ │ └── text-filter.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ ├── tsconfig.lib.prod.json │ │ │ └── tsconfig.spec.json │ │ └── util │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── ng-package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── mocks │ │ │ │ │ └── transactions-mocks.ts │ │ │ │ └── pipes │ │ │ │ │ ├── filter-transactions.pipe.spec.ts │ │ │ │ │ └── filter-transactions.pipe.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ ├── tsconfig.lib.prod.json │ │ │ └── tsconfig.spec.json │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── transactions-journey.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json └── transfer-journey │ ├── README.md │ ├── eslint.config.mjs │ ├── internal │ ├── data-access │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── services │ │ │ │ │ ├── make-transfer-accounts │ │ │ │ │ ├── make-transfer-accounts.http.service.spec.ts │ │ │ │ │ └── make-transfer-accounts.http.service.ts │ │ │ │ │ ├── make-transfer-communication │ │ │ │ │ └── make-transfer-communication.service.ts │ │ │ │ │ ├── make-transfer-journey-state │ │ │ │ │ ├── make-transfer-journey-state.service.spec.ts │ │ │ │ │ └── make-transfer-journey-state.service.ts │ │ │ │ │ ├── make-transfer-permissions │ │ │ │ │ ├── make-transfer-permissions.service.spec.ts │ │ │ │ │ └── make-transfer-permissions.service.ts │ │ │ │ │ └── make-transfer-route-title-resolver │ │ │ │ │ └── make-transfer-route-title-resolver.service.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.lib.prod.json │ │ └── tsconfig.spec.json │ ├── feature │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── components │ │ │ │ │ ├── make-transfer-success-view │ │ │ │ │ ├── make-transfer-success-view.component.html │ │ │ │ │ ├── make-transfer-success-view.component.spec.ts │ │ │ │ │ └── make-transfer-success-view.component.ts │ │ │ │ │ ├── make-transfer-summary-view │ │ │ │ │ ├── make-transfer-summary-view.component.html │ │ │ │ │ ├── make-transfer-summary-view.component.spec.ts │ │ │ │ │ └── make-transfer-summary-view.component.ts │ │ │ │ │ └── make-transfer-view │ │ │ │ │ ├── make-transfer-view.component.html │ │ │ │ │ ├── make-transfer-view.component.spec.ts │ │ │ │ │ └── make-transfer-view.component.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.lib.prod.json │ │ └── tsconfig.spec.json │ ├── shared-data │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── config │ │ │ │ │ ├── constants │ │ │ │ │ └── dynamic-translations.ts │ │ │ │ │ └── model │ │ │ │ │ ├── Account.ts │ │ │ │ │ ├── make-transfer-journey-config.ts │ │ │ │ │ └── tracker-events.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.lib.prod.json │ │ └── tsconfig.spec.json │ └── ui │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── ng-package.json │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── components │ │ │ │ ├── make-transfer-form │ │ │ │ ├── make-transfer-form.component.html │ │ │ │ ├── make-transfer-form.component.spec.ts │ │ │ │ └── make-transfer-form.component.ts │ │ │ │ └── make-transfer-summary │ │ │ │ ├── make-transfer-summary.component.html │ │ │ │ ├── make-transfer-summary.component.spec.ts │ │ │ │ └── make-transfer-summary.component.ts │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.lib.prod.json │ │ └── tsconfig.spec.json │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ ├── index.ts │ ├── lib │ │ ├── make-transfer-journey-store-guard.ts │ │ ├── transfer-journey.component.html │ │ ├── transfer-journey.component.ts │ │ └── transfer-journey.ts │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── mock-server ├── mock-server.js └── mocks │ └── golden-sample-app │ ├── accessgroups │ ├── serviceagreements_context.json │ ├── user-context.json │ ├── user-context_service-agreements.json │ └── users_permission_summary.json │ ├── arrangements │ └── arrangement_id.json │ ├── balance │ └── balance_aggregations.json │ ├── payment-order-options │ └── client-api │ │ └── v1 │ │ └── payment-options.json │ ├── payment-orders │ ├── payment-orders.json │ └── validate.json │ ├── productsummary │ └── context_arrangements.json │ ├── sample-request │ └── sample.json │ └── transactions │ └── transactions.json ├── nx.json ├── package.json ├── tools └── tsconfig.tools.json └── tsconfig.base.json /.cursor/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.cursor/mcp.json -------------------------------------------------------------------------------- /.cursorindexingignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.cursorindexingignore -------------------------------------------------------------------------------- /.documentation/analytics/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/analytics/main.md -------------------------------------------------------------------------------- /.documentation/api-sandbox/how-to-use-api-sandbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/api-sandbox/how-to-use-api-sandbox.md -------------------------------------------------------------------------------- /.documentation/api-sandbox/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/api-sandbox/main.md -------------------------------------------------------------------------------- /.documentation/authentication/how-to-add-authentication-to-your-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/authentication/how-to-add-authentication-to-your-app.md -------------------------------------------------------------------------------- /.documentation/authentication/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/authentication/main.md -------------------------------------------------------------------------------- /.documentation/build/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/build/main.md -------------------------------------------------------------------------------- /.documentation/components-included-in-app/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/components-included-in-app/main.md -------------------------------------------------------------------------------- /.documentation/docker/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/docker/main.md -------------------------------------------------------------------------------- /.documentation/docker/package-as-a-runnable-docker-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/docker/package-as-a-runnable-docker-container.md -------------------------------------------------------------------------------- /.documentation/docker/running-with-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/docker/running-with-docker.md -------------------------------------------------------------------------------- /.documentation/further-help/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/further-help/main.md -------------------------------------------------------------------------------- /.documentation/generate/generate-a-component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/generate/generate-a-component.md -------------------------------------------------------------------------------- /.documentation/generate/generate-a-library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/generate/generate-a-library.md -------------------------------------------------------------------------------- /.documentation/generate/generate-an-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/generate/generate-an-application.md -------------------------------------------------------------------------------- /.documentation/generate/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/generate/main.md -------------------------------------------------------------------------------- /.documentation/introduction/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/introduction/main.md -------------------------------------------------------------------------------- /.documentation/journeys/communication-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/journeys/communication-service.md -------------------------------------------------------------------------------- /.documentation/journeys/configure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/journeys/configure.md -------------------------------------------------------------------------------- /.documentation/journeys/custom-component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/journeys/custom-component.md -------------------------------------------------------------------------------- /.documentation/journeys/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/journeys/main.md -------------------------------------------------------------------------------- /.documentation/journeys/simple-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/journeys/simple-examples.md -------------------------------------------------------------------------------- /.documentation/load-app-development/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/load-app-development/main.md -------------------------------------------------------------------------------- /.documentation/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/main.md -------------------------------------------------------------------------------- /.documentation/overview/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/overview/main.md -------------------------------------------------------------------------------- /.documentation/pre-requisites/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/pre-requisites/main.md -------------------------------------------------------------------------------- /.documentation/run-app/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/run-app/main.md -------------------------------------------------------------------------------- /.documentation/tests/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/tests/main.md -------------------------------------------------------------------------------- /.documentation/tests/running-e2e-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/tests/running-e2e-tests.md -------------------------------------------------------------------------------- /.documentation/tests/running-unit-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/tests/running-unit-tests.md -------------------------------------------------------------------------------- /.documentation/understand-your-workspace/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/understand-your-workspace/main.md -------------------------------------------------------------------------------- /.documentation/user-credentials/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.documentation/user-credentials/main.md -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/actions/aider/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/actions/aider/Dockerfile -------------------------------------------------------------------------------- /.github/actions/aider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/actions/aider/README.md -------------------------------------------------------------------------------- /.github/actions/aider/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/actions/aider/action.yml -------------------------------------------------------------------------------- /.github/actions/aider/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/actions/aider/entrypoint.sh -------------------------------------------------------------------------------- /.github/actions/aider/requirements.txt: -------------------------------------------------------------------------------- 1 | aider-chat 2 | -------------------------------------------------------------------------------- /.github/actions/node-step/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/actions/node-step/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter-ach-positive-pay.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/release-drafter-ach-positive-pay.yml -------------------------------------------------------------------------------- /.github/release-drafter-transactions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/release-drafter-transactions.yml -------------------------------------------------------------------------------- /.github/release-drafter-transfer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/release-drafter-transfer.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/aider-issue-to-pr.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/workflows/aider-issue-to-pr.README.md -------------------------------------------------------------------------------- /.github/workflows/aider-issue-to-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/workflows/aider-issue-to-pr.yml -------------------------------------------------------------------------------- /.github/workflows/aider-on-issue-labeled.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/workflows/aider-on-issue-labeled.README.md -------------------------------------------------------------------------------- /.github/workflows/aider-on-issue-labeled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/workflows/aider-on-issue-labeled.yml -------------------------------------------------------------------------------- /.github/workflows/delete-runs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/workflows/delete-runs.yml -------------------------------------------------------------------------------- /.github/workflows/foundation-ang-trigger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/workflows/foundation-ang-trigger.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/update-visual-test-snapshots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.github/workflows/update-visual-test-snapshots.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.markdown.json -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.18 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "nxConsole.generateAiAgentRules": true 3 | } 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/README.md -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/eslint.config.mjs -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/playwright-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/playwright-readme.md -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/playwright.config.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/playwright.localhost-mocks.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/playwright.localhost-mocks.config.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/playwright.localhost-sndbx.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/playwright.localhost-sndbx.config.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/playwright.remote.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/playwright.remote.config.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/project.json -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/config/mocks.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/config/mocks.config.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/config/sndbx.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/config/sndbx.config.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/data/credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/data/credentials.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/data/data-types/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/data/data-types/user.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/data/features/login-flow.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/data/features/login-flow.feature -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/data/features/transaction-details.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/data/features/transaction-details.feature -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/data/features/transactions-list.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/data/features/transactions-list.feature -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/data/localization/login-page-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/data/localization/login-page-data.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/data/mocks-data/index.ts: -------------------------------------------------------------------------------- 1 | export * from './transactions.mocks.api.data'; 2 | -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/data/mocks-data/transactions.mocks.api.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/data/mocks-data/transactions.mocks.api.data.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/data/sandbox-api-data/index.ts: -------------------------------------------------------------------------------- 1 | export * from './transactions.sandbox.api.data'; 2 | -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/data/sandbox-api-data/transactions.sandbox.api.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/data/sandbox-api-data/transactions.sandbox.api.data.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/fixtures/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/fixtures/environment.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/fixtures/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/fixtures/test.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/fixtures/transactions.fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/fixtures/transactions.fixture.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/global-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/global-setup.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/page-objects/pages/identity-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/page-objects/pages/identity-page.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/specs/adopted-tests/transaction-details.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/specs/adopted-tests/transaction-details.spec.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/specs/adopted-tests/transactions-list.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/specs/adopted-tests/transactions-list.spec.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/specs/custom-tests/login-flow.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/specs/custom-tests/login-flow.spec.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/specs/custom-tests/transactions.a11y.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/specs/custom-tests/transactions.a11y.spec.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/specs/custom-tests/visual-transactions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/specs/custom-tests/visual-transactions.spec.ts -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/specs/custom-tests/visual-transactions.spec.ts-snapshots/transactions-page-full-mobile-chrome-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/specs/custom-tests/visual-transactions.spec.ts-snapshots/transactions-page-full-mobile-chrome-linux.png -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/src/specs/custom-tests/visual-transactions.spec.ts-snapshots/transactions-page-with-masked-data-mobile-chrome-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/src/specs/custom-tests/visual-transactions.spec.ts-snapshots/transactions-page-with-masked-data-mobile-chrome-linux.png -------------------------------------------------------------------------------- /apps/golden-sample-app-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/golden-sample-app/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/eslint.config.mjs -------------------------------------------------------------------------------- /apps/golden-sample-app/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/jest.config.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/project.json -------------------------------------------------------------------------------- /apps/golden-sample-app/proxy.mocks.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/proxy.mocks.conf.js -------------------------------------------------------------------------------- /apps/golden-sample-app/proxy.stg-ebp.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/proxy.stg-ebp.conf.js -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/app-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/app-routes.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/app.component.html -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/app.component.scss -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/app.error-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/app.error-handler.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/error-page/error-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/error-page/error-page.component.html -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/error-page/error-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/error-page/error-page.component.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/interceptors/ach-positive-pay.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/interceptors/ach-positive-pay.interceptor.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/locale-selector/locale-selector.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/locale-selector/locale-selector.component.html -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/locale-selector/locale-selector.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/locale-selector/locale-selector.component.spec.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/locale-selector/locale-selector.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/locale-selector/locale-selector.component.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/locale-selector/locales-catalog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/locale-selector/locales-catalog.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/navigation-menu/navigation-menu.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/navigation-menu/navigation-menu.config.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/services/analytics.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/services/analytics.service.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/theme-switcher/theme-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/theme-switcher/theme-service.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/theme-switcher/theme-switcher.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/theme-switcher/theme-switcher.component.html -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/theme-switcher/theme-switcher.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/theme-switcher/theme-switcher.component.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/user-context/user-context.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/user-context/user-context.component.html -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/user-context/user-context.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/user-context/user-context.component.spec.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/app/user-context/user-context.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/app/user-context/user-context.component.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/golden-sample-app/src/assets/content/backgrounds-login-2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/assets/content/backgrounds-login-2x.jpg -------------------------------------------------------------------------------- /apps/golden-sample-app/src/assets/content/backgrounds-login-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/assets/content/backgrounds-login-collection.json -------------------------------------------------------------------------------- /apps/golden-sample-app/src/assets/content/fogg-no-comments-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/assets/content/fogg-no-comments-sm.png -------------------------------------------------------------------------------- /apps/golden-sample-app/src/assets/content/login-header.json: -------------------------------------------------------------------------------- 1 | { 2 | "content": "

Log in to Business Banking

\n" 3 | } -------------------------------------------------------------------------------- /apps/golden-sample-app/src/assets/content/logo-emblem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/assets/content/logo-emblem.svg -------------------------------------------------------------------------------- /apps/golden-sample-app/src/assets/content/notFoundText.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/assets/content/notFoundText.json -------------------------------------------------------------------------------- /apps/golden-sample-app/src/assets/fonts/IcoMoon/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/assets/fonts/IcoMoon/Readme.txt -------------------------------------------------------------------------------- /apps/golden-sample-app/src/assets/fonts/IcoMoon/bb-custom-font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/assets/fonts/IcoMoon/bb-custom-font.json -------------------------------------------------------------------------------- /apps/golden-sample-app/src/assets/fonts/IcoMoon/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/assets/fonts/IcoMoon/icomoon.ttf -------------------------------------------------------------------------------- /apps/golden-sample-app/src/environments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/environments/README.md -------------------------------------------------------------------------------- /apps/golden-sample-app/src/environments/api-sandbox-interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/environments/api-sandbox-interceptor.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/environments/environment.mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/environments/environment.mocks.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/environments/telemetry-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/environments/telemetry-config.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/favicon.ico -------------------------------------------------------------------------------- /apps/golden-sample-app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/index.html -------------------------------------------------------------------------------- /apps/golden-sample-app/src/locale/messages.nl-NL.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/locale/messages.nl-NL.xlf -------------------------------------------------------------------------------- /apps/golden-sample-app/src/locale/messages.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/locale/messages.xlf -------------------------------------------------------------------------------- /apps/golden-sample-app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/main.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/styles.scss -------------------------------------------------------------------------------- /apps/golden-sample-app/src/styles_theme-overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/styles_theme-overrides.scss -------------------------------------------------------------------------------- /apps/golden-sample-app/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/test-setup.ts -------------------------------------------------------------------------------- /apps/golden-sample-app/src/themes/theme-premium/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/themes/theme-premium/main.scss -------------------------------------------------------------------------------- /apps/golden-sample-app/src/themes/theme-premium/variables/_index.scss: -------------------------------------------------------------------------------- 1 | @import "./color"; 2 | -------------------------------------------------------------------------------- /apps/golden-sample-app/src/themes/theme-premium/variables/color/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/themes/theme-premium/variables/color/_background.scss -------------------------------------------------------------------------------- /apps/golden-sample-app/src/themes/theme-premium/variables/color/_border.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/themes/theme-premium/variables/color/_border.scss -------------------------------------------------------------------------------- /apps/golden-sample-app/src/themes/theme-premium/variables/color/_focus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/themes/theme-premium/variables/color/_focus.scss -------------------------------------------------------------------------------- /apps/golden-sample-app/src/themes/theme-premium/variables/color/_foreground.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/themes/theme-premium/variables/color/_foreground.scss -------------------------------------------------------------------------------- /apps/golden-sample-app/src/themes/theme-premium/variables/color/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/themes/theme-premium/variables/color/_index.scss -------------------------------------------------------------------------------- /apps/golden-sample-app/src/themes/theme-premium/variables/color/_link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/themes/theme-premium/variables/color/_link.scss -------------------------------------------------------------------------------- /apps/golden-sample-app/src/themes/theme-premium/variables/color/_on-background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/themes/theme-premium/variables/color/_on-background.scss -------------------------------------------------------------------------------- /apps/golden-sample-app/src/xliffmerge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/src/xliffmerge.json -------------------------------------------------------------------------------- /apps/golden-sample-app/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/tsconfig.app.json -------------------------------------------------------------------------------- /apps/golden-sample-app/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/golden-sample-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/tsconfig.json -------------------------------------------------------------------------------- /apps/golden-sample-app/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/apps/golden-sample-app/tsconfig.spec.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/jest.preset.js -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/README.md -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/eslint.config.mjs -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/data-access/README.md -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/data-access/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/data-access/ng-package.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/data-access/project.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/data-access/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/data-access/src/index.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/data-access/src/lib/models/accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/data-access/src/lib/models/accounts.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/data-access/src/lib/models/ach-rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/data-access/src/lib/models/ach-rule.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/data-access/src/lib/services/ach-positive-pay-http/ach-positive-pay.http.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/data-access/src/lib/services/ach-positive-pay-http/ach-positive-pay.http.service.spec.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/data-access/src/lib/services/ach-positive-pay-http/ach-positive-pay.http.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/data-access/src/lib/services/ach-positive-pay-http/ach-positive-pay.http.service.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/data-access/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/data-access/src/test-setup.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/data-access/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/data-access/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/data-access/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/data-access/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/data-access/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/data-access/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/feature/README.md -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/feature/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/feature/ng-package.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/feature/project.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/feature/src/index.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/feature/src/lib/components/ach-positive-pay-journey/ach-positive-pay-journey.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/feature/src/lib/components/ach-positive-pay-journey/ach-positive-pay-journey.component.html -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/feature/src/lib/components/ach-positive-pay-journey/ach-positive-pay-journey.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/feature/src/lib/components/ach-positive-pay-journey/ach-positive-pay-journey.component.spec.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/feature/src/lib/components/ach-positive-pay-journey/ach-positive-pay-journey.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/feature/src/lib/components/ach-positive-pay-journey/ach-positive-pay-journey.component.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/feature/src/lib/components/ach-positive-pay-new-rule/ach-positive-pay-new-rule.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/feature/src/lib/components/ach-positive-pay-new-rule/ach-positive-pay-new-rule.component.html -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/feature/src/lib/components/ach-positive-pay-new-rule/ach-positive-pay-new-rule.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/feature/src/lib/components/ach-positive-pay-new-rule/ach-positive-pay-new-rule.component.spec.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/feature/src/lib/components/ach-positive-pay-new-rule/ach-positive-pay-new-rule.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/feature/src/lib/components/ach-positive-pay-new-rule/ach-positive-pay-new-rule.component.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/feature/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/feature/src/test-setup.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/feature/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/feature/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/shared-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/shared-data/README.md -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/shared-data/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/shared-data/jest.config.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/shared-data/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/shared-data/ng-package.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/shared-data/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/shared-data/project.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/shared-data/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/shared-data/src/index.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/shared-data/src/lib/constants/dynamic-translations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/shared-data/src/lib/constants/dynamic-translations.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/shared-data/src/lib/constants/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/shared-data/src/lib/constants/permissions.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/shared-data/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/shared-data/src/test-setup.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/shared-data/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/shared-data/tsconfig.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/shared-data/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/shared-data/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/shared-data/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/shared-data/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/shared-data/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/shared-data/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/ui/README.md -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/ui/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/ui/jest.config.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/ui/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/ui/ng-package.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/ui/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/ui/project.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/ui/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/ui/src/index.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/ui/src/lib/components/ach-positive-pay-rule-form/ach-positive-pay-rule-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/ui/src/lib/components/ach-positive-pay-rule-form/ach-positive-pay-rule-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/ui/src/lib/components/ach-positive-pay-rule-form/ach-positive-pay-rule-form.component.html -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/ui/src/lib/components/ach-positive-pay-rule-form/ach-positive-pay-rule-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/ui/src/lib/components/ach-positive-pay-rule-form/ach-positive-pay-rule-form.component.spec.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/ui/src/lib/components/ach-positive-pay-rule-form/ach-positive-pay-rule-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/ui/src/lib/components/ach-positive-pay-rule-form/ach-positive-pay-rule-form.component.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/ui/src/lib/components/ach-positive-pay-rules/ach-positive-pay-rules.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/ui/src/lib/components/ach-positive-pay-rules/ach-positive-pay-rules.component.html -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/ui/src/lib/components/ach-positive-pay-rules/ach-positive-pay-rules.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/ui/src/lib/components/ach-positive-pay-rules/ach-positive-pay-rules.component.spec.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/ui/src/lib/components/ach-positive-pay-rules/ach-positive-pay-rules.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/ui/src/lib/components/ach-positive-pay-rules/ach-positive-pay-rules.component.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/ui/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/ui/src/test-setup.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/ui/tsconfig.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/ui/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/ui/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/ui/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/ui/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/internal/ui/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/internal/ui/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/jest.config.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/ng-package.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/package.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/project.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/src/index.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/src/lib/ach-positive-pay-journey.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/src/lib/ach-positive-pay-journey.routes.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/src/lib/provide-ach-positive-pay-journey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/src/lib/provide-ach-positive-pay-journey.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/src/test-setup.ts -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/tsconfig.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/ach-positive-pay-journey/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/ach-positive-pay-journey/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/journey-bundles/ach-positive-pay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/ach-positive-pay/README.md -------------------------------------------------------------------------------- /libs/journey-bundles/ach-positive-pay/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/ach-positive-pay/eslint.config.mjs -------------------------------------------------------------------------------- /libs/journey-bundles/ach-positive-pay/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/ach-positive-pay/jest.config.ts -------------------------------------------------------------------------------- /libs/journey-bundles/ach-positive-pay/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/ach-positive-pay/project.json -------------------------------------------------------------------------------- /libs/journey-bundles/ach-positive-pay/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/ach-positive-pay/src/index.ts -------------------------------------------------------------------------------- /libs/journey-bundles/ach-positive-pay/src/lib/ach-positive-pay-journey-bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/ach-positive-pay/src/lib/ach-positive-pay-journey-bundle.ts -------------------------------------------------------------------------------- /libs/journey-bundles/ach-positive-pay/src/lib/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/ach-positive-pay/src/lib/navigation.ts -------------------------------------------------------------------------------- /libs/journey-bundles/ach-positive-pay/src/lib/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/ach-positive-pay/src/lib/route.ts -------------------------------------------------------------------------------- /libs/journey-bundles/ach-positive-pay/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/ach-positive-pay/src/test-setup.ts -------------------------------------------------------------------------------- /libs/journey-bundles/ach-positive-pay/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/ach-positive-pay/tsconfig.json -------------------------------------------------------------------------------- /libs/journey-bundles/ach-positive-pay/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/ach-positive-pay/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/journey-bundles/ach-positive-pay/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/ach-positive-pay/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/journey-bundles/custom-payment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/custom-payment/README.md -------------------------------------------------------------------------------- /libs/journey-bundles/custom-payment/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/custom-payment/eslint.config.mjs -------------------------------------------------------------------------------- /libs/journey-bundles/custom-payment/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/custom-payment/jest.config.ts -------------------------------------------------------------------------------- /libs/journey-bundles/custom-payment/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/custom-payment/project.json -------------------------------------------------------------------------------- /libs/journey-bundles/custom-payment/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/custom-payment/src/README.md -------------------------------------------------------------------------------- /libs/journey-bundles/custom-payment/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/custom-payment/src/index.ts -------------------------------------------------------------------------------- /libs/journey-bundles/custom-payment/src/lib/components/initiator/initiator.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/custom-payment/src/lib/components/initiator/initiator.component.ts -------------------------------------------------------------------------------- /libs/journey-bundles/custom-payment/src/lib/components/initiator/initiator.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/custom-payment/src/lib/components/initiator/initiator.model.ts -------------------------------------------------------------------------------- /libs/journey-bundles/custom-payment/src/lib/components/initiator/initiator.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/custom-payment/src/lib/components/initiator/initiator.service.spec.ts -------------------------------------------------------------------------------- /libs/journey-bundles/custom-payment/src/lib/components/initiator/initiator.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/custom-payment/src/lib/components/initiator/initiator.service.ts -------------------------------------------------------------------------------- /libs/journey-bundles/custom-payment/src/lib/custom-payment.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/custom-payment/src/lib/custom-payment.config.ts -------------------------------------------------------------------------------- /libs/journey-bundles/custom-payment/src/lib/initiate-payment-journey-bundle.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/custom-payment/src/lib/initiate-payment-journey-bundle.module.ts -------------------------------------------------------------------------------- /libs/journey-bundles/custom-payment/src/lib/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/custom-payment/src/lib/navigation.ts -------------------------------------------------------------------------------- /libs/journey-bundles/custom-payment/src/lib/provide-custom-payment-journey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/custom-payment/src/lib/provide-custom-payment-journey.ts -------------------------------------------------------------------------------- /libs/journey-bundles/custom-payment/src/lib/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/custom-payment/src/lib/route.ts -------------------------------------------------------------------------------- /libs/journey-bundles/custom-payment/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/custom-payment/src/test-setup.ts -------------------------------------------------------------------------------- /libs/journey-bundles/custom-payment/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/custom-payment/tsconfig.json -------------------------------------------------------------------------------- /libs/journey-bundles/custom-payment/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/custom-payment/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/journey-bundles/custom-payment/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/custom-payment/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/journey-bundles/transactions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transactions/README.md -------------------------------------------------------------------------------- /libs/journey-bundles/transactions/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transactions/eslint.config.mjs -------------------------------------------------------------------------------- /libs/journey-bundles/transactions/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transactions/jest.config.ts -------------------------------------------------------------------------------- /libs/journey-bundles/transactions/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transactions/project.json -------------------------------------------------------------------------------- /libs/journey-bundles/transactions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transactions/src/index.ts -------------------------------------------------------------------------------- /libs/journey-bundles/transactions/src/lib/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transactions/src/lib/navigation.ts -------------------------------------------------------------------------------- /libs/journey-bundles/transactions/src/lib/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transactions/src/lib/route.ts -------------------------------------------------------------------------------- /libs/journey-bundles/transactions/src/lib/transaction-additional-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transactions/src/lib/transaction-additional-details.component.html -------------------------------------------------------------------------------- /libs/journey-bundles/transactions/src/lib/transaction-additional-details.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transactions/src/lib/transaction-additional-details.component.scss -------------------------------------------------------------------------------- /libs/journey-bundles/transactions/src/lib/transaction-additional-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transactions/src/lib/transaction-additional-details.component.ts -------------------------------------------------------------------------------- /libs/journey-bundles/transactions/src/lib/transactions.bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transactions/src/lib/transactions.bundle.ts -------------------------------------------------------------------------------- /libs/journey-bundles/transactions/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transactions/src/test-setup.ts -------------------------------------------------------------------------------- /libs/journey-bundles/transactions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transactions/tsconfig.json -------------------------------------------------------------------------------- /libs/journey-bundles/transactions/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transactions/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/journey-bundles/transactions/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transactions/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/journey-bundles/transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transfer/README.md -------------------------------------------------------------------------------- /libs/journey-bundles/transfer/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transfer/eslint.config.mjs -------------------------------------------------------------------------------- /libs/journey-bundles/transfer/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transfer/jest.config.ts -------------------------------------------------------------------------------- /libs/journey-bundles/transfer/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transfer/project.json -------------------------------------------------------------------------------- /libs/journey-bundles/transfer/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transfer/src/index.ts -------------------------------------------------------------------------------- /libs/journey-bundles/transfer/src/lib/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transfer/src/lib/navigation.ts -------------------------------------------------------------------------------- /libs/journey-bundles/transfer/src/lib/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transfer/src/lib/route.ts -------------------------------------------------------------------------------- /libs/journey-bundles/transfer/src/lib/transfer-journey.bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transfer/src/lib/transfer-journey.bundle.ts -------------------------------------------------------------------------------- /libs/journey-bundles/transfer/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transfer/src/test-setup.ts -------------------------------------------------------------------------------- /libs/journey-bundles/transfer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transfer/tsconfig.json -------------------------------------------------------------------------------- /libs/journey-bundles/transfer/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transfer/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/journey-bundles/transfer/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/transfer/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/journey-bundles/user-accounts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/user-accounts/README.md -------------------------------------------------------------------------------- /libs/journey-bundles/user-accounts/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/user-accounts/eslint.config.mjs -------------------------------------------------------------------------------- /libs/journey-bundles/user-accounts/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/user-accounts/jest.config.ts -------------------------------------------------------------------------------- /libs/journey-bundles/user-accounts/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/user-accounts/project.json -------------------------------------------------------------------------------- /libs/journey-bundles/user-accounts/src/index.ts: -------------------------------------------------------------------------------- 1 | export { USER_ACCOUNTS_ROUTE } from './lib/route'; 2 | -------------------------------------------------------------------------------- /libs/journey-bundles/user-accounts/src/lib/model/tracker-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/user-accounts/src/lib/model/tracker-events.ts -------------------------------------------------------------------------------- /libs/journey-bundles/user-accounts/src/lib/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/user-accounts/src/lib/navigation.ts -------------------------------------------------------------------------------- /libs/journey-bundles/user-accounts/src/lib/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/user-accounts/src/lib/route.ts -------------------------------------------------------------------------------- /libs/journey-bundles/user-accounts/src/lib/user-accounts-view/user-accounts-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/user-accounts/src/lib/user-accounts-view/user-accounts-view.component.html -------------------------------------------------------------------------------- /libs/journey-bundles/user-accounts/src/lib/user-accounts-view/user-accounts-view.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/user-accounts/src/lib/user-accounts-view/user-accounts-view.component.spec.ts -------------------------------------------------------------------------------- /libs/journey-bundles/user-accounts/src/lib/user-accounts-view/user-accounts-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/user-accounts/src/lib/user-accounts-view/user-accounts-view.component.ts -------------------------------------------------------------------------------- /libs/journey-bundles/user-accounts/src/lib/user-accounts.routes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/user-accounts/src/lib/user-accounts.routes.spec.ts -------------------------------------------------------------------------------- /libs/journey-bundles/user-accounts/src/lib/user-accounts.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/user-accounts/src/lib/user-accounts.routes.ts -------------------------------------------------------------------------------- /libs/journey-bundles/user-accounts/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/user-accounts/src/test-setup.ts -------------------------------------------------------------------------------- /libs/journey-bundles/user-accounts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/user-accounts/tsconfig.json -------------------------------------------------------------------------------- /libs/journey-bundles/user-accounts/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/user-accounts/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/journey-bundles/user-accounts/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/journey-bundles/user-accounts/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/feature/auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/README.md -------------------------------------------------------------------------------- /libs/shared/feature/auth/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/eslint.config.mjs -------------------------------------------------------------------------------- /libs/shared/feature/auth/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/feature/auth/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/project.json -------------------------------------------------------------------------------- /libs/shared/feature/auth/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/src/index.ts -------------------------------------------------------------------------------- /libs/shared/feature/auth/src/lib/activity-monitor/activity-monitor.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/src/lib/activity-monitor/activity-monitor.config.ts -------------------------------------------------------------------------------- /libs/shared/feature/auth/src/lib/activity-monitor/container/activity-monitor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/src/lib/activity-monitor/container/activity-monitor.component.html -------------------------------------------------------------------------------- /libs/shared/feature/auth/src/lib/activity-monitor/container/activity-monitor.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/src/lib/activity-monitor/container/activity-monitor.component.spec.ts -------------------------------------------------------------------------------- /libs/shared/feature/auth/src/lib/activity-monitor/container/activity-monitor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/src/lib/activity-monitor/container/activity-monitor.component.ts -------------------------------------------------------------------------------- /libs/shared/feature/auth/src/lib/activity-monitor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/src/lib/activity-monitor/index.ts -------------------------------------------------------------------------------- /libs/shared/feature/auth/src/lib/activity-monitor/layout/activity-monitor-layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/src/lib/activity-monitor/layout/activity-monitor-layout.component.html -------------------------------------------------------------------------------- /libs/shared/feature/auth/src/lib/activity-monitor/layout/activity-monitor-layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/src/lib/activity-monitor/layout/activity-monitor-layout.component.ts -------------------------------------------------------------------------------- /libs/shared/feature/auth/src/lib/auth-events-handler/auth-events-handler.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/src/lib/auth-events-handler/auth-events-handler.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/feature/auth/src/lib/auth-events-handler/auth-events-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/src/lib/auth-events-handler/auth-events-handler.service.ts -------------------------------------------------------------------------------- /libs/shared/feature/auth/src/lib/guard/auth.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/src/lib/guard/auth.guard.spec.ts -------------------------------------------------------------------------------- /libs/shared/feature/auth/src/lib/guard/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/src/lib/guard/auth.guard.ts -------------------------------------------------------------------------------- /libs/shared/feature/auth/src/lib/initializer/auth-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/src/lib/initializer/auth-provider.ts -------------------------------------------------------------------------------- /libs/shared/feature/auth/src/lib/initializer/oauth-app-initializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/src/lib/initializer/oauth-app-initializer.ts -------------------------------------------------------------------------------- /libs/shared/feature/auth/src/lib/interceptor/auth.interceptor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/src/lib/interceptor/auth.interceptor.spec.ts -------------------------------------------------------------------------------- /libs/shared/feature/auth/src/lib/interceptor/auth.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/src/lib/interceptor/auth.interceptor.ts -------------------------------------------------------------------------------- /libs/shared/feature/auth/src/lib/utils/auth.utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/src/lib/utils/auth.utils.spec.ts -------------------------------------------------------------------------------- /libs/shared/feature/auth/src/lib/utils/auth.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/src/lib/utils/auth.utils.ts -------------------------------------------------------------------------------- /libs/shared/feature/auth/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/src/test-setup.ts -------------------------------------------------------------------------------- /libs/shared/feature/auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/feature/auth/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/feature/auth/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/auth/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/feature/communication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/communication/README.md -------------------------------------------------------------------------------- /libs/shared/feature/communication/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/communication/eslint.config.mjs -------------------------------------------------------------------------------- /libs/shared/feature/communication/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/communication/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/feature/communication/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/communication/project.json -------------------------------------------------------------------------------- /libs/shared/feature/communication/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/communication/src/index.ts -------------------------------------------------------------------------------- /libs/shared/feature/communication/src/lib/journey-communication.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/communication/src/lib/journey-communication.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/feature/communication/src/lib/journey-communication.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/communication/src/lib/journey-communication.service.ts -------------------------------------------------------------------------------- /libs/shared/feature/communication/src/lib/payments-communication.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/communication/src/lib/payments-communication.service.ts -------------------------------------------------------------------------------- /libs/shared/feature/communication/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/communication/src/test-setup.ts -------------------------------------------------------------------------------- /libs/shared/feature/communication/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/communication/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/feature/communication/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/communication/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/feature/communication/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/communication/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/feature/navigation-menu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/navigation-menu/README.md -------------------------------------------------------------------------------- /libs/shared/feature/navigation-menu/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/navigation-menu/eslint.config.mjs -------------------------------------------------------------------------------- /libs/shared/feature/navigation-menu/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/navigation-menu/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/feature/navigation-menu/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/navigation-menu/project.json -------------------------------------------------------------------------------- /libs/shared/feature/navigation-menu/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/navigation-menu/src/index.ts -------------------------------------------------------------------------------- /libs/shared/feature/navigation-menu/src/lib/menu-item-id.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/navigation-menu/src/lib/menu-item-id.pipe.spec.ts -------------------------------------------------------------------------------- /libs/shared/feature/navigation-menu/src/lib/menu-item-id.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/navigation-menu/src/lib/menu-item-id.pipe.ts -------------------------------------------------------------------------------- /libs/shared/feature/navigation-menu/src/lib/navigation-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/navigation-menu/src/lib/navigation-menu.component.html -------------------------------------------------------------------------------- /libs/shared/feature/navigation-menu/src/lib/navigation-menu.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/navigation-menu/src/lib/navigation-menu.component.spec.ts -------------------------------------------------------------------------------- /libs/shared/feature/navigation-menu/src/lib/navigation-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/navigation-menu/src/lib/navigation-menu.component.ts -------------------------------------------------------------------------------- /libs/shared/feature/navigation-menu/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/navigation-menu/src/test-setup.ts -------------------------------------------------------------------------------- /libs/shared/feature/navigation-menu/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/navigation-menu/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/feature/navigation-menu/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/navigation-menu/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/feature/navigation-menu/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/navigation-menu/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/feature/user-context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/user-context/README.md -------------------------------------------------------------------------------- /libs/shared/feature/user-context/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/user-context/eslint.config.mjs -------------------------------------------------------------------------------- /libs/shared/feature/user-context/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/user-context/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/feature/user-context/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/user-context/project.json -------------------------------------------------------------------------------- /libs/shared/feature/user-context/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/user-context/src/index.ts -------------------------------------------------------------------------------- /libs/shared/feature/user-context/src/lib/shared-user-context.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/user-context/src/lib/shared-user-context.guard.spec.ts -------------------------------------------------------------------------------- /libs/shared/feature/user-context/src/lib/shared-user-context.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/user-context/src/lib/shared-user-context.guard.ts -------------------------------------------------------------------------------- /libs/shared/feature/user-context/src/lib/shared-user-context.interceptor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/user-context/src/lib/shared-user-context.interceptor.spec.ts -------------------------------------------------------------------------------- /libs/shared/feature/user-context/src/lib/shared-user-context.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/user-context/src/lib/shared-user-context.interceptor.ts -------------------------------------------------------------------------------- /libs/shared/feature/user-context/src/lib/shared-user-context.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/user-context/src/lib/shared-user-context.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/feature/user-context/src/lib/shared-user-context.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/user-context/src/lib/shared-user-context.service.ts -------------------------------------------------------------------------------- /libs/shared/feature/user-context/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/user-context/src/test-setup.ts -------------------------------------------------------------------------------- /libs/shared/feature/user-context/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/user-context/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/feature/user-context/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/user-context/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/feature/user-context/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/user-context/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/feature/view-wrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/view-wrapper/README.md -------------------------------------------------------------------------------- /libs/shared/feature/view-wrapper/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/view-wrapper/eslint.config.mjs -------------------------------------------------------------------------------- /libs/shared/feature/view-wrapper/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/view-wrapper/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/feature/view-wrapper/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/view-wrapper/project.json -------------------------------------------------------------------------------- /libs/shared/feature/view-wrapper/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/view-wrapper/src/index.ts -------------------------------------------------------------------------------- /libs/shared/feature/view-wrapper/src/lib/view-wrapper.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/view-wrapper/src/lib/view-wrapper.component.html -------------------------------------------------------------------------------- /libs/shared/feature/view-wrapper/src/lib/view-wrapper.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/view-wrapper/src/lib/view-wrapper.component.ts -------------------------------------------------------------------------------- /libs/shared/feature/view-wrapper/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/view-wrapper/src/test-setup.ts -------------------------------------------------------------------------------- /libs/shared/feature/view-wrapper/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/view-wrapper/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/feature/view-wrapper/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/view-wrapper/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/feature/view-wrapper/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/feature/view-wrapper/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/util/app-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/app-core/README.md -------------------------------------------------------------------------------- /libs/shared/util/app-core/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/app-core/eslint.config.mjs -------------------------------------------------------------------------------- /libs/shared/util/app-core/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/app-core/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/util/app-core/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/app-core/project.json -------------------------------------------------------------------------------- /libs/shared/util/app-core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/app-core/src/index.ts -------------------------------------------------------------------------------- /libs/shared/util/app-core/src/lib/journey-bundle-configuration.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/app-core/src/lib/journey-bundle-configuration.model.ts -------------------------------------------------------------------------------- /libs/shared/util/app-core/src/lib/locales.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/app-core/src/lib/locales.service.spec.ts -------------------------------------------------------------------------------- /libs/shared/util/app-core/src/lib/locales.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/app-core/src/lib/locales.service.ts -------------------------------------------------------------------------------- /libs/shared/util/app-core/src/lib/navigation-tree.factory.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/app-core/src/lib/navigation-tree.factory.spec.ts -------------------------------------------------------------------------------- /libs/shared/util/app-core/src/lib/navigation-tree.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/app-core/src/lib/navigation-tree.factory.ts -------------------------------------------------------------------------------- /libs/shared/util/app-core/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/app-core/src/test-setup.ts -------------------------------------------------------------------------------- /libs/shared/util/app-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/app-core/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/util/app-core/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/app-core/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/util/app-core/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/app-core/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/util/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/config/README.md -------------------------------------------------------------------------------- /libs/shared/util/config/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/config/eslint.config.mjs -------------------------------------------------------------------------------- /libs/shared/util/config/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/config/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/util/config/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/config/project.json -------------------------------------------------------------------------------- /libs/shared/util/config/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/config/src/index.ts -------------------------------------------------------------------------------- /libs/shared/util/config/src/lib/shared.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/config/src/lib/shared.config.ts -------------------------------------------------------------------------------- /libs/shared/util/config/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/config/src/test-setup.ts -------------------------------------------------------------------------------- /libs/shared/util/config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/config/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/util/config/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/config/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/util/config/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/config/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/util/e2e-test-accelerators/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-test-accelerators/.gitignore -------------------------------------------------------------------------------- /libs/shared/util/e2e-test-accelerators/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-test-accelerators/package.json -------------------------------------------------------------------------------- /libs/shared/util/e2e-test-accelerators/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-test-accelerators/project.json -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/project.json -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/index.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/page-objects/_base-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/page-objects/_base-component.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/page-objects/_base-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/page-objects/_base-page.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/page-objects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/page-objects/index.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/page-objects/page-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/page-objects/page-info.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/a11y/a11y-scanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/a11y/a11y-scanner.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/a11y/a11y-violations-utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/a11y/a11y-violations-utility.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/a11y/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/a11y/index.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/custom-assertions/a11y-expect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/custom-assertions/a11y-expect.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/custom-assertions/custom-expects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/custom-assertions/custom-expects.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/custom-assertions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/custom-assertions/index.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/custom-assertions/list-to-contain-text-expect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/custom-assertions/list-to-contain-text-expect.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/custom-assertions/object-comparator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/custom-assertions/object-comparator.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/custom-assertions/objects-contain-expect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/custom-assertions/objects-contain-expect.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/custom-assertions/objects-list-expect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/custom-assertions/objects-list-expect.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/data-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/data-utils.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/date-time-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/date-time-utils.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/index.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/interfaces/date-formats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/interfaces/date-formats.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/interfaces/index.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/interfaces/visual-page-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/interfaces/visual-page-types.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/interfaces/visual-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/interfaces/visual-types.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/locator-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/locator-options.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/playwright-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/playwright-utils.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/read-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/read-file.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/string-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/string-utils.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/timeouts.ts: -------------------------------------------------------------------------------- 1 | export const PAGE_TO_LOAD = 30_000; 2 | -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/timer-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/timer-utils.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/url-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/url-utils.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/visual/index.ts: -------------------------------------------------------------------------------- 1 | export * from './visual-validator'; 2 | -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/visual/visual-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/visual/visual-validator.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/src/utils/wait-time-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/src/utils/wait-time-utils.ts -------------------------------------------------------------------------------- /libs/shared/util/e2e-tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/e2e-tests/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/util/permissions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/permissions/README.md -------------------------------------------------------------------------------- /libs/shared/util/permissions/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/permissions/eslint.config.mjs -------------------------------------------------------------------------------- /libs/shared/util/permissions/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/permissions/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/util/permissions/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/permissions/project.json -------------------------------------------------------------------------------- /libs/shared/util/permissions/src/index.ts: -------------------------------------------------------------------------------- 1 | export { PERMISSIONS } from './lib/entitlementsTriplets'; 2 | -------------------------------------------------------------------------------- /libs/shared/util/permissions/src/lib/entitlementsTriplets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/permissions/src/lib/entitlementsTriplets.ts -------------------------------------------------------------------------------- /libs/shared/util/permissions/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/permissions/src/test-setup.ts -------------------------------------------------------------------------------- /libs/shared/util/permissions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/permissions/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/util/permissions/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/permissions/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/util/permissions/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/shared/util/permissions/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transactions-journey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/README.md -------------------------------------------------------------------------------- /libs/transactions-journey/assets/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/assets/default.png -------------------------------------------------------------------------------- /libs/transactions-journey/assets/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/assets/food.png -------------------------------------------------------------------------------- /libs/transactions-journey/assets/travel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/assets/travel.png -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/data/account.ts: -------------------------------------------------------------------------------- 1 | export type Account = { id: number; name: string }; 2 | -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/data/amount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/data/amount.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/data/transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/data/transfer.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/fixture/index.ts: -------------------------------------------------------------------------------- 1 | export * from './transaction'; 2 | -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/fixture/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/fixture/transaction.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/index.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/mocks/access-control-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/mocks/access-control-context.json -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/mocks/access-control-summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/mocks/access-control-summary.json -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/mocks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/mocks/index.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/mocks/product-summary-arrangements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/mocks/product-summary-arrangements.json -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/mocks/transactions-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/mocks/transactions-list.json -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/model/index.ts: -------------------------------------------------------------------------------- 1 | export * from './transaction'; 2 | -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/model/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/model/transaction.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/page-objects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/page-objects/index.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/page-objects/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/page-objects/pages/index.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/page-objects/pages/make-transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/page-objects/pages/make-transfer.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/page-objects/pages/transaction-details-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/page-objects/pages/transaction-details-page.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/page-objects/pages/transactions-list-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/page-objects/pages/transactions-list-page.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/page-objects/ui-components/account-selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/page-objects/ui-components/account-selector.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/page-objects/ui-components/amount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/page-objects/ui-components/amount.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/page-objects/ui-components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/page-objects/ui-components/index.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/page-objects/ui-components/labeled-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/page-objects/ui-components/labeled-data.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/page-objects/ui-components/transaction-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/page-objects/ui-components/transaction-details.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/page-objects/ui-components/transaction-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/page-objects/ui-components/transaction-item.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/page-objects/ui-components/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/page-objects/ui-components/transactions.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/specs/transaction-details.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/specs/transaction-details.spec.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/specs/transactions-list.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/specs/transactions-list.spec.ts -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/test-cases/transaction-details/transaction-details.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/test-cases/transaction-details/transaction-details.feature -------------------------------------------------------------------------------- /libs/transactions-journey/e2e-tests/test-cases/transactions-list/transaction-list-display-and-search.fixture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/e2e-tests/test-cases/transactions-list/transaction-list-display-and-search.fixture -------------------------------------------------------------------------------- /libs/transactions-journey/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/eslint.config.mjs -------------------------------------------------------------------------------- /libs/transactions-journey/internal/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/data-access/README.md -------------------------------------------------------------------------------- /libs/transactions-journey/internal/data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/data-access/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/data-access/ng-package.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/data-access/project.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/data-access/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/data-access/src/index.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/data-access/src/lib/services/arrangements/arrangements.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/data-access/src/lib/services/arrangements/arrangements.service.spec.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/data-access/src/lib/services/arrangements/arrangements.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/data-access/src/lib/services/arrangements/arrangements.service.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/data-access/src/lib/services/transactions-http/transactions.http.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/data-access/src/lib/services/transactions-http/transactions.http.service.spec.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/data-access/src/lib/services/transactions-http/transactions.http.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/data-access/src/lib/services/transactions-http/transactions.http.service.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/data-access/src/lib/services/transactions-journey-communication/transactions-journey-communication.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/data-access/src/lib/services/transactions-journey-communication/transactions-journey-communication.service.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/data-access/src/lib/services/transactions-route-title-resolver/transactions-route-title-resolver.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/data-access/src/lib/services/transactions-route-title-resolver/transactions-route-title-resolver.service.spec.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/data-access/src/lib/services/transactions-route-title-resolver/transactions-route-title-resolver.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/data-access/src/lib/services/transactions-route-title-resolver/transactions-route-title-resolver.service.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/data-access/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/data-access/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/data-access/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/data-access/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/data-access/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/data-access/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/data-access/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/data-access/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-details-view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-details-view/README.md -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-details-view/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-details-view/jest.config.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-details-view/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-details-view/ng-package.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-details-view/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-details-view/project.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-details-view/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-details-view/src/index.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-details-view/src/lib/transactions-journey-feature-transaction-details-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-details-view/src/lib/transactions-journey-feature-transaction-details-view.component.html -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-details-view/src/lib/transactions-journey-feature-transaction-details-view.component.scss: -------------------------------------------------------------------------------- 1 | .header { 2 | display: flex; 3 | justify-content: space-between; 4 | } 5 | -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-details-view/src/lib/transactions-journey-feature-transaction-details-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-details-view/src/lib/transactions-journey-feature-transaction-details-view.component.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-details-view/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-details-view/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-details-view/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-details-view/tsconfig.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-details-view/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-details-view/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-details-view/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-details-view/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-details-view/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-details-view/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/README.md -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/jest.config.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/ng-package.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/project.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/src/index.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/src/lib/components/transaction-item/transaction-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/src/lib/components/transaction-item/transaction-item.component.html -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/src/lib/components/transaction-item/transaction-item.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/src/lib/components/transaction-item/transaction-item.component.scss -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/src/lib/components/transaction-item/transaction-item.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/src/lib/components/transaction-item/transaction-item.component.spec.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/src/lib/components/transaction-item/transaction-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/src/lib/components/transaction-item/transaction-item.component.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/src/lib/components/transactions-view/transactions-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/src/lib/components/transactions-view/transactions-view.component.html -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/src/lib/components/transactions-view/transactions-view.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/src/lib/components/transactions-view/transactions-view.component.scss -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/src/lib/components/transactions-view/transactions-view.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/src/lib/components/transactions-view/transactions-view.component.spec.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/src/lib/components/transactions-view/transactions-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/src/lib/components/transactions-view/transactions-view.component.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/src/lib/extensions/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/src/lib/extensions/config.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/src/lib/extensions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/src/lib/extensions/index.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/src/lib/extensions/transaction-addition-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/src/lib/extensions/transaction-addition-details.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/tsconfig.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/feature-transaction-view/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/feature-transaction-view/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/shared-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/shared-data/README.md -------------------------------------------------------------------------------- /libs/transactions-journey/internal/shared-data/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/shared-data/jest.config.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/shared-data/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/shared-data/ng-package.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/shared-data/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/shared-data/project.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/shared-data/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/shared-data/src/index.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/shared-data/src/lib/config/constants/dynamic-translations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/shared-data/src/lib/config/constants/dynamic-translations.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/shared-data/src/lib/config/constants/icon-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/shared-data/src/lib/config/constants/icon-map.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/shared-data/src/lib/config/model/tracker-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/shared-data/src/lib/config/model/tracker-events.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/shared-data/src/lib/config/model/transactions-journey-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/shared-data/src/lib/config/model/transactions-journey-config.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/shared-data/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/shared-data/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/shared-data/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/shared-data/tsconfig.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/shared-data/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/shared-data/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/shared-data/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/shared-data/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/shared-data/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/shared-data/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/ui/README.md -------------------------------------------------------------------------------- /libs/transactions-journey/internal/ui/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/ui/jest.config.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/ui/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/ui/ng-package.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/ui/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/ui/project.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/ui/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/ui/src/index.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/ui/src/lib/components/text-filter/text-filter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/ui/src/lib/components/text-filter/text-filter.component.html -------------------------------------------------------------------------------- /libs/transactions-journey/internal/ui/src/lib/components/text-filter/text-filter.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | margin: 10px 0; 3 | } 4 | -------------------------------------------------------------------------------- /libs/transactions-journey/internal/ui/src/lib/components/text-filter/text-filter.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/ui/src/lib/components/text-filter/text-filter.component.spec.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/ui/src/lib/components/text-filter/text-filter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/ui/src/lib/components/text-filter/text-filter.component.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/ui/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/ui/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/ui/tsconfig.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/ui/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/ui/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/ui/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/ui/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/ui/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/ui/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/util/README.md -------------------------------------------------------------------------------- /libs/transactions-journey/internal/util/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/util/jest.config.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/util/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/util/ng-package.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/util/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/util/project.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/util/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/util/src/index.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/util/src/lib/mocks/transactions-mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/util/src/lib/mocks/transactions-mocks.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/util/src/lib/pipes/filter-transactions.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/util/src/lib/pipes/filter-transactions.pipe.spec.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/util/src/lib/pipes/filter-transactions.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/util/src/lib/pipes/filter-transactions.pipe.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/util/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/util/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transactions-journey/internal/util/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/util/tsconfig.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/util/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/util/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/util/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/util/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/transactions-journey/internal/util/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/internal/util/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transactions-journey/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/jest.config.ts -------------------------------------------------------------------------------- /libs/transactions-journey/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/ng-package.json -------------------------------------------------------------------------------- /libs/transactions-journey/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/package.json -------------------------------------------------------------------------------- /libs/transactions-journey/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/project.json -------------------------------------------------------------------------------- /libs/transactions-journey/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/src/index.ts -------------------------------------------------------------------------------- /libs/transactions-journey/src/lib/transactions-journey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/src/lib/transactions-journey.ts -------------------------------------------------------------------------------- /libs/transactions-journey/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transactions-journey/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/tsconfig.json -------------------------------------------------------------------------------- /libs/transactions-journey/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transactions-journey/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/transactions-journey/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transactions-journey/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transfer-journey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/README.md -------------------------------------------------------------------------------- /libs/transfer-journey/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/eslint.config.mjs -------------------------------------------------------------------------------- /libs/transfer-journey/internal/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/data-access/README.md -------------------------------------------------------------------------------- /libs/transfer-journey/internal/data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/data-access/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/data-access/ng-package.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/data-access/project.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/data-access/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/data-access/src/index.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/data-access/src/lib/services/make-transfer-accounts/make-transfer-accounts.http.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/data-access/src/lib/services/make-transfer-accounts/make-transfer-accounts.http.service.spec.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/data-access/src/lib/services/make-transfer-accounts/make-transfer-accounts.http.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/data-access/src/lib/services/make-transfer-accounts/make-transfer-accounts.http.service.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/data-access/src/lib/services/make-transfer-communication/make-transfer-communication.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/data-access/src/lib/services/make-transfer-communication/make-transfer-communication.service.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/data-access/src/lib/services/make-transfer-journey-state/make-transfer-journey-state.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/data-access/src/lib/services/make-transfer-journey-state/make-transfer-journey-state.service.spec.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/data-access/src/lib/services/make-transfer-journey-state/make-transfer-journey-state.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/data-access/src/lib/services/make-transfer-journey-state/make-transfer-journey-state.service.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/data-access/src/lib/services/make-transfer-permissions/make-transfer-permissions.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/data-access/src/lib/services/make-transfer-permissions/make-transfer-permissions.service.spec.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/data-access/src/lib/services/make-transfer-permissions/make-transfer-permissions.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/data-access/src/lib/services/make-transfer-permissions/make-transfer-permissions.service.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/data-access/src/lib/services/make-transfer-route-title-resolver/make-transfer-route-title-resolver.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/data-access/src/lib/services/make-transfer-route-title-resolver/make-transfer-route-title-resolver.service.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/data-access/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/data-access/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/data-access/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/data-access/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/data-access/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/data-access/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/data-access/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/data-access/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/feature/README.md -------------------------------------------------------------------------------- /libs/transfer-journey/internal/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/feature/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/feature/ng-package.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/feature/project.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/feature/src/index.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/feature/src/lib/components/make-transfer-success-view/make-transfer-success-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/feature/src/lib/components/make-transfer-success-view/make-transfer-success-view.component.html -------------------------------------------------------------------------------- /libs/transfer-journey/internal/feature/src/lib/components/make-transfer-success-view/make-transfer-success-view.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/feature/src/lib/components/make-transfer-success-view/make-transfer-success-view.component.spec.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/feature/src/lib/components/make-transfer-success-view/make-transfer-success-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/feature/src/lib/components/make-transfer-success-view/make-transfer-success-view.component.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/feature/src/lib/components/make-transfer-summary-view/make-transfer-summary-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/feature/src/lib/components/make-transfer-summary-view/make-transfer-summary-view.component.html -------------------------------------------------------------------------------- /libs/transfer-journey/internal/feature/src/lib/components/make-transfer-summary-view/make-transfer-summary-view.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/feature/src/lib/components/make-transfer-summary-view/make-transfer-summary-view.component.spec.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/feature/src/lib/components/make-transfer-summary-view/make-transfer-summary-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/feature/src/lib/components/make-transfer-summary-view/make-transfer-summary-view.component.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/feature/src/lib/components/make-transfer-view/make-transfer-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/feature/src/lib/components/make-transfer-view/make-transfer-view.component.html -------------------------------------------------------------------------------- /libs/transfer-journey/internal/feature/src/lib/components/make-transfer-view/make-transfer-view.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/feature/src/lib/components/make-transfer-view/make-transfer-view.component.spec.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/feature/src/lib/components/make-transfer-view/make-transfer-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/feature/src/lib/components/make-transfer-view/make-transfer-view.component.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/feature/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/feature/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/feature/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/feature/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/shared-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/shared-data/README.md -------------------------------------------------------------------------------- /libs/transfer-journey/internal/shared-data/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/shared-data/jest.config.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/shared-data/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/shared-data/ng-package.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/shared-data/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/shared-data/project.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/shared-data/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/shared-data/src/index.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/shared-data/src/lib/config/constants/dynamic-translations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/shared-data/src/lib/config/constants/dynamic-translations.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/shared-data/src/lib/config/model/Account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/shared-data/src/lib/config/model/Account.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/shared-data/src/lib/config/model/make-transfer-journey-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/shared-data/src/lib/config/model/make-transfer-journey-config.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/shared-data/src/lib/config/model/tracker-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/shared-data/src/lib/config/model/tracker-events.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/shared-data/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/shared-data/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/shared-data/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/shared-data/tsconfig.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/shared-data/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/shared-data/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/shared-data/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/shared-data/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/shared-data/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/shared-data/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/ui/README.md -------------------------------------------------------------------------------- /libs/transfer-journey/internal/ui/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/ui/jest.config.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/ui/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/ui/ng-package.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/ui/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/ui/project.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/ui/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/ui/src/index.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/ui/src/lib/components/make-transfer-form/make-transfer-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/ui/src/lib/components/make-transfer-form/make-transfer-form.component.html -------------------------------------------------------------------------------- /libs/transfer-journey/internal/ui/src/lib/components/make-transfer-form/make-transfer-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/ui/src/lib/components/make-transfer-form/make-transfer-form.component.spec.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/ui/src/lib/components/make-transfer-form/make-transfer-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/ui/src/lib/components/make-transfer-form/make-transfer-form.component.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/ui/src/lib/components/make-transfer-summary/make-transfer-summary.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/ui/src/lib/components/make-transfer-summary/make-transfer-summary.component.html -------------------------------------------------------------------------------- /libs/transfer-journey/internal/ui/src/lib/components/make-transfer-summary/make-transfer-summary.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/ui/src/lib/components/make-transfer-summary/make-transfer-summary.component.spec.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/ui/src/lib/components/make-transfer-summary/make-transfer-summary.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/ui/src/lib/components/make-transfer-summary/make-transfer-summary.component.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/ui/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/ui/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transfer-journey/internal/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/ui/tsconfig.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/ui/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/ui/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/ui/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/ui/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/transfer-journey/internal/ui/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/internal/ui/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transfer-journey/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/jest.config.ts -------------------------------------------------------------------------------- /libs/transfer-journey/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/ng-package.json -------------------------------------------------------------------------------- /libs/transfer-journey/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/package.json -------------------------------------------------------------------------------- /libs/transfer-journey/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/project.json -------------------------------------------------------------------------------- /libs/transfer-journey/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/src/index.ts -------------------------------------------------------------------------------- /libs/transfer-journey/src/lib/make-transfer-journey-store-guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/src/lib/make-transfer-journey-store-guard.ts -------------------------------------------------------------------------------- /libs/transfer-journey/src/lib/transfer-journey.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/src/lib/transfer-journey.component.html -------------------------------------------------------------------------------- /libs/transfer-journey/src/lib/transfer-journey.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/src/lib/transfer-journey.component.ts -------------------------------------------------------------------------------- /libs/transfer-journey/src/lib/transfer-journey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/src/lib/transfer-journey.ts -------------------------------------------------------------------------------- /libs/transfer-journey/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transfer-journey/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/tsconfig.json -------------------------------------------------------------------------------- /libs/transfer-journey/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transfer-journey/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/transfer-journey/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/libs/transfer-journey/tsconfig.spec.json -------------------------------------------------------------------------------- /mock-server/mock-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/mock-server/mock-server.js -------------------------------------------------------------------------------- /mock-server/mocks/golden-sample-app/accessgroups/serviceagreements_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/mock-server/mocks/golden-sample-app/accessgroups/serviceagreements_context.json -------------------------------------------------------------------------------- /mock-server/mocks/golden-sample-app/accessgroups/user-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/mock-server/mocks/golden-sample-app/accessgroups/user-context.json -------------------------------------------------------------------------------- /mock-server/mocks/golden-sample-app/accessgroups/user-context_service-agreements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/mock-server/mocks/golden-sample-app/accessgroups/user-context_service-agreements.json -------------------------------------------------------------------------------- /mock-server/mocks/golden-sample-app/accessgroups/users_permission_summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/mock-server/mocks/golden-sample-app/accessgroups/users_permission_summary.json -------------------------------------------------------------------------------- /mock-server/mocks/golden-sample-app/arrangements/arrangement_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/mock-server/mocks/golden-sample-app/arrangements/arrangement_id.json -------------------------------------------------------------------------------- /mock-server/mocks/golden-sample-app/balance/balance_aggregations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/mock-server/mocks/golden-sample-app/balance/balance_aggregations.json -------------------------------------------------------------------------------- /mock-server/mocks/golden-sample-app/payment-order-options/client-api/v1/payment-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/mock-server/mocks/golden-sample-app/payment-order-options/client-api/v1/payment-options.json -------------------------------------------------------------------------------- /mock-server/mocks/golden-sample-app/payment-orders/payment-orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/mock-server/mocks/golden-sample-app/payment-orders/payment-orders.json -------------------------------------------------------------------------------- /mock-server/mocks/golden-sample-app/payment-orders/validate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/mock-server/mocks/golden-sample-app/payment-orders/validate.json -------------------------------------------------------------------------------- /mock-server/mocks/golden-sample-app/productsummary/context_arrangements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/mock-server/mocks/golden-sample-app/productsummary/context_arrangements.json -------------------------------------------------------------------------------- /mock-server/mocks/golden-sample-app/sample-request/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/mock-server/mocks/golden-sample-app/sample-request/sample.json -------------------------------------------------------------------------------- /mock-server/mocks/golden-sample-app/transactions/transactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/mock-server/mocks/golden-sample-app/transactions/transactions.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/package.json -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Backbase/golden-sample-app/HEAD/tsconfig.base.json --------------------------------------------------------------------------------