@vendasta/meetings 1.7.4 → 1.7.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/esm2020/lib/_internal/enums/index.mjs +2 -2
  2. package/esm2020/lib/_internal/enums/meeting-type.enum.mjs +7 -1
  3. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  4. package/esm2020/lib/_internal/interfaces/meeting-external.interface.mjs +1 -1
  5. package/esm2020/lib/_internal/interfaces/meeting-guest.interface.mjs +1 -1
  6. package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
  7. package/esm2020/lib/_internal/interfaces/meeting-type.interface.mjs +1 -1
  8. package/esm2020/lib/_internal/interfaces/shared.interface.mjs +1 -1
  9. package/esm2020/lib/_internal/meeting-guest.api.service.mjs +5 -5
  10. package/esm2020/lib/_internal/meeting-host.api.service.mjs +7 -2
  11. package/esm2020/lib/_internal/objects/annotations.mjs +1 -1
  12. package/esm2020/lib/_internal/objects/date-range.mjs +1 -1
  13. package/esm2020/lib/_internal/objects/field-mask.mjs +1 -1
  14. package/esm2020/lib/_internal/objects/google-meet.mjs +1 -1
  15. package/esm2020/lib/_internal/objects/groups-and-services.mjs +1 -1
  16. package/esm2020/lib/_internal/objects/index.mjs +5 -5
  17. package/esm2020/lib/_internal/objects/meeting-external.mjs +2 -2
  18. package/esm2020/lib/_internal/objects/meeting-guest.mjs +53 -47
  19. package/esm2020/lib/_internal/objects/meeting-host.mjs +55 -3
  20. package/esm2020/lib/_internal/objects/meeting-source.mjs +1 -1
  21. package/esm2020/lib/_internal/objects/meeting-type.mjs +33 -1
  22. package/esm2020/lib/_internal/objects/openapiv2.mjs +1 -1
  23. package/esm2020/lib/_internal/objects/shared.mjs +1 -1
  24. package/esm2020/lib/_internal/objects/zoom.mjs +1 -1
  25. package/esm2020/lib/guest/guest.service.mjs +28 -2
  26. package/esm2020/lib/host/host.service.mjs +4 -1
  27. package/esm2020/lib/index.mjs +2 -2
  28. package/fesm2015/vendasta-meetings.mjs +179 -51
  29. package/fesm2015/vendasta-meetings.mjs.map +1 -1
  30. package/fesm2020/vendasta-meetings.mjs +181 -51
  31. package/fesm2020/vendasta-meetings.mjs.map +1 -1
  32. package/lib/_internal/enums/index.d.ts +1 -1
  33. package/lib/_internal/enums/meeting-type.enum.d.ts +5 -0
  34. package/lib/_internal/interfaces/index.d.ts +4 -4
  35. package/lib/_internal/interfaces/meeting-external.interface.d.ts +1 -1
  36. package/lib/_internal/interfaces/meeting-guest.interface.d.ts +13 -11
  37. package/lib/_internal/interfaces/meeting-host.interface.d.ts +10 -2
  38. package/lib/_internal/interfaces/meeting-type.interface.d.ts +6 -0
  39. package/lib/_internal/meeting-guest.api.service.d.ts +1 -1
  40. package/lib/_internal/meeting-host.api.service.d.ts +3 -2
  41. package/lib/_internal/objects/annotations.d.ts +1 -1
  42. package/lib/_internal/objects/date-range.d.ts +1 -1
  43. package/lib/_internal/objects/field-mask.d.ts +1 -1
  44. package/lib/_internal/objects/google-meet.d.ts +1 -1
  45. package/lib/_internal/objects/groups-and-services.d.ts +1 -1
  46. package/lib/_internal/objects/index.d.ts +4 -4
  47. package/lib/_internal/objects/meeting-external.d.ts +2 -2
  48. package/lib/_internal/objects/meeting-guest.d.ts +21 -19
  49. package/lib/_internal/objects/meeting-host.d.ts +17 -3
  50. package/lib/_internal/objects/meeting-source.d.ts +1 -1
  51. package/lib/_internal/objects/meeting-type.d.ts +10 -1
  52. package/lib/_internal/objects/openapiv2.d.ts +1 -1
  53. package/lib/_internal/objects/shared.d.ts +1 -1
  54. package/lib/_internal/objects/zoom.d.ts +1 -1
  55. package/lib/guest/guest.service.d.ts +34 -1
  56. package/lib/host/host.service.d.ts +7 -1
  57. package/lib/index.d.ts +2 -2
  58. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  export { CalendarSource, MeetingSource, MeetingSourceStatus, } from './meeting-source.enum';
2
2
  export { ZoomApprovalType, ZoomMeetingRecurrenceType, ZoomMeetingType, ZoomMonthlyWeek, ZoomMonthlyWeekDay, ZoomRegistrationType, ZoomWeeklyDay, } from './zoom.enum';
3
3
  export { CalendarType, FormFieldType, OnBoardingState, } from './shared.enum';
4
- export { BookingSource, DateRangeType, MeetingLocation, MeetingLocationType, NotificationType, RegistrationCutOffUnit, RelativeTimeUnit, TeamEventMeetingType, } from './meeting-type.enum';
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';
7
7
  export { SecuritySchemeFlow, SecuritySchemeIn, JSONSchemaJSONSchemaSimpleTypes, Scheme, HeaderParameterType, SecuritySchemeType, } from './openapiv2.enum';
@@ -1,3 +1,8 @@
1
+ export declare enum BookingEventType {
2
+ BOOKING_EVENT_TYPE_PERSONAL = 0,
3
+ BOOKING_EVENT_TYPE_TEAM = 1,
4
+ BOOKING_EVENT_TYPE_SERVICE_MENU = 2
5
+ }
1
6
  export declare enum BookingSource {
2
7
  BOOKING_SOURCE_UNKNOWN = 0,
3
8
  BOOKING_SOURCE_BOOKING_FORM = 1,
@@ -3,13 +3,13 @@ export { CreateZoomMeetingRequestInterface, CreateZoomMeetingResponseInterface,
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
4
  export { AnswerInterface, AnswersInterface, CalendarApplicationContextEntryInterface, AttachmentInterface, AttendeeInterface, CalendarInterface, ContactInterface, EmailsToDeleteInterface, HostInterface, HostOrderDetailsInterface, HostUserInterface, IsoDateTimeRangeInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, PhoneFieldsInterface, PreferencesInterface, TimeRangeInterface, } from './shared.interface';
5
5
  export { DateRangeInterface, } from './date-range.interface';
6
- export { EventTypeDateRangeInterface, FieldInterface, FormInterface, MeetingTypeInterface, RegistrationCutOffInterface, RelativeDateRangeInterface, } from './meeting-type.interface';
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, RescheduleBatchMeetingRequestInterface, InviteeDeregisterSessionMeetingRequestInterface, InviteeRegisterSessionMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListAvailableTimeSlotsResponseInterface, ListBatchAvailableTimeSlotsRequestInterface, ListBatchAvailableTimeSlotsResponseInterface, ListGuestBookedMeetingsRequestInterface, ListGuestBookedMeetingsResponseInterface, ListMeetingTypesRequestInterface, ListMeetingTypesResponseInterface, MeetingDetailInterface, MeetingSummaryInterface, BookMeetingRequestMetadataEntryInterface, BookBatchMeetingRequestMetadataEntryInterface, RegisterSessionRequestInterface, ServiceEventTypeInterface, ServiceGroupInterface, } from './meeting-guest.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';
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, 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, 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';
12
12
  export { AccessInterface, MCPOptionsInterface, } from './annotations.interface';
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';
13
+ export { EnumSchemaInterface, ResponseExamplesEntryInterface, InfoExtensionsEntryInterface, SwaggerExtensionsEntryInterface, SecuritySchemeExtensionsEntryInterface, TagExtensionsEntryInterface, OperationExtensionsEntryInterface, JSONSchemaExtensionsEntryInterface, EnumSchemaExtensionsEntryInterface, ResponseExtensionsEntryInterface, 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';
15
15
  export { DateTimeInterface, TimeZoneInterface, } from './datetime.interface';
@@ -1,8 +1,8 @@
1
+ import { TimeZoneInterface } from './';
1
2
  import { ContactInterface } from './openapiv2.interface';
2
3
  import { DateRangeInterface } from './date-range.interface';
3
4
  import { EventTypeDateRangeInterface } from './meeting-type.interface';
4
5
  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,9 +1,9 @@
1
+ import { TimeZoneInterface } from './';
1
2
  import { AnswersInterface, CalendarInterface, HostInterface, HostUserInterface, IsoDateTimeRangeInterface, PhoneFieldsInterface } from './shared.interface';
2
3
  import { ContactInterface } from './openapiv2.interface';
3
4
  import { DateRangeInterface } from './date-range.interface';
4
5
  import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
5
6
  import { MeetingTypeInterface, FormInterface } from './meeting-type.interface';
6
- import { TimeZoneInterface } from './';
7
7
  import * as e from '../enums';
8
8
  export interface BatchBookingTargetInterface {
9
9
  eventTypeId?: string;
@@ -57,12 +57,6 @@ export interface CancelBatchMeetingRequestInterface {
57
57
  id?: string;
58
58
  cancellationReason?: string;
59
59
  }
60
- export interface RescheduleBatchMeetingRequestInterface {
61
- id?: string;
62
- start?: Date;
63
- timeZone?: TimeZoneInterface;
64
- location?: string;
65
- }
66
60
  export interface CheckFeatureFlagRequestInterface {
67
61
  fieldType?: e.FeatureFlagFieldType;
68
62
  fieldValue?: string;
@@ -204,6 +198,7 @@ export interface GuestGetBookedMeetingResponseV2Interface {
204
198
  isCancelled?: boolean;
205
199
  bookingGroupId?: string;
206
200
  meetings?: MeetingDetailInterface[];
201
+ primaryAttendeePhone?: string;
207
202
  }
208
203
  export interface GuestIsHostConfiguredRequestInterface {
209
204
  hostId?: string;
@@ -282,12 +277,13 @@ export interface MeetingDetailInterface {
282
277
  rescheduleLink?: string;
283
278
  cancelLink?: string;
284
279
  timeZone?: TimeZoneInterface;
285
- businessLogo?: string;
286
- bookingUrl?: string;
287
280
  previousStartTime?: Date;
288
281
  previousEndTime?: Date;
289
282
  isCancelled?: boolean;
290
283
  order?: number;
284
+ eventTypeId?: string;
285
+ userId?: string;
286
+ locationGuideline?: string;
291
287
  }
292
288
  export interface MeetingSummaryInterface {
293
289
  id?: string;
@@ -298,11 +294,11 @@ export interface MeetingSummaryInterface {
298
294
  isoEndTime?: string;
299
295
  location?: string;
300
296
  }
301
- export interface BookMeetingRequestMetadataEntryInterface {
297
+ export interface BookBatchMeetingRequestMetadataEntryInterface {
302
298
  key?: string;
303
299
  value?: string;
304
300
  }
305
- export interface BookBatchMeetingRequestMetadataEntryInterface {
301
+ export interface BookMeetingRequestMetadataEntryInterface {
306
302
  key?: string;
307
303
  value?: string;
308
304
  }
@@ -313,6 +309,12 @@ export interface RegisterSessionRequestInterface {
313
309
  formAnswers?: AnswersInterface;
314
310
  recaptchaToken?: string;
315
311
  }
312
+ export interface RescheduleBatchMeetingRequestInterface {
313
+ id?: string;
314
+ start?: Date;
315
+ timeZone?: TimeZoneInterface;
316
+ location?: string;
317
+ }
316
318
  export interface ServiceEventTypeInterface {
317
319
  id?: string;
318
320
  name?: string;
@@ -1,10 +1,10 @@
1
+ import { TimeZoneInterface } from './';
1
2
  import { ContactInterface } from './shared.interface';
2
3
  import { DateRangeInterface } from './date-range.interface';
3
4
  import { FieldMaskInterface } from './field-mask.interface';
4
5
  import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
5
- import { MeetingTypeInterface, EventTypeDateRangeInterface, RegistrationCutOffInterface } from './meeting-type.interface';
6
+ import { MeetingTypeInterface, EventTypeDateRangeInterface, RegistrationCutOffInterface, BookingEventForAIInterface } from './meeting-type.interface';
6
7
  import { TimeRangeInterface, CalendarInterface, HostUserInterface, PreferencesInterface, EmailsToDeleteInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, IsoDateTimeRangeInterface, AttendeeInterface, AnswersInterface, AttachmentInterface } from './shared.interface';
7
- import { TimeZoneInterface } from './';
8
8
  import * as e from '../enums';
9
9
  export interface IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
10
10
  key?: string;
@@ -344,6 +344,14 @@ export interface ListBookedMeetingsResponseInterface {
344
344
  meetings?: MeetingInterface[];
345
345
  pagingMetadata?: PagedResponseMetadataInterface;
346
346
  }
347
+ export interface ListBookingTypesForAIRequestInterface {
348
+ userId?: string;
349
+ namespace?: string;
350
+ bookingSource?: e.BookingSource;
351
+ }
352
+ export interface ListBookingTypesForAIResponseInterface {
353
+ bookingEvents?: BookingEventForAIInterface[];
354
+ }
347
355
  export interface ListEventTypesForMultipleCalendarsRequestInterface {
348
356
  calendarIds?: string[];
349
357
  }
@@ -1,6 +1,12 @@
1
1
  import { DateRangeInterface } from './date-range.interface';
2
2
  import { HostUserInterface, HostOrderDetailsInterface } from './shared.interface';
3
3
  import * as e from '../enums';
4
+ export interface BookingEventForAIInterface {
5
+ id?: string;
6
+ name?: string;
7
+ calendarId?: string;
8
+ type?: e.BookingEventType;
9
+ }
4
10
  export interface EventTypeDateRangeInterface {
5
11
  dateRangeType?: e.DateRangeType;
6
12
  customDateRange?: DateRangeInterface;
@@ -29,8 +29,8 @@ export declare class MeetingGuestApiService {
29
29
  checkFeatureFlag(r: CheckFeatureFlagRequest | CheckFeatureFlagRequestInterface): Observable<CheckFeatureFlagResponse>;
30
30
  listBatchAvailableTimeSlots(r: ListBatchAvailableTimeSlotsRequest | ListBatchAvailableTimeSlotsRequestInterface): Observable<ListBatchAvailableTimeSlotsResponse>;
31
31
  bookBatchMeeting(r: BookBatchMeetingRequest | BookBatchMeetingRequestInterface): Observable<BookBatchMeetingResponse>;
32
- cancelBatchMeeting(r: CancelBatchMeetingRequest | CancelBatchMeetingRequestInterface): Observable<HttpResponse<null>>;
33
32
  rescheduleBatchMeeting(r: RescheduleBatchMeetingRequest | RescheduleBatchMeetingRequestInterface): Observable<HttpResponse<null>>;
33
+ cancelBatchMeeting(r: CancelBatchMeetingRequest | CancelBatchMeetingRequestInterface): Observable<HttpResponse<null>>;
34
34
  getServiceV2(r: GetServiceV2Request | GetServiceV2RequestInterface): Observable<GetServiceV2Response>;
35
35
  listGuestBookedMeetings(r: ListGuestBookedMeetingsRequest | ListGuestBookedMeetingsRequestInterface): Observable<ListGuestBookedMeetingsResponse>;
36
36
  static ɵfac: i0.ɵɵFactoryDeclaration<MeetingGuestApiService, never>;
@@ -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, 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, 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, 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/';
3
3
  import { HttpResponse } from '@angular/common/http';
4
4
  import { Observable } from 'rxjs';
5
5
  import * as i0 from "@angular/core";
@@ -64,6 +64,7 @@ export declare class MeetingHostApiService {
64
64
  listAvailableTimeslotsForSession(r: ListAvailableTimeslotsForSessionRequest | ListAvailableTimeslotsForSessionRequestInterface): Observable<ListAvailableTimeslotsForSessionResponse>;
65
65
  listAvailableTimeslotsForRecurringSession(r: ListAvailableTimeslotsForRecurringSessionRequest | ListAvailableTimeslotsForRecurringSessionRequestInterface): Observable<ListAvailableTimeslotsForRecurringSessionResponse>;
66
66
  getEventTypeById(r: GetEventTypeByIdRequest | GetEventTypeByIdRequestInterface): Observable<GetEventTypeByIdResponse>;
67
+ listBookingTypesForAi(r: ListBookingTypesForAIRequest | ListBookingTypesForAIRequestInterface): Observable<ListBookingTypesForAIResponse>;
67
68
  static ɵfac: i0.ɵɵFactoryDeclaration<MeetingHostApiService, never>;
68
69
  static ɵprov: i0.ɵɵInjectableDeclaration<MeetingHostApiService>;
69
70
  }
@@ -1,4 +1,4 @@
1
- import * as i from '../interfaces';
1
+ import * as i from '../interfaces/annotations.interface';
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[];
@@ -1,4 +1,4 @@
1
- import * as i from '../interfaces';
1
+ import * as i from '../interfaces/date-range.interface';
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';
1
+ import * as i from '../interfaces/field-mask.interface';
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,4 +1,4 @@
1
- import * as i from '../interfaces';
1
+ import * as i from '../interfaces/google-meet.interface';
2
2
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
3
3
  export declare class GoogleMeetConferenceData implements i.GoogleMeetConferenceDataInterface {
4
4
  conferenceId: string;
@@ -1,4 +1,4 @@
1
- import * as i from '../interfaces';
1
+ import * as i from '../interfaces/groups-and-services.interface';
2
2
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
3
3
  export declare class EventGroupAndServiceAssociations implements i.EventGroupAndServiceAssociationsInterface {
4
4
  id: string;
@@ -3,13 +3,13 @@ export { CreateZoomMeetingRequest, CreateZoomMeetingResponse, ZoomMeetingRecurre
3
3
  export { GoogleMeetConferenceData, GoogleMeetConferenceRequestStatus, GoogleMeetConferenceSolution, GoogleMeetConferenceSolutionKey, GoogleMeetCreateConferenceRequest, GoogleMeetCreateMeetingRequest, GoogleMeetCreateMeetingResponse, GoogleMeetEntryPoint, GoogleMeetListMeetingsRequest, GoogleMeetListMeetingsResponse, GoogleMeetMeeting, GoogleMeetMeetingAttendee, GoogleMeetMeetingCreator, GoogleMeetMeetingDateTime, GoogleMeetMeetingOrganizer, GoogleMeetMeetingReminder, GoogleMeetMeetingReminders, } from './google-meet';
4
4
  export { Answer, Answers, CalendarApplicationContextEntry, Attachment, Attendee, Calendar, Contact, EmailsToDelete, Host, HostOrderDetails, HostUser, IsoDateTimeRange, PagedRequestOptions, PagedResponseMetadata, PhoneFields, Preferences, TimeRange, } from './shared';
5
5
  export { DateRange, } from './date-range';
6
- export { EventTypeDateRange, Field, Form, MeetingType, RegistrationCutOff, RelativeDateRange, } from './meeting-type';
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, RescheduleBatchMeetingRequest, InviteeDeregisterSessionMeetingRequest, InviteeRegisterSessionMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListBatchAvailableTimeSlotsRequest, ListBatchAvailableTimeSlotsResponse, ListGuestBookedMeetingsRequest, ListGuestBookedMeetingsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, MeetingDetail, MeetingSummary, BookMeetingRequestMetadataEntry, BookBatchMeetingRequestMetadataEntry, RegisterSessionRequest, ServiceEventType, ServiceGroup, } from './meeting-guest';
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';
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, 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, 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';
12
12
  export { Access, MCPOptions, } from './annotations';
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';
13
+ export { EnumSchema, ResponseExamplesEntry, InfoExtensionsEntry, SwaggerExtensionsEntry, SecuritySchemeExtensionsEntry, TagExtensionsEntry, OperationExtensionsEntry, JSONSchemaExtensionsEntry, EnumSchemaExtensionsEntry, ResponseExtensionsEntry, 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';
15
15
  export { DateTime, TimeZone, } from './datetime';
@@ -1,9 +1,9 @@
1
- import * as i from '../interfaces';
1
+ import * as i from '../interfaces/meeting-external.interface';
2
+ import { TimeZone } from './';
2
3
  import { Contact } from './openapiv2';
3
4
  import { DateRange } from './date-range';
4
5
  import { EventTypeDateRange } from './meeting-type';
5
6
  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,10 +1,10 @@
1
- import * as i from '../interfaces';
1
+ import * as i from '../interfaces/meeting-guest.interface';
2
+ import { TimeZone } from './';
2
3
  import { Answers, Calendar, Host, HostUser, IsoDateTimeRange, PhoneFields } from './shared';
3
4
  import { Contact } from './openapiv2';
4
5
  import { DateRange } from './date-range';
5
6
  import { Group, Service } from './groups-and-services';
6
7
  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
10
  export declare class BatchBookingTarget implements i.BatchBookingTargetInterface {
@@ -80,15 +80,6 @@ export declare class CancelBatchMeetingRequest implements i.CancelBatchMeetingRe
80
80
  constructor(kwargs?: i.CancelBatchMeetingRequestInterface);
81
81
  toApiJson(): object;
82
82
  }
83
- export declare class RescheduleBatchMeetingRequest implements i.RescheduleBatchMeetingRequestInterface {
84
- id: string;
85
- start: Date;
86
- timeZone: TimeZone;
87
- location: string;
88
- static fromProto(proto: any): RescheduleBatchMeetingRequest;
89
- constructor(kwargs?: i.RescheduleBatchMeetingRequestInterface);
90
- toApiJson(): object;
91
- }
92
83
  export declare class CheckFeatureFlagRequest implements i.CheckFeatureFlagRequestInterface {
93
84
  fieldType: e.FeatureFlagFieldType;
94
85
  fieldValue: string;
@@ -302,6 +293,7 @@ export declare class GuestGetBookedMeetingResponseV2 implements i.GuestGetBooked
302
293
  isCancelled: boolean;
303
294
  bookingGroupId: string;
304
295
  meetings: MeetingDetail[];
296
+ primaryAttendeePhone: string;
305
297
  static fromProto(proto: any): GuestGetBookedMeetingResponseV2;
306
298
  constructor(kwargs?: i.GuestGetBookedMeetingResponseV2Interface);
307
299
  toApiJson(): object;
@@ -422,12 +414,13 @@ export declare class MeetingDetail implements i.MeetingDetailInterface {
422
414
  rescheduleLink: string;
423
415
  cancelLink: string;
424
416
  timeZone: TimeZone;
425
- businessLogo: string;
426
- bookingUrl: string;
427
417
  previousStartTime: Date;
428
418
  previousEndTime: Date;
429
419
  isCancelled: boolean;
430
420
  order: number;
421
+ eventTypeId: string;
422
+ userId: string;
423
+ locationGuideline: string;
431
424
  static fromProto(proto: any): MeetingDetail;
432
425
  constructor(kwargs?: i.MeetingDetailInterface);
433
426
  toApiJson(): object;
@@ -444,18 +437,18 @@ export declare class MeetingSummary implements i.MeetingSummaryInterface {
444
437
  constructor(kwargs?: i.MeetingSummaryInterface);
445
438
  toApiJson(): object;
446
439
  }
447
- export declare class BookMeetingRequestMetadataEntry implements i.BookMeetingRequestMetadataEntryInterface {
440
+ export declare class BookBatchMeetingRequestMetadataEntry implements i.BookBatchMeetingRequestMetadataEntryInterface {
448
441
  key: string;
449
442
  value: string;
450
- static fromProto(proto: any): BookMeetingRequestMetadataEntry;
451
- constructor(kwargs?: i.BookMeetingRequestMetadataEntryInterface);
443
+ static fromProto(proto: any): BookBatchMeetingRequestMetadataEntry;
444
+ constructor(kwargs?: i.BookBatchMeetingRequestMetadataEntryInterface);
452
445
  toApiJson(): object;
453
446
  }
454
- export declare class BookBatchMeetingRequestMetadataEntry implements i.BookBatchMeetingRequestMetadataEntryInterface {
447
+ export declare class BookMeetingRequestMetadataEntry implements i.BookMeetingRequestMetadataEntryInterface {
455
448
  key: string;
456
449
  value: string;
457
- static fromProto(proto: any): BookBatchMeetingRequestMetadataEntry;
458
- constructor(kwargs?: i.BookBatchMeetingRequestMetadataEntryInterface);
450
+ static fromProto(proto: any): BookMeetingRequestMetadataEntry;
451
+ constructor(kwargs?: i.BookMeetingRequestMetadataEntryInterface);
459
452
  toApiJson(): object;
460
453
  }
461
454
  export declare class RegisterSessionRequest implements i.RegisterSessionRequestInterface {
@@ -468,6 +461,15 @@ export declare class RegisterSessionRequest implements i.RegisterSessionRequestI
468
461
  constructor(kwargs?: i.RegisterSessionRequestInterface);
469
462
  toApiJson(): object;
470
463
  }
464
+ export declare class RescheduleBatchMeetingRequest implements i.RescheduleBatchMeetingRequestInterface {
465
+ id: string;
466
+ start: Date;
467
+ timeZone: TimeZone;
468
+ location: string;
469
+ static fromProto(proto: any): RescheduleBatchMeetingRequest;
470
+ constructor(kwargs?: i.RescheduleBatchMeetingRequestInterface);
471
+ toApiJson(): object;
472
+ }
471
473
  export declare class ServiceEventType implements i.ServiceEventTypeInterface {
472
474
  id: string;
473
475
  name: string;
@@ -1,11 +1,11 @@
1
- import * as i from '../interfaces';
1
+ import * as i from '../interfaces/meeting-host.interface';
2
+ import { TimeZone } from './';
2
3
  import { Contact } from './shared';
3
4
  import { DateRange } from './date-range';
4
5
  import { FieldMask } from './field-mask';
5
6
  import { Group, Service } from './groups-and-services';
6
- import { MeetingType, EventTypeDateRange, RegistrationCutOff } from './meeting-type';
7
+ import { MeetingType, EventTypeDateRange, RegistrationCutOff, BookingEventForAI } from './meeting-type';
7
8
  import { TimeRange, Calendar, HostUser, Preferences, EmailsToDelete, PagedRequestOptions, PagedResponseMetadata, IsoDateTimeRange, Attendee, Answers, Attachment } from './shared';
8
- import { TimeZone } from './';
9
9
  import * as e from '../enums';
10
10
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
11
11
  export declare class IsCalendarConfiguredRequestApplicationContextPropertiesEntry implements i.IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
@@ -583,6 +583,20 @@ export declare class ListBookedMeetingsResponse implements i.ListBookedMeetingsR
583
583
  constructor(kwargs?: i.ListBookedMeetingsResponseInterface);
584
584
  toApiJson(): object;
585
585
  }
586
+ export declare class ListBookingTypesForAIRequest implements i.ListBookingTypesForAIRequestInterface {
587
+ userId: string;
588
+ namespace: string;
589
+ bookingSource: e.BookingSource;
590
+ static fromProto(proto: any): ListBookingTypesForAIRequest;
591
+ constructor(kwargs?: i.ListBookingTypesForAIRequestInterface);
592
+ toApiJson(): object;
593
+ }
594
+ export declare class ListBookingTypesForAIResponse implements i.ListBookingTypesForAIResponseInterface {
595
+ bookingEvents: BookingEventForAI[];
596
+ static fromProto(proto: any): ListBookingTypesForAIResponse;
597
+ constructor(kwargs?: i.ListBookingTypesForAIResponseInterface);
598
+ toApiJson(): object;
599
+ }
586
600
  export declare class ListEventTypesForMultipleCalendarsRequest implements i.ListEventTypesForMultipleCalendarsRequestInterface {
587
601
  calendarIds: string[];
588
602
  static fromProto(proto: any): ListEventTypesForMultipleCalendarsRequest;
@@ -1,4 +1,4 @@
1
- import * as i from '../interfaces';
1
+ import * as i from '../interfaces/meeting-source.interface';
2
2
  import * as e from '../enums';
3
3
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
4
4
  export declare class MeetingSourceInfo implements i.MeetingSourceInfoInterface {
@@ -1,8 +1,17 @@
1
- import * as i from '../interfaces';
1
+ import * as i from '../interfaces/meeting-type.interface';
2
2
  import { DateRange } from './date-range';
3
3
  import { HostUser, HostOrderDetails } from './shared';
4
4
  import * as e from '../enums';
5
5
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
6
+ export declare class BookingEventForAI implements i.BookingEventForAIInterface {
7
+ id: string;
8
+ name: string;
9
+ calendarId: string;
10
+ type: e.BookingEventType;
11
+ static fromProto(proto: any): BookingEventForAI;
12
+ constructor(kwargs?: i.BookingEventForAIInterface);
13
+ toApiJson(): object;
14
+ }
6
15
  export declare class EventTypeDateRange implements i.EventTypeDateRangeInterface {
7
16
  dateRangeType: e.DateRangeType;
8
17
  customDateRange: DateRange;
@@ -1,4 +1,4 @@
1
- import * as i from '../interfaces';
1
+ import * as i from '../interfaces/openapiv2.interface';
2
2
  import * as e from '../enums';
3
3
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
4
4
  export declare class Contact implements i.ContactInterface {
@@ -1,4 +1,4 @@
1
- import * as i from '../interfaces';
1
+ import * as i from '../interfaces/shared.interface';
2
2
  import { TimeZone, TimeOfDay } from './';
3
3
  import * as e from '../enums';
4
4
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
@@ -1,4 +1,4 @@
1
- import * as i from '../interfaces';
1
+ import * as i from '../interfaces/zoom.interface';
2
2
  import * as e from '../enums';
3
3
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
4
4
  export declare class CreateZoomMeetingRequest implements i.CreateZoomMeetingRequestInterface {
@@ -1,4 +1,4 @@
1
- import { CalendarInterface, Contact, GetGroupResponse, GetServiceV2Response, GetSessionMeetingResponse, MeetingGuestApiService, MeetingLocationType, TeamEventMeetingType, TimeZoneInterface, ContactInterface, AnswersInterface, GetSessionInviteeMeetingInfoResponse, GuestGetBookedMeetingResponseV2, BookingSource, CheckFeatureFlagResponse, FeatureFlagFieldType } from "../_internal";
1
+ import { CalendarInterface, Contact, GetGroupResponse, GetServiceV2Response, GetSessionMeetingResponse, MeetingGuestApiService, MeetingLocationType, TeamEventMeetingType, TimeZoneInterface, ContactInterface, AnswersInterface, GetSessionInviteeMeetingInfoResponse, GuestGetBookedMeetingResponseV2, BookingSource, CheckFeatureFlagResponse, FeatureFlagFieldType, BatchBookingTargetInterface, BatchEventTypeTargetInterface, BookBatchMeetingResponse, ListGuestBookedMeetingsResponse, PhoneFieldsInterface } from "../_internal";
2
2
  import { Observable } from "rxjs";
3
3
  import { Host, MeetingForm, MeetingMetadata, MeetingType, TimeSpan } from "../shared";
4
4
  import { GetServiceResponse } from "../_internal/objects/meeting-guest";
@@ -150,6 +150,39 @@ export declare class GuestService implements GuestServiceInterface {
150
150
  getServiceV2(req: {
151
151
  serviceId: string;
152
152
  }): Observable<GetServiceV2Response>;
153
+ listBatchAvailableTimeSlots(req: {
154
+ targets: BatchEventTypeTargetInterface[];
155
+ timeSpan: TimeSpan;
156
+ timeZone: TimeZoneInterface;
157
+ }): Observable<TimeSpan[]>;
158
+ bookBatchMeeting(req: {
159
+ targets: BatchBookingTargetInterface[];
160
+ start: Date;
161
+ attendees?: ContactInterface[];
162
+ comment?: string;
163
+ metadata?: {
164
+ [key: string]: string;
165
+ };
166
+ formAnswers?: MeetingForm;
167
+ recaptchaToken: string;
168
+ location?: string;
169
+ bookingSource?: BookingSource;
170
+ bookingOriginId?: string;
171
+ }): Observable<BookBatchMeetingResponse>;
172
+ rescheduleBatchMeeting(req: {
173
+ id: string;
174
+ start: Date;
175
+ timeZone?: TimeZoneInterface;
176
+ location?: string;
177
+ }): Observable<null>;
178
+ listGuestBookedMeetings(req: {
179
+ phoneNumber?: PhoneFieldsInterface;
180
+ email?: string;
181
+ namespace?: string;
182
+ timeSpan?: TimeSpan;
183
+ timeZone?: TimeZoneInterface;
184
+ useIsoDates?: boolean;
185
+ }): Observable<ListGuestBookedMeetingsResponse>;
153
186
  static ɵfac: i0.ɵɵFactoryDeclaration<GuestService, never>;
154
187
  static ɵprov: i0.ɵɵInjectableDeclaration<GuestService>;
155
188
  }
@@ -1,9 +1,10 @@
1
1
  import { Observable } from "rxjs";
2
- import { AvailabilityRuleList, CreateCalendarRequestInterface, CreateCalendarResponse, DayOfWeek, GetGroupResponse, GetServiceResponse, HostBookMeetingRequestInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponse, IsHostConfiguredResponse, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, MeetingHostApiService, PagedRequestOptionsInterface, SendMeetingRequestEmailRequestInterface, TimeRangeInterface, TimeZoneInterface, WeekdayAvailability, Contact, EmailsToDelete, HostBookSessionRequestInterface, ListAttendeesResponse, BookingSource, ListEventTypesForMultipleCalendarsResponse } from "../_internal";
2
+ import { AvailabilityRuleList, CreateCalendarRequestInterface, CreateCalendarResponse, DayOfWeek, GetGroupResponse, GetServiceResponse, HostBookMeetingRequestInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponse, IsHostConfiguredResponse, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, MeetingHostApiService, PagedRequestOptionsInterface, SendMeetingRequestEmailRequestInterface, TimeRangeInterface, TimeZoneInterface, WeekdayAvailability, Contact, EmailsToDelete, HostBookSessionRequestInterface, ListAttendeesResponse, BookingSource, ListEventTypesForMultipleCalendarsResponse, ListBookingTypesForAIResponse } from "../_internal";
3
3
  import { BookMeetingResponse, BookSessionResponse } from "../guest";
4
4
  import { ApplicationContextPropertiesSet, AvailabilityRule, Calendar, EntityAssociations, Group, HostUrlMap, Meeting, MeetingMetadata, MeetingType, PagedResponse, Preferences, Service, TimeSpan } from "../shared";
5
5
  import { HostUser } from "../shared/host-user";
6
6
  import { HttpResponse } from "@angular/common/http";
7
+ import * as e from "../_internal/enums";
7
8
  import * as i0 from "@angular/core";
8
9
  export declare class HostService {
9
10
  private hostAPIService;
@@ -243,6 +244,11 @@ export declare class HostService {
243
244
  listEventTypesForMultipleCalendars(req: {
244
245
  calendarIds: string[];
245
246
  }): Observable<ListEventTypesForMultipleCalendarsResponse>;
247
+ listBookingTypesForAi(req: {
248
+ userId: string;
249
+ namespace: string;
250
+ bookingSource: e.BookingSource;
251
+ }): Observable<ListBookingTypesForAIResponse>;
246
252
  static ɵfac: i0.ɵɵFactoryDeclaration<HostService, never>;
247
253
  static ɵprov: i0.ɵɵInjectableDeclaration<HostService>;
248
254
  }
package/lib/index.d.ts CHANGED
@@ -4,6 +4,6 @@ export { GuestService } from './guest/guest.service';
4
4
  export { HostService } from './host/host.service';
5
5
  export { addMetadataToBookingLink } from './host/url';
6
6
  export { MeetingSource, MeetingSourceStatus, DayOfWeek, FormFieldType, CalendarType, MeetingLocation, MeetingLocationType, CalendarSource, RelativeTimeUnit, DateRangeType, TeamEventMeetingType, OnBoardingState, RegistrationCutOffUnit, NotificationType, BookingSource, FeatureFlagFieldType } from './_internal/enums/index';
7
- export { MeetingSourceQuery, MeetingSourceInfo, MeetingSourceListResponse, Contact, WeekdayAvailability, CreateCalendarRequest, CreateCalendarResponse, CheckFeatureFlagRequest, CheckFeatureFlagResponse, } from './_internal/objects/index';
7
+ export { MeetingSourceQuery, MeetingSourceInfo, MeetingSourceListResponse, Contact, WeekdayAvailability, CreateCalendarRequest, CreateCalendarResponse, CheckFeatureFlagRequest, CheckFeatureFlagResponse, GuestGetBookedMeetingResponseV2, GetServiceV2Response, BookBatchMeetingResponse, ListBatchAvailableTimeSlotsResponse, ListGuestBookedMeetingsResponse, MeetingDetail, ServiceEventType, ServiceGroup, } from './_internal/objects/index';
8
8
  export { Host, TimeSpan, PagedResponse, Meeting, MeetingType, Attendee, AvailabilityRule, Calendar, HostUrlMap, Preferences, Duration, MeetingTypeForm, MeetingTypeFormField, MeetingForm, MeetingFormAnswer, MeetingMetadata, WellKnownMeetingMetadataKeys, WellKnownFormFieldIds, meetingSchedulerIdToMetadataKey, durationFromString, durationToString, durationStringToMinutes, newBusinessCenterApplicationContextProperties, newSalesCenterApplicationContextProperties, newPartnerCenterApplicationContextProperties, ApplicationContextPropertiesSet, BusinessCenterApplicationContextProperties, SalesCenterApplicationContextProperties, PartnerCenterApplicationContextProperties, KnownCalendarApplicationContextKeys, KnownCalendarExternalIntegrations, HostUser, Group, Service, EventGroupAndServiceAssociations, MeetingSourceOrigin, EntityAssociations, } from './shared/index';
9
- export { TimeRangeInterface as TimeRange, TimeOfDayInterface as TimeOfDay, TimeZoneInterface as TimeZone, ListBookedMeetingsRequestFiltersInterface as ListBookedMeetingsRequestFilters, ListAvailabilityRequestFiltersInterface as ListAvailabilityRequestFilters, PagedRequestOptionsInterface as PagedRequestOptions, DateRangeInterface as DateRange, CreateCalendarRequestInterface, CreateCalendarResponseInterface, UpdateCalendarRequestInterface, AttachmentInterface, GoogleMeetMeetingAttendeeInterface, IsCalendarConfiguredRequestInterface, SendMeetingRequestEmailRequestInterface, EventTypeDateRangeInterface, DateRangeInterface, RelativeDateRangeInterface, CheckFeatureFlagRequestInterface, CheckFeatureFlagResponseInterface, CheckEventTypeSlugExistRequestInterface, CheckEventTypeSlugExistResponseInterface, HostBookMeetingRequestInterface, MeetingInterface, PhoneFieldsInterface, AvailabilityRuleListInterface as AvailabilityRuleList, EventTypeSummaryInterface, ListEventTypesForMultipleCalendarsResponseInterface, EmailsToDeleteInterface, GetGroupResponseInterface, GetServiceResponseInterface, IsHostConfiguredResponseInterface, ListAttendeesResponseInterface, RescheduleMeetingRequestInterface, SessionAttendeesInterface, } from './_internal/interfaces/index';
9
+ export { TimeRangeInterface as TimeRange, TimeOfDayInterface as TimeOfDay, TimeZoneInterface as TimeZone, ListBookedMeetingsRequestFiltersInterface as ListBookedMeetingsRequestFilters, ListAvailabilityRequestFiltersInterface as ListAvailabilityRequestFilters, PagedRequestOptionsInterface as PagedRequestOptions, DateRangeInterface as DateRange, CreateCalendarRequestInterface, CreateCalendarResponseInterface, UpdateCalendarRequestInterface, AttachmentInterface, GoogleMeetMeetingAttendeeInterface, IsCalendarConfiguredRequestInterface, SendMeetingRequestEmailRequestInterface, EventTypeDateRangeInterface, DateRangeInterface, RelativeDateRangeInterface, CheckFeatureFlagRequestInterface, CheckFeatureFlagResponseInterface, CheckEventTypeSlugExistRequestInterface, CheckEventTypeSlugExistResponseInterface, HostBookMeetingRequestInterface, MeetingInterface, PhoneFieldsInterface, AvailabilityRuleListInterface as AvailabilityRuleList, EventTypeSummaryInterface, ListEventTypesForMultipleCalendarsResponseInterface, EmailsToDeleteInterface, GetGroupResponseInterface, GetServiceResponseInterface, IsHostConfiguredResponseInterface, ListAttendeesResponseInterface, RescheduleMeetingRequestInterface, SessionAttendeesInterface, GuestGetBookedMeetingResponseV2Interface, MeetingDetailInterface, ServiceEventTypeInterface, ServiceGroupInterface, HostUserInterface, BatchBookingTargetInterface, BatchEventTypeTargetInterface, } from './_internal/interfaces/index';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/meetings",
3
- "version": "1.7.4",
3
+ "version": "1.7.6",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"