@hubs101/js-api-skd-client 1.0.10273 → 1.0.10276
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/lib/api/event/index.js +1 -1
- package/lib/types/base.d.ts +1 -1
- package/package.json +1 -1
package/lib/api/event/index.js
CHANGED
|
@@ -294,7 +294,7 @@ const _fetchEventGroups = (basePath, token, eventId) => __awaiter(void 0, void 0
|
|
|
294
294
|
exports._fetchEventGroups = _fetchEventGroups;
|
|
295
295
|
const _checkBooking = (basePath, body, lang) => __awaiter(void 0, void 0, void 0, function* () {
|
|
296
296
|
const base = (0, base_1.getBasePath)(basePath);
|
|
297
|
-
const response = yield (0, api_1.postRequestWE)(`${base.BOOKINGS}/
|
|
297
|
+
const response = yield (0, api_1.postRequestWE)(`${base.BOOKINGS}/check?lang=${lang}`, body);
|
|
298
298
|
return response;
|
|
299
299
|
});
|
|
300
300
|
exports._checkBooking = _checkBooking;
|
package/lib/types/base.d.ts
CHANGED
|
@@ -303,7 +303,7 @@ export type EventAPIType = {
|
|
|
303
303
|
updatePaymentAccount: (paymentAccountId: string, data: any) => Promise<any>;
|
|
304
304
|
inviteContentManager: (accountId: string, data: any) => Promise<any>;
|
|
305
305
|
deleteContentManager: (accountId: string, profileId: string) => Promise<any>;
|
|
306
|
-
registerManager: (
|
|
306
|
+
registerManager: (accountId: string, data: RegisterManagerInput) => Promise<any>;
|
|
307
307
|
confirmManager: (accountId: string, data: any) => Promise<any>;
|
|
308
308
|
inviteFinanceManager: (accountId: string, data: any) => Promise<any>;
|
|
309
309
|
deleteFinanceManager: (accountId: string, profileId: string) => Promise<any>;
|