@hapl/api-queries 0.2.42 → 0.2.43

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.
@@ -1877,7 +1877,10 @@ function createCallTaskRequest(_ref) {
1877
1877
  'Content-Type': 'application/json'
1878
1878
  }, headers),
1879
1879
  transformResponse: [].concat(axios.defaults.transformResponse, [function (data) {
1880
- if (data.success) return data.data;
1880
+ if (data.success) return {
1881
+ data: data.data,
1882
+ meta: data.meta
1883
+ };
1881
1884
  return data.data.error;
1882
1885
  }])
1883
1886
  }).then(function (res) {