@qite/tide-client 1.1.78 → 1.1.80

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/build/index.js CHANGED
@@ -6641,6 +6641,11 @@ var getEntryTotals = function (config, filterItem, gridColumns, signal) {
6641
6641
  var apiKey = config.apiKey;
6642
6642
  return get(url, apiKey, config.token, signal, true);
6643
6643
  };
6644
+ var getEntryDetailv2 = function (config, entryId, signal) {
6645
+ var url = "" + config.host + ENDPOINT$3 + "/v2/entry/detail/" + entryId;
6646
+ var apiKey = config.apiKey;
6647
+ return get(url, apiKey, config.token, signal, true);
6648
+ };
6644
6649
  var getInvoiceList = function (config, filterItem, gridColumns, signal) {
6645
6650
  var params = createParams(filterItem, false, gridColumns);
6646
6651
  var queryString = Object.keys(params)
@@ -6830,6 +6835,7 @@ exports.getAllotmentAvailability = getAllotmentAvailability;
6830
6835
  exports.getAllotmentList = getAllotmentList;
6831
6836
  exports.getCountries = getCountries;
6832
6837
  exports.getCustomEntryStatus = getCustomEntryStatus;
6838
+ exports.getEntryDetailv2 = getEntryDetailv2;
6833
6839
  exports.getEntryList = getEntryList;
6834
6840
  exports.getEntryListv2 = getEntryListv2;
6835
6841
  exports.getEntryStatus = getEntryStatus;