@vendasta/meetings 0.99.5 → 0.99.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/guest/guest.service.mjs +8 -1
- package/esm2020/lib/host/host.service.mjs +6 -1
- package/fesm2015/vendasta-meetings.mjs +6 -0
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +12 -0
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/guest/guest.service.d.ts +11 -0
- package/lib/host/host.service.d.ts +16 -1
- package/package.json +1 -1
|
@@ -7,6 +7,10 @@ export interface BookMeetingResponse {
|
|
|
7
7
|
meetingId: string;
|
|
8
8
|
hostId: string;
|
|
9
9
|
}
|
|
10
|
+
export interface BookSessionResponse {
|
|
11
|
+
meetingId: string;
|
|
12
|
+
bookingUrl: string;
|
|
13
|
+
}
|
|
10
14
|
export interface BookedMeetingInfo {
|
|
11
15
|
start: Date;
|
|
12
16
|
end: Date;
|
|
@@ -84,6 +88,13 @@ export declare class GuestService implements GuestServiceInterface {
|
|
|
84
88
|
timeZone?: TimeZoneInterface;
|
|
85
89
|
location?: string;
|
|
86
90
|
}): Observable<null>;
|
|
91
|
+
registerSession(req: {
|
|
92
|
+
meetingId: string;
|
|
93
|
+
attendees: Contact[];
|
|
94
|
+
comment?: string;
|
|
95
|
+
formAnswers?: MeetingForm;
|
|
96
|
+
recaptchaToken?: string;
|
|
97
|
+
}): Observable<null>;
|
|
87
98
|
getHost(req: {
|
|
88
99
|
hostId: string;
|
|
89
100
|
}): Observable<Host>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Observable } from "rxjs";
|
|
2
2
|
import { AvailabilityRuleList, CreateCalendarRequestInterface, CreateCalendarResponse, DayOfWeek, GetGroupResponse, GetServiceResponse, HostBookMeetingRequestInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponse, IsHostConfiguredResponse, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, MeetingHostApiService, PagedRequestOptionsInterface, SendMeetingRequestEmailRequestInterface, TimeRangeInterface, TimeZoneInterface, WeekdayAvailability, Contact } from "../_internal";
|
|
3
|
-
import { BookMeetingResponse } from
|
|
3
|
+
import { BookMeetingResponse, BookSessionResponse } from '../guest';
|
|
4
4
|
import { ApplicationContextPropertiesSet, AvailabilityRule, Calendar, EntityAssociations, Group, HostUrlMap, Meeting, MeetingMetadata, MeetingType, PagedResponse, Preferences, Service } from "../shared";
|
|
5
5
|
import { HostUser } from "../shared/host-user";
|
|
6
6
|
import { HttpResponse } from "@angular/common/http";
|
|
@@ -118,6 +118,21 @@ export declare class HostService {
|
|
|
118
118
|
location?: string;
|
|
119
119
|
userId?: string;
|
|
120
120
|
}): Observable<BookMeetingResponse>;
|
|
121
|
+
hostBookSession(req: {
|
|
122
|
+
title: string;
|
|
123
|
+
location: string;
|
|
124
|
+
locationType: any;
|
|
125
|
+
duration: string;
|
|
126
|
+
description: string;
|
|
127
|
+
maxAttendees: number;
|
|
128
|
+
logoUrl: string;
|
|
129
|
+
hostUsers: any[];
|
|
130
|
+
registrationCutoff: any;
|
|
131
|
+
timeSlot: any;
|
|
132
|
+
slug: string;
|
|
133
|
+
start: Date;
|
|
134
|
+
meetingTypeId: string;
|
|
135
|
+
}): Observable<BookSessionResponse>;
|
|
121
136
|
bookMeeting(req: HostBookMeetingRequestInterface): Observable<string>;
|
|
122
137
|
createDefaultMeetingTypes(req: {
|
|
123
138
|
calendarIds: string[];
|