@vendasta/meetings 0.97.0 → 0.98.2
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-source.enum.mjs +7 -1
- package/esm2020/lib/_internal/interfaces/meeting-source.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/shared.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/meeting-source.mjs +4 -1
- package/esm2020/lib/_internal/objects/shared.mjs +7 -1
- package/esm2020/lib/index.mjs +2 -2
- package/esm2020/lib/shared/preferences.mjs +3 -2
- package/fesm2015/vendasta-meetings.mjs +17 -1
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +17 -1
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/enums/index.d.ts +1 -1
- package/lib/_internal/enums/meeting-source.enum.d.ts +5 -0
- package/lib/_internal/interfaces/meeting-source.interface.d.ts +1 -0
- package/lib/_internal/interfaces/shared.interface.d.ts +1 -0
- package/lib/_internal/objects/meeting-source.d.ts +1 -0
- package/lib/_internal/objects/shared.d.ts +1 -0
- package/lib/index.d.ts +1 -1
- package/lib/shared/preferences.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { MeetingSource, MeetingSourceStatus, } from './meeting-source.enum';
|
|
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, } from './shared.enum';
|
|
4
4
|
export { MeetingLocationType, } from './meeting-type.enum';
|
|
@@ -5,6 +5,7 @@ export declare class MeetingSourceInfo implements i.MeetingSourceInfoInterface {
|
|
|
5
5
|
source: e.MeetingSource;
|
|
6
6
|
status: e.MeetingSourceStatus;
|
|
7
7
|
connectDisconnectUrl: string;
|
|
8
|
+
connectionLabel: string;
|
|
8
9
|
static fromProto(proto: any): MeetingSourceInfo;
|
|
9
10
|
constructor(kwargs?: i.MeetingSourceInfoInterface);
|
|
10
11
|
toApiJson(): object;
|
|
@@ -112,6 +112,7 @@ export declare class Preferences implements i.PreferencesInterface {
|
|
|
112
112
|
noticeTime: number;
|
|
113
113
|
calendarSlug: string;
|
|
114
114
|
bufferDurationBeforeMeeting: number;
|
|
115
|
+
calendarIntegration: e.CalendarSource;
|
|
115
116
|
static fromProto(proto: any): Preferences;
|
|
116
117
|
constructor(kwargs?: i.PreferencesInterface);
|
|
117
118
|
toApiJson(): object;
|
package/lib/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export { BookedMeetingInfo, BookMeetingResponse, GuestServiceInterface } from '.
|
|
|
4
4
|
export { GuestService } from './guest/guest.service';
|
|
5
5
|
export { HostService } from './host/host.service';
|
|
6
6
|
export { addMetadataToBookingLink } from './host/url';
|
|
7
|
-
export { MeetingSource, MeetingSourceStatus, DayOfWeek, FormFieldType, CalendarType, MeetingLocationType, } from './_internal/enums/index';
|
|
7
|
+
export { MeetingSource, MeetingSourceStatus, DayOfWeek, FormFieldType, CalendarType, MeetingLocationType, CalendarSource } from './_internal/enums/index';
|
|
8
8
|
export { MeetingSourceQuery, MeetingSourceInfo, MeetingSourceListResponse, Contact, WeekdayAvailability, CreateCalendarRequest, CreateCalendarResponse, } from './_internal/objects/index';
|
|
9
9
|
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';
|
|
10
10
|
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, } from './_internal/interfaces/index';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Preferences as APIPreferences } from '../_internal/objects';
|
|
2
|
-
import { MeetingSource } from '../_internal/enums';
|
|
2
|
+
import { CalendarSource, MeetingSource } from '../_internal/enums';
|
|
3
3
|
import { TimeZoneInterface } from '../_internal/interfaces';
|
|
4
4
|
export interface Preferences {
|
|
5
5
|
timezone: TimeZoneInterface;
|
|
@@ -9,5 +9,6 @@ export interface Preferences {
|
|
|
9
9
|
bufferDurationBeforeMeeting: number;
|
|
10
10
|
noticeTime: number;
|
|
11
11
|
calendarSlug: string;
|
|
12
|
+
calendarIntegration: CalendarSource;
|
|
12
13
|
}
|
|
13
14
|
export declare function PreferencesFromApi(preferences: APIPreferences): Preferences;
|