├── .github ├── CODEOWNERS └── workflows │ ├── collect-metrics.yml │ └── linkChecker.yml ├── .gitignore ├── LICENSE ├── README.md ├── account.png ├── amplify.yml ├── app ├── .editorconfig ├── client │ ├── .eslintignore │ ├── .eslintrc.js │ ├── index.html │ ├── package.json │ ├── pnpm-lock.yaml │ ├── public │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── mockServiceWorker.js │ │ ├── mstile-150x150.png │ │ ├── robots.txt │ │ └── safari-pinned-tab.svg │ ├── src │ │ ├── App.tsx │ │ ├── components │ │ │ ├── EnvironmentSwitcher.tsx │ │ │ ├── ErrorFallback.tsx │ │ │ ├── Layout.tsx │ │ │ ├── PoweredBy.tsx │ │ │ ├── RequestPreviewDrawer.tsx │ │ │ ├── Sidebar.tsx │ │ │ ├── UnicornDropdown.tsx │ │ │ └── UnicornTable.tsx │ │ ├── context │ │ │ ├── EnvContext.tsx │ │ │ └── RequestPreviewContext.tsx │ │ ├── css │ │ │ └── styles.css │ │ ├── features │ │ │ ├── AccountBalances │ │ │ │ ├── AccountBalancesDisplay.tsx │ │ │ │ ├── AccountBalancesTypes.ts │ │ │ │ └── SubmitAccountBalancesRequest.ts │ │ │ ├── GlobalPayments │ │ │ │ ├── GlobalPaymentTypes.ts │ │ │ │ ├── GlobalPaymentsConfig.ts │ │ │ │ ├── GlobalPaymentsInputForm.tsx │ │ │ │ └── SubmitGlobalPaymentsRequest.tsx │ │ │ └── ValidationServices │ │ │ │ ├── SubmitValidationServicesRequest.ts │ │ │ │ ├── ValidationServiceConfig.ts │ │ │ │ ├── ValidationServiceInputForm.tsx │ │ │ │ └── ValidationServicesTypes.ts │ │ ├── images │ │ │ ├── avatar.png │ │ │ ├── github.png │ │ │ ├── uf-logo-mini.svg │ │ │ └── uf-logo.svg │ │ ├── index.tsx │ │ ├── mocks │ │ │ ├── browser.ts │ │ │ ├── handlers.ts │ │ │ └── mockedJson │ │ │ │ ├── AccountBalances.json │ │ │ │ ├── GlobalPayments.json │ │ │ │ ├── ValidationServicesACS.json │ │ │ │ └── ValidationServicesAuth.json │ │ └── pages │ │ │ ├── AccountPage.tsx │ │ │ ├── PaymentsPage.tsx │ │ │ └── ValidationsPage.tsx │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── vite-env.d.ts │ └── vite.config.mts ├── package.json └── server │ ├── .eslintrc.js │ ├── .prettierrc.js │ ├── DEPLOYMENT_GUIDE.md │ ├── README.md │ ├── app.js │ ├── app.local.js │ ├── digitalSignature.js │ ├── digitalSignature.png │ ├── grabSecret.js │ ├── index.js │ ├── lambda-deployment │ └── build-lambda.sh │ ├── mock-server │ ├── Caddyfile │ ├── compose.yaml │ └── specs │ │ ├── global_payments_2_0_22.yaml │ │ └── validation_services_2_1_11.yaml │ ├── package-lambda.json │ ├── package-layer.json │ ├── package.json │ └── pnpm-lock.yaml ├── metrics ├── clone_count.csv ├── referrer_stats.csv └── view_count.csv ├── postman ├── README.md └── Unicorn Finance.postman_collection.json └── whatApi.png /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/collect-metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/.github/workflows/collect-metrics.yml -------------------------------------------------------------------------------- /.github/workflows/linkChecker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/.github/workflows/linkChecker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/README.md -------------------------------------------------------------------------------- /account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/account.png -------------------------------------------------------------------------------- /amplify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/amplify.yml -------------------------------------------------------------------------------- /app/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/.editorconfig -------------------------------------------------------------------------------- /app/client/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/.eslintignore -------------------------------------------------------------------------------- /app/client/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/.eslintrc.js -------------------------------------------------------------------------------- /app/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/index.html -------------------------------------------------------------------------------- /app/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/package.json -------------------------------------------------------------------------------- /app/client/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/pnpm-lock.yaml -------------------------------------------------------------------------------- /app/client/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /app/client/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /app/client/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/public/apple-touch-icon.png -------------------------------------------------------------------------------- /app/client/public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/public/browserconfig.xml -------------------------------------------------------------------------------- /app/client/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/public/favicon-16x16.png -------------------------------------------------------------------------------- /app/client/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/public/favicon-32x32.png -------------------------------------------------------------------------------- /app/client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/public/favicon.ico -------------------------------------------------------------------------------- /app/client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/public/manifest.json -------------------------------------------------------------------------------- /app/client/public/mockServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/public/mockServiceWorker.js -------------------------------------------------------------------------------- /app/client/public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/public/mstile-150x150.png -------------------------------------------------------------------------------- /app/client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/public/robots.txt -------------------------------------------------------------------------------- /app/client/public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /app/client/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/App.tsx -------------------------------------------------------------------------------- /app/client/src/components/EnvironmentSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/components/EnvironmentSwitcher.tsx -------------------------------------------------------------------------------- /app/client/src/components/ErrorFallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/components/ErrorFallback.tsx -------------------------------------------------------------------------------- /app/client/src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/components/Layout.tsx -------------------------------------------------------------------------------- /app/client/src/components/PoweredBy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/components/PoweredBy.tsx -------------------------------------------------------------------------------- /app/client/src/components/RequestPreviewDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/components/RequestPreviewDrawer.tsx -------------------------------------------------------------------------------- /app/client/src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /app/client/src/components/UnicornDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/components/UnicornDropdown.tsx -------------------------------------------------------------------------------- /app/client/src/components/UnicornTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/components/UnicornTable.tsx -------------------------------------------------------------------------------- /app/client/src/context/EnvContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/context/EnvContext.tsx -------------------------------------------------------------------------------- /app/client/src/context/RequestPreviewContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/context/RequestPreviewContext.tsx -------------------------------------------------------------------------------- /app/client/src/css/styles.css: -------------------------------------------------------------------------------- 1 | @import "tailwindcss"; 2 | 3 | -------------------------------------------------------------------------------- /app/client/src/features/AccountBalances/AccountBalancesDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/features/AccountBalances/AccountBalancesDisplay.tsx -------------------------------------------------------------------------------- /app/client/src/features/AccountBalances/AccountBalancesTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/features/AccountBalances/AccountBalancesTypes.ts -------------------------------------------------------------------------------- /app/client/src/features/AccountBalances/SubmitAccountBalancesRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/features/AccountBalances/SubmitAccountBalancesRequest.ts -------------------------------------------------------------------------------- /app/client/src/features/GlobalPayments/GlobalPaymentTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/features/GlobalPayments/GlobalPaymentTypes.ts -------------------------------------------------------------------------------- /app/client/src/features/GlobalPayments/GlobalPaymentsConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/features/GlobalPayments/GlobalPaymentsConfig.ts -------------------------------------------------------------------------------- /app/client/src/features/GlobalPayments/GlobalPaymentsInputForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/features/GlobalPayments/GlobalPaymentsInputForm.tsx -------------------------------------------------------------------------------- /app/client/src/features/GlobalPayments/SubmitGlobalPaymentsRequest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/features/GlobalPayments/SubmitGlobalPaymentsRequest.tsx -------------------------------------------------------------------------------- /app/client/src/features/ValidationServices/SubmitValidationServicesRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/features/ValidationServices/SubmitValidationServicesRequest.ts -------------------------------------------------------------------------------- /app/client/src/features/ValidationServices/ValidationServiceConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/features/ValidationServices/ValidationServiceConfig.ts -------------------------------------------------------------------------------- /app/client/src/features/ValidationServices/ValidationServiceInputForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/features/ValidationServices/ValidationServiceInputForm.tsx -------------------------------------------------------------------------------- /app/client/src/features/ValidationServices/ValidationServicesTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/features/ValidationServices/ValidationServicesTypes.ts -------------------------------------------------------------------------------- /app/client/src/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/images/avatar.png -------------------------------------------------------------------------------- /app/client/src/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/images/github.png -------------------------------------------------------------------------------- /app/client/src/images/uf-logo-mini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/images/uf-logo-mini.svg -------------------------------------------------------------------------------- /app/client/src/images/uf-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/images/uf-logo.svg -------------------------------------------------------------------------------- /app/client/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/index.tsx -------------------------------------------------------------------------------- /app/client/src/mocks/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/mocks/browser.ts -------------------------------------------------------------------------------- /app/client/src/mocks/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/mocks/handlers.ts -------------------------------------------------------------------------------- /app/client/src/mocks/mockedJson/AccountBalances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/mocks/mockedJson/AccountBalances.json -------------------------------------------------------------------------------- /app/client/src/mocks/mockedJson/GlobalPayments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/mocks/mockedJson/GlobalPayments.json -------------------------------------------------------------------------------- /app/client/src/mocks/mockedJson/ValidationServicesACS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/mocks/mockedJson/ValidationServicesACS.json -------------------------------------------------------------------------------- /app/client/src/mocks/mockedJson/ValidationServicesAuth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/mocks/mockedJson/ValidationServicesAuth.json -------------------------------------------------------------------------------- /app/client/src/pages/AccountPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/pages/AccountPage.tsx -------------------------------------------------------------------------------- /app/client/src/pages/PaymentsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/pages/PaymentsPage.tsx -------------------------------------------------------------------------------- /app/client/src/pages/ValidationsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/src/pages/ValidationsPage.tsx -------------------------------------------------------------------------------- /app/client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/tailwind.config.js -------------------------------------------------------------------------------- /app/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/tsconfig.json -------------------------------------------------------------------------------- /app/client/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /app/client/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/client/vite.config.mts -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/package.json -------------------------------------------------------------------------------- /app/server/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/server/.eslintrc.js -------------------------------------------------------------------------------- /app/server/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/server/.prettierrc.js -------------------------------------------------------------------------------- /app/server/DEPLOYMENT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/server/DEPLOYMENT_GUIDE.md -------------------------------------------------------------------------------- /app/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/server/README.md -------------------------------------------------------------------------------- /app/server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/server/app.js -------------------------------------------------------------------------------- /app/server/app.local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/server/app.local.js -------------------------------------------------------------------------------- /app/server/digitalSignature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/server/digitalSignature.js -------------------------------------------------------------------------------- /app/server/digitalSignature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/server/digitalSignature.png -------------------------------------------------------------------------------- /app/server/grabSecret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/server/grabSecret.js -------------------------------------------------------------------------------- /app/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/server/index.js -------------------------------------------------------------------------------- /app/server/lambda-deployment/build-lambda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/server/lambda-deployment/build-lambda.sh -------------------------------------------------------------------------------- /app/server/mock-server/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/server/mock-server/Caddyfile -------------------------------------------------------------------------------- /app/server/mock-server/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/server/mock-server/compose.yaml -------------------------------------------------------------------------------- /app/server/mock-server/specs/global_payments_2_0_22.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/server/mock-server/specs/global_payments_2_0_22.yaml -------------------------------------------------------------------------------- /app/server/mock-server/specs/validation_services_2_1_11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/server/mock-server/specs/validation_services_2_1_11.yaml -------------------------------------------------------------------------------- /app/server/package-lambda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/server/package-lambda.json -------------------------------------------------------------------------------- /app/server/package-layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/server/package-layer.json -------------------------------------------------------------------------------- /app/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/server/package.json -------------------------------------------------------------------------------- /app/server/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/app/server/pnpm-lock.yaml -------------------------------------------------------------------------------- /metrics/clone_count.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/metrics/clone_count.csv -------------------------------------------------------------------------------- /metrics/referrer_stats.csv: -------------------------------------------------------------------------------- 1 | Date,Referrer,Count,Uniques 2 | -------------------------------------------------------------------------------- /metrics/view_count.csv: -------------------------------------------------------------------------------- 1 | Date,Total Views,Unique Visitors 2 | -------------------------------------------------------------------------------- /postman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/postman/README.md -------------------------------------------------------------------------------- /postman/Unicorn Finance.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/postman/Unicorn Finance.postman_collection.json -------------------------------------------------------------------------------- /whatApi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmorgan-payments/unicorn-finance/HEAD/whatApi.png --------------------------------------------------------------------------------