@vendasta/meetings 1.4.1 → 1.4.4

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 (47) hide show
  1. package/esm2020/lib/_internal/enums/index.mjs +2 -2
  2. package/esm2020/lib/_internal/enums/meeting-host.enum.mjs +25 -1
  3. package/esm2020/lib/_internal/google-meet.api.service.mjs +7 -8
  4. package/esm2020/lib/_internal/interfaces/annotations.interface.mjs +8 -0
  5. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  6. package/esm2020/lib/_internal/interfaces/meeting-guest.interface.mjs +1 -1
  7. package/esm2020/lib/_internal/interfaces/meeting-host.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 +13 -9
  11. package/esm2020/lib/_internal/meeting-host.api.service.mjs +13 -9
  12. package/esm2020/lib/_internal/meeting-source-api.api.service.mjs +7 -8
  13. package/esm2020/lib/_internal/objects/annotations.mjs +50 -0
  14. package/esm2020/lib/_internal/objects/index.mjs +4 -3
  15. package/esm2020/lib/_internal/objects/meeting-guest.mjs +48 -2
  16. package/esm2020/lib/_internal/objects/meeting-host.mjs +195 -20
  17. package/esm2020/lib/_internal/objects/meeting-type.mjs +7 -1
  18. package/esm2020/lib/_internal/objects/shared.mjs +2 -3
  19. package/esm2020/lib/_internal/zoom.api.service.mjs +7 -8
  20. package/esm2020/lib/guest/guest.service.mjs +4 -1
  21. package/esm2020/lib/shared/meeting-type.mjs +5 -1
  22. package/fesm2015/vendasta-meetings.mjs +517 -200
  23. package/fesm2015/vendasta-meetings.mjs.map +1 -1
  24. package/fesm2020/vendasta-meetings.mjs +517 -200
  25. package/fesm2020/vendasta-meetings.mjs.map +1 -1
  26. package/lib/_internal/enums/index.d.ts +1 -1
  27. package/lib/_internal/enums/meeting-host.enum.d.ts +21 -0
  28. package/lib/_internal/google-meet.api.service.d.ts +2 -5
  29. package/lib/_internal/interfaces/annotations.interface.d.ts +7 -0
  30. package/lib/_internal/interfaces/index.d.ts +3 -2
  31. package/lib/_internal/interfaces/meeting-guest.interface.d.ts +9 -1
  32. package/lib/_internal/interfaces/meeting-host.interface.d.ts +35 -7
  33. package/lib/_internal/interfaces/meeting-type.interface.d.ts +2 -0
  34. package/lib/_internal/interfaces/shared.interface.d.ts +1 -2
  35. package/lib/_internal/meeting-guest.api.service.d.ts +6 -7
  36. package/lib/_internal/meeting-host.api.service.d.ts +6 -7
  37. package/lib/_internal/meeting-source-api.api.service.d.ts +2 -5
  38. package/lib/_internal/objects/annotations.d.ts +15 -0
  39. package/lib/_internal/objects/index.d.ts +3 -2
  40. package/lib/_internal/objects/meeting-guest.d.ts +15 -1
  41. package/lib/_internal/objects/meeting-host.d.ts +57 -14
  42. package/lib/_internal/objects/meeting-type.d.ts +2 -0
  43. package/lib/_internal/objects/shared.d.ts +1 -2
  44. package/lib/_internal/zoom.api.service.d.ts +2 -5
  45. package/lib/guest/guest.service.d.ts +9 -0
  46. package/lib/shared/meeting-type.d.ts +2 -0
  47. package/package.json +1 -1
@@ -2,5 +2,5 @@ export { CalendarSource, MeetingSource, MeetingSourceStatus, } from './meeting-s
2
2
  export { ZoomApprovalType, ZoomMeetingRecurrenceType, ZoomMeetingType, ZoomMonthlyWeek, ZoomMonthlyWeekDay, ZoomRegistrationType, ZoomWeeklyDay, } from './zoom.enum';
3
3
  export { CalendarType, FormFieldType, OnBoardingState, } from './shared.enum';
4
4
  export { DateRangeType, MeetingLocationType, RegistrationCutOffUnit, RelativeTimeUnit, TeamEventMeetingType, } from './meeting-type.enum';
5
- export { BookingFailureReason, } from './meeting-host.enum';
5
+ export { BookingFailureReason, Recurrence, RegistrationMode, Weekday, } from './meeting-host.enum';
6
6
  export { DayOfWeek, } from './dayofweek.enum';
@@ -2,3 +2,24 @@ export declare enum BookingFailureReason {
2
2
  BOOKING_FAILURE_REASON_REGISTRATION_CUTOFF_EXCEEDED = 0,
3
3
  BOOKING_FAILURE_REASON_MAX_INVITEE_COUNT_EXCEEDED = 1
4
4
  }
5
+ export declare enum Recurrence {
6
+ RECURRENCE_DAILY = 0,
7
+ RECURRENCE_WEEKLY = 1,
8
+ RECURRENCE_WORKING_WEEK = 2,
9
+ RECURRENCE_MONTHLY = 3,
10
+ RECURRENCE_QUARTERLY = 4
11
+ }
12
+ export declare enum RegistrationMode {
13
+ REGISTRATION_MODE_ALL = 0,
14
+ REGISTRATION_MODE_ANY = 1
15
+ }
16
+ export declare enum Weekday {
17
+ WEEKDAY_UNSPECIFIED = 0,
18
+ WEEKDAY_MONDAY = 1,
19
+ WEEKDAY_TUESDAY = 2,
20
+ WEEKDAY_WEDNESDAY = 3,
21
+ WEEKDAY_THURSDAY = 4,
22
+ WEEKDAY_FRIDAY = 5,
23
+ WEEKDAY_SATURDAY = 6,
24
+ WEEKDAY_SUNDAY = 7
25
+ }
@@ -1,14 +1,11 @@
1
1
  import { GoogleMeetCreateMeetingRequest, GoogleMeetCreateMeetingResponse, GoogleMeetListMeetingsRequest, GoogleMeetListMeetingsResponse } from './objects/';
2
2
  import { GoogleMeetCreateMeetingRequestInterface, GoogleMeetListMeetingsRequestInterface } from './interfaces/';
3
- import { HttpClient } from '@angular/common/http';
4
- import { HostService } from '../_generated/host.service';
5
3
  import { Observable } from 'rxjs';
6
4
  import * as i0 from "@angular/core";
7
5
  export declare class GoogleMeetApiService {
8
- private http;
9
- private hostService;
6
+ private readonly hostService;
7
+ private readonly http;
10
8
  private _host;
11
- constructor(http: HttpClient, hostService: HostService);
12
9
  private apiOptions;
13
10
  createMeeting(r: GoogleMeetCreateMeetingRequest | GoogleMeetCreateMeetingRequestInterface): Observable<GoogleMeetCreateMeetingResponse>;
14
11
  listMeetings(r: GoogleMeetListMeetingsRequest | GoogleMeetListMeetingsRequestInterface): Observable<GoogleMeetListMeetingsResponse>;
@@ -0,0 +1,7 @@
1
+ export interface AccessInterface {
2
+ scope?: string[];
3
+ public?: boolean;
4
+ }
5
+ export interface MCPOptionsInterface {
6
+ serverId?: string[];
7
+ }
@@ -5,8 +5,9 @@ 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, 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, GuestGetBookedMeetingResponseInterface, GuestIsHostConfiguredRequestInterface, GuestIsHostConfiguredResponseInterface, GuestRescheduleMeetingRequestInterface, InviteeDeregisterSessionMeetingRequestInterface, InviteeRegisterSessionMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListAvailableTimeSlotsResponseInterface, ListMeetingTypesRequestInterface, ListMeetingTypesResponseInterface, BookMeetingRequestMetadataEntryInterface, RegisterSessionRequestInterface, } from './meeting-guest.interface';
9
9
  export { FieldMaskInterface, } from './field-mask.interface';
10
- export { BuildHostIdRequestApplicationContextPropertiesEntryInterface, IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, 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, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, 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, ListAvailableTimeslotsForSessionRequestInterface, ListAvailableTimeslotsForSessionResponseInterface, ListBookedMeetingsRequestInterface, ListBookedMeetingsResponseInterface, ListGroupsRequestInterface, ListGroupsResponseInterface, ListServicesRequestInterface, ListServicesResponseInterface, MeetingInterface, MeetingTypeListInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, MeetingMetadataEntryInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SessionAttendeesInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
10
+ export { IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, BuildHostIdRequestApplicationContextPropertiesEntryInterface, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, 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, UpdateMeetingMetadataRequestMetadataEntryInterface, MeetingMetadataEntryInterface, RecurrenceConfigInterface, RecurrenceEndInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SessionAttendeesInterface, SetGeneralAvailabilityRequestInterface, TimeSlotsByWeekDayInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
11
+ export { AccessInterface, MCPOptionsInterface, } from './annotations.interface';
11
12
  export { TimeOfDayInterface, } from './timeofday.interface';
12
13
  export { DateTimeInterface, TimeZoneInterface, } from './datetime.interface';
@@ -2,7 +2,7 @@ import { ContactInterface, AnswersInterface, CalendarInterface, HostInterface, H
2
2
  import { DateRangeInterface } from './date-range.interface';
3
3
  import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
4
4
  import { MeetingTypeInterface, FormInterface } from './meeting-type.interface';
5
- import { TimeZoneInterface } from './datetime.interface';
5
+ import { TimeZoneInterface } from './';
6
6
  import * as e from '../enums';
7
7
  export interface BookMeetingRequestInterface {
8
8
  hostId?: string;
@@ -44,6 +44,14 @@ export interface GetHostRequestInterface {
44
44
  export interface GetHostResponseInterface {
45
45
  host?: HostInterface;
46
46
  }
47
+ export interface GetMeetingCalendarInfoRequestInterface {
48
+ meetingId?: string;
49
+ }
50
+ export interface GetMeetingCalendarInfoResponseInterface {
51
+ googleCalendarLink?: string;
52
+ outlookCalendarLink?: string;
53
+ linkReady?: boolean;
54
+ }
47
55
  export interface GetMeetingTypeRequestInterface {
48
56
  calendarSlug?: string;
49
57
  meetingTypeSlug?: string;
@@ -3,13 +3,13 @@ import { FieldMaskInterface } from './field-mask.interface';
3
3
  import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
4
4
  import { MeetingTypeInterface, RegistrationCutOffInterface } from './meeting-type.interface';
5
5
  import { TimeRangeInterface, CalendarInterface, PreferencesInterface, HostUserInterface, ContactInterface, EmailsToDeleteInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, IsoDateTimeRangeInterface, AttendeeInterface, AnswersInterface, AttachmentInterface } from './shared.interface';
6
- import { TimeZoneInterface } from './datetime.interface';
6
+ import { TimeZoneInterface } from './';
7
7
  import * as e from '../enums';
8
- export interface BuildHostIdRequestApplicationContextPropertiesEntryInterface {
8
+ export interface IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
9
9
  key?: string;
10
10
  value?: string;
11
11
  }
12
- export interface IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
12
+ export interface BuildHostIdRequestApplicationContextPropertiesEntryInterface {
13
13
  key?: string;
14
14
  value?: string;
15
15
  }
@@ -46,6 +46,8 @@ export interface CalendarMigrationResponseInterface {
46
46
  export interface CancelMeetingRequestInterface {
47
47
  meetingId?: string;
48
48
  cancellationReason?: string;
49
+ isSeriesCancellation?: boolean;
50
+ sessionId?: string;
49
51
  }
50
52
  export interface CheckGroupOrServiceSlugExistRequestInterface {
51
53
  hostId?: string;
@@ -133,15 +135,15 @@ export interface EnsureSessionEventCalendarsExistRequestInterface {
133
135
  export interface EnsureSessionEventCalendarsExistResponseInterface {
134
136
  calendarId?: string;
135
137
  }
136
- export interface ListAvailabilityRequestFiltersInterface {
137
- hostId?: string;
138
- meetingTypeId?: string;
139
- }
140
138
  export interface ListBookedMeetingsRequestFiltersInterface {
141
139
  meetingTypeIds?: string[];
142
140
  hostId?: string;
143
141
  timeSpan?: DateRangeInterface;
144
142
  }
143
+ export interface ListAvailabilityRequestFiltersInterface {
144
+ hostId?: string;
145
+ meetingTypeId?: string;
146
+ }
145
147
  export interface GetEntityAssociationRequestInterface {
146
148
  entityId?: string;
147
149
  }
@@ -208,6 +210,8 @@ export interface HostBookSessionRequestInterface {
208
210
  meetingTypeId?: string;
209
211
  hostId?: string;
210
212
  calendarId?: string;
213
+ isRecurring?: boolean;
214
+ recurrenceConfig?: RecurrenceConfigInterface;
211
215
  }
212
216
  export interface HostBookSessionResponseInterface {
213
217
  meetingId?: string;
@@ -279,6 +283,14 @@ export interface ListAvailabilityResponseInterface {
279
283
  availabilityRules?: AvailabilityRuleInterface[];
280
284
  metadata?: PagedResponseMetadataInterface;
281
285
  }
286
+ export interface ListAvailableTimeslotsForRecurringSessionRequestInterface {
287
+ userIds?: string[];
288
+ duration?: string;
289
+ timeZone?: TimeZoneInterface;
290
+ }
291
+ export interface ListAvailableTimeslotsForRecurringSessionResponseInterface {
292
+ timeSlots?: TimeSlotsByWeekDayInterface[];
293
+ }
282
294
  export interface ListAvailableTimeslotsForSessionRequestInterface {
283
295
  eventTypeId?: string;
284
296
  timeSpan?: DateRangeInterface;
@@ -348,9 +360,21 @@ export interface MeetingMetadataEntryInterface {
348
360
  key?: string;
349
361
  value?: string;
350
362
  }
363
+ export interface RecurrenceConfigInterface {
364
+ recurrence?: e.Recurrence;
365
+ startTime?: Date;
366
+ repeatOnDays?: e.Weekday[];
367
+ recurrenceEnd?: RecurrenceEndInterface;
368
+ registrationMode?: e.RegistrationMode;
369
+ }
370
+ export interface RecurrenceEndInterface {
371
+ endDate?: Date;
372
+ occurrenceCount?: number;
373
+ }
351
374
  export interface RescheduleMeetingRequestInterface {
352
375
  meetingId?: string;
353
376
  start?: Date;
377
+ sessionId?: string;
354
378
  }
355
379
  export interface SendMeetingRequestEmailRequestInterface {
356
380
  contactId?: string;
@@ -377,6 +401,10 @@ export interface SetGeneralAvailabilityRequestInterface {
377
401
  timeZone?: TimeZoneInterface;
378
402
  weekdaysAvailability?: WeekdayAvailabilityInterface[];
379
403
  }
404
+ export interface TimeSlotsByWeekDayInterface {
405
+ day?: e.DayOfWeek;
406
+ timeSlot?: TimeRangeInterface[];
407
+ }
380
408
  export interface UpdateAvailabilityRequestInterface {
381
409
  }
382
410
  export interface UpdateCalendarRequestInterface {
@@ -48,6 +48,8 @@ export interface MeetingTypeInterface {
48
48
  sessionTitle?: string;
49
49
  registrationCutoff?: RegistrationCutOffInterface;
50
50
  hostOrderDetails?: HostOrderDetailsInterface[];
51
+ isEmailRequired?: boolean;
52
+ isPhoneNumberRequired?: boolean;
51
53
  }
52
54
  export interface RegistrationCutOffInterface {
53
55
  unit?: e.RegistrationCutOffUnit;
@@ -1,5 +1,4 @@
1
- import { TimeOfDayInterface } from './timeofday.interface';
2
- import { TimeZoneInterface } from './datetime.interface';
1
+ import { TimeZoneInterface, TimeOfDayInterface } from './';
3
2
  import * as e from '../enums';
4
3
  export interface AnswerInterface {
5
4
  id?: string;
@@ -1,18 +1,17 @@
1
- import { BookMeetingRequest, BookMeetingResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, 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, GetMeetingTypeRequestInterface, GetServiceRequestInterface, GetSessionInviteeMeetingInfoRequestInterface, GetSessionMeetingRequestInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestIsHostConfiguredRequestInterface, GuestRescheduleMeetingRequestInterface, InviteeDeregisterSessionMeetingRequestInterface, InviteeRegisterSessionMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListMeetingTypesRequestInterface } from './interfaces/';
3
- import { HttpClient, HttpResponse } from '@angular/common/http';
4
- import { HostService } from '../_generated/host.service';
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/';
3
+ import { HttpResponse } from '@angular/common/http';
5
4
  import { Observable } from 'rxjs';
6
5
  import * as i0 from "@angular/core";
7
6
  export declare class MeetingGuestApiService {
8
- private http;
9
- private hostService;
7
+ private readonly hostService;
8
+ private readonly http;
10
9
  private _host;
11
- constructor(http: HttpClient, hostService: HostService);
12
10
  private apiOptions;
13
11
  listMeetingTypes(r: ListMeetingTypesRequest | ListMeetingTypesRequestInterface): Observable<ListMeetingTypesResponse>;
14
12
  getMeetingType(r: GetMeetingTypeRequest | GetMeetingTypeRequestInterface): Observable<GetMeetingTypeResponse>;
15
13
  listAvailableTimeSlots(r: ListAvailableTimeSlotsRequest | ListAvailableTimeSlotsRequestInterface): Observable<ListAvailableTimeSlotsResponse>;
14
+ getMeetingCalendarInfo(r: GetMeetingCalendarInfoRequest | GetMeetingCalendarInfoRequestInterface): Observable<GetMeetingCalendarInfoResponse>;
16
15
  bookMeeting(r: BookMeetingRequest | BookMeetingRequestInterface): Observable<BookMeetingResponse>;
17
16
  cancelMeeting(r: GuestCancelMeetingRequest | GuestCancelMeetingRequestInterface): Observable<HttpResponse<null>>;
18
17
  rescheduleMeeting(r: GuestRescheduleMeetingRequest | GuestRescheduleMeetingRequestInterface): Observable<HttpResponse<null>>;
@@ -1,14 +1,12 @@
1
- import { BookMeetingRequest, BookMeetingResponse, BuildHostIdRequest, BuildHostIdResponse, 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, GetEntityAssociationRequest, GetEntityAssociationResponse, GetGroupRequest, GetGroupResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, GetServiceRequest, GetServiceResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostBookSessionRequest, HostBookSessionResponse, HostDeleteAttendeesRequest, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAttendeesRequest, ListAttendeesResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListAvailableTimeslotsForSessionRequest, ListAvailableTimeslotsForSessionResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest } from './objects/';
2
- import { BookMeetingRequestInterface, BuildHostIdRequestInterface, CancelMeetingRequestInterface, CheckGroupOrServiceSlugExistRequestInterface, CreateAvailabilityRequestInterface, CreateCalendarRequestInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateMeetingTypeRequestInterface, CreateServiceRequestInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, EnsureGroupCalendarsExistRequestInterface, EnsurePersonalCalendarExistsRequestInterface, EnsureSessionEventCalendarsExistRequestInterface, GetEntityAssociationRequestInterface, GetGroupRequestInterface, GetHostMeetingRequestInterface, GetHostPreferencesRequestInterface, GetHostsForCalendarRequestInterface, GetMeetingTypesForCalendarsRequestInterface, GetServiceRequestInterface, HostBookMeetingRequestInterface, HostBookSessionRequestInterface, HostDeleteAttendeesRequestInterface, HostGetCalendarRequestInterface, HostGetMeetingTypeRequestInterface, HostListMeetingTypesRequestInterface, IsCalendarConfiguredRequestInterface, IsHostConfiguredRequestInterface, ListAttendeesRequestInterface, ListAvailabilityRequestInterface, ListAvailableTimeslotsForSessionRequestInterface, ListBookedMeetingsRequestInterface, ListGroupsRequestInterface, ListServicesRequestInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface } from './interfaces/';
3
- import { HttpClient, HttpResponse } from '@angular/common/http';
4
- import { HostService } from '../_generated/host.service';
1
+ import { BookMeetingRequest, BookMeetingResponse, BuildHostIdRequest, BuildHostIdResponse, 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, GetEntityAssociationRequest, GetEntityAssociationResponse, GetGroupRequest, GetGroupResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, GetServiceRequest, GetServiceResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostBookSessionRequest, HostBookSessionResponse, HostDeleteAttendeesRequest, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAttendeesRequest, ListAttendeesResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListAvailableTimeslotsForRecurringSessionRequest, ListAvailableTimeslotsForRecurringSessionResponse, ListAvailableTimeslotsForSessionRequest, ListAvailableTimeslotsForSessionResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest } from './objects/';
2
+ import { BookMeetingRequestInterface, BuildHostIdRequestInterface, CancelMeetingRequestInterface, CheckGroupOrServiceSlugExistRequestInterface, CreateAvailabilityRequestInterface, CreateCalendarRequestInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateMeetingTypeRequestInterface, CreateServiceRequestInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, EnsureGroupCalendarsExistRequestInterface, EnsurePersonalCalendarExistsRequestInterface, EnsureSessionEventCalendarsExistRequestInterface, GetEntityAssociationRequestInterface, GetGroupRequestInterface, GetHostMeetingRequestInterface, GetHostPreferencesRequestInterface, GetHostsForCalendarRequestInterface, GetMeetingTypesForCalendarsRequestInterface, GetServiceRequestInterface, HostBookMeetingRequestInterface, HostBookSessionRequestInterface, HostDeleteAttendeesRequestInterface, HostGetCalendarRequestInterface, HostGetMeetingTypeRequestInterface, HostListMeetingTypesRequestInterface, IsCalendarConfiguredRequestInterface, IsHostConfiguredRequestInterface, ListAttendeesRequestInterface, ListAvailabilityRequestInterface, ListAvailableTimeslotsForRecurringSessionRequestInterface, ListAvailableTimeslotsForSessionRequestInterface, ListBookedMeetingsRequestInterface, ListGroupsRequestInterface, ListServicesRequestInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface } from './interfaces/';
3
+ import { HttpResponse } from '@angular/common/http';
5
4
  import { Observable } from 'rxjs';
6
5
  import * as i0 from "@angular/core";
7
6
  export declare class MeetingHostApiService {
8
- private http;
9
- private hostService;
7
+ private readonly hostService;
8
+ private readonly http;
10
9
  private _host;
11
- constructor(http: HttpClient, hostService: HostService);
12
10
  private apiOptions;
13
11
  buildHostId(r: BuildHostIdRequest | BuildHostIdRequestInterface): Observable<BuildHostIdResponse>;
14
12
  doesCalendarExist(r: DoesCalendarExistRequest | DoesCalendarExistRequestInterface): Observable<DoesCalendarExistResponse>;
@@ -62,6 +60,7 @@ export declare class MeetingHostApiService {
62
60
  cancelSession(r: CancelMeetingRequest | CancelMeetingRequestInterface): Observable<HttpResponse<null>>;
63
61
  rescheduleSession(r: RescheduleMeetingRequest | RescheduleMeetingRequestInterface): Observable<HttpResponse<null>>;
64
62
  listAvailableTimeslotsForSession(r: ListAvailableTimeslotsForSessionRequest | ListAvailableTimeslotsForSessionRequestInterface): Observable<ListAvailableTimeslotsForSessionResponse>;
63
+ listAvailableTimeslotsForRecurringSession(r: ListAvailableTimeslotsForRecurringSessionRequest | ListAvailableTimeslotsForRecurringSessionRequestInterface): Observable<ListAvailableTimeslotsForRecurringSessionResponse>;
65
64
  static ɵfac: i0.ɵɵFactoryDeclaration<MeetingHostApiService, never>;
66
65
  static ɵprov: i0.ɵɵInjectableDeclaration<MeetingHostApiService>;
67
66
  }
@@ -1,14 +1,11 @@
1
1
  import { MeetingSourceListRequest, MeetingSourceListResponse } from './objects/';
2
2
  import { MeetingSourceListRequestInterface } from './interfaces/';
3
- import { HttpClient } from '@angular/common/http';
4
- import { HostService } from '../_generated/host.service';
5
3
  import { Observable } from 'rxjs';
6
4
  import * as i0 from "@angular/core";
7
5
  export declare class MeetingSourceAPIApiService {
8
- private http;
9
- private hostService;
6
+ private readonly hostService;
7
+ private readonly http;
10
8
  private _host;
11
- constructor(http: HttpClient, hostService: HostService);
12
9
  private apiOptions;
13
10
  list(r: MeetingSourceListRequest | MeetingSourceListRequestInterface): Observable<MeetingSourceListResponse>;
14
11
  static ɵfac: i0.ɵɵFactoryDeclaration<MeetingSourceAPIApiService, never>;
@@ -0,0 +1,15 @@
1
+ import * as i from '../interfaces';
2
+ export declare function enumStringToValue<E>(enumRef: any, value: string): E;
3
+ export declare class Access implements i.AccessInterface {
4
+ scope: string[];
5
+ public: boolean;
6
+ static fromProto(proto: any): Access;
7
+ constructor(kwargs?: i.AccessInterface);
8
+ toApiJson(): object;
9
+ }
10
+ export declare class MCPOptions implements i.MCPOptionsInterface {
11
+ serverId: string[];
12
+ static fromProto(proto: any): MCPOptions;
13
+ constructor(kwargs?: i.MCPOptionsInterface);
14
+ toApiJson(): object;
15
+ }
@@ -5,8 +5,9 @@ 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, 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, GuestGetBookedMeetingResponse, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, InviteeDeregisterSessionMeetingRequest, InviteeRegisterSessionMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, BookMeetingRequestMetadataEntry, RegisterSessionRequest, } from './meeting-guest';
9
9
  export { FieldMask, } from './field-mask';
10
- export { BuildHostIdRequestApplicationContextPropertiesEntry, IsCalendarConfiguredRequestApplicationContextPropertiesEntry, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, 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, ListAvailabilityRequestFilters, ListBookedMeetingsRequestFilters, 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, ListAvailableTimeslotsForSessionRequest, ListAvailableTimeslotsForSessionResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, Meeting, MeetingTypeList, UpdateMeetingMetadataRequestMetadataEntry, MeetingMetadataEntry, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SessionAttendees, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
10
+ export { IsCalendarConfiguredRequestApplicationContextPropertiesEntry, BuildHostIdRequestApplicationContextPropertiesEntry, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, 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, UpdateMeetingMetadataRequestMetadataEntry, MeetingMetadataEntry, RecurrenceConfig, RecurrenceEnd, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SessionAttendees, SetGeneralAvailabilityRequest, TimeSlotsByWeekDay, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
11
+ export { Access, MCPOptions, } from './annotations';
11
12
  export { TimeOfDay, } from './timeofday';
12
13
  export { DateTime, TimeZone, } from './datetime';
@@ -3,7 +3,7 @@ import { Contact, Answers, Calendar, Host, HostUser, IsoDateTimeRange } from './
3
3
  import { DateRange } from './date-range';
4
4
  import { Group, Service } from './groups-and-services';
5
5
  import { MeetingType, Form } from './meeting-type';
6
- import { TimeZone } from './datetime';
6
+ import { TimeZone } from './';
7
7
  import * as e from '../enums';
8
8
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
9
9
  export declare class BookMeetingRequest implements i.BookMeetingRequestInterface {
@@ -70,6 +70,20 @@ export declare class GetHostResponse implements i.GetHostResponseInterface {
70
70
  constructor(kwargs?: i.GetHostResponseInterface);
71
71
  toApiJson(): object;
72
72
  }
73
+ export declare class GetMeetingCalendarInfoRequest implements i.GetMeetingCalendarInfoRequestInterface {
74
+ meetingId: string;
75
+ static fromProto(proto: any): GetMeetingCalendarInfoRequest;
76
+ constructor(kwargs?: i.GetMeetingCalendarInfoRequestInterface);
77
+ toApiJson(): object;
78
+ }
79
+ export declare class GetMeetingCalendarInfoResponse implements i.GetMeetingCalendarInfoResponseInterface {
80
+ googleCalendarLink: string;
81
+ outlookCalendarLink: string;
82
+ linkReady: boolean;
83
+ static fromProto(proto: any): GetMeetingCalendarInfoResponse;
84
+ constructor(kwargs?: i.GetMeetingCalendarInfoResponseInterface);
85
+ toApiJson(): object;
86
+ }
73
87
  export declare class GetMeetingTypeRequest implements i.GetMeetingTypeRequestInterface {
74
88
  calendarSlug: string;
75
89
  meetingTypeSlug: string;
@@ -4,21 +4,21 @@ import { FieldMask } from './field-mask';
4
4
  import { Group, Service } from './groups-and-services';
5
5
  import { MeetingType, RegistrationCutOff } from './meeting-type';
6
6
  import { TimeRange, Calendar, Preferences, HostUser, Contact, EmailsToDelete, PagedRequestOptions, PagedResponseMetadata, IsoDateTimeRange, Attendee, Answers, Attachment } from './shared';
7
- import { TimeZone } from './datetime';
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 BuildHostIdRequestApplicationContextPropertiesEntry implements i.BuildHostIdRequestApplicationContextPropertiesEntryInterface {
10
+ export declare class IsCalendarConfiguredRequestApplicationContextPropertiesEntry implements i.IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
11
11
  key: string;
12
12
  value: string;
13
- static fromProto(proto: any): BuildHostIdRequestApplicationContextPropertiesEntry;
14
- constructor(kwargs?: i.BuildHostIdRequestApplicationContextPropertiesEntryInterface);
13
+ static fromProto(proto: any): IsCalendarConfiguredRequestApplicationContextPropertiesEntry;
14
+ constructor(kwargs?: i.IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface);
15
15
  toApiJson(): object;
16
16
  }
17
- export declare class IsCalendarConfiguredRequestApplicationContextPropertiesEntry implements i.IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
17
+ export declare class BuildHostIdRequestApplicationContextPropertiesEntry implements i.BuildHostIdRequestApplicationContextPropertiesEntryInterface {
18
18
  key: string;
19
19
  value: string;
20
- static fromProto(proto: any): IsCalendarConfiguredRequestApplicationContextPropertiesEntry;
21
- constructor(kwargs?: i.IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface);
20
+ static fromProto(proto: any): BuildHostIdRequestApplicationContextPropertiesEntry;
21
+ constructor(kwargs?: i.BuildHostIdRequestApplicationContextPropertiesEntryInterface);
22
22
  toApiJson(): object;
23
23
  }
24
24
  export declare class EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry implements i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
@@ -75,6 +75,8 @@ export declare class CalendarMigrationResponse implements i.CalendarMigrationRes
75
75
  export declare class CancelMeetingRequest implements i.CancelMeetingRequestInterface {
76
76
  meetingId: string;
77
77
  cancellationReason: string;
78
+ isSeriesCancellation: boolean;
79
+ sessionId: string;
78
80
  static fromProto(proto: any): CancelMeetingRequest;
79
81
  constructor(kwargs?: i.CancelMeetingRequestInterface);
80
82
  toApiJson(): object;
@@ -240,13 +242,6 @@ export declare class EnsureSessionEventCalendarsExistResponse implements i.Ensur
240
242
  constructor(kwargs?: i.EnsureSessionEventCalendarsExistResponseInterface);
241
243
  toApiJson(): object;
242
244
  }
243
- export declare class ListAvailabilityRequestFilters implements i.ListAvailabilityRequestFiltersInterface {
244
- hostId: string;
245
- meetingTypeId: string;
246
- static fromProto(proto: any): ListAvailabilityRequestFilters;
247
- constructor(kwargs?: i.ListAvailabilityRequestFiltersInterface);
248
- toApiJson(): object;
249
- }
250
245
  export declare class ListBookedMeetingsRequestFilters implements i.ListBookedMeetingsRequestFiltersInterface {
251
246
  meetingTypeIds: string[];
252
247
  hostId: string;
@@ -255,6 +250,13 @@ export declare class ListBookedMeetingsRequestFilters implements i.ListBookedMee
255
250
  constructor(kwargs?: i.ListBookedMeetingsRequestFiltersInterface);
256
251
  toApiJson(): object;
257
252
  }
253
+ export declare class ListAvailabilityRequestFilters implements i.ListAvailabilityRequestFiltersInterface {
254
+ hostId: string;
255
+ meetingTypeId: string;
256
+ static fromProto(proto: any): ListAvailabilityRequestFilters;
257
+ constructor(kwargs?: i.ListAvailabilityRequestFiltersInterface);
258
+ toApiJson(): object;
259
+ }
258
260
  export declare class GetEntityAssociationRequest implements i.GetEntityAssociationRequestInterface {
259
261
  entityId: string;
260
262
  static fromProto(proto: any): GetEntityAssociationRequest;
@@ -357,6 +359,8 @@ export declare class HostBookSessionRequest implements i.HostBookSessionRequestI
357
359
  meetingTypeId: string;
358
360
  hostId: string;
359
361
  calendarId: string;
362
+ isRecurring: boolean;
363
+ recurrenceConfig: RecurrenceConfig;
360
364
  static fromProto(proto: any): HostBookSessionRequest;
361
365
  constructor(kwargs?: i.HostBookSessionRequestInterface);
362
366
  toApiJson(): object;
@@ -485,6 +489,20 @@ export declare class ListAvailabilityResponse implements i.ListAvailabilityRespo
485
489
  constructor(kwargs?: i.ListAvailabilityResponseInterface);
486
490
  toApiJson(): object;
487
491
  }
492
+ export declare class ListAvailableTimeslotsForRecurringSessionRequest implements i.ListAvailableTimeslotsForRecurringSessionRequestInterface {
493
+ userIds: string[];
494
+ duration: string;
495
+ timeZone: TimeZone;
496
+ static fromProto(proto: any): ListAvailableTimeslotsForRecurringSessionRequest;
497
+ constructor(kwargs?: i.ListAvailableTimeslotsForRecurringSessionRequestInterface);
498
+ toApiJson(): object;
499
+ }
500
+ export declare class ListAvailableTimeslotsForRecurringSessionResponse implements i.ListAvailableTimeslotsForRecurringSessionResponseInterface {
501
+ timeSlots: TimeSlotsByWeekDay[];
502
+ static fromProto(proto: any): ListAvailableTimeslotsForRecurringSessionResponse;
503
+ constructor(kwargs?: i.ListAvailableTimeslotsForRecurringSessionResponseInterface);
504
+ toApiJson(): object;
505
+ }
488
506
  export declare class ListAvailableTimeslotsForSessionRequest implements i.ListAvailableTimeslotsForSessionRequestInterface {
489
507
  eventTypeId: string;
490
508
  timeSpan: DateRange;
@@ -590,9 +608,27 @@ export declare class MeetingMetadataEntry implements i.MeetingMetadataEntryInter
590
608
  constructor(kwargs?: i.MeetingMetadataEntryInterface);
591
609
  toApiJson(): object;
592
610
  }
611
+ export declare class RecurrenceConfig implements i.RecurrenceConfigInterface {
612
+ recurrence: e.Recurrence;
613
+ startTime: Date;
614
+ repeatOnDays: e.Weekday[];
615
+ recurrenceEnd: RecurrenceEnd;
616
+ registrationMode: e.RegistrationMode;
617
+ static fromProto(proto: any): RecurrenceConfig;
618
+ constructor(kwargs?: i.RecurrenceConfigInterface);
619
+ toApiJson(): object;
620
+ }
621
+ export declare class RecurrenceEnd implements i.RecurrenceEndInterface {
622
+ endDate: Date;
623
+ occurrenceCount: number;
624
+ static fromProto(proto: any): RecurrenceEnd;
625
+ constructor(kwargs?: i.RecurrenceEndInterface);
626
+ toApiJson(): object;
627
+ }
593
628
  export declare class RescheduleMeetingRequest implements i.RescheduleMeetingRequestInterface {
594
629
  meetingId: string;
595
630
  start: Date;
631
+ sessionId: string;
596
632
  static fromProto(proto: any): RescheduleMeetingRequest;
597
633
  constructor(kwargs?: i.RescheduleMeetingRequestInterface);
598
634
  toApiJson(): object;
@@ -631,6 +667,13 @@ export declare class SetGeneralAvailabilityRequest implements i.SetGeneralAvaila
631
667
  constructor(kwargs?: i.SetGeneralAvailabilityRequestInterface);
632
668
  toApiJson(): object;
633
669
  }
670
+ export declare class TimeSlotsByWeekDay implements i.TimeSlotsByWeekDayInterface {
671
+ day: e.DayOfWeek;
672
+ timeSlot: TimeRange[];
673
+ static fromProto(proto: any): TimeSlotsByWeekDay;
674
+ constructor(kwargs?: i.TimeSlotsByWeekDayInterface);
675
+ toApiJson(): object;
676
+ }
634
677
  export declare class UpdateAvailabilityRequest implements i.UpdateAvailabilityRequestInterface {
635
678
  static fromProto(proto: any): UpdateAvailabilityRequest;
636
679
  constructor(kwargs?: i.UpdateAvailabilityRequestInterface);
@@ -59,6 +59,8 @@ export declare class MeetingType implements i.MeetingTypeInterface {
59
59
  sessionTitle: string;
60
60
  registrationCutoff: RegistrationCutOff;
61
61
  hostOrderDetails: HostOrderDetails[];
62
+ isEmailRequired: boolean;
63
+ isPhoneNumberRequired: boolean;
62
64
  static fromProto(proto: any): MeetingType;
63
65
  constructor(kwargs?: i.MeetingTypeInterface);
64
66
  toApiJson(): object;
@@ -1,6 +1,5 @@
1
1
  import * as i from '../interfaces';
2
- import { TimeOfDay } from './timeofday';
3
- import { TimeZone } from './datetime';
2
+ import { TimeZone, TimeOfDay } from './';
4
3
  import * as e from '../enums';
5
4
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
6
5
  export declare class Answer implements i.AnswerInterface {
@@ -1,14 +1,11 @@
1
1
  import { CreateZoomMeetingRequest, CreateZoomMeetingResponse } from './objects/';
2
2
  import { CreateZoomMeetingRequestInterface } from './interfaces/';
3
- import { HttpClient } from '@angular/common/http';
4
- import { HostService } from '../_generated/host.service';
5
3
  import { Observable } from 'rxjs';
6
4
  import * as i0 from "@angular/core";
7
5
  export declare class ZoomApiService {
8
- private http;
9
- private hostService;
6
+ private readonly hostService;
7
+ private readonly http;
10
8
  private _host;
11
- constructor(http: HttpClient, hostService: HostService);
12
9
  private apiOptions;
13
10
  createMeeting(r: CreateZoomMeetingRequest | CreateZoomMeetingRequestInterface): Observable<CreateZoomMeetingResponse>;
14
11
  static ɵfac: i0.ɵɵFactoryDeclaration<ZoomApiService, never>;
@@ -7,6 +7,14 @@ export interface BookMeetingResponse {
7
7
  meetingId: string;
8
8
  hostId: string;
9
9
  }
10
+ export interface GetMeetingCalendarInfoRequest {
11
+ meetingId: string;
12
+ }
13
+ export interface GetMeetingCalendarInfoResponse {
14
+ googleCalendarLink: string;
15
+ outlookCalendarLink: string;
16
+ linkReady: boolean;
17
+ }
10
18
  export interface BookSessionResponse {
11
19
  meetingId: string;
12
20
  bookingUrl: string;
@@ -124,6 +132,7 @@ export declare class GuestService implements GuestServiceInterface {
124
132
  sessionInviteeId: string;
125
133
  cancellationReason: string;
126
134
  }): Observable<null>;
135
+ getMeetingCalendarInfo(req: GetMeetingCalendarInfoRequest): Observable<GetMeetingCalendarInfoResponse>;
127
136
  static ɵfac: i0.ɵɵFactoryDeclaration<GuestService, never>;
128
137
  static ɵprov: i0.ɵɵInjectableDeclaration<GuestService>;
129
138
  }
@@ -36,6 +36,8 @@ export interface MeetingType {
36
36
  registrationCutoff?: RegistrationCutOffInterface;
37
37
  sessionTitle?: string;
38
38
  hostOrderDetails?: HostOrderDetailsInterface[];
39
+ isEmailRequired?: boolean;
40
+ isPhoneNumberRequired?: boolean;
39
41
  }
40
42
  export type MeetingTypeFormField = Required<FieldInterface>;
41
43
  export type MeetingTypeForm = Required<Omit<FormInterface, "fields">> & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/meetings",
3
- "version": "1.4.1",
3
+ "version": "1.4.4",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"