@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.
@@ -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';
@@ -1,3 +1,8 @@
1
+ export declare enum CalendarSource {
2
+ CALENDAR_SOURCE_GOOGLE = 0,
3
+ CALENDAR_SOURCE_MICROSOFT = 1,
4
+ CALENDAR_SOURCE_INVALID = -1
5
+ }
1
6
  export declare enum MeetingSource {
2
7
  MEETING_SOURCE_INVALID = 0,
3
8
  MEETING_SOURCE_ZOOM = 1,
@@ -3,6 +3,7 @@ export interface MeetingSourceInfoInterface {
3
3
  source?: e.MeetingSource;
4
4
  status?: e.MeetingSourceStatus;
5
5
  connectDisconnectUrl?: string;
6
+ connectionLabel?: string;
6
7
  }
7
8
  export interface MeetingSourceListRequestInterface {
8
9
  iamUserId?: string;
@@ -77,6 +77,7 @@ export interface PreferencesInterface {
77
77
  noticeTime?: number;
78
78
  calendarSlug?: string;
79
79
  bufferDurationBeforeMeeting?: number;
80
+ calendarIntegration?: e.CalendarSource;
80
81
  }
81
82
  export interface TimeRangeInterface {
82
83
  from?: TimeOfDayInterface;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/meetings",
3
- "version": "0.97.0",
3
+ "version": "0.98.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"