@appbaseio/reactivesearch-vue 1.16.0-alpha.62 → 1.16.0-alpha.63

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.
@@ -7802,7 +7802,7 @@
7802
7802
 
7803
7803
  var endpoint = void 0;
7804
7804
 
7805
- if (store.config.endpoint instanceof Object) {
7805
+ if (store.config && store.config.endpoint instanceof Object) {
7806
7806
  endpoint = store.config.endpoint;
7807
7807
  }
7808
7808
 
@@ -34932,9 +34932,19 @@
34932
34932
  transformResponse: settings.transformResponse || null,
34933
34933
  graphQLUrl: settings.graphQLUrl || '',
34934
34934
  headers: headers,
34935
- analyticsConfig: settings.appbaseConfig || null
34935
+ analyticsConfig: settings.appbaseConfig || null,
34936
+ enableAppbase: settings.enableAppbase
34936
34937
  };
34937
34938
  var appbaseRef = appbasejs(config);
34939
+
34940
+ if (config.transformRequest) {
34941
+ appbaseRef.transformRequest = config.transformRequest;
34942
+ }
34943
+
34944
+ if (config.transformResponse) {
34945
+ appbaseRef.transformResponse = config.transformResponse;
34946
+ }
34947
+
34938
34948
  var components = [];
34939
34949
  var selectedValues = {};
34940
34950
  var internalValues = {};
@@ -35341,7 +35351,7 @@
35341
35351
  });
35342
35352
  }
35343
35353
 
35344
- var version = "1.16.0-alpha.62";
35354
+ var version = "1.16.0-alpha.63";
35345
35355
 
35346
35356
  var _templateObject$q, _templateObject2$c;
35347
35357