@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 url = (0, url_formatter_1.formatURL)(this.endpoints.progress, { chatId: this.convoId, includeCompleted: options === null || options === void 0 ? void 0 : options.includeCompleted }, { apiKey: this.apiKey, debug: this.debug });
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();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@butlerbot/sdk",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "description": "The official ButlerBot SDK",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",