@vendasta/meetings 0.83.0 → 0.84.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.
- package/esm2020/lib/_internal/google-meet.api.service.mjs +8 -7
- 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/interfaces/shared.interface.mjs +1 -1
- package/esm2020/lib/_internal/meeting-guest.api.service.mjs +8 -7
- package/esm2020/lib/_internal/meeting-host.api.service.mjs +8 -7
- package/esm2020/lib/_internal/meeting-source-api.api.service.mjs +8 -7
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +9 -3
- package/esm2020/lib/_internal/objects/meeting-host.mjs +2 -2
- package/esm2020/lib/_internal/objects/meeting-type.mjs +7 -1
- package/esm2020/lib/_internal/objects/shared.mjs +3 -2
- package/esm2020/lib/_internal/zoom.api.service.mjs +8 -7
- package/esm2020/lib/shared/meeting-type.mjs +6 -2
- package/fesm2015/vendasta-meetings.mjs +171 -154
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +171 -154
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/google-meet.api.service.d.ts +5 -2
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +3 -2
- package/lib/_internal/interfaces/meeting-host.interface.d.ts +1 -1
- package/lib/_internal/interfaces/meeting-type.interface.d.ts +2 -0
- package/lib/_internal/interfaces/shared.interface.d.ts +2 -1
- package/lib/_internal/meeting-guest.api.service.d.ts +5 -3
- package/lib/_internal/meeting-host.api.service.d.ts +5 -3
- package/lib/_internal/meeting-source-api.api.service.d.ts +5 -2
- package/lib/_internal/objects/meeting-guest.d.ts +3 -2
- package/lib/_internal/objects/meeting-host.d.ts +1 -1
- package/lib/_internal/objects/meeting-type.d.ts +2 -0
- package/lib/_internal/objects/shared.d.ts +2 -1
- package/lib/_internal/zoom.api.service.d.ts +5 -2
- package/lib/shared/meeting-type.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Injectable
|
|
2
|
+
import { Injectable } from '@angular/core';
|
|
3
3
|
import { throwError, of } from 'rxjs';
|
|
4
4
|
import { map, mapTo } from 'rxjs/operators';
|
|
5
|
-
import
|
|
5
|
+
import * as i1 from '@angular/common/http';
|
|
6
|
+
import { HttpHeaders } from '@angular/common/http';
|
|
6
7
|
|
|
7
8
|
// *********************************
|
|
8
9
|
// Code generated by sdkgen
|
|
@@ -1173,12 +1174,125 @@ function enumStringToValue$7(enumRef, value) {
|
|
|
1173
1174
|
}
|
|
1174
1175
|
return enumRef[value];
|
|
1175
1176
|
}
|
|
1177
|
+
class TimeOfDay {
|
|
1178
|
+
static fromProto(proto) {
|
|
1179
|
+
let m = new TimeOfDay();
|
|
1180
|
+
m = Object.assign(m, proto);
|
|
1181
|
+
return m;
|
|
1182
|
+
}
|
|
1183
|
+
constructor(kwargs) {
|
|
1184
|
+
if (!kwargs) {
|
|
1185
|
+
return;
|
|
1186
|
+
}
|
|
1187
|
+
Object.assign(this, kwargs);
|
|
1188
|
+
}
|
|
1189
|
+
toApiJson() {
|
|
1190
|
+
const toReturn = {};
|
|
1191
|
+
if (typeof this.hours !== 'undefined') {
|
|
1192
|
+
toReturn['hours'] = this.hours;
|
|
1193
|
+
}
|
|
1194
|
+
if (typeof this.minutes !== 'undefined') {
|
|
1195
|
+
toReturn['minutes'] = this.minutes;
|
|
1196
|
+
}
|
|
1197
|
+
if (typeof this.seconds !== 'undefined') {
|
|
1198
|
+
toReturn['seconds'] = this.seconds;
|
|
1199
|
+
}
|
|
1200
|
+
if (typeof this.nanos !== 'undefined') {
|
|
1201
|
+
toReturn['nanos'] = this.nanos;
|
|
1202
|
+
}
|
|
1203
|
+
return toReturn;
|
|
1204
|
+
}
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
function enumStringToValue$6(enumRef, value) {
|
|
1208
|
+
if (typeof value === 'number') {
|
|
1209
|
+
return value;
|
|
1210
|
+
}
|
|
1211
|
+
return enumRef[value];
|
|
1212
|
+
}
|
|
1213
|
+
class DateTime {
|
|
1214
|
+
static fromProto(proto) {
|
|
1215
|
+
let m = new DateTime();
|
|
1216
|
+
m = Object.assign(m, proto);
|
|
1217
|
+
if (proto.timeZone) {
|
|
1218
|
+
m.timeZone = TimeZone.fromProto(proto.timeZone);
|
|
1219
|
+
}
|
|
1220
|
+
return m;
|
|
1221
|
+
}
|
|
1222
|
+
constructor(kwargs) {
|
|
1223
|
+
if (!kwargs) {
|
|
1224
|
+
return;
|
|
1225
|
+
}
|
|
1226
|
+
Object.assign(this, kwargs);
|
|
1227
|
+
}
|
|
1228
|
+
toApiJson() {
|
|
1229
|
+
const toReturn = {};
|
|
1230
|
+
if (typeof this.year !== 'undefined') {
|
|
1231
|
+
toReturn['year'] = this.year;
|
|
1232
|
+
}
|
|
1233
|
+
if (typeof this.month !== 'undefined') {
|
|
1234
|
+
toReturn['month'] = this.month;
|
|
1235
|
+
}
|
|
1236
|
+
if (typeof this.day !== 'undefined') {
|
|
1237
|
+
toReturn['day'] = this.day;
|
|
1238
|
+
}
|
|
1239
|
+
if (typeof this.hours !== 'undefined') {
|
|
1240
|
+
toReturn['hours'] = this.hours;
|
|
1241
|
+
}
|
|
1242
|
+
if (typeof this.minutes !== 'undefined') {
|
|
1243
|
+
toReturn['minutes'] = this.minutes;
|
|
1244
|
+
}
|
|
1245
|
+
if (typeof this.seconds !== 'undefined') {
|
|
1246
|
+
toReturn['seconds'] = this.seconds;
|
|
1247
|
+
}
|
|
1248
|
+
if (typeof this.nanos !== 'undefined') {
|
|
1249
|
+
toReturn['nanos'] = this.nanos;
|
|
1250
|
+
}
|
|
1251
|
+
if (typeof this.utcOffset !== 'undefined') {
|
|
1252
|
+
toReturn['utcOffset'] = this.utcOffset;
|
|
1253
|
+
}
|
|
1254
|
+
if (typeof this.timeZone !== 'undefined' && this.timeZone !== null) {
|
|
1255
|
+
toReturn['timeZone'] = 'toApiJson' in this.timeZone ? this.timeZone.toApiJson() : this.timeZone;
|
|
1256
|
+
}
|
|
1257
|
+
return toReturn;
|
|
1258
|
+
}
|
|
1259
|
+
}
|
|
1260
|
+
class TimeZone {
|
|
1261
|
+
static fromProto(proto) {
|
|
1262
|
+
let m = new TimeZone();
|
|
1263
|
+
m = Object.assign(m, proto);
|
|
1264
|
+
return m;
|
|
1265
|
+
}
|
|
1266
|
+
constructor(kwargs) {
|
|
1267
|
+
if (!kwargs) {
|
|
1268
|
+
return;
|
|
1269
|
+
}
|
|
1270
|
+
Object.assign(this, kwargs);
|
|
1271
|
+
}
|
|
1272
|
+
toApiJson() {
|
|
1273
|
+
const toReturn = {};
|
|
1274
|
+
if (typeof this.id !== 'undefined') {
|
|
1275
|
+
toReturn['id'] = this.id;
|
|
1276
|
+
}
|
|
1277
|
+
if (typeof this.version !== 'undefined') {
|
|
1278
|
+
toReturn['version'] = this.version;
|
|
1279
|
+
}
|
|
1280
|
+
return toReturn;
|
|
1281
|
+
}
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1284
|
+
function enumStringToValue$5(enumRef, value) {
|
|
1285
|
+
if (typeof value === 'number') {
|
|
1286
|
+
return value;
|
|
1287
|
+
}
|
|
1288
|
+
return enumRef[value];
|
|
1289
|
+
}
|
|
1176
1290
|
class Answer {
|
|
1177
1291
|
static fromProto(proto) {
|
|
1178
1292
|
let m = new Answer();
|
|
1179
1293
|
m = Object.assign(m, proto);
|
|
1180
1294
|
if (proto.type) {
|
|
1181
|
-
m.type = enumStringToValue$
|
|
1295
|
+
m.type = enumStringToValue$5(FormFieldType, proto.type);
|
|
1182
1296
|
}
|
|
1183
1297
|
return m;
|
|
1184
1298
|
}
|
|
@@ -1320,7 +1434,7 @@ class Calendar {
|
|
|
1320
1434
|
m.applicationContext = Object.keys(proto.applicationContext).reduce((obj, k) => { obj[k] = proto.applicationContext[k]; return obj; }, {});
|
|
1321
1435
|
}
|
|
1322
1436
|
if (proto.calendarType) {
|
|
1323
|
-
m.calendarType = enumStringToValue$
|
|
1437
|
+
m.calendarType = enumStringToValue$5(CalendarType, proto.calendarType);
|
|
1324
1438
|
}
|
|
1325
1439
|
return m;
|
|
1326
1440
|
}
|
|
@@ -1518,7 +1632,7 @@ class Preferences {
|
|
|
1518
1632
|
m.timezone = TimeZone.fromProto(proto.timezone);
|
|
1519
1633
|
}
|
|
1520
1634
|
if (proto.meetingIntegration) {
|
|
1521
|
-
m.meetingIntegration = enumStringToValue$
|
|
1635
|
+
m.meetingIntegration = enumStringToValue$5(MeetingSource, proto.meetingIntegration);
|
|
1522
1636
|
}
|
|
1523
1637
|
if (proto.availabilityIncrement) {
|
|
1524
1638
|
m.availabilityIncrement = parseInt(proto.availabilityIncrement, 10);
|
|
@@ -1590,7 +1704,7 @@ class TimeRange {
|
|
|
1590
1704
|
}
|
|
1591
1705
|
}
|
|
1592
1706
|
|
|
1593
|
-
function enumStringToValue$
|
|
1707
|
+
function enumStringToValue$4(enumRef, value) {
|
|
1594
1708
|
if (typeof value === 'number') {
|
|
1595
1709
|
return value;
|
|
1596
1710
|
}
|
|
@@ -1601,7 +1715,7 @@ class Field {
|
|
|
1601
1715
|
let m = new Field();
|
|
1602
1716
|
m = Object.assign(m, proto);
|
|
1603
1717
|
if (proto.type) {
|
|
1604
|
-
m.type = enumStringToValue$
|
|
1718
|
+
m.type = enumStringToValue$4(FormFieldType, proto.type);
|
|
1605
1719
|
}
|
|
1606
1720
|
return m;
|
|
1607
1721
|
}
|
|
@@ -1734,11 +1848,17 @@ class MeetingType {
|
|
|
1734
1848
|
if (typeof this.isClientChoice !== 'undefined') {
|
|
1735
1849
|
toReturn['isClientChoice'] = this.isClientChoice;
|
|
1736
1850
|
}
|
|
1851
|
+
if (typeof this.emailSubject !== 'undefined') {
|
|
1852
|
+
toReturn['emailSubject'] = this.emailSubject;
|
|
1853
|
+
}
|
|
1854
|
+
if (typeof this.emailDescription !== 'undefined') {
|
|
1855
|
+
toReturn['emailDescription'] = this.emailDescription;
|
|
1856
|
+
}
|
|
1737
1857
|
return toReturn;
|
|
1738
1858
|
}
|
|
1739
1859
|
}
|
|
1740
1860
|
|
|
1741
|
-
function enumStringToValue$
|
|
1861
|
+
function enumStringToValue$3(enumRef, value) {
|
|
1742
1862
|
if (typeof value === 'number') {
|
|
1743
1863
|
return value;
|
|
1744
1864
|
}
|
|
@@ -1774,7 +1894,7 @@ class DateRange {
|
|
|
1774
1894
|
}
|
|
1775
1895
|
}
|
|
1776
1896
|
|
|
1777
|
-
function enumStringToValue$
|
|
1897
|
+
function enumStringToValue$2(enumRef, value) {
|
|
1778
1898
|
if (typeof value === 'number') {
|
|
1779
1899
|
return value;
|
|
1780
1900
|
}
|
|
@@ -1984,6 +2104,9 @@ class GetMeetingTypeResponse {
|
|
|
1984
2104
|
if (proto.meetingType) {
|
|
1985
2105
|
m.meetingType = MeetingType.fromProto(proto.meetingType);
|
|
1986
2106
|
}
|
|
2107
|
+
if (proto.hostUsers) {
|
|
2108
|
+
m.hostUsers = proto.hostUsers.map(HostUser.fromProto);
|
|
2109
|
+
}
|
|
1987
2110
|
return m;
|
|
1988
2111
|
}
|
|
1989
2112
|
constructor(kwargs) {
|
|
@@ -1997,6 +2120,9 @@ class GetMeetingTypeResponse {
|
|
|
1997
2120
|
if (typeof this.meetingType !== 'undefined' && this.meetingType !== null) {
|
|
1998
2121
|
toReturn['meetingType'] = 'toApiJson' in this.meetingType ? this.meetingType.toApiJson() : this.meetingType;
|
|
1999
2122
|
}
|
|
2123
|
+
if (typeof this.hostUsers !== 'undefined' && this.hostUsers !== null) {
|
|
2124
|
+
toReturn['hostUsers'] = 'toApiJson' in this.hostUsers ? this.hostUsers.toApiJson() : this.hostUsers;
|
|
2125
|
+
}
|
|
2000
2126
|
return toReturn;
|
|
2001
2127
|
}
|
|
2002
2128
|
}
|
|
@@ -2290,7 +2416,7 @@ class BookMeetingRequestMetadataEntry {
|
|
|
2290
2416
|
}
|
|
2291
2417
|
}
|
|
2292
2418
|
|
|
2293
|
-
function enumStringToValue$
|
|
2419
|
+
function enumStringToValue$1(enumRef, value) {
|
|
2294
2420
|
if (typeof value === 'number') {
|
|
2295
2421
|
return value;
|
|
2296
2422
|
}
|
|
@@ -2317,7 +2443,7 @@ class FieldMask {
|
|
|
2317
2443
|
}
|
|
2318
2444
|
}
|
|
2319
2445
|
|
|
2320
|
-
function enumStringToValue
|
|
2446
|
+
function enumStringToValue(enumRef, value) {
|
|
2321
2447
|
if (typeof value === 'number') {
|
|
2322
2448
|
return value;
|
|
2323
2449
|
}
|
|
@@ -2397,7 +2523,7 @@ class AvailabilityRule {
|
|
|
2397
2523
|
let m = new AvailabilityRule();
|
|
2398
2524
|
m = Object.assign(m, proto);
|
|
2399
2525
|
if (proto.day) {
|
|
2400
|
-
m.day = enumStringToValue
|
|
2526
|
+
m.day = enumStringToValue(DayOfWeek, proto.day);
|
|
2401
2527
|
}
|
|
2402
2528
|
if (proto.timeSlot) {
|
|
2403
2529
|
m.timeSlot = TimeRange.fromProto(proto.timeSlot);
|
|
@@ -3075,7 +3201,7 @@ class HostBookMeetingRequest {
|
|
|
3075
3201
|
let m = new HostBookMeetingRequest();
|
|
3076
3202
|
m = Object.assign(m, proto);
|
|
3077
3203
|
if (proto.meetingSource) {
|
|
3078
|
-
m.meetingSource = enumStringToValue
|
|
3204
|
+
m.meetingSource = enumStringToValue(MeetingSource, proto.meetingSource);
|
|
3079
3205
|
}
|
|
3080
3206
|
if (proto.timeSlot) {
|
|
3081
3207
|
m.timeSlot = DateRange.fromProto(proto.timeSlot);
|
|
@@ -3698,7 +3824,7 @@ class SetGeneralAvailabilityRequest {
|
|
|
3698
3824
|
let m = new SetGeneralAvailabilityRequest();
|
|
3699
3825
|
m = Object.assign(m, proto);
|
|
3700
3826
|
if (proto.days) {
|
|
3701
|
-
m.days = proto.days.map((v) => enumStringToValue
|
|
3827
|
+
m.days = proto.days.map((v) => enumStringToValue(DayOfWeek, v));
|
|
3702
3828
|
}
|
|
3703
3829
|
if (proto.timeSlot) {
|
|
3704
3830
|
m.timeSlot = TimeRange.fromProto(proto.timeSlot);
|
|
@@ -3887,7 +4013,7 @@ class WeekdayAvailability {
|
|
|
3887
4013
|
let m = new WeekdayAvailability();
|
|
3888
4014
|
m = Object.assign(m, proto);
|
|
3889
4015
|
if (proto.day) {
|
|
3890
|
-
m.day = enumStringToValue
|
|
4016
|
+
m.day = enumStringToValue(DayOfWeek, proto.day);
|
|
3891
4017
|
}
|
|
3892
4018
|
if (proto.timeSlots) {
|
|
3893
4019
|
m.timeSlots = proto.timeSlots.map(TimeRange.fromProto);
|
|
@@ -3912,119 +4038,6 @@ class WeekdayAvailability {
|
|
|
3912
4038
|
}
|
|
3913
4039
|
}
|
|
3914
4040
|
|
|
3915
|
-
function enumStringToValue$1(enumRef, value) {
|
|
3916
|
-
if (typeof value === 'number') {
|
|
3917
|
-
return value;
|
|
3918
|
-
}
|
|
3919
|
-
return enumRef[value];
|
|
3920
|
-
}
|
|
3921
|
-
class TimeOfDay {
|
|
3922
|
-
static fromProto(proto) {
|
|
3923
|
-
let m = new TimeOfDay();
|
|
3924
|
-
m = Object.assign(m, proto);
|
|
3925
|
-
return m;
|
|
3926
|
-
}
|
|
3927
|
-
constructor(kwargs) {
|
|
3928
|
-
if (!kwargs) {
|
|
3929
|
-
return;
|
|
3930
|
-
}
|
|
3931
|
-
Object.assign(this, kwargs);
|
|
3932
|
-
}
|
|
3933
|
-
toApiJson() {
|
|
3934
|
-
const toReturn = {};
|
|
3935
|
-
if (typeof this.hours !== 'undefined') {
|
|
3936
|
-
toReturn['hours'] = this.hours;
|
|
3937
|
-
}
|
|
3938
|
-
if (typeof this.minutes !== 'undefined') {
|
|
3939
|
-
toReturn['minutes'] = this.minutes;
|
|
3940
|
-
}
|
|
3941
|
-
if (typeof this.seconds !== 'undefined') {
|
|
3942
|
-
toReturn['seconds'] = this.seconds;
|
|
3943
|
-
}
|
|
3944
|
-
if (typeof this.nanos !== 'undefined') {
|
|
3945
|
-
toReturn['nanos'] = this.nanos;
|
|
3946
|
-
}
|
|
3947
|
-
return toReturn;
|
|
3948
|
-
}
|
|
3949
|
-
}
|
|
3950
|
-
|
|
3951
|
-
function enumStringToValue(enumRef, value) {
|
|
3952
|
-
if (typeof value === 'number') {
|
|
3953
|
-
return value;
|
|
3954
|
-
}
|
|
3955
|
-
return enumRef[value];
|
|
3956
|
-
}
|
|
3957
|
-
class DateTime {
|
|
3958
|
-
static fromProto(proto) {
|
|
3959
|
-
let m = new DateTime();
|
|
3960
|
-
m = Object.assign(m, proto);
|
|
3961
|
-
if (proto.timeZone) {
|
|
3962
|
-
m.timeZone = TimeZone.fromProto(proto.timeZone);
|
|
3963
|
-
}
|
|
3964
|
-
return m;
|
|
3965
|
-
}
|
|
3966
|
-
constructor(kwargs) {
|
|
3967
|
-
if (!kwargs) {
|
|
3968
|
-
return;
|
|
3969
|
-
}
|
|
3970
|
-
Object.assign(this, kwargs);
|
|
3971
|
-
}
|
|
3972
|
-
toApiJson() {
|
|
3973
|
-
const toReturn = {};
|
|
3974
|
-
if (typeof this.year !== 'undefined') {
|
|
3975
|
-
toReturn['year'] = this.year;
|
|
3976
|
-
}
|
|
3977
|
-
if (typeof this.month !== 'undefined') {
|
|
3978
|
-
toReturn['month'] = this.month;
|
|
3979
|
-
}
|
|
3980
|
-
if (typeof this.day !== 'undefined') {
|
|
3981
|
-
toReturn['day'] = this.day;
|
|
3982
|
-
}
|
|
3983
|
-
if (typeof this.hours !== 'undefined') {
|
|
3984
|
-
toReturn['hours'] = this.hours;
|
|
3985
|
-
}
|
|
3986
|
-
if (typeof this.minutes !== 'undefined') {
|
|
3987
|
-
toReturn['minutes'] = this.minutes;
|
|
3988
|
-
}
|
|
3989
|
-
if (typeof this.seconds !== 'undefined') {
|
|
3990
|
-
toReturn['seconds'] = this.seconds;
|
|
3991
|
-
}
|
|
3992
|
-
if (typeof this.nanos !== 'undefined') {
|
|
3993
|
-
toReturn['nanos'] = this.nanos;
|
|
3994
|
-
}
|
|
3995
|
-
if (typeof this.utcOffset !== 'undefined') {
|
|
3996
|
-
toReturn['utcOffset'] = this.utcOffset;
|
|
3997
|
-
}
|
|
3998
|
-
if (typeof this.timeZone !== 'undefined' && this.timeZone !== null) {
|
|
3999
|
-
toReturn['timeZone'] = 'toApiJson' in this.timeZone ? this.timeZone.toApiJson() : this.timeZone;
|
|
4000
|
-
}
|
|
4001
|
-
return toReturn;
|
|
4002
|
-
}
|
|
4003
|
-
}
|
|
4004
|
-
class TimeZone {
|
|
4005
|
-
static fromProto(proto) {
|
|
4006
|
-
let m = new TimeZone();
|
|
4007
|
-
m = Object.assign(m, proto);
|
|
4008
|
-
return m;
|
|
4009
|
-
}
|
|
4010
|
-
constructor(kwargs) {
|
|
4011
|
-
if (!kwargs) {
|
|
4012
|
-
return;
|
|
4013
|
-
}
|
|
4014
|
-
Object.assign(this, kwargs);
|
|
4015
|
-
}
|
|
4016
|
-
toApiJson() {
|
|
4017
|
-
const toReturn = {};
|
|
4018
|
-
if (typeof this.id !== 'undefined') {
|
|
4019
|
-
toReturn['id'] = this.id;
|
|
4020
|
-
}
|
|
4021
|
-
if (typeof this.version !== 'undefined') {
|
|
4022
|
-
toReturn['version'] = this.version;
|
|
4023
|
-
}
|
|
4024
|
-
return toReturn;
|
|
4025
|
-
}
|
|
4026
|
-
}
|
|
4027
|
-
|
|
4028
4041
|
// *********************************
|
|
4029
4042
|
|
|
4030
4043
|
var _a;
|
|
@@ -4053,9 +4066,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
|
|
|
4053
4066
|
|
|
4054
4067
|
// *********************************
|
|
4055
4068
|
class MeetingSourceAPIApiService {
|
|
4056
|
-
constructor() {
|
|
4057
|
-
this.
|
|
4058
|
-
this.
|
|
4069
|
+
constructor(http, hostService) {
|
|
4070
|
+
this.http = http;
|
|
4071
|
+
this.hostService = hostService;
|
|
4059
4072
|
this._host = this.hostService.hostWithScheme;
|
|
4060
4073
|
}
|
|
4061
4074
|
apiOptions() {
|
|
@@ -4072,18 +4085,18 @@ class MeetingSourceAPIApiService {
|
|
|
4072
4085
|
.pipe(map(resp => MeetingSourceListResponse.fromProto(resp)));
|
|
4073
4086
|
}
|
|
4074
4087
|
}
|
|
4075
|
-
MeetingSourceAPIApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4088
|
+
MeetingSourceAPIApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, deps: [{ token: i1.HttpClient }, { token: HostService$1 }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4076
4089
|
MeetingSourceAPIApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, providedIn: 'root' });
|
|
4077
4090
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, decorators: [{
|
|
4078
4091
|
type: Injectable,
|
|
4079
4092
|
args: [{ providedIn: 'root' }]
|
|
4080
|
-
}] });
|
|
4093
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
4081
4094
|
|
|
4082
4095
|
// *********************************
|
|
4083
4096
|
class ZoomApiService {
|
|
4084
|
-
constructor() {
|
|
4085
|
-
this.
|
|
4086
|
-
this.
|
|
4097
|
+
constructor(http, hostService) {
|
|
4098
|
+
this.http = http;
|
|
4099
|
+
this.hostService = hostService;
|
|
4087
4100
|
this._host = this.hostService.hostWithScheme;
|
|
4088
4101
|
}
|
|
4089
4102
|
apiOptions() {
|
|
@@ -4100,18 +4113,18 @@ class ZoomApiService {
|
|
|
4100
4113
|
.pipe(map(resp => CreateZoomMeetingResponse.fromProto(resp)));
|
|
4101
4114
|
}
|
|
4102
4115
|
}
|
|
4103
|
-
ZoomApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4116
|
+
ZoomApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, deps: [{ token: i1.HttpClient }, { token: HostService$1 }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4104
4117
|
ZoomApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, providedIn: 'root' });
|
|
4105
4118
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, decorators: [{
|
|
4106
4119
|
type: Injectable,
|
|
4107
4120
|
args: [{ providedIn: 'root' }]
|
|
4108
|
-
}] });
|
|
4121
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
4109
4122
|
|
|
4110
4123
|
// *********************************
|
|
4111
4124
|
class GoogleMeetApiService {
|
|
4112
|
-
constructor() {
|
|
4113
|
-
this.
|
|
4114
|
-
this.
|
|
4125
|
+
constructor(http, hostService) {
|
|
4126
|
+
this.http = http;
|
|
4127
|
+
this.hostService = hostService;
|
|
4115
4128
|
this._host = this.hostService.hostWithScheme;
|
|
4116
4129
|
}
|
|
4117
4130
|
apiOptions() {
|
|
@@ -4128,12 +4141,12 @@ class GoogleMeetApiService {
|
|
|
4128
4141
|
.pipe(map(resp => GoogleMeetCreateMeetingResponse.fromProto(resp)));
|
|
4129
4142
|
}
|
|
4130
4143
|
}
|
|
4131
|
-
GoogleMeetApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4144
|
+
GoogleMeetApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, deps: [{ token: i1.HttpClient }, { token: HostService$1 }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4132
4145
|
GoogleMeetApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, providedIn: 'root' });
|
|
4133
4146
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, decorators: [{
|
|
4134
4147
|
type: Injectable,
|
|
4135
4148
|
args: [{ providedIn: 'root' }]
|
|
4136
|
-
}] });
|
|
4149
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
4137
4150
|
|
|
4138
4151
|
function generateMeetingPassword() {
|
|
4139
4152
|
const zoomMaxLength = 10;
|
|
@@ -4395,7 +4408,9 @@ function MeetingTypeFromApi(req) {
|
|
|
4395
4408
|
location: req.meetingTypeApi.location || '',
|
|
4396
4409
|
locationGuidelines: req.meetingTypeApi.locationGuidelines || '',
|
|
4397
4410
|
isClientSiteMeeting: req.meetingTypeApi.isClientSiteMeeting || false,
|
|
4398
|
-
isClientChoice: req.meetingTypeApi.isClientChoice || false
|
|
4411
|
+
isClientChoice: req.meetingTypeApi.isClientChoice || false,
|
|
4412
|
+
emailSubject: req.meetingTypeApi.emailSubject || '',
|
|
4413
|
+
emailDescription: req.meetingTypeApi.emailDescription || '',
|
|
4399
4414
|
};
|
|
4400
4415
|
}
|
|
4401
4416
|
function MeetingTypeToApi(req) {
|
|
@@ -4419,6 +4434,8 @@ function MeetingTypeToApi(req) {
|
|
|
4419
4434
|
location: m.location || undefined,
|
|
4420
4435
|
locationGuidelines: m.locationGuidelines || undefined,
|
|
4421
4436
|
isClientSiteMeeting: m.isClientSiteMeeting || undefined,
|
|
4437
|
+
emailSubject: m.emailSubject || undefined,
|
|
4438
|
+
emailDescription: m.emailDescription || undefined,
|
|
4422
4439
|
isClientChoice: m.isClientChoice || undefined,
|
|
4423
4440
|
};
|
|
4424
4441
|
}
|
|
@@ -4522,9 +4539,9 @@ class PagedResponse {
|
|
|
4522
4539
|
|
|
4523
4540
|
// *********************************
|
|
4524
4541
|
class MeetingGuestApiService {
|
|
4525
|
-
constructor() {
|
|
4526
|
-
this.
|
|
4527
|
-
this.
|
|
4542
|
+
constructor(http, hostService) {
|
|
4543
|
+
this.http = http;
|
|
4544
|
+
this.hostService = hostService;
|
|
4528
4545
|
this._host = this.hostService.hostWithScheme;
|
|
4529
4546
|
}
|
|
4530
4547
|
apiOptions() {
|
|
@@ -4584,18 +4601,18 @@ class MeetingGuestApiService {
|
|
|
4584
4601
|
.pipe(map(resp => GuestIsHostConfiguredResponse.fromProto(resp)));
|
|
4585
4602
|
}
|
|
4586
4603
|
}
|
|
4587
|
-
MeetingGuestApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4604
|
+
MeetingGuestApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, deps: [{ token: i1.HttpClient }, { token: HostService$1 }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4588
4605
|
MeetingGuestApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, providedIn: 'root' });
|
|
4589
4606
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, decorators: [{
|
|
4590
4607
|
type: Injectable,
|
|
4591
4608
|
args: [{ providedIn: 'root' }]
|
|
4592
|
-
}] });
|
|
4609
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
4593
4610
|
|
|
4594
4611
|
// *********************************
|
|
4595
4612
|
class MeetingHostApiService {
|
|
4596
|
-
constructor() {
|
|
4597
|
-
this.
|
|
4598
|
-
this.
|
|
4613
|
+
constructor(http, hostService) {
|
|
4614
|
+
this.http = http;
|
|
4615
|
+
this.hostService = hostService;
|
|
4599
4616
|
this._host = this.hostService.hostWithScheme;
|
|
4600
4617
|
}
|
|
4601
4618
|
apiOptions() {
|
|
@@ -4750,12 +4767,12 @@ class MeetingHostApiService {
|
|
|
4750
4767
|
.pipe(map(resp => IsCalendarConfiguredResponse.fromProto(resp)));
|
|
4751
4768
|
}
|
|
4752
4769
|
}
|
|
4753
|
-
MeetingHostApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4770
|
+
MeetingHostApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, deps: [{ token: i1.HttpClient }, { token: HostService$1 }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4754
4771
|
MeetingHostApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, providedIn: 'root' });
|
|
4755
4772
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, decorators: [{
|
|
4756
4773
|
type: Injectable,
|
|
4757
4774
|
args: [{ providedIn: 'root' }]
|
|
4758
|
-
}] });
|
|
4775
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
4759
4776
|
|
|
4760
4777
|
// *********************************
|
|
4761
4778
|
|