@qite/tide-client 1.1.16 → 1.1.17
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
|
@@ -6328,8 +6328,15 @@ var agents = function (config, signal) {
|
|
|
6328
6328
|
var apiKey = config.apiKey;
|
|
6329
6329
|
return get(url, apiKey, signal, true);
|
|
6330
6330
|
};
|
|
6331
|
-
var getAllotmentAvailability = function (config, eventId, signal) {
|
|
6332
|
-
var url =
|
|
6331
|
+
var getAllotmentAvailability = function (config, eventId, productCode, signal) {
|
|
6332
|
+
var url =
|
|
6333
|
+
"" +
|
|
6334
|
+
config.host +
|
|
6335
|
+
ENDPOINT_AVAILABLE_ALLOTMENTS +
|
|
6336
|
+
"/" +
|
|
6337
|
+
eventId +
|
|
6338
|
+
"/" +
|
|
6339
|
+
productCode;
|
|
6333
6340
|
var apiKey = config.apiKey;
|
|
6334
6341
|
return get(url, apiKey, signal, true);
|
|
6335
6342
|
};
|