@vendasta/meetings 1.7.4 → 1.7.6
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/enums/meeting-type.enum.mjs +7 -1
- 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/meeting-type.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/shared.interface.mjs +1 -1
- package/esm2020/lib/_internal/meeting-guest.api.service.mjs +5 -5
- package/esm2020/lib/_internal/meeting-host.api.service.mjs +7 -2
- package/esm2020/lib/_internal/objects/annotations.mjs +1 -1
- package/esm2020/lib/_internal/objects/date-range.mjs +1 -1
- package/esm2020/lib/_internal/objects/field-mask.mjs +1 -1
- package/esm2020/lib/_internal/objects/google-meet.mjs +1 -1
- package/esm2020/lib/_internal/objects/groups-and-services.mjs +1 -1
- package/esm2020/lib/_internal/objects/index.mjs +5 -5
- package/esm2020/lib/_internal/objects/meeting-external.mjs +2 -2
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +53 -47
- package/esm2020/lib/_internal/objects/meeting-host.mjs +55 -3
- package/esm2020/lib/_internal/objects/meeting-source.mjs +1 -1
- package/esm2020/lib/_internal/objects/meeting-type.mjs +33 -1
- package/esm2020/lib/_internal/objects/openapiv2.mjs +1 -1
- package/esm2020/lib/_internal/objects/shared.mjs +1 -1
- package/esm2020/lib/_internal/objects/zoom.mjs +1 -1
- package/esm2020/lib/guest/guest.service.mjs +28 -2
- package/esm2020/lib/host/host.service.mjs +4 -1
- package/esm2020/lib/index.mjs +2 -2
- package/fesm2015/vendasta-meetings.mjs +179 -51
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +181 -51
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/enums/index.d.ts +1 -1
- package/lib/_internal/enums/meeting-type.enum.d.ts +5 -0
- package/lib/_internal/interfaces/index.d.ts +4 -4
- package/lib/_internal/interfaces/meeting-external.interface.d.ts +1 -1
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +13 -11
- package/lib/_internal/interfaces/meeting-host.interface.d.ts +10 -2
- package/lib/_internal/interfaces/meeting-type.interface.d.ts +6 -0
- package/lib/_internal/meeting-guest.api.service.d.ts +1 -1
- package/lib/_internal/meeting-host.api.service.d.ts +3 -2
- package/lib/_internal/objects/annotations.d.ts +1 -1
- package/lib/_internal/objects/date-range.d.ts +1 -1
- package/lib/_internal/objects/field-mask.d.ts +1 -1
- package/lib/_internal/objects/google-meet.d.ts +1 -1
- package/lib/_internal/objects/groups-and-services.d.ts +1 -1
- package/lib/_internal/objects/index.d.ts +4 -4
- package/lib/_internal/objects/meeting-external.d.ts +2 -2
- package/lib/_internal/objects/meeting-guest.d.ts +21 -19
- package/lib/_internal/objects/meeting-host.d.ts +17 -3
- package/lib/_internal/objects/meeting-source.d.ts +1 -1
- package/lib/_internal/objects/meeting-type.d.ts +10 -1
- package/lib/_internal/objects/openapiv2.d.ts +1 -1
- package/lib/_internal/objects/shared.d.ts +1 -1
- package/lib/_internal/objects/zoom.d.ts +1 -1
- package/lib/guest/guest.service.d.ts +34 -1
- package/lib/host/host.service.d.ts +7 -1
- package/lib/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -134,6 +134,12 @@ var OnBoardingState;
|
|
|
134
134
|
//
|
|
135
135
|
// Enums.
|
|
136
136
|
// *********************************
|
|
137
|
+
var BookingEventType;
|
|
138
|
+
(function (BookingEventType) {
|
|
139
|
+
BookingEventType[BookingEventType["BOOKING_EVENT_TYPE_PERSONAL"] = 0] = "BOOKING_EVENT_TYPE_PERSONAL";
|
|
140
|
+
BookingEventType[BookingEventType["BOOKING_EVENT_TYPE_TEAM"] = 1] = "BOOKING_EVENT_TYPE_TEAM";
|
|
141
|
+
BookingEventType[BookingEventType["BOOKING_EVENT_TYPE_SERVICE_MENU"] = 2] = "BOOKING_EVENT_TYPE_SERVICE_MENU";
|
|
142
|
+
})(BookingEventType || (BookingEventType = {}));
|
|
137
143
|
var BookingSource;
|
|
138
144
|
(function (BookingSource) {
|
|
139
145
|
BookingSource[BookingSource["BOOKING_SOURCE_UNKNOWN"] = 0] = "BOOKING_SOURCE_UNKNOWN";
|
|
@@ -2065,6 +2071,38 @@ function enumStringToValue$9(enumRef, value) {
|
|
|
2065
2071
|
}
|
|
2066
2072
|
return enumRef[value];
|
|
2067
2073
|
}
|
|
2074
|
+
class BookingEventForAI {
|
|
2075
|
+
static fromProto(proto) {
|
|
2076
|
+
let m = new BookingEventForAI();
|
|
2077
|
+
m = Object.assign(m, proto);
|
|
2078
|
+
if (proto.type) {
|
|
2079
|
+
m.type = enumStringToValue$9(BookingEventType, proto.type);
|
|
2080
|
+
}
|
|
2081
|
+
return m;
|
|
2082
|
+
}
|
|
2083
|
+
constructor(kwargs) {
|
|
2084
|
+
if (!kwargs) {
|
|
2085
|
+
return;
|
|
2086
|
+
}
|
|
2087
|
+
Object.assign(this, kwargs);
|
|
2088
|
+
}
|
|
2089
|
+
toApiJson() {
|
|
2090
|
+
const toReturn = {};
|
|
2091
|
+
if (typeof this.id !== 'undefined') {
|
|
2092
|
+
toReturn['id'] = this.id;
|
|
2093
|
+
}
|
|
2094
|
+
if (typeof this.name !== 'undefined') {
|
|
2095
|
+
toReturn['name'] = this.name;
|
|
2096
|
+
}
|
|
2097
|
+
if (typeof this.calendarId !== 'undefined') {
|
|
2098
|
+
toReturn['calendarId'] = this.calendarId;
|
|
2099
|
+
}
|
|
2100
|
+
if (typeof this.type !== 'undefined') {
|
|
2101
|
+
toReturn['type'] = this.type;
|
|
2102
|
+
}
|
|
2103
|
+
return toReturn;
|
|
2104
|
+
}
|
|
2105
|
+
}
|
|
2068
2106
|
class EventTypeDateRange {
|
|
2069
2107
|
static fromProto(proto) {
|
|
2070
2108
|
let m = new EventTypeDateRange();
|
|
@@ -3979,41 +4017,6 @@ class CancelBatchMeetingRequest {
|
|
|
3979
4017
|
return toReturn;
|
|
3980
4018
|
}
|
|
3981
4019
|
}
|
|
3982
|
-
class RescheduleBatchMeetingRequest {
|
|
3983
|
-
static fromProto(proto) {
|
|
3984
|
-
let m = new RescheduleBatchMeetingRequest();
|
|
3985
|
-
m = Object.assign(m, proto);
|
|
3986
|
-
if (proto.start) {
|
|
3987
|
-
m.start = new Date(proto.start);
|
|
3988
|
-
}
|
|
3989
|
-
if (proto.timeZone) {
|
|
3990
|
-
m.timeZone = TimeZone.fromProto(proto.timeZone);
|
|
3991
|
-
}
|
|
3992
|
-
return m;
|
|
3993
|
-
}
|
|
3994
|
-
constructor(kwargs) {
|
|
3995
|
-
if (!kwargs) {
|
|
3996
|
-
return;
|
|
3997
|
-
}
|
|
3998
|
-
Object.assign(this, kwargs);
|
|
3999
|
-
}
|
|
4000
|
-
toApiJson() {
|
|
4001
|
-
const toReturn = {};
|
|
4002
|
-
if (typeof this.id !== 'undefined') {
|
|
4003
|
-
toReturn['id'] = this.id;
|
|
4004
|
-
}
|
|
4005
|
-
if (typeof this.start !== 'undefined' && this.start !== null) {
|
|
4006
|
-
toReturn['start'] = 'toApiJson' in this.start ? this.start.toApiJson() : this.start;
|
|
4007
|
-
}
|
|
4008
|
-
if (typeof this.timeZone !== 'undefined' && this.timeZone !== null) {
|
|
4009
|
-
toReturn['timeZone'] = 'toApiJson' in this.timeZone ? this.timeZone.toApiJson() : this.timeZone;
|
|
4010
|
-
}
|
|
4011
|
-
if (typeof this.location !== 'undefined') {
|
|
4012
|
-
toReturn['location'] = this.location;
|
|
4013
|
-
}
|
|
4014
|
-
return toReturn;
|
|
4015
|
-
}
|
|
4016
|
-
}
|
|
4017
4020
|
class CheckFeatureFlagRequest {
|
|
4018
4021
|
static fromProto(proto) {
|
|
4019
4022
|
let m = new CheckFeatureFlagRequest();
|
|
@@ -4796,6 +4799,9 @@ class GuestGetBookedMeetingResponseV2 {
|
|
|
4796
4799
|
if (typeof this.meetings !== 'undefined' && this.meetings !== null) {
|
|
4797
4800
|
toReturn['meetings'] = 'toApiJson' in this.meetings ? this.meetings.toApiJson() : this.meetings;
|
|
4798
4801
|
}
|
|
4802
|
+
if (typeof this.primaryAttendeePhone !== 'undefined') {
|
|
4803
|
+
toReturn['primaryAttendeePhone'] = this.primaryAttendeePhone;
|
|
4804
|
+
}
|
|
4799
4805
|
return toReturn;
|
|
4800
4806
|
}
|
|
4801
4807
|
}
|
|
@@ -5259,12 +5265,6 @@ class MeetingDetail {
|
|
|
5259
5265
|
if (typeof this.timeZone !== 'undefined' && this.timeZone !== null) {
|
|
5260
5266
|
toReturn['timeZone'] = 'toApiJson' in this.timeZone ? this.timeZone.toApiJson() : this.timeZone;
|
|
5261
5267
|
}
|
|
5262
|
-
if (typeof this.businessLogo !== 'undefined') {
|
|
5263
|
-
toReturn['businessLogo'] = this.businessLogo;
|
|
5264
|
-
}
|
|
5265
|
-
if (typeof this.bookingUrl !== 'undefined') {
|
|
5266
|
-
toReturn['bookingUrl'] = this.bookingUrl;
|
|
5267
|
-
}
|
|
5268
5268
|
if (typeof this.previousStartTime !== 'undefined' && this.previousStartTime !== null) {
|
|
5269
5269
|
toReturn['previousStartTime'] = 'toApiJson' in this.previousStartTime ? this.previousStartTime.toApiJson() : this.previousStartTime;
|
|
5270
5270
|
}
|
|
@@ -5277,6 +5277,15 @@ class MeetingDetail {
|
|
|
5277
5277
|
if (typeof this.order !== 'undefined') {
|
|
5278
5278
|
toReturn['order'] = this.order;
|
|
5279
5279
|
}
|
|
5280
|
+
if (typeof this.eventTypeId !== 'undefined') {
|
|
5281
|
+
toReturn['eventTypeId'] = this.eventTypeId;
|
|
5282
|
+
}
|
|
5283
|
+
if (typeof this.userId !== 'undefined') {
|
|
5284
|
+
toReturn['userId'] = this.userId;
|
|
5285
|
+
}
|
|
5286
|
+
if (typeof this.locationGuideline !== 'undefined') {
|
|
5287
|
+
toReturn['locationGuideline'] = this.locationGuideline;
|
|
5288
|
+
}
|
|
5280
5289
|
return toReturn;
|
|
5281
5290
|
}
|
|
5282
5291
|
}
|
|
@@ -5324,9 +5333,9 @@ class MeetingSummary {
|
|
|
5324
5333
|
return toReturn;
|
|
5325
5334
|
}
|
|
5326
5335
|
}
|
|
5327
|
-
class
|
|
5336
|
+
class BookBatchMeetingRequestMetadataEntry {
|
|
5328
5337
|
static fromProto(proto) {
|
|
5329
|
-
let m = new
|
|
5338
|
+
let m = new BookBatchMeetingRequestMetadataEntry();
|
|
5330
5339
|
m = Object.assign(m, proto);
|
|
5331
5340
|
return m;
|
|
5332
5341
|
}
|
|
@@ -5347,9 +5356,9 @@ class BookMeetingRequestMetadataEntry {
|
|
|
5347
5356
|
return toReturn;
|
|
5348
5357
|
}
|
|
5349
5358
|
}
|
|
5350
|
-
class
|
|
5359
|
+
class BookMeetingRequestMetadataEntry {
|
|
5351
5360
|
static fromProto(proto) {
|
|
5352
|
-
let m = new
|
|
5361
|
+
let m = new BookMeetingRequestMetadataEntry();
|
|
5353
5362
|
m = Object.assign(m, proto);
|
|
5354
5363
|
return m;
|
|
5355
5364
|
}
|
|
@@ -5408,6 +5417,41 @@ class RegisterSessionRequest {
|
|
|
5408
5417
|
return toReturn;
|
|
5409
5418
|
}
|
|
5410
5419
|
}
|
|
5420
|
+
class RescheduleBatchMeetingRequest {
|
|
5421
|
+
static fromProto(proto) {
|
|
5422
|
+
let m = new RescheduleBatchMeetingRequest();
|
|
5423
|
+
m = Object.assign(m, proto);
|
|
5424
|
+
if (proto.start) {
|
|
5425
|
+
m.start = new Date(proto.start);
|
|
5426
|
+
}
|
|
5427
|
+
if (proto.timeZone) {
|
|
5428
|
+
m.timeZone = TimeZone.fromProto(proto.timeZone);
|
|
5429
|
+
}
|
|
5430
|
+
return m;
|
|
5431
|
+
}
|
|
5432
|
+
constructor(kwargs) {
|
|
5433
|
+
if (!kwargs) {
|
|
5434
|
+
return;
|
|
5435
|
+
}
|
|
5436
|
+
Object.assign(this, kwargs);
|
|
5437
|
+
}
|
|
5438
|
+
toApiJson() {
|
|
5439
|
+
const toReturn = {};
|
|
5440
|
+
if (typeof this.id !== 'undefined') {
|
|
5441
|
+
toReturn['id'] = this.id;
|
|
5442
|
+
}
|
|
5443
|
+
if (typeof this.start !== 'undefined' && this.start !== null) {
|
|
5444
|
+
toReturn['start'] = 'toApiJson' in this.start ? this.start.toApiJson() : this.start;
|
|
5445
|
+
}
|
|
5446
|
+
if (typeof this.timeZone !== 'undefined' && this.timeZone !== null) {
|
|
5447
|
+
toReturn['timeZone'] = 'toApiJson' in this.timeZone ? this.timeZone.toApiJson() : this.timeZone;
|
|
5448
|
+
}
|
|
5449
|
+
if (typeof this.location !== 'undefined') {
|
|
5450
|
+
toReturn['location'] = this.location;
|
|
5451
|
+
}
|
|
5452
|
+
return toReturn;
|
|
5453
|
+
}
|
|
5454
|
+
}
|
|
5411
5455
|
class ServiceEventType {
|
|
5412
5456
|
static fromProto(proto) {
|
|
5413
5457
|
let m = new ServiceEventType();
|
|
@@ -8295,6 +8339,58 @@ class ListBookedMeetingsResponse {
|
|
|
8295
8339
|
return toReturn;
|
|
8296
8340
|
}
|
|
8297
8341
|
}
|
|
8342
|
+
class ListBookingTypesForAIRequest {
|
|
8343
|
+
static fromProto(proto) {
|
|
8344
|
+
let m = new ListBookingTypesForAIRequest();
|
|
8345
|
+
m = Object.assign(m, proto);
|
|
8346
|
+
if (proto.bookingSource) {
|
|
8347
|
+
m.bookingSource = enumStringToValue$3(BookingSource, proto.bookingSource);
|
|
8348
|
+
}
|
|
8349
|
+
return m;
|
|
8350
|
+
}
|
|
8351
|
+
constructor(kwargs) {
|
|
8352
|
+
if (!kwargs) {
|
|
8353
|
+
return;
|
|
8354
|
+
}
|
|
8355
|
+
Object.assign(this, kwargs);
|
|
8356
|
+
}
|
|
8357
|
+
toApiJson() {
|
|
8358
|
+
const toReturn = {};
|
|
8359
|
+
if (typeof this.userId !== 'undefined') {
|
|
8360
|
+
toReturn['userId'] = this.userId;
|
|
8361
|
+
}
|
|
8362
|
+
if (typeof this.namespace !== 'undefined') {
|
|
8363
|
+
toReturn['namespace'] = this.namespace;
|
|
8364
|
+
}
|
|
8365
|
+
if (typeof this.bookingSource !== 'undefined') {
|
|
8366
|
+
toReturn['bookingSource'] = this.bookingSource;
|
|
8367
|
+
}
|
|
8368
|
+
return toReturn;
|
|
8369
|
+
}
|
|
8370
|
+
}
|
|
8371
|
+
class ListBookingTypesForAIResponse {
|
|
8372
|
+
static fromProto(proto) {
|
|
8373
|
+
let m = new ListBookingTypesForAIResponse();
|
|
8374
|
+
m = Object.assign(m, proto);
|
|
8375
|
+
if (proto.bookingEvents) {
|
|
8376
|
+
m.bookingEvents = proto.bookingEvents.map(BookingEventForAI.fromProto);
|
|
8377
|
+
}
|
|
8378
|
+
return m;
|
|
8379
|
+
}
|
|
8380
|
+
constructor(kwargs) {
|
|
8381
|
+
if (!kwargs) {
|
|
8382
|
+
return;
|
|
8383
|
+
}
|
|
8384
|
+
Object.assign(this, kwargs);
|
|
8385
|
+
}
|
|
8386
|
+
toApiJson() {
|
|
8387
|
+
const toReturn = {};
|
|
8388
|
+
if (typeof this.bookingEvents !== 'undefined' && this.bookingEvents !== null) {
|
|
8389
|
+
toReturn['bookingEvents'] = 'toApiJson' in this.bookingEvents ? this.bookingEvents.toApiJson() : this.bookingEvents;
|
|
8390
|
+
}
|
|
8391
|
+
return toReturn;
|
|
8392
|
+
}
|
|
8393
|
+
}
|
|
8298
8394
|
class ListEventTypesForMultipleCalendarsRequest {
|
|
8299
8395
|
static fromProto(proto) {
|
|
8300
8396
|
let m = new ListEventTypesForMultipleCalendarsRequest();
|
|
@@ -10029,14 +10125,14 @@ class MeetingGuestApiService {
|
|
|
10029
10125
|
return this.http.post(this._host + "/meetings.v1.MeetingGuest/BookBatchMeeting", request.toApiJson(), this.apiOptions())
|
|
10030
10126
|
.pipe(map(resp => BookBatchMeetingResponse.fromProto(resp)));
|
|
10031
10127
|
}
|
|
10032
|
-
cancelBatchMeeting(r) {
|
|
10033
|
-
const request = (r.toApiJson) ? r : new CancelBatchMeetingRequest(r);
|
|
10034
|
-
return this.http.post(this._host + "/meetings.v1.MeetingGuest/CancelBatchMeeting", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
10035
|
-
}
|
|
10036
10128
|
rescheduleBatchMeeting(r) {
|
|
10037
10129
|
const request = (r.toApiJson) ? r : new RescheduleBatchMeetingRequest(r);
|
|
10038
10130
|
return this.http.post(this._host + "/meetings.v1.MeetingGuest/RescheduleBatchMeeting", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
10039
10131
|
}
|
|
10132
|
+
cancelBatchMeeting(r) {
|
|
10133
|
+
const request = (r.toApiJson) ? r : new CancelBatchMeetingRequest(r);
|
|
10134
|
+
return this.http.post(this._host + "/meetings.v1.MeetingGuest/CancelBatchMeeting", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
10135
|
+
}
|
|
10040
10136
|
getServiceV2(r) {
|
|
10041
10137
|
const request = (r.toApiJson) ? r : new GetServiceV2Request(r);
|
|
10042
10138
|
return this.http.post(this._host + "/meetings.v1.MeetingGuest/GetServiceV2", request.toApiJson(), this.apiOptions())
|
|
@@ -10330,6 +10426,11 @@ class MeetingHostApiService {
|
|
|
10330
10426
|
return this.http.post(this._host + "/meetings.v1.MeetingHost/GetEventTypeById", request.toApiJson(), this.apiOptions())
|
|
10331
10427
|
.pipe(map(resp => GetEventTypeByIdResponse.fromProto(resp)));
|
|
10332
10428
|
}
|
|
10429
|
+
listBookingTypesForAi(r) {
|
|
10430
|
+
const request = (r.toApiJson) ? r : new ListBookingTypesForAIRequest(r);
|
|
10431
|
+
return this.http.post(this._host + "/meetings.v1.MeetingHost/ListBookingTypesForAI", request.toApiJson(), this.apiOptions())
|
|
10432
|
+
.pipe(map(resp => ListBookingTypesForAIResponse.fromProto(resp)));
|
|
10433
|
+
}
|
|
10333
10434
|
}
|
|
10334
10435
|
MeetingHostApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10335
10436
|
MeetingHostApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, providedIn: 'root' });
|
|
@@ -10662,7 +10763,7 @@ class GuestService {
|
|
|
10662
10763
|
return this.guestAPIService.getGuestBookedMeetingV2(req);
|
|
10663
10764
|
}
|
|
10664
10765
|
cancelBatchMeeting(req) {
|
|
10665
|
-
return this.guestAPIService.cancelBatchMeeting(req).pipe(
|
|
10766
|
+
return this.guestAPIService.cancelBatchMeeting(req).pipe(mapTo(null));
|
|
10666
10767
|
}
|
|
10667
10768
|
isHostConfigured(req) {
|
|
10668
10769
|
return this.guestAPIService
|
|
@@ -10700,6 +10801,30 @@ class GuestService {
|
|
|
10700
10801
|
getServiceV2(req) {
|
|
10701
10802
|
return this.guestAPIService.getServiceV2(req);
|
|
10702
10803
|
}
|
|
10804
|
+
listBatchAvailableTimeSlots(req) {
|
|
10805
|
+
return this.guestAPIService.listBatchAvailableTimeSlots(req).pipe(map((resp) => {
|
|
10806
|
+
var _a, _b;
|
|
10807
|
+
if ((_a = resp.timeSlots) === null || _a === void 0 ? void 0 : _a.length) {
|
|
10808
|
+
return resp.timeSlots.map((ts) => TimeSpanFromApi(ts));
|
|
10809
|
+
}
|
|
10810
|
+
if ((_b = resp.isoTimeSlots) === null || _b === void 0 ? void 0 : _b.length) {
|
|
10811
|
+
return resp.isoTimeSlots.map((iso) => ({
|
|
10812
|
+
start: new Date(iso.start),
|
|
10813
|
+
end: new Date(iso.end),
|
|
10814
|
+
}));
|
|
10815
|
+
}
|
|
10816
|
+
return [];
|
|
10817
|
+
}));
|
|
10818
|
+
}
|
|
10819
|
+
bookBatchMeeting(req) {
|
|
10820
|
+
return this.guestAPIService.bookBatchMeeting(Object.assign(Object.assign({}, req), { formAnswers: answersToAPI(req.formAnswers) }));
|
|
10821
|
+
}
|
|
10822
|
+
rescheduleBatchMeeting(req) {
|
|
10823
|
+
return this.guestAPIService.rescheduleBatchMeeting(req).pipe(mapTo(null));
|
|
10824
|
+
}
|
|
10825
|
+
listGuestBookedMeetings(req) {
|
|
10826
|
+
return this.guestAPIService.listGuestBookedMeetings(req);
|
|
10827
|
+
}
|
|
10703
10828
|
}
|
|
10704
10829
|
GuestService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GuestService, deps: [{ token: MeetingGuestApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10705
10830
|
GuestService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GuestService, providedIn: "root" });
|
|
@@ -11240,6 +11365,9 @@ class HostService {
|
|
|
11240
11365
|
listEventTypesForMultipleCalendars(req) {
|
|
11241
11366
|
return this.hostAPIService.listEventTypesForMultipleCalendars(req);
|
|
11242
11367
|
}
|
|
11368
|
+
listBookingTypesForAi(req) {
|
|
11369
|
+
return this.hostAPIService.listBookingTypesForAi(req);
|
|
11370
|
+
}
|
|
11243
11371
|
}
|
|
11244
11372
|
HostService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: HostService, deps: [{ token: MeetingHostApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
11245
11373
|
HostService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: HostService, providedIn: "root" });
|
|
@@ -11252,5 +11380,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
|
|
|
11252
11380
|
* Generated bundle index. Do not edit.
|
|
11253
11381
|
*/
|
|
11254
11382
|
|
|
11255
|
-
export { BookingSource, CalendarSource, CalendarType, CheckFeatureFlagRequest, CheckFeatureFlagResponse, Contact$1 as Contact, CreateCalendarRequest, CreateCalendarResponse, DateRangeType, DayOfWeek, FeatureFlagFieldType, FormFieldType, GuestService, HostService, KnownCalendarApplicationContextKeys, KnownCalendarExternalIntegrations, MeetingLocation, MeetingLocationType, MeetingSource, MeetingSourceInfo, MeetingSourceListResponse, MeetingSourceOrigin, MeetingSourceQuery, MeetingSourceStatus, MeetingsService, NotificationType, OnBoardingState, PagedResponse, RegistrationCutOffUnit, RelativeTimeUnit, TeamEventMeetingType, WeekdayAvailability, WellKnownFormFieldIds, WellKnownMeetingMetadataKeys, addMetadataToBookingLink, durationFromString, durationStringToMinutes, durationToString, meetingSchedulerIdToMetadataKey, newBusinessCenterApplicationContextProperties, newPartnerCenterApplicationContextProperties, newSalesCenterApplicationContextProperties };
|
|
11383
|
+
export { BookBatchMeetingResponse, BookingSource, CalendarSource, CalendarType, CheckFeatureFlagRequest, CheckFeatureFlagResponse, Contact$1 as Contact, CreateCalendarRequest, CreateCalendarResponse, DateRangeType, DayOfWeek, FeatureFlagFieldType, FormFieldType, GetServiceV2Response, GuestGetBookedMeetingResponseV2, GuestService, HostService, KnownCalendarApplicationContextKeys, KnownCalendarExternalIntegrations, ListBatchAvailableTimeSlotsResponse, ListGuestBookedMeetingsResponse, MeetingDetail, MeetingLocation, MeetingLocationType, MeetingSource, MeetingSourceInfo, MeetingSourceListResponse, MeetingSourceOrigin, MeetingSourceQuery, MeetingSourceStatus, MeetingsService, NotificationType, OnBoardingState, PagedResponse, RegistrationCutOffUnit, RelativeTimeUnit, ServiceEventType, ServiceGroup, TeamEventMeetingType, WeekdayAvailability, WellKnownFormFieldIds, WellKnownMeetingMetadataKeys, addMetadataToBookingLink, durationFromString, durationStringToMinutes, durationToString, meetingSchedulerIdToMetadataKey, newBusinessCenterApplicationContextProperties, newPartnerCenterApplicationContextProperties, newSalesCenterApplicationContextProperties };
|
|
11256
11384
|
//# sourceMappingURL=vendasta-meetings.mjs.map
|