@vendasta/meetings 1.7.6 → 1.7.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.
- package/esm2020/lib/_internal/interfaces/groups-and-services.interface.mjs +1 -7
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/objects/google-meet.mjs +1 -1
- package/esm2020/lib/_internal/objects/groups-and-services.mjs +15 -1
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/esm2020/lib/_internal/objects/meeting-source.mjs +1 -1
- package/fesm2015/vendasta-meetings.mjs +12 -0
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +12 -0
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/interfaces/groups-and-services.interface.d.ts +4 -0
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/objects/google-meet.d.ts +1 -1
- package/lib/_internal/objects/groups-and-services.d.ts +5 -1
- package/lib/_internal/objects/index.d.ts +1 -1
- package/lib/_internal/objects/meeting-source.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2423,6 +2423,12 @@ class EventGroupAndServiceAssociations {
|
|
|
2423
2423
|
static fromProto(proto) {
|
|
2424
2424
|
let m = new EventGroupAndServiceAssociations();
|
|
2425
2425
|
m = Object.assign(m, proto);
|
|
2426
|
+
if (proto.hostUsers) {
|
|
2427
|
+
m.hostUsers = proto.hostUsers.map(HostUser.fromProto);
|
|
2428
|
+
}
|
|
2429
|
+
if (proto.teamMeetingType) {
|
|
2430
|
+
m.teamMeetingType = enumStringToValue$8(TeamEventMeetingType, proto.teamMeetingType);
|
|
2431
|
+
}
|
|
2426
2432
|
return m;
|
|
2427
2433
|
}
|
|
2428
2434
|
constructor(kwargs) {
|
|
@@ -2466,6 +2472,12 @@ class EventGroupAndServiceAssociations {
|
|
|
2466
2472
|
if (typeof this.bookingUrl !== 'undefined') {
|
|
2467
2473
|
toReturn['bookingUrl'] = this.bookingUrl;
|
|
2468
2474
|
}
|
|
2475
|
+
if (typeof this.hostUsers !== 'undefined' && this.hostUsers !== null) {
|
|
2476
|
+
toReturn['hostUsers'] = 'toApiJson' in this.hostUsers ? this.hostUsers.toApiJson() : this.hostUsers;
|
|
2477
|
+
}
|
|
2478
|
+
if (typeof this.teamMeetingType !== 'undefined') {
|
|
2479
|
+
toReturn['teamMeetingType'] = this.teamMeetingType;
|
|
2480
|
+
}
|
|
2469
2481
|
return toReturn;
|
|
2470
2482
|
}
|
|
2471
2483
|
}
|