@vendasta/meetings 0.81.0 → 0.81.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.
- package/esm2020/lib/_internal/enums/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-guest.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-type.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/index.mjs +3 -3
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +4 -1
- package/esm2020/lib/_internal/objects/meeting-host.mjs +4 -1
- package/esm2020/lib/_internal/objects/meeting-type.mjs +10 -1
- package/esm2020/lib/guest/guest.service.mjs +1 -1
- package/esm2020/lib/shared/meeting-type.mjs +9 -3
- package/esm2020/lib/shared/meeting.mjs +3 -2
- package/fesm2015/vendasta-meetings.mjs +151 -129
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +151 -129
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/interfaces/index.d.ts +2 -2
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +1 -0
- package/lib/_internal/interfaces/meeting-host.interface.d.ts +1 -0
- package/lib/_internal/interfaces/meeting-type.interface.d.ts +3 -0
- package/lib/_internal/objects/index.d.ts +2 -2
- package/lib/_internal/objects/meeting-guest.d.ts +1 -0
- package/lib/_internal/objects/meeting-host.d.ts +1 -0
- package/lib/_internal/objects/meeting-type.d.ts +3 -0
- package/lib/guest/guest.service.d.ts +1 -0
- package/lib/shared/meeting-type.d.ts +3 -0
- package/lib/shared/meeting.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1173,125 +1173,12 @@ function enumStringToValue$7(enumRef, value) {
|
|
|
1173
1173
|
}
|
|
1174
1174
|
return enumRef[value];
|
|
1175
1175
|
}
|
|
1176
|
-
class TimeOfDay {
|
|
1177
|
-
static fromProto(proto) {
|
|
1178
|
-
let m = new TimeOfDay();
|
|
1179
|
-
m = Object.assign(m, proto);
|
|
1180
|
-
return m;
|
|
1181
|
-
}
|
|
1182
|
-
constructor(kwargs) {
|
|
1183
|
-
if (!kwargs) {
|
|
1184
|
-
return;
|
|
1185
|
-
}
|
|
1186
|
-
Object.assign(this, kwargs);
|
|
1187
|
-
}
|
|
1188
|
-
toApiJson() {
|
|
1189
|
-
const toReturn = {};
|
|
1190
|
-
if (typeof this.hours !== 'undefined') {
|
|
1191
|
-
toReturn['hours'] = this.hours;
|
|
1192
|
-
}
|
|
1193
|
-
if (typeof this.minutes !== 'undefined') {
|
|
1194
|
-
toReturn['minutes'] = this.minutes;
|
|
1195
|
-
}
|
|
1196
|
-
if (typeof this.seconds !== 'undefined') {
|
|
1197
|
-
toReturn['seconds'] = this.seconds;
|
|
1198
|
-
}
|
|
1199
|
-
if (typeof this.nanos !== 'undefined') {
|
|
1200
|
-
toReturn['nanos'] = this.nanos;
|
|
1201
|
-
}
|
|
1202
|
-
return toReturn;
|
|
1203
|
-
}
|
|
1204
|
-
}
|
|
1205
|
-
|
|
1206
|
-
function enumStringToValue$6(enumRef, value) {
|
|
1207
|
-
if (typeof value === 'number') {
|
|
1208
|
-
return value;
|
|
1209
|
-
}
|
|
1210
|
-
return enumRef[value];
|
|
1211
|
-
}
|
|
1212
|
-
class DateTime {
|
|
1213
|
-
static fromProto(proto) {
|
|
1214
|
-
let m = new DateTime();
|
|
1215
|
-
m = Object.assign(m, proto);
|
|
1216
|
-
if (proto.timeZone) {
|
|
1217
|
-
m.timeZone = TimeZone.fromProto(proto.timeZone);
|
|
1218
|
-
}
|
|
1219
|
-
return m;
|
|
1220
|
-
}
|
|
1221
|
-
constructor(kwargs) {
|
|
1222
|
-
if (!kwargs) {
|
|
1223
|
-
return;
|
|
1224
|
-
}
|
|
1225
|
-
Object.assign(this, kwargs);
|
|
1226
|
-
}
|
|
1227
|
-
toApiJson() {
|
|
1228
|
-
const toReturn = {};
|
|
1229
|
-
if (typeof this.year !== 'undefined') {
|
|
1230
|
-
toReturn['year'] = this.year;
|
|
1231
|
-
}
|
|
1232
|
-
if (typeof this.month !== 'undefined') {
|
|
1233
|
-
toReturn['month'] = this.month;
|
|
1234
|
-
}
|
|
1235
|
-
if (typeof this.day !== 'undefined') {
|
|
1236
|
-
toReturn['day'] = this.day;
|
|
1237
|
-
}
|
|
1238
|
-
if (typeof this.hours !== 'undefined') {
|
|
1239
|
-
toReturn['hours'] = this.hours;
|
|
1240
|
-
}
|
|
1241
|
-
if (typeof this.minutes !== 'undefined') {
|
|
1242
|
-
toReturn['minutes'] = this.minutes;
|
|
1243
|
-
}
|
|
1244
|
-
if (typeof this.seconds !== 'undefined') {
|
|
1245
|
-
toReturn['seconds'] = this.seconds;
|
|
1246
|
-
}
|
|
1247
|
-
if (typeof this.nanos !== 'undefined') {
|
|
1248
|
-
toReturn['nanos'] = this.nanos;
|
|
1249
|
-
}
|
|
1250
|
-
if (typeof this.utcOffset !== 'undefined') {
|
|
1251
|
-
toReturn['utcOffset'] = this.utcOffset;
|
|
1252
|
-
}
|
|
1253
|
-
if (typeof this.timeZone !== 'undefined' && this.timeZone !== null) {
|
|
1254
|
-
toReturn['timeZone'] = 'toApiJson' in this.timeZone ? this.timeZone.toApiJson() : this.timeZone;
|
|
1255
|
-
}
|
|
1256
|
-
return toReturn;
|
|
1257
|
-
}
|
|
1258
|
-
}
|
|
1259
|
-
class TimeZone {
|
|
1260
|
-
static fromProto(proto) {
|
|
1261
|
-
let m = new TimeZone();
|
|
1262
|
-
m = Object.assign(m, proto);
|
|
1263
|
-
return m;
|
|
1264
|
-
}
|
|
1265
|
-
constructor(kwargs) {
|
|
1266
|
-
if (!kwargs) {
|
|
1267
|
-
return;
|
|
1268
|
-
}
|
|
1269
|
-
Object.assign(this, kwargs);
|
|
1270
|
-
}
|
|
1271
|
-
toApiJson() {
|
|
1272
|
-
const toReturn = {};
|
|
1273
|
-
if (typeof this.id !== 'undefined') {
|
|
1274
|
-
toReturn['id'] = this.id;
|
|
1275
|
-
}
|
|
1276
|
-
if (typeof this.version !== 'undefined') {
|
|
1277
|
-
toReturn['version'] = this.version;
|
|
1278
|
-
}
|
|
1279
|
-
return toReturn;
|
|
1280
|
-
}
|
|
1281
|
-
}
|
|
1282
|
-
|
|
1283
|
-
function enumStringToValue$5(enumRef, value) {
|
|
1284
|
-
if (typeof value === 'number') {
|
|
1285
|
-
return value;
|
|
1286
|
-
}
|
|
1287
|
-
return enumRef[value];
|
|
1288
|
-
}
|
|
1289
1176
|
class Answer {
|
|
1290
1177
|
static fromProto(proto) {
|
|
1291
1178
|
let m = new Answer();
|
|
1292
1179
|
m = Object.assign(m, proto);
|
|
1293
1180
|
if (proto.type) {
|
|
1294
|
-
m.type = enumStringToValue$
|
|
1181
|
+
m.type = enumStringToValue$7(FormFieldType, proto.type);
|
|
1295
1182
|
}
|
|
1296
1183
|
return m;
|
|
1297
1184
|
}
|
|
@@ -1433,7 +1320,7 @@ class Calendar {
|
|
|
1433
1320
|
m.applicationContext = Object.keys(proto.applicationContext).reduce((obj, k) => { obj[k] = proto.applicationContext[k]; return obj; }, {});
|
|
1434
1321
|
}
|
|
1435
1322
|
if (proto.calendarType) {
|
|
1436
|
-
m.calendarType = enumStringToValue$
|
|
1323
|
+
m.calendarType = enumStringToValue$7(CalendarType, proto.calendarType);
|
|
1437
1324
|
}
|
|
1438
1325
|
return m;
|
|
1439
1326
|
}
|
|
@@ -1631,7 +1518,7 @@ class Preferences {
|
|
|
1631
1518
|
m.timezone = TimeZone.fromProto(proto.timezone);
|
|
1632
1519
|
}
|
|
1633
1520
|
if (proto.meetingIntegration) {
|
|
1634
|
-
m.meetingIntegration = enumStringToValue$
|
|
1521
|
+
m.meetingIntegration = enumStringToValue$7(MeetingSource, proto.meetingIntegration);
|
|
1635
1522
|
}
|
|
1636
1523
|
if (proto.availabilityIncrement) {
|
|
1637
1524
|
m.availabilityIncrement = parseInt(proto.availabilityIncrement, 10);
|
|
@@ -1703,7 +1590,7 @@ class TimeRange {
|
|
|
1703
1590
|
}
|
|
1704
1591
|
}
|
|
1705
1592
|
|
|
1706
|
-
function enumStringToValue$
|
|
1593
|
+
function enumStringToValue$6(enumRef, value) {
|
|
1707
1594
|
if (typeof value === 'number') {
|
|
1708
1595
|
return value;
|
|
1709
1596
|
}
|
|
@@ -1714,7 +1601,7 @@ class Field {
|
|
|
1714
1601
|
let m = new Field();
|
|
1715
1602
|
m = Object.assign(m, proto);
|
|
1716
1603
|
if (proto.type) {
|
|
1717
|
-
m.type = enumStringToValue$
|
|
1604
|
+
m.type = enumStringToValue$6(FormFieldType, proto.type);
|
|
1718
1605
|
}
|
|
1719
1606
|
return m;
|
|
1720
1607
|
}
|
|
@@ -1835,11 +1722,20 @@ class MeetingType {
|
|
|
1835
1722
|
if (typeof this.noticeTime !== 'undefined') {
|
|
1836
1723
|
toReturn['noticeTime'] = this.noticeTime;
|
|
1837
1724
|
}
|
|
1725
|
+
if (typeof this.location !== 'undefined') {
|
|
1726
|
+
toReturn['location'] = this.location;
|
|
1727
|
+
}
|
|
1728
|
+
if (typeof this.isClientSiteMeeting !== 'undefined') {
|
|
1729
|
+
toReturn['isClientSiteMeeting'] = this.isClientSiteMeeting;
|
|
1730
|
+
}
|
|
1731
|
+
if (typeof this.locationGuidelines !== 'undefined') {
|
|
1732
|
+
toReturn['locationGuidelines'] = this.locationGuidelines;
|
|
1733
|
+
}
|
|
1838
1734
|
return toReturn;
|
|
1839
1735
|
}
|
|
1840
1736
|
}
|
|
1841
1737
|
|
|
1842
|
-
function enumStringToValue$
|
|
1738
|
+
function enumStringToValue$5(enumRef, value) {
|
|
1843
1739
|
if (typeof value === 'number') {
|
|
1844
1740
|
return value;
|
|
1845
1741
|
}
|
|
@@ -1875,7 +1771,7 @@ class DateRange {
|
|
|
1875
1771
|
}
|
|
1876
1772
|
}
|
|
1877
1773
|
|
|
1878
|
-
function enumStringToValue$
|
|
1774
|
+
function enumStringToValue$4(enumRef, value) {
|
|
1879
1775
|
if (typeof value === 'number') {
|
|
1880
1776
|
return value;
|
|
1881
1777
|
}
|
|
@@ -1937,6 +1833,9 @@ class BookMeetingRequest {
|
|
|
1937
1833
|
if (typeof this.recaptchaToken !== 'undefined') {
|
|
1938
1834
|
toReturn['recaptchaToken'] = this.recaptchaToken;
|
|
1939
1835
|
}
|
|
1836
|
+
if (typeof this.location !== 'undefined') {
|
|
1837
|
+
toReturn['location'] = this.location;
|
|
1838
|
+
}
|
|
1940
1839
|
return toReturn;
|
|
1941
1840
|
}
|
|
1942
1841
|
}
|
|
@@ -2382,7 +2281,7 @@ class BookMeetingRequestMetadataEntry {
|
|
|
2382
2281
|
}
|
|
2383
2282
|
}
|
|
2384
2283
|
|
|
2385
|
-
function enumStringToValue$
|
|
2284
|
+
function enumStringToValue$3(enumRef, value) {
|
|
2386
2285
|
if (typeof value === 'number') {
|
|
2387
2286
|
return value;
|
|
2388
2287
|
}
|
|
@@ -2409,7 +2308,7 @@ class FieldMask {
|
|
|
2409
2308
|
}
|
|
2410
2309
|
}
|
|
2411
2310
|
|
|
2412
|
-
function enumStringToValue(enumRef, value) {
|
|
2311
|
+
function enumStringToValue$2(enumRef, value) {
|
|
2413
2312
|
if (typeof value === 'number') {
|
|
2414
2313
|
return value;
|
|
2415
2314
|
}
|
|
@@ -2489,7 +2388,7 @@ class AvailabilityRule {
|
|
|
2489
2388
|
let m = new AvailabilityRule();
|
|
2490
2389
|
m = Object.assign(m, proto);
|
|
2491
2390
|
if (proto.day) {
|
|
2492
|
-
m.day = enumStringToValue(DayOfWeek, proto.day);
|
|
2391
|
+
m.day = enumStringToValue$2(DayOfWeek, proto.day);
|
|
2493
2392
|
}
|
|
2494
2393
|
if (proto.timeSlot) {
|
|
2495
2394
|
m.timeSlot = TimeRange.fromProto(proto.timeSlot);
|
|
@@ -3167,7 +3066,7 @@ class HostBookMeetingRequest {
|
|
|
3167
3066
|
let m = new HostBookMeetingRequest();
|
|
3168
3067
|
m = Object.assign(m, proto);
|
|
3169
3068
|
if (proto.meetingSource) {
|
|
3170
|
-
m.meetingSource = enumStringToValue(MeetingSource, proto.meetingSource);
|
|
3069
|
+
m.meetingSource = enumStringToValue$2(MeetingSource, proto.meetingSource);
|
|
3171
3070
|
}
|
|
3172
3071
|
if (proto.timeSlot) {
|
|
3173
3072
|
m.timeSlot = DateRange.fromProto(proto.timeSlot);
|
|
@@ -3655,6 +3554,9 @@ class Meeting {
|
|
|
3655
3554
|
if (typeof this.attachments !== 'undefined' && this.attachments !== null) {
|
|
3656
3555
|
toReturn['attachments'] = 'toApiJson' in this.attachments ? this.attachments.toApiJson() : this.attachments;
|
|
3657
3556
|
}
|
|
3557
|
+
if (typeof this.location !== 'undefined') {
|
|
3558
|
+
toReturn['location'] = this.location;
|
|
3559
|
+
}
|
|
3658
3560
|
return toReturn;
|
|
3659
3561
|
}
|
|
3660
3562
|
}
|
|
@@ -3784,7 +3686,7 @@ class SetGeneralAvailabilityRequest {
|
|
|
3784
3686
|
let m = new SetGeneralAvailabilityRequest();
|
|
3785
3687
|
m = Object.assign(m, proto);
|
|
3786
3688
|
if (proto.days) {
|
|
3787
|
-
m.days = proto.days.map((v) => enumStringToValue(DayOfWeek, v));
|
|
3689
|
+
m.days = proto.days.map((v) => enumStringToValue$2(DayOfWeek, v));
|
|
3788
3690
|
}
|
|
3789
3691
|
if (proto.timeSlot) {
|
|
3790
3692
|
m.timeSlot = TimeRange.fromProto(proto.timeSlot);
|
|
@@ -3973,7 +3875,7 @@ class WeekdayAvailability {
|
|
|
3973
3875
|
let m = new WeekdayAvailability();
|
|
3974
3876
|
m = Object.assign(m, proto);
|
|
3975
3877
|
if (proto.day) {
|
|
3976
|
-
m.day = enumStringToValue(DayOfWeek, proto.day);
|
|
3878
|
+
m.day = enumStringToValue$2(DayOfWeek, proto.day);
|
|
3977
3879
|
}
|
|
3978
3880
|
if (proto.timeSlots) {
|
|
3979
3881
|
m.timeSlots = proto.timeSlots.map(TimeRange.fromProto);
|
|
@@ -3998,6 +3900,119 @@ class WeekdayAvailability {
|
|
|
3998
3900
|
}
|
|
3999
3901
|
}
|
|
4000
3902
|
|
|
3903
|
+
function enumStringToValue$1(enumRef, value) {
|
|
3904
|
+
if (typeof value === 'number') {
|
|
3905
|
+
return value;
|
|
3906
|
+
}
|
|
3907
|
+
return enumRef[value];
|
|
3908
|
+
}
|
|
3909
|
+
class TimeOfDay {
|
|
3910
|
+
static fromProto(proto) {
|
|
3911
|
+
let m = new TimeOfDay();
|
|
3912
|
+
m = Object.assign(m, proto);
|
|
3913
|
+
return m;
|
|
3914
|
+
}
|
|
3915
|
+
constructor(kwargs) {
|
|
3916
|
+
if (!kwargs) {
|
|
3917
|
+
return;
|
|
3918
|
+
}
|
|
3919
|
+
Object.assign(this, kwargs);
|
|
3920
|
+
}
|
|
3921
|
+
toApiJson() {
|
|
3922
|
+
const toReturn = {};
|
|
3923
|
+
if (typeof this.hours !== 'undefined') {
|
|
3924
|
+
toReturn['hours'] = this.hours;
|
|
3925
|
+
}
|
|
3926
|
+
if (typeof this.minutes !== 'undefined') {
|
|
3927
|
+
toReturn['minutes'] = this.minutes;
|
|
3928
|
+
}
|
|
3929
|
+
if (typeof this.seconds !== 'undefined') {
|
|
3930
|
+
toReturn['seconds'] = this.seconds;
|
|
3931
|
+
}
|
|
3932
|
+
if (typeof this.nanos !== 'undefined') {
|
|
3933
|
+
toReturn['nanos'] = this.nanos;
|
|
3934
|
+
}
|
|
3935
|
+
return toReturn;
|
|
3936
|
+
}
|
|
3937
|
+
}
|
|
3938
|
+
|
|
3939
|
+
function enumStringToValue(enumRef, value) {
|
|
3940
|
+
if (typeof value === 'number') {
|
|
3941
|
+
return value;
|
|
3942
|
+
}
|
|
3943
|
+
return enumRef[value];
|
|
3944
|
+
}
|
|
3945
|
+
class DateTime {
|
|
3946
|
+
static fromProto(proto) {
|
|
3947
|
+
let m = new DateTime();
|
|
3948
|
+
m = Object.assign(m, proto);
|
|
3949
|
+
if (proto.timeZone) {
|
|
3950
|
+
m.timeZone = TimeZone.fromProto(proto.timeZone);
|
|
3951
|
+
}
|
|
3952
|
+
return m;
|
|
3953
|
+
}
|
|
3954
|
+
constructor(kwargs) {
|
|
3955
|
+
if (!kwargs) {
|
|
3956
|
+
return;
|
|
3957
|
+
}
|
|
3958
|
+
Object.assign(this, kwargs);
|
|
3959
|
+
}
|
|
3960
|
+
toApiJson() {
|
|
3961
|
+
const toReturn = {};
|
|
3962
|
+
if (typeof this.year !== 'undefined') {
|
|
3963
|
+
toReturn['year'] = this.year;
|
|
3964
|
+
}
|
|
3965
|
+
if (typeof this.month !== 'undefined') {
|
|
3966
|
+
toReturn['month'] = this.month;
|
|
3967
|
+
}
|
|
3968
|
+
if (typeof this.day !== 'undefined') {
|
|
3969
|
+
toReturn['day'] = this.day;
|
|
3970
|
+
}
|
|
3971
|
+
if (typeof this.hours !== 'undefined') {
|
|
3972
|
+
toReturn['hours'] = this.hours;
|
|
3973
|
+
}
|
|
3974
|
+
if (typeof this.minutes !== 'undefined') {
|
|
3975
|
+
toReturn['minutes'] = this.minutes;
|
|
3976
|
+
}
|
|
3977
|
+
if (typeof this.seconds !== 'undefined') {
|
|
3978
|
+
toReturn['seconds'] = this.seconds;
|
|
3979
|
+
}
|
|
3980
|
+
if (typeof this.nanos !== 'undefined') {
|
|
3981
|
+
toReturn['nanos'] = this.nanos;
|
|
3982
|
+
}
|
|
3983
|
+
if (typeof this.utcOffset !== 'undefined') {
|
|
3984
|
+
toReturn['utcOffset'] = this.utcOffset;
|
|
3985
|
+
}
|
|
3986
|
+
if (typeof this.timeZone !== 'undefined' && this.timeZone !== null) {
|
|
3987
|
+
toReturn['timeZone'] = 'toApiJson' in this.timeZone ? this.timeZone.toApiJson() : this.timeZone;
|
|
3988
|
+
}
|
|
3989
|
+
return toReturn;
|
|
3990
|
+
}
|
|
3991
|
+
}
|
|
3992
|
+
class TimeZone {
|
|
3993
|
+
static fromProto(proto) {
|
|
3994
|
+
let m = new TimeZone();
|
|
3995
|
+
m = Object.assign(m, proto);
|
|
3996
|
+
return m;
|
|
3997
|
+
}
|
|
3998
|
+
constructor(kwargs) {
|
|
3999
|
+
if (!kwargs) {
|
|
4000
|
+
return;
|
|
4001
|
+
}
|
|
4002
|
+
Object.assign(this, kwargs);
|
|
4003
|
+
}
|
|
4004
|
+
toApiJson() {
|
|
4005
|
+
const toReturn = {};
|
|
4006
|
+
if (typeof this.id !== 'undefined') {
|
|
4007
|
+
toReturn['id'] = this.id;
|
|
4008
|
+
}
|
|
4009
|
+
if (typeof this.version !== 'undefined') {
|
|
4010
|
+
toReturn['version'] = this.version;
|
|
4011
|
+
}
|
|
4012
|
+
return toReturn;
|
|
4013
|
+
}
|
|
4014
|
+
}
|
|
4015
|
+
|
|
4001
4016
|
// *********************************
|
|
4002
4017
|
|
|
4003
4018
|
var _a;
|
|
@@ -4364,7 +4379,10 @@ function MeetingTypeFromApi(req) {
|
|
|
4364
4379
|
hostUserIds: req.meetingTypeApi.hostUserIds || [],
|
|
4365
4380
|
availabilityIncrement: req.meetingTypeApi.availabilityIncrement || -1,
|
|
4366
4381
|
bufferDurationAfterMeeting: req.meetingTypeApi.bufferDurationAfterMeeting || -1,
|
|
4367
|
-
noticeTime: req.meetingTypeApi.noticeTime || -1
|
|
4382
|
+
noticeTime: req.meetingTypeApi.noticeTime || -1,
|
|
4383
|
+
location: req.meetingTypeApi.location || '',
|
|
4384
|
+
locationGuidelines: req.meetingTypeApi.locationGuidelines || '',
|
|
4385
|
+
isClientSiteMeeting: req.meetingTypeApi.isClientSiteMeeting || false
|
|
4368
4386
|
};
|
|
4369
4387
|
}
|
|
4370
4388
|
function MeetingTypeToApi(req) {
|
|
@@ -4384,7 +4402,10 @@ function MeetingTypeToApi(req) {
|
|
|
4384
4402
|
hostUserIds: m.hostUserIds || undefined,
|
|
4385
4403
|
availabilityIncrement: m.availabilityIncrement || undefined,
|
|
4386
4404
|
bufferDurationAfterMeeting: m.bufferDurationAfterMeeting || undefined,
|
|
4387
|
-
noticeTime: m.noticeTime || undefined
|
|
4405
|
+
noticeTime: m.noticeTime || undefined,
|
|
4406
|
+
location: m.location || undefined,
|
|
4407
|
+
locationGuidelines: m.locationGuidelines || undefined,
|
|
4408
|
+
isClientSiteMeeting: m.isClientSiteMeeting || undefined,
|
|
4388
4409
|
};
|
|
4389
4410
|
}
|
|
4390
4411
|
|
|
@@ -4442,7 +4463,8 @@ function meetingFromApi(meetingApi) {
|
|
|
4442
4463
|
fileUrl: a.fileUrl || '',
|
|
4443
4464
|
fileType: a.fileType || '',
|
|
4444
4465
|
};
|
|
4445
|
-
})
|
|
4466
|
+
}),
|
|
4467
|
+
location: meetingApi.location || '',
|
|
4446
4468
|
};
|
|
4447
4469
|
}
|
|
4448
4470
|
function answersFromAPI(formAnswers) {
|