Skip to content

Commit

Permalink
Merge pull request #50 from ezewer/v3.0.2
Browse files Browse the repository at this point in the history
V 3.0.2
  • Loading branch information
ezewer authored Jul 7, 2020
2 parents f448b32 + 838d66e commit af7617d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bfx-reports-framework
Submodule bfx-reports-framework updated 53 files
+1 −1 README.md
+413 −0 test/5-recover-password.spec.js
+0 −18 test/test-cases/api-sync-mode-sqlite-test-cases.js
+12 −3 workers/loc.api/di/app.deps.js
+3 −0 workers/loc.api/di/types.js
+7 −0 workers/loc.api/errors/index.js
+57 −23 workers/loc.api/service.report.framework.js
+17 −19 workers/loc.api/service.report.js
+156 −9 workers/loc.api/sync/authenticator/index.js
+6 −3 workers/loc.api/sync/balance.history/index.js
+6 −3 workers/loc.api/sync/currency.converter/index.js
+12 −1 workers/loc.api/sync/dao/dao.sqlite.js
+51 −0 workers/loc.api/sync/dao/db-migrations/sqlite-migrations/migration.v13.js
+4 −6 workers/loc.api/sync/dao/helpers/get-insertable-array-objects-filter.js
+1 −1 workers/loc.api/sync/dao/helpers/get-status-messages-filter.js
+1 −1 workers/loc.api/sync/dao/helpers/get-table-creation-query.js
+1 −1 workers/loc.api/sync/dao/helpers/get-trigger-creation-query.js
+7 −6 workers/loc.api/sync/data.inserter/api.middleware/api.middleware.handler.after.js
+60 −0 workers/loc.api/sync/data.inserter/api.middleware/helpers/add-props-to-res-if-exist.js
+0 −0 workers/loc.api/sync/data.inserter/api.middleware/helpers/get-flags-from-ledger-description.js
+13 −0 workers/loc.api/sync/data.inserter/api.middleware/helpers/index.js
+1 −1 workers/loc.api/sync/data.inserter/api.middleware/index.js
+13 −0 workers/loc.api/sync/data.inserter/const.js
+14 −0 workers/loc.api/sync/data.inserter/data.checker/helpers/compare-elems-db-and-api.js
+25 −0 workers/loc.api/sync/data.inserter/data.checker/helpers/filter-method-coll-map.js
+19 −0 workers/loc.api/sync/data.inserter/data.checker/helpers/index.js
+11 −0 workers/loc.api/sync/data.inserter/data.checker/helpers/invert-sort.js
+73 −0 workers/loc.api/sync/data.inserter/data.checker/helpers/push-configurable-data-start-conf.js
+652 −0 workers/loc.api/sync/data.inserter/data.checker/index.js
+3 −1 workers/loc.api/sync/data.inserter/helpers/filter-method-coll-map-by-list.js
+43 −0 workers/loc.api/sync/data.inserter/helpers/get-method-arg-map.js
+3 −15 workers/loc.api/sync/data.inserter/helpers/index.js
+9 −4 workers/loc.api/sync/data.inserter/helpers/search-close-price-and-sum-amount.js
+1 −114 workers/loc.api/sync/data.inserter/helpers/utils.js
+3 −5 workers/loc.api/sync/data.inserter/hooks/convert.currency.hook.js
+131 −730 workers/loc.api/sync/data.inserter/index.js
+5 −2 workers/loc.api/sync/order.trades/index.js
+5 −2 workers/loc.api/sync/performing.loan/index.js
+1 −1 workers/loc.api/sync/schema/allowed.colls.js
+29 −0 workers/loc.api/sync/schema/colls.types.js
+3 −1 workers/loc.api/sync/schema/const.js
+41 −0 workers/loc.api/sync/schema/helpers/index.js
+80 −79 workers/loc.api/sync/schema/index.js
+47 −0 workers/loc.api/sync/schema/sync.api.methods.js
+2 −1 workers/loc.api/sync/schema/tables-names.js
+75 −0 workers/loc.api/sync/schema/utils/check-coll-type.js
+21 −0 workers/loc.api/sync/schema/utils/index.js
+99 −8 workers/loc.api/sync/sub.account/index.js
+10 −7 workers/loc.api/sync/sync.queue/index.js
+13 −0 workers/loc.api/sync/sync.queue/sync.queue.states.js
+5 −2 workers/loc.api/sync/trades/index.js
+5 −2 workers/loc.api/sync/wallets/index.js
+5 −2 workers/loc.api/sync/win.loss/index.js
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bfx-report-electron",
"version": "3.0.1",
"version": "3.0.2",
"description": "Reporting tool",
"author": "bitfinex.com",
"main": "index.js",
Expand Down

0 comments on commit af7617d

Please sign in to comment.