@vendasta/meetings 0.92.4 → 0.92.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.
Files changed (42) hide show
  1. package/esm2020/lib/_internal/enums/index.mjs +3 -2
  2. package/esm2020/lib/_internal/enums/meeting-type.enum.mjs +13 -0
  3. package/esm2020/lib/_internal/enums/shared.enum.mjs +1 -7
  4. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  5. package/esm2020/lib/_internal/interfaces/meeting-guest.interface.mjs +1 -1
  6. package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
  7. package/esm2020/lib/_internal/interfaces/meeting-source.interface.mjs +1 -1
  8. package/esm2020/lib/_internal/interfaces/meeting-type.interface.mjs +1 -1
  9. package/esm2020/lib/_internal/interfaces/shared.interface.mjs +1 -1
  10. package/esm2020/lib/_internal/meeting-guest.api.service.mjs +7 -2
  11. package/esm2020/lib/_internal/meeting-host.api.service.mjs +6 -2
  12. package/esm2020/lib/_internal/objects/index.mjs +3 -3
  13. package/esm2020/lib/_internal/objects/meeting-guest.mjs +48 -2
  14. package/esm2020/lib/_internal/objects/meeting-host.mjs +29 -9
  15. package/esm2020/lib/_internal/objects/meeting-source.mjs +13 -1
  16. package/esm2020/lib/_internal/objects/meeting-type.mjs +7 -15
  17. package/esm2020/lib/_internal/objects/shared.mjs +4 -1
  18. package/esm2020/lib/guest/guest.service.mjs +4 -1
  19. package/esm2020/lib/shared/calendar.mjs +2 -1
  20. package/fesm2015/vendasta-meetings.mjs +115 -22
  21. package/fesm2015/vendasta-meetings.mjs.map +1 -1
  22. package/fesm2020/vendasta-meetings.mjs +115 -22
  23. package/fesm2020/vendasta-meetings.mjs.map +1 -1
  24. package/lib/_internal/enums/index.d.ts +2 -1
  25. package/lib/_internal/enums/meeting-type.enum.d.ts +5 -0
  26. package/lib/_internal/enums/shared.enum.d.ts +0 -5
  27. package/lib/_internal/interfaces/index.d.ts +2 -2
  28. package/lib/_internal/interfaces/meeting-guest.interface.d.ts +8 -1
  29. package/lib/_internal/interfaces/meeting-host.interface.d.ts +7 -4
  30. package/lib/_internal/interfaces/meeting-source.interface.d.ts +2 -0
  31. package/lib/_internal/interfaces/meeting-type.interface.d.ts +1 -1
  32. package/lib/_internal/interfaces/shared.interface.d.ts +1 -0
  33. package/lib/_internal/meeting-guest.api.service.d.ts +3 -2
  34. package/lib/_internal/meeting-host.api.service.d.ts +2 -1
  35. package/lib/_internal/objects/index.d.ts +2 -2
  36. package/lib/_internal/objects/meeting-guest.d.ts +14 -1
  37. package/lib/_internal/objects/meeting-host.d.ts +18 -12
  38. package/lib/_internal/objects/meeting-source.d.ts +2 -0
  39. package/lib/_internal/objects/meeting-type.d.ts +1 -1
  40. package/lib/_internal/objects/shared.d.ts +1 -0
  41. package/lib/guest/guest.service.d.ts +5 -0
  42. package/package.json +1 -1
@@ -1,4 +1,5 @@
1
1
  export { MeetingSource, MeetingSourceStatus, } from './meeting-source.enum';
2
2
  export { ZoomApprovalType, ZoomMeetingRecurrenceType, ZoomMeetingType, ZoomMonthlyWeek, ZoomMonthlyWeekDay, ZoomRegistrationType, ZoomWeeklyDay, } from './zoom.enum';
3
- export { CalendarType, FormFieldType, MeetingLocationType, } from './shared.enum';
3
+ export { CalendarType, FormFieldType, } from './shared.enum';
4
+ export { MeetingLocationType, } from './meeting-type.enum';
4
5
  export { DayOfWeek, } from './dayofweek.enum';
@@ -0,0 +1,5 @@
1
+ export declare enum MeetingLocationType {
2
+ VIDEO = 0,
3
+ IN_PERSON_USER_SITE = 1,
4
+ IN_PERSON_CLIENT_SITE = 2
5
+ }
@@ -10,8 +10,3 @@ export declare enum FormFieldType {
10
10
  FORM_FIELD_TYPE_PHONE_NUMBER = 3,
11
11
  FORM_FIELD_TYPE_SELECT = 4
12
12
  }
13
- export declare enum MeetingLocationType {
14
- VIDEO = 0,
15
- IN_PERSON_USER_SITE = 1,
16
- IN_PERSON_CLIENT_SITE = 2
17
- }
@@ -5,8 +5,8 @@ export { AnswerInterface, AnswersInterface, CalendarApplicationContextEntryInter
5
5
  export { FieldInterface, FormInterface, MeetingTypeInterface, } from './meeting-type.interface';
6
6
  export { DateRangeInterface, } from './date-range.interface';
7
7
  export { EventGroupAndServiceAssociationsInterface, GroupInterface, ServiceInterface, } from './groups-and-services.interface';
8
- export { BookMeetingRequestInterface, BookMeetingResponseInterface, GetCalendarRequestInterface, GetCalendarResponseInterface, GetGroupRequestInterface, GetGroupResponseInterface, GetHostRequestInterface, GetHostResponseInterface, GetMeetingTypeRequestInterface, GetMeetingTypeResponseInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingResponseInterface, GuestIsHostConfiguredRequestInterface, GuestIsHostConfiguredResponseInterface, GuestRescheduleMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListAvailableTimeSlotsResponseInterface, ListMeetingTypesRequestInterface, ListMeetingTypesResponseInterface, BookMeetingRequestMetadataEntryInterface, } from './meeting-guest.interface';
8
+ export { BookMeetingRequestInterface, BookMeetingResponseInterface, GetCalendarRequestInterface, GetCalendarResponseInterface, GetGroupRequestInterface, GetGroupResponseInterface, GetHostRequestInterface, GetHostResponseInterface, GetMeetingTypeRequestInterface, GetMeetingTypeResponseInterface, GetServiceRequestInterface, GetServiceResponseInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingResponseInterface, GuestIsHostConfiguredRequestInterface, GuestIsHostConfiguredResponseInterface, GuestRescheduleMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListAvailableTimeSlotsResponseInterface, ListMeetingTypesRequestInterface, ListMeetingTypesResponseInterface, BookMeetingRequestMetadataEntryInterface, } from './meeting-guest.interface';
9
9
  export { FieldMaskInterface, } from './field-mask.interface';
10
- export { IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, BuildHostIdRequestApplicationContextPropertiesEntryInterface, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, AvailabilityRuleInterface, BuildHostIdRequestInterface, BuildHostIdResponseInterface, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntryInterface, CancelMeetingRequestInterface, CreateAvailabilityRequestInterface, CreateAvailabilityResponseInterface, CreateCalendarRequestInterface, CreateCalendarResponseInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateGroupResponseInterface, CreateMeetingTypeRequestInterface, CreateMeetingTypeResponseInterface, CreateServiceRequestInterface, CreateServiceResponseInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, DoesCalendarExistResponseInterface, EnsureGroupCalendarsExistRequestInterface, EnsureGroupCalendarsExistResponseInterface, EnsurePersonalCalendarExistsRequestInterface, EnsurePersonalCalendarExistsResponseInterface, ListBookedMeetingsRequestFiltersInterface, ListAvailabilityRequestFiltersInterface, GetHostMeetingRequestInterface, GetHostMeetingResponseInterface, GetHostPreferencesRequestInterface, GetHostPreferencesResponseInterface, GetHostsForCalendarRequestInterface, GetHostsForCalendarResponseInterface, GetMeetingTypesForCalendarsRequestInterface, GetMeetingTypesForCalendarsResponseInterface, HostBookMeetingRequestInterface, HostBookMeetingResponseInterface, HostGetCalendarRequestInterface, HostGetCalendarResponseInterface, HostGetMeetingTypeRequestInterface, HostGetMeetingTypeResponseInterface, HostListMeetingTypesRequestInterface, HostListMeetingTypesResponseInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponseInterface, IsHostConfiguredRequestInterface, IsHostConfiguredResponseInterface, ListAvailabilityRequestInterface, ListAvailabilityResponseInterface, ListBookedMeetingsRequestInterface, ListBookedMeetingsResponseInterface, ListGroupsRequestInterface, ListGroupsResponseInterface, ListServicesRequestInterface, ListServicesResponseInterface, MeetingInterface, MeetingTypeListInterface, MeetingMetadataEntryInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
10
+ export { BuildHostIdRequestApplicationContextPropertiesEntryInterface, IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, AvailabilityRuleInterface, BuildHostIdRequestInterface, BuildHostIdResponseInterface, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntryInterface, CalendarMigrationResponseInterface, CancelMeetingRequestInterface, CreateAvailabilityRequestInterface, CreateAvailabilityResponseInterface, CreateCalendarRequestInterface, CreateCalendarResponseInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateGroupResponseInterface, CreateMeetingTypeRequestInterface, CreateMeetingTypeResponseInterface, CreateServiceRequestInterface, CreateServiceResponseInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, DoesCalendarExistResponseInterface, EnsureGroupCalendarsExistRequestInterface, EnsureGroupCalendarsExistResponseInterface, EnsurePersonalCalendarExistsRequestInterface, EnsurePersonalCalendarExistsResponseInterface, ListBookedMeetingsRequestFiltersInterface, ListAvailabilityRequestFiltersInterface, GetHostMeetingRequestInterface, GetHostMeetingResponseInterface, GetHostPreferencesRequestInterface, GetHostPreferencesResponseInterface, GetHostsForCalendarRequestInterface, GetHostsForCalendarResponseInterface, GetMeetingTypesForCalendarsRequestInterface, GetMeetingTypesForCalendarsResponseInterface, HostBookMeetingRequestInterface, HostBookMeetingResponseInterface, HostGetCalendarRequestInterface, HostGetCalendarResponseInterface, HostGetMeetingTypeRequestInterface, HostGetMeetingTypeResponseInterface, HostListMeetingTypesRequestInterface, HostListMeetingTypesResponseInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponseInterface, IsHostConfiguredRequestInterface, IsHostConfiguredResponseInterface, ListAvailabilityRequestInterface, ListAvailabilityResponseInterface, ListBookedMeetingsRequestInterface, ListBookedMeetingsResponseInterface, ListGroupsRequestInterface, ListGroupsResponseInterface, ListServicesRequestInterface, ListServicesResponseInterface, MeetingInterface, MeetingTypeListInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, MeetingMetadataEntryInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
11
11
  export { TimeOfDayInterface, } from './timeofday.interface';
12
12
  export { DateTimeInterface, TimeZoneInterface, } from './datetime.interface';
@@ -1,6 +1,6 @@
1
1
  import { ContactInterface, AnswersInterface, CalendarInterface, HostInterface } from './shared.interface';
2
2
  import { DateRangeInterface } from './date-range.interface';
3
- import { GroupInterface } from './groups-and-services.interface';
3
+ import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
4
4
  import { MeetingTypeInterface } from './meeting-type.interface';
5
5
  import { TimeZoneInterface } from './';
6
6
  export interface BookMeetingRequestInterface {
@@ -48,6 +48,13 @@ export interface GetMeetingTypeRequestInterface {
48
48
  export interface GetMeetingTypeResponseInterface {
49
49
  meetingType?: MeetingTypeInterface;
50
50
  }
51
+ export interface GetServiceRequestInterface {
52
+ serviceId?: string;
53
+ slug?: string;
54
+ }
55
+ export interface GetServiceResponseInterface {
56
+ service?: ServiceInterface;
57
+ }
51
58
  export interface GuestCancelMeetingRequestInterface {
52
59
  meetingId?: string;
53
60
  authToken?: string;
@@ -5,11 +5,11 @@ import { MeetingTypeInterface } from './meeting-type.interface';
5
5
  import { TimeRangeInterface, CalendarInterface, PreferencesInterface, HostUserInterface, ContactInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, AttendeeInterface, AnswersInterface, AttachmentInterface } from './shared.interface';
6
6
  import { TimeZoneInterface } from './';
7
7
  import * as e from '../enums';
8
- export interface IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
8
+ export interface BuildHostIdRequestApplicationContextPropertiesEntryInterface {
9
9
  key?: string;
10
10
  value?: string;
11
11
  }
12
- export interface BuildHostIdRequestApplicationContextPropertiesEntryInterface {
12
+ export interface IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
13
13
  key?: string;
14
14
  value?: string;
15
15
  }
@@ -37,6 +37,9 @@ export interface GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntry
37
37
  key?: string;
38
38
  value?: MeetingTypeListInterface;
39
39
  }
40
+ export interface CalendarMigrationResponseInterface {
41
+ status?: boolean;
42
+ }
40
43
  export interface CancelMeetingRequestInterface {
41
44
  meetingId?: string;
42
45
  cancellationReason?: string;
@@ -248,11 +251,11 @@ export interface MeetingInterface {
248
251
  export interface MeetingTypeListInterface {
249
252
  meetingTypes?: MeetingTypeInterface[];
250
253
  }
251
- export interface MeetingMetadataEntryInterface {
254
+ export interface UpdateMeetingMetadataRequestMetadataEntryInterface {
252
255
  key?: string;
253
256
  value?: string;
254
257
  }
255
- export interface UpdateMeetingMetadataRequestMetadataEntryInterface {
258
+ export interface MeetingMetadataEntryInterface {
256
259
  key?: string;
257
260
  value?: string;
258
261
  }
@@ -3,6 +3,8 @@ export interface MeetingSourceInfoInterface {
3
3
  source?: e.MeetingSource;
4
4
  status?: e.MeetingSourceStatus;
5
5
  connectDisconnectUrl?: string;
6
+ created?: Date;
7
+ updated?: Date;
6
8
  }
7
9
  export interface MeetingSourceListRequestInterface {
8
10
  iamUserId?: string;
@@ -26,6 +26,7 @@ export interface MeetingTypeInterface {
26
26
  bufferDurationAfterMeeting?: number;
27
27
  noticeTime?: number;
28
28
  location?: string;
29
+ locationType?: e.MeetingLocationType;
29
30
  locationGuidelines?: string;
30
31
  isClientChoice?: boolean;
31
32
  emailSubject?: string;
@@ -35,5 +36,4 @@ export interface MeetingTypeInterface {
35
36
  hostUsers?: HostUserInterface[];
36
37
  teamName?: string;
37
38
  isVideoLinkDisabled?: boolean;
38
- locationType?: e.MeetingLocationType;
39
39
  }
@@ -40,6 +40,7 @@ export interface CalendarInterface {
40
40
  [key: string]: string;
41
41
  };
42
42
  calendarType?: e.CalendarType;
43
+ encodedApplicationContext?: string;
43
44
  }
44
45
  export interface ContactInterface {
45
46
  firstName?: string;
@@ -1,5 +1,5 @@
1
- import { BookMeetingRequest, BookMeetingResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingResponse, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse } from './objects/';
2
- import { BookMeetingRequestInterface, GetCalendarRequestInterface, GetGroupRequestInterface, GetHostRequestInterface, GetMeetingTypeRequestInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestIsHostConfiguredRequestInterface, GuestRescheduleMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListMeetingTypesRequestInterface } from './interfaces/';
1
+ import { BookMeetingRequest, BookMeetingResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GetServiceRequest, GetServiceResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingResponse, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse } from './objects/';
2
+ import { BookMeetingRequestInterface, GetCalendarRequestInterface, GetGroupRequestInterface, GetHostRequestInterface, GetMeetingTypeRequestInterface, GetServiceRequestInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestIsHostConfiguredRequestInterface, GuestRescheduleMeetingRequestInterface, 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";
@@ -19,6 +19,7 @@ export declare class MeetingGuestApiService {
19
19
  getHost(r: GetHostRequest | GetHostRequestInterface): Observable<GetHostResponse>;
20
20
  getGroup(r: GetGroupRequest | GetGroupRequestInterface): Observable<GetGroupResponse>;
21
21
  isHostConfigured(r: GuestIsHostConfiguredRequest | GuestIsHostConfiguredRequestInterface): Observable<GuestIsHostConfiguredResponse>;
22
+ getService(r: GetServiceRequest | GetServiceRequestInterface): Observable<GetServiceResponse>;
22
23
  static ɵfac: i0.ɵɵFactoryDeclaration<MeetingGuestApiService, never>;
23
24
  static ɵprov: i0.ɵɵInjectableDeclaration<MeetingGuestApiService>;
24
25
  }
@@ -1,4 +1,4 @@
1
- import { BuildHostIdRequest, BuildHostIdResponse, CancelMeetingRequest, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateGroupRequest, CreateGroupResponse, CreateMeetingTypeRequest, CreateMeetingTypeResponse, CreateServiceRequest, CreateServiceResponse, DeleteAvailabilityRequest, DeleteGroupRequest, DeleteMeetingTypeRequest, DeleteServiceRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, 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, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest } from './objects/';
1
+ import { BuildHostIdRequest, BuildHostIdResponse, CalendarMigrationResponse, CancelMeetingRequest, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateGroupRequest, CreateGroupResponse, CreateMeetingTypeRequest, CreateMeetingTypeResponse, CreateServiceRequest, CreateServiceResponse, DeleteAvailabilityRequest, DeleteGroupRequest, DeleteMeetingTypeRequest, DeleteServiceRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, 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, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest } from './objects/';
2
2
  import { BuildHostIdRequestInterface, CancelMeetingRequestInterface, CreateAvailabilityRequestInterface, CreateCalendarRequestInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateMeetingTypeRequestInterface, CreateServiceRequestInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, EnsureGroupCalendarsExistRequestInterface, EnsurePersonalCalendarExistsRequestInterface, GetHostMeetingRequestInterface, GetHostPreferencesRequestInterface, GetHostsForCalendarRequestInterface, GetMeetingTypesForCalendarsRequestInterface, HostBookMeetingRequestInterface, HostGetCalendarRequestInterface, HostGetMeetingTypeRequestInterface, HostListMeetingTypesRequestInterface, IsCalendarConfiguredRequestInterface, IsHostConfiguredRequestInterface, ListAvailabilityRequestInterface, ListBookedMeetingsRequestInterface, ListGroupsRequestInterface, ListServicesRequestInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface } from './interfaces/';
3
3
  import { HttpResponse } from '@angular/common/http';
4
4
  import { Observable } from 'rxjs';
@@ -47,6 +47,7 @@ export declare class MeetingHostApiService {
47
47
  updateService(r: UpdateServiceRequest | UpdateServiceRequestInterface): Observable<HttpResponse<null>>;
48
48
  deleteService(r: DeleteServiceRequest | DeleteServiceRequestInterface): Observable<HttpResponse<null>>;
49
49
  listServices(r: ListServicesRequest | ListServicesRequestInterface): Observable<ListServicesResponse>;
50
+ calendarMigration(): Observable<CalendarMigrationResponse>;
50
51
  static ɵfac: i0.ɵɵFactoryDeclaration<MeetingHostApiService, never>;
51
52
  static ɵprov: i0.ɵɵInjectableDeclaration<MeetingHostApiService>;
52
53
  }
@@ -5,8 +5,8 @@ export { Answer, Answers, CalendarApplicationContextEntry, Attachment, Attendee,
5
5
  export { Field, Form, MeetingType, } from './meeting-type';
6
6
  export { DateRange, } from './date-range';
7
7
  export { EventGroupAndServiceAssociations, Group, Service, } from './groups-and-services';
8
- export { BookMeetingRequest, BookMeetingResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingResponse, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, BookMeetingRequestMetadataEntry, } from './meeting-guest';
8
+ 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';
9
9
  export { FieldMask, } from './field-mask';
10
- export { IsCalendarConfiguredRequestApplicationContextPropertiesEntry, BuildHostIdRequestApplicationContextPropertiesEntry, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, AvailabilityRule, BuildHostIdRequest, BuildHostIdResponse, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntry, CancelMeetingRequest, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateGroupRequest, CreateGroupResponse, CreateMeetingTypeRequest, CreateMeetingTypeResponse, CreateServiceRequest, CreateServiceResponse, DeleteAvailabilityRequest, DeleteGroupRequest, DeleteMeetingTypeRequest, DeleteServiceRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, ListBookedMeetingsRequestFilters, ListAvailabilityRequestFilters, 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';
10
+ export { BuildHostIdRequestApplicationContextPropertiesEntry, IsCalendarConfiguredRequestApplicationContextPropertiesEntry, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, AvailabilityRule, BuildHostIdRequest, BuildHostIdResponse, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntry, CalendarMigrationResponse, CancelMeetingRequest, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateGroupRequest, CreateGroupResponse, CreateMeetingTypeRequest, CreateMeetingTypeResponse, CreateServiceRequest, CreateServiceResponse, DeleteAvailabilityRequest, DeleteGroupRequest, DeleteMeetingTypeRequest, DeleteServiceRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, ListBookedMeetingsRequestFilters, ListAvailabilityRequestFilters, 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, UpdateMeetingMetadataRequestMetadataEntry, MeetingMetadataEntry, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
11
11
  export { TimeOfDay, } from './timeofday';
12
12
  export { DateTime, TimeZone, } from './datetime';
@@ -1,7 +1,7 @@
1
1
  import * as i from '../interfaces';
2
2
  import { Contact, Answers, Calendar, Host } from './shared';
3
3
  import { DateRange } from './date-range';
4
- import { Group } from './groups-and-services';
4
+ import { Group, Service } from './groups-and-services';
5
5
  import { MeetingType } from './meeting-type';
6
6
  import { TimeZone } from './';
7
7
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
@@ -80,6 +80,19 @@ export declare class GetMeetingTypeResponse implements i.GetMeetingTypeResponseI
80
80
  constructor(kwargs?: i.GetMeetingTypeResponseInterface);
81
81
  toApiJson(): object;
82
82
  }
83
+ export declare class GetServiceRequest implements i.GetServiceRequestInterface {
84
+ serviceId: string;
85
+ slug: string;
86
+ static fromProto(proto: any): GetServiceRequest;
87
+ constructor(kwargs?: i.GetServiceRequestInterface);
88
+ toApiJson(): object;
89
+ }
90
+ export declare class GetServiceResponse implements i.GetServiceResponseInterface {
91
+ service: Service;
92
+ static fromProto(proto: any): GetServiceResponse;
93
+ constructor(kwargs?: i.GetServiceResponseInterface);
94
+ toApiJson(): object;
95
+ }
83
96
  export declare class GuestCancelMeetingRequest implements i.GuestCancelMeetingRequestInterface {
84
97
  meetingId: string;
85
98
  authToken: string;
@@ -7,18 +7,18 @@ import { TimeRange, Calendar, Preferences, HostUser, Contact, PagedRequestOption
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 IsCalendarConfiguredRequestApplicationContextPropertiesEntry implements i.IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
10
+ export declare class BuildHostIdRequestApplicationContextPropertiesEntry implements i.BuildHostIdRequestApplicationContextPropertiesEntryInterface {
11
11
  key: string;
12
12
  value: string;
13
- static fromProto(proto: any): IsCalendarConfiguredRequestApplicationContextPropertiesEntry;
14
- constructor(kwargs?: i.IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface);
13
+ static fromProto(proto: any): BuildHostIdRequestApplicationContextPropertiesEntry;
14
+ constructor(kwargs?: i.BuildHostIdRequestApplicationContextPropertiesEntryInterface);
15
15
  toApiJson(): object;
16
16
  }
17
- export declare class BuildHostIdRequestApplicationContextPropertiesEntry implements i.BuildHostIdRequestApplicationContextPropertiesEntryInterface {
17
+ export declare class IsCalendarConfiguredRequestApplicationContextPropertiesEntry implements i.IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
18
18
  key: string;
19
19
  value: string;
20
- static fromProto(proto: any): BuildHostIdRequestApplicationContextPropertiesEntry;
21
- constructor(kwargs?: i.BuildHostIdRequestApplicationContextPropertiesEntryInterface);
20
+ static fromProto(proto: any): IsCalendarConfiguredRequestApplicationContextPropertiesEntry;
21
+ constructor(kwargs?: i.IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface);
22
22
  toApiJson(): object;
23
23
  }
24
24
  export declare class EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry implements i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
@@ -60,6 +60,12 @@ export declare class GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapE
60
60
  constructor(kwargs?: i.GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntryInterface);
61
61
  toApiJson(): object;
62
62
  }
63
+ export declare class CalendarMigrationResponse implements i.CalendarMigrationResponseInterface {
64
+ status: boolean;
65
+ static fromProto(proto: any): CalendarMigrationResponse;
66
+ constructor(kwargs?: i.CalendarMigrationResponseInterface);
67
+ toApiJson(): object;
68
+ }
63
69
  export declare class CancelMeetingRequest implements i.CancelMeetingRequestInterface {
64
70
  meetingId: string;
65
71
  cancellationReason: string;
@@ -433,18 +439,18 @@ export declare class MeetingTypeList implements i.MeetingTypeListInterface {
433
439
  constructor(kwargs?: i.MeetingTypeListInterface);
434
440
  toApiJson(): object;
435
441
  }
436
- export declare class MeetingMetadataEntry implements i.MeetingMetadataEntryInterface {
442
+ export declare class UpdateMeetingMetadataRequestMetadataEntry implements i.UpdateMeetingMetadataRequestMetadataEntryInterface {
437
443
  key: string;
438
444
  value: string;
439
- static fromProto(proto: any): MeetingMetadataEntry;
440
- constructor(kwargs?: i.MeetingMetadataEntryInterface);
445
+ static fromProto(proto: any): UpdateMeetingMetadataRequestMetadataEntry;
446
+ constructor(kwargs?: i.UpdateMeetingMetadataRequestMetadataEntryInterface);
441
447
  toApiJson(): object;
442
448
  }
443
- export declare class UpdateMeetingMetadataRequestMetadataEntry implements i.UpdateMeetingMetadataRequestMetadataEntryInterface {
449
+ export declare class MeetingMetadataEntry implements i.MeetingMetadataEntryInterface {
444
450
  key: string;
445
451
  value: string;
446
- static fromProto(proto: any): UpdateMeetingMetadataRequestMetadataEntry;
447
- constructor(kwargs?: i.UpdateMeetingMetadataRequestMetadataEntryInterface);
452
+ static fromProto(proto: any): MeetingMetadataEntry;
453
+ constructor(kwargs?: i.MeetingMetadataEntryInterface);
448
454
  toApiJson(): object;
449
455
  }
450
456
  export declare class RescheduleMeetingRequest implements i.RescheduleMeetingRequestInterface {
@@ -5,6 +5,8 @@ export declare class MeetingSourceInfo implements i.MeetingSourceInfoInterface {
5
5
  source: e.MeetingSource;
6
6
  status: e.MeetingSourceStatus;
7
7
  connectDisconnectUrl: string;
8
+ created: Date;
9
+ updated: Date;
8
10
  static fromProto(proto: any): MeetingSourceInfo;
9
11
  constructor(kwargs?: i.MeetingSourceInfoInterface);
10
12
  toApiJson(): object;
@@ -34,6 +34,7 @@ export declare class MeetingType implements i.MeetingTypeInterface {
34
34
  bufferDurationAfterMeeting: number;
35
35
  noticeTime: number;
36
36
  location: string;
37
+ locationType: e.MeetingLocationType;
37
38
  locationGuidelines: string;
38
39
  isClientChoice: boolean;
39
40
  emailSubject: string;
@@ -43,7 +44,6 @@ export declare class MeetingType implements i.MeetingTypeInterface {
43
44
  hostUsers: HostUser[];
44
45
  teamName: string;
45
46
  isVideoLinkDisabled: boolean;
46
- locationType: e.MeetingLocationType;
47
47
  static fromProto(proto: any): MeetingType;
48
48
  constructor(kwargs?: i.MeetingTypeInterface);
49
49
  toApiJson(): object;
@@ -57,6 +57,7 @@ export declare class Calendar implements i.CalendarInterface {
57
57
  [key: string]: string;
58
58
  };
59
59
  calendarType: e.CalendarType;
60
+ encodedApplicationContext: string;
60
61
  static fromProto(proto: any): Calendar;
61
62
  constructor(kwargs?: i.CalendarInterface);
62
63
  toApiJson(): object;
@@ -1,6 +1,7 @@
1
1
  import { CalendarInterface, Contact, GetGroupResponse, MeetingGuestApiService, TimeZoneInterface } from '../_internal';
2
2
  import { Observable } from 'rxjs';
3
3
  import { Host, MeetingForm, MeetingMetadata, MeetingType, TimeSpan } from '../shared';
4
+ import { GetServiceResponse } from "../_internal/objects/meeting-guest";
4
5
  import * as i0 from "@angular/core";
5
6
  export interface BookMeetingResponse {
6
7
  meetingId: string;
@@ -90,6 +91,10 @@ export declare class GuestService implements GuestServiceInterface {
90
91
  groupId: string;
91
92
  slug: string;
92
93
  }): Observable<GetGroupResponse>;
94
+ getService(req: {
95
+ serviceId: string;
96
+ slug: string;
97
+ }): Observable<GetServiceResponse>;
93
98
  static ɵfac: i0.ɵɵFactoryDeclaration<GuestService, never>;
94
99
  static ɵprov: i0.ɵɵInjectableDeclaration<GuestService>;
95
100
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/meetings",
3
- "version": "0.92.4",
3
+ "version": "0.92.6",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"