@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.
- package/build/index.js +15 -1
- package/build/index.js.map +1 -1
- package/build/types/company/agent/agent-invoice-item.d.ts +9 -0
- package/build/types/company/agent/entry-totals.d.ts +7 -0
- package/build/types/company/agent/index.d.ts +2 -0
- package/build/types/company/index.d.ts +1 -0
- package/build/types/offer/booking-v2/request/booking-package-book-request.d.ts +4 -0
- package/build/types/offer/booking-v2/request/booking-package-customer-request.d.ts +4 -0
- package/build/types/offer/booking-v2/request/index.d.ts +2 -1
- package/build/types/offer/booking-v2/response/booking-price-details.d.ts +4 -0
- package/build/types/offer/booking-v2/response/booking-room-status-option.d.ts +5 -0
- package/build/types/offer/booking-v2/response/booking-room-status.d.ts +5 -0
- package/build/types/offer/booking-v2/response/booking-validity-line.d.ts +4 -0
- package/build/types/offer/booking-v2/response/index.d.ts +1 -0
- package/build/types/offer/booking-v2/shared/airline-booking-package-option.d.ts +2 -0
- package/build/types/offer/booking-v2/shared/airport-booking-package-option.d.ts +2 -0
- package/build/types/offer/booking-v2/shared/booking-airline-group.d.ts +6 -0
- package/build/types/offer/booking-v2/shared/booking-airport-group.d.ts +6 -0
- package/build/types/offer/booking-v2/shared/booking-option-pax.d.ts +6 -0
- package/build/types/offer/booking-v2/shared/booking-option-unit.d.ts +6 -0
- package/build/types/offer/booking-v2/shared/booking-package-availability.d.ts +1 -0
- package/build/types/offer/booking-v2/shared/booking-package-option.d.ts +7 -0
- package/build/types/offer/booking-v2/shared/index.d.ts +8 -4
- package/build/utils/web-agent-client.d.ts +15 -1
- package/package.json +6 -2
- package/src/types/company/agent/agent-invoice-item.ts +9 -0
- package/src/types/company/agent/entry-totals.ts +7 -0
- package/src/types/company/agent/index.ts +2 -0
- package/src/types/company/index.ts +1 -0
- package/src/types/offer/booking-v2/request/booking-package-book-request.ts +4 -0
- package/src/types/offer/booking-v2/request/booking-package-customer-request.ts +4 -0
- package/src/types/offer/booking-v2/request/index.ts +2 -1
- package/src/types/offer/booking-v2/response/booking-price-details.ts +4 -0
- package/src/types/offer/booking-v2/response/booking-room-status-option.ts +5 -0
- package/src/types/offer/booking-v2/response/booking-room-status.ts +6 -0
- package/src/types/offer/booking-v2/response/booking-validity-line.ts +4 -0
- package/src/types/offer/booking-v2/response/index.ts +1 -0
- package/src/types/offer/booking-v2/shared/airline-booking-package-option.ts +3 -0
- package/src/types/offer/booking-v2/shared/airport-booking-package-option.ts +3 -0
- package/src/types/offer/booking-v2/shared/booking-airline-group.ts +7 -0
- package/src/types/offer/booking-v2/shared/booking-airport-group.ts +7 -0
- package/src/types/offer/booking-v2/shared/booking-option-pax.ts +6 -0
- package/src/types/offer/booking-v2/shared/booking-option-unit.ts +6 -0
- package/src/types/offer/booking-v2/shared/booking-package-availability.ts +1 -0
- package/src/types/offer/booking-v2/shared/booking-package-option.ts +7 -0
- package/src/types/offer/booking-v2/shared/index.ts +8 -4
- 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
|
|
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;
|