@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
|
const environment = (window ? window['environment'] : 'prod') ?? 'prod';
|
|
@@ -4052,9 +4065,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
|
|
|
4052
4065
|
|
|
4053
4066
|
// *********************************
|
|
4054
4067
|
class MeetingSourceAPIApiService {
|
|
4055
|
-
constructor() {
|
|
4056
|
-
this.
|
|
4057
|
-
this.
|
|
4068
|
+
constructor(http, hostService) {
|
|
4069
|
+
this.http = http;
|
|
4070
|
+
this.hostService = hostService;
|
|
4058
4071
|
this._host = this.hostService.hostWithScheme;
|
|
4059
4072
|
}
|
|
4060
4073
|
apiOptions() {
|
|
@@ -4071,18 +4084,18 @@ class MeetingSourceAPIApiService {
|
|
|
4071
4084
|
.pipe(map(resp => MeetingSourceListResponse.fromProto(resp)));
|
|
4072
4085
|
}
|
|
4073
4086
|
}
|
|
4074
|
-
MeetingSourceAPIApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4087
|
+
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 });
|
|
4075
4088
|
MeetingSourceAPIApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, providedIn: 'root' });
|
|
4076
4089
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, decorators: [{
|
|
4077
4090
|
type: Injectable,
|
|
4078
4091
|
args: [{ providedIn: 'root' }]
|
|
4079
|
-
}] });
|
|
4092
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
4080
4093
|
|
|
4081
4094
|
// *********************************
|
|
4082
4095
|
class ZoomApiService {
|
|
4083
|
-
constructor() {
|
|
4084
|
-
this.
|
|
4085
|
-
this.
|
|
4096
|
+
constructor(http, hostService) {
|
|
4097
|
+
this.http = http;
|
|
4098
|
+
this.hostService = hostService;
|
|
4086
4099
|
this._host = this.hostService.hostWithScheme;
|
|
4087
4100
|
}
|
|
4088
4101
|
apiOptions() {
|
|
@@ -4099,18 +4112,18 @@ class ZoomApiService {
|
|
|
4099
4112
|
.pipe(map(resp => CreateZoomMeetingResponse.fromProto(resp)));
|
|
4100
4113
|
}
|
|
4101
4114
|
}
|
|
4102
|
-
ZoomApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4115
|
+
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 });
|
|
4103
4116
|
ZoomApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, providedIn: 'root' });
|
|
4104
4117
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, decorators: [{
|
|
4105
4118
|
type: Injectable,
|
|
4106
4119
|
args: [{ providedIn: 'root' }]
|
|
4107
|
-
}] });
|
|
4120
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
4108
4121
|
|
|
4109
4122
|
// *********************************
|
|
4110
4123
|
class GoogleMeetApiService {
|
|
4111
|
-
constructor() {
|
|
4112
|
-
this.
|
|
4113
|
-
this.
|
|
4124
|
+
constructor(http, hostService) {
|
|
4125
|
+
this.http = http;
|
|
4126
|
+
this.hostService = hostService;
|
|
4114
4127
|
this._host = this.hostService.hostWithScheme;
|
|
4115
4128
|
}
|
|
4116
4129
|
apiOptions() {
|
|
@@ -4127,12 +4140,12 @@ class GoogleMeetApiService {
|
|
|
4127
4140
|
.pipe(map(resp => GoogleMeetCreateMeetingResponse.fromProto(resp)));
|
|
4128
4141
|
}
|
|
4129
4142
|
}
|
|
4130
|
-
GoogleMeetApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4143
|
+
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 });
|
|
4131
4144
|
GoogleMeetApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, providedIn: 'root' });
|
|
4132
4145
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, decorators: [{
|
|
4133
4146
|
type: Injectable,
|
|
4134
4147
|
args: [{ providedIn: 'root' }]
|
|
4135
|
-
}] });
|
|
4148
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
4136
4149
|
|
|
4137
4150
|
function generateMeetingPassword() {
|
|
4138
4151
|
const zoomMaxLength = 10;
|
|
@@ -4290,9 +4303,9 @@ function createMeetInstantMeetingRequest(meetingTitle, startDateTime, attendees)
|
|
|
4290
4303
|
|
|
4291
4304
|
// *********************************
|
|
4292
4305
|
class MeetingGuestApiService {
|
|
4293
|
-
constructor() {
|
|
4294
|
-
this.
|
|
4295
|
-
this.
|
|
4306
|
+
constructor(http, hostService) {
|
|
4307
|
+
this.http = http;
|
|
4308
|
+
this.hostService = hostService;
|
|
4296
4309
|
this._host = this.hostService.hostWithScheme;
|
|
4297
4310
|
}
|
|
4298
4311
|
apiOptions() {
|
|
@@ -4352,18 +4365,18 @@ class MeetingGuestApiService {
|
|
|
4352
4365
|
.pipe(map(resp => GuestIsHostConfiguredResponse.fromProto(resp)));
|
|
4353
4366
|
}
|
|
4354
4367
|
}
|
|
4355
|
-
MeetingGuestApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4368
|
+
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 });
|
|
4356
4369
|
MeetingGuestApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, providedIn: 'root' });
|
|
4357
4370
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, decorators: [{
|
|
4358
4371
|
type: Injectable,
|
|
4359
4372
|
args: [{ providedIn: 'root' }]
|
|
4360
|
-
}] });
|
|
4373
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
4361
4374
|
|
|
4362
4375
|
// *********************************
|
|
4363
4376
|
class MeetingHostApiService {
|
|
4364
|
-
constructor() {
|
|
4365
|
-
this.
|
|
4366
|
-
this.
|
|
4377
|
+
constructor(http, hostService) {
|
|
4378
|
+
this.http = http;
|
|
4379
|
+
this.hostService = hostService;
|
|
4367
4380
|
this._host = this.hostService.hostWithScheme;
|
|
4368
4381
|
}
|
|
4369
4382
|
apiOptions() {
|
|
@@ -4518,12 +4531,12 @@ class MeetingHostApiService {
|
|
|
4518
4531
|
.pipe(map(resp => IsCalendarConfiguredResponse.fromProto(resp)));
|
|
4519
4532
|
}
|
|
4520
4533
|
}
|
|
4521
|
-
MeetingHostApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4534
|
+
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 });
|
|
4522
4535
|
MeetingHostApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, providedIn: 'root' });
|
|
4523
4536
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, decorators: [{
|
|
4524
4537
|
type: Injectable,
|
|
4525
4538
|
args: [{ providedIn: 'root' }]
|
|
4526
|
-
}] });
|
|
4539
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
4527
4540
|
|
|
4528
4541
|
// *********************************
|
|
4529
4542
|
|
|
@@ -4641,7 +4654,9 @@ function MeetingTypeFromApi(req) {
|
|
|
4641
4654
|
location: req.meetingTypeApi.location || '',
|
|
4642
4655
|
locationGuidelines: req.meetingTypeApi.locationGuidelines || '',
|
|
4643
4656
|
isClientSiteMeeting: req.meetingTypeApi.isClientSiteMeeting || false,
|
|
4644
|
-
isClientChoice: req.meetingTypeApi.isClientChoice || false
|
|
4657
|
+
isClientChoice: req.meetingTypeApi.isClientChoice || false,
|
|
4658
|
+
emailSubject: req.meetingTypeApi.emailSubject || '',
|
|
4659
|
+
emailDescription: req.meetingTypeApi.emailDescription || '',
|
|
4645
4660
|
};
|
|
4646
4661
|
}
|
|
4647
4662
|
function MeetingTypeToApi(req) {
|
|
@@ -4665,6 +4680,8 @@ function MeetingTypeToApi(req) {
|
|
|
4665
4680
|
location: m.location || undefined,
|
|
4666
4681
|
locationGuidelines: m.locationGuidelines || undefined,
|
|
4667
4682
|
isClientSiteMeeting: m.isClientSiteMeeting || undefined,
|
|
4683
|
+
emailSubject: m.emailSubject || undefined,
|
|
4684
|
+
emailDescription: m.emailDescription || undefined,
|
|
4668
4685
|
isClientChoice: m.isClientChoice || undefined,
|
|
4669
4686
|
};
|
|
4670
4687
|
}
|