@qite/tide-client 2.0.9 → 2.0.10

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
@@ -6653,6 +6653,8 @@ var ENDPOINT_ENTRY_STATUS = function (
6653
6653
  };
6654
6654
  var ENDPOINT_ELASTIC = ENDPOINT$a + "/elastic";
6655
6655
  var ENDPOINT_FLIGHT_LINES = ENDPOINT$a + "/flightlines";
6656
+ var ENDPOINT_REPRICE_AND_ISSUE_TICKET =
6657
+ ENDPOINT$a + "/reprice-and-issue-ticket";
6656
6658
  var availableFlights = function (config, request, signal) {
6657
6659
  var url = "" + config.host + ENDPOINT_AVAILABLE_FLIGHTS;
6658
6660
  var apiKey = config.apiKey;
@@ -6804,6 +6806,13 @@ var setEntryStatus = function (
6804
6806
  var apiKey = config.apiKey;
6805
6807
  return patch(url, apiKey, null, config.token, signal, true);
6806
6808
  };
6809
+ // PRICING
6810
+ var repriceAndIssueTicket = function (config, request, signal) {
6811
+ var url = "" + config.host + ENDPOINT_REPRICE_AND_ISSUE_TICKET;
6812
+ var apiKey = config.apiKey;
6813
+ var body = JSON.stringify(request);
6814
+ return post(url, apiKey, body, config.token, signal, true);
6815
+ };
6807
6816
  var flightLines = function (config, request, signal) {
6808
6817
  var url = "" + config.host + ENDPOINT_FLIGHT_LINES;
6809
6818
  var apiKey = config.apiKey;
@@ -7707,6 +7716,7 @@ exports.priceDetails = priceDetails;
7707
7716
  exports.prices = prices;
7708
7717
  exports.print = print;
7709
7718
  exports.readForm = readForm;
7719
+ exports.repriceAndIssueTicket = repriceAndIssueTicket;
7710
7720
  exports.resetPassword = resetPassword;
7711
7721
  exports.search = search;
7712
7722
  exports.searchCountries = searchCountries;