@vendasta/meetings 1.7.7 → 1.8.1

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 (53) hide show
  1. package/esm2020/lib/_internal/enums/index.mjs +2 -2
  2. package/esm2020/lib/_internal/enums/shared.enum.mjs +9 -1
  3. package/esm2020/lib/_internal/interfaces/annotations.interface.mjs +1 -1
  4. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  5. package/esm2020/lib/_internal/interfaces/meeting-external.interface.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/shared.interface.mjs +1 -1
  9. package/esm2020/lib/_internal/meeting-host.api.service.mjs +25 -2
  10. package/esm2020/lib/_internal/objects/annotations.mjs +7 -1
  11. package/esm2020/lib/_internal/objects/date-range.mjs +1 -1
  12. package/esm2020/lib/_internal/objects/field-mask.mjs +1 -1
  13. package/esm2020/lib/_internal/objects/index.mjs +4 -4
  14. package/esm2020/lib/_internal/objects/meeting-external.mjs +2 -2
  15. package/esm2020/lib/_internal/objects/meeting-guest.mjs +22 -59
  16. package/esm2020/lib/_internal/objects/meeting-host.mjs +320 -3
  17. package/esm2020/lib/_internal/objects/meeting-type.mjs +1 -1
  18. package/esm2020/lib/_internal/objects/openapiv2.mjs +1 -1
  19. package/esm2020/lib/_internal/objects/shared.mjs +91 -1
  20. package/esm2020/lib/_internal/objects/zoom.mjs +1 -1
  21. package/esm2020/lib/host/host.service.mjs +63 -2
  22. package/esm2020/lib/index.mjs +3 -3
  23. package/esm2020/lib/shared/meeting.mjs +1 -1
  24. package/esm2020/lib/shared/preferences.mjs +4 -2
  25. package/fesm2015/vendasta-meetings.mjs +525 -57
  26. package/fesm2015/vendasta-meetings.mjs.map +1 -1
  27. package/fesm2020/vendasta-meetings.mjs +527 -57
  28. package/fesm2020/vendasta-meetings.mjs.map +1 -1
  29. package/lib/_internal/enums/index.d.ts +1 -1
  30. package/lib/_internal/enums/shared.enum.d.ts +7 -0
  31. package/lib/_internal/interfaces/annotations.interface.d.ts +2 -0
  32. package/lib/_internal/interfaces/index.d.ts +3 -3
  33. package/lib/_internal/interfaces/meeting-external.interface.d.ts +1 -1
  34. package/lib/_internal/interfaces/meeting-guest.interface.d.ts +7 -14
  35. package/lib/_internal/interfaces/meeting-host.interface.d.ts +55 -2
  36. package/lib/_internal/interfaces/shared.interface.d.ts +17 -0
  37. package/lib/_internal/meeting-host.api.service.d.ts +7 -2
  38. package/lib/_internal/objects/annotations.d.ts +3 -1
  39. package/lib/_internal/objects/date-range.d.ts +1 -1
  40. package/lib/_internal/objects/field-mask.d.ts +1 -1
  41. package/lib/_internal/objects/index.d.ts +3 -3
  42. package/lib/_internal/objects/meeting-external.d.ts +2 -2
  43. package/lib/_internal/objects/meeting-guest.d.ts +12 -25
  44. package/lib/_internal/objects/meeting-host.d.ts +86 -3
  45. package/lib/_internal/objects/meeting-type.d.ts +1 -1
  46. package/lib/_internal/objects/openapiv2.d.ts +1 -1
  47. package/lib/_internal/objects/shared.d.ts +27 -1
  48. package/lib/_internal/objects/zoom.d.ts +1 -1
  49. package/lib/host/host.service.d.ts +38 -2
  50. package/lib/index.d.ts +4 -4
  51. package/lib/shared/meeting.d.ts +4 -0
  52. package/lib/shared/preferences.d.ts +4 -2
  53. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
1
  export { CalendarSource, MeetingSource, MeetingSourceStatus, } from './meeting-source.enum';
2
2
  export { ZoomApprovalType, ZoomMeetingRecurrenceType, ZoomMeetingType, ZoomMonthlyWeek, ZoomMonthlyWeekDay, ZoomRegistrationType, ZoomWeeklyDay, } from './zoom.enum';
3
- export { CalendarType, FormFieldType, OnBoardingState, } from './shared.enum';
3
+ export { CalendarType, CalendarView, FormFieldType, OnBoardingState, } from './shared.enum';
4
4
  export { BookingEventType, BookingSource, DateRangeType, MeetingLocation, MeetingLocationType, NotificationType, RegistrationCutOffUnit, RelativeTimeUnit, TeamEventMeetingType, } from './meeting-type.enum';
5
5
  export { FeatureFlagFieldType, } from './meeting-guest.enum';
6
6
  export { BookingFailureReason, Recurrence, RegistrationMode, Weekday, } from './meeting-host.enum';
@@ -4,6 +4,13 @@ export declare enum CalendarType {
4
4
  CALENDAR_TYPE_GROUP = 2,
5
5
  CALENDAR_TYPE_SESSION = 3
6
6
  }
7
+ export declare enum CalendarView {
8
+ CALENDAR_VIEW_INVALID = 0,
9
+ CALENDAR_VIEW_WEEK = 1,
10
+ CALENDAR_VIEW_DAY = 2,
11
+ CALENDAR_VIEW_MONTH = 3,
12
+ CALENDAR_VIEW_LIST = 4
13
+ }
7
14
  export declare enum FormFieldType {
8
15
  FORM_FIELD_TYPE_INVALID = 0,
9
16
  FORM_FIELD_TYPE_TEXT = 1,
@@ -4,4 +4,6 @@ export interface AccessInterface {
4
4
  }
5
5
  export interface MCPOptionsInterface {
6
6
  serverId?: string[];
7
+ toolId?: string;
8
+ requiredFields?: string[];
7
9
  }
@@ -1,14 +1,14 @@
1
1
  export { MeetingSourceInfoInterface, MeetingSourceListRequestInterface, MeetingSourceListResponseInterface, MeetingSourceQueryInterface, } from './meeting-source.interface';
2
2
  export { CreateZoomMeetingRequestInterface, CreateZoomMeetingResponseInterface, ZoomMeetingRecurrenceInterface, ZoomMeetingSettingsInterface, ZoomMeetingTrackingFieldInterface, ZoomOccurrenceInterface, } from './zoom.interface';
3
3
  export { GoogleMeetConferenceDataInterface, GoogleMeetConferenceRequestStatusInterface, GoogleMeetConferenceSolutionInterface, GoogleMeetConferenceSolutionKeyInterface, GoogleMeetCreateConferenceRequestInterface, GoogleMeetCreateMeetingRequestInterface, GoogleMeetCreateMeetingResponseInterface, GoogleMeetEntryPointInterface, GoogleMeetListMeetingsRequestInterface, GoogleMeetListMeetingsResponseInterface, GoogleMeetMeetingInterface, GoogleMeetMeetingAttendeeInterface, GoogleMeetMeetingCreatorInterface, GoogleMeetMeetingDateTimeInterface, GoogleMeetMeetingOrganizerInterface, GoogleMeetMeetingReminderInterface, GoogleMeetMeetingRemindersInterface, } from './google-meet.interface';
4
- export { AnswerInterface, AnswersInterface, CalendarApplicationContextEntryInterface, AttachmentInterface, AttendeeInterface, CalendarInterface, ContactInterface, EmailsToDeleteInterface, HostInterface, HostOrderDetailsInterface, HostUserInterface, IsoDateTimeRangeInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, PhoneFieldsInterface, PreferencesInterface, TimeRangeInterface, } from './shared.interface';
4
+ export { AnswerInterface, AnswersInterface, CalendarApplicationContextEntryInterface, AttachmentInterface, AttendeeInterface, BatchBookingTargetInterface, BatchEventTypeTargetInterface, CalendarInterface, CalendarMemberInterface, ContactInterface, EmailsToDeleteInterface, HostInterface, HostOrderDetailsInterface, HostUserInterface, IsoDateTimeRangeInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, PhoneFieldsInterface, PreferencesInterface, TimeRangeInterface, } from './shared.interface';
5
5
  export { DateRangeInterface, } from './date-range.interface';
6
6
  export { BookingEventForAIInterface, EventTypeDateRangeInterface, FieldInterface, FormInterface, MeetingTypeInterface, RegistrationCutOffInterface, RelativeDateRangeInterface, } from './meeting-type.interface';
7
7
  export { EventGroupAndServiceAssociationsInterface, GroupInterface, ServiceInterface, } from './groups-and-services.interface';
8
- export { BatchBookingTargetInterface, BatchEventTypeTargetInterface, BookBatchMeetingRequestInterface, BookBatchMeetingResponseInterface, BookMeetingRequestInterface, BookMeetingResponseInterface, CancelBatchMeetingRequestInterface, CheckFeatureFlagRequestInterface, CheckFeatureFlagResponseInterface, GetCalendarRequestInterface, GetCalendarResponseInterface, GetGroupRequestInterface, GetGroupResponseInterface, GetHostRequestInterface, GetHostResponseInterface, GetMeetingCalendarInfoRequestInterface, GetMeetingCalendarInfoResponseInterface, GetMeetingTypeRequestInterface, GetMeetingTypeResponseInterface, GetServiceRequestInterface, GetServiceResponseInterface, GetServiceV2RequestInterface, GetServiceV2ResponseInterface, GetSessionInviteeMeetingInfoRequestInterface, GetSessionInviteeMeetingInfoResponseInterface, GetSessionMeetingRequestInterface, GetSessionMeetingResponseInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingRequestV2Interface, GuestGetBookedMeetingResponseInterface, GuestGetBookedMeetingResponseV2Interface, GuestIsHostConfiguredRequestInterface, GuestIsHostConfiguredResponseInterface, GuestRescheduleMeetingRequestInterface, InviteeDeregisterSessionMeetingRequestInterface, InviteeRegisterSessionMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListAvailableTimeSlotsResponseInterface, ListBatchAvailableTimeSlotsRequestInterface, ListBatchAvailableTimeSlotsResponseInterface, ListGuestBookedMeetingsRequestInterface, ListGuestBookedMeetingsResponseInterface, ListMeetingTypesRequestInterface, ListMeetingTypesResponseInterface, MeetingDetailInterface, MeetingSummaryInterface, BookBatchMeetingRequestMetadataEntryInterface, BookMeetingRequestMetadataEntryInterface, RegisterSessionRequestInterface, RescheduleBatchMeetingRequestInterface, ServiceEventTypeInterface, ServiceGroupInterface, } from './meeting-guest.interface';
8
+ export { BookBatchMeetingRequestInterface, BookBatchMeetingResponseInterface, BookMeetingRequestInterface, BookMeetingResponseInterface, CancelBatchMeetingRequestInterface, CheckFeatureFlagRequestInterface, CheckFeatureFlagResponseInterface, GetCalendarRequestInterface, GetCalendarResponseInterface, GetGroupRequestInterface, GetGroupResponseInterface, GetHostRequestInterface, GetHostResponseInterface, GetMeetingCalendarInfoRequestInterface, GetMeetingCalendarInfoResponseInterface, GetMeetingTypeRequestInterface, GetMeetingTypeResponseInterface, GetServiceRequestInterface, GetServiceResponseInterface, GetServiceV2RequestInterface, GetServiceV2ResponseInterface, GetSessionInviteeMeetingInfoRequestInterface, GetSessionInviteeMeetingInfoResponseInterface, GetSessionMeetingRequestInterface, GetSessionMeetingResponseInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingRequestV2Interface, GuestGetBookedMeetingResponseInterface, GuestGetBookedMeetingResponseV2Interface, GuestIsHostConfiguredRequestInterface, GuestIsHostConfiguredResponseInterface, GuestRescheduleMeetingRequestInterface, InviteeDeregisterSessionMeetingRequestInterface, InviteeRegisterSessionMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListAvailableTimeSlotsResponseInterface, ListBatchAvailableTimeSlotsRequestInterface, ListBatchAvailableTimeSlotsResponseInterface, ListGuestBookedMeetingsRequestInterface, ListGuestBookedMeetingsResponseInterface, ListMeetingTypesRequestInterface, ListMeetingTypesResponseInterface, MeetingDetailInterface, MeetingSummaryInterface, BookMeetingRequestMetadataEntryInterface, BookBatchMeetingRequestMetadataEntryInterface, RegisterSessionRequestInterface, RescheduleBatchMeetingRequestInterface, ServiceEventTypeInterface, ServiceGroupInterface, } from './meeting-guest.interface';
9
9
  export { AvailableTimeSlotsRequestInterface, AvailableTimeSlotsResponseInterface, BookMeetingExternalRequestInterface, BookMeetingExternalResponseInterface, EventTypeInterface, ExternalCancelMeetingRequestInterface, ExternalRescheduleMeetingRequestInterface, ExternalRescheduleMeetingResponseInterface, GetUsersRequestInterface, GetUsersResponseInterface, GroupResponseInterface, GroupsRequestInterface, GroupsResponseInterface, HostUserDetailsInterface, ListTeamEventTypesRequestInterface, ListTeamEventTypesResponseInterface, ListUserEventTypesRequestInterface, ListUserEventTypesResponseInterface, ServiceResponseInterface, ServicesRequestInterface, ServicesResponseInterface, UserResponseInterface, } from './meeting-external.interface';
10
10
  export { FieldMaskInterface, } from './field-mask.interface';
11
- export { IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, BuildHostIdRequestApplicationContextPropertiesEntryInterface, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, AvailabilityRuleInterface, AvailabilityRuleListInterface, BuildHostIdRequestInterface, BuildHostIdResponseInterface, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntryInterface, CalendarMigrationResponseInterface, CancelMeetingRequestInterface, CheckEventTypeSlugExistRequestInterface, CheckEventTypeSlugExistResponseInterface, 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, EventTypeSummaryInterface, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, GetEntityAssociationRequestInterface, GetEntityAssociationResponseInterface, GetEventTypeByIdRequestInterface, GetEventTypeByIdResponseInterface, 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, ListBookingTypesForAIRequestInterface, ListBookingTypesForAIResponseInterface, ListEventTypesForMultipleCalendarsRequestInterface, ListEventTypesForMultipleCalendarsResponseInterface, 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 { IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, BuildHostIdRequestApplicationContextPropertiesEntryInterface, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, AvailabilityRuleInterface, AvailabilityRuleListInterface, BookedMeetingV2Interface, BuildHostIdRequestInterface, BuildHostIdResponseInterface, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntryInterface, CalendarMigrationResponseInterface, CancelMeetingRequestInterface, CheckEventTypeSlugExistRequestInterface, CheckEventTypeSlugExistResponseInterface, 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, EventTypeSummaryInterface, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, GetEntityAssociationRequestInterface, GetEntityAssociationResponseInterface, GetEventTypeByIdRequestInterface, GetEventTypeByIdResponseInterface, GetHostMeetingRequestInterface, GetHostMeetingResponseInterface, GetHostPreferencesRequestInterface, GetHostPreferencesResponseInterface, GetHostsForCalendarRequestInterface, GetHostsForCalendarResponseInterface, GetMeetingTypesForCalendarsRequestInterface, GetMeetingTypesForCalendarsResponseInterface, HostBookBatchMeetingRequestInterface, HostBookBatchMeetingResponseInterface, HostBookMeetingRequestInterface, HostBookMeetingResponseInterface, HostBookSessionRequestInterface, HostBookSessionResponseInterface, HostCancelBatchMeetingRequestInterface, HostDeleteAttendeesRequestInterface, HostDetailsInterface, HostGetCalendarRequestInterface, HostGetCalendarResponseInterface, HostGetMeetingTypeRequestInterface, HostGetMeetingTypeResponseInterface, HostListBatchAvailableTimeSlotsRequestInterface, HostListBatchAvailableTimeSlotsResponseInterface, HostListMeetingTypesRequestInterface, HostListMeetingTypesResponseInterface, HostRescheduleBatchMeetingRequestInterface, GetHostsForCalendarResponseHostUserAvailabilityRuleEntryInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponseInterface, IsHostConfiguredRequestInterface, IsHostConfiguredResponseInterface, ListAttendeesRequestInterface, ListAttendeesResponseInterface, ListAvailabilityRequestInterface, ListAvailabilityResponseInterface, ListAvailableTimeslotsForRecurringSessionRequestInterface, ListAvailableTimeslotsForRecurringSessionResponseInterface, ListAvailableTimeslotsForSessionRequestInterface, ListAvailableTimeslotsForSessionResponseInterface, ListBookedMeetingsRequestInterface, ListBookedMeetingsResponseInterface, ListBookedMeetingsV2RequestInterface, ListBookedMeetingsV2ResponseInterface, ListBookingTypesForAIRequestInterface, ListBookingTypesForAIResponseInterface, ListEventTypesForMultipleCalendarsRequestInterface, ListEventTypesForMultipleCalendarsResponseInterface, ListGroupsRequestInterface, ListGroupsResponseInterface, ListServicesRequestInterface, ListServicesResponseInterface, MeetingInterface, MeetingTypeListInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, HostBookBatchMeetingRequestMetadataEntryInterface, MeetingMetadataEntryInterface, RecurrenceConfigInterface, RecurrenceEndInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SessionAttendeesInterface, SetGeneralAvailabilityRequestInterface, TimeSlotsByWeekDayInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
12
12
  export { AccessInterface, MCPOptionsInterface, } from './annotations.interface';
13
13
  export { EnumSchemaInterface, ResponseExamplesEntryInterface, ResponseExtensionsEntryInterface, SwaggerExtensionsEntryInterface, SecuritySchemeExtensionsEntryInterface, TagExtensionsEntryInterface, OperationExtensionsEntryInterface, JSONSchemaExtensionsEntryInterface, EnumSchemaExtensionsEntryInterface, InfoExtensionsEntryInterface, ExternalDocumentationInterface, JSONSchemaFieldConfigurationInterface, HeaderInterface, HeaderParameterInterface, ResponseHeadersEntryInterface, InfoInterface, JSONSchemaInterface, LicenseInterface, OperationInterface, ParametersInterface, ResponseInterface, OperationResponsesEntryInterface, SwaggerResponsesEntryInterface, SchemaInterface, ScopesScopeEntryInterface, ScopesInterface, SecurityDefinitionsInterface, SecurityDefinitionsSecurityEntryInterface, SecurityRequirementInterface, SecurityRequirementSecurityRequirementEntryInterface, SecurityRequirementSecurityRequirementValueInterface, SecuritySchemeInterface, SwaggerInterface, TagInterface, } from './openapiv2.interface';
14
14
  export { TimeOfDayInterface, } from './timeofday.interface';
@@ -1,8 +1,8 @@
1
- import { TimeZoneInterface } from './';
2
1
  import { ContactInterface } from './openapiv2.interface';
3
2
  import { DateRangeInterface } from './date-range.interface';
4
3
  import { EventTypeDateRangeInterface } from './meeting-type.interface';
5
4
  import { IsoDateTimeRangeInterface, AnswersInterface, HostOrderDetailsInterface } from './shared.interface';
5
+ import { TimeZoneInterface } from './';
6
6
  import * as e from '../enums';
7
7
  export interface AvailableTimeSlotsRequestInterface {
8
8
  businessId?: string;
@@ -1,20 +1,10 @@
1
- import { TimeZoneInterface } from './';
2
- import { AnswersInterface, CalendarInterface, HostInterface, HostUserInterface, IsoDateTimeRangeInterface, PhoneFieldsInterface } from './shared.interface';
1
+ import { BatchBookingTargetInterface, AnswersInterface, CalendarInterface, HostInterface, HostUserInterface, IsoDateTimeRangeInterface, BatchEventTypeTargetInterface, PhoneFieldsInterface } from './shared.interface';
3
2
  import { ContactInterface } from './openapiv2.interface';
4
3
  import { DateRangeInterface } from './date-range.interface';
5
4
  import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
6
5
  import { MeetingTypeInterface, FormInterface } from './meeting-type.interface';
6
+ import { TimeZoneInterface } from './';
7
7
  import * as e from '../enums';
8
- export interface BatchBookingTargetInterface {
9
- eventTypeId?: string;
10
- userId?: string;
11
- order?: number;
12
- }
13
- export interface BatchEventTypeTargetInterface {
14
- eventTypeId?: string;
15
- userId?: string;
16
- order?: number;
17
- }
18
8
  export interface BookBatchMeetingRequestInterface {
19
9
  targets?: BatchBookingTargetInterface[];
20
10
  start?: Date;
@@ -112,6 +102,7 @@ export interface GetServiceResponseInterface {
112
102
  }
113
103
  export interface GetServiceV2RequestInterface {
114
104
  serviceId?: string;
105
+ bookingSource?: e.BookingSource;
115
106
  }
116
107
  export interface GetServiceV2ResponseInterface {
117
108
  id?: string;
@@ -199,6 +190,7 @@ export interface GuestGetBookedMeetingResponseV2Interface {
199
190
  bookingGroupId?: string;
200
191
  meetings?: MeetingDetailInterface[];
201
192
  primaryAttendeePhone?: string;
193
+ isLocationEditable?: boolean;
202
194
  }
203
195
  export interface GuestIsHostConfiguredRequestInterface {
204
196
  hostId?: string;
@@ -284,6 +276,7 @@ export interface MeetingDetailInterface {
284
276
  eventTypeId?: string;
285
277
  userId?: string;
286
278
  locationGuideline?: string;
279
+ inPersonLocationType?: e.MeetingLocationType;
287
280
  }
288
281
  export interface MeetingSummaryInterface {
289
282
  id?: string;
@@ -294,11 +287,11 @@ export interface MeetingSummaryInterface {
294
287
  isoEndTime?: string;
295
288
  location?: string;
296
289
  }
297
- export interface BookBatchMeetingRequestMetadataEntryInterface {
290
+ export interface BookMeetingRequestMetadataEntryInterface {
298
291
  key?: string;
299
292
  value?: string;
300
293
  }
301
- export interface BookMeetingRequestMetadataEntryInterface {
294
+ export interface BookBatchMeetingRequestMetadataEntryInterface {
302
295
  key?: string;
303
296
  value?: string;
304
297
  }
@@ -1,10 +1,10 @@
1
- import { TimeZoneInterface } from './';
2
1
  import { ContactInterface } from './shared.interface';
3
2
  import { DateRangeInterface } from './date-range.interface';
4
3
  import { FieldMaskInterface } from './field-mask.interface';
5
4
  import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
6
5
  import { MeetingTypeInterface, EventTypeDateRangeInterface, RegistrationCutOffInterface, BookingEventForAIInterface } from './meeting-type.interface';
7
- import { TimeRangeInterface, CalendarInterface, HostUserInterface, PreferencesInterface, EmailsToDeleteInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, IsoDateTimeRangeInterface, AttendeeInterface, AnswersInterface, AttachmentInterface } from './shared.interface';
6
+ import { TimeRangeInterface, CalendarInterface, HostUserInterface, PreferencesInterface, BatchBookingTargetInterface, AnswersInterface, EmailsToDeleteInterface, BatchEventTypeTargetInterface, IsoDateTimeRangeInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, AttendeeInterface, AttachmentInterface } from './shared.interface';
7
+ import { TimeZoneInterface } from './';
8
8
  import * as e from '../enums';
9
9
  export interface IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
10
10
  key?: string;
@@ -28,6 +28,10 @@ export interface AvailabilityRuleInterface {
28
28
  export interface AvailabilityRuleListInterface {
29
29
  rules?: AvailabilityRuleInterface[];
30
30
  }
31
+ export interface BookedMeetingV2Interface {
32
+ bookingGroupId?: string;
33
+ meetings?: MeetingInterface[];
34
+ }
31
35
  export interface BuildHostIdRequestInterface {
32
36
  applicationContextProperties?: {
33
37
  [key: string]: string;
@@ -215,6 +219,23 @@ export interface GetMeetingTypesForCalendarsResponseInterface {
215
219
  [key: string]: MeetingTypeListInterface;
216
220
  };
217
221
  }
222
+ export interface HostBookBatchMeetingRequestInterface {
223
+ calendarId?: string;
224
+ targets?: BatchBookingTargetInterface[];
225
+ start?: Date;
226
+ attendees?: ContactInterface[];
227
+ comment?: string;
228
+ metadata?: {
229
+ [key: string]: string;
230
+ };
231
+ formAnswers?: AnswersInterface;
232
+ location?: string;
233
+ bookingSource?: e.BookingSource;
234
+ bookingOriginId?: string;
235
+ }
236
+ export interface HostBookBatchMeetingResponseInterface {
237
+ bookingGroupId?: string;
238
+ }
218
239
  export interface HostBookMeetingRequestInterface {
219
240
  meetingSource?: e.MeetingSource;
220
241
  calendarId?: string;
@@ -251,6 +272,10 @@ export interface HostBookSessionResponseInterface {
251
272
  meetingId?: string;
252
273
  bookingUrl?: string;
253
274
  }
275
+ export interface HostCancelBatchMeetingRequestInterface {
276
+ id?: string;
277
+ cancellationReason?: string;
278
+ }
254
279
  export interface HostDeleteAttendeesRequestInterface {
255
280
  meetingId?: string;
256
281
  emailsToDelete?: EmailsToDeleteInterface[];
@@ -272,12 +297,27 @@ export interface HostGetMeetingTypeRequestInterface {
272
297
  export interface HostGetMeetingTypeResponseInterface {
273
298
  meetingType?: MeetingTypeInterface;
274
299
  }
300
+ export interface HostListBatchAvailableTimeSlotsRequestInterface {
301
+ hostId?: string;
302
+ targets?: BatchEventTypeTargetInterface[];
303
+ timeSpan?: DateRangeInterface;
304
+ timeZone?: TimeZoneInterface;
305
+ }
306
+ export interface HostListBatchAvailableTimeSlotsResponseInterface {
307
+ isoTimeSlots?: IsoDateTimeRangeInterface[];
308
+ }
275
309
  export interface HostListMeetingTypesRequestInterface {
276
310
  hostId?: string;
277
311
  }
278
312
  export interface HostListMeetingTypesResponseInterface {
279
313
  meetingTypes?: MeetingTypeInterface[];
280
314
  }
315
+ export interface HostRescheduleBatchMeetingRequestInterface {
316
+ id?: string;
317
+ start?: Date;
318
+ location?: string;
319
+ timeZone?: TimeZoneInterface;
320
+ }
281
321
  export interface GetHostsForCalendarResponseHostUserAvailabilityRuleEntryInterface {
282
322
  key?: string;
283
323
  value?: AvailabilityRuleListInterface;
@@ -344,6 +384,15 @@ export interface ListBookedMeetingsResponseInterface {
344
384
  meetings?: MeetingInterface[];
345
385
  pagingMetadata?: PagedResponseMetadataInterface;
346
386
  }
387
+ export interface ListBookedMeetingsV2RequestInterface {
388
+ filters?: ListBookedMeetingsRequestFiltersInterface;
389
+ pagingOptions?: PagedRequestOptionsInterface;
390
+ timeZone?: TimeZoneInterface;
391
+ }
392
+ export interface ListBookedMeetingsV2ResponseInterface {
393
+ bookings?: BookedMeetingV2Interface[];
394
+ pagingMetadata?: PagedResponseMetadataInterface;
395
+ }
347
396
  export interface ListBookingTypesForAIRequestInterface {
348
397
  userId?: string;
349
398
  namespace?: string;
@@ -404,6 +453,10 @@ export interface UpdateMeetingMetadataRequestMetadataEntryInterface {
404
453
  key?: string;
405
454
  value?: string;
406
455
  }
456
+ export interface HostBookBatchMeetingRequestMetadataEntryInterface {
457
+ key?: string;
458
+ value?: string;
459
+ }
407
460
  export interface MeetingMetadataEntryInterface {
408
461
  key?: string;
409
462
  value?: string;
@@ -27,6 +27,16 @@ export interface AttendeeInterface {
27
27
  isPrimary?: boolean;
28
28
  contactId?: string;
29
29
  }
30
+ export interface BatchBookingTargetInterface {
31
+ eventTypeId?: string;
32
+ userId?: string;
33
+ order?: number;
34
+ }
35
+ export interface BatchEventTypeTargetInterface {
36
+ eventTypeId?: string;
37
+ userId?: string;
38
+ order?: number;
39
+ }
30
40
  export interface CalendarInterface {
31
41
  id?: string;
32
42
  displayName?: string;
@@ -44,6 +54,11 @@ export interface CalendarInterface {
44
54
  encodedApplicationContext?: string;
45
55
  businessName?: string;
46
56
  }
57
+ export interface CalendarMemberInterface {
58
+ hostUserId?: string;
59
+ color?: string;
60
+ selected?: boolean;
61
+ }
47
62
  export interface ContactInterface {
48
63
  firstName?: string;
49
64
  lastName?: string;
@@ -100,6 +115,8 @@ export interface PreferencesInterface {
100
115
  bufferDurationBeforeMeeting?: number;
101
116
  calendarIntegration?: e.CalendarSource;
102
117
  onBoardingState?: e.OnBoardingState;
118
+ calendarMembers?: CalendarMemberInterface[];
119
+ defaultCalendarView?: e.CalendarView;
103
120
  }
104
121
  export interface TimeRangeInterface {
105
122
  from?: TimeOfDayInterface;
@@ -1,5 +1,5 @@
1
- import { BookMeetingRequest, BookMeetingResponse, BuildHostIdRequest, BuildHostIdResponse, CalendarMigrationResponse, CancelMeetingRequest, CheckEventTypeSlugExistRequest, CheckEventTypeSlugExistResponse, 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, GetEventTypeByIdRequest, GetEventTypeByIdResponse, 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, ListBookingTypesForAIRequest, ListBookingTypesForAIResponse, ListEventTypesForMultipleCalendarsRequest, ListEventTypesForMultipleCalendarsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest } from './objects/';
2
- import { BookMeetingRequestInterface, BuildHostIdRequestInterface, CancelMeetingRequestInterface, CheckEventTypeSlugExistRequestInterface, CheckGroupOrServiceSlugExistRequestInterface, CreateAvailabilityRequestInterface, CreateCalendarRequestInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateMeetingTypeRequestInterface, CreateServiceRequestInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, EnsureGroupCalendarsExistRequestInterface, EnsurePersonalCalendarExistsRequestInterface, EnsureSessionEventCalendarsExistRequestInterface, GetEntityAssociationRequestInterface, GetEventTypeByIdRequestInterface, GetGroupRequestInterface, GetHostMeetingRequestInterface, GetHostPreferencesRequestInterface, GetHostsForCalendarRequestInterface, GetMeetingTypesForCalendarsRequestInterface, GetServiceRequestInterface, HostBookMeetingRequestInterface, HostBookSessionRequestInterface, HostDeleteAttendeesRequestInterface, HostGetCalendarRequestInterface, HostGetMeetingTypeRequestInterface, HostListMeetingTypesRequestInterface, IsCalendarConfiguredRequestInterface, IsHostConfiguredRequestInterface, ListAttendeesRequestInterface, ListAvailabilityRequestInterface, ListAvailableTimeslotsForRecurringSessionRequestInterface, ListAvailableTimeslotsForSessionRequestInterface, ListBookedMeetingsRequestInterface, ListBookingTypesForAIRequestInterface, ListEventTypesForMultipleCalendarsRequestInterface, ListGroupsRequestInterface, ListServicesRequestInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface } from './interfaces/';
1
+ import { BookMeetingRequest, BookMeetingResponse, BuildHostIdRequest, BuildHostIdResponse, CalendarMigrationResponse, CancelMeetingRequest, CheckEventTypeSlugExistRequest, CheckEventTypeSlugExistResponse, 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, GetEventTypeByIdRequest, GetEventTypeByIdResponse, GetGroupRequest, GetGroupResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, GetServiceRequest, GetServiceResponse, HostBookBatchMeetingRequest, HostBookBatchMeetingResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostBookSessionRequest, HostBookSessionResponse, HostCancelBatchMeetingRequest, HostDeleteAttendeesRequest, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListBatchAvailableTimeSlotsRequest, HostListBatchAvailableTimeSlotsResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, HostRescheduleBatchMeetingRequest, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAttendeesRequest, ListAttendeesResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListAvailableTimeslotsForRecurringSessionRequest, ListAvailableTimeslotsForRecurringSessionResponse, ListAvailableTimeslotsForSessionRequest, ListAvailableTimeslotsForSessionResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListBookedMeetingsV2Request, ListBookedMeetingsV2Response, ListBookingTypesForAIRequest, ListBookingTypesForAIResponse, ListEventTypesForMultipleCalendarsRequest, ListEventTypesForMultipleCalendarsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest } from './objects/';
2
+ import { BookMeetingRequestInterface, BuildHostIdRequestInterface, CancelMeetingRequestInterface, CheckEventTypeSlugExistRequestInterface, CheckGroupOrServiceSlugExistRequestInterface, CreateAvailabilityRequestInterface, CreateCalendarRequestInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateMeetingTypeRequestInterface, CreateServiceRequestInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, EnsureGroupCalendarsExistRequestInterface, EnsurePersonalCalendarExistsRequestInterface, EnsureSessionEventCalendarsExistRequestInterface, GetEntityAssociationRequestInterface, GetEventTypeByIdRequestInterface, GetGroupRequestInterface, GetHostMeetingRequestInterface, GetHostPreferencesRequestInterface, GetHostsForCalendarRequestInterface, GetMeetingTypesForCalendarsRequestInterface, GetServiceRequestInterface, HostBookBatchMeetingRequestInterface, HostBookMeetingRequestInterface, HostBookSessionRequestInterface, HostCancelBatchMeetingRequestInterface, HostDeleteAttendeesRequestInterface, HostGetCalendarRequestInterface, HostGetMeetingTypeRequestInterface, HostListBatchAvailableTimeSlotsRequestInterface, HostListMeetingTypesRequestInterface, HostRescheduleBatchMeetingRequestInterface, IsCalendarConfiguredRequestInterface, IsHostConfiguredRequestInterface, ListAttendeesRequestInterface, ListAvailabilityRequestInterface, ListAvailableTimeslotsForRecurringSessionRequestInterface, ListAvailableTimeslotsForSessionRequestInterface, ListBookedMeetingsRequestInterface, ListBookedMeetingsV2RequestInterface, ListBookingTypesForAIRequestInterface, ListEventTypesForMultipleCalendarsRequestInterface, 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';
5
5
  import * as i0 from "@angular/core";
@@ -23,6 +23,7 @@ export declare class MeetingHostApiService {
23
23
  bookMeeting(r: HostBookMeetingRequest | HostBookMeetingRequestInterface): Observable<HostBookMeetingResponse>;
24
24
  getHostMeeting(r: GetHostMeetingRequest | GetHostMeetingRequestInterface): Observable<GetHostMeetingResponse>;
25
25
  listBookedMeetings(r: ListBookedMeetingsRequest | ListBookedMeetingsRequestInterface): Observable<ListBookedMeetingsResponse>;
26
+ listBookedMeetingsV2(r: ListBookedMeetingsV2Request | ListBookedMeetingsV2RequestInterface): Observable<ListBookedMeetingsV2Response>;
26
27
  cancelMeeting(r: CancelMeetingRequest | CancelMeetingRequestInterface): Observable<HttpResponse<null>>;
27
28
  rescheduleMeeting(r: RescheduleMeetingRequest | RescheduleMeetingRequestInterface): Observable<HttpResponse<null>>;
28
29
  updateMeetingMetadata(r: UpdateMeetingMetadataRequest | UpdateMeetingMetadataRequestInterface): Observable<HttpResponse<null>>;
@@ -33,6 +34,10 @@ export declare class MeetingHostApiService {
33
34
  isHostConfigured(r: IsHostConfiguredRequest | IsHostConfiguredRequestInterface): Observable<IsHostConfiguredResponse>;
34
35
  getHostPreferences(r: GetHostPreferencesRequest | GetHostPreferencesRequestInterface): Observable<GetHostPreferencesResponse>;
35
36
  updateHostPreferences(r: UpdateHostPreferencesRequest | UpdateHostPreferencesRequestInterface): Observable<HttpResponse<null>>;
37
+ hostBookBatchMeeting(r: HostBookBatchMeetingRequest | HostBookBatchMeetingRequestInterface): Observable<HostBookBatchMeetingResponse>;
38
+ hostRescheduleBatchMeeting(r: HostRescheduleBatchMeetingRequest | HostRescheduleBatchMeetingRequestInterface): Observable<HttpResponse<null>>;
39
+ hostCancelBatchMeeting(r: HostCancelBatchMeetingRequest | HostCancelBatchMeetingRequestInterface): Observable<HttpResponse<null>>;
40
+ hostListBatchAvailableTimeSlots(r: HostListBatchAvailableTimeSlotsRequest | HostListBatchAvailableTimeSlotsRequestInterface): Observable<HostListBatchAvailableTimeSlotsResponse>;
36
41
  getMeetingType(r: HostGetMeetingTypeRequest | HostGetMeetingTypeRequestInterface): Observable<HostGetMeetingTypeResponse>;
37
42
  listMeetingTypes(r: HostListMeetingTypesRequest | HostListMeetingTypesRequestInterface): Observable<HostListMeetingTypesResponse>;
38
43
  createMeetingType(r: CreateMeetingTypeRequest | CreateMeetingTypeRequestInterface): Observable<CreateMeetingTypeResponse>;
@@ -1,4 +1,4 @@
1
- import * as i from '../interfaces/annotations.interface';
1
+ import * as i from '../interfaces';
2
2
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
3
3
  export declare class Access implements i.AccessInterface {
4
4
  scope: string[];
@@ -9,6 +9,8 @@ export declare class Access implements i.AccessInterface {
9
9
  }
10
10
  export declare class MCPOptions implements i.MCPOptionsInterface {
11
11
  serverId: string[];
12
+ toolId: string;
13
+ requiredFields: string[];
12
14
  static fromProto(proto: any): MCPOptions;
13
15
  constructor(kwargs?: i.MCPOptionsInterface);
14
16
  toApiJson(): object;
@@ -1,4 +1,4 @@
1
- import * as i from '../interfaces/date-range.interface';
1
+ import * as i from '../interfaces';
2
2
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
3
3
  export declare class DateRange implements i.DateRangeInterface {
4
4
  start: Date;
@@ -1,4 +1,4 @@
1
- import * as i from '../interfaces/field-mask.interface';
1
+ import * as i from '../interfaces';
2
2
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
3
3
  export declare class FieldMask implements i.FieldMaskInterface {
4
4
  paths: string[];
@@ -1,14 +1,14 @@
1
1
  export { MeetingSourceInfo, MeetingSourceListRequest, MeetingSourceListResponse, MeetingSourceQuery, } from './meeting-source';
2
2
  export { CreateZoomMeetingRequest, CreateZoomMeetingResponse, ZoomMeetingRecurrence, ZoomMeetingSettings, ZoomMeetingTrackingField, ZoomOccurrence, } from './zoom';
3
3
  export { GoogleMeetConferenceData, GoogleMeetConferenceRequestStatus, GoogleMeetConferenceSolution, GoogleMeetConferenceSolutionKey, GoogleMeetCreateConferenceRequest, GoogleMeetCreateMeetingRequest, GoogleMeetCreateMeetingResponse, GoogleMeetEntryPoint, GoogleMeetListMeetingsRequest, GoogleMeetListMeetingsResponse, GoogleMeetMeeting, GoogleMeetMeetingAttendee, GoogleMeetMeetingCreator, GoogleMeetMeetingDateTime, GoogleMeetMeetingOrganizer, GoogleMeetMeetingReminder, GoogleMeetMeetingReminders, } from './google-meet';
4
- export { Answer, Answers, CalendarApplicationContextEntry, Attachment, Attendee, Calendar, Contact, EmailsToDelete, Host, HostOrderDetails, HostUser, IsoDateTimeRange, PagedRequestOptions, PagedResponseMetadata, PhoneFields, Preferences, TimeRange, } from './shared';
4
+ export { Answer, Answers, CalendarApplicationContextEntry, Attachment, Attendee, BatchBookingTarget, BatchEventTypeTarget, Calendar, CalendarMember, Contact, EmailsToDelete, Host, HostOrderDetails, HostUser, IsoDateTimeRange, PagedRequestOptions, PagedResponseMetadata, PhoneFields, Preferences, TimeRange, } from './shared';
5
5
  export { DateRange, } from './date-range';
6
6
  export { BookingEventForAI, EventTypeDateRange, Field, Form, MeetingType, RegistrationCutOff, RelativeDateRange, } from './meeting-type';
7
7
  export { EventGroupAndServiceAssociations, Group, Service, } from './groups-and-services';
8
- export { BatchBookingTarget, BatchEventTypeTarget, BookBatchMeetingRequest, BookBatchMeetingResponse, BookMeetingRequest, BookMeetingResponse, CancelBatchMeetingRequest, CheckFeatureFlagRequest, CheckFeatureFlagResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingCalendarInfoRequest, GetMeetingCalendarInfoResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GetServiceRequest, GetServiceResponse, GetServiceV2Request, GetServiceV2Response, GetSessionInviteeMeetingInfoRequest, GetSessionInviteeMeetingInfoResponse, GetSessionMeetingRequest, GetSessionMeetingResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingRequestV2, GuestGetBookedMeetingResponse, GuestGetBookedMeetingResponseV2, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, InviteeDeregisterSessionMeetingRequest, InviteeRegisterSessionMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListBatchAvailableTimeSlotsRequest, ListBatchAvailableTimeSlotsResponse, ListGuestBookedMeetingsRequest, ListGuestBookedMeetingsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, MeetingDetail, MeetingSummary, BookBatchMeetingRequestMetadataEntry, BookMeetingRequestMetadataEntry, RegisterSessionRequest, RescheduleBatchMeetingRequest, ServiceEventType, ServiceGroup, } from './meeting-guest';
8
+ export { BookBatchMeetingRequest, BookBatchMeetingResponse, BookMeetingRequest, BookMeetingResponse, CancelBatchMeetingRequest, CheckFeatureFlagRequest, CheckFeatureFlagResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingCalendarInfoRequest, GetMeetingCalendarInfoResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GetServiceRequest, GetServiceResponse, GetServiceV2Request, GetServiceV2Response, GetSessionInviteeMeetingInfoRequest, GetSessionInviteeMeetingInfoResponse, GetSessionMeetingRequest, GetSessionMeetingResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingRequestV2, GuestGetBookedMeetingResponse, GuestGetBookedMeetingResponseV2, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, InviteeDeregisterSessionMeetingRequest, InviteeRegisterSessionMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListBatchAvailableTimeSlotsRequest, ListBatchAvailableTimeSlotsResponse, ListGuestBookedMeetingsRequest, ListGuestBookedMeetingsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, MeetingDetail, MeetingSummary, BookMeetingRequestMetadataEntry, BookBatchMeetingRequestMetadataEntry, RegisterSessionRequest, RescheduleBatchMeetingRequest, ServiceEventType, ServiceGroup, } from './meeting-guest';
9
9
  export { AvailableTimeSlotsRequest, AvailableTimeSlotsResponse, BookMeetingExternalRequest, BookMeetingExternalResponse, EventType, ExternalCancelMeetingRequest, ExternalRescheduleMeetingRequest, ExternalRescheduleMeetingResponse, GetUsersRequest, GetUsersResponse, GroupResponse, GroupsRequest, GroupsResponse, HostUserDetails, ListTeamEventTypesRequest, ListTeamEventTypesResponse, ListUserEventTypesRequest, ListUserEventTypesResponse, ServiceResponse, ServicesRequest, ServicesResponse, UserResponse, } from './meeting-external';
10
10
  export { FieldMask, } from './field-mask';
11
- export { IsCalendarConfiguredRequestApplicationContextPropertiesEntry, BuildHostIdRequestApplicationContextPropertiesEntry, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, AvailabilityRule, AvailabilityRuleList, BuildHostIdRequest, BuildHostIdResponse, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntry, CalendarMigrationResponse, CancelMeetingRequest, CheckEventTypeSlugExistRequest, CheckEventTypeSlugExistResponse, 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, EventTypeSummary, ListAvailabilityRequestFilters, ListBookedMeetingsRequestFilters, GetEntityAssociationRequest, GetEntityAssociationResponse, GetEventTypeByIdRequest, GetEventTypeByIdResponse, 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, ListBookingTypesForAIRequest, ListBookingTypesForAIResponse, ListEventTypesForMultipleCalendarsRequest, ListEventTypesForMultipleCalendarsResponse, 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 { IsCalendarConfiguredRequestApplicationContextPropertiesEntry, BuildHostIdRequestApplicationContextPropertiesEntry, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, AvailabilityRule, AvailabilityRuleList, BookedMeetingV2, BuildHostIdRequest, BuildHostIdResponse, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntry, CalendarMigrationResponse, CancelMeetingRequest, CheckEventTypeSlugExistRequest, CheckEventTypeSlugExistResponse, 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, EventTypeSummary, ListAvailabilityRequestFilters, ListBookedMeetingsRequestFilters, GetEntityAssociationRequest, GetEntityAssociationResponse, GetEventTypeByIdRequest, GetEventTypeByIdResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, HostBookBatchMeetingRequest, HostBookBatchMeetingResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostBookSessionRequest, HostBookSessionResponse, HostCancelBatchMeetingRequest, HostDeleteAttendeesRequest, HostDetails, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListBatchAvailableTimeSlotsRequest, HostListBatchAvailableTimeSlotsResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, HostRescheduleBatchMeetingRequest, GetHostsForCalendarResponseHostUserAvailabilityRuleEntry, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAttendeesRequest, ListAttendeesResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListAvailableTimeslotsForRecurringSessionRequest, ListAvailableTimeslotsForRecurringSessionResponse, ListAvailableTimeslotsForSessionRequest, ListAvailableTimeslotsForSessionResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListBookedMeetingsV2Request, ListBookedMeetingsV2Response, ListBookingTypesForAIRequest, ListBookingTypesForAIResponse, ListEventTypesForMultipleCalendarsRequest, ListEventTypesForMultipleCalendarsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, Meeting, MeetingTypeList, UpdateMeetingMetadataRequestMetadataEntry, HostBookBatchMeetingRequestMetadataEntry, MeetingMetadataEntry, RecurrenceConfig, RecurrenceEnd, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SessionAttendees, SetGeneralAvailabilityRequest, TimeSlotsByWeekDay, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
12
12
  export { Access, MCPOptions, } from './annotations';
13
13
  export { EnumSchema, ResponseExamplesEntry, ResponseExtensionsEntry, SwaggerExtensionsEntry, SecuritySchemeExtensionsEntry, TagExtensionsEntry, OperationExtensionsEntry, JSONSchemaExtensionsEntry, EnumSchemaExtensionsEntry, InfoExtensionsEntry, ExternalDocumentation, JSONSchemaFieldConfiguration, Header, HeaderParameter, ResponseHeadersEntry, Info, JSONSchema, License, Operation, Parameters, Response, OperationResponsesEntry, SwaggerResponsesEntry, Schema, ScopesScopeEntry, Scopes, SecurityDefinitions, SecurityDefinitionsSecurityEntry, SecurityRequirement, SecurityRequirementSecurityRequirementEntry, SecurityRequirementSecurityRequirementValue, SecurityScheme, Swagger, Tag, } from './openapiv2';
14
14
  export { TimeOfDay, } from './timeofday';
@@ -1,9 +1,9 @@
1
- import * as i from '../interfaces/meeting-external.interface';
2
- import { TimeZone } from './';
1
+ import * as i from '../interfaces';
3
2
  import { Contact } from './openapiv2';
4
3
  import { DateRange } from './date-range';
5
4
  import { EventTypeDateRange } from './meeting-type';
6
5
  import { IsoDateTimeRange, Answers, HostOrderDetails } from './shared';
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 AvailableTimeSlotsRequest implements i.AvailableTimeSlotsRequestInterface {
@@ -1,28 +1,12 @@
1
- import * as i from '../interfaces/meeting-guest.interface';
2
- import { TimeZone } from './';
3
- import { Answers, Calendar, Host, HostUser, IsoDateTimeRange, PhoneFields } from './shared';
1
+ import * as i from '../interfaces';
2
+ import { BatchBookingTarget, Answers, Calendar, Host, HostUser, IsoDateTimeRange, BatchEventTypeTarget, PhoneFields } from './shared';
4
3
  import { Contact } from './openapiv2';
5
4
  import { DateRange } from './date-range';
6
5
  import { Group, Service } from './groups-and-services';
7
6
  import { MeetingType, Form } from './meeting-type';
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 BatchBookingTarget implements i.BatchBookingTargetInterface {
11
- eventTypeId: string;
12
- userId: string;
13
- order: number;
14
- static fromProto(proto: any): BatchBookingTarget;
15
- constructor(kwargs?: i.BatchBookingTargetInterface);
16
- toApiJson(): object;
17
- }
18
- export declare class BatchEventTypeTarget implements i.BatchEventTypeTargetInterface {
19
- eventTypeId: string;
20
- userId: string;
21
- order: number;
22
- static fromProto(proto: any): BatchEventTypeTarget;
23
- constructor(kwargs?: i.BatchEventTypeTargetInterface);
24
- toApiJson(): object;
25
- }
26
10
  export declare class BookBatchMeetingRequest implements i.BookBatchMeetingRequestInterface {
27
11
  targets: BatchBookingTarget[];
28
12
  start: Date;
@@ -177,6 +161,7 @@ export declare class GetServiceResponse implements i.GetServiceResponseInterface
177
161
  }
178
162
  export declare class GetServiceV2Request implements i.GetServiceV2RequestInterface {
179
163
  serviceId: string;
164
+ bookingSource: e.BookingSource;
180
165
  static fromProto(proto: any): GetServiceV2Request;
181
166
  constructor(kwargs?: i.GetServiceV2RequestInterface);
182
167
  toApiJson(): object;
@@ -294,6 +279,7 @@ export declare class GuestGetBookedMeetingResponseV2 implements i.GuestGetBooked
294
279
  bookingGroupId: string;
295
280
  meetings: MeetingDetail[];
296
281
  primaryAttendeePhone: string;
282
+ isLocationEditable: boolean;
297
283
  static fromProto(proto: any): GuestGetBookedMeetingResponseV2;
298
284
  constructor(kwargs?: i.GuestGetBookedMeetingResponseV2Interface);
299
285
  toApiJson(): object;
@@ -421,6 +407,7 @@ export declare class MeetingDetail implements i.MeetingDetailInterface {
421
407
  eventTypeId: string;
422
408
  userId: string;
423
409
  locationGuideline: string;
410
+ inPersonLocationType: e.MeetingLocationType;
424
411
  static fromProto(proto: any): MeetingDetail;
425
412
  constructor(kwargs?: i.MeetingDetailInterface);
426
413
  toApiJson(): object;
@@ -437,18 +424,18 @@ export declare class MeetingSummary implements i.MeetingSummaryInterface {
437
424
  constructor(kwargs?: i.MeetingSummaryInterface);
438
425
  toApiJson(): object;
439
426
  }
440
- export declare class BookBatchMeetingRequestMetadataEntry implements i.BookBatchMeetingRequestMetadataEntryInterface {
427
+ export declare class BookMeetingRequestMetadataEntry implements i.BookMeetingRequestMetadataEntryInterface {
441
428
  key: string;
442
429
  value: string;
443
- static fromProto(proto: any): BookBatchMeetingRequestMetadataEntry;
444
- constructor(kwargs?: i.BookBatchMeetingRequestMetadataEntryInterface);
430
+ static fromProto(proto: any): BookMeetingRequestMetadataEntry;
431
+ constructor(kwargs?: i.BookMeetingRequestMetadataEntryInterface);
445
432
  toApiJson(): object;
446
433
  }
447
- export declare class BookMeetingRequestMetadataEntry implements i.BookMeetingRequestMetadataEntryInterface {
434
+ export declare class BookBatchMeetingRequestMetadataEntry implements i.BookBatchMeetingRequestMetadataEntryInterface {
448
435
  key: string;
449
436
  value: string;
450
- static fromProto(proto: any): BookMeetingRequestMetadataEntry;
451
- constructor(kwargs?: i.BookMeetingRequestMetadataEntryInterface);
437
+ static fromProto(proto: any): BookBatchMeetingRequestMetadataEntry;
438
+ constructor(kwargs?: i.BookBatchMeetingRequestMetadataEntryInterface);
452
439
  toApiJson(): object;
453
440
  }
454
441
  export declare class RegisterSessionRequest implements i.RegisterSessionRequestInterface {