@appbaseio/reactivesearch-vue 1.33.8 → 1.33.9
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.
- package/dist/@appbaseio/reactivesearch-vue.umd.js +2942 -3169
- package/dist/@appbaseio/reactivesearch-vue.umd.js.map +1 -1
- package/dist/@appbaseio/reactivesearch-vue.umd.min.js +3 -3
- package/dist/@appbaseio/reactivesearch-vue.umd.min.js.map +1 -1
- package/dist/cjs/initReactivesearch.js +0 -3
- package/dist/cjs/version.js +1 -1
- package/dist/es/initReactivesearch.js +0 -3
- package/dist/es/version.js +1 -1
- package/package.json +1 -1
|
@@ -382,7 +382,6 @@ function initReactivesearch(componentCollection, searchState, settings) {
|
|
|
382
382
|
var rawData = {};
|
|
383
383
|
var customData = {};
|
|
384
384
|
var settingsResponse = {};
|
|
385
|
-
var timestamp = {};
|
|
386
385
|
var allPromises = orderOfQueries.map(function (component) {
|
|
387
386
|
return new Promise(function (responseResolve, responseReject) {
|
|
388
387
|
handleTransformResponse(res[component], component).then(function (response) {
|
|
@@ -409,7 +408,6 @@ function initReactivesearch(componentCollection, searchState, settings) {
|
|
|
409
408
|
var _extends6;
|
|
410
409
|
aggregations = _rollupPluginBabelHelpers._extends({}, aggregations, (_extends6 = {}, _extends6[component] = response.aggregations, _extends6));
|
|
411
410
|
}
|
|
412
|
-
timestamp[component] = res._timestamp;
|
|
413
411
|
var hitsObj = response.hits ? response.hits : response[component].hits;
|
|
414
412
|
hits = _rollupPluginBabelHelpers._extends({}, hits, (_extends7 = {}, _extends7[component] = {
|
|
415
413
|
hits: hitsObj.hits,
|
|
@@ -426,7 +424,6 @@ function initReactivesearch(componentCollection, searchState, settings) {
|
|
|
426
424
|
Promise.all(allPromises).then(function () {
|
|
427
425
|
state = _rollupPluginBabelHelpers._extends({}, state, {
|
|
428
426
|
hits: hits,
|
|
429
|
-
timestamp: timestamp,
|
|
430
427
|
aggregations: aggregations,
|
|
431
428
|
compositeAggregations: compositeAggregations,
|
|
432
429
|
promotedResults: promotedResults,
|
package/dist/cjs/version.js
CHANGED
|
@@ -376,7 +376,6 @@ function initReactivesearch(componentCollection, searchState, settings) {
|
|
|
376
376
|
var rawData = {};
|
|
377
377
|
var customData = {};
|
|
378
378
|
var settingsResponse = {};
|
|
379
|
-
var timestamp = {};
|
|
380
379
|
var allPromises = orderOfQueries.map(function (component) {
|
|
381
380
|
return new Promise(function (responseResolve, responseReject) {
|
|
382
381
|
handleTransformResponse(res[component], component).then(function (response) {
|
|
@@ -403,7 +402,6 @@ function initReactivesearch(componentCollection, searchState, settings) {
|
|
|
403
402
|
var _extends6;
|
|
404
403
|
aggregations = _extends({}, aggregations, (_extends6 = {}, _extends6[component] = response.aggregations, _extends6));
|
|
405
404
|
}
|
|
406
|
-
timestamp[component] = res._timestamp;
|
|
407
405
|
var hitsObj = response.hits ? response.hits : response[component].hits;
|
|
408
406
|
hits = _extends({}, hits, (_extends7 = {}, _extends7[component] = {
|
|
409
407
|
hits: hitsObj.hits,
|
|
@@ -420,7 +418,6 @@ function initReactivesearch(componentCollection, searchState, settings) {
|
|
|
420
418
|
Promise.all(allPromises).then(function () {
|
|
421
419
|
state = _extends({}, state, {
|
|
422
420
|
hits: hits,
|
|
423
|
-
timestamp: timestamp,
|
|
424
421
|
aggregations: aggregations,
|
|
425
422
|
compositeAggregations: compositeAggregations,
|
|
426
423
|
promotedResults: promotedResults,
|
package/dist/es/version.js
CHANGED