bulltrackers-module 1.0.720 → 1.0.721
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3168,7 +3168,7 @@ const queryDynamicWatchlistMatches = async (db, computationName, parameters = {}
|
|
|
3168
3168
|
// 2. Try BigQuery first (if enabled)
|
|
3169
3169
|
if (process.env.BIGQUERY_ENABLED !== 'false') {
|
|
3170
3170
|
try {
|
|
3171
|
-
const bigqueryResult = await
|
|
3171
|
+
const bigqueryResult = await queryDynamicWatchlistMatches(
|
|
3172
3172
|
computationName,
|
|
3173
3173
|
parameters,
|
|
3174
3174
|
startDateStr,
|
|
@@ -266,7 +266,7 @@ exports.runRootDataIndexer = async (config, dependencies) => {
|
|
|
266
266
|
queryAssetPrices,
|
|
267
267
|
queryPIRankings,
|
|
268
268
|
queryPIMasterList
|
|
269
|
-
} = require('
|
|
269
|
+
} = require('../core/utils/bigquery_utils');
|
|
270
270
|
|
|
271
271
|
// Check BigQuery for today's data (or target date)
|
|
272
272
|
const [portfolioData, historyData, socialData, insightsData, pricesData, rankingsData, masterListData] = await Promise.all([
|