@vendasta/meetings 0.81.2 → 0.82.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.
Files changed (38) hide show
  1. package/esm2020/lib/_internal/enums/index.mjs +1 -1
  2. package/esm2020/lib/_internal/google-meet.api.service.mjs +7 -8
  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/meeting-type.interface.mjs +1 -1
  7. package/esm2020/lib/_internal/interfaces/shared.interface.mjs +1 -1
  8. package/esm2020/lib/_internal/meeting-guest.api.service.mjs +7 -8
  9. package/esm2020/lib/_internal/meeting-host.api.service.mjs +7 -8
  10. package/esm2020/lib/_internal/meeting-source-api.api.service.mjs +7 -8
  11. package/esm2020/lib/_internal/objects/index.mjs +3 -3
  12. package/esm2020/lib/_internal/objects/meeting-guest.mjs +8 -2
  13. package/esm2020/lib/_internal/objects/meeting-host.mjs +5 -2
  14. package/esm2020/lib/_internal/objects/meeting-type.mjs +4 -1
  15. package/esm2020/lib/_internal/objects/shared.mjs +2 -3
  16. package/esm2020/lib/_internal/zoom.api.service.mjs +7 -8
  17. package/esm2020/lib/guest/guest.service.mjs +1 -1
  18. package/fesm2015/vendasta-meetings.mjs +165 -154
  19. package/fesm2015/vendasta-meetings.mjs.map +1 -1
  20. package/fesm2020/vendasta-meetings.mjs +165 -154
  21. package/fesm2020/vendasta-meetings.mjs.map +1 -1
  22. package/lib/_internal/google-meet.api.service.d.ts +2 -5
  23. package/lib/_internal/interfaces/index.d.ts +2 -2
  24. package/lib/_internal/interfaces/meeting-guest.interface.d.ts +3 -1
  25. package/lib/_internal/interfaces/meeting-host.interface.d.ts +2 -1
  26. package/lib/_internal/interfaces/meeting-type.interface.d.ts +1 -0
  27. package/lib/_internal/interfaces/shared.interface.d.ts +1 -2
  28. package/lib/_internal/meeting-guest.api.service.d.ts +3 -5
  29. package/lib/_internal/meeting-host.api.service.d.ts +3 -5
  30. package/lib/_internal/meeting-source-api.api.service.d.ts +2 -5
  31. package/lib/_internal/objects/index.d.ts +2 -2
  32. package/lib/_internal/objects/meeting-guest.d.ts +3 -1
  33. package/lib/_internal/objects/meeting-host.d.ts +2 -1
  34. package/lib/_internal/objects/meeting-type.d.ts +1 -0
  35. package/lib/_internal/objects/shared.d.ts +1 -2
  36. package/lib/_internal/zoom.api.service.d.ts +2 -5
  37. package/lib/guest/guest.service.d.ts +2 -0
  38. package/package.json +1 -1
@@ -1,9 +1,8 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Injectable } from '@angular/core';
2
+ import { Injectable, inject } from '@angular/core';
3
3
  import { throwError, of } from 'rxjs';
4
4
  import { map, mapTo } from 'rxjs/operators';
5
- import * as i1 from '@angular/common/http';
6
- import { HttpHeaders } from '@angular/common/http';
5
+ import { HttpClient, HttpHeaders } from '@angular/common/http';
7
6
 
8
7
  // *********************************
9
8
  // Code generated by sdkgen
@@ -1174,125 +1173,12 @@ function enumStringToValue$7(enumRef, value) {
1174
1173
  }
1175
1174
  return enumRef[value];
1176
1175
  }
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
- }
1290
1176
  class Answer {
1291
1177
  static fromProto(proto) {
1292
1178
  let m = new Answer();
1293
1179
  m = Object.assign(m, proto);
1294
1180
  if (proto.type) {
1295
- m.type = enumStringToValue$5(FormFieldType, proto.type);
1181
+ m.type = enumStringToValue$7(FormFieldType, proto.type);
1296
1182
  }
1297
1183
  return m;
1298
1184
  }
@@ -1434,7 +1320,7 @@ class Calendar {
1434
1320
  m.applicationContext = Object.keys(proto.applicationContext).reduce((obj, k) => { obj[k] = proto.applicationContext[k]; return obj; }, {});
1435
1321
  }
1436
1322
  if (proto.calendarType) {
1437
- m.calendarType = enumStringToValue$5(CalendarType, proto.calendarType);
1323
+ m.calendarType = enumStringToValue$7(CalendarType, proto.calendarType);
1438
1324
  }
1439
1325
  return m;
1440
1326
  }
@@ -1632,7 +1518,7 @@ class Preferences {
1632
1518
  m.timezone = TimeZone.fromProto(proto.timezone);
1633
1519
  }
1634
1520
  if (proto.meetingIntegration) {
1635
- m.meetingIntegration = enumStringToValue$5(MeetingSource, proto.meetingIntegration);
1521
+ m.meetingIntegration = enumStringToValue$7(MeetingSource, proto.meetingIntegration);
1636
1522
  }
1637
1523
  if (proto.availabilityIncrement) {
1638
1524
  m.availabilityIncrement = parseInt(proto.availabilityIncrement, 10);
@@ -1704,7 +1590,7 @@ class TimeRange {
1704
1590
  }
1705
1591
  }
1706
1592
 
1707
- function enumStringToValue$4(enumRef, value) {
1593
+ function enumStringToValue$6(enumRef, value) {
1708
1594
  if (typeof value === 'number') {
1709
1595
  return value;
1710
1596
  }
@@ -1715,7 +1601,7 @@ class Field {
1715
1601
  let m = new Field();
1716
1602
  m = Object.assign(m, proto);
1717
1603
  if (proto.type) {
1718
- m.type = enumStringToValue$4(FormFieldType, proto.type);
1604
+ m.type = enumStringToValue$6(FormFieldType, proto.type);
1719
1605
  }
1720
1606
  return m;
1721
1607
  }
@@ -1845,11 +1731,14 @@ class MeetingType {
1845
1731
  if (typeof this.locationGuidelines !== 'undefined') {
1846
1732
  toReturn['locationGuidelines'] = this.locationGuidelines;
1847
1733
  }
1734
+ if (typeof this.isClientChoice !== 'undefined') {
1735
+ toReturn['isClientChoice'] = this.isClientChoice;
1736
+ }
1848
1737
  return toReturn;
1849
1738
  }
1850
1739
  }
1851
1740
 
1852
- function enumStringToValue$3(enumRef, value) {
1741
+ function enumStringToValue$5(enumRef, value) {
1853
1742
  if (typeof value === 'number') {
1854
1743
  return value;
1855
1744
  }
@@ -1885,7 +1774,7 @@ class DateRange {
1885
1774
  }
1886
1775
  }
1887
1776
 
1888
- function enumStringToValue$2(enumRef, value) {
1777
+ function enumStringToValue$4(enumRef, value) {
1889
1778
  if (typeof value === 'number') {
1890
1779
  return value;
1891
1780
  }
@@ -1950,6 +1839,9 @@ class BookMeetingRequest {
1950
1839
  if (typeof this.location !== 'undefined') {
1951
1840
  toReturn['location'] = this.location;
1952
1841
  }
1842
+ if (typeof this.userId !== 'undefined') {
1843
+ toReturn['userId'] = this.userId;
1844
+ }
1953
1845
  return toReturn;
1954
1846
  }
1955
1847
  }
@@ -2302,6 +2194,9 @@ class ListAvailableTimeSlotsRequest {
2302
2194
  if (typeof this.timeZone !== 'undefined' && this.timeZone !== null) {
2303
2195
  toReturn['timeZone'] = 'toApiJson' in this.timeZone ? this.timeZone.toApiJson() : this.timeZone;
2304
2196
  }
2197
+ if (typeof this.userId !== 'undefined') {
2198
+ toReturn['userId'] = this.userId;
2199
+ }
2305
2200
  return toReturn;
2306
2201
  }
2307
2202
  }
@@ -2395,7 +2290,7 @@ class BookMeetingRequestMetadataEntry {
2395
2290
  }
2396
2291
  }
2397
2292
 
2398
- function enumStringToValue$1(enumRef, value) {
2293
+ function enumStringToValue$3(enumRef, value) {
2399
2294
  if (typeof value === 'number') {
2400
2295
  return value;
2401
2296
  }
@@ -2422,7 +2317,7 @@ class FieldMask {
2422
2317
  }
2423
2318
  }
2424
2319
 
2425
- function enumStringToValue(enumRef, value) {
2320
+ function enumStringToValue$2(enumRef, value) {
2426
2321
  if (typeof value === 'number') {
2427
2322
  return value;
2428
2323
  }
@@ -2502,7 +2397,7 @@ class AvailabilityRule {
2502
2397
  let m = new AvailabilityRule();
2503
2398
  m = Object.assign(m, proto);
2504
2399
  if (proto.day) {
2505
- m.day = enumStringToValue(DayOfWeek, proto.day);
2400
+ m.day = enumStringToValue$2(DayOfWeek, proto.day);
2506
2401
  }
2507
2402
  if (proto.timeSlot) {
2508
2403
  m.timeSlot = TimeRange.fromProto(proto.timeSlot);
@@ -3180,7 +3075,7 @@ class HostBookMeetingRequest {
3180
3075
  let m = new HostBookMeetingRequest();
3181
3076
  m = Object.assign(m, proto);
3182
3077
  if (proto.meetingSource) {
3183
- m.meetingSource = enumStringToValue(MeetingSource, proto.meetingSource);
3078
+ m.meetingSource = enumStringToValue$2(MeetingSource, proto.meetingSource);
3184
3079
  }
3185
3080
  if (proto.timeSlot) {
3186
3081
  m.timeSlot = DateRange.fromProto(proto.timeSlot);
@@ -3216,6 +3111,9 @@ class HostBookMeetingRequest {
3216
3111
  if (typeof this.topic !== 'undefined') {
3217
3112
  toReturn['topic'] = this.topic;
3218
3113
  }
3114
+ if (typeof this.userId !== 'undefined') {
3115
+ toReturn['userId'] = this.userId;
3116
+ }
3219
3117
  return toReturn;
3220
3118
  }
3221
3119
  }
@@ -3800,7 +3698,7 @@ class SetGeneralAvailabilityRequest {
3800
3698
  let m = new SetGeneralAvailabilityRequest();
3801
3699
  m = Object.assign(m, proto);
3802
3700
  if (proto.days) {
3803
- m.days = proto.days.map((v) => enumStringToValue(DayOfWeek, v));
3701
+ m.days = proto.days.map((v) => enumStringToValue$2(DayOfWeek, v));
3804
3702
  }
3805
3703
  if (proto.timeSlot) {
3806
3704
  m.timeSlot = TimeRange.fromProto(proto.timeSlot);
@@ -3989,7 +3887,7 @@ class WeekdayAvailability {
3989
3887
  let m = new WeekdayAvailability();
3990
3888
  m = Object.assign(m, proto);
3991
3889
  if (proto.day) {
3992
- m.day = enumStringToValue(DayOfWeek, proto.day);
3890
+ m.day = enumStringToValue$2(DayOfWeek, proto.day);
3993
3891
  }
3994
3892
  if (proto.timeSlots) {
3995
3893
  m.timeSlots = proto.timeSlots.map(TimeRange.fromProto);
@@ -4014,6 +3912,119 @@ class WeekdayAvailability {
4014
3912
  }
4015
3913
  }
4016
3914
 
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
+
4017
4028
  // *********************************
4018
4029
 
4019
4030
  var _a;
@@ -4042,9 +4053,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
4042
4053
 
4043
4054
  // *********************************
4044
4055
  class MeetingSourceAPIApiService {
4045
- constructor(http, hostService) {
4046
- this.http = http;
4047
- this.hostService = hostService;
4056
+ constructor() {
4057
+ this.hostService = inject(HostService$1);
4058
+ this.http = inject(HttpClient);
4048
4059
  this._host = this.hostService.hostWithScheme;
4049
4060
  }
4050
4061
  apiOptions() {
@@ -4061,18 +4072,18 @@ class MeetingSourceAPIApiService {
4061
4072
  .pipe(map(resp => MeetingSourceListResponse.fromProto(resp)));
4062
4073
  }
4063
4074
  }
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 });
4075
+ MeetingSourceAPIApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4065
4076
  MeetingSourceAPIApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, providedIn: 'root' });
4066
4077
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, decorators: [{
4067
4078
  type: Injectable,
4068
4079
  args: [{ providedIn: 'root' }]
4069
- }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
4080
+ }] });
4070
4081
 
4071
4082
  // *********************************
4072
4083
  class ZoomApiService {
4073
- constructor(http, hostService) {
4074
- this.http = http;
4075
- this.hostService = hostService;
4084
+ constructor() {
4085
+ this.hostService = inject(HostService$1);
4086
+ this.http = inject(HttpClient);
4076
4087
  this._host = this.hostService.hostWithScheme;
4077
4088
  }
4078
4089
  apiOptions() {
@@ -4089,18 +4100,18 @@ class ZoomApiService {
4089
4100
  .pipe(map(resp => CreateZoomMeetingResponse.fromProto(resp)));
4090
4101
  }
4091
4102
  }
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 });
4103
+ ZoomApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4093
4104
  ZoomApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, providedIn: 'root' });
4094
4105
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, decorators: [{
4095
4106
  type: Injectable,
4096
4107
  args: [{ providedIn: 'root' }]
4097
- }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
4108
+ }] });
4098
4109
 
4099
4110
  // *********************************
4100
4111
  class GoogleMeetApiService {
4101
- constructor(http, hostService) {
4102
- this.http = http;
4103
- this.hostService = hostService;
4112
+ constructor() {
4113
+ this.hostService = inject(HostService$1);
4114
+ this.http = inject(HttpClient);
4104
4115
  this._host = this.hostService.hostWithScheme;
4105
4116
  }
4106
4117
  apiOptions() {
@@ -4117,12 +4128,12 @@ class GoogleMeetApiService {
4117
4128
  .pipe(map(resp => GoogleMeetCreateMeetingResponse.fromProto(resp)));
4118
4129
  }
4119
4130
  }
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 });
4131
+ GoogleMeetApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4121
4132
  GoogleMeetApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, providedIn: 'root' });
4122
4133
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, decorators: [{
4123
4134
  type: Injectable,
4124
4135
  args: [{ providedIn: 'root' }]
4125
- }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
4136
+ }] });
4126
4137
 
4127
4138
  function generateMeetingPassword() {
4128
4139
  const zoomMaxLength = 10;
@@ -4509,9 +4520,9 @@ class PagedResponse {
4509
4520
 
4510
4521
  // *********************************
4511
4522
  class MeetingGuestApiService {
4512
- constructor(http, hostService) {
4513
- this.http = http;
4514
- this.hostService = hostService;
4523
+ constructor() {
4524
+ this.hostService = inject(HostService$1);
4525
+ this.http = inject(HttpClient);
4515
4526
  this._host = this.hostService.hostWithScheme;
4516
4527
  }
4517
4528
  apiOptions() {
@@ -4571,18 +4582,18 @@ class MeetingGuestApiService {
4571
4582
  .pipe(map(resp => GuestIsHostConfiguredResponse.fromProto(resp)));
4572
4583
  }
4573
4584
  }
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 });
4585
+ MeetingGuestApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4575
4586
  MeetingGuestApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, providedIn: 'root' });
4576
4587
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, decorators: [{
4577
4588
  type: Injectable,
4578
4589
  args: [{ providedIn: 'root' }]
4579
- }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
4590
+ }] });
4580
4591
 
4581
4592
  // *********************************
4582
4593
  class MeetingHostApiService {
4583
- constructor(http, hostService) {
4584
- this.http = http;
4585
- this.hostService = hostService;
4594
+ constructor() {
4595
+ this.hostService = inject(HostService$1);
4596
+ this.http = inject(HttpClient);
4586
4597
  this._host = this.hostService.hostWithScheme;
4587
4598
  }
4588
4599
  apiOptions() {
@@ -4737,12 +4748,12 @@ class MeetingHostApiService {
4737
4748
  .pipe(map(resp => IsCalendarConfiguredResponse.fromProto(resp)));
4738
4749
  }
4739
4750
  }
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 });
4751
+ MeetingHostApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4741
4752
  MeetingHostApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, providedIn: 'root' });
4742
4753
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, decorators: [{
4743
4754
  type: Injectable,
4744
4755
  args: [{ providedIn: 'root' }]
4745
- }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
4756
+ }] });
4746
4757
 
4747
4758
  // *********************************
4748
4759