@vendasta/meetings 0.81.1 → 0.82.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.
@@ -1731,6 +1731,9 @@ class MeetingType {
1731
1731
  if (typeof this.locationGuidelines !== 'undefined') {
1732
1732
  toReturn['locationGuidelines'] = this.locationGuidelines;
1733
1733
  }
1734
+ if (typeof this.isClientChoice !== 'undefined') {
1735
+ toReturn['isClientChoice'] = this.isClientChoice;
1736
+ }
1734
1737
  return toReturn;
1735
1738
  }
1736
1739
  }
@@ -1836,6 +1839,9 @@ class BookMeetingRequest {
1836
1839
  if (typeof this.location !== 'undefined') {
1837
1840
  toReturn['location'] = this.location;
1838
1841
  }
1842
+ if (typeof this.userId !== 'undefined') {
1843
+ toReturn['userId'] = this.userId;
1844
+ }
1839
1845
  return toReturn;
1840
1846
  }
1841
1847
  }
@@ -2188,6 +2194,9 @@ class ListAvailableTimeSlotsRequest {
2188
2194
  if (typeof this.timeZone !== 'undefined' && this.timeZone !== null) {
2189
2195
  toReturn['timeZone'] = 'toApiJson' in this.timeZone ? this.timeZone.toApiJson() : this.timeZone;
2190
2196
  }
2197
+ if (typeof this.userId !== 'undefined') {
2198
+ toReturn['userId'] = this.userId;
2199
+ }
2191
2200
  return toReturn;
2192
2201
  }
2193
2202
  }
@@ -3102,6 +3111,9 @@ class HostBookMeetingRequest {
3102
3111
  if (typeof this.topic !== 'undefined') {
3103
3112
  toReturn['topic'] = this.topic;
3104
3113
  }
3114
+ if (typeof this.userId !== 'undefined') {
3115
+ toReturn['userId'] = this.userId;
3116
+ }
3105
3117
  return toReturn;
3106
3118
  }
3107
3119
  }
@@ -3300,8 +3312,8 @@ class IsCalendarConfiguredResponse {
3300
3312
  if (typeof this.isConfigured !== 'undefined') {
3301
3313
  toReturn['isConfigured'] = this.isConfigured;
3302
3314
  }
3303
- if (typeof this.calendarId !== 'undefined') {
3304
- toReturn['calendarId'] = this.calendarId;
3315
+ if (typeof this.calendarIds !== 'undefined') {
3316
+ toReturn['calendarIds'] = this.calendarIds;
3305
3317
  }
3306
3318
  return toReturn;
3307
3319
  }