@vendasta/ai-assistants 0.54.0 → 0.55.0

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.
@@ -1541,6 +1541,12 @@ class Assistant {
1541
1541
  if (typeof this.userId !== 'undefined') {
1542
1542
  toReturn['userId'] = this.userId;
1543
1543
  }
1544
+ if (typeof this.role !== 'undefined') {
1545
+ toReturn['role'] = this.role;
1546
+ }
1547
+ if (typeof this.description !== 'undefined') {
1548
+ toReturn['description'] = this.description;
1549
+ }
1544
1550
  return toReturn;
1545
1551
  }
1546
1552
  }