@vendasta/meetings 0.98.3 → 0.98.5

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.
Files changed (39) hide show
  1. package/esm2020/lib/_internal/enums/index.mjs +2 -2
  2. package/esm2020/lib/_internal/enums/meeting-type.enum.mjs +8 -1
  3. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  4. package/esm2020/lib/_internal/interfaces/meeting-guest.interface.mjs +1 -1
  5. package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
  6. package/esm2020/lib/_internal/interfaces/meeting-type.interface.mjs +1 -1
  7. package/esm2020/lib/_internal/interfaces/shared.interface.mjs +1 -1
  8. package/esm2020/lib/_internal/objects/index.mjs +2 -2
  9. package/esm2020/lib/_internal/objects/meeting-guest.mjs +13 -1
  10. package/esm2020/lib/_internal/objects/meeting-host.mjs +46 -2
  11. package/esm2020/lib/_internal/objects/meeting-type.mjs +7 -1
  12. package/esm2020/lib/_internal/objects/shared.mjs +24 -1
  13. package/esm2020/lib/guest/guest.service.mjs +4 -1
  14. package/esm2020/lib/host/host.service.mjs +7 -2
  15. package/esm2020/lib/index.mjs +2 -2
  16. package/esm2020/lib/shared/meeting-type.mjs +4 -2
  17. package/esm2020/lib/shared/meeting.mjs +8 -1
  18. package/fesm2015/vendasta-meetings.mjs +111 -2
  19. package/fesm2015/vendasta-meetings.mjs.map +1 -1
  20. package/fesm2020/vendasta-meetings.mjs +111 -2
  21. package/fesm2020/vendasta-meetings.mjs.map +1 -1
  22. package/lib/_internal/enums/index.d.ts +1 -1
  23. package/lib/_internal/enums/meeting-type.enum.d.ts +6 -0
  24. package/lib/_internal/interfaces/index.d.ts +1 -1
  25. package/lib/_internal/interfaces/meeting-guest.interface.d.ts +3 -0
  26. package/lib/_internal/interfaces/meeting-host.interface.d.ts +10 -1
  27. package/lib/_internal/interfaces/meeting-type.interface.d.ts +1 -0
  28. package/lib/_internal/interfaces/shared.interface.d.ts +4 -0
  29. package/lib/_internal/objects/index.d.ts +1 -1
  30. package/lib/_internal/objects/meeting-guest.d.ts +3 -0
  31. package/lib/_internal/objects/meeting-host.d.ts +16 -1
  32. package/lib/_internal/objects/meeting-type.d.ts +1 -0
  33. package/lib/_internal/objects/shared.d.ts +7 -0
  34. package/lib/guest/guest.service.d.ts +4 -1
  35. package/lib/host/host.service.d.ts +7 -2
  36. package/lib/index.d.ts +1 -1
  37. package/lib/shared/meeting-type.d.ts +2 -1
  38. package/lib/shared/meeting.d.ts +4 -1
  39. package/package.json +1 -1
@@ -1,5 +1,5 @@
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, } from './shared.enum';
4
- export { DateRangeType, MeetingLocationType, RelativeTimeUnit, } from './meeting-type.enum';
4
+ export { DateRangeType, MeetingLocationType, TeamEventMeetingType, RelativeTimeUnit, } from './meeting-type.enum';
5
5
  export { DayOfWeek, } from './dayofweek.enum';
@@ -7,6 +7,12 @@ export declare enum MeetingLocationType {
7
7
  IN_PERSON_USER_SITE = 1,
8
8
  IN_PERSON_CLIENT_SITE = 2
9
9
  }
10
+ export declare enum TeamEventMeetingType {
11
+ ROUND_ROBIN = 0,
12
+ CLIENT_CHOICE = 1,
13
+ MULTI_HOST = 2,
14
+ PRIORITY_ROUND_ROBIN = 3
15
+ }
10
16
  export declare enum RelativeTimeUnit {
11
17
  DAYS = 0,
12
18
  WEEKS = 1,
@@ -3,7 +3,7 @@ export { CreateZoomMeetingRequestInterface, CreateZoomMeetingResponseInterface,
3
3
  export { GoogleMeetConferenceDataInterface, GoogleMeetConferenceRequestStatusInterface, GoogleMeetConferenceSolutionInterface, GoogleMeetConferenceSolutionKeyInterface, GoogleMeetCreateConferenceRequestInterface, GoogleMeetCreateMeetingRequestInterface, GoogleMeetCreateMeetingResponseInterface, GoogleMeetEntryPointInterface, GoogleMeetMeetingInterface, GoogleMeetMeetingAttendeeInterface, GoogleMeetMeetingCreatorInterface, GoogleMeetMeetingDateTimeInterface, GoogleMeetMeetingReminderInterface, GoogleMeetMeetingRemindersInterface, } from './google-meet.interface';
4
4
  export { TimeOfDayInterface, } from './timeofday.interface';
5
5
  export { DateTimeInterface, TimeZoneInterface, } from './datetime.interface';
6
- export { AnswerInterface, AnswersInterface, CalendarApplicationContextEntryInterface, AttachmentInterface, AttendeeInterface, CalendarInterface, ContactInterface, HostInterface, HostUserInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, PreferencesInterface, TimeRangeInterface, } from './shared.interface';
6
+ export { AnswerInterface, AnswersInterface, CalendarApplicationContextEntryInterface, AttachmentInterface, AttendeeInterface, CalendarInterface, ContactInterface, HostInterface, HostUserInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, PreferencesInterface, TimeRangeInterface, HostDetailInterface, } from './shared.interface';
7
7
  export { DateRangeInterface, } from './date-range.interface';
8
8
  export { EventTypeDateRangeInterface, FieldInterface, FormInterface, MeetingTypeInterface, RelativeDateRangeInterface, } from './meeting-type.interface';
9
9
  export { EventGroupAndServiceAssociationsInterface, GroupInterface, ServiceInterface, } from './groups-and-services.interface';
@@ -77,6 +77,9 @@ export interface GuestGetBookedMeetingResponseInterface {
77
77
  location?: string;
78
78
  locationType?: e.MeetingLocationType;
79
79
  locationGuideline?: string;
80
+ meetingType?: e.TeamEventMeetingType;
81
+ displayName?: string;
82
+ calendarId?: string;
80
83
  }
81
84
  export interface GuestIsHostConfiguredRequestInterface {
82
85
  hostId?: string;
@@ -2,9 +2,10 @@ import { DateRangeInterface } from './date-range.interface';
2
2
  import { FieldMaskInterface } from './field-mask.interface';
3
3
  import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
4
4
  import { MeetingTypeInterface } from './meeting-type.interface';
5
- import { TimeRangeInterface, CalendarInterface, PreferencesInterface, HostUserInterface, ContactInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, AttendeeInterface, AnswersInterface, AttachmentInterface } from './shared.interface';
5
+ import { TimeRangeInterface, CalendarInterface, PreferencesInterface, HostUserInterface, ContactInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, AttendeeInterface, AnswersInterface, AttachmentInterface, HostDetailInterface } from './shared.interface';
6
6
  import { TimeZoneInterface } from './datetime.interface';
7
7
  import * as e from '../enums';
8
+ import { TeamEventMeetingType } from "../enums";
8
9
  export interface EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
9
10
  key?: string;
10
11
  value?: string;
@@ -24,6 +25,9 @@ export interface AvailabilityRuleInterface {
24
25
  timeSlot?: TimeRangeInterface;
25
26
  timeZone?: TimeZoneInterface;
26
27
  }
28
+ export interface AvailabilityRuleListInterface {
29
+ rules?: AvailabilityRuleInterface[];
30
+ }
27
31
  export interface BuildHostIdRequestInterface {
28
32
  applicationContextProperties?: {
29
33
  [key: string]: string;
@@ -158,6 +162,9 @@ export interface GetHostsForCalendarRequestInterface {
158
162
  }
159
163
  export interface GetHostsForCalendarResponseInterface {
160
164
  hostUsers?: HostUserInterface[];
165
+ hostUserAvailabilityRule?: {
166
+ [key: string]: AvailabilityRuleListInterface;
167
+ };
161
168
  }
162
169
  export interface GetMeetingTypesForCalendarsRequestInterface {
163
170
  calendarIds?: string[];
@@ -263,6 +270,8 @@ export interface MeetingInterface {
263
270
  attachments?: AttachmentInterface[];
264
271
  location?: string;
265
272
  calendarId?: string;
273
+ hostDetails?: HostDetailInterface[];
274
+ meetingType?: TeamEventMeetingType;
266
275
  }
267
276
  export interface MeetingTypeListInterface {
268
277
  meetingTypes?: MeetingTypeInterface[];
@@ -43,6 +43,7 @@ export interface MeetingTypeInterface {
43
43
  teamName?: string;
44
44
  isVideoLinkDisabled?: boolean;
45
45
  bufferDurationBeforeMeeting?: number;
46
+ meetingType?: e.TeamEventMeetingType;
46
47
  dateRange?: EventTypeDateRangeInterface;
47
48
  }
48
49
  export interface RelativeDateRangeInterface {
@@ -84,3 +84,7 @@ export interface TimeRangeInterface {
84
84
  from?: TimeOfDayInterface;
85
85
  to?: TimeOfDayInterface;
86
86
  }
87
+ export interface HostDetailInterface {
88
+ hostID?: string;
89
+ name?: string;
90
+ }
@@ -9,5 +9,5 @@ export { EventTypeDateRange, Field, Form, MeetingType, RelativeDateRange, } from
9
9
  export { EventGroupAndServiceAssociations, Group, Service, } from './groups-and-services';
10
10
  export { BookMeetingRequest, BookMeetingResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GetServiceRequest, GetServiceResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingResponse, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, BookMeetingRequestMetadataEntry, } from './meeting-guest';
11
11
  export { FieldMask, } from './field-mask';
12
- export { EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, BuildHostIdRequestApplicationContextPropertiesEntry, IsCalendarConfiguredRequestApplicationContextPropertiesEntry, AvailabilityRule, 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, ListBookedMeetingsRequestFilters, ListAvailabilityRequestFilters, GetEntityAssociationRequest, GetEntityAssociationResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, Meeting, MeetingTypeList, MeetingMetadataEntry, UpdateMeetingMetadataRequestMetadataEntry, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
12
+ export { EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, BuildHostIdRequestApplicationContextPropertiesEntry, IsCalendarConfiguredRequestApplicationContextPropertiesEntry, 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, ListBookedMeetingsRequestFilters, ListAvailabilityRequestFilters, GetEntityAssociationRequest, GetEntityAssociationResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, Meeting, MeetingTypeList, MeetingMetadataEntry, UpdateMeetingMetadataRequestMetadataEntry, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
13
13
  export { ScheduleBotRequest, } from './meeting-bot';
@@ -121,6 +121,9 @@ export declare class GuestGetBookedMeetingResponse implements i.GuestGetBookedMe
121
121
  location: string;
122
122
  locationType: e.MeetingLocationType;
123
123
  locationGuideline: string;
124
+ meetingType: e.TeamEventMeetingType;
125
+ displayName: string;
126
+ calendarId: string;
124
127
  static fromProto(proto: any): GuestGetBookedMeetingResponse;
125
128
  constructor(kwargs?: i.GuestGetBookedMeetingResponseInterface);
126
129
  toApiJson(): object;
@@ -3,9 +3,10 @@ import { DateRange } from './date-range';
3
3
  import { FieldMask } from './field-mask';
4
4
  import { Group, Service } from './groups-and-services';
5
5
  import { MeetingType } from './meeting-type';
6
- import { TimeRange, Calendar, Preferences, HostUser, Contact, PagedRequestOptions, PagedResponseMetadata, Attendee, Answers, Attachment } from './shared';
6
+ import { TimeRange, Calendar, Preferences, HostUser, Contact, PagedRequestOptions, PagedResponseMetadata, Attendee, Answers, Attachment, HostDetail } from './shared';
7
7
  import { TimeZone } from './datetime';
8
8
  import * as e from '../enums';
9
+ import { TeamEventMeetingType } from "../enums";
9
10
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
10
11
  export declare class EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry implements i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
11
12
  key: string;
@@ -38,6 +39,14 @@ export declare class AvailabilityRule implements i.AvailabilityRuleInterface {
38
39
  constructor(kwargs?: i.AvailabilityRuleInterface);
39
40
  toApiJson(): object;
40
41
  }
42
+ export declare class AvailabilityRuleList {
43
+ rules: AvailabilityRule[];
44
+ static fromProto(proto: any): AvailabilityRuleList;
45
+ constructor(kwargs?: {
46
+ rules?: AvailabilityRule[];
47
+ });
48
+ toApiJson(): object;
49
+ }
41
50
  export declare class BuildHostIdRequest implements i.BuildHostIdRequestInterface {
42
51
  applicationContextProperties: {
43
52
  [key: string]: string;
@@ -277,12 +286,16 @@ export declare class GetHostPreferencesResponse implements i.GetHostPreferencesR
277
286
  }
278
287
  export declare class GetHostsForCalendarRequest implements i.GetHostsForCalendarRequestInterface {
279
288
  calendarId: string;
289
+ timezone: string;
280
290
  static fromProto(proto: any): GetHostsForCalendarRequest;
281
291
  constructor(kwargs?: i.GetHostsForCalendarRequestInterface);
282
292
  toApiJson(): object;
283
293
  }
284
294
  export declare class GetHostsForCalendarResponse implements i.GetHostsForCalendarResponseInterface {
285
295
  hostUsers: HostUser[];
296
+ hostUserAvailabilityRule: {
297
+ [key: string]: AvailabilityRuleList;
298
+ };
286
299
  static fromProto(proto: any): GetHostsForCalendarResponse;
287
300
  constructor(kwargs?: i.GetHostsForCalendarResponseInterface);
288
301
  toApiJson(): object;
@@ -457,6 +470,8 @@ export declare class Meeting implements i.MeetingInterface {
457
470
  attachments: Attachment[];
458
471
  location: string;
459
472
  calendarId: string;
473
+ hostDetails: HostDetail[];
474
+ meetingType: TeamEventMeetingType;
460
475
  static fromProto(proto: any): Meeting;
461
476
  constructor(kwargs?: i.MeetingInterface);
462
477
  toApiJson(): object;
@@ -54,6 +54,7 @@ export declare class MeetingType implements i.MeetingTypeInterface {
54
54
  teamName: string;
55
55
  isVideoLinkDisabled: boolean;
56
56
  bufferDurationBeforeMeeting: number;
57
+ meetingType: e.TeamEventMeetingType;
57
58
  dateRange: EventTypeDateRange;
58
59
  static fromProto(proto: any): MeetingType;
59
60
  constructor(kwargs?: i.MeetingTypeInterface);
@@ -25,6 +25,13 @@ export declare class CalendarApplicationContextEntry implements i.CalendarApplic
25
25
  constructor(kwargs?: i.CalendarApplicationContextEntryInterface);
26
26
  toApiJson(): object;
27
27
  }
28
+ export declare class HostDetail implements i.HostDetailInterface {
29
+ hostID: string;
30
+ name: string;
31
+ static fromProto(proto: any): HostDetail;
32
+ constructor(kwargs?: i.HostDetailInterface);
33
+ toApiJson(): object;
34
+ }
28
35
  export declare class Attachment implements i.AttachmentInterface {
29
36
  fileTitle: string;
30
37
  fileUrl: string;
@@ -1,4 +1,4 @@
1
- import { CalendarInterface, Contact, GetGroupResponse, MeetingGuestApiService, MeetingLocationType, TimeZoneInterface } from '../_internal';
1
+ import { CalendarInterface, Contact, GetGroupResponse, MeetingGuestApiService, MeetingLocationType, TeamEventMeetingType, TimeZoneInterface } 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";
@@ -15,6 +15,9 @@ export interface BookedMeetingInfo {
15
15
  location: string;
16
16
  locationGuideline: string;
17
17
  locationType: MeetingLocationType;
18
+ meetingType: TeamEventMeetingType;
19
+ displayName: string;
20
+ calendarId: string;
18
21
  }
19
22
  export interface GuestServiceInterface {
20
23
  getBookedMeetingInfo(meetingId: string, authToken: string): Observable<BookedMeetingInfo>;
@@ -1,5 +1,5 @@
1
1
  import { Observable } from "rxjs";
2
- import { CreateCalendarRequestInterface, CreateCalendarResponse, DayOfWeek, GetGroupResponse, GetServiceResponse, HostBookMeetingRequestInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponse, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, MeetingHostApiService, PagedRequestOptionsInterface, SendMeetingRequestEmailRequestInterface, TimeRangeInterface, TimeZoneInterface, WeekdayAvailability, Contact } from "../_internal";
2
+ import { AvailabilityRuleList, CreateCalendarRequestInterface, CreateCalendarResponse, DayOfWeek, GetGroupResponse, GetServiceResponse, HostBookMeetingRequestInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponse, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, MeetingHostApiService, PagedRequestOptionsInterface, SendMeetingRequestEmailRequestInterface, TimeRangeInterface, TimeZoneInterface, WeekdayAvailability, Contact } from "../_internal";
3
3
  import { BookMeetingResponse } 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";
@@ -138,7 +138,12 @@ export declare class HostService {
138
138
  }): Observable<void>;
139
139
  getHostsForCalendar(req: {
140
140
  calendarId: string;
141
- }): Observable<HostUser[]>;
141
+ }): Observable<{
142
+ hostUsers: HostUser[];
143
+ availabilityRules: {
144
+ [key: string]: AvailabilityRuleList;
145
+ };
146
+ }>;
142
147
  IsCalendarConfigured(req: IsCalendarConfiguredRequestInterface): Observable<IsCalendarConfiguredResponse>;
143
148
  sendMeetingRequestEmail(req: SendMeetingRequestEmailRequestInterface): Observable<HttpResponse<null>>;
144
149
  createService(req: {
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, CalendarSource, RelativeTimeUnit, DateRangeType } from './_internal/enums/index';
7
+ export { MeetingSource, MeetingSourceStatus, DayOfWeek, FormFieldType, CalendarType, MeetingLocationType, CalendarSource, RelativeTimeUnit, DateRangeType, TeamEventMeetingType } 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, EventTypeDateRangeInterface, DateRangeInterface, RelativeDateRangeInterface, } from './_internal/interfaces/index';
@@ -1,5 +1,5 @@
1
1
  import { EventTypeDateRangeInterface, FieldInterface, FormInterface, HostUserInterface, MeetingTypeInterface as ApiMeetingType } from '../_internal/interfaces';
2
- import { MeetingLocationType } from '../_internal/enums';
2
+ import { MeetingLocationType, TeamEventMeetingType } from '../_internal/enums';
3
3
  import { Environment } from "./environment";
4
4
  export interface MeetingType {
5
5
  id: string;
@@ -31,6 +31,7 @@ export interface MeetingType {
31
31
  teamName?: string;
32
32
  isVideoLinkDisabled?: boolean;
33
33
  locationType?: MeetingLocationType;
34
+ meetingType?: TeamEventMeetingType;
34
35
  dateRange?: EventTypeDateRangeInterface;
35
36
  }
36
37
  export type MeetingTypeFormField = Required<FieldInterface>;
@@ -1,5 +1,6 @@
1
1
  import { Meeting as ApiMeeting } from '../_internal/objects';
2
- import { AnswerInterface, AnswersInterface, AttachmentInterface } from '../_internal/interfaces';
2
+ import { AnswerInterface, AnswersInterface, AttachmentInterface, HostDetailInterface } from '../_internal/interfaces';
3
+ import { TeamEventMeetingType } from '../_internal/enums';
3
4
  export interface Attendee {
4
5
  firstName: string;
5
6
  lastName: string;
@@ -44,6 +45,8 @@ export interface Meeting {
44
45
  attachments: Required<AttachmentInterface>[];
45
46
  location: string;
46
47
  calendarId: string;
48
+ hostDetails: HostDetailInterface[];
49
+ meetingType: TeamEventMeetingType;
47
50
  }
48
51
  export declare function meetingFromApi(meetingApi: ApiMeeting): Meeting;
49
52
  export declare function answersFromAPI(formAnswers: AnswersInterface): MeetingForm;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/meetings",
3
- "version": "0.98.3",
3
+ "version": "0.98.5",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"