@vendasta/meetings 1.4.9 → 1.5.1
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-guest.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
- package/esm2020/lib/_internal/meeting-guest.api.service.mjs +7 -2
- package/esm2020/lib/_internal/objects/index.mjs +3 -3
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +95 -1
- package/esm2020/lib/_internal/objects/meeting-host.mjs +11 -11
- package/esm2020/lib/guest/guest.service.mjs +5 -2
- package/esm2020/lib/index.mjs +2 -2
- package/fesm2015/vendasta-meetings.mjs +119 -11
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +119 -11
- 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 +2 -2
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +18 -0
- package/lib/_internal/interfaces/meeting-host.interface.d.ts +5 -5
- package/lib/_internal/meeting-guest.api.service.d.ts +3 -2
- package/lib/_internal/objects/index.d.ts +2 -2
- package/lib/_internal/objects/meeting-guest.d.ts +25 -0
- package/lib/_internal/objects/meeting-host.d.ts +13 -13
- package/lib/guest/guest.service.d.ts +4 -1
- package/lib/index.d.ts +1 -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 { BookingSource, DateRangeType, MeetingLocationType, NotificationType, RegistrationCutOffUnit, RelativeTimeUnit, TeamEventMeetingType, } from './meeting-type.enum';
|
|
4
|
+
export { BookingSource, DateRangeType, MeetingLocation, 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';
|
|
@@ -11,6 +11,11 @@ export declare enum DateRangeType {
|
|
|
11
11
|
RELATIVE = 0,
|
|
12
12
|
CUSTOM = 1
|
|
13
13
|
}
|
|
14
|
+
export declare enum MeetingLocation {
|
|
15
|
+
VIDEO_MEETING = 0,
|
|
16
|
+
IN_PERSON_MEETING = 1,
|
|
17
|
+
HYBRID_MEETING = 2
|
|
18
|
+
}
|
|
14
19
|
export declare enum MeetingLocationType {
|
|
15
20
|
VIDEO = 0,
|
|
16
21
|
IN_PERSON_USER_SITE = 1,
|
|
@@ -5,10 +5,10 @@ export { AnswerInterface, AnswersInterface, CalendarApplicationContextEntryInter
|
|
|
5
5
|
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
|
-
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';
|
|
8
|
+
export { BookMeetingRequestInterface, BookMeetingResponseInterface, GetCalendarRequestInterface, GetCalendarResponseInterface, GetGroupRequestInterface, GetGroupResponseInterface, GetHostRequestInterface, GetHostResponseInterface, GetMeetingCalendarInfoRequestInterface, GetMeetingCalendarInfoResponseInterface, GetMeetingTypeRequestInterface, GetMeetingTypeResponseInterface, GetServiceRequestInterface, GetServiceResponseInterface, GetSessionInviteeMeetingInfoRequestInterface, GetSessionInviteeMeetingInfoResponseInterface, GetSessionMeetingRequestInterface, GetSessionMeetingResponseInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingRequestV2Interface, GuestGetBookedMeetingResponseInterface, GuestGetBookedMeetingResponseV2Interface, GuestIsHostConfiguredRequestInterface, GuestIsHostConfiguredResponseInterface, GuestRescheduleMeetingRequestInterface, InviteeDeregisterSessionMeetingRequestInterface, InviteeRegisterSessionMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListAvailableTimeSlotsResponseInterface, ListMeetingTypesRequestInterface, ListMeetingTypesResponseInterface, BookMeetingRequestMetadataEntryInterface, RegisterSessionRequestInterface, } from './meeting-guest.interface';
|
|
9
9
|
export { GroupResponseInterface, GroupsRequestInterface, GroupsResponseInterface, ServiceResponseInterface, ServicesRequestInterface, ServicesResponseInterface, } from './meeting-external.interface';
|
|
10
10
|
export { FieldMaskInterface, } from './field-mask.interface';
|
|
11
|
-
export { IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, BuildHostIdRequestApplicationContextPropertiesEntryInterface,
|
|
11
|
+
export { EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, BuildHostIdRequestApplicationContextPropertiesEntryInterface, 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, MeetingMetadataEntryInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, RecurrenceConfigInterface, RecurrenceEndInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SessionAttendeesInterface, SetGeneralAvailabilityRequestInterface, TimeSlotsByWeekDayInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
|
|
12
12
|
export { AccessInterface, MCPOptionsInterface, } from './annotations.interface';
|
|
13
13
|
export { TimeOfDayInterface, } from './timeofday.interface';
|
|
14
14
|
export { DateTimeInterface, TimeZoneInterface, } from './datetime.interface';
|
|
@@ -107,6 +107,9 @@ export interface GuestGetBookedMeetingRequestInterface {
|
|
|
107
107
|
meetingId?: string;
|
|
108
108
|
authToken?: string;
|
|
109
109
|
}
|
|
110
|
+
export interface GuestGetBookedMeetingRequestV2Interface {
|
|
111
|
+
meetingId?: string;
|
|
112
|
+
}
|
|
110
113
|
export interface GuestGetBookedMeetingResponseInterface {
|
|
111
114
|
startTime?: Date;
|
|
112
115
|
endTime?: Date;
|
|
@@ -119,6 +122,21 @@ export interface GuestGetBookedMeetingResponseInterface {
|
|
|
119
122
|
displayName?: string;
|
|
120
123
|
calendarId?: string;
|
|
121
124
|
}
|
|
125
|
+
export interface GuestGetBookedMeetingResponseV2Interface {
|
|
126
|
+
title?: string;
|
|
127
|
+
hostUserNames?: string[];
|
|
128
|
+
startTime?: Date;
|
|
129
|
+
endTime?: Date;
|
|
130
|
+
location?: string;
|
|
131
|
+
meetingSourceLink?: string;
|
|
132
|
+
meetingSource?: e.MeetingSource;
|
|
133
|
+
meetingLocationType?: e.MeetingLocation;
|
|
134
|
+
googleCalendarLink?: string;
|
|
135
|
+
outlookCalendarLink?: string;
|
|
136
|
+
rescheduleLink?: string;
|
|
137
|
+
cancelLink?: string;
|
|
138
|
+
timeZone?: TimeZoneInterface;
|
|
139
|
+
}
|
|
122
140
|
export interface GuestIsHostConfiguredRequestInterface {
|
|
123
141
|
hostId?: string;
|
|
124
142
|
}
|
|
@@ -5,15 +5,15 @@ import { MeetingTypeInterface, RegistrationCutOffInterface } from './meeting-typ
|
|
|
5
5
|
import { TimeRangeInterface, CalendarInterface, PreferencesInterface, HostUserInterface, ContactInterface, EmailsToDeleteInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, IsoDateTimeRangeInterface, AttendeeInterface, AnswersInterface, AttachmentInterface } from './shared.interface';
|
|
6
6
|
import { TimeZoneInterface } from './';
|
|
7
7
|
import * as e from '../enums';
|
|
8
|
-
export interface
|
|
8
|
+
export interface EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
|
|
9
9
|
key?: string;
|
|
10
10
|
value?: string;
|
|
11
11
|
}
|
|
12
|
-
export interface
|
|
12
|
+
export interface IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
|
|
13
13
|
key?: string;
|
|
14
14
|
value?: string;
|
|
15
15
|
}
|
|
16
|
-
export interface
|
|
16
|
+
export interface BuildHostIdRequestApplicationContextPropertiesEntryInterface {
|
|
17
17
|
key?: string;
|
|
18
18
|
value?: string;
|
|
19
19
|
}
|
|
@@ -353,11 +353,11 @@ export interface MeetingInterface {
|
|
|
353
353
|
export interface MeetingTypeListInterface {
|
|
354
354
|
meetingTypes?: MeetingTypeInterface[];
|
|
355
355
|
}
|
|
356
|
-
export interface
|
|
356
|
+
export interface MeetingMetadataEntryInterface {
|
|
357
357
|
key?: string;
|
|
358
358
|
value?: string;
|
|
359
359
|
}
|
|
360
|
-
export interface
|
|
360
|
+
export interface UpdateMeetingMetadataRequestMetadataEntryInterface {
|
|
361
361
|
key?: string;
|
|
362
362
|
value?: string;
|
|
363
363
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { 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 } from './objects/';
|
|
2
|
-
import { BookMeetingRequestInterface, GetCalendarRequestInterface, GetGroupRequestInterface, GetHostRequestInterface, GetMeetingCalendarInfoRequestInterface, GetMeetingTypeRequestInterface, GetServiceRequestInterface, GetSessionInviteeMeetingInfoRequestInterface, GetSessionMeetingRequestInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestIsHostConfiguredRequestInterface, GuestRescheduleMeetingRequestInterface, InviteeDeregisterSessionMeetingRequestInterface, InviteeRegisterSessionMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListMeetingTypesRequestInterface } from './interfaces/';
|
|
1
|
+
import { BookMeetingRequest, BookMeetingResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingCalendarInfoRequest, GetMeetingCalendarInfoResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GetServiceRequest, GetServiceResponse, GetSessionInviteeMeetingInfoRequest, GetSessionInviteeMeetingInfoResponse, GetSessionMeetingRequest, GetSessionMeetingResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingRequestV2, GuestGetBookedMeetingResponse, GuestGetBookedMeetingResponseV2, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, InviteeDeregisterSessionMeetingRequest, InviteeRegisterSessionMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse } from './objects/';
|
|
2
|
+
import { BookMeetingRequestInterface, GetCalendarRequestInterface, GetGroupRequestInterface, GetHostRequestInterface, GetMeetingCalendarInfoRequestInterface, GetMeetingTypeRequestInterface, GetServiceRequestInterface, GetSessionInviteeMeetingInfoRequestInterface, GetSessionMeetingRequestInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingRequestV2Interface, GuestIsHostConfiguredRequestInterface, GuestRescheduleMeetingRequestInterface, InviteeDeregisterSessionMeetingRequestInterface, InviteeRegisterSessionMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListMeetingTypesRequestInterface } from './interfaces/';
|
|
3
3
|
import { HttpResponse } from '@angular/common/http';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -16,6 +16,7 @@ export declare class MeetingGuestApiService {
|
|
|
16
16
|
cancelMeeting(r: GuestCancelMeetingRequest | GuestCancelMeetingRequestInterface): Observable<HttpResponse<null>>;
|
|
17
17
|
rescheduleMeeting(r: GuestRescheduleMeetingRequest | GuestRescheduleMeetingRequestInterface): Observable<HttpResponse<null>>;
|
|
18
18
|
getGuestBookedMeeting(r: GuestGetBookedMeetingRequest | GuestGetBookedMeetingRequestInterface): Observable<GuestGetBookedMeetingResponse>;
|
|
19
|
+
getGuestBookedMeetingV2(r: GuestGetBookedMeetingRequestV2 | GuestGetBookedMeetingRequestV2Interface): Observable<GuestGetBookedMeetingResponseV2>;
|
|
19
20
|
getCalendar(r: GetCalendarRequest | GetCalendarRequestInterface): Observable<GetCalendarResponse>;
|
|
20
21
|
getHost(r: GetHostRequest | GetHostRequestInterface): Observable<GetHostResponse>;
|
|
21
22
|
getGroup(r: GetGroupRequest | GetGroupRequestInterface): Observable<GetGroupResponse>;
|
|
@@ -5,10 +5,10 @@ export { Answer, Answers, CalendarApplicationContextEntry, Attachment, Attendee,
|
|
|
5
5
|
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
|
-
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';
|
|
8
|
+
export { BookMeetingRequest, BookMeetingResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingCalendarInfoRequest, GetMeetingCalendarInfoResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GetServiceRequest, GetServiceResponse, GetSessionInviteeMeetingInfoRequest, GetSessionInviteeMeetingInfoResponse, GetSessionMeetingRequest, GetSessionMeetingResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingRequestV2, GuestGetBookedMeetingResponse, GuestGetBookedMeetingResponseV2, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, InviteeDeregisterSessionMeetingRequest, InviteeRegisterSessionMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, BookMeetingRequestMetadataEntry, RegisterSessionRequest, } from './meeting-guest';
|
|
9
9
|
export { GroupResponse, GroupsRequest, GroupsResponse, ServiceResponse, ServicesRequest, ServicesResponse, } from './meeting-external';
|
|
10
10
|
export { FieldMask, } from './field-mask';
|
|
11
|
-
export { IsCalendarConfiguredRequestApplicationContextPropertiesEntry, BuildHostIdRequestApplicationContextPropertiesEntry,
|
|
11
|
+
export { EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, IsCalendarConfiguredRequestApplicationContextPropertiesEntry, BuildHostIdRequestApplicationContextPropertiesEntry, 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, MeetingMetadataEntry, UpdateMeetingMetadataRequestMetadataEntry, RecurrenceConfig, RecurrenceEnd, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SessionAttendees, SetGeneralAvailabilityRequest, TimeSlotsByWeekDay, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
|
|
12
12
|
export { Access, MCPOptions, } from './annotations';
|
|
13
13
|
export { TimeOfDay, } from './timeofday';
|
|
14
14
|
export { DateTime, TimeZone, } from './datetime';
|
|
@@ -169,6 +169,12 @@ export declare class GuestGetBookedMeetingRequest implements i.GuestGetBookedMee
|
|
|
169
169
|
constructor(kwargs?: i.GuestGetBookedMeetingRequestInterface);
|
|
170
170
|
toApiJson(): object;
|
|
171
171
|
}
|
|
172
|
+
export declare class GuestGetBookedMeetingRequestV2 implements i.GuestGetBookedMeetingRequestV2Interface {
|
|
173
|
+
meetingId: string;
|
|
174
|
+
static fromProto(proto: any): GuestGetBookedMeetingRequestV2;
|
|
175
|
+
constructor(kwargs?: i.GuestGetBookedMeetingRequestV2Interface);
|
|
176
|
+
toApiJson(): object;
|
|
177
|
+
}
|
|
172
178
|
export declare class GuestGetBookedMeetingResponse implements i.GuestGetBookedMeetingResponseInterface {
|
|
173
179
|
startTime: Date;
|
|
174
180
|
endTime: Date;
|
|
@@ -184,6 +190,25 @@ export declare class GuestGetBookedMeetingResponse implements i.GuestGetBookedMe
|
|
|
184
190
|
constructor(kwargs?: i.GuestGetBookedMeetingResponseInterface);
|
|
185
191
|
toApiJson(): object;
|
|
186
192
|
}
|
|
193
|
+
export declare class GuestGetBookedMeetingResponseV2 implements i.GuestGetBookedMeetingResponseV2Interface {
|
|
194
|
+
title: string;
|
|
195
|
+
hostUserNames: string[];
|
|
196
|
+
startTime: Date;
|
|
197
|
+
endTime: Date;
|
|
198
|
+
location: string;
|
|
199
|
+
meetingSourceLink: string;
|
|
200
|
+
meetingSource: e.MeetingSource;
|
|
201
|
+
meetingLocationType: e.MeetingLocation;
|
|
202
|
+
googleCalendarLink: string;
|
|
203
|
+
outlookCalendarLink: string;
|
|
204
|
+
rescheduleLink: string;
|
|
205
|
+
cancelLink: string;
|
|
206
|
+
timeZone: TimeZone;
|
|
207
|
+
businessLogo: string;
|
|
208
|
+
static fromProto(proto: any): GuestGetBookedMeetingResponseV2;
|
|
209
|
+
constructor(kwargs?: i.GuestGetBookedMeetingResponseV2Interface);
|
|
210
|
+
toApiJson(): object;
|
|
211
|
+
}
|
|
187
212
|
export declare class GuestIsHostConfiguredRequest implements i.GuestIsHostConfiguredRequestInterface {
|
|
188
213
|
hostId: string;
|
|
189
214
|
static fromProto(proto: any): GuestIsHostConfiguredRequest;
|
|
@@ -7,6 +7,13 @@ import { TimeRange, Calendar, Preferences, HostUser, Contact, EmailsToDelete, Pa
|
|
|
7
7
|
import { TimeZone } from './';
|
|
8
8
|
import * as e from '../enums';
|
|
9
9
|
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
10
|
+
export declare class EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry implements i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
|
|
11
|
+
key: string;
|
|
12
|
+
value: string;
|
|
13
|
+
static fromProto(proto: any): EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry;
|
|
14
|
+
constructor(kwargs?: i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface);
|
|
15
|
+
toApiJson(): object;
|
|
16
|
+
}
|
|
10
17
|
export declare class IsCalendarConfiguredRequestApplicationContextPropertiesEntry implements i.IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
|
|
11
18
|
key: string;
|
|
12
19
|
value: string;
|
|
@@ -21,13 +28,6 @@ export declare class BuildHostIdRequestApplicationContextPropertiesEntry impleme
|
|
|
21
28
|
constructor(kwargs?: i.BuildHostIdRequestApplicationContextPropertiesEntryInterface);
|
|
22
29
|
toApiJson(): object;
|
|
23
30
|
}
|
|
24
|
-
export declare class EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry implements i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
|
|
25
|
-
key: string;
|
|
26
|
-
value: string;
|
|
27
|
-
static fromProto(proto: any): EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry;
|
|
28
|
-
constructor(kwargs?: i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface);
|
|
29
|
-
toApiJson(): object;
|
|
30
|
-
}
|
|
31
31
|
export declare class AvailabilityRule implements i.AvailabilityRuleInterface {
|
|
32
32
|
hostId: string;
|
|
33
33
|
meetingTypeId: string;
|
|
@@ -595,18 +595,18 @@ export declare class MeetingTypeList implements i.MeetingTypeListInterface {
|
|
|
595
595
|
constructor(kwargs?: i.MeetingTypeListInterface);
|
|
596
596
|
toApiJson(): object;
|
|
597
597
|
}
|
|
598
|
-
export declare class
|
|
598
|
+
export declare class MeetingMetadataEntry implements i.MeetingMetadataEntryInterface {
|
|
599
599
|
key: string;
|
|
600
600
|
value: string;
|
|
601
|
-
static fromProto(proto: any):
|
|
602
|
-
constructor(kwargs?: i.
|
|
601
|
+
static fromProto(proto: any): MeetingMetadataEntry;
|
|
602
|
+
constructor(kwargs?: i.MeetingMetadataEntryInterface);
|
|
603
603
|
toApiJson(): object;
|
|
604
604
|
}
|
|
605
|
-
export declare class
|
|
605
|
+
export declare class UpdateMeetingMetadataRequestMetadataEntry implements i.UpdateMeetingMetadataRequestMetadataEntryInterface {
|
|
606
606
|
key: string;
|
|
607
607
|
value: string;
|
|
608
|
-
static fromProto(proto: any):
|
|
609
|
-
constructor(kwargs?: i.
|
|
608
|
+
static fromProto(proto: any): UpdateMeetingMetadataRequestMetadataEntry;
|
|
609
|
+
constructor(kwargs?: i.UpdateMeetingMetadataRequestMetadataEntryInterface);
|
|
610
610
|
toApiJson(): object;
|
|
611
611
|
}
|
|
612
612
|
export declare class RecurrenceConfig implements i.RecurrenceConfigInterface {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CalendarInterface, Contact, GetGroupResponse, GetSessionMeetingResponse, MeetingGuestApiService, MeetingLocationType, TeamEventMeetingType, TimeZoneInterface, ContactInterface, AnswersInterface, GetSessionInviteeMeetingInfoResponse, BookingSource } from '../_internal';
|
|
1
|
+
import { CalendarInterface, Contact, GetGroupResponse, GetSessionMeetingResponse, MeetingGuestApiService, MeetingLocationType, TeamEventMeetingType, TimeZoneInterface, ContactInterface, AnswersInterface, GetSessionInviteeMeetingInfoResponse, GuestGetBookedMeetingResponseV2, 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";
|
|
@@ -104,6 +104,9 @@ export declare class GuestService implements GuestServiceInterface {
|
|
|
104
104
|
calendarId: string;
|
|
105
105
|
}): Observable<CalendarInterface>;
|
|
106
106
|
getBookedMeetingInfo(meetingId: string, authToken: string): Observable<BookedMeetingInfo>;
|
|
107
|
+
getGuestBookedMeetingV2(req: {
|
|
108
|
+
meetingId: string;
|
|
109
|
+
}): Observable<GuestGetBookedMeetingResponseV2>;
|
|
107
110
|
isHostConfigured(req: {
|
|
108
111
|
hostId: string;
|
|
109
112
|
}): Observable<boolean>;
|
package/lib/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export { BookedMeetingInfo, BookMeetingResponse, GuestServiceInterface } from '.
|
|
|
3
3
|
export { GuestService } from './guest/guest.service';
|
|
4
4
|
export { HostService } from './host/host.service';
|
|
5
5
|
export { addMetadataToBookingLink } from './host/url';
|
|
6
|
-
export { MeetingSource, MeetingSourceStatus, DayOfWeek, FormFieldType, CalendarType, MeetingLocationType, CalendarSource, RelativeTimeUnit, DateRangeType, TeamEventMeetingType, OnBoardingState, RegistrationCutOffUnit, NotificationType } from './_internal/enums/index';
|
|
6
|
+
export { MeetingSource, MeetingSourceStatus, DayOfWeek, FormFieldType, CalendarType, MeetingLocation, MeetingLocationType, CalendarSource, RelativeTimeUnit, DateRangeType, TeamEventMeetingType, OnBoardingState, RegistrationCutOffUnit, NotificationType, BookingSource } from './_internal/enums/index';
|
|
7
7
|
export { MeetingSourceQuery, MeetingSourceInfo, MeetingSourceListResponse, Contact, WeekdayAvailability, CreateCalendarRequest, CreateCalendarResponse, } from './_internal/objects/index';
|
|
8
8
|
export { Host, TimeSpan, PagedResponse, Meeting, MeetingType, Attendee, AvailabilityRule, Calendar, HostUrlMap, Preferences, Duration, MeetingTypeForm, MeetingTypeFormField, MeetingForm, MeetingFormAnswer, MeetingMetadata, WellKnownMeetingMetadataKeys, WellKnownFormFieldIds, meetingSchedulerIdToMetadataKey, durationFromString, durationToString, durationStringToMinutes, newBusinessCenterApplicationContextProperties, newSalesCenterApplicationContextProperties, newPartnerCenterApplicationContextProperties, ApplicationContextPropertiesSet, BusinessCenterApplicationContextProperties, SalesCenterApplicationContextProperties, PartnerCenterApplicationContextProperties, KnownCalendarApplicationContextKeys, KnownCalendarExternalIntegrations, HostUser, Group, Service, EventGroupAndServiceAssociations, MeetingSourceOrigin, EntityAssociations, } from './shared/index';
|
|
9
9
|
export { TimeRangeInterface as TimeRange, TimeOfDayInterface as TimeOfDay, TimeZoneInterface as TimeZone, ListBookedMeetingsRequestFiltersInterface as ListBookedMeetingsRequestFilters, ListAvailabilityRequestFiltersInterface as ListAvailabilityRequestFilters, PagedRequestOptionsInterface as PagedRequestOptions, DateRangeInterface as DateRange, CreateCalendarRequestInterface, CreateCalendarResponseInterface, UpdateCalendarRequestInterface, AttachmentInterface, GoogleMeetMeetingAttendeeInterface, IsCalendarConfiguredRequestInterface, SendMeetingRequestEmailRequestInterface, EventTypeDateRangeInterface, DateRangeInterface, RelativeDateRangeInterface, } from './_internal/interfaces/index';
|