@vendasta/meetings 1.7.7 → 1.8.0

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 (45) 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-guest.interface.mjs +1 -1
  6. package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
  7. package/esm2020/lib/_internal/interfaces/shared.interface.mjs +1 -1
  8. package/esm2020/lib/_internal/meeting-host.api.service.mjs +25 -2
  9. package/esm2020/lib/_internal/objects/annotations.mjs +7 -1
  10. package/esm2020/lib/_internal/objects/google-meet.mjs +1 -1
  11. package/esm2020/lib/_internal/objects/groups-and-services.mjs +1 -1
  12. package/esm2020/lib/_internal/objects/index.mjs +5 -5
  13. package/esm2020/lib/_internal/objects/meeting-guest.mjs +15 -58
  14. package/esm2020/lib/_internal/objects/meeting-host.mjs +319 -2
  15. package/esm2020/lib/_internal/objects/meeting-source.mjs +1 -1
  16. package/esm2020/lib/_internal/objects/shared.mjs +91 -1
  17. package/esm2020/lib/host/host.service.mjs +63 -2
  18. package/esm2020/lib/index.mjs +3 -3
  19. package/esm2020/lib/shared/meeting.mjs +1 -1
  20. package/esm2020/lib/shared/preferences.mjs +4 -2
  21. package/fesm2015/vendasta-meetings.mjs +519 -57
  22. package/fesm2015/vendasta-meetings.mjs.map +1 -1
  23. package/fesm2020/vendasta-meetings.mjs +521 -57
  24. package/fesm2020/vendasta-meetings.mjs.map +1 -1
  25. package/lib/_internal/enums/index.d.ts +1 -1
  26. package/lib/_internal/enums/shared.enum.d.ts +7 -0
  27. package/lib/_internal/interfaces/annotations.interface.d.ts +2 -0
  28. package/lib/_internal/interfaces/index.d.ts +4 -4
  29. package/lib/_internal/interfaces/meeting-guest.interface.d.ts +5 -13
  30. package/lib/_internal/interfaces/meeting-host.interface.d.ts +54 -1
  31. package/lib/_internal/interfaces/shared.interface.d.ts +17 -0
  32. package/lib/_internal/meeting-host.api.service.d.ts +7 -2
  33. package/lib/_internal/objects/annotations.d.ts +2 -0
  34. package/lib/_internal/objects/google-meet.d.ts +1 -1
  35. package/lib/_internal/objects/groups-and-services.d.ts +1 -1
  36. package/lib/_internal/objects/index.d.ts +4 -4
  37. package/lib/_internal/objects/meeting-guest.d.ts +9 -23
  38. package/lib/_internal/objects/meeting-host.d.ts +84 -1
  39. package/lib/_internal/objects/meeting-source.d.ts +1 -1
  40. package/lib/_internal/objects/shared.d.ts +26 -0
  41. package/lib/host/host.service.d.ts +38 -2
  42. package/lib/index.d.ts +4 -4
  43. package/lib/shared/meeting.d.ts +4 -0
  44. package/lib/shared/preferences.d.ts +4 -2
  45. 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,15 +1,15 @@
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
- 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,20 +1,10 @@
1
1
  import { TimeZoneInterface } from './';
2
- import { AnswersInterface, CalendarInterface, HostInterface, HostUserInterface, IsoDateTimeRangeInterface, PhoneFieldsInterface } from './shared.interface';
2
+ import { BatchBookingTargetInterface, AnswersInterface, CalendarInterface, HostInterface, HostUserInterface, IsoDateTimeRangeInterface, BatchEventTypeTargetInterface, PhoneFieldsInterface } from './shared.interface';
3
3
  import { ContactInterface } from './openapiv2.interface';
4
4
  import { DateRangeInterface } from './date-range.interface';
5
5
  import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
6
6
  import { MeetingTypeInterface, FormInterface } from './meeting-type.interface';
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;
@@ -199,6 +189,7 @@ export interface GuestGetBookedMeetingResponseV2Interface {
199
189
  bookingGroupId?: string;
200
190
  meetings?: MeetingDetailInterface[];
201
191
  primaryAttendeePhone?: string;
192
+ isLocationEditable?: boolean;
202
193
  }
203
194
  export interface GuestIsHostConfiguredRequestInterface {
204
195
  hostId?: string;
@@ -284,6 +275,7 @@ export interface MeetingDetailInterface {
284
275
  eventTypeId?: string;
285
276
  userId?: string;
286
277
  locationGuideline?: string;
278
+ inPersonLocationType?: e.MeetingLocationType;
287
279
  }
288
280
  export interface MeetingSummaryInterface {
289
281
  id?: string;
@@ -294,11 +286,11 @@ export interface MeetingSummaryInterface {
294
286
  isoEndTime?: string;
295
287
  location?: string;
296
288
  }
297
- export interface BookBatchMeetingRequestMetadataEntryInterface {
289
+ export interface BookMeetingRequestMetadataEntryInterface {
298
290
  key?: string;
299
291
  value?: string;
300
292
  }
301
- export interface BookMeetingRequestMetadataEntryInterface {
293
+ export interface BookBatchMeetingRequestMetadataEntryInterface {
302
294
  key?: string;
303
295
  value?: string;
304
296
  }
@@ -4,7 +4,7 @@ import { DateRangeInterface } from './date-range.interface';
4
4
  import { FieldMaskInterface } from './field-mask.interface';
5
5
  import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
6
6
  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';
7
+ import { TimeRangeInterface, CalendarInterface, HostUserInterface, PreferencesInterface, BatchBookingTargetInterface, AnswersInterface, EmailsToDeleteInterface, BatchEventTypeTargetInterface, IsoDateTimeRangeInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, AttendeeInterface, AttachmentInterface } from './shared.interface';
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>;
@@ -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';
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
  import { HostUser } from './shared';
3
3
  import * as e from '../enums';
4
4
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
@@ -1,15 +1,15 @@
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
- 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,28 +1,12 @@
1
1
  import * as i from '../interfaces/meeting-guest.interface';
2
2
  import { TimeZone } from './';
3
- import { Answers, Calendar, Host, HostUser, IsoDateTimeRange, PhoneFields } from './shared';
3
+ import { BatchBookingTarget, Answers, Calendar, Host, HostUser, IsoDateTimeRange, BatchEventTypeTarget, PhoneFields } from './shared';
4
4
  import { Contact } from './openapiv2';
5
5
  import { DateRange } from './date-range';
6
6
  import { Group, Service } from './groups-and-services';
7
7
  import { MeetingType, Form } from './meeting-type';
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;
@@ -294,6 +278,7 @@ export declare class GuestGetBookedMeetingResponseV2 implements i.GuestGetBooked
294
278
  bookingGroupId: string;
295
279
  meetings: MeetingDetail[];
296
280
  primaryAttendeePhone: string;
281
+ isLocationEditable: boolean;
297
282
  static fromProto(proto: any): GuestGetBookedMeetingResponseV2;
298
283
  constructor(kwargs?: i.GuestGetBookedMeetingResponseV2Interface);
299
284
  toApiJson(): object;
@@ -421,6 +406,7 @@ export declare class MeetingDetail implements i.MeetingDetailInterface {
421
406
  eventTypeId: string;
422
407
  userId: string;
423
408
  locationGuideline: string;
409
+ inPersonLocationType: e.MeetingLocationType;
424
410
  static fromProto(proto: any): MeetingDetail;
425
411
  constructor(kwargs?: i.MeetingDetailInterface);
426
412
  toApiJson(): object;
@@ -437,18 +423,18 @@ export declare class MeetingSummary implements i.MeetingSummaryInterface {
437
423
  constructor(kwargs?: i.MeetingSummaryInterface);
438
424
  toApiJson(): object;
439
425
  }
440
- export declare class BookBatchMeetingRequestMetadataEntry implements i.BookBatchMeetingRequestMetadataEntryInterface {
426
+ export declare class BookMeetingRequestMetadataEntry implements i.BookMeetingRequestMetadataEntryInterface {
441
427
  key: string;
442
428
  value: string;
443
- static fromProto(proto: any): BookBatchMeetingRequestMetadataEntry;
444
- constructor(kwargs?: i.BookBatchMeetingRequestMetadataEntryInterface);
429
+ static fromProto(proto: any): BookMeetingRequestMetadataEntry;
430
+ constructor(kwargs?: i.BookMeetingRequestMetadataEntryInterface);
445
431
  toApiJson(): object;
446
432
  }
447
- export declare class BookMeetingRequestMetadataEntry implements i.BookMeetingRequestMetadataEntryInterface {
433
+ export declare class BookBatchMeetingRequestMetadataEntry implements i.BookBatchMeetingRequestMetadataEntryInterface {
448
434
  key: string;
449
435
  value: string;
450
- static fromProto(proto: any): BookMeetingRequestMetadataEntry;
451
- constructor(kwargs?: i.BookMeetingRequestMetadataEntryInterface);
436
+ static fromProto(proto: any): BookBatchMeetingRequestMetadataEntry;
437
+ constructor(kwargs?: i.BookBatchMeetingRequestMetadataEntryInterface);
452
438
  toApiJson(): object;
453
439
  }
454
440
  export declare class RegisterSessionRequest implements i.RegisterSessionRequestInterface {
@@ -5,7 +5,7 @@ import { DateRange } from './date-range';
5
5
  import { FieldMask } from './field-mask';
6
6
  import { Group, Service } from './groups-and-services';
7
7
  import { MeetingType, EventTypeDateRange, RegistrationCutOff, BookingEventForAI } from './meeting-type';
8
- import { TimeRange, Calendar, HostUser, Preferences, EmailsToDelete, PagedRequestOptions, PagedResponseMetadata, IsoDateTimeRange, Attendee, Answers, Attachment } from './shared';
8
+ import { TimeRange, Calendar, HostUser, Preferences, BatchBookingTarget, Answers, EmailsToDelete, BatchEventTypeTarget, IsoDateTimeRange, PagedRequestOptions, PagedResponseMetadata, Attendee, Attachment } from './shared';
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 {
@@ -45,6 +45,13 @@ export declare class AvailabilityRuleList implements i.AvailabilityRuleListInter
45
45
  constructor(kwargs?: i.AvailabilityRuleListInterface);
46
46
  toApiJson(): object;
47
47
  }
48
+ export declare class BookedMeetingV2 implements i.BookedMeetingV2Interface {
49
+ bookingGroupId: string;
50
+ meetings: Meeting[];
51
+ static fromProto(proto: any): BookedMeetingV2;
52
+ constructor(kwargs?: i.BookedMeetingV2Interface);
53
+ toApiJson(): object;
54
+ }
48
55
  export declare class BuildHostIdRequest implements i.BuildHostIdRequestInterface {
49
56
  applicationContextProperties: {
50
57
  [key: string]: string;
@@ -373,6 +380,29 @@ export declare class GetMeetingTypesForCalendarsResponse implements i.GetMeeting
373
380
  constructor(kwargs?: i.GetMeetingTypesForCalendarsResponseInterface);
374
381
  toApiJson(): object;
375
382
  }
383
+ export declare class HostBookBatchMeetingRequest implements i.HostBookBatchMeetingRequestInterface {
384
+ calendarId: string;
385
+ targets: BatchBookingTarget[];
386
+ start: Date;
387
+ attendees: Contact[];
388
+ comment: string;
389
+ metadata: {
390
+ [key: string]: string;
391
+ };
392
+ formAnswers: Answers;
393
+ location: string;
394
+ bookingSource: e.BookingSource;
395
+ bookingOriginId: string;
396
+ static fromProto(proto: any): HostBookBatchMeetingRequest;
397
+ constructor(kwargs?: i.HostBookBatchMeetingRequestInterface);
398
+ toApiJson(): object;
399
+ }
400
+ export declare class HostBookBatchMeetingResponse implements i.HostBookBatchMeetingResponseInterface {
401
+ bookingGroupId: string;
402
+ static fromProto(proto: any): HostBookBatchMeetingResponse;
403
+ constructor(kwargs?: i.HostBookBatchMeetingResponseInterface);
404
+ toApiJson(): object;
405
+ }
376
406
  export declare class HostBookMeetingRequest implements i.HostBookMeetingRequestInterface {
377
407
  meetingSource: e.MeetingSource;
378
408
  calendarId: string;
@@ -421,6 +451,13 @@ export declare class HostBookSessionResponse implements i.HostBookSessionRespons
421
451
  constructor(kwargs?: i.HostBookSessionResponseInterface);
422
452
  toApiJson(): object;
423
453
  }
454
+ export declare class HostCancelBatchMeetingRequest implements i.HostCancelBatchMeetingRequestInterface {
455
+ id: string;
456
+ cancellationReason: string;
457
+ static fromProto(proto: any): HostCancelBatchMeetingRequest;
458
+ constructor(kwargs?: i.HostCancelBatchMeetingRequestInterface);
459
+ toApiJson(): object;
460
+ }
424
461
  export declare class HostDeleteAttendeesRequest implements i.HostDeleteAttendeesRequestInterface {
425
462
  meetingId: string;
426
463
  emailsToDelete: EmailsToDelete[];
@@ -460,6 +497,21 @@ export declare class HostGetMeetingTypeResponse implements i.HostGetMeetingTypeR
460
497
  constructor(kwargs?: i.HostGetMeetingTypeResponseInterface);
461
498
  toApiJson(): object;
462
499
  }
500
+ export declare class HostListBatchAvailableTimeSlotsRequest implements i.HostListBatchAvailableTimeSlotsRequestInterface {
501
+ hostId: string;
502
+ targets: BatchEventTypeTarget[];
503
+ timeSpan: DateRange;
504
+ timeZone: TimeZone;
505
+ static fromProto(proto: any): HostListBatchAvailableTimeSlotsRequest;
506
+ constructor(kwargs?: i.HostListBatchAvailableTimeSlotsRequestInterface);
507
+ toApiJson(): object;
508
+ }
509
+ export declare class HostListBatchAvailableTimeSlotsResponse implements i.HostListBatchAvailableTimeSlotsResponseInterface {
510
+ isoTimeSlots: IsoDateTimeRange[];
511
+ static fromProto(proto: any): HostListBatchAvailableTimeSlotsResponse;
512
+ constructor(kwargs?: i.HostListBatchAvailableTimeSlotsResponseInterface);
513
+ toApiJson(): object;
514
+ }
463
515
  export declare class HostListMeetingTypesRequest implements i.HostListMeetingTypesRequestInterface {
464
516
  hostId: string;
465
517
  static fromProto(proto: any): HostListMeetingTypesRequest;
@@ -472,6 +524,15 @@ export declare class HostListMeetingTypesResponse implements i.HostListMeetingTy
472
524
  constructor(kwargs?: i.HostListMeetingTypesResponseInterface);
473
525
  toApiJson(): object;
474
526
  }
527
+ export declare class HostRescheduleBatchMeetingRequest implements i.HostRescheduleBatchMeetingRequestInterface {
528
+ id: string;
529
+ start: Date;
530
+ location: string;
531
+ timeZone: TimeZone;
532
+ static fromProto(proto: any): HostRescheduleBatchMeetingRequest;
533
+ constructor(kwargs?: i.HostRescheduleBatchMeetingRequestInterface);
534
+ toApiJson(): object;
535
+ }
475
536
  export declare class GetHostsForCalendarResponseHostUserAvailabilityRuleEntry implements i.GetHostsForCalendarResponseHostUserAvailabilityRuleEntryInterface {
476
537
  key: string;
477
538
  value: AvailabilityRuleList;
@@ -583,6 +644,21 @@ export declare class ListBookedMeetingsResponse implements i.ListBookedMeetingsR
583
644
  constructor(kwargs?: i.ListBookedMeetingsResponseInterface);
584
645
  toApiJson(): object;
585
646
  }
647
+ export declare class ListBookedMeetingsV2Request implements i.ListBookedMeetingsV2RequestInterface {
648
+ filters: ListBookedMeetingsRequestFilters;
649
+ pagingOptions: PagedRequestOptions;
650
+ timeZone: TimeZone;
651
+ static fromProto(proto: any): ListBookedMeetingsV2Request;
652
+ constructor(kwargs?: i.ListBookedMeetingsV2RequestInterface);
653
+ toApiJson(): object;
654
+ }
655
+ export declare class ListBookedMeetingsV2Response implements i.ListBookedMeetingsV2ResponseInterface {
656
+ bookings: BookedMeetingV2[];
657
+ pagingMetadata: PagedResponseMetadata;
658
+ static fromProto(proto: any): ListBookedMeetingsV2Response;
659
+ constructor(kwargs?: i.ListBookedMeetingsV2ResponseInterface);
660
+ toApiJson(): object;
661
+ }
586
662
  export declare class ListBookingTypesForAIRequest implements i.ListBookingTypesForAIRequestInterface {
587
663
  userId: string;
588
664
  namespace: string;
@@ -676,6 +752,13 @@ export declare class UpdateMeetingMetadataRequestMetadataEntry implements i.Upda
676
752
  constructor(kwargs?: i.UpdateMeetingMetadataRequestMetadataEntryInterface);
677
753
  toApiJson(): object;
678
754
  }
755
+ export declare class HostBookBatchMeetingRequestMetadataEntry implements i.HostBookBatchMeetingRequestMetadataEntryInterface {
756
+ key: string;
757
+ value: string;
758
+ static fromProto(proto: any): HostBookBatchMeetingRequestMetadataEntry;
759
+ constructor(kwargs?: i.HostBookBatchMeetingRequestMetadataEntryInterface);
760
+ toApiJson(): object;
761
+ }
679
762
  export declare class MeetingMetadataEntry implements i.MeetingMetadataEntryInterface {
680
763
  key: string;
681
764
  value: string;
@@ -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 {