@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();
|
|
@@ -9738,14 +9834,14 @@ class MeetingGuestApiService {
|
|
|
9738
9834
|
return this.http.post(this._host + "/meetings.v1.MeetingGuest/BookBatchMeeting", request.toApiJson(), this.apiOptions())
|
|
9739
9835
|
.pipe(map(resp => BookBatchMeetingResponse.fromProto(resp)));
|
|
9740
9836
|
}
|
|
9741
|
-
cancelBatchMeeting(r) {
|
|
9742
|
-
const request = (r.toApiJson) ? r : new CancelBatchMeetingRequest(r);
|
|
9743
|
-
return this.http.post(this._host + "/meetings.v1.MeetingGuest/CancelBatchMeeting", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
9744
|
-
}
|
|
9745
9837
|
rescheduleBatchMeeting(r) {
|
|
9746
9838
|
const request = (r.toApiJson) ? r : new RescheduleBatchMeetingRequest(r);
|
|
9747
9839
|
return this.http.post(this._host + "/meetings.v1.MeetingGuest/RescheduleBatchMeeting", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
9748
9840
|
}
|
|
9841
|
+
cancelBatchMeeting(r) {
|
|
9842
|
+
const request = (r.toApiJson) ? r : new CancelBatchMeetingRequest(r);
|
|
9843
|
+
return this.http.post(this._host + "/meetings.v1.MeetingGuest/CancelBatchMeeting", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
9844
|
+
}
|
|
9749
9845
|
getServiceV2(r) {
|
|
9750
9846
|
const request = (r.toApiJson) ? r : new GetServiceV2Request(r);
|
|
9751
9847
|
return this.http.post(this._host + "/meetings.v1.MeetingGuest/GetServiceV2", request.toApiJson(), this.apiOptions())
|
|
@@ -10039,6 +10135,11 @@ class MeetingHostApiService {
|
|
|
10039
10135
|
return this.http.post(this._host + "/meetings.v1.MeetingHost/GetEventTypeById", request.toApiJson(), this.apiOptions())
|
|
10040
10136
|
.pipe(map(resp => GetEventTypeByIdResponse.fromProto(resp)));
|
|
10041
10137
|
}
|
|
10138
|
+
listBookingTypesForAi(r) {
|
|
10139
|
+
const request = (r.toApiJson) ? r : new ListBookingTypesForAIRequest(r);
|
|
10140
|
+
return this.http.post(this._host + "/meetings.v1.MeetingHost/ListBookingTypesForAI", request.toApiJson(), this.apiOptions())
|
|
10141
|
+
.pipe(map(resp => ListBookingTypesForAIResponse.fromProto(resp)));
|
|
10142
|
+
}
|
|
10042
10143
|
}
|
|
10043
10144
|
MeetingHostApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10044
10145
|
MeetingHostApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MeetingHostApiService, providedIn: 'root' });
|
|
@@ -10671,7 +10772,7 @@ class GuestService {
|
|
|
10671
10772
|
return this.guestAPIService.getGuestBookedMeetingV2(req);
|
|
10672
10773
|
}
|
|
10673
10774
|
cancelBatchMeeting(req) {
|
|
10674
|
-
return this.guestAPIService.cancelBatchMeeting(req).pipe(
|
|
10775
|
+
return this.guestAPIService.cancelBatchMeeting(req).pipe(mapTo(null));
|
|
10675
10776
|
}
|
|
10676
10777
|
isHostConfigured(req) {
|
|
10677
10778
|
return this.guestAPIService
|
|
@@ -10709,6 +10810,32 @@ class GuestService {
|
|
|
10709
10810
|
getServiceV2(req) {
|
|
10710
10811
|
return this.guestAPIService.getServiceV2(req);
|
|
10711
10812
|
}
|
|
10813
|
+
listBatchAvailableTimeSlots(req) {
|
|
10814
|
+
return this.guestAPIService.listBatchAvailableTimeSlots(req).pipe(map((resp) => {
|
|
10815
|
+
if (resp.timeSlots?.length) {
|
|
10816
|
+
return resp.timeSlots.map((ts) => TimeSpanFromApi(ts));
|
|
10817
|
+
}
|
|
10818
|
+
if (resp.isoTimeSlots?.length) {
|
|
10819
|
+
return resp.isoTimeSlots.map((iso) => ({
|
|
10820
|
+
start: new Date(iso.start),
|
|
10821
|
+
end: new Date(iso.end),
|
|
10822
|
+
}));
|
|
10823
|
+
}
|
|
10824
|
+
return [];
|
|
10825
|
+
}));
|
|
10826
|
+
}
|
|
10827
|
+
bookBatchMeeting(req) {
|
|
10828
|
+
return this.guestAPIService.bookBatchMeeting({
|
|
10829
|
+
...req,
|
|
10830
|
+
formAnswers: answersToAPI(req.formAnswers),
|
|
10831
|
+
});
|
|
10832
|
+
}
|
|
10833
|
+
rescheduleBatchMeeting(req) {
|
|
10834
|
+
return this.guestAPIService.rescheduleBatchMeeting(req).pipe(mapTo(null));
|
|
10835
|
+
}
|
|
10836
|
+
listGuestBookedMeetings(req) {
|
|
10837
|
+
return this.guestAPIService.listGuestBookedMeetings(req);
|
|
10838
|
+
}
|
|
10712
10839
|
}
|
|
10713
10840
|
GuestService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GuestService, deps: [{ token: MeetingGuestApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10714
10841
|
GuestService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: GuestService, providedIn: "root" });
|
|
@@ -11285,6 +11412,9 @@ class HostService {
|
|
|
11285
11412
|
listEventTypesForMultipleCalendars(req) {
|
|
11286
11413
|
return this.hostAPIService.listEventTypesForMultipleCalendars(req);
|
|
11287
11414
|
}
|
|
11415
|
+
listBookingTypesForAi(req) {
|
|
11416
|
+
return this.hostAPIService.listBookingTypesForAi(req);
|
|
11417
|
+
}
|
|
11288
11418
|
}
|
|
11289
11419
|
HostService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: HostService, deps: [{ token: MeetingHostApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
11290
11420
|
HostService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: HostService, providedIn: "root" });
|
|
@@ -11297,5 +11427,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
|
|
|
11297
11427
|
* Generated bundle index. Do not edit.
|
|
11298
11428
|
*/
|
|
11299
11429
|
|
|
11300
|
-
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 };
|
|
11430
|
+
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 };
|
|
11301
11431
|
//# sourceMappingURL=vendasta-meetings.mjs.map
|