@vendasta/meetings 0.93.2 → 0.93.5

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.
@@ -5346,9 +5346,9 @@ function MeetingTypeFromApi(req) {
5346
5346
  form: form,
5347
5347
  hostUserIds: req.meetingTypeApi.hostUserIds || [],
5348
5348
  availabilityIncrement: req.meetingTypeApi.availabilityIncrement || -1,
5349
- bufferDurationAfterMeeting: req.meetingTypeApi.bufferDurationAfterMeeting || -1,
5350
- bufferDurationBeforeMeeting: req.meetingTypeApi.bufferDurationBeforeMeeting || -1,
5351
- noticeTime: req.meetingTypeApi.noticeTime || -1,
5349
+ bufferDurationAfterMeeting: req.meetingTypeApi.bufferDurationAfterMeeting || 0,
5350
+ bufferDurationBeforeMeeting: req.meetingTypeApi.bufferDurationBeforeMeeting || 0,
5351
+ noticeTime: req.meetingTypeApi.noticeTime || 0,
5352
5352
  location: req.meetingTypeApi.location || '',
5353
5353
  locationGuidelines: req.meetingTypeApi.locationGuidelines || '',
5354
5354
  isClientChoice: req.meetingTypeApi.isClientChoice || false,
@@ -5378,8 +5378,8 @@ function MeetingTypeToApi(req) {
5378
5378
  form: m.form || undefined,
5379
5379
  hostUserIds: m.hostUserIds || undefined,
5380
5380
  availabilityIncrement: m.availabilityIncrement || undefined,
5381
- bufferDurationAfterMeeting: m.bufferDurationAfterMeeting || undefined,
5382
- noticeTime: m.noticeTime || undefined,
5381
+ bufferDurationAfterMeeting: m.bufferDurationAfterMeeting || 0,
5382
+ noticeTime: m.noticeTime || 0,
5383
5383
  location: m.location || undefined,
5384
5384
  locationGuidelines: m.locationGuidelines || undefined,
5385
5385
  emailSubject: m.emailSubject || undefined,
@@ -5391,7 +5391,7 @@ function MeetingTypeToApi(req) {
5391
5391
  teamName: m.teamName || undefined,
5392
5392
  isVideoLinkDisabled: m.isVideoLinkDisabled || false,
5393
5393
  locationType: m.locationType || MeetingLocationType.VIDEO,
5394
- bufferDurationBeforeMeeting: m.bufferDurationBeforeMeeting || undefined,
5394
+ bufferDurationBeforeMeeting: m.bufferDurationBeforeMeeting || 0,
5395
5395
  };
5396
5396
  }
5397
5397