webitel-sdk 26.4.11 → 26.4.12

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/index.mjs CHANGED
@@ -66679,7 +66679,7 @@ _defineProperty(SipPhone$1, "userAgent", `Webitel-Phone/${version$1}`);
66679
66679
  _defineProperty(SipPhone$1, "sipVersion", version$1);
66680
66680
  //#endregion
66681
66681
  //#region src/version.ts
66682
- const version = "26.4.11";
66682
+ const version = "26.4.12";
66683
66683
  //#endregion
66684
66684
  //#region src/socket/errors.ts
66685
66685
  /**
@@ -69554,7 +69554,8 @@ var Conversation = class {
69554
69554
  channelId: i.channel_id,
69555
69555
  createdAt: i.created_at,
69556
69556
  updatedAt: i.updated_at,
69557
- contact: null
69557
+ contact: null,
69558
+ variables: null
69558
69559
  };
69559
69560
  if (Object.hasOwn(i, "file")) {
69560
69561
  if (i.file && i.file.id > 0) {
@@ -69565,6 +69566,7 @@ var Conversation = class {
69565
69566
  }
69566
69567
  if (Object.hasOwn(i, "text")) msg.text = i.text;
69567
69568
  if (Object.hasOwn(i, "contact")) msg.contact = i.contact;
69569
+ if (Object.hasOwn(i, "variables")) msg.variables = i.variables;
69568
69570
  return msg;
69569
69571
  });
69570
69572
  }