@vendasta/meetings 1.11.0 → 1.11.1

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.
@@ -1917,6 +1917,9 @@ class HostUser {
1917
1917
  if (typeof this.isConnected !== 'undefined') {
1918
1918
  toReturn['isConnected'] = this.isConnected;
1919
1919
  }
1920
+ if (typeof this.isDeleted !== 'undefined') {
1921
+ toReturn['isDeleted'] = this.isDeleted;
1922
+ }
1920
1923
  return toReturn;
1921
1924
  }
1922
1925
  }
@@ -7342,12 +7345,12 @@ class EventTypeSummary {
7342
7345
  if (proto.dateRange) {
7343
7346
  m.dateRange = EventTypeDateRange.fromProto(proto.dateRange);
7344
7347
  }
7345
- if (proto.bufferDurationBeforeMeeting) {
7346
- m.bufferDurationBeforeMeeting = parseInt(proto.bufferDurationBeforeMeeting, 10);
7347
- }
7348
7348
  if (proto.bufferDurationAfterMeeting) {
7349
7349
  m.bufferDurationAfterMeeting = parseInt(proto.bufferDurationAfterMeeting, 10);
7350
7350
  }
7351
+ if (proto.bufferDurationBeforeMeeting) {
7352
+ m.bufferDurationBeforeMeeting = parseInt(proto.bufferDurationBeforeMeeting, 10);
7353
+ }
7351
7354
  return m;
7352
7355
  }
7353
7356
  constructor(kwargs) {
@@ -7406,12 +7409,12 @@ class EventTypeSummary {
7406
7409
  if (typeof this.description !== 'undefined') {
7407
7410
  toReturn['description'] = this.description;
7408
7411
  }
7409
- if (typeof this.bufferDurationBeforeMeeting !== 'undefined') {
7410
- toReturn['bufferDurationBeforeMeeting'] = this.bufferDurationBeforeMeeting;
7411
- }
7412
7412
  if (typeof this.bufferDurationAfterMeeting !== 'undefined') {
7413
7413
  toReturn['bufferDurationAfterMeeting'] = this.bufferDurationAfterMeeting;
7414
7414
  }
7415
+ if (typeof this.bufferDurationBeforeMeeting !== 'undefined') {
7416
+ toReturn['bufferDurationBeforeMeeting'] = this.bufferDurationBeforeMeeting;
7417
+ }
7415
7418
  return toReturn;
7416
7419
  }
7417
7420
  }
@@ -11231,6 +11234,7 @@ function hostUserFromApi(hostUser) {
11231
11234
  displayName: hostUser.displayName || '',
11232
11235
  isConfigured: hostUser.isConfigured || false,
11233
11236
  isConnected: hostUser.isConnected || false,
11237
+ isDeleted: hostUser.isDeleted || false,
11234
11238
  };
11235
11239
  }
11236
11240