@qite/tide-client 1.1.29 → 1.1.31

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.
Files changed (47) hide show
  1. package/build/index.js +15 -1
  2. package/build/index.js.map +1 -1
  3. package/build/types/company/agent/agent-invoice-item.d.ts +9 -0
  4. package/build/types/company/agent/entry-totals.d.ts +7 -0
  5. package/build/types/company/agent/index.d.ts +2 -0
  6. package/build/types/company/index.d.ts +1 -0
  7. package/build/types/offer/booking-v2/request/booking-package-book-request.d.ts +4 -0
  8. package/build/types/offer/booking-v2/request/booking-package-customer-request.d.ts +4 -0
  9. package/build/types/offer/booking-v2/request/index.d.ts +2 -1
  10. package/build/types/offer/booking-v2/response/booking-price-details.d.ts +4 -0
  11. package/build/types/offer/booking-v2/response/booking-room-status-option.d.ts +5 -0
  12. package/build/types/offer/booking-v2/response/booking-room-status.d.ts +5 -0
  13. package/build/types/offer/booking-v2/response/booking-validity-line.d.ts +4 -0
  14. package/build/types/offer/booking-v2/response/index.d.ts +1 -0
  15. package/build/types/offer/booking-v2/shared/airline-booking-package-option.d.ts +2 -0
  16. package/build/types/offer/booking-v2/shared/airport-booking-package-option.d.ts +2 -0
  17. package/build/types/offer/booking-v2/shared/booking-airline-group.d.ts +6 -0
  18. package/build/types/offer/booking-v2/shared/booking-airport-group.d.ts +6 -0
  19. package/build/types/offer/booking-v2/shared/booking-option-pax.d.ts +6 -0
  20. package/build/types/offer/booking-v2/shared/booking-option-unit.d.ts +6 -0
  21. package/build/types/offer/booking-v2/shared/booking-package-availability.d.ts +1 -0
  22. package/build/types/offer/booking-v2/shared/booking-package-option.d.ts +7 -0
  23. package/build/types/offer/booking-v2/shared/index.d.ts +8 -4
  24. package/build/utils/web-agent-client.d.ts +15 -1
  25. package/package.json +6 -2
  26. package/src/types/company/agent/agent-invoice-item.ts +9 -0
  27. package/src/types/company/agent/entry-totals.ts +7 -0
  28. package/src/types/company/agent/index.ts +2 -0
  29. package/src/types/company/index.ts +1 -0
  30. package/src/types/offer/booking-v2/request/booking-package-book-request.ts +4 -0
  31. package/src/types/offer/booking-v2/request/booking-package-customer-request.ts +4 -0
  32. package/src/types/offer/booking-v2/request/index.ts +2 -1
  33. package/src/types/offer/booking-v2/response/booking-price-details.ts +4 -0
  34. package/src/types/offer/booking-v2/response/booking-room-status-option.ts +5 -0
  35. package/src/types/offer/booking-v2/response/booking-room-status.ts +6 -0
  36. package/src/types/offer/booking-v2/response/booking-validity-line.ts +4 -0
  37. package/src/types/offer/booking-v2/response/index.ts +1 -0
  38. package/src/types/offer/booking-v2/shared/airline-booking-package-option.ts +3 -0
  39. package/src/types/offer/booking-v2/shared/airport-booking-package-option.ts +3 -0
  40. package/src/types/offer/booking-v2/shared/booking-airline-group.ts +7 -0
  41. package/src/types/offer/booking-v2/shared/booking-airport-group.ts +7 -0
  42. package/src/types/offer/booking-v2/shared/booking-option-pax.ts +6 -0
  43. package/src/types/offer/booking-v2/shared/booking-option-unit.ts +6 -0
  44. package/src/types/offer/booking-v2/shared/booking-package-availability.ts +1 -0
  45. package/src/types/offer/booking-v2/shared/booking-package-option.ts +7 -0
  46. package/src/types/offer/booking-v2/shared/index.ts +8 -4
  47. package/src/utils/web-agent-client.ts +32 -4
package/build/index.js CHANGED
@@ -6620,7 +6620,19 @@ var print = function (config, request, signal, token) {
6620
6620
  };
6621
6621
  var getEntryList = function (config, filterItem, token, signal) {
6622
6622
  var params = createParams(filterItem, false);
6623
- var url = "" + config.host + ENDPOINT$3 + "/entry-list?" + params;
6623
+ var url = "" + config.host + ENDPOINT$3 + "/entry/list?" + params;
6624
+ var apiKey = config.apiKey;
6625
+ return get(url, apiKey, signal, true, token);
6626
+ };
6627
+ var getEntryTotals = function (config, filterItem, token, signal) {
6628
+ var params = createParams(filterItem, false);
6629
+ var url = "" + config.host + ENDPOINT$3 + "/entry/total?" + params;
6630
+ var apiKey = config.apiKey;
6631
+ return get(url, apiKey, signal, true, token);
6632
+ };
6633
+ var getInvoiceList = function (config, filterItem, token, signal) {
6634
+ var params = createParams(filterItem, false);
6635
+ var url = "" + config.host + ENDPOINT$3 + "/invoice/list?" + params;
6624
6636
  var apiKey = config.apiKey;
6625
6637
  return get(url, apiKey, signal, true, token);
6626
6638
  };
@@ -6743,6 +6755,8 @@ exports.getCountries = getCountries;
6743
6755
  exports.getCustomEntryStatus = getCustomEntryStatus;
6744
6756
  exports.getEntryList = getEntryList;
6745
6757
  exports.getEntryStatus = getEntryStatus;
6758
+ exports.getEntryTotals = getEntryTotals;
6759
+ exports.getInvoiceList = getInvoiceList;
6746
6760
  exports.getMolliePayment = getMolliePayment;
6747
6761
  exports.getPackagePriceDetails = getPackagePriceDetails;
6748
6762
  exports.getPrintActions = getPrintActions;