@vendasta/meetings 1.6.5 → 1.6.7

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.
@@ -1606,6 +1606,9 @@ class Attendee {
1606
1606
  if (typeof this.isPrimary !== 'undefined') {
1607
1607
  toReturn['isPrimary'] = this.isPrimary;
1608
1608
  }
1609
+ if (typeof this.contactId !== 'undefined') {
1610
+ toReturn['contactId'] = this.contactId;
1611
+ }
1609
1612
  return toReturn;
1610
1613
  }
1611
1614
  }
@@ -9553,6 +9556,7 @@ function meetingFromApi(meetingApi) {
9553
9556
  phoneNumber: a.phoneNumber,
9554
9557
  timeZone: a.timeZone,
9555
9558
  isPrimary: a.isPrimary || false,
9559
+ contactId: a.contactId || "",
9556
9560
  }))
9557
9561
  : [],
9558
9562
  created: meetingApi.created,