@butlerbot/sdk 0.0.16 → 0.0.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.
|
@@ -236,7 +236,12 @@ class Conversation {
|
|
|
236
236
|
return __awaiter(this, void 0, void 0, function* () {
|
|
237
237
|
if (!this.convoId)
|
|
238
238
|
throw new Error("Conversation ID is not set");
|
|
239
|
-
const
|
|
239
|
+
const payload = {
|
|
240
|
+
chatId: this.convoId,
|
|
241
|
+
};
|
|
242
|
+
if ((options === null || options === void 0 ? void 0 : options.includeCompleted) !== undefined)
|
|
243
|
+
payload["includeCompleted"] = options.includeCompleted;
|
|
244
|
+
const url = (0, url_formatter_1.formatURL)(this.endpoints.progress, payload, { apiKey: this.apiKey, debug: this.debug });
|
|
240
245
|
const response = yield fetch(url, { headers: (options === null || options === void 0 ? void 0 : options.lastEventId) ? { "last-event-id": options.lastEventId } : undefined });
|
|
241
246
|
if (!response.ok) {
|
|
242
247
|
const errorText = yield response.text();
|