@vendasta/meetings 0.81.1 → 0.81.2
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/google-meet.api.service.mjs +8 -7
- 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/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/index.mjs +3 -3
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +2 -2
- package/esm2020/lib/_internal/objects/meeting-host.mjs +4 -4
- package/esm2020/lib/_internal/objects/shared.mjs +3 -2
- package/esm2020/lib/_internal/zoom.api.service.mjs +8 -7
- package/fesm2015/vendasta-meetings.mjs +156 -155
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +156 -155
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/google-meet.api.service.d.ts +5 -2
- package/lib/_internal/interfaces/index.d.ts +2 -2
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +1 -1
- package/lib/_internal/interfaces/meeting-host.interface.d.ts +2 -2
- 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/index.d.ts +2 -2
- package/lib/_internal/objects/meeting-guest.d.ts +1 -1
- package/lib/_internal/objects/meeting-host.d.ts +2 -2
- package/lib/_internal/objects/shared.d.ts +2 -1
- package/lib/_internal/zoom.api.service.d.ts +5 -2
- 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
|
}
|
|
@@ -1735,7 +1849,7 @@ class MeetingType {
|
|
|
1735
1849
|
}
|
|
1736
1850
|
}
|
|
1737
1851
|
|
|
1738
|
-
function enumStringToValue$
|
|
1852
|
+
function enumStringToValue$3(enumRef, value) {
|
|
1739
1853
|
if (typeof value === 'number') {
|
|
1740
1854
|
return value;
|
|
1741
1855
|
}
|
|
@@ -1771,7 +1885,7 @@ class DateRange {
|
|
|
1771
1885
|
}
|
|
1772
1886
|
}
|
|
1773
1887
|
|
|
1774
|
-
function enumStringToValue$
|
|
1888
|
+
function enumStringToValue$2(enumRef, value) {
|
|
1775
1889
|
if (typeof value === 'number') {
|
|
1776
1890
|
return value;
|
|
1777
1891
|
}
|
|
@@ -2281,7 +2395,7 @@ class BookMeetingRequestMetadataEntry {
|
|
|
2281
2395
|
}
|
|
2282
2396
|
}
|
|
2283
2397
|
|
|
2284
|
-
function enumStringToValue$
|
|
2398
|
+
function enumStringToValue$1(enumRef, value) {
|
|
2285
2399
|
if (typeof value === 'number') {
|
|
2286
2400
|
return value;
|
|
2287
2401
|
}
|
|
@@ -2308,7 +2422,7 @@ class FieldMask {
|
|
|
2308
2422
|
}
|
|
2309
2423
|
}
|
|
2310
2424
|
|
|
2311
|
-
function enumStringToValue
|
|
2425
|
+
function enumStringToValue(enumRef, value) {
|
|
2312
2426
|
if (typeof value === 'number') {
|
|
2313
2427
|
return value;
|
|
2314
2428
|
}
|
|
@@ -2388,7 +2502,7 @@ class AvailabilityRule {
|
|
|
2388
2502
|
let m = new AvailabilityRule();
|
|
2389
2503
|
m = Object.assign(m, proto);
|
|
2390
2504
|
if (proto.day) {
|
|
2391
|
-
m.day = enumStringToValue
|
|
2505
|
+
m.day = enumStringToValue(DayOfWeek, proto.day);
|
|
2392
2506
|
}
|
|
2393
2507
|
if (proto.timeSlot) {
|
|
2394
2508
|
m.timeSlot = TimeRange.fromProto(proto.timeSlot);
|
|
@@ -3066,7 +3180,7 @@ class HostBookMeetingRequest {
|
|
|
3066
3180
|
let m = new HostBookMeetingRequest();
|
|
3067
3181
|
m = Object.assign(m, proto);
|
|
3068
3182
|
if (proto.meetingSource) {
|
|
3069
|
-
m.meetingSource = enumStringToValue
|
|
3183
|
+
m.meetingSource = enumStringToValue(MeetingSource, proto.meetingSource);
|
|
3070
3184
|
}
|
|
3071
3185
|
if (proto.timeSlot) {
|
|
3072
3186
|
m.timeSlot = DateRange.fromProto(proto.timeSlot);
|
|
@@ -3300,8 +3414,8 @@ class IsCalendarConfiguredResponse {
|
|
|
3300
3414
|
if (typeof this.isConfigured !== 'undefined') {
|
|
3301
3415
|
toReturn['isConfigured'] = this.isConfigured;
|
|
3302
3416
|
}
|
|
3303
|
-
if (typeof this.
|
|
3304
|
-
toReturn['
|
|
3417
|
+
if (typeof this.calendarIds !== 'undefined') {
|
|
3418
|
+
toReturn['calendarIds'] = this.calendarIds;
|
|
3305
3419
|
}
|
|
3306
3420
|
return toReturn;
|
|
3307
3421
|
}
|
|
@@ -3686,7 +3800,7 @@ class SetGeneralAvailabilityRequest {
|
|
|
3686
3800
|
let m = new SetGeneralAvailabilityRequest();
|
|
3687
3801
|
m = Object.assign(m, proto);
|
|
3688
3802
|
if (proto.days) {
|
|
3689
|
-
m.days = proto.days.map((v) => enumStringToValue
|
|
3803
|
+
m.days = proto.days.map((v) => enumStringToValue(DayOfWeek, v));
|
|
3690
3804
|
}
|
|
3691
3805
|
if (proto.timeSlot) {
|
|
3692
3806
|
m.timeSlot = TimeRange.fromProto(proto.timeSlot);
|
|
@@ -3875,7 +3989,7 @@ class WeekdayAvailability {
|
|
|
3875
3989
|
let m = new WeekdayAvailability();
|
|
3876
3990
|
m = Object.assign(m, proto);
|
|
3877
3991
|
if (proto.day) {
|
|
3878
|
-
m.day = enumStringToValue
|
|
3992
|
+
m.day = enumStringToValue(DayOfWeek, proto.day);
|
|
3879
3993
|
}
|
|
3880
3994
|
if (proto.timeSlots) {
|
|
3881
3995
|
m.timeSlots = proto.timeSlots.map(TimeRange.fromProto);
|
|
@@ -3900,119 +4014,6 @@ class WeekdayAvailability {
|
|
|
3900
4014
|
}
|
|
3901
4015
|
}
|
|
3902
4016
|
|
|
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
|
-
|
|
4016
4017
|
// *********************************
|
|
4017
4018
|
|
|
4018
4019
|
var _a;
|
|
@@ -4041,9 +4042,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
|
|
|
4041
4042
|
|
|
4042
4043
|
// *********************************
|
|
4043
4044
|
class MeetingSourceAPIApiService {
|
|
4044
|
-
constructor() {
|
|
4045
|
-
this.
|
|
4046
|
-
this.
|
|
4045
|
+
constructor(http, hostService) {
|
|
4046
|
+
this.http = http;
|
|
4047
|
+
this.hostService = hostService;
|
|
4047
4048
|
this._host = this.hostService.hostWithScheme;
|
|
4048
4049
|
}
|
|
4049
4050
|
apiOptions() {
|
|
@@ -4060,18 +4061,18 @@ class MeetingSourceAPIApiService {
|
|
|
4060
4061
|
.pipe(map(resp => MeetingSourceListResponse.fromProto(resp)));
|
|
4061
4062
|
}
|
|
4062
4063
|
}
|
|
4063
|
-
MeetingSourceAPIApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4064
|
+
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 });
|
|
4064
4065
|
MeetingSourceAPIApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, providedIn: 'root' });
|
|
4065
4066
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, decorators: [{
|
|
4066
4067
|
type: Injectable,
|
|
4067
4068
|
args: [{ providedIn: 'root' }]
|
|
4068
|
-
}] });
|
|
4069
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
4069
4070
|
|
|
4070
4071
|
// *********************************
|
|
4071
4072
|
class ZoomApiService {
|
|
4072
|
-
constructor() {
|
|
4073
|
-
this.
|
|
4074
|
-
this.
|
|
4073
|
+
constructor(http, hostService) {
|
|
4074
|
+
this.http = http;
|
|
4075
|
+
this.hostService = hostService;
|
|
4075
4076
|
this._host = this.hostService.hostWithScheme;
|
|
4076
4077
|
}
|
|
4077
4078
|
apiOptions() {
|
|
@@ -4088,18 +4089,18 @@ class ZoomApiService {
|
|
|
4088
4089
|
.pipe(map(resp => CreateZoomMeetingResponse.fromProto(resp)));
|
|
4089
4090
|
}
|
|
4090
4091
|
}
|
|
4091
|
-
ZoomApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4092
|
+
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 });
|
|
4092
4093
|
ZoomApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, providedIn: 'root' });
|
|
4093
4094
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, decorators: [{
|
|
4094
4095
|
type: Injectable,
|
|
4095
4096
|
args: [{ providedIn: 'root' }]
|
|
4096
|
-
}] });
|
|
4097
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
4097
4098
|
|
|
4098
4099
|
// *********************************
|
|
4099
4100
|
class GoogleMeetApiService {
|
|
4100
|
-
constructor() {
|
|
4101
|
-
this.
|
|
4102
|
-
this.
|
|
4101
|
+
constructor(http, hostService) {
|
|
4102
|
+
this.http = http;
|
|
4103
|
+
this.hostService = hostService;
|
|
4103
4104
|
this._host = this.hostService.hostWithScheme;
|
|
4104
4105
|
}
|
|
4105
4106
|
apiOptions() {
|
|
@@ -4116,12 +4117,12 @@ class GoogleMeetApiService {
|
|
|
4116
4117
|
.pipe(map(resp => GoogleMeetCreateMeetingResponse.fromProto(resp)));
|
|
4117
4118
|
}
|
|
4118
4119
|
}
|
|
4119
|
-
GoogleMeetApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4120
|
+
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 });
|
|
4120
4121
|
GoogleMeetApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, providedIn: 'root' });
|
|
4121
4122
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, decorators: [{
|
|
4122
4123
|
type: Injectable,
|
|
4123
4124
|
args: [{ providedIn: 'root' }]
|
|
4124
|
-
}] });
|
|
4125
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
4125
4126
|
|
|
4126
4127
|
function generateMeetingPassword() {
|
|
4127
4128
|
const zoomMaxLength = 10;
|
|
@@ -4508,9 +4509,9 @@ class PagedResponse {
|
|
|
4508
4509
|
|
|
4509
4510
|
// *********************************
|
|
4510
4511
|
class MeetingGuestApiService {
|
|
4511
|
-
constructor() {
|
|
4512
|
-
this.
|
|
4513
|
-
this.
|
|
4512
|
+
constructor(http, hostService) {
|
|
4513
|
+
this.http = http;
|
|
4514
|
+
this.hostService = hostService;
|
|
4514
4515
|
this._host = this.hostService.hostWithScheme;
|
|
4515
4516
|
}
|
|
4516
4517
|
apiOptions() {
|
|
@@ -4570,18 +4571,18 @@ class MeetingGuestApiService {
|
|
|
4570
4571
|
.pipe(map(resp => GuestIsHostConfiguredResponse.fromProto(resp)));
|
|
4571
4572
|
}
|
|
4572
4573
|
}
|
|
4573
|
-
MeetingGuestApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4574
|
+
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 });
|
|
4574
4575
|
MeetingGuestApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, providedIn: 'root' });
|
|
4575
4576
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, decorators: [{
|
|
4576
4577
|
type: Injectable,
|
|
4577
4578
|
args: [{ providedIn: 'root' }]
|
|
4578
|
-
}] });
|
|
4579
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
4579
4580
|
|
|
4580
4581
|
// *********************************
|
|
4581
4582
|
class MeetingHostApiService {
|
|
4582
|
-
constructor() {
|
|
4583
|
-
this.
|
|
4584
|
-
this.
|
|
4583
|
+
constructor(http, hostService) {
|
|
4584
|
+
this.http = http;
|
|
4585
|
+
this.hostService = hostService;
|
|
4585
4586
|
this._host = this.hostService.hostWithScheme;
|
|
4586
4587
|
}
|
|
4587
4588
|
apiOptions() {
|
|
@@ -4736,12 +4737,12 @@ class MeetingHostApiService {
|
|
|
4736
4737
|
.pipe(map(resp => IsCalendarConfiguredResponse.fromProto(resp)));
|
|
4737
4738
|
}
|
|
4738
4739
|
}
|
|
4739
|
-
MeetingHostApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4740
|
+
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 });
|
|
4740
4741
|
MeetingHostApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, providedIn: 'root' });
|
|
4741
4742
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, decorators: [{
|
|
4742
4743
|
type: Injectable,
|
|
4743
4744
|
args: [{ providedIn: 'root' }]
|
|
4744
|
-
}] });
|
|
4745
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
4745
4746
|
|
|
4746
4747
|
// *********************************
|
|
4747
4748
|
|