@vendasta/meetings 1.15.0 → 1.15.3

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 (37) hide show
  1. package/esm2020/lib/_internal/interfaces/groups-and-services.interface.mjs +1 -1
  2. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  3. package/esm2020/lib/_internal/interfaces/meeting-guest.interface.mjs +1 -1
  4. package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
  5. package/esm2020/lib/_internal/interfaces/meeting-type.interface.mjs +1 -1
  6. package/esm2020/lib/_internal/meeting-guest.api.service.mjs +7 -2
  7. package/esm2020/lib/_internal/meeting-host.api.service.mjs +7 -2
  8. package/esm2020/lib/_internal/objects/groups-and-services.mjs +25 -1
  9. package/esm2020/lib/_internal/objects/index.mjs +3 -3
  10. package/esm2020/lib/_internal/objects/meeting-guest.mjs +67 -5
  11. package/esm2020/lib/_internal/objects/meeting-host.mjs +63 -28
  12. package/esm2020/lib/_internal/objects/meeting-type.mjs +13 -1
  13. package/esm2020/lib/guest/guest.service.mjs +18 -1
  14. package/esm2020/lib/host/host.service.mjs +17 -1
  15. package/esm2020/lib/shared/groups-and-services.mjs +13 -1
  16. package/esm2020/lib/shared/meeting-type.mjs +7 -1
  17. package/fesm2015/vendasta-meetings.mjs +227 -31
  18. package/fesm2015/vendasta-meetings.mjs.map +1 -1
  19. package/fesm2020/vendasta-meetings.mjs +225 -31
  20. package/fesm2020/vendasta-meetings.mjs.map +1 -1
  21. package/lib/_internal/interfaces/groups-and-services.interface.d.ts +6 -0
  22. package/lib/_internal/interfaces/index.d.ts +2 -2
  23. package/lib/_internal/interfaces/meeting-guest.interface.d.ts +15 -2
  24. package/lib/_internal/interfaces/meeting-host.interface.d.ts +15 -9
  25. package/lib/_internal/interfaces/meeting-type.interface.d.ts +3 -0
  26. package/lib/_internal/meeting-guest.api.service.d.ts +3 -2
  27. package/lib/_internal/meeting-host.api.service.d.ts +3 -2
  28. package/lib/_internal/objects/groups-and-services.d.ts +6 -0
  29. package/lib/_internal/objects/index.d.ts +2 -2
  30. package/lib/_internal/objects/meeting-guest.d.ts +22 -6
  31. package/lib/_internal/objects/meeting-host.d.ts +29 -20
  32. package/lib/_internal/objects/meeting-type.d.ts +3 -0
  33. package/lib/guest/guest.service.d.ts +5 -0
  34. package/lib/host/host.service.d.ts +6 -1
  35. package/lib/shared/groups-and-services.d.ts +6 -0
  36. package/lib/shared/meeting-type.d.ts +3 -0
  37. package/package.json +1 -1
@@ -25,6 +25,9 @@ export interface GroupInterface {
25
25
  hexColor?: string;
26
26
  bookingUrl?: string;
27
27
  isBatchBookingEnabled?: boolean;
28
+ redirectEnabled?: boolean;
29
+ redirectUrl?: string;
30
+ redirectDelaySeconds?: number;
28
31
  }
29
32
  export interface ServiceInterface {
30
33
  id?: string;
@@ -36,4 +39,7 @@ export interface ServiceInterface {
36
39
  hexColor?: string;
37
40
  bookingUrl?: string;
38
41
  isBatchBookingEnabled?: boolean;
42
+ redirectEnabled?: boolean;
43
+ redirectUrl?: string;
44
+ redirectDelaySeconds?: number;
39
45
  }
@@ -5,11 +5,11 @@ export { AnswerInterface, AnswersInterface, CalendarApplicationContextEntryInter
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 { BookBatchMeetingRequestInterface, BookBatchMeetingResponseInterface, BookMeetingRequestInterface, BookMeetingResponseInterface, CancelBatchMeetingRequestInterface, CheckFeatureFlagRequestInterface, CheckFeatureFlagResponseInterface, GetCalendarRequestInterface, GetCalendarResponseInterface, GetGroupRequestInterface, GetGroupResponseInterface, GetGroupV2RequestInterface, GetGroupV2ResponseInterface, 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';
8
+ export { BookBatchMeetingRequestInterface, BookBatchMeetingResponseInterface, BookMeetingRequestInterface, BookMeetingResponseInterface, CancelBatchMeetingRequestInterface, CheckFeatureFlagRequestInterface, CheckFeatureFlagResponseInterface, GetCalendarRequestInterface, GetCalendarResponseInterface, GetGroupRequestInterface, GetGroupResponseInterface, GetGroupV2RequestInterface, GetGroupV2ResponseInterface, 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, ListBatchAvailableTimeSlotsForRescheduleRequestInterface, ListBatchAvailableTimeSlotsRequestInterface, ListBatchAvailableTimeSlotsResponseInterface, ListGuestBookedMeetingsRequestInterface, ListGuestBookedMeetingsResponseInterface, ListMeetingTypesRequestInterface, ListMeetingTypesResponseInterface, MeetingDetailInterface, MeetingSummaryInterface, BookBatchMeetingRequestMetadataEntryInterface, BookMeetingRequestMetadataEntryInterface, RegisterSessionRequestInterface, RescheduleBatchMeetingRequestInterface, ServiceEventTypeInterface, ServiceGroupInterface, } from './meeting-guest.interface';
9
9
  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';
10
10
  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';
11
11
  export { FieldMaskInterface, } from './field-mask.interface';
12
- 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, ListBookedMeetingsRequestFiltersInterface, ListAvailabilityRequestFiltersInterface, GetEntityAssociationRequestInterface, GetEntityAssociationResponseInterface, GetEventTypeByIdRequestInterface, GetEventTypeByIdResponseInterface, GetHostMeetingRequestInterface, GetHostMeetingResponseInterface, GetHostPreferencesRequestInterface, GetHostPreferencesResponseInterface, GetHostsForCalendarRequestInterface, GetHostsForCalendarResponseInterface, GetMeetingStatsRequestInterface, GetMeetingStatsResponseInterface, 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, MeetingStatPointInterface, MeetingTypeListInterface, HostBookBatchMeetingRequestMetadataEntryInterface, MeetingMetadataEntryInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, RecurrenceConfigInterface, RecurrenceEndInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SessionAttendeesInterface, SetGeneralAvailabilityRequestInterface, TimeSlotsByWeekDayInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
12
+ export { IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, BuildHostIdRequestApplicationContextPropertiesEntryInterface, 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, GetMeetingStatsRequestInterface, GetMeetingStatsResponseInterface, GetMeetingTypesForCalendarsRequestInterface, GetMeetingTypesForCalendarsResponseInterface, HostBookBatchMeetingRequestInterface, HostBookBatchMeetingResponseInterface, HostBookMeetingRequestInterface, HostBookMeetingResponseInterface, HostBookSessionRequestInterface, HostBookSessionResponseInterface, HostCancelBatchMeetingRequestInterface, HostDeleteAttendeesRequestInterface, HostDetailsInterface, HostGetCalendarRequestInterface, HostGetCalendarResponseInterface, HostGetMeetingTypeRequestInterface, HostGetMeetingTypeResponseInterface, HostListBatchAvailableTimeSlotsForRescheduleRequestInterface, 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, MeetingStatPointInterface, MeetingTypeListInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, HostBookBatchMeetingRequestMetadataEntryInterface, MeetingMetadataEntryInterface, RecurrenceConfigInterface, RecurrenceEndInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SessionAttendeesInterface, SetGeneralAvailabilityRequestInterface, TimeSlotsByWeekDayInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
13
13
  export { AccessInterface, MCPOptionsInterface, } from './annotations.interface';
14
14
  export { TimeOfDayInterface, } from './timeofday.interface';
15
15
  export { DateTimeInterface, TimeZoneInterface, } from './datetime.interface';
@@ -88,6 +88,9 @@ export interface GetGroupV2ResponseInterface {
88
88
  businessDisplayLogoUrl?: string;
89
89
  bookingUrl?: string;
90
90
  isBatchBookingEnabled?: boolean;
91
+ redirectEnabled?: boolean;
92
+ redirectUrl?: string;
93
+ redirectDelaySeconds?: number;
91
94
  }
92
95
  export interface GetHostRequestInterface {
93
96
  hostId?: string;
@@ -137,6 +140,9 @@ export interface GetServiceV2ResponseInterface {
137
140
  businessDisplayLogoUrl?: string;
138
141
  bookingUrl?: string;
139
142
  isBatchBookingEnabled?: boolean;
143
+ redirectEnabled?: boolean;
144
+ redirectUrl?: string;
145
+ redirectDelaySeconds?: number;
140
146
  }
141
147
  export interface GetSessionInviteeMeetingInfoRequestInterface {
142
148
  sessionInviteeId?: string;
@@ -216,6 +222,8 @@ export interface GuestGetBookedMeetingResponseV2Interface {
216
222
  meetings?: MeetingDetailInterface[];
217
223
  primaryAttendeePhone?: string;
218
224
  isLocationEditable?: boolean;
225
+ redirectUrl?: string;
226
+ redirectDelaySeconds?: number;
219
227
  }
220
228
  export interface GuestIsHostConfiguredRequestInterface {
221
229
  hostId?: string;
@@ -254,6 +262,11 @@ export interface ListAvailableTimeSlotsResponseInterface {
254
262
  timeSlots?: DateRangeInterface[];
255
263
  isoTimeSlots?: IsoDateTimeRangeInterface[];
256
264
  }
265
+ export interface ListBatchAvailableTimeSlotsForRescheduleRequestInterface {
266
+ id?: string;
267
+ timeSpan?: DateRangeInterface;
268
+ timeZone?: TimeZoneInterface;
269
+ }
257
270
  export interface ListBatchAvailableTimeSlotsRequestInterface {
258
271
  targets?: BatchEventTypeTargetInterface[];
259
272
  timeSpan?: DateRangeInterface;
@@ -316,11 +329,11 @@ export interface MeetingSummaryInterface {
316
329
  isoEndTime?: string;
317
330
  location?: string;
318
331
  }
319
- export interface BookMeetingRequestMetadataEntryInterface {
332
+ export interface BookBatchMeetingRequestMetadataEntryInterface {
320
333
  key?: string;
321
334
  value?: string;
322
335
  }
323
- export interface BookBatchMeetingRequestMetadataEntryInterface {
336
+ export interface BookMeetingRequestMetadataEntryInterface {
324
337
  key?: string;
325
338
  value?: string;
326
339
  }
@@ -10,11 +10,11 @@ export interface IsCalendarConfiguredRequestApplicationContextPropertiesEntryInt
10
10
  key?: string;
11
11
  value?: string;
12
12
  }
13
- export interface BuildHostIdRequestApplicationContextPropertiesEntryInterface {
13
+ export interface EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
14
14
  key?: string;
15
15
  value?: string;
16
16
  }
17
- export interface EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
17
+ export interface BuildHostIdRequestApplicationContextPropertiesEntryInterface {
18
18
  key?: string;
19
19
  value?: string;
20
20
  }
@@ -168,16 +168,16 @@ export interface EventTypeSummaryInterface {
168
168
  bufferDurationAfterMeeting?: number;
169
169
  bufferDurationBeforeMeeting?: number;
170
170
  }
171
+ export interface ListAvailabilityRequestFiltersInterface {
172
+ hostId?: string;
173
+ meetingTypeId?: string;
174
+ }
171
175
  export interface ListBookedMeetingsRequestFiltersInterface {
172
176
  meetingTypeIds?: string[];
173
177
  hostId?: string;
174
178
  timeSpan?: DateRangeInterface;
175
179
  userIds?: string[];
176
180
  }
177
- export interface ListAvailabilityRequestFiltersInterface {
178
- hostId?: string;
179
- meetingTypeId?: string;
180
- }
181
181
  export interface GetEntityAssociationRequestInterface {
182
182
  entityId?: string;
183
183
  }
@@ -318,11 +318,17 @@ export interface HostGetMeetingTypeRequestInterface {
318
318
  export interface HostGetMeetingTypeResponseInterface {
319
319
  meetingType?: MeetingTypeInterface;
320
320
  }
321
+ export interface HostListBatchAvailableTimeSlotsForRescheduleRequestInterface {
322
+ id?: string;
323
+ timeSpan?: DateRangeInterface;
324
+ timeZone?: TimeZoneInterface;
325
+ }
321
326
  export interface HostListBatchAvailableTimeSlotsRequestInterface {
322
327
  hostId?: string;
323
328
  targets?: BatchEventTypeTargetInterface[];
324
329
  timeSpan?: DateRangeInterface;
325
330
  timeZone?: TimeZoneInterface;
331
+ namespace?: string;
326
332
  }
327
333
  export interface HostListBatchAvailableTimeSlotsResponseInterface {
328
334
  isoTimeSlots?: IsoDateTimeRangeInterface[];
@@ -478,15 +484,15 @@ export interface MeetingStatPointInterface {
478
484
  export interface MeetingTypeListInterface {
479
485
  meetingTypes?: MeetingTypeInterface[];
480
486
  }
481
- export interface HostBookBatchMeetingRequestMetadataEntryInterface {
487
+ export interface UpdateMeetingMetadataRequestMetadataEntryInterface {
482
488
  key?: string;
483
489
  value?: string;
484
490
  }
485
- export interface MeetingMetadataEntryInterface {
491
+ export interface HostBookBatchMeetingRequestMetadataEntryInterface {
486
492
  key?: string;
487
493
  value?: string;
488
494
  }
489
- export interface UpdateMeetingMetadataRequestMetadataEntryInterface {
495
+ export interface MeetingMetadataEntryInterface {
490
496
  key?: string;
491
497
  value?: string;
492
498
  }
@@ -59,6 +59,9 @@ export interface MeetingTypeInterface {
59
59
  isEmailRequired?: boolean;
60
60
  isPhoneNumberRequired?: boolean;
61
61
  notificationType?: e.NotificationType;
62
+ redirectEnabled?: boolean;
63
+ redirectUrl?: string;
64
+ redirectDelaySeconds?: number;
62
65
  }
63
66
  export interface RegistrationCutOffInterface {
64
67
  unit?: e.RegistrationCutOffUnit;
@@ -1,5 +1,5 @@
1
- import { BookBatchMeetingRequest, BookBatchMeetingResponse, BookMeetingRequest, BookMeetingResponse, CancelBatchMeetingRequest, CheckFeatureFlagRequest, CheckFeatureFlagResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetGroupV2Request, GetGroupV2Response, 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, RescheduleBatchMeetingRequest } from './objects/';
2
- import { BookBatchMeetingRequestInterface, BookMeetingRequestInterface, CancelBatchMeetingRequestInterface, CheckFeatureFlagRequestInterface, GetCalendarRequestInterface, GetGroupRequestInterface, GetGroupV2RequestInterface, GetHostRequestInterface, GetMeetingCalendarInfoRequestInterface, GetMeetingTypeRequestInterface, GetServiceRequestInterface, GetServiceV2RequestInterface, GetSessionInviteeMeetingInfoRequestInterface, GetSessionMeetingRequestInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingRequestV2Interface, GuestIsHostConfiguredRequestInterface, GuestRescheduleMeetingRequestInterface, InviteeDeregisterSessionMeetingRequestInterface, InviteeRegisterSessionMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListBatchAvailableTimeSlotsRequestInterface, ListGuestBookedMeetingsRequestInterface, ListMeetingTypesRequestInterface, RescheduleBatchMeetingRequestInterface } from './interfaces/';
1
+ import { BookBatchMeetingRequest, BookBatchMeetingResponse, BookMeetingRequest, BookMeetingResponse, CancelBatchMeetingRequest, CheckFeatureFlagRequest, CheckFeatureFlagResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetGroupV2Request, GetGroupV2Response, 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, ListBatchAvailableTimeSlotsForRescheduleRequest, ListBatchAvailableTimeSlotsRequest, ListBatchAvailableTimeSlotsResponse, ListGuestBookedMeetingsRequest, ListGuestBookedMeetingsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, RescheduleBatchMeetingRequest } from './objects/';
2
+ import { BookBatchMeetingRequestInterface, BookMeetingRequestInterface, CancelBatchMeetingRequestInterface, CheckFeatureFlagRequestInterface, GetCalendarRequestInterface, GetGroupRequestInterface, GetGroupV2RequestInterface, GetHostRequestInterface, GetMeetingCalendarInfoRequestInterface, GetMeetingTypeRequestInterface, GetServiceRequestInterface, GetServiceV2RequestInterface, GetSessionInviteeMeetingInfoRequestInterface, GetSessionMeetingRequestInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingRequestV2Interface, GuestIsHostConfiguredRequestInterface, GuestRescheduleMeetingRequestInterface, InviteeDeregisterSessionMeetingRequestInterface, InviteeRegisterSessionMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListBatchAvailableTimeSlotsForRescheduleRequestInterface, ListBatchAvailableTimeSlotsRequestInterface, ListGuestBookedMeetingsRequestInterface, ListMeetingTypesRequestInterface, RescheduleBatchMeetingRequestInterface } from './interfaces/';
3
3
  import { HttpResponse } from '@angular/common/http';
4
4
  import { Observable } from 'rxjs';
5
5
  import * as i0 from "@angular/core";
@@ -28,6 +28,7 @@ export declare class MeetingGuestApiService {
28
28
  inviteeDeregisterSessionMeeting(r: InviteeDeregisterSessionMeetingRequest | InviteeDeregisterSessionMeetingRequestInterface): Observable<HttpResponse<null>>;
29
29
  checkFeatureFlag(r: CheckFeatureFlagRequest | CheckFeatureFlagRequestInterface): Observable<CheckFeatureFlagResponse>;
30
30
  listBatchAvailableTimeSlots(r: ListBatchAvailableTimeSlotsRequest | ListBatchAvailableTimeSlotsRequestInterface): Observable<ListBatchAvailableTimeSlotsResponse>;
31
+ listBatchAvailableTimeSlotsForReschedule(r: ListBatchAvailableTimeSlotsForRescheduleRequest | ListBatchAvailableTimeSlotsForRescheduleRequestInterface): Observable<ListBatchAvailableTimeSlotsResponse>;
31
32
  bookBatchMeeting(r: BookBatchMeetingRequest | BookBatchMeetingRequestInterface): Observable<BookBatchMeetingResponse>;
32
33
  rescheduleBatchMeeting(r: RescheduleBatchMeetingRequest | RescheduleBatchMeetingRequestInterface): Observable<HttpResponse<null>>;
33
34
  cancelBatchMeeting(r: CancelBatchMeetingRequest | CancelBatchMeetingRequestInterface): Observable<HttpResponse<null>>;
@@ -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, GetMeetingStatsRequest, GetMeetingStatsResponse, 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, GetMeetingStatsRequestInterface, 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/';
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, GetMeetingStatsRequest, GetMeetingStatsResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, GetServiceRequest, GetServiceResponse, HostBookBatchMeetingRequest, HostBookBatchMeetingResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostBookSessionRequest, HostBookSessionResponse, HostCancelBatchMeetingRequest, HostDeleteAttendeesRequest, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListBatchAvailableTimeSlotsForRescheduleRequest, 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, GetMeetingStatsRequestInterface, GetMeetingTypesForCalendarsRequestInterface, GetServiceRequestInterface, HostBookBatchMeetingRequestInterface, HostBookMeetingRequestInterface, HostBookSessionRequestInterface, HostCancelBatchMeetingRequestInterface, HostDeleteAttendeesRequestInterface, HostGetCalendarRequestInterface, HostGetMeetingTypeRequestInterface, HostListBatchAvailableTimeSlotsForRescheduleRequestInterface, 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";
@@ -39,6 +39,7 @@ export declare class MeetingHostApiService {
39
39
  hostRescheduleBatchMeeting(r: HostRescheduleBatchMeetingRequest | HostRescheduleBatchMeetingRequestInterface): Observable<HttpResponse<null>>;
40
40
  hostCancelBatchMeeting(r: HostCancelBatchMeetingRequest | HostCancelBatchMeetingRequestInterface): Observable<HttpResponse<null>>;
41
41
  hostListBatchAvailableTimeSlots(r: HostListBatchAvailableTimeSlotsRequest | HostListBatchAvailableTimeSlotsRequestInterface): Observable<HostListBatchAvailableTimeSlotsResponse>;
42
+ hostListBatchAvailableTimeSlotsForReschedule(r: HostListBatchAvailableTimeSlotsForRescheduleRequest | HostListBatchAvailableTimeSlotsForRescheduleRequestInterface): Observable<HostListBatchAvailableTimeSlotsResponse>;
42
43
  getMeetingType(r: HostGetMeetingTypeRequest | HostGetMeetingTypeRequestInterface): Observable<HostGetMeetingTypeResponse>;
43
44
  listMeetingTypes(r: HostListMeetingTypesRequest | HostListMeetingTypesRequestInterface): Observable<HostListMeetingTypesResponse>;
44
45
  createMeetingType(r: CreateMeetingTypeRequest | CreateMeetingTypeRequestInterface): Observable<CreateMeetingTypeResponse>;
@@ -30,6 +30,9 @@ export declare class Group implements i.GroupInterface {
30
30
  hexColor: string;
31
31
  bookingUrl: string;
32
32
  isBatchBookingEnabled: boolean;
33
+ redirectEnabled: boolean;
34
+ redirectUrl: string;
35
+ redirectDelaySeconds: number;
33
36
  static fromProto(proto: any): Group;
34
37
  constructor(kwargs?: i.GroupInterface);
35
38
  toApiJson(): object;
@@ -44,6 +47,9 @@ export declare class Service implements i.ServiceInterface {
44
47
  hexColor: string;
45
48
  bookingUrl: string;
46
49
  isBatchBookingEnabled: boolean;
50
+ redirectEnabled: boolean;
51
+ redirectUrl: string;
52
+ redirectDelaySeconds: number;
47
53
  static fromProto(proto: any): Service;
48
54
  constructor(kwargs?: i.ServiceInterface);
49
55
  toApiJson(): object;
@@ -5,11 +5,11 @@ export { Answer, Answers, CalendarApplicationContextEntry, Attachment, Attendee,
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 { BookBatchMeetingRequest, BookBatchMeetingResponse, BookMeetingRequest, BookMeetingResponse, CancelBatchMeetingRequest, CheckFeatureFlagRequest, CheckFeatureFlagResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetGroupV2Request, GetGroupV2Response, 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';
8
+ export { BookBatchMeetingRequest, BookBatchMeetingResponse, BookMeetingRequest, BookMeetingResponse, CancelBatchMeetingRequest, CheckFeatureFlagRequest, CheckFeatureFlagResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetGroupV2Request, GetGroupV2Response, 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, ListBatchAvailableTimeSlotsForRescheduleRequest, ListBatchAvailableTimeSlotsRequest, ListBatchAvailableTimeSlotsResponse, ListGuestBookedMeetingsRequest, ListGuestBookedMeetingsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, MeetingDetail, MeetingSummary, BookBatchMeetingRequestMetadataEntry, BookMeetingRequestMetadataEntry, RegisterSessionRequest, RescheduleBatchMeetingRequest, ServiceEventType, ServiceGroup, } from './meeting-guest';
9
9
  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';
10
10
  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';
11
11
  export { FieldMask, } from './field-mask';
12
- 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, ListBookedMeetingsRequestFilters, ListAvailabilityRequestFilters, GetEntityAssociationRequest, GetEntityAssociationResponse, GetEventTypeByIdRequest, GetEventTypeByIdResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingStatsRequest, GetMeetingStatsResponse, 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, MeetingStatPoint, MeetingTypeList, HostBookBatchMeetingRequestMetadataEntry, MeetingMetadataEntry, UpdateMeetingMetadataRequestMetadataEntry, RecurrenceConfig, RecurrenceEnd, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SessionAttendees, SetGeneralAvailabilityRequest, TimeSlotsByWeekDay, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
12
+ export { IsCalendarConfiguredRequestApplicationContextPropertiesEntry, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, BuildHostIdRequestApplicationContextPropertiesEntry, 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, GetMeetingStatsRequest, GetMeetingStatsResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, HostBookBatchMeetingRequest, HostBookBatchMeetingResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostBookSessionRequest, HostBookSessionResponse, HostCancelBatchMeetingRequest, HostDeleteAttendeesRequest, HostDetails, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListBatchAvailableTimeSlotsForRescheduleRequest, 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, MeetingStatPoint, MeetingTypeList, UpdateMeetingMetadataRequestMetadataEntry, HostBookBatchMeetingRequestMetadataEntry, MeetingMetadataEntry, RecurrenceConfig, RecurrenceEnd, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SessionAttendees, SetGeneralAvailabilityRequest, TimeSlotsByWeekDay, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
13
13
  export { Access, MCPOptions, } from './annotations';
14
14
  export { TimeOfDay, } from './timeofday';
15
15
  export { DateTime, TimeZone, } from './datetime';
@@ -126,6 +126,9 @@ export declare class GetGroupV2Response implements i.GetGroupV2ResponseInterface
126
126
  businessDisplayLogoUrl: string;
127
127
  bookingUrl: string;
128
128
  isBatchBookingEnabled: boolean;
129
+ redirectEnabled: boolean;
130
+ redirectUrl: string;
131
+ redirectDelaySeconds: number;
129
132
  static fromProto(proto: any): GetGroupV2Response;
130
133
  constructor(kwargs?: i.GetGroupV2ResponseInterface);
131
134
  toApiJson(): object;
@@ -205,6 +208,9 @@ export declare class GetServiceV2Response implements i.GetServiceV2ResponseInter
205
208
  businessDisplayLogoUrl: string;
206
209
  bookingUrl: string;
207
210
  isBatchBookingEnabled: boolean;
211
+ redirectEnabled: boolean;
212
+ redirectUrl: string;
213
+ redirectDelaySeconds: number;
208
214
  static fromProto(proto: any): GetServiceV2Response;
209
215
  constructor(kwargs?: i.GetServiceV2ResponseInterface);
210
216
  toApiJson(): object;
@@ -311,6 +317,8 @@ export declare class GuestGetBookedMeetingResponseV2 implements i.GuestGetBooked
311
317
  meetings: MeetingDetail[];
312
318
  primaryAttendeePhone: string;
313
319
  isLocationEditable: boolean;
320
+ redirectUrl: string;
321
+ redirectDelaySeconds: number;
314
322
  static fromProto(proto: any): GuestGetBookedMeetingResponseV2;
315
323
  constructor(kwargs?: i.GuestGetBookedMeetingResponseV2Interface);
316
324
  toApiJson(): object;
@@ -373,6 +381,14 @@ export declare class ListAvailableTimeSlotsResponse implements i.ListAvailableTi
373
381
  constructor(kwargs?: i.ListAvailableTimeSlotsResponseInterface);
374
382
  toApiJson(): object;
375
383
  }
384
+ export declare class ListBatchAvailableTimeSlotsForRescheduleRequest implements i.ListBatchAvailableTimeSlotsForRescheduleRequestInterface {
385
+ id: string;
386
+ timeSpan: DateRange;
387
+ timeZone: TimeZone;
388
+ static fromProto(proto: any): ListBatchAvailableTimeSlotsForRescheduleRequest;
389
+ constructor(kwargs?: i.ListBatchAvailableTimeSlotsForRescheduleRequestInterface);
390
+ toApiJson(): object;
391
+ }
376
392
  export declare class ListBatchAvailableTimeSlotsRequest implements i.ListBatchAvailableTimeSlotsRequestInterface {
377
393
  targets: BatchEventTypeTarget[];
378
394
  timeSpan: DateRange;
@@ -459,18 +475,18 @@ export declare class MeetingSummary implements i.MeetingSummaryInterface {
459
475
  constructor(kwargs?: i.MeetingSummaryInterface);
460
476
  toApiJson(): object;
461
477
  }
462
- export declare class BookMeetingRequestMetadataEntry implements i.BookMeetingRequestMetadataEntryInterface {
478
+ export declare class BookBatchMeetingRequestMetadataEntry implements i.BookBatchMeetingRequestMetadataEntryInterface {
463
479
  key: string;
464
480
  value: string;
465
- static fromProto(proto: any): BookMeetingRequestMetadataEntry;
466
- constructor(kwargs?: i.BookMeetingRequestMetadataEntryInterface);
481
+ static fromProto(proto: any): BookBatchMeetingRequestMetadataEntry;
482
+ constructor(kwargs?: i.BookBatchMeetingRequestMetadataEntryInterface);
467
483
  toApiJson(): object;
468
484
  }
469
- export declare class BookBatchMeetingRequestMetadataEntry implements i.BookBatchMeetingRequestMetadataEntryInterface {
485
+ export declare class BookMeetingRequestMetadataEntry implements i.BookMeetingRequestMetadataEntryInterface {
470
486
  key: string;
471
487
  value: string;
472
- static fromProto(proto: any): BookBatchMeetingRequestMetadataEntry;
473
- constructor(kwargs?: i.BookBatchMeetingRequestMetadataEntryInterface);
488
+ static fromProto(proto: any): BookMeetingRequestMetadataEntry;
489
+ constructor(kwargs?: i.BookMeetingRequestMetadataEntryInterface);
474
490
  toApiJson(): object;
475
491
  }
476
492
  export declare class RegisterSessionRequest implements i.RegisterSessionRequestInterface {
@@ -15,18 +15,18 @@ export declare class IsCalendarConfiguredRequestApplicationContextPropertiesEntr
15
15
  constructor(kwargs?: i.IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface);
16
16
  toApiJson(): object;
17
17
  }
18
- export declare class BuildHostIdRequestApplicationContextPropertiesEntry implements i.BuildHostIdRequestApplicationContextPropertiesEntryInterface {
18
+ export declare class EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry implements i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
19
19
  key: string;
20
20
  value: string;
21
- static fromProto(proto: any): BuildHostIdRequestApplicationContextPropertiesEntry;
22
- constructor(kwargs?: i.BuildHostIdRequestApplicationContextPropertiesEntryInterface);
21
+ static fromProto(proto: any): EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry;
22
+ constructor(kwargs?: i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface);
23
23
  toApiJson(): object;
24
24
  }
25
- export declare class EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry implements i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
25
+ export declare class BuildHostIdRequestApplicationContextPropertiesEntry implements i.BuildHostIdRequestApplicationContextPropertiesEntryInterface {
26
26
  key: string;
27
27
  value: string;
28
- static fromProto(proto: any): EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry;
29
- constructor(kwargs?: i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface);
28
+ static fromProto(proto: any): BuildHostIdRequestApplicationContextPropertiesEntry;
29
+ constructor(kwargs?: i.BuildHostIdRequestApplicationContextPropertiesEntryInterface);
30
30
  toApiJson(): object;
31
31
  }
32
32
  export declare class AvailabilityRule implements i.AvailabilityRuleInterface {
@@ -287,6 +287,13 @@ export declare class EventTypeSummary implements i.EventTypeSummaryInterface {
287
287
  constructor(kwargs?: i.EventTypeSummaryInterface);
288
288
  toApiJson(): object;
289
289
  }
290
+ export declare class ListAvailabilityRequestFilters implements i.ListAvailabilityRequestFiltersInterface {
291
+ hostId: string;
292
+ meetingTypeId: string;
293
+ static fromProto(proto: any): ListAvailabilityRequestFilters;
294
+ constructor(kwargs?: i.ListAvailabilityRequestFiltersInterface);
295
+ toApiJson(): object;
296
+ }
290
297
  export declare class ListBookedMeetingsRequestFilters implements i.ListBookedMeetingsRequestFiltersInterface {
291
298
  meetingTypeIds: string[];
292
299
  hostId: string;
@@ -296,13 +303,6 @@ export declare class ListBookedMeetingsRequestFilters implements i.ListBookedMee
296
303
  constructor(kwargs?: i.ListBookedMeetingsRequestFiltersInterface);
297
304
  toApiJson(): object;
298
305
  }
299
- export declare class ListAvailabilityRequestFilters implements i.ListAvailabilityRequestFiltersInterface {
300
- hostId: string;
301
- meetingTypeId: string;
302
- static fromProto(proto: any): ListAvailabilityRequestFilters;
303
- constructor(kwargs?: i.ListAvailabilityRequestFiltersInterface);
304
- toApiJson(): object;
305
- }
306
306
  export declare class GetEntityAssociationRequest implements i.GetEntityAssociationRequestInterface {
307
307
  entityId: string;
308
308
  static fromProto(proto: any): GetEntityAssociationRequest;
@@ -524,11 +524,20 @@ export declare class HostGetMeetingTypeResponse implements i.HostGetMeetingTypeR
524
524
  constructor(kwargs?: i.HostGetMeetingTypeResponseInterface);
525
525
  toApiJson(): object;
526
526
  }
527
+ export declare class HostListBatchAvailableTimeSlotsForRescheduleRequest implements i.HostListBatchAvailableTimeSlotsForRescheduleRequestInterface {
528
+ id: string;
529
+ timeSpan: DateRange;
530
+ timeZone: TimeZone;
531
+ static fromProto(proto: any): HostListBatchAvailableTimeSlotsForRescheduleRequest;
532
+ constructor(kwargs?: i.HostListBatchAvailableTimeSlotsForRescheduleRequestInterface);
533
+ toApiJson(): object;
534
+ }
527
535
  export declare class HostListBatchAvailableTimeSlotsRequest implements i.HostListBatchAvailableTimeSlotsRequestInterface {
528
536
  hostId: string;
529
537
  targets: BatchEventTypeTarget[];
530
538
  timeSpan: DateRange;
531
539
  timeZone: TimeZone;
540
+ namespace: string;
532
541
  static fromProto(proto: any): HostListBatchAvailableTimeSlotsRequest;
533
542
  constructor(kwargs?: i.HostListBatchAvailableTimeSlotsRequestInterface);
534
543
  toApiJson(): object;
@@ -783,6 +792,13 @@ export declare class MeetingTypeList implements i.MeetingTypeListInterface {
783
792
  constructor(kwargs?: i.MeetingTypeListInterface);
784
793
  toApiJson(): object;
785
794
  }
795
+ export declare class UpdateMeetingMetadataRequestMetadataEntry implements i.UpdateMeetingMetadataRequestMetadataEntryInterface {
796
+ key: string;
797
+ value: string;
798
+ static fromProto(proto: any): UpdateMeetingMetadataRequestMetadataEntry;
799
+ constructor(kwargs?: i.UpdateMeetingMetadataRequestMetadataEntryInterface);
800
+ toApiJson(): object;
801
+ }
786
802
  export declare class HostBookBatchMeetingRequestMetadataEntry implements i.HostBookBatchMeetingRequestMetadataEntryInterface {
787
803
  key: string;
788
804
  value: string;
@@ -797,13 +813,6 @@ export declare class MeetingMetadataEntry implements i.MeetingMetadataEntryInter
797
813
  constructor(kwargs?: i.MeetingMetadataEntryInterface);
798
814
  toApiJson(): object;
799
815
  }
800
- export declare class UpdateMeetingMetadataRequestMetadataEntry implements i.UpdateMeetingMetadataRequestMetadataEntryInterface {
801
- key: string;
802
- value: string;
803
- static fromProto(proto: any): UpdateMeetingMetadataRequestMetadataEntry;
804
- constructor(kwargs?: i.UpdateMeetingMetadataRequestMetadataEntryInterface);
805
- toApiJson(): object;
806
- }
807
816
  export declare class RecurrenceConfig implements i.RecurrenceConfigInterface {
808
817
  recurrence: e.Recurrence;
809
818
  startTime: Date;
@@ -73,6 +73,9 @@ export declare class MeetingType implements i.MeetingTypeInterface {
73
73
  isEmailRequired: boolean;
74
74
  isPhoneNumberRequired: boolean;
75
75
  notificationType: e.NotificationType;
76
+ redirectEnabled: boolean;
77
+ redirectUrl: string;
78
+ redirectDelaySeconds: number;
76
79
  static fromProto(proto: any): MeetingType;
77
80
  constructor(kwargs?: i.MeetingTypeInterface);
78
81
  toApiJson(): object;
@@ -176,6 +176,11 @@ export declare class GuestService implements GuestServiceInterface {
176
176
  timeSpan: TimeSpan;
177
177
  timeZone: TimeZoneInterface;
178
178
  }): Observable<TimeSpan[]>;
179
+ listBatchAvailableTimeSlotsForReschedule(req: {
180
+ id: string;
181
+ timeSpan: TimeSpan;
182
+ timeZone: TimeZoneInterface;
183
+ }): Observable<TimeSpan[]>;
179
184
  bookBatchMeeting(req: {
180
185
  targets: BatchBookingTargetInterface[];
181
186
  start: Date;
@@ -169,11 +169,16 @@ export declare class HostService {
169
169
  businessId: string;
170
170
  }): Observable<MeetingStats>;
171
171
  hostListBatchAvailableTimeSlots(req: {
172
- hostId: string;
172
+ namespace: string;
173
173
  targets: BatchEventTypeTargetInterface[];
174
174
  timeSpan: TimeSpan;
175
175
  timeZone: TimeZoneInterface;
176
176
  }): Observable<TimeSpan[]>;
177
+ hostListBatchAvailableTimeSlotsForReschedule(req: {
178
+ id: string;
179
+ timeSpan: TimeSpan;
180
+ timeZone: TimeZoneInterface;
181
+ }): Observable<TimeSpan[]>;
177
182
  createDefaultMeetingTypes(req: {
178
183
  calendarIds: string[];
179
184
  }): Observable<void>;
@@ -10,6 +10,9 @@ export interface Group {
10
10
  hexColor?: string;
11
11
  bookingUrl?: string;
12
12
  isBatchBookingEnabled?: boolean;
13
+ redirectEnabled?: boolean;
14
+ redirectUrl?: string;
15
+ redirectDelaySeconds?: number;
13
16
  }
14
17
  export interface EventGroupAndServiceAssociations {
15
18
  id?: string;
@@ -34,6 +37,9 @@ export interface Service {
34
37
  hexColor?: string;
35
38
  bookingUrl?: string;
36
39
  isBatchBookingEnabled?: boolean;
40
+ redirectEnabled?: boolean;
41
+ redirectUrl?: string;
42
+ redirectDelaySeconds?: number;
37
43
  }
38
44
  export interface EntityAssociations {
39
45
  services?: string[];
@@ -39,6 +39,9 @@ export interface MeetingType {
39
39
  isEmailRequired?: boolean;
40
40
  isPhoneNumberRequired?: boolean;
41
41
  notificationType?: NotificationType;
42
+ redirectEnabled?: boolean;
43
+ redirectUrl?: string;
44
+ redirectDelaySeconds?: number;
42
45
  }
43
46
  export type MeetingTypeFormField = Required<FieldInterface>;
44
47
  export type MeetingTypeForm = Required<Omit<FormInterface, "fields">> & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/meetings",
3
- "version": "1.15.0",
3
+ "version": "1.15.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"