@vendasta/meetings 1.5.8 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/_internal/enums/index.mjs +2 -2
- 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-external.interface.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-external.api.service.mjs +8 -7
- 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 +4 -4
- package/esm2020/lib/_internal/objects/meeting-external.mjs +2 -2
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +14 -2
- package/esm2020/lib/_internal/objects/meeting-host.mjs +20 -20
- package/esm2020/lib/_internal/objects/shared.mjs +3 -2
- package/esm2020/lib/_internal/zoom.api.service.mjs +8 -7
- package/fesm2015/vendasta-meetings.mjs +235 -222
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +235 -222
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/enums/index.d.ts +1 -1
- package/lib/_internal/google-meet.api.service.d.ts +5 -2
- package/lib/_internal/interfaces/index.d.ts +3 -3
- package/lib/_internal/interfaces/meeting-external.interface.d.ts +1 -1
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +3 -1
- package/lib/_internal/interfaces/meeting-host.interface.d.ts +7 -7
- package/lib/_internal/interfaces/shared.interface.d.ts +2 -1
- package/lib/_internal/meeting-external.api.service.d.ts +5 -3
- 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 +3 -3
- package/lib/_internal/objects/meeting-external.d.ts +1 -1
- package/lib/_internal/objects/meeting-guest.d.ts +3 -1
- package/lib/_internal/objects/meeting-host.d.ts +14 -14
- 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
|
|
@@ -198,6 +199,24 @@ var FeatureFlagFieldType;
|
|
|
198
199
|
FeatureFlagFieldType[FeatureFlagFieldType["FEATURE_FLAG_FIELD_TYPE_CALENDAR_ID"] = 0] = "FEATURE_FLAG_FIELD_TYPE_CALENDAR_ID";
|
|
199
200
|
})(FeatureFlagFieldType || (FeatureFlagFieldType = {}));
|
|
200
201
|
|
|
202
|
+
// *********************************
|
|
203
|
+
// Code generated by sdkgen
|
|
204
|
+
// DO NOT EDIT!.
|
|
205
|
+
//
|
|
206
|
+
// Enums.
|
|
207
|
+
// *********************************
|
|
208
|
+
var DayOfWeek;
|
|
209
|
+
(function (DayOfWeek) {
|
|
210
|
+
DayOfWeek[DayOfWeek["DAY_OF_WEEK_UNSPECIFIED"] = 0] = "DAY_OF_WEEK_UNSPECIFIED";
|
|
211
|
+
DayOfWeek[DayOfWeek["MONDAY"] = 1] = "MONDAY";
|
|
212
|
+
DayOfWeek[DayOfWeek["TUESDAY"] = 2] = "TUESDAY";
|
|
213
|
+
DayOfWeek[DayOfWeek["WEDNESDAY"] = 3] = "WEDNESDAY";
|
|
214
|
+
DayOfWeek[DayOfWeek["THURSDAY"] = 4] = "THURSDAY";
|
|
215
|
+
DayOfWeek[DayOfWeek["FRIDAY"] = 5] = "FRIDAY";
|
|
216
|
+
DayOfWeek[DayOfWeek["SATURDAY"] = 6] = "SATURDAY";
|
|
217
|
+
DayOfWeek[DayOfWeek["SUNDAY"] = 7] = "SUNDAY";
|
|
218
|
+
})(DayOfWeek || (DayOfWeek = {}));
|
|
219
|
+
|
|
201
220
|
// *********************************
|
|
202
221
|
// Code generated by sdkgen
|
|
203
222
|
// DO NOT EDIT!.
|
|
@@ -234,24 +253,6 @@ var Weekday;
|
|
|
234
253
|
Weekday[Weekday["WEEKDAY_SUNDAY"] = 7] = "WEEKDAY_SUNDAY";
|
|
235
254
|
})(Weekday || (Weekday = {}));
|
|
236
255
|
|
|
237
|
-
// *********************************
|
|
238
|
-
// Code generated by sdkgen
|
|
239
|
-
// DO NOT EDIT!.
|
|
240
|
-
//
|
|
241
|
-
// Enums.
|
|
242
|
-
// *********************************
|
|
243
|
-
var DayOfWeek;
|
|
244
|
-
(function (DayOfWeek) {
|
|
245
|
-
DayOfWeek[DayOfWeek["DAY_OF_WEEK_UNSPECIFIED"] = 0] = "DAY_OF_WEEK_UNSPECIFIED";
|
|
246
|
-
DayOfWeek[DayOfWeek["MONDAY"] = 1] = "MONDAY";
|
|
247
|
-
DayOfWeek[DayOfWeek["TUESDAY"] = 2] = "TUESDAY";
|
|
248
|
-
DayOfWeek[DayOfWeek["WEDNESDAY"] = 3] = "WEDNESDAY";
|
|
249
|
-
DayOfWeek[DayOfWeek["THURSDAY"] = 4] = "THURSDAY";
|
|
250
|
-
DayOfWeek[DayOfWeek["FRIDAY"] = 5] = "FRIDAY";
|
|
251
|
-
DayOfWeek[DayOfWeek["SATURDAY"] = 6] = "SATURDAY";
|
|
252
|
-
DayOfWeek[DayOfWeek["SUNDAY"] = 7] = "SUNDAY";
|
|
253
|
-
})(DayOfWeek || (DayOfWeek = {}));
|
|
254
|
-
|
|
255
256
|
// *********************************
|
|
256
257
|
|
|
257
258
|
function enumStringToValue$d(enumRef, value) {
|
|
@@ -1415,12 +1416,125 @@ function enumStringToValue$a(enumRef, value) {
|
|
|
1415
1416
|
}
|
|
1416
1417
|
return enumRef[value];
|
|
1417
1418
|
}
|
|
1419
|
+
class TimeOfDay {
|
|
1420
|
+
static fromProto(proto) {
|
|
1421
|
+
let m = new TimeOfDay();
|
|
1422
|
+
m = Object.assign(m, proto);
|
|
1423
|
+
return m;
|
|
1424
|
+
}
|
|
1425
|
+
constructor(kwargs) {
|
|
1426
|
+
if (!kwargs) {
|
|
1427
|
+
return;
|
|
1428
|
+
}
|
|
1429
|
+
Object.assign(this, kwargs);
|
|
1430
|
+
}
|
|
1431
|
+
toApiJson() {
|
|
1432
|
+
const toReturn = {};
|
|
1433
|
+
if (typeof this.hours !== 'undefined') {
|
|
1434
|
+
toReturn['hours'] = this.hours;
|
|
1435
|
+
}
|
|
1436
|
+
if (typeof this.minutes !== 'undefined') {
|
|
1437
|
+
toReturn['minutes'] = this.minutes;
|
|
1438
|
+
}
|
|
1439
|
+
if (typeof this.seconds !== 'undefined') {
|
|
1440
|
+
toReturn['seconds'] = this.seconds;
|
|
1441
|
+
}
|
|
1442
|
+
if (typeof this.nanos !== 'undefined') {
|
|
1443
|
+
toReturn['nanos'] = this.nanos;
|
|
1444
|
+
}
|
|
1445
|
+
return toReturn;
|
|
1446
|
+
}
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
function enumStringToValue$9(enumRef, value) {
|
|
1450
|
+
if (typeof value === 'number') {
|
|
1451
|
+
return value;
|
|
1452
|
+
}
|
|
1453
|
+
return enumRef[value];
|
|
1454
|
+
}
|
|
1455
|
+
class DateTime {
|
|
1456
|
+
static fromProto(proto) {
|
|
1457
|
+
let m = new DateTime();
|
|
1458
|
+
m = Object.assign(m, proto);
|
|
1459
|
+
if (proto.timeZone) {
|
|
1460
|
+
m.timeZone = TimeZone.fromProto(proto.timeZone);
|
|
1461
|
+
}
|
|
1462
|
+
return m;
|
|
1463
|
+
}
|
|
1464
|
+
constructor(kwargs) {
|
|
1465
|
+
if (!kwargs) {
|
|
1466
|
+
return;
|
|
1467
|
+
}
|
|
1468
|
+
Object.assign(this, kwargs);
|
|
1469
|
+
}
|
|
1470
|
+
toApiJson() {
|
|
1471
|
+
const toReturn = {};
|
|
1472
|
+
if (typeof this.year !== 'undefined') {
|
|
1473
|
+
toReturn['year'] = this.year;
|
|
1474
|
+
}
|
|
1475
|
+
if (typeof this.month !== 'undefined') {
|
|
1476
|
+
toReturn['month'] = this.month;
|
|
1477
|
+
}
|
|
1478
|
+
if (typeof this.day !== 'undefined') {
|
|
1479
|
+
toReturn['day'] = this.day;
|
|
1480
|
+
}
|
|
1481
|
+
if (typeof this.hours !== 'undefined') {
|
|
1482
|
+
toReturn['hours'] = this.hours;
|
|
1483
|
+
}
|
|
1484
|
+
if (typeof this.minutes !== 'undefined') {
|
|
1485
|
+
toReturn['minutes'] = this.minutes;
|
|
1486
|
+
}
|
|
1487
|
+
if (typeof this.seconds !== 'undefined') {
|
|
1488
|
+
toReturn['seconds'] = this.seconds;
|
|
1489
|
+
}
|
|
1490
|
+
if (typeof this.nanos !== 'undefined') {
|
|
1491
|
+
toReturn['nanos'] = this.nanos;
|
|
1492
|
+
}
|
|
1493
|
+
if (typeof this.utcOffset !== 'undefined') {
|
|
1494
|
+
toReturn['utcOffset'] = this.utcOffset;
|
|
1495
|
+
}
|
|
1496
|
+
if (typeof this.timeZone !== 'undefined' && this.timeZone !== null) {
|
|
1497
|
+
toReturn['timeZone'] = 'toApiJson' in this.timeZone ? this.timeZone.toApiJson() : this.timeZone;
|
|
1498
|
+
}
|
|
1499
|
+
return toReturn;
|
|
1500
|
+
}
|
|
1501
|
+
}
|
|
1502
|
+
class TimeZone {
|
|
1503
|
+
static fromProto(proto) {
|
|
1504
|
+
let m = new TimeZone();
|
|
1505
|
+
m = Object.assign(m, proto);
|
|
1506
|
+
return m;
|
|
1507
|
+
}
|
|
1508
|
+
constructor(kwargs) {
|
|
1509
|
+
if (!kwargs) {
|
|
1510
|
+
return;
|
|
1511
|
+
}
|
|
1512
|
+
Object.assign(this, kwargs);
|
|
1513
|
+
}
|
|
1514
|
+
toApiJson() {
|
|
1515
|
+
const toReturn = {};
|
|
1516
|
+
if (typeof this.id !== 'undefined') {
|
|
1517
|
+
toReturn['id'] = this.id;
|
|
1518
|
+
}
|
|
1519
|
+
if (typeof this.version !== 'undefined') {
|
|
1520
|
+
toReturn['version'] = this.version;
|
|
1521
|
+
}
|
|
1522
|
+
return toReturn;
|
|
1523
|
+
}
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1526
|
+
function enumStringToValue$8(enumRef, value) {
|
|
1527
|
+
if (typeof value === 'number') {
|
|
1528
|
+
return value;
|
|
1529
|
+
}
|
|
1530
|
+
return enumRef[value];
|
|
1531
|
+
}
|
|
1418
1532
|
class Answer {
|
|
1419
1533
|
static fromProto(proto) {
|
|
1420
1534
|
let m = new Answer();
|
|
1421
1535
|
m = Object.assign(m, proto);
|
|
1422
1536
|
if (proto.type) {
|
|
1423
|
-
m.type = enumStringToValue$
|
|
1537
|
+
m.type = enumStringToValue$8(FormFieldType, proto.type);
|
|
1424
1538
|
}
|
|
1425
1539
|
return m;
|
|
1426
1540
|
}
|
|
@@ -1562,7 +1676,7 @@ class Calendar {
|
|
|
1562
1676
|
m.applicationContext = Object.keys(proto.applicationContext).reduce((obj, k) => { obj[k] = proto.applicationContext[k]; return obj; }, {});
|
|
1563
1677
|
}
|
|
1564
1678
|
if (proto.calendarType) {
|
|
1565
|
-
m.calendarType = enumStringToValue$
|
|
1679
|
+
m.calendarType = enumStringToValue$8(CalendarType, proto.calendarType);
|
|
1566
1680
|
}
|
|
1567
1681
|
return m;
|
|
1568
1682
|
}
|
|
@@ -1870,7 +1984,7 @@ class Preferences {
|
|
|
1870
1984
|
m.timezone = TimeZone.fromProto(proto.timezone);
|
|
1871
1985
|
}
|
|
1872
1986
|
if (proto.meetingIntegration) {
|
|
1873
|
-
m.meetingIntegration = enumStringToValue$
|
|
1987
|
+
m.meetingIntegration = enumStringToValue$8(MeetingSource, proto.meetingIntegration);
|
|
1874
1988
|
}
|
|
1875
1989
|
if (proto.availabilityIncrement) {
|
|
1876
1990
|
m.availabilityIncrement = parseInt(proto.availabilityIncrement, 10);
|
|
@@ -1885,10 +1999,10 @@ class Preferences {
|
|
|
1885
1999
|
m.bufferDurationBeforeMeeting = parseInt(proto.bufferDurationBeforeMeeting, 10);
|
|
1886
2000
|
}
|
|
1887
2001
|
if (proto.calendarIntegration) {
|
|
1888
|
-
m.calendarIntegration = enumStringToValue$
|
|
2002
|
+
m.calendarIntegration = enumStringToValue$8(CalendarSource, proto.calendarIntegration);
|
|
1889
2003
|
}
|
|
1890
2004
|
if (proto.onBoardingState) {
|
|
1891
|
-
m.onBoardingState = enumStringToValue$
|
|
2005
|
+
m.onBoardingState = enumStringToValue$8(OnBoardingState, proto.onBoardingState);
|
|
1892
2006
|
}
|
|
1893
2007
|
return m;
|
|
1894
2008
|
}
|
|
@@ -1960,7 +2074,7 @@ class TimeRange {
|
|
|
1960
2074
|
}
|
|
1961
2075
|
}
|
|
1962
2076
|
|
|
1963
|
-
function enumStringToValue$
|
|
2077
|
+
function enumStringToValue$7(enumRef, value) {
|
|
1964
2078
|
if (typeof value === 'number') {
|
|
1965
2079
|
return value;
|
|
1966
2080
|
}
|
|
@@ -1996,7 +2110,7 @@ class DateRange {
|
|
|
1996
2110
|
}
|
|
1997
2111
|
}
|
|
1998
2112
|
|
|
1999
|
-
function enumStringToValue$
|
|
2113
|
+
function enumStringToValue$6(enumRef, value) {
|
|
2000
2114
|
if (typeof value === 'number') {
|
|
2001
2115
|
return value;
|
|
2002
2116
|
}
|
|
@@ -2007,7 +2121,7 @@ class EventTypeDateRange {
|
|
|
2007
2121
|
let m = new EventTypeDateRange();
|
|
2008
2122
|
m = Object.assign(m, proto);
|
|
2009
2123
|
if (proto.dateRangeType) {
|
|
2010
|
-
m.dateRangeType = enumStringToValue$
|
|
2124
|
+
m.dateRangeType = enumStringToValue$6(DateRangeType, proto.dateRangeType);
|
|
2011
2125
|
}
|
|
2012
2126
|
if (proto.customDateRange) {
|
|
2013
2127
|
m.customDateRange = DateRange.fromProto(proto.customDateRange);
|
|
@@ -2042,7 +2156,7 @@ class Field {
|
|
|
2042
2156
|
let m = new Field();
|
|
2043
2157
|
m = Object.assign(m, proto);
|
|
2044
2158
|
if (proto.type) {
|
|
2045
|
-
m.type = enumStringToValue$
|
|
2159
|
+
m.type = enumStringToValue$6(FormFieldType, proto.type);
|
|
2046
2160
|
}
|
|
2047
2161
|
return m;
|
|
2048
2162
|
}
|
|
@@ -2109,7 +2223,7 @@ class MeetingType {
|
|
|
2109
2223
|
m.noticeTime = parseInt(proto.noticeTime, 10);
|
|
2110
2224
|
}
|
|
2111
2225
|
if (proto.locationType) {
|
|
2112
|
-
m.locationType = enumStringToValue$
|
|
2226
|
+
m.locationType = enumStringToValue$6(MeetingLocationType, proto.locationType);
|
|
2113
2227
|
}
|
|
2114
2228
|
if (proto.hostUsers) {
|
|
2115
2229
|
m.hostUsers = proto.hostUsers.map(HostUser.fromProto);
|
|
@@ -2121,7 +2235,7 @@ class MeetingType {
|
|
|
2121
2235
|
m.dateRange = EventTypeDateRange.fromProto(proto.dateRange);
|
|
2122
2236
|
}
|
|
2123
2237
|
if (proto.meetingType) {
|
|
2124
|
-
m.meetingType = enumStringToValue$
|
|
2238
|
+
m.meetingType = enumStringToValue$6(TeamEventMeetingType, proto.meetingType);
|
|
2125
2239
|
}
|
|
2126
2240
|
if (proto.attendeeCount) {
|
|
2127
2241
|
m.attendeeCount = parseInt(proto.attendeeCount, 10);
|
|
@@ -2133,7 +2247,7 @@ class MeetingType {
|
|
|
2133
2247
|
m.hostOrderDetails = proto.hostOrderDetails.map(HostOrderDetails.fromProto);
|
|
2134
2248
|
}
|
|
2135
2249
|
if (proto.notificationType) {
|
|
2136
|
-
m.notificationType = enumStringToValue$
|
|
2250
|
+
m.notificationType = enumStringToValue$6(NotificationType, proto.notificationType);
|
|
2137
2251
|
}
|
|
2138
2252
|
return m;
|
|
2139
2253
|
}
|
|
@@ -2258,7 +2372,7 @@ class RegistrationCutOff {
|
|
|
2258
2372
|
let m = new RegistrationCutOff();
|
|
2259
2373
|
m = Object.assign(m, proto);
|
|
2260
2374
|
if (proto.unit) {
|
|
2261
|
-
m.unit = enumStringToValue$
|
|
2375
|
+
m.unit = enumStringToValue$6(RegistrationCutOffUnit, proto.unit);
|
|
2262
2376
|
}
|
|
2263
2377
|
if (proto.value) {
|
|
2264
2378
|
m.value = parseInt(proto.value, 10);
|
|
@@ -2287,7 +2401,7 @@ class RelativeDateRange {
|
|
|
2287
2401
|
let m = new RelativeDateRange();
|
|
2288
2402
|
m = Object.assign(m, proto);
|
|
2289
2403
|
if (proto.unit) {
|
|
2290
|
-
m.unit = enumStringToValue$
|
|
2404
|
+
m.unit = enumStringToValue$6(RelativeTimeUnit, proto.unit);
|
|
2291
2405
|
}
|
|
2292
2406
|
if (proto.value) {
|
|
2293
2407
|
m.value = parseInt(proto.value, 10);
|
|
@@ -2312,7 +2426,7 @@ class RelativeDateRange {
|
|
|
2312
2426
|
}
|
|
2313
2427
|
}
|
|
2314
2428
|
|
|
2315
|
-
function enumStringToValue$
|
|
2429
|
+
function enumStringToValue$5(enumRef, value) {
|
|
2316
2430
|
if (typeof value === 'number') {
|
|
2317
2431
|
return value;
|
|
2318
2432
|
}
|
|
@@ -2457,7 +2571,7 @@ class Service {
|
|
|
2457
2571
|
}
|
|
2458
2572
|
}
|
|
2459
2573
|
|
|
2460
|
-
function enumStringToValue$
|
|
2574
|
+
function enumStringToValue$4(enumRef, value) {
|
|
2461
2575
|
if (typeof value === 'number') {
|
|
2462
2576
|
return value;
|
|
2463
2577
|
}
|
|
@@ -2483,7 +2597,7 @@ class BookMeetingRequest {
|
|
|
2483
2597
|
m.formAnswers = Answers.fromProto(proto.formAnswers);
|
|
2484
2598
|
}
|
|
2485
2599
|
if (proto.bookingSource) {
|
|
2486
|
-
m.bookingSource = enumStringToValue$
|
|
2600
|
+
m.bookingSource = enumStringToValue$4(BookingSource, proto.bookingSource);
|
|
2487
2601
|
}
|
|
2488
2602
|
return m;
|
|
2489
2603
|
}
|
|
@@ -2562,7 +2676,7 @@ class CheckFeatureFlagRequest {
|
|
|
2562
2676
|
let m = new CheckFeatureFlagRequest();
|
|
2563
2677
|
m = Object.assign(m, proto);
|
|
2564
2678
|
if (proto.fieldType) {
|
|
2565
|
-
m.fieldType = enumStringToValue$
|
|
2679
|
+
m.fieldType = enumStringToValue$4(FeatureFlagFieldType, proto.fieldType);
|
|
2566
2680
|
}
|
|
2567
2681
|
return m;
|
|
2568
2682
|
}
|
|
@@ -3123,10 +3237,10 @@ class GuestGetBookedMeetingResponse {
|
|
|
3123
3237
|
m.timeZone = TimeZone.fromProto(proto.timeZone);
|
|
3124
3238
|
}
|
|
3125
3239
|
if (proto.locationType) {
|
|
3126
|
-
m.locationType = enumStringToValue$
|
|
3240
|
+
m.locationType = enumStringToValue$4(MeetingLocationType, proto.locationType);
|
|
3127
3241
|
}
|
|
3128
3242
|
if (proto.meetingType) {
|
|
3129
|
-
m.meetingType = enumStringToValue$
|
|
3243
|
+
m.meetingType = enumStringToValue$4(TeamEventMeetingType, proto.meetingType);
|
|
3130
3244
|
}
|
|
3131
3245
|
return m;
|
|
3132
3246
|
}
|
|
@@ -3182,14 +3296,20 @@ class GuestGetBookedMeetingResponseV2 {
|
|
|
3182
3296
|
m.endTime = new Date(proto.endTime);
|
|
3183
3297
|
}
|
|
3184
3298
|
if (proto.meetingSource) {
|
|
3185
|
-
m.meetingSource = enumStringToValue$
|
|
3299
|
+
m.meetingSource = enumStringToValue$4(MeetingSource, proto.meetingSource);
|
|
3186
3300
|
}
|
|
3187
3301
|
if (proto.meetingLocationType) {
|
|
3188
|
-
m.meetingLocationType = enumStringToValue$
|
|
3302
|
+
m.meetingLocationType = enumStringToValue$4(MeetingLocation, proto.meetingLocationType);
|
|
3189
3303
|
}
|
|
3190
3304
|
if (proto.timeZone) {
|
|
3191
3305
|
m.timeZone = TimeZone.fromProto(proto.timeZone);
|
|
3192
3306
|
}
|
|
3307
|
+
if (proto.previousStartTime) {
|
|
3308
|
+
m.previousStartTime = new Date(proto.previousStartTime);
|
|
3309
|
+
}
|
|
3310
|
+
if (proto.previousEndTime) {
|
|
3311
|
+
m.previousEndTime = new Date(proto.previousEndTime);
|
|
3312
|
+
}
|
|
3193
3313
|
return m;
|
|
3194
3314
|
}
|
|
3195
3315
|
constructor(kwargs) {
|
|
@@ -3245,6 +3365,12 @@ class GuestGetBookedMeetingResponseV2 {
|
|
|
3245
3365
|
if (typeof this.bookingUrl !== 'undefined') {
|
|
3246
3366
|
toReturn['bookingUrl'] = this.bookingUrl;
|
|
3247
3367
|
}
|
|
3368
|
+
if (typeof this.previousStartTime !== 'undefined' && this.previousStartTime !== null) {
|
|
3369
|
+
toReturn['previousStartTime'] = 'toApiJson' in this.previousStartTime ? this.previousStartTime.toApiJson() : this.previousStartTime;
|
|
3370
|
+
}
|
|
3371
|
+
if (typeof this.previousEndTime !== 'undefined' && this.previousEndTime !== null) {
|
|
3372
|
+
toReturn['previousEndTime'] = 'toApiJson' in this.previousEndTime ? this.previousEndTime.toApiJson() : this.previousEndTime;
|
|
3373
|
+
}
|
|
3248
3374
|
return toReturn;
|
|
3249
3375
|
}
|
|
3250
3376
|
}
|
|
@@ -3562,7 +3688,7 @@ class RegisterSessionRequest {
|
|
|
3562
3688
|
}
|
|
3563
3689
|
}
|
|
3564
3690
|
|
|
3565
|
-
function enumStringToValue$
|
|
3691
|
+
function enumStringToValue$3(enumRef, value) {
|
|
3566
3692
|
if (typeof value === 'number') {
|
|
3567
3693
|
return value;
|
|
3568
3694
|
}
|
|
@@ -3749,7 +3875,7 @@ class EventType {
|
|
|
3749
3875
|
let m = new EventType();
|
|
3750
3876
|
m = Object.assign(m, proto);
|
|
3751
3877
|
if (proto.locationType) {
|
|
3752
|
-
m.locationType = enumStringToValue$
|
|
3878
|
+
m.locationType = enumStringToValue$3(MeetingLocationType, proto.locationType);
|
|
3753
3879
|
}
|
|
3754
3880
|
if (proto.hostUsers) {
|
|
3755
3881
|
m.hostUsers = proto.hostUsers.map(HostUser.fromProto);
|
|
@@ -3758,7 +3884,7 @@ class EventType {
|
|
|
3758
3884
|
m.bookingWindow = EventTypeDateRange.fromProto(proto.bookingWindow);
|
|
3759
3885
|
}
|
|
3760
3886
|
if (proto.meetingType) {
|
|
3761
|
-
m.meetingType = enumStringToValue$
|
|
3887
|
+
m.meetingType = enumStringToValue$3(TeamEventMeetingType, proto.meetingType);
|
|
3762
3888
|
}
|
|
3763
3889
|
if (proto.hostOrderDetails) {
|
|
3764
3890
|
m.hostOrderDetails = proto.hostOrderDetails.map(HostOrderDetails.fromProto);
|
|
@@ -4306,7 +4432,7 @@ class UserResponse {
|
|
|
4306
4432
|
}
|
|
4307
4433
|
}
|
|
4308
4434
|
|
|
4309
|
-
function enumStringToValue$
|
|
4435
|
+
function enumStringToValue$2(enumRef, value) {
|
|
4310
4436
|
if (typeof value === 'number') {
|
|
4311
4437
|
return value;
|
|
4312
4438
|
}
|
|
@@ -4333,15 +4459,15 @@ class FieldMask {
|
|
|
4333
4459
|
}
|
|
4334
4460
|
}
|
|
4335
4461
|
|
|
4336
|
-
function enumStringToValue$
|
|
4462
|
+
function enumStringToValue$1(enumRef, value) {
|
|
4337
4463
|
if (typeof value === 'number') {
|
|
4338
4464
|
return value;
|
|
4339
4465
|
}
|
|
4340
4466
|
return enumRef[value];
|
|
4341
4467
|
}
|
|
4342
|
-
class
|
|
4468
|
+
class EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry {
|
|
4343
4469
|
static fromProto(proto) {
|
|
4344
|
-
let m = new
|
|
4470
|
+
let m = new EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry();
|
|
4345
4471
|
m = Object.assign(m, proto);
|
|
4346
4472
|
return m;
|
|
4347
4473
|
}
|
|
@@ -4362,9 +4488,9 @@ class IsCalendarConfiguredRequestApplicationContextPropertiesEntry {
|
|
|
4362
4488
|
return toReturn;
|
|
4363
4489
|
}
|
|
4364
4490
|
}
|
|
4365
|
-
class
|
|
4491
|
+
class IsCalendarConfiguredRequestApplicationContextPropertiesEntry {
|
|
4366
4492
|
static fromProto(proto) {
|
|
4367
|
-
let m = new
|
|
4493
|
+
let m = new IsCalendarConfiguredRequestApplicationContextPropertiesEntry();
|
|
4368
4494
|
m = Object.assign(m, proto);
|
|
4369
4495
|
return m;
|
|
4370
4496
|
}
|
|
@@ -4413,7 +4539,7 @@ class AvailabilityRule {
|
|
|
4413
4539
|
let m = new AvailabilityRule();
|
|
4414
4540
|
m = Object.assign(m, proto);
|
|
4415
4541
|
if (proto.day) {
|
|
4416
|
-
m.day = enumStringToValue$
|
|
4542
|
+
m.day = enumStringToValue$1(DayOfWeek, proto.day);
|
|
4417
4543
|
}
|
|
4418
4544
|
if (proto.timeSlot) {
|
|
4419
4545
|
m.timeSlot = TimeRange.fromProto(proto.timeSlot);
|
|
@@ -5237,13 +5363,10 @@ class EventTypeSummary {
|
|
|
5237
5363
|
return toReturn;
|
|
5238
5364
|
}
|
|
5239
5365
|
}
|
|
5240
|
-
class
|
|
5366
|
+
class ListAvailabilityRequestFilters {
|
|
5241
5367
|
static fromProto(proto) {
|
|
5242
|
-
let m = new
|
|
5368
|
+
let m = new ListAvailabilityRequestFilters();
|
|
5243
5369
|
m = Object.assign(m, proto);
|
|
5244
|
-
if (proto.timeSpan) {
|
|
5245
|
-
m.timeSpan = DateRange.fromProto(proto.timeSpan);
|
|
5246
|
-
}
|
|
5247
5370
|
return m;
|
|
5248
5371
|
}
|
|
5249
5372
|
constructor(kwargs) {
|
|
@@ -5254,22 +5377,22 @@ class ListBookedMeetingsRequestFilters {
|
|
|
5254
5377
|
}
|
|
5255
5378
|
toApiJson() {
|
|
5256
5379
|
const toReturn = {};
|
|
5257
|
-
if (typeof this.meetingTypeIds !== 'undefined') {
|
|
5258
|
-
toReturn['meetingTypeIds'] = this.meetingTypeIds;
|
|
5259
|
-
}
|
|
5260
5380
|
if (typeof this.hostId !== 'undefined') {
|
|
5261
5381
|
toReturn['hostId'] = this.hostId;
|
|
5262
5382
|
}
|
|
5263
|
-
if (typeof this.
|
|
5264
|
-
toReturn['
|
|
5383
|
+
if (typeof this.meetingTypeId !== 'undefined') {
|
|
5384
|
+
toReturn['meetingTypeId'] = this.meetingTypeId;
|
|
5265
5385
|
}
|
|
5266
5386
|
return toReturn;
|
|
5267
5387
|
}
|
|
5268
5388
|
}
|
|
5269
|
-
class
|
|
5389
|
+
class ListBookedMeetingsRequestFilters {
|
|
5270
5390
|
static fromProto(proto) {
|
|
5271
|
-
let m = new
|
|
5391
|
+
let m = new ListBookedMeetingsRequestFilters();
|
|
5272
5392
|
m = Object.assign(m, proto);
|
|
5393
|
+
if (proto.timeSpan) {
|
|
5394
|
+
m.timeSpan = DateRange.fromProto(proto.timeSpan);
|
|
5395
|
+
}
|
|
5273
5396
|
return m;
|
|
5274
5397
|
}
|
|
5275
5398
|
constructor(kwargs) {
|
|
@@ -5280,11 +5403,14 @@ class ListAvailabilityRequestFilters {
|
|
|
5280
5403
|
}
|
|
5281
5404
|
toApiJson() {
|
|
5282
5405
|
const toReturn = {};
|
|
5406
|
+
if (typeof this.meetingTypeIds !== 'undefined') {
|
|
5407
|
+
toReturn['meetingTypeIds'] = this.meetingTypeIds;
|
|
5408
|
+
}
|
|
5283
5409
|
if (typeof this.hostId !== 'undefined') {
|
|
5284
5410
|
toReturn['hostId'] = this.hostId;
|
|
5285
5411
|
}
|
|
5286
|
-
if (typeof this.
|
|
5287
|
-
toReturn['
|
|
5412
|
+
if (typeof this.timeSpan !== 'undefined' && this.timeSpan !== null) {
|
|
5413
|
+
toReturn['timeSpan'] = 'toApiJson' in this.timeSpan ? this.timeSpan.toApiJson() : this.timeSpan;
|
|
5288
5414
|
}
|
|
5289
5415
|
return toReturn;
|
|
5290
5416
|
}
|
|
@@ -5521,7 +5647,7 @@ class HostBookMeetingRequest {
|
|
|
5521
5647
|
let m = new HostBookMeetingRequest();
|
|
5522
5648
|
m = Object.assign(m, proto);
|
|
5523
5649
|
if (proto.meetingSource) {
|
|
5524
|
-
m.meetingSource = enumStringToValue$
|
|
5650
|
+
m.meetingSource = enumStringToValue$1(MeetingSource, proto.meetingSource);
|
|
5525
5651
|
}
|
|
5526
5652
|
if (proto.timeSlot) {
|
|
5527
5653
|
m.timeSlot = DateRange.fromProto(proto.timeSlot);
|
|
@@ -5530,7 +5656,7 @@ class HostBookMeetingRequest {
|
|
|
5530
5656
|
m.attendees = proto.attendees.map(Contact.fromProto);
|
|
5531
5657
|
}
|
|
5532
5658
|
if (proto.bookingSource) {
|
|
5533
|
-
m.bookingSource = enumStringToValue$
|
|
5659
|
+
m.bookingSource = enumStringToValue$1(BookingSource, proto.bookingSource);
|
|
5534
5660
|
}
|
|
5535
5661
|
return m;
|
|
5536
5662
|
}
|
|
@@ -5594,7 +5720,7 @@ class HostBookSessionRequest {
|
|
|
5594
5720
|
let m = new HostBookSessionRequest();
|
|
5595
5721
|
m = Object.assign(m, proto);
|
|
5596
5722
|
if (proto.locationType) {
|
|
5597
|
-
m.locationType = enumStringToValue$
|
|
5723
|
+
m.locationType = enumStringToValue$1(MeetingLocationType, proto.locationType);
|
|
5598
5724
|
}
|
|
5599
5725
|
if (proto.maxAttendees) {
|
|
5600
5726
|
m.maxAttendees = parseInt(proto.maxAttendees, 10);
|
|
@@ -5982,7 +6108,7 @@ class IsHostConfiguredResponse {
|
|
|
5982
6108
|
let m = new IsHostConfiguredResponse();
|
|
5983
6109
|
m = Object.assign(m, proto);
|
|
5984
6110
|
if (proto.onBoardingState) {
|
|
5985
|
-
m.onBoardingState = enumStringToValue$
|
|
6111
|
+
m.onBoardingState = enumStringToValue$1(OnBoardingState, proto.onBoardingState);
|
|
5986
6112
|
}
|
|
5987
6113
|
return m;
|
|
5988
6114
|
}
|
|
@@ -6466,7 +6592,7 @@ class Meeting {
|
|
|
6466
6592
|
m.hostDetails = proto.hostDetails.map(HostDetails.fromProto);
|
|
6467
6593
|
}
|
|
6468
6594
|
if (proto.meetingType) {
|
|
6469
|
-
m.meetingType = enumStringToValue$
|
|
6595
|
+
m.meetingType = enumStringToValue$1(TeamEventMeetingType, proto.meetingType);
|
|
6470
6596
|
}
|
|
6471
6597
|
if (proto.maxAttendeeCount) {
|
|
6472
6598
|
m.maxAttendeeCount = parseInt(proto.maxAttendeeCount, 10);
|
|
@@ -6630,19 +6756,19 @@ class RecurrenceConfig {
|
|
|
6630
6756
|
let m = new RecurrenceConfig();
|
|
6631
6757
|
m = Object.assign(m, proto);
|
|
6632
6758
|
if (proto.recurrence) {
|
|
6633
|
-
m.recurrence = enumStringToValue$
|
|
6759
|
+
m.recurrence = enumStringToValue$1(Recurrence, proto.recurrence);
|
|
6634
6760
|
}
|
|
6635
6761
|
if (proto.startTime) {
|
|
6636
6762
|
m.startTime = new Date(proto.startTime);
|
|
6637
6763
|
}
|
|
6638
6764
|
if (proto.repeatOnDays) {
|
|
6639
|
-
m.repeatOnDays = proto.repeatOnDays.map((v) => enumStringToValue$
|
|
6765
|
+
m.repeatOnDays = proto.repeatOnDays.map((v) => enumStringToValue$1(Weekday, v));
|
|
6640
6766
|
}
|
|
6641
6767
|
if (proto.recurrenceEnd) {
|
|
6642
6768
|
m.recurrenceEnd = RecurrenceEnd.fromProto(proto.recurrenceEnd);
|
|
6643
6769
|
}
|
|
6644
6770
|
if (proto.registrationMode) {
|
|
6645
|
-
m.registrationMode = enumStringToValue$
|
|
6771
|
+
m.registrationMode = enumStringToValue$1(RegistrationMode, proto.registrationMode);
|
|
6646
6772
|
}
|
|
6647
6773
|
return m;
|
|
6648
6774
|
}
|
|
@@ -6767,7 +6893,7 @@ class SessionAttendees {
|
|
|
6767
6893
|
m.formAnswers = Answers.fromProto(proto.formAnswers);
|
|
6768
6894
|
}
|
|
6769
6895
|
if (proto.bookingFailureReason) {
|
|
6770
|
-
m.bookingFailureReason = enumStringToValue$
|
|
6896
|
+
m.bookingFailureReason = enumStringToValue$1(BookingFailureReason, proto.bookingFailureReason);
|
|
6771
6897
|
}
|
|
6772
6898
|
return m;
|
|
6773
6899
|
}
|
|
@@ -6817,7 +6943,7 @@ class SetGeneralAvailabilityRequest {
|
|
|
6817
6943
|
let m = new SetGeneralAvailabilityRequest();
|
|
6818
6944
|
m = Object.assign(m, proto);
|
|
6819
6945
|
if (proto.days) {
|
|
6820
|
-
m.days = proto.days.map((v) => enumStringToValue$
|
|
6946
|
+
m.days = proto.days.map((v) => enumStringToValue$1(DayOfWeek, v));
|
|
6821
6947
|
}
|
|
6822
6948
|
if (proto.timeSlot) {
|
|
6823
6949
|
m.timeSlot = TimeRange.fromProto(proto.timeSlot);
|
|
@@ -6864,7 +6990,7 @@ class TimeSlotsByWeekDay {
|
|
|
6864
6990
|
let m = new TimeSlotsByWeekDay();
|
|
6865
6991
|
m = Object.assign(m, proto);
|
|
6866
6992
|
if (proto.day) {
|
|
6867
|
-
m.day = enumStringToValue$
|
|
6993
|
+
m.day = enumStringToValue$1(DayOfWeek, proto.day);
|
|
6868
6994
|
}
|
|
6869
6995
|
if (proto.timeSlot) {
|
|
6870
6996
|
m.timeSlot = proto.timeSlot.map(TimeRange.fromProto);
|
|
@@ -7105,7 +7231,7 @@ class WeekdayAvailability {
|
|
|
7105
7231
|
let m = new WeekdayAvailability();
|
|
7106
7232
|
m = Object.assign(m, proto);
|
|
7107
7233
|
if (proto.day) {
|
|
7108
|
-
m.day = enumStringToValue$
|
|
7234
|
+
m.day = enumStringToValue$1(DayOfWeek, proto.day);
|
|
7109
7235
|
}
|
|
7110
7236
|
if (proto.timeSlots) {
|
|
7111
7237
|
m.timeSlots = proto.timeSlots.map(TimeRange.fromProto);
|
|
@@ -7130,7 +7256,7 @@ class WeekdayAvailability {
|
|
|
7130
7256
|
}
|
|
7131
7257
|
}
|
|
7132
7258
|
|
|
7133
|
-
function enumStringToValue
|
|
7259
|
+
function enumStringToValue(enumRef, value) {
|
|
7134
7260
|
if (typeof value === 'number') {
|
|
7135
7261
|
return value;
|
|
7136
7262
|
}
|
|
@@ -7180,119 +7306,6 @@ class MCPOptions {
|
|
|
7180
7306
|
}
|
|
7181
7307
|
}
|
|
7182
7308
|
|
|
7183
|
-
function enumStringToValue$1(enumRef, value) {
|
|
7184
|
-
if (typeof value === 'number') {
|
|
7185
|
-
return value;
|
|
7186
|
-
}
|
|
7187
|
-
return enumRef[value];
|
|
7188
|
-
}
|
|
7189
|
-
class TimeOfDay {
|
|
7190
|
-
static fromProto(proto) {
|
|
7191
|
-
let m = new TimeOfDay();
|
|
7192
|
-
m = Object.assign(m, proto);
|
|
7193
|
-
return m;
|
|
7194
|
-
}
|
|
7195
|
-
constructor(kwargs) {
|
|
7196
|
-
if (!kwargs) {
|
|
7197
|
-
return;
|
|
7198
|
-
}
|
|
7199
|
-
Object.assign(this, kwargs);
|
|
7200
|
-
}
|
|
7201
|
-
toApiJson() {
|
|
7202
|
-
const toReturn = {};
|
|
7203
|
-
if (typeof this.hours !== 'undefined') {
|
|
7204
|
-
toReturn['hours'] = this.hours;
|
|
7205
|
-
}
|
|
7206
|
-
if (typeof this.minutes !== 'undefined') {
|
|
7207
|
-
toReturn['minutes'] = this.minutes;
|
|
7208
|
-
}
|
|
7209
|
-
if (typeof this.seconds !== 'undefined') {
|
|
7210
|
-
toReturn['seconds'] = this.seconds;
|
|
7211
|
-
}
|
|
7212
|
-
if (typeof this.nanos !== 'undefined') {
|
|
7213
|
-
toReturn['nanos'] = this.nanos;
|
|
7214
|
-
}
|
|
7215
|
-
return toReturn;
|
|
7216
|
-
}
|
|
7217
|
-
}
|
|
7218
|
-
|
|
7219
|
-
function enumStringToValue(enumRef, value) {
|
|
7220
|
-
if (typeof value === 'number') {
|
|
7221
|
-
return value;
|
|
7222
|
-
}
|
|
7223
|
-
return enumRef[value];
|
|
7224
|
-
}
|
|
7225
|
-
class DateTime {
|
|
7226
|
-
static fromProto(proto) {
|
|
7227
|
-
let m = new DateTime();
|
|
7228
|
-
m = Object.assign(m, proto);
|
|
7229
|
-
if (proto.timeZone) {
|
|
7230
|
-
m.timeZone = TimeZone.fromProto(proto.timeZone);
|
|
7231
|
-
}
|
|
7232
|
-
return m;
|
|
7233
|
-
}
|
|
7234
|
-
constructor(kwargs) {
|
|
7235
|
-
if (!kwargs) {
|
|
7236
|
-
return;
|
|
7237
|
-
}
|
|
7238
|
-
Object.assign(this, kwargs);
|
|
7239
|
-
}
|
|
7240
|
-
toApiJson() {
|
|
7241
|
-
const toReturn = {};
|
|
7242
|
-
if (typeof this.year !== 'undefined') {
|
|
7243
|
-
toReturn['year'] = this.year;
|
|
7244
|
-
}
|
|
7245
|
-
if (typeof this.month !== 'undefined') {
|
|
7246
|
-
toReturn['month'] = this.month;
|
|
7247
|
-
}
|
|
7248
|
-
if (typeof this.day !== 'undefined') {
|
|
7249
|
-
toReturn['day'] = this.day;
|
|
7250
|
-
}
|
|
7251
|
-
if (typeof this.hours !== 'undefined') {
|
|
7252
|
-
toReturn['hours'] = this.hours;
|
|
7253
|
-
}
|
|
7254
|
-
if (typeof this.minutes !== 'undefined') {
|
|
7255
|
-
toReturn['minutes'] = this.minutes;
|
|
7256
|
-
}
|
|
7257
|
-
if (typeof this.seconds !== 'undefined') {
|
|
7258
|
-
toReturn['seconds'] = this.seconds;
|
|
7259
|
-
}
|
|
7260
|
-
if (typeof this.nanos !== 'undefined') {
|
|
7261
|
-
toReturn['nanos'] = this.nanos;
|
|
7262
|
-
}
|
|
7263
|
-
if (typeof this.utcOffset !== 'undefined') {
|
|
7264
|
-
toReturn['utcOffset'] = this.utcOffset;
|
|
7265
|
-
}
|
|
7266
|
-
if (typeof this.timeZone !== 'undefined' && this.timeZone !== null) {
|
|
7267
|
-
toReturn['timeZone'] = 'toApiJson' in this.timeZone ? this.timeZone.toApiJson() : this.timeZone;
|
|
7268
|
-
}
|
|
7269
|
-
return toReturn;
|
|
7270
|
-
}
|
|
7271
|
-
}
|
|
7272
|
-
class TimeZone {
|
|
7273
|
-
static fromProto(proto) {
|
|
7274
|
-
let m = new TimeZone();
|
|
7275
|
-
m = Object.assign(m, proto);
|
|
7276
|
-
return m;
|
|
7277
|
-
}
|
|
7278
|
-
constructor(kwargs) {
|
|
7279
|
-
if (!kwargs) {
|
|
7280
|
-
return;
|
|
7281
|
-
}
|
|
7282
|
-
Object.assign(this, kwargs);
|
|
7283
|
-
}
|
|
7284
|
-
toApiJson() {
|
|
7285
|
-
const toReturn = {};
|
|
7286
|
-
if (typeof this.id !== 'undefined') {
|
|
7287
|
-
toReturn['id'] = this.id;
|
|
7288
|
-
}
|
|
7289
|
-
if (typeof this.version !== 'undefined') {
|
|
7290
|
-
toReturn['version'] = this.version;
|
|
7291
|
-
}
|
|
7292
|
-
return toReturn;
|
|
7293
|
-
}
|
|
7294
|
-
}
|
|
7295
|
-
|
|
7296
7309
|
// *********************************
|
|
7297
7310
|
|
|
7298
7311
|
const environment = (window ? window['environment'] : 'prod') ?? 'prod';
|
|
@@ -7320,9 +7333,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
|
|
|
7320
7333
|
|
|
7321
7334
|
// *********************************
|
|
7322
7335
|
class MeetingSourceAPIApiService {
|
|
7323
|
-
constructor() {
|
|
7324
|
-
this.
|
|
7325
|
-
this.
|
|
7336
|
+
constructor(http, hostService) {
|
|
7337
|
+
this.http = http;
|
|
7338
|
+
this.hostService = hostService;
|
|
7326
7339
|
this._host = this.hostService.hostWithScheme;
|
|
7327
7340
|
}
|
|
7328
7341
|
apiOptions() {
|
|
@@ -7339,18 +7352,18 @@ class MeetingSourceAPIApiService {
|
|
|
7339
7352
|
.pipe(map(resp => MeetingSourceListResponse.fromProto(resp)));
|
|
7340
7353
|
}
|
|
7341
7354
|
}
|
|
7342
|
-
MeetingSourceAPIApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7355
|
+
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 });
|
|
7343
7356
|
MeetingSourceAPIApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, providedIn: 'root' });
|
|
7344
7357
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingSourceAPIApiService, decorators: [{
|
|
7345
7358
|
type: Injectable,
|
|
7346
7359
|
args: [{ providedIn: 'root' }]
|
|
7347
|
-
}] });
|
|
7360
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
7348
7361
|
|
|
7349
7362
|
// *********************************
|
|
7350
7363
|
class ZoomApiService {
|
|
7351
|
-
constructor() {
|
|
7352
|
-
this.
|
|
7353
|
-
this.
|
|
7364
|
+
constructor(http, hostService) {
|
|
7365
|
+
this.http = http;
|
|
7366
|
+
this.hostService = hostService;
|
|
7354
7367
|
this._host = this.hostService.hostWithScheme;
|
|
7355
7368
|
}
|
|
7356
7369
|
apiOptions() {
|
|
@@ -7367,18 +7380,18 @@ class ZoomApiService {
|
|
|
7367
7380
|
.pipe(map(resp => CreateZoomMeetingResponse.fromProto(resp)));
|
|
7368
7381
|
}
|
|
7369
7382
|
}
|
|
7370
|
-
ZoomApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7383
|
+
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 });
|
|
7371
7384
|
ZoomApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, providedIn: 'root' });
|
|
7372
7385
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ZoomApiService, decorators: [{
|
|
7373
7386
|
type: Injectable,
|
|
7374
7387
|
args: [{ providedIn: 'root' }]
|
|
7375
|
-
}] });
|
|
7388
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
7376
7389
|
|
|
7377
7390
|
// *********************************
|
|
7378
7391
|
class GoogleMeetApiService {
|
|
7379
|
-
constructor() {
|
|
7380
|
-
this.
|
|
7381
|
-
this.
|
|
7392
|
+
constructor(http, hostService) {
|
|
7393
|
+
this.http = http;
|
|
7394
|
+
this.hostService = hostService;
|
|
7382
7395
|
this._host = this.hostService.hostWithScheme;
|
|
7383
7396
|
}
|
|
7384
7397
|
apiOptions() {
|
|
@@ -7400,12 +7413,12 @@ class GoogleMeetApiService {
|
|
|
7400
7413
|
.pipe(map(resp => GoogleMeetListMeetingsResponse.fromProto(resp)));
|
|
7401
7414
|
}
|
|
7402
7415
|
}
|
|
7403
|
-
GoogleMeetApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7416
|
+
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 });
|
|
7404
7417
|
GoogleMeetApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, providedIn: 'root' });
|
|
7405
7418
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GoogleMeetApiService, decorators: [{
|
|
7406
7419
|
type: Injectable,
|
|
7407
7420
|
args: [{ providedIn: 'root' }]
|
|
7408
|
-
}] });
|
|
7421
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
7409
7422
|
|
|
7410
7423
|
function generateMeetingPassword() {
|
|
7411
7424
|
const zoomMaxLength = 10;
|
|
@@ -7567,9 +7580,9 @@ function createMeetInstantMeetingRequest(meetingTitle, startDateTime, attendees)
|
|
|
7567
7580
|
|
|
7568
7581
|
// *********************************
|
|
7569
7582
|
class MeetingExternalApiService {
|
|
7570
|
-
constructor() {
|
|
7571
|
-
this.
|
|
7572
|
-
this.
|
|
7583
|
+
constructor(http, hostService) {
|
|
7584
|
+
this.http = http;
|
|
7585
|
+
this.hostService = hostService;
|
|
7573
7586
|
this._host = this.hostService.hostWithScheme;
|
|
7574
7587
|
}
|
|
7575
7588
|
apiOptions() {
|
|
@@ -7625,18 +7638,18 @@ class MeetingExternalApiService {
|
|
|
7625
7638
|
.pipe(map(resp => ListUserEventTypesResponse.fromProto(resp)));
|
|
7626
7639
|
}
|
|
7627
7640
|
}
|
|
7628
|
-
MeetingExternalApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingExternalApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7641
|
+
MeetingExternalApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingExternalApiService, deps: [{ token: i1.HttpClient }, { token: HostService$1 }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7629
7642
|
MeetingExternalApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingExternalApiService, providedIn: 'root' });
|
|
7630
7643
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingExternalApiService, decorators: [{
|
|
7631
7644
|
type: Injectable,
|
|
7632
7645
|
args: [{ providedIn: 'root' }]
|
|
7633
|
-
}] });
|
|
7646
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
7634
7647
|
|
|
7635
7648
|
// *********************************
|
|
7636
7649
|
class MeetingGuestApiService {
|
|
7637
|
-
constructor() {
|
|
7638
|
-
this.
|
|
7639
|
-
this.
|
|
7650
|
+
constructor(http, hostService) {
|
|
7651
|
+
this.http = http;
|
|
7652
|
+
this.hostService = hostService;
|
|
7640
7653
|
this._host = this.hostService.hostWithScheme;
|
|
7641
7654
|
}
|
|
7642
7655
|
apiOptions() {
|
|
@@ -7739,18 +7752,18 @@ class MeetingGuestApiService {
|
|
|
7739
7752
|
.pipe(map(resp => CheckFeatureFlagResponse.fromProto(resp)));
|
|
7740
7753
|
}
|
|
7741
7754
|
}
|
|
7742
|
-
MeetingGuestApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7755
|
+
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 });
|
|
7743
7756
|
MeetingGuestApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, providedIn: 'root' });
|
|
7744
7757
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingGuestApiService, decorators: [{
|
|
7745
7758
|
type: Injectable,
|
|
7746
7759
|
args: [{ providedIn: 'root' }]
|
|
7747
|
-
}] });
|
|
7760
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
7748
7761
|
|
|
7749
7762
|
// *********************************
|
|
7750
7763
|
class MeetingHostApiService {
|
|
7751
|
-
constructor() {
|
|
7752
|
-
this.
|
|
7753
|
-
this.
|
|
7764
|
+
constructor(http, hostService) {
|
|
7765
|
+
this.http = http;
|
|
7766
|
+
this.hostService = hostService;
|
|
7754
7767
|
this._host = this.hostService.hostWithScheme;
|
|
7755
7768
|
}
|
|
7756
7769
|
apiOptions() {
|
|
@@ -8017,12 +8030,12 @@ class MeetingHostApiService {
|
|
|
8017
8030
|
.pipe(map(resp => ListAvailableTimeslotsForRecurringSessionResponse.fromProto(resp)));
|
|
8018
8031
|
}
|
|
8019
8032
|
}
|
|
8020
|
-
MeetingHostApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
8033
|
+
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 });
|
|
8021
8034
|
MeetingHostApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, providedIn: 'root' });
|
|
8022
8035
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, decorators: [{
|
|
8023
8036
|
type: Injectable,
|
|
8024
8037
|
args: [{ providedIn: 'root' }]
|
|
8025
|
-
}] });
|
|
8038
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService$1 }]; } });
|
|
8026
8039
|
|
|
8027
8040
|
// *********************************
|
|
8028
8041
|
|