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.cjs CHANGED
@@ -66704,7 +66704,7 @@ _defineProperty(SipPhone$1, "userAgent", `Webitel-Phone/${version$1}`);
66704
66704
  _defineProperty(SipPhone$1, "sipVersion", version$1);
66705
66705
  //#endregion
66706
66706
  //#region src/version.ts
66707
- const version = "26.4.11";
66707
+ const version = "26.4.12";
66708
66708
  //#endregion
66709
66709
  //#region src/socket/errors.ts
66710
66710
  /**
@@ -69579,7 +69579,8 @@ var Conversation = class {
69579
69579
  channelId: i.channel_id,
69580
69580
  createdAt: i.created_at,
69581
69581
  updatedAt: i.updated_at,
69582
- contact: null
69582
+ contact: null,
69583
+ variables: null
69583
69584
  };
69584
69585
  if (Object.hasOwn(i, "file")) {
69585
69586
  if (i.file && i.file.id > 0) {
@@ -69590,6 +69591,7 @@ var Conversation = class {
69590
69591
  }
69591
69592
  if (Object.hasOwn(i, "text")) msg.text = i.text;
69592
69593
  if (Object.hasOwn(i, "contact")) msg.contact = i.contact;
69594
+ if (Object.hasOwn(i, "variables")) msg.variables = i.variables;
69593
69595
  return msg;
69594
69596
  });
69595
69597
  }