@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.
Files changed (32) hide show
  1. package/esm2020/lib/_internal/enums/index.mjs +1 -1
  2. package/esm2020/lib/_internal/google-meet.api.service.mjs +8 -7
  3. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  4. package/esm2020/lib/_internal/interfaces/meeting-guest.interface.mjs +1 -1
  5. package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
  6. package/esm2020/lib/_internal/interfaces/shared.interface.mjs +1 -1
  7. package/esm2020/lib/_internal/meeting-guest.api.service.mjs +8 -7
  8. package/esm2020/lib/_internal/meeting-host.api.service.mjs +8 -7
  9. package/esm2020/lib/_internal/meeting-source-api.api.service.mjs +8 -7
  10. package/esm2020/lib/_internal/objects/index.mjs +3 -3
  11. package/esm2020/lib/_internal/objects/meeting-guest.mjs +2 -2
  12. package/esm2020/lib/_internal/objects/meeting-host.mjs +4 -4
  13. package/esm2020/lib/_internal/objects/shared.mjs +3 -2
  14. package/esm2020/lib/_internal/zoom.api.service.mjs +8 -7
  15. package/fesm2015/vendasta-meetings.mjs +156 -155
  16. package/fesm2015/vendasta-meetings.mjs.map +1 -1
  17. package/fesm2020/vendasta-meetings.mjs +156 -155
  18. package/fesm2020/vendasta-meetings.mjs.map +1 -1
  19. package/lib/_internal/google-meet.api.service.d.ts +5 -2
  20. package/lib/_internal/interfaces/index.d.ts +2 -2
  21. package/lib/_internal/interfaces/meeting-guest.interface.d.ts +1 -1
  22. package/lib/_internal/interfaces/meeting-host.interface.d.ts +2 -2
  23. package/lib/_internal/interfaces/shared.interface.d.ts +2 -1
  24. package/lib/_internal/meeting-guest.api.service.d.ts +5 -3
  25. package/lib/_internal/meeting-host.api.service.d.ts +5 -3
  26. package/lib/_internal/meeting-source-api.api.service.d.ts +5 -2
  27. package/lib/_internal/objects/index.d.ts +2 -2
  28. package/lib/_internal/objects/meeting-guest.d.ts +1 -1
  29. package/lib/_internal/objects/meeting-host.d.ts +2 -2
  30. package/lib/_internal/objects/shared.d.ts +2 -1
  31. package/lib/_internal/zoom.api.service.d.ts +5 -2
  32. package/package.json +1 -1
@@ -1,8 +1,9 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Injectable, inject } from '@angular/core';
2
+ import { Injectable } from '@angular/core';
3
3
  import { throwError, of } from 'rxjs';
4
4
  import { map, mapTo } from 'rxjs/operators';
5
- import { HttpClient, HttpHeaders } from '@angular/common/http';
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$7(FormFieldType, proto.type);
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$7(CalendarType, proto.calendarType);
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$7(MeetingSource, proto.meetingIntegration);
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$6(enumRef, value) {
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$6(FormFieldType, proto.type);
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$5(enumRef, value) {
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$4(enumRef, value) {
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$3(enumRef, value) {
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$2(enumRef, value) {
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$2(DayOfWeek, proto.day);
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$2(MeetingSource, proto.meetingSource);
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.calendarId !== 'undefined') {
3304
- toReturn['calendarId'] = this.calendarId;
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$2(DayOfWeek, v));
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$2(DayOfWeek, proto.day);
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
  const environment = (window ? window['environment'] : 'prod') ?? 'prod';
@@ -4040,9 +4041,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
4040
4041
 
4041
4042
  // *********************************
4042
4043
  class MeetingSourceAPIApiService {
4043
- constructor() {
4044
- this.hostService = inject(HostService$1);
4045
- this.http = inject(HttpClient);
4044
+ constructor(http, hostService) {
4045
+ this.http = http;
4046
+ this.hostService = hostService;
4046
4047
  this._host = this.hostService.hostWithScheme;
4047
4048
  }
4048
4049
  apiOptions() {
@@ -4059,18 +4060,18 @@ class MeetingSourceAPIApiService {
4059
4060
  .pipe(map(resp => MeetingSourceListResponse.fromProto(resp)));
4060
4061
  }
4061
4062
  }
4062
- MeetingSourceAPIApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4063
+ 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 });
4063
4064
  MeetingSourceAPIApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, providedIn: 'root' });
4064
4065
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, decorators: [{
4065
4066
  type: Injectable,
4066
4067
  args: [{ providedIn: 'root' }]
4067
- }] });
4068
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
4068
4069
 
4069
4070
  // *********************************
4070
4071
  class ZoomApiService {
4071
- constructor() {
4072
- this.hostService = inject(HostService$1);
4073
- this.http = inject(HttpClient);
4072
+ constructor(http, hostService) {
4073
+ this.http = http;
4074
+ this.hostService = hostService;
4074
4075
  this._host = this.hostService.hostWithScheme;
4075
4076
  }
4076
4077
  apiOptions() {
@@ -4087,18 +4088,18 @@ class ZoomApiService {
4087
4088
  .pipe(map(resp => CreateZoomMeetingResponse.fromProto(resp)));
4088
4089
  }
4089
4090
  }
4090
- ZoomApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4091
+ 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 });
4091
4092
  ZoomApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, providedIn: 'root' });
4092
4093
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, decorators: [{
4093
4094
  type: Injectable,
4094
4095
  args: [{ providedIn: 'root' }]
4095
- }] });
4096
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
4096
4097
 
4097
4098
  // *********************************
4098
4099
  class GoogleMeetApiService {
4099
- constructor() {
4100
- this.hostService = inject(HostService$1);
4101
- this.http = inject(HttpClient);
4100
+ constructor(http, hostService) {
4101
+ this.http = http;
4102
+ this.hostService = hostService;
4102
4103
  this._host = this.hostService.hostWithScheme;
4103
4104
  }
4104
4105
  apiOptions() {
@@ -4115,12 +4116,12 @@ class GoogleMeetApiService {
4115
4116
  .pipe(map(resp => GoogleMeetCreateMeetingResponse.fromProto(resp)));
4116
4117
  }
4117
4118
  }
4118
- GoogleMeetApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4119
+ 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 });
4119
4120
  GoogleMeetApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, providedIn: 'root' });
4120
4121
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, decorators: [{
4121
4122
  type: Injectable,
4122
4123
  args: [{ providedIn: 'root' }]
4123
- }] });
4124
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
4124
4125
 
4125
4126
  function generateMeetingPassword() {
4126
4127
  const zoomMaxLength = 10;
@@ -4278,9 +4279,9 @@ function createMeetInstantMeetingRequest(meetingTitle, startDateTime, attendees)
4278
4279
 
4279
4280
  // *********************************
4280
4281
  class MeetingGuestApiService {
4281
- constructor() {
4282
- this.hostService = inject(HostService$1);
4283
- this.http = inject(HttpClient);
4282
+ constructor(http, hostService) {
4283
+ this.http = http;
4284
+ this.hostService = hostService;
4284
4285
  this._host = this.hostService.hostWithScheme;
4285
4286
  }
4286
4287
  apiOptions() {
@@ -4340,18 +4341,18 @@ class MeetingGuestApiService {
4340
4341
  .pipe(map(resp => GuestIsHostConfiguredResponse.fromProto(resp)));
4341
4342
  }
4342
4343
  }
4343
- MeetingGuestApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4344
+ 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 });
4344
4345
  MeetingGuestApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, providedIn: 'root' });
4345
4346
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, decorators: [{
4346
4347
  type: Injectable,
4347
4348
  args: [{ providedIn: 'root' }]
4348
- }] });
4349
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
4349
4350
 
4350
4351
  // *********************************
4351
4352
  class MeetingHostApiService {
4352
- constructor() {
4353
- this.hostService = inject(HostService$1);
4354
- this.http = inject(HttpClient);
4353
+ constructor(http, hostService) {
4354
+ this.http = http;
4355
+ this.hostService = hostService;
4355
4356
  this._host = this.hostService.hostWithScheme;
4356
4357
  }
4357
4358
  apiOptions() {
@@ -4506,12 +4507,12 @@ class MeetingHostApiService {
4506
4507
  .pipe(map(resp => IsCalendarConfiguredResponse.fromProto(resp)));
4507
4508
  }
4508
4509
  }
4509
- MeetingHostApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4510
+ 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 });
4510
4511
  MeetingHostApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, providedIn: 'root' });
4511
4512
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, decorators: [{
4512
4513
  type: Injectable,
4513
4514
  args: [{ providedIn: 'root' }]
4514
- }] });
4515
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
4515
4516
 
4516
4517
  // *********************************
4517
4518