Skip to content

Commit

Permalink
Merge pull request #32 from ezewer/v10
Browse files Browse the repository at this point in the history
Update modules for Version 10
  • Loading branch information
davide-scola authored Jan 20, 2020
2 parents c494d20 + 387ebd0 commit 037b42a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bfx-report-ui
Submodule bfx-report-ui updated 398 files
2 changes: 1 addition & 1 deletion bfx-reports-framework
Submodule bfx-reports-framework updated 54 files
+1 −0 .npmrc
+2 −2 package.json
+1 −2 test/1-api-sync-mode-sqlite.spec.js
+180 −23 test/2-additional-api-sync-mode-sqlite.spec.js
+82 −1 test/3-api-filter-sync-mode-sqlite.spec.js
+18 −1 test/helpers/helpers.core.js
+1 −1 test/helpers/mock-data.js
+14 −1 workers/api.framework.report.wrk.js
+36 −11 workers/loc.api/di/app.deps.js
+14 −0 workers/loc.api/di/factories/data-inserter-factory.js
+24 −0 workers/loc.api/di/factories/db-migrator-factory.js
+11 −0 workers/loc.api/di/factories/index.js
+53 −0 workers/loc.api/di/factories/migrations-factory.js
+9 −1 workers/loc.api/di/types.js
+29 −1 workers/loc.api/errors/index.js
+4 −2 workers/loc.api/generate-csv/csv-writer/full-snapshot-report-csv-writer.js
+4 −2 workers/loc.api/generate-csv/csv-writer/full-tax-report-csv-writer.js
+116 −0 workers/loc.api/generate-csv/csv.job.data.js
+1 −1 workers/loc.api/helpers/limit-param.helpers.js
+103 −1 workers/loc.api/helpers/schema.js
+72 −7 workers/loc.api/service.report.framework.js
+18 −16 workers/loc.api/sync/allowed.colls.js
+11 −7 workers/loc.api/sync/colls.accessors/public.colls.conf.accessors.js
+154 −9 workers/loc.api/sync/currency.converter/index.js
+29 −2 workers/loc.api/sync/dao/dao.js
+140 −30 workers/loc.api/sync/dao/dao.sqlite.js
+135 −0 workers/loc.api/sync/dao/db-migrations/db.migrator.js
+14 −0 workers/loc.api/sync/dao/db-migrations/helpers/get-fn-arr-to-remove-all-tables.js
+7 −0 workers/loc.api/sync/dao/db-migrations/helpers/index.js
+109 −0 workers/loc.api/sync/dao/db-migrations/migration.js
+77 −0 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/abstract.migration.js
+27 −0 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/migration.v1.js
+57 −0 workers/loc.api/sync/dao/db-migrations/sqlite.db.migrator.js
+32 −10 workers/loc.api/sync/dao/helpers/get-insertable-array-objects-filter.js
+2 −2 workers/loc.api/sync/dao/helpers/get-status-messages-filter.js
+27 −0 workers/loc.api/sync/dao/helpers/get-table-creation-query.js
+125 −6 workers/loc.api/sync/dao/helpers/get-where-query.js
+3 −1 workers/loc.api/sync/dao/helpers/index.js
+2 −1 workers/loc.api/sync/dao/helpers/serialization.js
+26 −0 workers/loc.api/sync/dao/tables-names.js
+16 −3 workers/loc.api/sync/data.inserter/api.middleware.handler.after.js
+27 −0 workers/loc.api/sync/data.inserter/helpers/get-flags-from-ledger-description.js
+3 −1 workers/loc.api/sync/data.inserter/helpers/index.js
+16 −50 workers/loc.api/sync/data.inserter/index.js
+29 −0 workers/loc.api/sync/fees.report/index.js
+2 −1 workers/loc.api/sync/helpers/redirect-requests-to-api.js
+267 −0 workers/loc.api/sync/performing.loan/index.js
+1 −1 workers/loc.api/sync/positions.snapshot/index.js
+6 −3 workers/loc.api/sync/progress/index.js
+66 −54 workers/loc.api/sync/schema.js
+8 −5 workers/loc.api/sync/sync.queue/index.js
+29 −0 workers/loc.api/sync/traded.volume/index.js
+303 −0 workers/loc.api/sync/trades/index.js
+5 −2 workers/loc.api/ws-transport/index.js

0 comments on commit 037b42a

Please sign in to comment.