@vendasta/meetings 1.4.8 → 1.4.9
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 +11 -1
- package/esm2020/lib/_internal/index.mjs +2 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-external.interface.mjs +8 -0
- 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/meeting-external.api.service.mjs +45 -0
- package/esm2020/lib/_internal/objects/index.mjs +2 -1
- package/esm2020/lib/_internal/objects/meeting-external.mjs +169 -0
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +7 -1
- package/esm2020/lib/_internal/objects/meeting-host.mjs +7 -1
- package/esm2020/lib/guest/guest.service.mjs +1 -1
- package/esm2020/lib/host/host.service.mjs +1 -1
- package/fesm2015/vendasta-meetings.mjs +256 -32
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +256 -32
- 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 +9 -0
- package/lib/_internal/index.d.ts +1 -0
- package/lib/_internal/interfaces/index.d.ts +1 -0
- package/lib/_internal/interfaces/meeting-external.interface.d.ts +30 -0
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +1 -0
- package/lib/_internal/interfaces/meeting-host.interface.d.ts +1 -0
- package/lib/_internal/meeting-external.api.service.d.ts +14 -0
- package/lib/_internal/objects/index.d.ts +1 -0
- package/lib/_internal/objects/meeting-external.d.ts +50 -0
- package/lib/_internal/objects/meeting-guest.d.ts +1 -0
- package/lib/_internal/objects/meeting-host.d.ts +1 -0
- package/lib/guest/guest.service.d.ts +2 -1
- package/lib/host/host.service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { CalendarSource, MeetingSource, MeetingSourceStatus, } from './meeting-source.enum';
|
|
2
2
|
export { ZoomApprovalType, ZoomMeetingRecurrenceType, ZoomMeetingType, ZoomMonthlyWeek, ZoomMonthlyWeekDay, ZoomRegistrationType, ZoomWeeklyDay, } from './zoom.enum';
|
|
3
3
|
export { CalendarType, FormFieldType, OnBoardingState, } from './shared.enum';
|
|
4
|
-
export { DateRangeType, MeetingLocationType, NotificationType, RegistrationCutOffUnit, RelativeTimeUnit, TeamEventMeetingType, } from './meeting-type.enum';
|
|
4
|
+
export { BookingSource, DateRangeType, MeetingLocationType, NotificationType, RegistrationCutOffUnit, RelativeTimeUnit, TeamEventMeetingType, } from './meeting-type.enum';
|
|
5
5
|
export { BookingFailureReason, Recurrence, RegistrationMode, Weekday, } from './meeting-host.enum';
|
|
6
6
|
export { DayOfWeek, } from './dayofweek.enum';
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
export declare enum BookingSource {
|
|
2
|
+
BOOKING_SOURCE_UNKNOWN = 0,
|
|
3
|
+
BOOKING_SOURCE_BOOKING_FORM = 1,
|
|
4
|
+
BOOKING_SOURCE_AI_VOICE = 2,
|
|
5
|
+
BOOKING_SOURCE_AI_CHAT = 3,
|
|
6
|
+
BOOKING_SOURCE_BOOK_A_MEETING = 4,
|
|
7
|
+
BOOKING_SOURCE_API_INTEGRATION = 5,
|
|
8
|
+
BOOKING_SOURCE_CRM = 6
|
|
9
|
+
}
|
|
1
10
|
export declare enum DateRangeType {
|
|
2
11
|
RELATIVE = 0,
|
|
3
12
|
CUSTOM = 1
|
package/lib/_internal/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export * from './enums';
|
|
|
2
2
|
export * from './objects';
|
|
3
3
|
export * from './interfaces';
|
|
4
4
|
export { GoogleMeetApiService } from './google-meet.api.service';
|
|
5
|
+
export { MeetingExternalApiService } from './meeting-external.api.service';
|
|
5
6
|
export { MeetingGuestApiService } from './meeting-guest.api.service';
|
|
6
7
|
export { MeetingHostApiService } from './meeting-host.api.service';
|
|
7
8
|
export { MeetingSourceAPIApiService } from './meeting-source-api.api.service';
|
|
@@ -6,6 +6,7 @@ export { DateRangeInterface, } from './date-range.interface';
|
|
|
6
6
|
export { EventTypeDateRangeInterface, FieldInterface, FormInterface, MeetingTypeInterface, RegistrationCutOffInterface, RelativeDateRangeInterface, } from './meeting-type.interface';
|
|
7
7
|
export { EventGroupAndServiceAssociationsInterface, GroupInterface, ServiceInterface, } from './groups-and-services.interface';
|
|
8
8
|
export { BookMeetingRequestInterface, BookMeetingResponseInterface, GetCalendarRequestInterface, GetCalendarResponseInterface, GetGroupRequestInterface, GetGroupResponseInterface, GetHostRequestInterface, GetHostResponseInterface, GetMeetingCalendarInfoRequestInterface, GetMeetingCalendarInfoResponseInterface, GetMeetingTypeRequestInterface, GetMeetingTypeResponseInterface, GetServiceRequestInterface, GetServiceResponseInterface, GetSessionInviteeMeetingInfoRequestInterface, GetSessionInviteeMeetingInfoResponseInterface, GetSessionMeetingRequestInterface, GetSessionMeetingResponseInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingResponseInterface, GuestIsHostConfiguredRequestInterface, GuestIsHostConfiguredResponseInterface, GuestRescheduleMeetingRequestInterface, InviteeDeregisterSessionMeetingRequestInterface, InviteeRegisterSessionMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListAvailableTimeSlotsResponseInterface, ListMeetingTypesRequestInterface, ListMeetingTypesResponseInterface, BookMeetingRequestMetadataEntryInterface, RegisterSessionRequestInterface, } from './meeting-guest.interface';
|
|
9
|
+
export { GroupResponseInterface, GroupsRequestInterface, GroupsResponseInterface, ServiceResponseInterface, ServicesRequestInterface, ServicesResponseInterface, } from './meeting-external.interface';
|
|
9
10
|
export { FieldMaskInterface, } from './field-mask.interface';
|
|
10
11
|
export { IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, BuildHostIdRequestApplicationContextPropertiesEntryInterface, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, AvailabilityRuleInterface, AvailabilityRuleListInterface, BuildHostIdRequestInterface, BuildHostIdResponseInterface, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntryInterface, CalendarMigrationResponseInterface, CancelMeetingRequestInterface, CheckGroupOrServiceSlugExistRequestInterface, CheckGroupOrServiceSlugExistResponseInterface, CreateAvailabilityRequestInterface, CreateAvailabilityResponseInterface, CreateCalendarRequestInterface, CreateCalendarResponseInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateGroupResponseInterface, CreateMeetingTypeRequestInterface, CreateMeetingTypeResponseInterface, CreateServiceRequestInterface, CreateServiceResponseInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, DoesCalendarExistResponseInterface, EnsureGroupCalendarsExistRequestInterface, EnsureGroupCalendarsExistResponseInterface, EnsurePersonalCalendarExistsRequestInterface, EnsurePersonalCalendarExistsResponseInterface, EnsureSessionEventCalendarsExistRequestInterface, EnsureSessionEventCalendarsExistResponseInterface, ListBookedMeetingsRequestFiltersInterface, ListAvailabilityRequestFiltersInterface, GetEntityAssociationRequestInterface, GetEntityAssociationResponseInterface, GetHostMeetingRequestInterface, GetHostMeetingResponseInterface, GetHostPreferencesRequestInterface, GetHostPreferencesResponseInterface, GetHostsForCalendarRequestInterface, GetHostsForCalendarResponseInterface, GetMeetingTypesForCalendarsRequestInterface, GetMeetingTypesForCalendarsResponseInterface, HostBookMeetingRequestInterface, HostBookMeetingResponseInterface, HostBookSessionRequestInterface, HostBookSessionResponseInterface, HostDeleteAttendeesRequestInterface, HostDetailsInterface, HostGetCalendarRequestInterface, HostGetCalendarResponseInterface, HostGetMeetingTypeRequestInterface, HostGetMeetingTypeResponseInterface, HostListMeetingTypesRequestInterface, HostListMeetingTypesResponseInterface, GetHostsForCalendarResponseHostUserAvailabilityRuleEntryInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponseInterface, IsHostConfiguredRequestInterface, IsHostConfiguredResponseInterface, ListAttendeesRequestInterface, ListAttendeesResponseInterface, ListAvailabilityRequestInterface, ListAvailabilityResponseInterface, ListAvailableTimeslotsForRecurringSessionRequestInterface, ListAvailableTimeslotsForRecurringSessionResponseInterface, ListAvailableTimeslotsForSessionRequestInterface, ListAvailableTimeslotsForSessionResponseInterface, ListBookedMeetingsRequestInterface, ListBookedMeetingsResponseInterface, ListGroupsRequestInterface, ListGroupsResponseInterface, ListServicesRequestInterface, ListServicesResponseInterface, MeetingInterface, MeetingTypeListInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, MeetingMetadataEntryInterface, RecurrenceConfigInterface, RecurrenceEndInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SessionAttendeesInterface, SetGeneralAvailabilityRequestInterface, TimeSlotsByWeekDayInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
|
|
11
12
|
export { AccessInterface, MCPOptionsInterface, } from './annotations.interface';
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export interface GroupResponseInterface {
|
|
2
|
+
id?: string;
|
|
3
|
+
name?: string;
|
|
4
|
+
description?: string;
|
|
5
|
+
bookingUrl?: string;
|
|
6
|
+
hexColor?: string;
|
|
7
|
+
}
|
|
8
|
+
export interface GroupsRequestInterface {
|
|
9
|
+
partnerId?: string;
|
|
10
|
+
businessId?: string;
|
|
11
|
+
userId?: string;
|
|
12
|
+
}
|
|
13
|
+
export interface GroupsResponseInterface {
|
|
14
|
+
groups?: GroupResponseInterface[];
|
|
15
|
+
}
|
|
16
|
+
export interface ServiceResponseInterface {
|
|
17
|
+
id?: string;
|
|
18
|
+
name?: string;
|
|
19
|
+
description?: string;
|
|
20
|
+
bookingUrl?: string;
|
|
21
|
+
hexColor?: string;
|
|
22
|
+
}
|
|
23
|
+
export interface ServicesRequestInterface {
|
|
24
|
+
partnerId?: string;
|
|
25
|
+
businessId?: string;
|
|
26
|
+
userId?: string;
|
|
27
|
+
}
|
|
28
|
+
export interface ServicesResponseInterface {
|
|
29
|
+
services?: ServiceResponseInterface[];
|
|
30
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { GroupsRequest, GroupsResponse, ServicesRequest, ServicesResponse } from './objects/';
|
|
2
|
+
import { GroupsRequestInterface, ServicesRequestInterface } from './interfaces/';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MeetingExternalApiService {
|
|
6
|
+
private readonly hostService;
|
|
7
|
+
private readonly http;
|
|
8
|
+
private _host;
|
|
9
|
+
private apiOptions;
|
|
10
|
+
listGroups(r: GroupsRequest | GroupsRequestInterface): Observable<GroupsResponse>;
|
|
11
|
+
listServices(r: ServicesRequest | ServicesRequestInterface): Observable<ServicesResponse>;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MeetingExternalApiService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MeetingExternalApiService>;
|
|
14
|
+
}
|
|
@@ -6,6 +6,7 @@ export { DateRange, } from './date-range';
|
|
|
6
6
|
export { EventTypeDateRange, Field, Form, MeetingType, RegistrationCutOff, RelativeDateRange, } from './meeting-type';
|
|
7
7
|
export { EventGroupAndServiceAssociations, Group, Service, } from './groups-and-services';
|
|
8
8
|
export { BookMeetingRequest, BookMeetingResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingCalendarInfoRequest, GetMeetingCalendarInfoResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GetServiceRequest, GetServiceResponse, GetSessionInviteeMeetingInfoRequest, GetSessionInviteeMeetingInfoResponse, GetSessionMeetingRequest, GetSessionMeetingResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingResponse, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, InviteeDeregisterSessionMeetingRequest, InviteeRegisterSessionMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, BookMeetingRequestMetadataEntry, RegisterSessionRequest, } from './meeting-guest';
|
|
9
|
+
export { GroupResponse, GroupsRequest, GroupsResponse, ServiceResponse, ServicesRequest, ServicesResponse, } from './meeting-external';
|
|
9
10
|
export { FieldMask, } from './field-mask';
|
|
10
11
|
export { IsCalendarConfiguredRequestApplicationContextPropertiesEntry, BuildHostIdRequestApplicationContextPropertiesEntry, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, AvailabilityRule, AvailabilityRuleList, BuildHostIdRequest, BuildHostIdResponse, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntry, CalendarMigrationResponse, CancelMeetingRequest, CheckGroupOrServiceSlugExistRequest, CheckGroupOrServiceSlugExistResponse, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateGroupRequest, CreateGroupResponse, CreateMeetingTypeRequest, CreateMeetingTypeResponse, CreateServiceRequest, CreateServiceResponse, DeleteAvailabilityRequest, DeleteGroupRequest, DeleteMeetingTypeRequest, DeleteServiceRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, EnsureSessionEventCalendarsExistRequest, EnsureSessionEventCalendarsExistResponse, ListBookedMeetingsRequestFilters, ListAvailabilityRequestFilters, GetEntityAssociationRequest, GetEntityAssociationResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostBookSessionRequest, HostBookSessionResponse, HostDeleteAttendeesRequest, HostDetails, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, GetHostsForCalendarResponseHostUserAvailabilityRuleEntry, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAttendeesRequest, ListAttendeesResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListAvailableTimeslotsForRecurringSessionRequest, ListAvailableTimeslotsForRecurringSessionResponse, ListAvailableTimeslotsForSessionRequest, ListAvailableTimeslotsForSessionResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, Meeting, MeetingTypeList, UpdateMeetingMetadataRequestMetadataEntry, MeetingMetadataEntry, RecurrenceConfig, RecurrenceEnd, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SessionAttendees, SetGeneralAvailabilityRequest, TimeSlotsByWeekDay, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
|
|
11
12
|
export { Access, MCPOptions, } from './annotations';
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import * as i from '../interfaces';
|
|
2
|
+
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
3
|
+
export declare class GroupResponse implements i.GroupResponseInterface {
|
|
4
|
+
id: string;
|
|
5
|
+
name: string;
|
|
6
|
+
description: string;
|
|
7
|
+
bookingUrl: string;
|
|
8
|
+
hexColor: string;
|
|
9
|
+
static fromProto(proto: any): GroupResponse;
|
|
10
|
+
constructor(kwargs?: i.GroupResponseInterface);
|
|
11
|
+
toApiJson(): object;
|
|
12
|
+
}
|
|
13
|
+
export declare class GroupsRequest implements i.GroupsRequestInterface {
|
|
14
|
+
partnerId: string;
|
|
15
|
+
businessId: string;
|
|
16
|
+
userId: string;
|
|
17
|
+
static fromProto(proto: any): GroupsRequest;
|
|
18
|
+
constructor(kwargs?: i.GroupsRequestInterface);
|
|
19
|
+
toApiJson(): object;
|
|
20
|
+
}
|
|
21
|
+
export declare class GroupsResponse implements i.GroupsResponseInterface {
|
|
22
|
+
groups: GroupResponse[];
|
|
23
|
+
static fromProto(proto: any): GroupsResponse;
|
|
24
|
+
constructor(kwargs?: i.GroupsResponseInterface);
|
|
25
|
+
toApiJson(): object;
|
|
26
|
+
}
|
|
27
|
+
export declare class ServiceResponse implements i.ServiceResponseInterface {
|
|
28
|
+
id: string;
|
|
29
|
+
name: string;
|
|
30
|
+
description: string;
|
|
31
|
+
bookingUrl: string;
|
|
32
|
+
hexColor: string;
|
|
33
|
+
static fromProto(proto: any): ServiceResponse;
|
|
34
|
+
constructor(kwargs?: i.ServiceResponseInterface);
|
|
35
|
+
toApiJson(): object;
|
|
36
|
+
}
|
|
37
|
+
export declare class ServicesRequest implements i.ServicesRequestInterface {
|
|
38
|
+
partnerId: string;
|
|
39
|
+
businessId: string;
|
|
40
|
+
userId: string;
|
|
41
|
+
static fromProto(proto: any): ServicesRequest;
|
|
42
|
+
constructor(kwargs?: i.ServicesRequestInterface);
|
|
43
|
+
toApiJson(): object;
|
|
44
|
+
}
|
|
45
|
+
export declare class ServicesResponse implements i.ServicesResponseInterface {
|
|
46
|
+
services: ServiceResponse[];
|
|
47
|
+
static fromProto(proto: any): ServicesResponse;
|
|
48
|
+
constructor(kwargs?: i.ServicesResponseInterface);
|
|
49
|
+
toApiJson(): object;
|
|
50
|
+
}
|
|
@@ -20,6 +20,7 @@ export declare class BookMeetingRequest implements i.BookMeetingRequestInterface
|
|
|
20
20
|
recaptchaToken: string;
|
|
21
21
|
location: string;
|
|
22
22
|
userId: string;
|
|
23
|
+
bookingSource: e.BookingSource;
|
|
23
24
|
static fromProto(proto: any): BookMeetingRequest;
|
|
24
25
|
constructor(kwargs?: i.BookMeetingRequestInterface);
|
|
25
26
|
toApiJson(): object;
|
|
@@ -333,6 +333,7 @@ export declare class HostBookMeetingRequest implements i.HostBookMeetingRequestI
|
|
|
333
333
|
attendees: Contact[];
|
|
334
334
|
topic: string;
|
|
335
335
|
userId: string;
|
|
336
|
+
bookingSource: e.BookingSource;
|
|
336
337
|
static fromProto(proto: any): HostBookMeetingRequest;
|
|
337
338
|
constructor(kwargs?: i.HostBookMeetingRequestInterface);
|
|
338
339
|
toApiJson(): object;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CalendarInterface, Contact, GetGroupResponse, GetSessionMeetingResponse, MeetingGuestApiService, MeetingLocationType, TeamEventMeetingType, TimeZoneInterface, ContactInterface, AnswersInterface, GetSessionInviteeMeetingInfoResponse } from '../_internal';
|
|
1
|
+
import { CalendarInterface, Contact, GetGroupResponse, GetSessionMeetingResponse, MeetingGuestApiService, MeetingLocationType, TeamEventMeetingType, TimeZoneInterface, ContactInterface, AnswersInterface, GetSessionInviteeMeetingInfoResponse, BookingSource } from '../_internal';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { Host, MeetingForm, MeetingMetadata, MeetingType, TimeSpan } from '../shared';
|
|
4
4
|
import { GetServiceResponse } from "../_internal/objects/meeting-guest";
|
|
@@ -83,6 +83,7 @@ export declare class GuestService implements GuestServiceInterface {
|
|
|
83
83
|
recaptchaToken: string;
|
|
84
84
|
location?: string;
|
|
85
85
|
userId?: string;
|
|
86
|
+
bookingSource?: BookingSource;
|
|
86
87
|
}): Observable<BookMeetingResponse>;
|
|
87
88
|
cancelMeeting(req: {
|
|
88
89
|
authToken: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Observable } from "rxjs";
|
|
2
|
-
import { AvailabilityRuleList, CreateCalendarRequestInterface, CreateCalendarResponse, DayOfWeek, GetGroupResponse, GetServiceResponse, HostBookMeetingRequestInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponse, IsHostConfiguredResponse, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, MeetingHostApiService, PagedRequestOptionsInterface, SendMeetingRequestEmailRequestInterface, TimeRangeInterface, TimeZoneInterface, WeekdayAvailability, Contact, EmailsToDelete, HostBookSessionRequestInterface, ListAttendeesResponse } from "../_internal";
|
|
2
|
+
import { AvailabilityRuleList, CreateCalendarRequestInterface, CreateCalendarResponse, DayOfWeek, GetGroupResponse, GetServiceResponse, HostBookMeetingRequestInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponse, IsHostConfiguredResponse, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, MeetingHostApiService, PagedRequestOptionsInterface, SendMeetingRequestEmailRequestInterface, TimeRangeInterface, TimeZoneInterface, WeekdayAvailability, Contact, EmailsToDelete, HostBookSessionRequestInterface, ListAttendeesResponse, BookingSource } from "../_internal";
|
|
3
3
|
import { BookMeetingResponse, BookSessionResponse } from "../guest";
|
|
4
4
|
import { ApplicationContextPropertiesSet, AvailabilityRule, Calendar, EntityAssociations, Group, HostUrlMap, Meeting, MeetingMetadata, MeetingType, PagedResponse, Preferences, Service, TimeSpan } from "../shared";
|
|
5
5
|
import { HostUser } from "../shared/host-user";
|
|
@@ -117,6 +117,7 @@ export declare class HostService {
|
|
|
117
117
|
})[];
|
|
118
118
|
location?: string;
|
|
119
119
|
userId?: string;
|
|
120
|
+
bookingSource?: BookingSource;
|
|
120
121
|
}): Observable<BookMeetingResponse>;
|
|
121
122
|
hostBookSession(req: HostBookSessionRequestInterface): Observable<BookSessionResponse>;
|
|
122
123
|
bookMeeting(req: HostBookMeetingRequestInterface): Observable<string>;
|