-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
API Overhaul - NestJS, better plaid imports and Transaction support #77
# The biggest refactor ever This started with the motivation of having a good baseline before tackling the next big feature #49 but it morphed into a complete re-write of the old API in a new framework, along with tonnes of bug fixes, a comprehensive suite of API graphql tests (Which we didn't have before) and even some new functionality. ## Features - `Transactions` - I just went ahead and implemented the backend for transactions, now given a set of tranasctions our application can apply them to a portfolio by adding / removing holdings - Cash is now a holding, i made cash into a security, but this still needs some work. This provides a better UX as users can see cash exposure alongside their stock holdings in a single UI. IT also theoretically supports difference currencies, so down the line we could even support FX trading, although I reckon the UI for portfolios is not the best fit for FX trading. - **Better plaid import** - I completely overthauled the plaid importing, not only is the code now actually sensible and readable, but it is faster, handles edge cases better and our UI / API can now hold **securities that do not exist on baggers**. Thats the big one for me, so if a users broker has several weird deriviates that we could not possibly have market data for,the UI can still render them and show them some kind of price information based on the plaid data. ## Re-thinks - Portfolios will once again go back to **Basic** , **Trade** and **Watchlist**. This is to provide users with a more taylored experience for the type of portfolio they want to work with. Because a user who just wants to quickly add several holdings directly from their phone UI to see their approximate value, does not really care about transactions, ie. when they bought and when they sold each share. And vice versa, a user who is selling trading signals to a group of users does not care about directly adding holdings, timing is everythign for those guys. So it would make sense to completeley taylor the portfolo UI based on each of these experiences.
- Loading branch information
Showing
2,734 changed files
with
70,977 additions
and
66,689 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
node_modules | ||
cypress | ||
dist | ||
.github | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
# Editor configuration, see http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
|
||
[*.{js,json,yml}] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
max_line_length = off | ||
trim_trailing_whitespace = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"root": true, | ||
"plugins": ["@nrwl/nx"], | ||
"overrides": [ | ||
{ | ||
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"], | ||
"rules": { | ||
"@nrwl/nx/enforce-module-boundaries": [ | ||
"error", | ||
{ | ||
"enforceBuildableLibDependency": true, | ||
"allow": ["~"], | ||
"depConstraints": [ | ||
{ | ||
"sourceTag": "*", | ||
"onlyDependOnLibsWithTags": ["*"] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"files": ["*.ts", "*.tsx"], | ||
"extends": ["plugin:@nrwl/nx/typescript"], | ||
"rules": { | ||
"@typescript-eslint/no-unused-vars": "error" | ||
} | ||
}, | ||
{ | ||
"files": ["*.js", "*.jsx"], | ||
"extends": ["plugin:@nrwl/nx/javascript"], | ||
"rules": {} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,47 @@ | ||
/node_modules | ||
# See http://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
old-api | ||
# compiled output | ||
dist | ||
/tmp | ||
/out-tsc | ||
|
||
# local env files | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
# dependencies | ||
node_modules | ||
|
||
tags | ||
# IDEs and editors | ||
/.idea | ||
.project | ||
.classpath | ||
.c9/ | ||
*.launch | ||
.settings/ | ||
*.sublime-workspace | ||
|
||
.yarn/* | ||
!.yarn/cache | ||
!.yarn/patches | ||
!.yarn/plugins | ||
!.yarn/releases | ||
!.yarn/sdks | ||
!.yarn/versions | ||
# IDE - VSCode | ||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
|
||
lerna-debug.log | ||
# misc | ||
/.sass-cache | ||
/connect.lock | ||
/coverage | ||
/libpeerconnection.log | ||
npm-debug.log | ||
yarn-error.log | ||
testem.log | ||
/typings | ||
|
||
# System Files | ||
.DS_Store | ||
Thumbs.db | ||
|
||
.env* | ||
!.env.test | ||
# Remix files | ||
apps/**/build | ||
apps/**/.cache | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v18.3.0 | ||
v16.13.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Add files here to ignore them from prettier formatting | ||
|
||
/dist | ||
/coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
{ | ||
"trailingComma": "all", | ||
"singleQuote": true, | ||
"printWidth": 80, | ||
"tabWidth": 2 | ||
"singleQuote": true | ||
} |
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-20.5 KB
.yarn/cache/@ampproject-remapping-npm-2.2.0-114878fa50-d74d170d06.zip
Binary file not shown.
Binary file removed
BIN
-10.5 KB
.yarn/cache/@anatine-esbuild-decorators-npm-0.2.19-df4bcbeeaa-c948048597.zip
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-5.45 KB
.yarn/cache/@apollo-utils.dropunuseddefinitions-npm-1.1.0-82863788ff-b66e07086e.zip
Binary file not shown.
Binary file removed
BIN
-5.52 KB
.yarn/cache/@apollo-utils.logger-npm-1.0.0-793c9d2678-9be2b269d6.zip
Binary file not shown.
Binary file removed
BIN
-6.19 KB
.yarn/cache/@apollo-utils.printwithreducedwhitespace-npm-1.1.0-9142d379e6-8653675168.zip
Binary file not shown.
Binary file removed
BIN
-5.46 KB
.yarn/cache/@apollo-utils.removealiases-npm-1.0.0-f392722bde-fda30ad4ee.zip
Binary file not shown.
Binary file removed
BIN
-5.09 KB
.yarn/cache/@apollo-utils.sortast-npm-1.1.0-4794e294d1-5ec695d8c9.zip
Binary file not shown.
Binary file removed
BIN
-6.07 KB
.yarn/cache/@apollo-utils.stripsensitiveliterals-npm-1.2.0-a837e57dac-5910186a30.zip
Binary file not shown.
Binary file removed
BIN
-15.3 KB
.yarn/cache/@apollo-utils.usagereporting-npm-1.0.0-c1da57d5e0-9f4d1b8381.zip
Binary file not shown.
Binary file removed
BIN
-31.9 KB
.yarn/cache/@apollographql-apollo-tools-npm-0.5.4-61303be2a9-673eaaf371.zip
Binary file not shown.
Binary file removed
BIN
-10.2 KB
.yarn/cache/@apollographql-graphql-playground-html-npm-1.6.29-84b1764137-32984ae225.zip
Binary file not shown.
Binary file removed
BIN
-49.8 KB
.yarn/cache/@architect-architect-npm-10.3.3-f7a85a9ceb-a045872d6a.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-69.4 KB
.yarn/cache/@architect-inventory-npm-3.1.1-cf94d4abb1-2b040cf7d4.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-5.19 KB
.yarn/cache/@architect-plugin-typescript-npm-0.1.0-0a8c5db471-b9ad60de52.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-4.06 KB
.yarn/cache/@babel-code-frame-npm-7.12.11-1a9a1b277f-3963eff3eb.zip
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-8.86 KB
.yarn/cache/@babel-compat-data-npm-7.17.10-78bb00a360-e85051087c.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-2.74 KB
.yarn/cache/@babel-helper-annotate-as-pure-npm-7.16.7-75d26b1e4c-d235be963f.zip
Binary file not shown.
Binary file removed
BIN
-3.18 KB
...el-helper-builder-binary-assignment-operator-visitor-npm-7.16.7-fa4a09f41d-1784f19a57.zip
Binary file not shown.
Binary file removed
BIN
-8.62 KB
.yarn/cache/@babel-helper-compilation-targets-npm-7.18.2-dc0a980fcf-4f02e79f20.zip
Binary file not shown.
Binary file removed
BIN
-15.5 KB
.yarn/cache/@babel-helper-create-class-features-plugin-npm-7.18.0-014a2978be-9a6ef17535.zip
Binary file not shown.
Binary file removed
BIN
-4.93 KB
...n/cache/@babel-helper-create-regexp-features-plugin-npm-7.17.12-a615eb0070-fe49d26b0f.zip
Binary file not shown.
Binary file removed
BIN
-65.7 KB
.yarn/cache/@babel-helper-define-polyfill-provider-npm-0.3.1-7c6efdf410-e3e93cb22f.zip
Binary file not shown.
Binary file removed
BIN
-2.88 KB
.yarn/cache/@babel-helper-environment-visitor-npm-7.18.2-ef86d22a2e-1a9c8726fa.zip
Binary file not shown.
Binary file removed
BIN
-3.29 KB
.yarn/cache/@babel-helper-explode-assignable-expression-npm-7.16.7-29ba312670-ea2135ba36.zip
Binary file not shown.
Binary file removed
BIN
-3.84 KB
.yarn/cache/@babel-helper-function-name-npm-7.17.9-baf558fead-a59b2e5af5.zip
Binary file not shown.
Binary file removed
BIN
-2.98 KB
.yarn/cache/@babel-helper-hoist-variables-npm-7.16.7-25cc3abba4-6ae1641f4a.zip
Binary file not shown.
Binary file removed
BIN
-15.4 KB
...n/cache/@babel-helper-member-expression-to-functions-npm-7.17.7-b9e674a20e-70f361bab6.zip
Binary file not shown.
Binary file removed
BIN
-6.12 KB
.yarn/cache/@babel-helper-module-imports-npm-7.16.7-19c74fd92b-ddd2c4a600.zip
Binary file not shown.
Binary file removed
BIN
-12.3 KB
.yarn/cache/@babel-helper-module-transforms-npm-7.18.0-7aab6847ad-824c3967c0.zip
Binary file not shown.
Binary file removed
BIN
-2.88 KB
.yarn/cache/@babel-helper-optimise-call-expression-npm-7.16.7-27e4a63d42-925feb877d.zip
Binary file not shown.
Binary file removed
BIN
-3.33 KB
.yarn/cache/@babel-helper-plugin-utils-npm-7.17.12-49129e950f-4813cf0ddb.zip
Binary file not shown.
Binary file removed
BIN
-3.22 KB
.yarn/cache/@babel-helper-remap-async-to-generator-npm-7.16.8-9a3804d4f8-29282ee368.zip
Binary file not shown.
Binary file removed
BIN
-4.2 KB
.yarn/cache/@babel-helper-replace-supers-npm-7.18.2-d6d77110b0-c0083b7933.zip
Binary file not shown.
Binary file removed
BIN
-3.26 KB
.yarn/cache/@babel-helper-simple-access-npm-7.18.2-e317ecdcbd-c0862b56db.zip
Binary file not shown.
Binary file removed
BIN
-3 KB
...e/@babel-helper-skip-transparent-expression-wrappers-npm-7.16.0-caad6e8361-b9ed2896eb.zip
Binary file not shown.
Binary file removed
BIN
-3.15 KB
.yarn/cache/@babel-helper-split-export-declaration-npm-7.16.7-5b9ae90171-e10aaf1354.zip
Binary file not shown.
Binary file removed
BIN
-9.07 KB
.yarn/cache/@babel-helper-validator-identifier-npm-7.16.7-8599fb00fc-dbb3db9d18.zip
Binary file not shown.
Binary file removed
BIN
-3.82 KB
.yarn/cache/@babel-helper-validator-option-npm-7.16.7-d13e9c1d9e-c5ccc45191.zip
Binary file not shown.
Binary file removed
BIN
-3.37 KB
.yarn/cache/@babel-helper-wrap-function-npm-7.16.8-6f134e6cd3-d8aae4baca.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-5.47 KB
...i-id-destructuring-collision-in-function-expression-npm-7.17.12-be0fb80319-6ef739b3a2.zip
Binary file not shown.
Binary file removed
BIN
-6 KB
...in-bugfix-v8-spread-parameters-in-optional-chaining-npm-7.17.12-3b9097f27f-68520a8f26.zip
Binary file not shown.
Binary file removed
BIN
-4.6 KB
...he/@babel-plugin-proposal-async-generator-functions-npm-7.17.12-d40dff0630-16a3c7f68a.zip
Binary file not shown.
Binary file removed
BIN
-3.02 KB
.yarn/cache/@babel-plugin-proposal-class-properties-npm-7.17.12-f05345c9c2-884df6a461.zip
Binary file not shown.
Binary file removed
BIN
-3.45 KB
.yarn/cache/@babel-plugin-proposal-class-static-block-npm-7.18.0-63904f3f14-70fd622fd7.zip
Binary file not shown.
Binary file removed
BIN
-14 KB
.yarn/cache/@babel-plugin-proposal-decorators-npm-7.18.2-627099ec22-cb40e31afe.zip
Binary file not shown.
Binary file removed
BIN
-3.14 KB
.yarn/cache/@babel-plugin-proposal-dynamic-import-npm-7.16.7-c8dcbf7085-5992012484.zip
Binary file not shown.
Binary file removed
BIN
-3.29 KB
.../cache/@babel-plugin-proposal-export-namespace-from-npm-7.17.12-590b8c9c2a-41c9cd4c0a.zip
Binary file not shown.
Binary file removed
BIN
-3.09 KB
.yarn/cache/@babel-plugin-proposal-json-strings-npm-7.17.12-4951358b71-8ed4ee3fbc.zip
Binary file not shown.
Binary file removed
BIN
-3.41 KB
...@babel-plugin-proposal-logical-assignment-operators-npm-7.17.12-6f46a088bb-0d48451836.zip
Binary file not shown.
Binary file removed
BIN
-3.41 KB
.../@babel-plugin-proposal-nullish-coalescing-operator-npm-7.17.12-4cd59b391b-7881d8005d.zip
Binary file not shown.
Binary file removed
BIN
-3.05 KB
.yarn/cache/@babel-plugin-proposal-numeric-separator-npm-7.16.7-e445f742d7-8e2fb0b328.zip
Binary file not shown.
Binary file removed
BIN
-22.3 KB
.yarn/cache/@babel-plugin-proposal-object-rest-spread-npm-7.18.0-bd5ba90f45-2b49bcf9a6.zip
Binary file not shown.
Binary file removed
BIN
-3.03 KB
.../cache/@babel-plugin-proposal-optional-catch-binding-npm-7.16.7-8ab736f892-4a422bb19a.zip
Binary file not shown.
Binary file removed
BIN
-11.2 KB
.yarn/cache/@babel-plugin-proposal-optional-chaining-npm-7.17.12-6037fe9352-a27b220573.zip
Binary file not shown.
Binary file removed
BIN
-2.93 KB
.yarn/cache/@babel-plugin-proposal-private-methods-npm-7.17.12-8ced4a48ee-a1e5bd6a0a.zip
Binary file not shown.
Binary file removed
BIN
-4.21 KB
...e/@babel-plugin-proposal-private-property-in-object-npm-7.17.12-8f1c21a7d0-056cb77994.zip
Binary file not shown.
Binary file removed
BIN
-3.12 KB
...cache/@babel-plugin-proposal-unicode-property-regex-npm-7.17.12-92805926f8-0e41945104.zip
Binary file not shown.
Binary file removed
BIN
-2.73 KB
.yarn/cache/@babel-plugin-syntax-async-generators-npm-7.8.4-d10cf993c9-7ed1c1d9b9.zip
Binary file not shown.
Binary file removed
BIN
-2.59 KB
.yarn/cache/@babel-plugin-syntax-bigint-npm-7.8.3-b05d971e6c-3a10849d83.zip
Binary file not shown.
Binary file removed
BIN
-2.76 KB
.yarn/cache/@babel-plugin-syntax-class-properties-npm-7.12.13-002ee9d930-24f34b196d.zip
Binary file not shown.
Binary file removed
BIN
-2.83 KB
.yarn/cache/@babel-plugin-syntax-class-static-block-npm-7.14.5-7bdd0ff1b3-3e80814b5b.zip
Binary file not shown.
Binary file removed
BIN
-3.1 KB
.yarn/cache/@babel-plugin-syntax-decorators-npm-7.17.12-801194026f-cdbb7f92e4.zip
Binary file not shown.
Binary file removed
BIN
-2.69 KB
.yarn/cache/@babel-plugin-syntax-dynamic-import-npm-7.8.3-fb9ff5634a-ce307af83c.zip
Binary file not shown.
Binary file removed
BIN
-2.83 KB
.yarn/cache/@babel-plugin-syntax-export-namespace-from-npm-7.8.3-1747201aa9-85740478be.zip
Binary file not shown.
Binary file removed
BIN
-2.8 KB
.yarn/cache/@babel-plugin-syntax-flow-npm-7.17.12-99753c0367-f92f18c941.zip
Binary file not shown.
Binary file removed
BIN
-3.39 KB
.yarn/cache/@babel-plugin-syntax-import-assertions-npm-7.17.12-cd34146413-fef25c3247.zip
Binary file not shown.
Binary file removed
BIN
-2.71 KB
.yarn/cache/@babel-plugin-syntax-import-meta-npm-7.10.4-4a0a0158bc-166ac1125d.zip
Binary file not shown.
Binary file removed
BIN
-2.75 KB
.yarn/cache/@babel-plugin-syntax-json-strings-npm-7.8.3-6dc7848179-bf5aea1f31.zip
Binary file not shown.
Binary file removed
BIN
-2.65 KB
.yarn/cache/@babel-plugin-syntax-jsx-npm-7.16.7-06e2646d53-cd9b0e53c5.zip
Binary file not shown.
Binary file removed
BIN
-2.67 KB
.yarn/cache/@babel-plugin-syntax-jsx-npm-7.17.12-40df96ba17-6acd0bbca8.zip
Binary file not shown.
Binary file removed
BIN
-2.95 KB
...he/@babel-plugin-syntax-logical-assignment-operators-npm-7.10.4-72ae00fdf6-aff3357703.zip
Binary file not shown.
Binary file removed
BIN
-2.88 KB
...ache/@babel-plugin-syntax-nullish-coalescing-operator-npm-7.8.3-8a723173b5-87aca49189.zip
Binary file not shown.
Binary file removed
BIN
-2.88 KB
.yarn/cache/@babel-plugin-syntax-numeric-separator-npm-7.10.4-81444be605-01ec5547bd.zip
Binary file not shown.
Binary file removed
BIN
-2.75 KB
.yarn/cache/@babel-plugin-syntax-object-rest-spread-npm-7.8.3-60bd05b6ae-fddcf581a5.zip
Binary file not shown.
Binary file removed
BIN
-2.81 KB
.yarn/cache/@babel-plugin-syntax-optional-catch-binding-npm-7.8.3-ce337427d8-910d90e72b.zip
Binary file not shown.
Binary file removed
BIN
-2.74 KB
.yarn/cache/@babel-plugin-syntax-optional-chaining-npm-7.8.3-f3f3c79579-eef94d53a1.zip
Binary file not shown.
Binary file removed
BIN
-2.96 KB
...ache/@babel-plugin-syntax-private-property-in-object-npm-7.14.5-ee837fdbb2-b317174783.zip
Binary file not shown.
Binary file removed
BIN
-2.8 KB
.yarn/cache/@babel-plugin-syntax-top-level-await-npm-7.14.5-60a0a2e83b-bbd1a56b09.zip
Binary file not shown.
Binary file removed
BIN
-7.2 KB
.yarn/cache/@babel-plugin-syntax-typescript-npm-7.17.12-cc4750e4bf-50ab09f195.zip
Binary file not shown.
Binary file removed
BIN
-2.98 KB
.yarn/cache/@babel-plugin-transform-arrow-functions-npm-7.17.12-1d55e965f7-48f99e74f5.zip
Binary file not shown.
Binary file removed
BIN
-3.25 KB
.yarn/cache/@babel-plugin-transform-async-to-generator-npm-7.17.12-0e13ebe28a-052dd56eb3.zip
Binary file not shown.
Binary file removed
BIN
-3.23 KB
...cache/@babel-plugin-transform-block-scoped-functions-npm-7.16.7-58a044cde8-591e9f7543.zip
Binary file not shown.
Binary file removed
BIN
-8.59 KB
.yarn/cache/@babel-plugin-transform-block-scoping-npm-7.18.4-f684d4b891-5fdc8fd2f5.zip
Binary file not shown.
Binary file removed
BIN
-9.15 KB
.yarn/cache/@babel-plugin-transform-classes-npm-7.18.4-d3399d8a93-968711024c.zip
Binary file not shown.
Binary file removed
BIN
-4.04 KB
...n/cache/@babel-plugin-transform-computed-properties-npm-7.17.12-68a3791927-5d05418617.zip
Binary file not shown.
Binary file removed
BIN
-22 KB
.yarn/cache/@babel-plugin-transform-destructuring-npm-7.18.0-11bd760aa6-d85d60737c.zip
Binary file not shown.
Binary file removed
BIN
-2.9 KB
.yarn/cache/@babel-plugin-transform-dotall-regex-npm-7.16.7-da8c5ea826-554570dddf.zip
Binary file not shown.
Binary file removed
BIN
-3.19 KB
.yarn/cache/@babel-plugin-transform-duplicate-keys-npm-7.17.12-56608f29a3-fb6ad55053.zip
Binary file not shown.
Binary file removed
BIN
-3.08 KB
...ache/@babel-plugin-transform-exponentiation-operator-npm-7.16.7-909d4f03ef-8082c79268.zip
Binary file not shown.
Binary file removed
BIN
-3.9 KB
.yarn/cache/@babel-plugin-transform-flow-strip-types-npm-7.17.12-da46917213-c37d3cc00a.zip
Binary file not shown.
Binary file removed
BIN
-6.11 KB
.yarn/cache/@babel-plugin-transform-for-of-npm-7.18.1-b6a28b7eb3-cdc6e1f117.zip
Binary file not shown.
Binary file removed
BIN
-3.07 KB
.yarn/cache/@babel-plugin-transform-function-name-npm-7.16.7-e8980f9639-4d97d0b844.zip
Binary file not shown.
Binary file removed
BIN
-2.84 KB
.yarn/cache/@babel-plugin-transform-literals-npm-7.17.12-09c49cee27-09280fc1ed.zip
Binary file not shown.
Binary file removed
BIN
-3.12 KB
...e/@babel-plugin-transform-member-expression-literals-npm-7.16.7-bfa68e9eb4-fdf5b22aba.zip
Binary file not shown.
Binary file removed
BIN
-4.15 KB
.yarn/cache/@babel-plugin-transform-modules-amd-npm-7.18.0-3ecd6201db-bed3ff5cd8.zip
Binary file not shown.
Binary file removed
BIN
-4.84 KB
.yarn/cache/@babel-plugin-transform-modules-commonjs-npm-7.18.2-2c06bc35c9-99c1c5ce9c.zip
Binary file not shown.
Binary file removed
BIN
-6.36 KB
.yarn/cache/@babel-plugin-transform-modules-systemjs-npm-7.18.4-2365e94394-abe6948a15.zip
Binary file not shown.
Binary file removed
BIN
-4.37 KB
.yarn/cache/@babel-plugin-transform-modules-umd-npm-7.18.0-b9c405f847-4081a79cfd.zip
Binary file not shown.
Binary file removed
BIN
-3.18 KB
...babel-plugin-transform-named-capturing-groups-regex-npm-7.17.12-d362a2bd05-cff9d91d0a.zip
Binary file not shown.
Binary file removed
BIN
-3.22 KB
.yarn/cache/@babel-plugin-transform-new-target-npm-7.17.12-0ca5523bd4-bec26350fa.zip
Binary file not shown.
Binary file removed
BIN
-3.08 KB
.yarn/cache/@babel-plugin-transform-object-super-npm-7.16.7-6301890335-46e3c879f4.zip
Binary file not shown.
Binary file removed
BIN
-7.47 KB
.yarn/cache/@babel-plugin-transform-parameters-npm-7.17.12-27d8a22b7a-d9ed5ec61d.zip
Binary file not shown.
Binary file removed
BIN
-2.99 KB
.yarn/cache/@babel-plugin-transform-property-literals-npm-7.16.7-b47430aee0-b567445899.zip
Binary file not shown.
Binary file removed
BIN
-3.56 KB
.yarn/cache/@babel-plugin-transform-react-display-name-npm-7.16.7-75f0517b97-4831544136.zip
Binary file not shown.
Binary file removed
BIN
-7.98 KB
.yarn/cache/@babel-plugin-transform-react-jsx-npm-7.17.12-55a08fa1bd-02e9974d14.zip
Binary file not shown.
Binary file removed
BIN
-3.02 KB
.yarn/cache/@babel-plugin-transform-regenerator-npm-7.18.0-7c015c9d29-ebacf2bbe9.zip
Binary file not shown.
Binary file removed
BIN
-2.88 KB
.yarn/cache/@babel-plugin-transform-reserved-words-npm-7.17.12-d8642c3fd9-d8a617cb79.zip
Binary file not shown.
Binary file removed
BIN
-3.15 KB
...n/cache/@babel-plugin-transform-shorthand-properties-npm-7.16.7-d800844ada-ca381ecf8f.zip
Binary file not shown.
Binary file removed
BIN
-3.92 KB
.yarn/cache/@babel-plugin-transform-spread-npm-7.17.12-457e6ed1e8-3a95e4f163.zip
Binary file not shown.
Binary file removed
BIN
-2.94 KB
.yarn/cache/@babel-plugin-transform-sticky-regex-npm-7.16.7-e3085022d7-d59e20121f.zip
Binary file not shown.
Binary file removed
BIN
-3.83 KB
.yarn/cache/@babel-plugin-transform-template-literals-npm-7.18.2-84c4281b1c-bc0102ed8c.zip
Binary file not shown.
Binary file removed
BIN
-3.52 KB
.yarn/cache/@babel-plugin-transform-typeof-symbol-npm-7.17.12-2c7d65a0df-e30bd03c8a.zip
Binary file not shown.
Binary file removed
BIN
-10.8 KB
.yarn/cache/@babel-plugin-transform-typescript-npm-7.18.4-b1a28ca1c0-d4575d473a.zip
Binary file not shown.
Binary file removed
BIN
-3.83 KB
.yarn/cache/@babel-plugin-transform-unicode-escapes-npm-7.16.7-c081a34acc-d10c3b5baa.zip
Binary file not shown.
Binary file removed
BIN
-2.85 KB
.yarn/cache/@babel-plugin-transform-unicode-regex-npm-7.16.7-0a6888bf4d-ef7721cfb1.zip
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-3.24 KB
.yarn/cache/@babel-preset-flow-npm-7.17.12-3d816a52cd-21b123c211.zip
Binary file not shown.
Binary file removed
BIN
-24.5 KB
.yarn/cache/@babel-preset-modules-npm-0.1.5-15ffcd64c2-8430e0e9e9.zip
Binary file not shown.
Binary file removed
BIN
-5.7 KB
.yarn/cache/@babel-preset-typescript-npm-7.16.7-82f6473286-44e2f3fa30.zip
Binary file not shown.
Binary file removed
BIN
-5.82 KB
.yarn/cache/@babel-preset-typescript-npm-7.17.12-b5a09238cb-f4ee9eeb0e.zip
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-196 KB
.yarn/cache/@babel-runtime-corejs3-npm-7.18.3-076e6beb32-50319e107e.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-34.1 KB
.yarn/cache/@cspotcode-source-map-support-npm-0.8.1-964f2de99d-5718f26708.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-60.3 KB
.yarn/cache/@emotion-babel-plugin-npm-11.9.2-9822f587b1-2d2c4fadd3.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-21.2 KB
.yarn/cache/@emotion-is-prop-valid-npm-1.1.2-fba2bc1e57-58b1f2d429.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-7.62 KB
.yarn/cache/@emotion-weak-memoize-npm-0.2.5-9f2e49e7c8-27d402b0c6.zip
Binary file not shown.
Binary file removed
BIN
-7.88 KB
...ache/@endemolshinegroup-cosmiconfig-typescript-loader-npm-3.0.2-97436e68fc-7fe0198622.zip
Binary file not shown.
Binary file removed
BIN
-22.4 KB
.yarn/cache/@esbuild-plugins-node-modules-polyfill-npm-0.1.4-3fbc582225-39ff2a8161.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-56.8 KB
.yarn/cache/@graphql-codegen-cli-npm-2.6.2-f9431e06f9-5d8f81fab2.zip
Binary file not shown.
Binary file removed
BIN
-9.84 KB
.yarn/cache/@graphql-codegen-core-npm-2.5.1-dc0b98174c-d882b98540.zip
Binary file not shown.
Binary file removed
BIN
-21.2 KB
.yarn/cache/@graphql-codegen-plugin-helpers-npm-2.4.2-b40f41a2d6-ad87d71e83.zip
Binary file not shown.
Binary file removed
BIN
-3.66 KB
.yarn/cache/@graphql-codegen-schema-ast-npm-2.4.1-5e6f279587-534725acaa.zip
Binary file not shown.
Binary file removed
BIN
-6.82 KB
.yarn/cache/@graphql-codegen-typescript-graphql-request-npm-4.4.8-dc504419da-45b5ec64d1.zip
Binary file not shown.
Binary file removed
BIN
-14.9 KB
.yarn/cache/@graphql-codegen-typescript-npm-2.4.11-19b0daa7aa-481b581ab8.zip
Binary file not shown.
Binary file removed
BIN
-14.9 KB
.yarn/cache/@graphql-codegen-typescript-npm-2.4.6-bcf94b3405-8085d12ecb.zip
Binary file not shown.
Binary file removed
BIN
-9.63 KB
.yarn/cache/@graphql-codegen-typescript-operations-npm-2.3.3-d25b6a566d-6a41ce843c.zip
Binary file not shown.
Binary file removed
BIN
-75.9 KB
.yarn/cache/@graphql-codegen-visitor-plugin-common-npm-2.7.2-a14859eea6-97c632daf4.zip
Binary file not shown.
Binary file removed
BIN
-79.8 KB
.yarn/cache/@graphql-codegen-visitor-plugin-common-npm-2.8.0-3a10837ae6-84f1e0b900.zip
Binary file not shown.
Binary file removed
BIN
-4 KB
.yarn/cache/@graphql-tools-apollo-engine-loader-npm-7.2.18-cd33e7592b-dcea5a91e6.zip
Binary file not shown.
Binary file removed
BIN
-10.9 KB
.yarn/cache/@graphql-tools-batch-execute-npm-8.4.9-b690b0c4b2-f1562f9b50.zip
Binary file not shown.
Binary file removed
BIN
-8.58 KB
.yarn/cache/@graphql-tools-code-file-loader-npm-7.2.17-8bae014db6-6c73ae1906.zip
Binary file not shown.
Binary file removed
BIN
-29.7 KB
.yarn/cache/@graphql-tools-delegate-npm-8.7.10-1b80fae1d3-fdc4d28cc7.zip
Binary file not shown.
Binary file removed
BIN
-6.57 KB
.yarn/cache/@graphql-tools-git-loader-npm-7.1.16-2f23a7a6bd-f7d7d486c3.zip
Binary file not shown.
Binary file removed
BIN
-4.84 KB
.yarn/cache/@graphql-tools-github-loader-npm-7.2.22-43de3d0317-d89cc4e693.zip
Binary file not shown.
Binary file removed
BIN
-5.09 KB
.yarn/cache/@graphql-tools-graphql-file-loader-npm-7.3.14-6cd3bf4881-823117d4c8.zip
Binary file not shown.
Binary file removed
BIN
-13.7 KB
.yarn/cache/@graphql-tools-graphql-tag-pluck-npm-7.2.9-a9eabc615d-6bddb9b776.zip
Binary file not shown.
Binary file removed
BIN
-11.5 KB
.yarn/cache/@graphql-tools-import-npm-6.6.16-75da1af695-a528d56056.zip
Binary file not shown.
Binary file removed
BIN
-4.68 KB
.yarn/cache/@graphql-tools-json-file-loader-npm-7.3.14-b8445df237-7dcc4b3d65.zip
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-22.6 KB
.yarn/cache/@graphql-tools-merge-npm-8.2.13-65f409009a-00afcf2e9b.zip
Binary file not shown.
Binary file removed
BIN
-24.4 KB
.yarn/cache/@graphql-tools-mock-npm-8.6.11-60713cdec9-94b4a31467.zip
Binary file not shown.
Binary file removed
BIN
-6.13 KB
.yarn/cache/@graphql-tools-optimize-npm-1.2.0-212710d4b0-64224f1960.zip
Binary file not shown.
Binary file removed
BIN
-32.9 KB
.yarn/cache/@graphql-tools-prisma-loader-npm-7.1.22-03021e8b2c-5f87258895.zip
Binary file not shown.
Binary file removed
BIN
-3.88 KB
.yarn/cache/@graphql-tools-relay-operation-optimizer-npm-6.4.12-3f7c0513a6-e348581f66.zip
Binary file not shown.
Binary file removed
BIN
-14.5 KB
.yarn/cache/@graphql-tools-schema-npm-8.3.13-f96b516693-13d3da3b08.zip
Binary file not shown.
Binary file removed
BIN
-20.9 KB
.yarn/cache/@graphql-tools-url-loader-npm-7.9.23-2052fc8a9d-1ea91ce9bd.zip
Binary file not shown.
Binary file removed
BIN
-82.1 KB
.yarn/cache/@graphql-tools-utils-npm-8.6.12-7ccf964319-01a560870c.zip
Binary file not shown.
Binary file removed
BIN
-44.2 KB
.yarn/cache/@graphql-tools-wrap-npm-8.4.19-52c04e9db8-0aff893dfc.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-15 KB
.yarn/cache/@humanwhocodes-config-array-npm-0.9.5-030a025eae-8ba6281bc0.zip
Binary file not shown.
Binary file removed
BIN
-13.4 KB
.yarn/cache/@humanwhocodes-object-schema-npm-1.2.1-eb622b5d0e-a824a1ec31.zip
Binary file not shown.
Binary file removed
BIN
-8.64 KB
.yarn/cache/@hutson-parse-repository-url-npm-3.0.2-ae5ef1b671-39992c5f18.zip
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-5.7 KB
.yarn/cache/@istanbuljs-load-nyc-config-npm-1.1.0-42d17c9cb1-d578da5e2e.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-5.14 KB
.yarn/cache/@jest-test-sequencer-npm-26.6.3-04c59ff624-a3450b3d70.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-3.17 KB
.yarn/cache/@josephg-resolvable-npm-1.0.1-bbe8e9d8e8-64eb763b51.zip
Binary file not shown.
Binary file removed
BIN
-16.3 KB
.yarn/cache/@jridgewell-gen-mapping-npm-0.1.1-3bad172ac6-3bcc21fe78.zip
Binary file not shown.
Binary file removed
BIN
-22.3 KB
.yarn/cache/@jridgewell-gen-mapping-npm-0.3.1-945956db05-e9e7bb3335.zip
Binary file not shown.
Binary file removed
BIN
-16.2 KB
.yarn/cache/@jridgewell-resolve-uri-npm-3.0.7-5d7f391f4f-94f454f4ce.zip
Binary file not shown.
Binary file removed
BIN
-7.67 KB
.yarn/cache/@jridgewell-set-array-npm-1.1.1-0d86b67787-cc5d91e038.zip
Binary file not shown.
Binary file removed
BIN
-11.4 KB
.yarn/cache/@jridgewell-sourcemap-codec-npm-1.4.13-b0c90a5760-f14449096f.zip
Binary file not shown.
Binary file removed
BIN
-28.7 KB
.yarn/cache/@jridgewell-trace-mapping-npm-0.3.13-b1ff8985e7-e38254e830.zip
Binary file not shown.
Binary file removed
BIN
-27.5 KB
.yarn/cache/@jridgewell-trace-mapping-npm-0.3.9-91625cd7fb-d89597752f.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-4.58 KB
.yarn/cache/@lerna-check-working-tree-npm-4.0.0-b1b2911e59-b4ce67942a.zip
Binary file not shown.
Binary file removed
BIN
-5.35 KB
.yarn/cache/@lerna-child-process-npm-4.0.0-d273cf4bcc-184ea5520b.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-4.56 KB
.yarn/cache/@lerna-collect-uncommitted-npm-4.0.0-69920a62fc-eb7c620105.zip
Binary file not shown.
Binary file removed
BIN
-11.1 KB
.yarn/cache/@lerna-collect-updates-npm-4.0.0-54ffbe4f98-6d92fbfe2a.zip
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-12 KB
.yarn/cache/@lerna-conventional-commits-npm-4.0.0-1c52647ea2-84c1c18de2.zip
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-4.58 KB
.yarn/cache/@lerna-create-symlink-npm-4.0.0-704d8f3e03-38345c6c0a.zip
Binary file not shown.
Binary file removed
BIN
-5.32 KB
.yarn/cache/@lerna-describe-ref-npm-4.0.0-5c8568d36b-634d1573f7.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-7.82 KB
.yarn/cache/@lerna-filter-options-npm-4.0.0-0a5cf81b2b-7b0f222700.zip
Binary file not shown.
Binary file removed
BIN
-4.82 KB
.yarn/cache/@lerna-filter-packages-npm-4.0.0-d3aae0a727-65b2758ea4.zip
Binary file not shown.
Binary file removed
BIN
-3.73 KB
.yarn/cache/@lerna-get-npm-exec-opts-npm-4.0.0-65df616624-09e395fa88.zip
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-4.14 KB
.yarn/cache/@lerna-github-client-npm-4.0.0-2ecee01d50-7535bbc123.zip
Binary file not shown.
Binary file removed
BIN
-4.4 KB
.yarn/cache/@lerna-gitlab-client-npm-4.0.0-42411bcb51-6d320540c2.zip
Binary file not shown.
Binary file removed
BIN
-5.11 KB
.yarn/cache/@lerna-global-options-npm-4.0.0-6d3914af25-57bb18e529.zip
Binary file not shown.
Binary file removed
BIN
-3.99 KB
.yarn/cache/@lerna-has-npm-version-npm-4.0.0-e119f57bba-459db3c163.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-5.36 KB
.yarn/cache/@lerna-npm-dist-tag-npm-4.0.0-4a06059b08-cda542d78d.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-4.08 KB
.yarn/cache/@lerna-npm-run-script-npm-4.0.0-38437b070e-ba15736af4.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-5.37 KB
.yarn/cache/@lerna-pack-directory-npm-4.0.0-807373bf77-9a282774d8.zip
Binary file not shown.
Binary file removed
BIN
-10.5 KB
.yarn/cache/@lerna-package-graph-npm-4.0.0-90d07be76b-fd6f55171a.zip
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-3.92 KB
.yarn/cache/@lerna-prerelease-id-from-version-npm-4.0.0-05f9ad810a-88250b23d0.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-3.62 KB
.yarn/cache/@lerna-pulse-till-done-npm-4.0.0-5ee0266ee5-eb908c952b.zip
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-4.1 KB
.yarn/cache/@lerna-resolve-symlink-npm-4.0.0-ab50c942ed-7cf967e4c6.zip
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-5.78 KB
.yarn/cache/@lerna-run-lifecycle-npm-4.0.0-61572f5e4e-1fa1fccdf5.zip
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-4 KB
.yarn/cache/@lerna-run-topologically-npm-4.0.0-84d5065cba-8b19f80da2.zip
Binary file not shown.
Binary file removed
BIN
-4.7 KB
.yarn/cache/@lerna-symlink-binary-npm-4.0.0-413bd061b5-b0b3d305ac.zip
Binary file not shown.
Oops, something went wrong.