@qite/tide-client 1.1.112 → 1.1.114
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 +7 -0
- package/build/index.js.map +1 -1
- package/build/types/web/tag.d.ts +10 -0
- package/build/utils/web-client.d.ts +5 -0
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -6786,6 +6786,7 @@ var ENDPOINT_CONTACT_FORM$1 = ENDPOINT$2 + "/contactform";
|
|
|
6786
6786
|
var ENDPOINT_CREATE_AFFILIATES = ENDPOINT$2 + "/affiliates";
|
|
6787
6787
|
var ENDPOINT_TRANSLATION_DICTIONARY = ENDPOINT$2 + "/translation-dictionary";
|
|
6788
6788
|
var ENDPOINT_BOOKING_ACCOMMODATION = ENDPOINT$2 + "/booking-accommodation";
|
|
6789
|
+
var ENDPOINT_TAGS = ENDPOINT$2 + "/entity/tag";
|
|
6789
6790
|
/**
|
|
6790
6791
|
* api/web/crmcontact
|
|
6791
6792
|
* Creates a CRM contact.
|
|
@@ -6838,6 +6839,11 @@ var generateBookingAccommodations = function (config, request, signal) {
|
|
|
6838
6839
|
var body = JSON.stringify(request);
|
|
6839
6840
|
return post(url, apiKey, body, config.token, signal);
|
|
6840
6841
|
};
|
|
6842
|
+
var getTags = function (config, signal) {
|
|
6843
|
+
var url = "" + config.host + ENDPOINT_TAGS;
|
|
6844
|
+
var apiKey = config.apiKey;
|
|
6845
|
+
return get(url, apiKey, config.token, signal, true);
|
|
6846
|
+
};
|
|
6841
6847
|
|
|
6842
6848
|
var ENDPOINT$1 = "/api/web/contact";
|
|
6843
6849
|
var ENDPOINT_CONTACT_FORM = ENDPOINT$1 + "/contact-form";
|
|
@@ -6942,6 +6948,7 @@ exports.getEntryTotals = getEntryTotals;
|
|
|
6942
6948
|
exports.getInvoiceList = getInvoiceList;
|
|
6943
6949
|
exports.getMolliePayment = getMolliePayment;
|
|
6944
6950
|
exports.getPrintActions = getPrintActions;
|
|
6951
|
+
exports.getTags = getTags;
|
|
6945
6952
|
exports.getTranslationDictionary = getTranslationDictionary;
|
|
6946
6953
|
exports.login = login;
|
|
6947
6954
|
exports.logout = logout;
|