@vendasta/meetings 0.84.0 → 0.86.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 (33) hide show
  1. package/esm2020/lib/_internal/google-meet.api.service.mjs +7 -8
  2. package/esm2020/lib/_internal/interfaces/meeting-guest.interface.mjs +1 -1
  3. package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
  4. package/esm2020/lib/_internal/interfaces/meeting-type.interface.mjs +1 -1
  5. package/esm2020/lib/_internal/interfaces/shared.interface.mjs +1 -1
  6. package/esm2020/lib/_internal/meeting-guest.api.service.mjs +7 -8
  7. package/esm2020/lib/_internal/meeting-host.api.service.mjs +7 -8
  8. package/esm2020/lib/_internal/meeting-source-api.api.service.mjs +7 -8
  9. package/esm2020/lib/_internal/objects/meeting-guest.mjs +2 -2
  10. package/esm2020/lib/_internal/objects/meeting-host.mjs +2 -2
  11. package/esm2020/lib/_internal/objects/meeting-type.mjs +7 -1
  12. package/esm2020/lib/_internal/objects/shared.mjs +2 -3
  13. package/esm2020/lib/_internal/zoom.api.service.mjs +7 -8
  14. package/esm2020/lib/shared/meeting-type.mjs +5 -1
  15. package/fesm2015/vendasta-meetings.mjs +163 -154
  16. package/fesm2015/vendasta-meetings.mjs.map +1 -1
  17. package/fesm2020/vendasta-meetings.mjs +163 -154
  18. package/fesm2020/vendasta-meetings.mjs.map +1 -1
  19. package/lib/_internal/google-meet.api.service.d.ts +2 -5
  20. package/lib/_internal/interfaces/meeting-guest.interface.d.ts +1 -1
  21. package/lib/_internal/interfaces/meeting-host.interface.d.ts +1 -1
  22. package/lib/_internal/interfaces/meeting-type.interface.d.ts +2 -0
  23. package/lib/_internal/interfaces/shared.interface.d.ts +1 -2
  24. package/lib/_internal/meeting-guest.api.service.d.ts +3 -5
  25. package/lib/_internal/meeting-host.api.service.d.ts +3 -5
  26. package/lib/_internal/meeting-source-api.api.service.d.ts +2 -5
  27. package/lib/_internal/objects/meeting-guest.d.ts +1 -1
  28. package/lib/_internal/objects/meeting-host.d.ts +1 -1
  29. package/lib/_internal/objects/meeting-type.d.ts +2 -0
  30. package/lib/_internal/objects/shared.d.ts +1 -2
  31. package/lib/_internal/zoom.api.service.d.ts +2 -5
  32. package/lib/shared/meeting-type.d.ts +2 -0
  33. 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
  }
@@ -1854,11 +1740,17 @@ class MeetingType {
1854
1740
  if (typeof this.emailDescription !== 'undefined') {
1855
1741
  toReturn['emailDescription'] = this.emailDescription;
1856
1742
  }
1743
+ if (typeof this.isPinned !== 'undefined') {
1744
+ toReturn['isPinned'] = this.isPinned;
1745
+ }
1746
+ if (typeof this.calendarType !== 'undefined') {
1747
+ toReturn['calendarType'] = this.calendarType;
1748
+ }
1857
1749
  return toReturn;
1858
1750
  }
1859
1751
  }
1860
1752
 
1861
- function enumStringToValue$3(enumRef, value) {
1753
+ function enumStringToValue$5(enumRef, value) {
1862
1754
  if (typeof value === 'number') {
1863
1755
  return value;
1864
1756
  }
@@ -1894,7 +1786,7 @@ class DateRange {
1894
1786
  }
1895
1787
  }
1896
1788
 
1897
- function enumStringToValue$2(enumRef, value) {
1789
+ function enumStringToValue$4(enumRef, value) {
1898
1790
  if (typeof value === 'number') {
1899
1791
  return value;
1900
1792
  }
@@ -2416,7 +2308,7 @@ class BookMeetingRequestMetadataEntry {
2416
2308
  }
2417
2309
  }
2418
2310
 
2419
- function enumStringToValue$1(enumRef, value) {
2311
+ function enumStringToValue$3(enumRef, value) {
2420
2312
  if (typeof value === 'number') {
2421
2313
  return value;
2422
2314
  }
@@ -2443,7 +2335,7 @@ class FieldMask {
2443
2335
  }
2444
2336
  }
2445
2337
 
2446
- function enumStringToValue(enumRef, value) {
2338
+ function enumStringToValue$2(enumRef, value) {
2447
2339
  if (typeof value === 'number') {
2448
2340
  return value;
2449
2341
  }
@@ -2523,7 +2415,7 @@ class AvailabilityRule {
2523
2415
  let m = new AvailabilityRule();
2524
2416
  m = Object.assign(m, proto);
2525
2417
  if (proto.day) {
2526
- m.day = enumStringToValue(DayOfWeek, proto.day);
2418
+ m.day = enumStringToValue$2(DayOfWeek, proto.day);
2527
2419
  }
2528
2420
  if (proto.timeSlot) {
2529
2421
  m.timeSlot = TimeRange.fromProto(proto.timeSlot);
@@ -3201,7 +3093,7 @@ class HostBookMeetingRequest {
3201
3093
  let m = new HostBookMeetingRequest();
3202
3094
  m = Object.assign(m, proto);
3203
3095
  if (proto.meetingSource) {
3204
- m.meetingSource = enumStringToValue(MeetingSource, proto.meetingSource);
3096
+ m.meetingSource = enumStringToValue$2(MeetingSource, proto.meetingSource);
3205
3097
  }
3206
3098
  if (proto.timeSlot) {
3207
3099
  m.timeSlot = DateRange.fromProto(proto.timeSlot);
@@ -3824,7 +3716,7 @@ class SetGeneralAvailabilityRequest {
3824
3716
  let m = new SetGeneralAvailabilityRequest();
3825
3717
  m = Object.assign(m, proto);
3826
3718
  if (proto.days) {
3827
- m.days = proto.days.map((v) => enumStringToValue(DayOfWeek, v));
3719
+ m.days = proto.days.map((v) => enumStringToValue$2(DayOfWeek, v));
3828
3720
  }
3829
3721
  if (proto.timeSlot) {
3830
3722
  m.timeSlot = TimeRange.fromProto(proto.timeSlot);
@@ -4013,7 +3905,7 @@ class WeekdayAvailability {
4013
3905
  let m = new WeekdayAvailability();
4014
3906
  m = Object.assign(m, proto);
4015
3907
  if (proto.day) {
4016
- m.day = enumStringToValue(DayOfWeek, proto.day);
3908
+ m.day = enumStringToValue$2(DayOfWeek, proto.day);
4017
3909
  }
4018
3910
  if (proto.timeSlots) {
4019
3911
  m.timeSlots = proto.timeSlots.map(TimeRange.fromProto);
@@ -4038,6 +3930,119 @@ class WeekdayAvailability {
4038
3930
  }
4039
3931
  }
4040
3932
 
3933
+ function enumStringToValue$1(enumRef, value) {
3934
+ if (typeof value === 'number') {
3935
+ return value;
3936
+ }
3937
+ return enumRef[value];
3938
+ }
3939
+ class TimeOfDay {
3940
+ static fromProto(proto) {
3941
+ let m = new TimeOfDay();
3942
+ m = Object.assign(m, proto);
3943
+ return m;
3944
+ }
3945
+ constructor(kwargs) {
3946
+ if (!kwargs) {
3947
+ return;
3948
+ }
3949
+ Object.assign(this, kwargs);
3950
+ }
3951
+ toApiJson() {
3952
+ const toReturn = {};
3953
+ if (typeof this.hours !== 'undefined') {
3954
+ toReturn['hours'] = this.hours;
3955
+ }
3956
+ if (typeof this.minutes !== 'undefined') {
3957
+ toReturn['minutes'] = this.minutes;
3958
+ }
3959
+ if (typeof this.seconds !== 'undefined') {
3960
+ toReturn['seconds'] = this.seconds;
3961
+ }
3962
+ if (typeof this.nanos !== 'undefined') {
3963
+ toReturn['nanos'] = this.nanos;
3964
+ }
3965
+ return toReturn;
3966
+ }
3967
+ }
3968
+
3969
+ function enumStringToValue(enumRef, value) {
3970
+ if (typeof value === 'number') {
3971
+ return value;
3972
+ }
3973
+ return enumRef[value];
3974
+ }
3975
+ class DateTime {
3976
+ static fromProto(proto) {
3977
+ let m = new DateTime();
3978
+ m = Object.assign(m, proto);
3979
+ if (proto.timeZone) {
3980
+ m.timeZone = TimeZone.fromProto(proto.timeZone);
3981
+ }
3982
+ return m;
3983
+ }
3984
+ constructor(kwargs) {
3985
+ if (!kwargs) {
3986
+ return;
3987
+ }
3988
+ Object.assign(this, kwargs);
3989
+ }
3990
+ toApiJson() {
3991
+ const toReturn = {};
3992
+ if (typeof this.year !== 'undefined') {
3993
+ toReturn['year'] = this.year;
3994
+ }
3995
+ if (typeof this.month !== 'undefined') {
3996
+ toReturn['month'] = this.month;
3997
+ }
3998
+ if (typeof this.day !== 'undefined') {
3999
+ toReturn['day'] = this.day;
4000
+ }
4001
+ if (typeof this.hours !== 'undefined') {
4002
+ toReturn['hours'] = this.hours;
4003
+ }
4004
+ if (typeof this.minutes !== 'undefined') {
4005
+ toReturn['minutes'] = this.minutes;
4006
+ }
4007
+ if (typeof this.seconds !== 'undefined') {
4008
+ toReturn['seconds'] = this.seconds;
4009
+ }
4010
+ if (typeof this.nanos !== 'undefined') {
4011
+ toReturn['nanos'] = this.nanos;
4012
+ }
4013
+ if (typeof this.utcOffset !== 'undefined') {
4014
+ toReturn['utcOffset'] = this.utcOffset;
4015
+ }
4016
+ if (typeof this.timeZone !== 'undefined' && this.timeZone !== null) {
4017
+ toReturn['timeZone'] = 'toApiJson' in this.timeZone ? this.timeZone.toApiJson() : this.timeZone;
4018
+ }
4019
+ return toReturn;
4020
+ }
4021
+ }
4022
+ class TimeZone {
4023
+ static fromProto(proto) {
4024
+ let m = new TimeZone();
4025
+ m = Object.assign(m, proto);
4026
+ return m;
4027
+ }
4028
+ constructor(kwargs) {
4029
+ if (!kwargs) {
4030
+ return;
4031
+ }
4032
+ Object.assign(this, kwargs);
4033
+ }
4034
+ toApiJson() {
4035
+ const toReturn = {};
4036
+ if (typeof this.id !== 'undefined') {
4037
+ toReturn['id'] = this.id;
4038
+ }
4039
+ if (typeof this.version !== 'undefined') {
4040
+ toReturn['version'] = this.version;
4041
+ }
4042
+ return toReturn;
4043
+ }
4044
+ }
4045
+
4041
4046
  // *********************************
4042
4047
 
4043
4048
  var _a;
@@ -4066,9 +4071,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
4066
4071
 
4067
4072
  // *********************************
4068
4073
  class MeetingSourceAPIApiService {
4069
- constructor(http, hostService) {
4070
- this.http = http;
4071
- this.hostService = hostService;
4074
+ constructor() {
4075
+ this.hostService = inject(HostService$1);
4076
+ this.http = inject(HttpClient);
4072
4077
  this._host = this.hostService.hostWithScheme;
4073
4078
  }
4074
4079
  apiOptions() {
@@ -4085,18 +4090,18 @@ class MeetingSourceAPIApiService {
4085
4090
  .pipe(map(resp => MeetingSourceListResponse.fromProto(resp)));
4086
4091
  }
4087
4092
  }
4088
- MeetingSourceAPIApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, deps: [{ token: i1.HttpClient }, { token: HostService$1 }], target: i0.ɵɵFactoryTarget.Injectable });
4093
+ MeetingSourceAPIApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4089
4094
  MeetingSourceAPIApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, providedIn: 'root' });
4090
4095
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, decorators: [{
4091
4096
  type: Injectable,
4092
4097
  args: [{ providedIn: 'root' }]
4093
- }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
4098
+ }] });
4094
4099
 
4095
4100
  // *********************************
4096
4101
  class ZoomApiService {
4097
- constructor(http, hostService) {
4098
- this.http = http;
4099
- this.hostService = hostService;
4102
+ constructor() {
4103
+ this.hostService = inject(HostService$1);
4104
+ this.http = inject(HttpClient);
4100
4105
  this._host = this.hostService.hostWithScheme;
4101
4106
  }
4102
4107
  apiOptions() {
@@ -4113,18 +4118,18 @@ class ZoomApiService {
4113
4118
  .pipe(map(resp => CreateZoomMeetingResponse.fromProto(resp)));
4114
4119
  }
4115
4120
  }
4116
- ZoomApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, deps: [{ token: i1.HttpClient }, { token: HostService$1 }], target: i0.ɵɵFactoryTarget.Injectable });
4121
+ ZoomApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4117
4122
  ZoomApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, providedIn: 'root' });
4118
4123
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, decorators: [{
4119
4124
  type: Injectable,
4120
4125
  args: [{ providedIn: 'root' }]
4121
- }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
4126
+ }] });
4122
4127
 
4123
4128
  // *********************************
4124
4129
  class GoogleMeetApiService {
4125
- constructor(http, hostService) {
4126
- this.http = http;
4127
- this.hostService = hostService;
4130
+ constructor() {
4131
+ this.hostService = inject(HostService$1);
4132
+ this.http = inject(HttpClient);
4128
4133
  this._host = this.hostService.hostWithScheme;
4129
4134
  }
4130
4135
  apiOptions() {
@@ -4141,12 +4146,12 @@ class GoogleMeetApiService {
4141
4146
  .pipe(map(resp => GoogleMeetCreateMeetingResponse.fromProto(resp)));
4142
4147
  }
4143
4148
  }
4144
- GoogleMeetApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, deps: [{ token: i1.HttpClient }, { token: HostService$1 }], target: i0.ɵɵFactoryTarget.Injectable });
4149
+ GoogleMeetApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4145
4150
  GoogleMeetApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, providedIn: 'root' });
4146
4151
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, decorators: [{
4147
4152
  type: Injectable,
4148
4153
  args: [{ providedIn: 'root' }]
4149
- }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
4154
+ }] });
4150
4155
 
4151
4156
  function generateMeetingPassword() {
4152
4157
  const zoomMaxLength = 10;
@@ -4411,6 +4416,8 @@ function MeetingTypeFromApi(req) {
4411
4416
  isClientChoice: req.meetingTypeApi.isClientChoice || false,
4412
4417
  emailSubject: req.meetingTypeApi.emailSubject || '',
4413
4418
  emailDescription: req.meetingTypeApi.emailDescription || '',
4419
+ isPinned: req.meetingTypeApi.isPinned || false,
4420
+ CalendarType: req.meetingTypeApi.calendarType || ''
4414
4421
  };
4415
4422
  }
4416
4423
  function MeetingTypeToApi(req) {
@@ -4437,6 +4444,8 @@ function MeetingTypeToApi(req) {
4437
4444
  emailSubject: m.emailSubject || undefined,
4438
4445
  emailDescription: m.emailDescription || undefined,
4439
4446
  isClientChoice: m.isClientChoice || undefined,
4447
+ isPinned: m.isPinned || undefined,
4448
+ calendarType: m.CalendarType || undefined,
4440
4449
  };
4441
4450
  }
4442
4451
 
@@ -4539,9 +4548,9 @@ class PagedResponse {
4539
4548
 
4540
4549
  // *********************************
4541
4550
  class MeetingGuestApiService {
4542
- constructor(http, hostService) {
4543
- this.http = http;
4544
- this.hostService = hostService;
4551
+ constructor() {
4552
+ this.hostService = inject(HostService$1);
4553
+ this.http = inject(HttpClient);
4545
4554
  this._host = this.hostService.hostWithScheme;
4546
4555
  }
4547
4556
  apiOptions() {
@@ -4601,18 +4610,18 @@ class MeetingGuestApiService {
4601
4610
  .pipe(map(resp => GuestIsHostConfiguredResponse.fromProto(resp)));
4602
4611
  }
4603
4612
  }
4604
- MeetingGuestApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, deps: [{ token: i1.HttpClient }, { token: HostService$1 }], target: i0.ɵɵFactoryTarget.Injectable });
4613
+ MeetingGuestApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4605
4614
  MeetingGuestApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, providedIn: 'root' });
4606
4615
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, decorators: [{
4607
4616
  type: Injectable,
4608
4617
  args: [{ providedIn: 'root' }]
4609
- }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
4618
+ }] });
4610
4619
 
4611
4620
  // *********************************
4612
4621
  class MeetingHostApiService {
4613
- constructor(http, hostService) {
4614
- this.http = http;
4615
- this.hostService = hostService;
4622
+ constructor() {
4623
+ this.hostService = inject(HostService$1);
4624
+ this.http = inject(HttpClient);
4616
4625
  this._host = this.hostService.hostWithScheme;
4617
4626
  }
4618
4627
  apiOptions() {
@@ -4767,12 +4776,12 @@ class MeetingHostApiService {
4767
4776
  .pipe(map(resp => IsCalendarConfiguredResponse.fromProto(resp)));
4768
4777
  }
4769
4778
  }
4770
- MeetingHostApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, deps: [{ token: i1.HttpClient }, { token: HostService$1 }], target: i0.ɵɵFactoryTarget.Injectable });
4779
+ MeetingHostApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4771
4780
  MeetingHostApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, providedIn: 'root' });
4772
4781
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, decorators: [{
4773
4782
  type: Injectable,
4774
4783
  args: [{ providedIn: 'root' }]
4775
- }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
4784
+ }] });
4776
4785
 
4777
4786
  // *********************************
4778
4787