@vendasta/meetings 1.15.1 → 1.15.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/_internal/interfaces/groups-and-services.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-external.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-guest.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-type.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/shared.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/annotations.mjs +1 -1
- package/esm2020/lib/_internal/objects/date-range.mjs +1 -1
- package/esm2020/lib/_internal/objects/field-mask.mjs +1 -1
- package/esm2020/lib/_internal/objects/google-meet.mjs +1 -1
- package/esm2020/lib/_internal/objects/groups-and-services.mjs +25 -1
- package/esm2020/lib/_internal/objects/index.mjs +3 -3
- package/esm2020/lib/_internal/objects/meeting-external.mjs +2 -2
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +32 -2
- package/esm2020/lib/_internal/objects/meeting-host.mjs +59 -27
- package/esm2020/lib/_internal/objects/meeting-source.mjs +1 -1
- package/esm2020/lib/_internal/objects/meeting-type.mjs +13 -1
- package/esm2020/lib/_internal/objects/openapiv2.mjs +1 -1
- package/esm2020/lib/_internal/objects/shared.mjs +1 -1
- package/esm2020/lib/_internal/objects/zoom.mjs +1 -1
- package/esm2020/lib/host/host.service.mjs +4 -2
- package/esm2020/lib/shared/groups-and-services.mjs +13 -1
- package/esm2020/lib/shared/meeting-type.mjs +7 -1
- package/fesm2015/vendasta-meetings.mjs +144 -26
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +144 -26
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/interfaces/groups-and-services.interface.d.ts +6 -0
- package/lib/_internal/interfaces/index.d.ts +2 -2
- package/lib/_internal/interfaces/meeting-external.interface.d.ts +1 -1
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +9 -1
- package/lib/_internal/interfaces/meeting-host.interface.d.ts +14 -9
- package/lib/_internal/interfaces/meeting-type.interface.d.ts +3 -1
- package/lib/_internal/objects/annotations.d.ts +1 -1
- package/lib/_internal/objects/date-range.d.ts +1 -1
- package/lib/_internal/objects/field-mask.d.ts +1 -1
- package/lib/_internal/objects/google-meet.d.ts +1 -1
- package/lib/_internal/objects/groups-and-services.d.ts +7 -1
- package/lib/_internal/objects/index.d.ts +2 -2
- package/lib/_internal/objects/meeting-external.d.ts +2 -2
- package/lib/_internal/objects/meeting-guest.d.ts +10 -2
- package/lib/_internal/objects/meeting-host.d.ts +29 -21
- package/lib/_internal/objects/meeting-source.d.ts +1 -1
- package/lib/_internal/objects/meeting-type.d.ts +4 -2
- package/lib/_internal/objects/openapiv2.d.ts +1 -1
- package/lib/_internal/objects/shared.d.ts +1 -1
- package/lib/_internal/objects/zoom.d.ts +1 -1
- package/lib/host/host.service.d.ts +4 -2
- package/lib/shared/groups-and-services.d.ts +6 -0
- package/lib/shared/meeting-type.d.ts +3 -0
- 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
|
}
|
|
@@ -6,10 +6,10 @@ 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
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
|
-
export { EnumSchemaInterface, ResponseExamplesEntryInterface,
|
|
9
|
+
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';
|
|
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 {
|
|
12
|
+
export { EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, 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, 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, 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, MeetingMetadataEntryInterface, HostBookBatchMeetingRequestMetadataEntryInterface, RecurrenceConfigInterface, RecurrenceEndInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SessionAttendeesInterface, SetGeneralAvailabilityRequestInterface, TimeSlotsByWeekDayInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, UserBusyTimesInterface, 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';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { TimeZoneInterface } from './';
|
|
2
1
|
import { ContactInterface } from './openapiv2.interface';
|
|
3
2
|
import { DateRangeInterface } from './date-range.interface';
|
|
4
3
|
import { EventTypeDateRangeInterface } from './meeting-type.interface';
|
|
5
4
|
import { IsoDateTimeRangeInterface, AnswersInterface, HostOrderDetailsInterface } from './shared.interface';
|
|
5
|
+
import { TimeZoneInterface } from './';
|
|
6
6
|
import * as e from '../enums';
|
|
7
7
|
export interface AvailableTimeSlotsRequestInterface {
|
|
8
8
|
businessId?: string;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { TimeZoneInterface } from './';
|
|
2
1
|
import { BatchBookingTargetInterface, AnswersInterface, CalendarInterface, HostInterface, HostUserInterface, IsoDateTimeRangeInterface, BatchEventTypeTargetInterface, PhoneFieldsInterface } from './shared.interface';
|
|
3
2
|
import { ContactInterface } from './openapiv2.interface';
|
|
4
3
|
import { DateRangeInterface } from './date-range.interface';
|
|
5
4
|
import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
|
|
6
5
|
import { MeetingTypeInterface, FormInterface } from './meeting-type.interface';
|
|
6
|
+
import { TimeZoneInterface } from './';
|
|
7
7
|
import * as e from '../enums';
|
|
8
8
|
export interface BookBatchMeetingRequestInterface {
|
|
9
9
|
targets?: BatchBookingTargetInterface[];
|
|
@@ -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;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { TimeZoneInterface } from './';
|
|
2
1
|
import { ContactInterface } from './shared.interface';
|
|
3
2
|
import { DateRangeInterface } from './date-range.interface';
|
|
4
3
|
import { FieldMaskInterface } from './field-mask.interface';
|
|
5
4
|
import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
|
|
6
5
|
import { MeetingTypeInterface, EventTypeDateRangeInterface, RegistrationCutOffInterface, BookingEventForAIInterface } from './meeting-type.interface';
|
|
7
6
|
import { TimeRangeInterface, CalendarInterface, HostUserInterface, PreferencesInterface, BatchBookingTargetInterface, AnswersInterface, EmailsToDeleteInterface, BatchEventTypeTargetInterface, IsoDateTimeRangeInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, AttendeeInterface, AttachmentInterface } from './shared.interface';
|
|
7
|
+
import { TimeZoneInterface } from './';
|
|
8
8
|
import * as e from '../enums';
|
|
9
|
-
export interface
|
|
9
|
+
export interface EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
|
|
10
10
|
key?: string;
|
|
11
11
|
value?: string;
|
|
12
12
|
}
|
|
13
|
-
export interface
|
|
13
|
+
export interface IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
|
|
14
14
|
key?: string;
|
|
15
15
|
value?: string;
|
|
16
16
|
}
|
|
@@ -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
|
-
}
|
|
175
171
|
export interface ListBookedMeetingsRequestFiltersInterface {
|
|
176
172
|
meetingTypeIds?: string[];
|
|
177
173
|
hostId?: string;
|
|
178
174
|
timeSpan?: DateRangeInterface;
|
|
179
175
|
userIds?: string[];
|
|
180
176
|
}
|
|
177
|
+
export interface ListAvailabilityRequestFiltersInterface {
|
|
178
|
+
hostId?: string;
|
|
179
|
+
meetingTypeId?: string;
|
|
180
|
+
}
|
|
181
181
|
export interface GetEntityAssociationRequestInterface {
|
|
182
182
|
entityId?: string;
|
|
183
183
|
}
|
|
@@ -420,6 +420,7 @@ export interface ListBookedMeetingsV2RequestInterface {
|
|
|
420
420
|
export interface ListBookedMeetingsV2ResponseInterface {
|
|
421
421
|
bookings?: BookedMeetingV2Interface[];
|
|
422
422
|
pagingMetadata?: PagedResponseMetadataInterface;
|
|
423
|
+
userBusyTimes?: UserBusyTimesInterface[];
|
|
423
424
|
}
|
|
424
425
|
export interface ListBookingTypesForAIRequestInterface {
|
|
425
426
|
userId?: string;
|
|
@@ -488,11 +489,11 @@ export interface UpdateMeetingMetadataRequestMetadataEntryInterface {
|
|
|
488
489
|
key?: string;
|
|
489
490
|
value?: string;
|
|
490
491
|
}
|
|
491
|
-
export interface
|
|
492
|
+
export interface MeetingMetadataEntryInterface {
|
|
492
493
|
key?: string;
|
|
493
494
|
value?: string;
|
|
494
495
|
}
|
|
495
|
-
export interface
|
|
496
|
+
export interface HostBookBatchMeetingRequestMetadataEntryInterface {
|
|
496
497
|
key?: string;
|
|
497
498
|
value?: string;
|
|
498
499
|
}
|
|
@@ -579,6 +580,10 @@ export interface UpdateServiceRequestInterface {
|
|
|
579
580
|
hostId?: string;
|
|
580
581
|
id?: string;
|
|
581
582
|
}
|
|
583
|
+
export interface UserBusyTimesInterface {
|
|
584
|
+
userId?: string;
|
|
585
|
+
busyIntervals?: IsoDateTimeRangeInterface[];
|
|
586
|
+
}
|
|
582
587
|
export interface WeekdayAvailabilityInterface {
|
|
583
588
|
day?: e.DayOfWeek;
|
|
584
589
|
timeSlots?: TimeRangeInterface[];
|
|
@@ -32,7 +32,6 @@ export interface MeetingTypeInterface {
|
|
|
32
32
|
meetingTypeSlug?: string;
|
|
33
33
|
isPrivate?: boolean;
|
|
34
34
|
form?: FormInterface;
|
|
35
|
-
/** @deprecated Legacy Reserve with Google integration removed (VS-1314); no longer populated. */
|
|
36
35
|
isReserveWithGoogleService?: boolean;
|
|
37
36
|
hostUserIds?: string[];
|
|
38
37
|
bookingUrl?: string;
|
|
@@ -59,6 +58,9 @@ export interface MeetingTypeInterface {
|
|
|
59
58
|
isEmailRequired?: boolean;
|
|
60
59
|
isPhoneNumberRequired?: boolean;
|
|
61
60
|
notificationType?: e.NotificationType;
|
|
61
|
+
redirectEnabled?: boolean;
|
|
62
|
+
redirectUrl?: string;
|
|
63
|
+
redirectDelaySeconds?: number;
|
|
62
64
|
}
|
|
63
65
|
export interface RegistrationCutOffInterface {
|
|
64
66
|
unit?: e.RegistrationCutOffUnit;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as i from '../interfaces
|
|
1
|
+
import * as i from '../interfaces';
|
|
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';
|
|
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;
|
|
@@ -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;
|
|
@@ -6,10 +6,10 @@ 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
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
|
-
export { EnumSchema, ResponseExamplesEntry,
|
|
9
|
+
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';
|
|
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 {
|
|
12
|
+
export { EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, IsCalendarConfiguredRequestApplicationContextPropertiesEntry, 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, 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, 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, MeetingMetadataEntry, HostBookBatchMeetingRequestMetadataEntry, RecurrenceConfig, RecurrenceEnd, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SessionAttendees, SetGeneralAvailabilityRequest, TimeSlotsByWeekDay, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, UserBusyTimes, WeekdayAvailability, } from './meeting-host';
|
|
13
13
|
export { Access, MCPOptions, } from './annotations';
|
|
14
14
|
export { TimeOfDay, } from './timeofday';
|
|
15
15
|
export { DateTime, TimeZone, } from './datetime';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as i from '../interfaces
|
|
2
|
-
import { TimeZone } from './';
|
|
1
|
+
import * as i from '../interfaces';
|
|
3
2
|
import { Contact } from './openapiv2';
|
|
4
3
|
import { DateRange } from './date-range';
|
|
5
4
|
import { EventTypeDateRange } from './meeting-type';
|
|
6
5
|
import { IsoDateTimeRange, Answers, HostOrderDetails } from './shared';
|
|
6
|
+
import { TimeZone } from './';
|
|
7
7
|
import * as e from '../enums';
|
|
8
8
|
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
9
9
|
export declare class AvailableTimeSlotsRequest implements i.AvailableTimeSlotsRequestInterface {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as i from '../interfaces
|
|
2
|
-
import { TimeZone } from './';
|
|
1
|
+
import * as i from '../interfaces';
|
|
3
2
|
import { BatchBookingTarget, Answers, Calendar, Host, HostUser, IsoDateTimeRange, BatchEventTypeTarget, PhoneFields } from './shared';
|
|
4
3
|
import { Contact } from './openapiv2';
|
|
5
4
|
import { DateRange } from './date-range';
|
|
6
5
|
import { Group, Service } from './groups-and-services';
|
|
7
6
|
import { MeetingType, Form } from './meeting-type';
|
|
7
|
+
import { TimeZone } from './';
|
|
8
8
|
import * as e from '../enums';
|
|
9
9
|
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
10
10
|
export declare class BookBatchMeetingRequest implements i.BookBatchMeetingRequestInterface {
|
|
@@ -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;
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import * as i from '../interfaces
|
|
2
|
-
import { TimeZone } from './';
|
|
1
|
+
import * as i from '../interfaces';
|
|
3
2
|
import { Contact } from './shared';
|
|
4
3
|
import { DateRange } from './date-range';
|
|
5
4
|
import { FieldMask } from './field-mask';
|
|
6
5
|
import { Group, Service } from './groups-and-services';
|
|
7
6
|
import { MeetingType, EventTypeDateRange, RegistrationCutOff, BookingEventForAI } from './meeting-type';
|
|
8
7
|
import { TimeRange, Calendar, HostUser, Preferences, BatchBookingTarget, Answers, EmailsToDelete, BatchEventTypeTarget, IsoDateTimeRange, PagedRequestOptions, PagedResponseMetadata, Attendee, Attachment } from './shared';
|
|
8
|
+
import { TimeZone } from './';
|
|
9
9
|
import * as e from '../enums';
|
|
10
10
|
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
11
|
-
export declare class
|
|
11
|
+
export declare class EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry implements i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
|
|
12
12
|
key: string;
|
|
13
13
|
value: string;
|
|
14
|
-
static fromProto(proto: any):
|
|
15
|
-
constructor(kwargs?: i.
|
|
14
|
+
static fromProto(proto: any): EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry;
|
|
15
|
+
constructor(kwargs?: i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface);
|
|
16
16
|
toApiJson(): object;
|
|
17
17
|
}
|
|
18
|
-
export declare class
|
|
18
|
+
export declare class IsCalendarConfiguredRequestApplicationContextPropertiesEntry implements i.IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
|
|
19
19
|
key: string;
|
|
20
20
|
value: string;
|
|
21
|
-
static fromProto(proto: any):
|
|
22
|
-
constructor(kwargs?: i.
|
|
21
|
+
static fromProto(proto: any): IsCalendarConfiguredRequestApplicationContextPropertiesEntry;
|
|
22
|
+
constructor(kwargs?: i.IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface);
|
|
23
23
|
toApiJson(): object;
|
|
24
24
|
}
|
|
25
25
|
export declare class BuildHostIdRequestApplicationContextPropertiesEntry implements i.BuildHostIdRequestApplicationContextPropertiesEntryInterface {
|
|
@@ -287,13 +287,6 @@ 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
|
-
}
|
|
297
290
|
export declare class ListBookedMeetingsRequestFilters implements i.ListBookedMeetingsRequestFiltersInterface {
|
|
298
291
|
meetingTypeIds: string[];
|
|
299
292
|
hostId: string;
|
|
@@ -303,6 +296,13 @@ export declare class ListBookedMeetingsRequestFilters implements i.ListBookedMee
|
|
|
303
296
|
constructor(kwargs?: i.ListBookedMeetingsRequestFiltersInterface);
|
|
304
297
|
toApiJson(): object;
|
|
305
298
|
}
|
|
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;
|
|
@@ -692,6 +692,7 @@ export declare class ListBookedMeetingsV2Request implements i.ListBookedMeetings
|
|
|
692
692
|
export declare class ListBookedMeetingsV2Response implements i.ListBookedMeetingsV2ResponseInterface {
|
|
693
693
|
bookings: BookedMeetingV2[];
|
|
694
694
|
pagingMetadata: PagedResponseMetadata;
|
|
695
|
+
userBusyTimes: UserBusyTimes[];
|
|
695
696
|
static fromProto(proto: any): ListBookedMeetingsV2Response;
|
|
696
697
|
constructor(kwargs?: i.ListBookedMeetingsV2ResponseInterface);
|
|
697
698
|
toApiJson(): object;
|
|
@@ -799,18 +800,18 @@ export declare class UpdateMeetingMetadataRequestMetadataEntry implements i.Upda
|
|
|
799
800
|
constructor(kwargs?: i.UpdateMeetingMetadataRequestMetadataEntryInterface);
|
|
800
801
|
toApiJson(): object;
|
|
801
802
|
}
|
|
802
|
-
export declare class
|
|
803
|
+
export declare class MeetingMetadataEntry implements i.MeetingMetadataEntryInterface {
|
|
803
804
|
key: string;
|
|
804
805
|
value: string;
|
|
805
|
-
static fromProto(proto: any):
|
|
806
|
-
constructor(kwargs?: i.
|
|
806
|
+
static fromProto(proto: any): MeetingMetadataEntry;
|
|
807
|
+
constructor(kwargs?: i.MeetingMetadataEntryInterface);
|
|
807
808
|
toApiJson(): object;
|
|
808
809
|
}
|
|
809
|
-
export declare class
|
|
810
|
+
export declare class HostBookBatchMeetingRequestMetadataEntry implements i.HostBookBatchMeetingRequestMetadataEntryInterface {
|
|
810
811
|
key: string;
|
|
811
812
|
value: string;
|
|
812
|
-
static fromProto(proto: any):
|
|
813
|
-
constructor(kwargs?: i.
|
|
813
|
+
static fromProto(proto: any): HostBookBatchMeetingRequestMetadataEntry;
|
|
814
|
+
constructor(kwargs?: i.HostBookBatchMeetingRequestMetadataEntryInterface);
|
|
814
815
|
toApiJson(): object;
|
|
815
816
|
}
|
|
816
817
|
export declare class RecurrenceConfig implements i.RecurrenceConfigInterface {
|
|
@@ -938,6 +939,13 @@ export declare class UpdateServiceRequest implements i.UpdateServiceRequestInter
|
|
|
938
939
|
constructor(kwargs?: i.UpdateServiceRequestInterface);
|
|
939
940
|
toApiJson(): object;
|
|
940
941
|
}
|
|
942
|
+
export declare class UserBusyTimes implements i.UserBusyTimesInterface {
|
|
943
|
+
userId: string;
|
|
944
|
+
busyIntervals: IsoDateTimeRange[];
|
|
945
|
+
static fromProto(proto: any): UserBusyTimes;
|
|
946
|
+
constructor(kwargs?: i.UserBusyTimesInterface);
|
|
947
|
+
toApiJson(): object;
|
|
948
|
+
}
|
|
941
949
|
export declare class WeekdayAvailability implements i.WeekdayAvailabilityInterface {
|
|
942
950
|
day: e.DayOfWeek;
|
|
943
951
|
timeSlots: TimeRange[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as i from '../interfaces
|
|
1
|
+
import * as i from '../interfaces';
|
|
2
2
|
import * as e from '../enums';
|
|
3
3
|
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
4
4
|
export declare class MeetingSourceInfo implements i.MeetingSourceInfoInterface {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as i from '../interfaces
|
|
1
|
+
import * as i from '../interfaces';
|
|
2
2
|
import { DateRange } from './date-range';
|
|
3
3
|
import { HostUser, HostOrderDetails } from './shared';
|
|
4
4
|
import * as e from '../enums';
|
|
@@ -46,7 +46,6 @@ export declare class MeetingType implements i.MeetingTypeInterface {
|
|
|
46
46
|
meetingTypeSlug: string;
|
|
47
47
|
isPrivate: boolean;
|
|
48
48
|
form: Form;
|
|
49
|
-
/** @deprecated Legacy Reserve with Google integration removed (VS-1314); no longer populated. */
|
|
50
49
|
isReserveWithGoogleService: boolean;
|
|
51
50
|
hostUserIds: string[];
|
|
52
51
|
bookingUrl: string;
|
|
@@ -73,6 +72,9 @@ export declare class MeetingType implements i.MeetingTypeInterface {
|
|
|
73
72
|
isEmailRequired: boolean;
|
|
74
73
|
isPhoneNumberRequired: boolean;
|
|
75
74
|
notificationType: e.NotificationType;
|
|
75
|
+
redirectEnabled: boolean;
|
|
76
|
+
redirectUrl: string;
|
|
77
|
+
redirectDelaySeconds: number;
|
|
76
78
|
static fromProto(proto: any): MeetingType;
|
|
77
79
|
constructor(kwargs?: i.MeetingTypeInterface);
|
|
78
80
|
toApiJson(): object;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as i from '../interfaces
|
|
1
|
+
import * as i from '../interfaces';
|
|
2
2
|
import * as e from '../enums';
|
|
3
3
|
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
4
4
|
export declare class CreateZoomMeetingRequest implements i.CreateZoomMeetingRequestInterface {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Observable } from "rxjs";
|
|
2
|
-
import { AvailabilityRuleList, BatchBookingTargetInterface, BatchEventTypeTargetInterface, ContactInterface, CreateCalendarRequestInterface, CreateCalendarResponse, DayOfWeek, GetGroupResponse, GetServiceResponse, HostBookMeetingRequestInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponse, IsHostConfiguredResponse, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, MeetingHostApiService, PagedRequestOptionsInterface, SendMeetingRequestEmailRequestInterface, TimeRangeInterface, TimeZoneInterface, WeekdayAvailability, Contact, EmailsToDelete, HostBookSessionRequestInterface, ListAttendeesResponse, BookingSource, ListEventTypesForMultipleCalendarsResponse, ListBookingTypesForAIResponse } from "../_internal";
|
|
2
|
+
import { AvailabilityRuleList, BatchBookingTargetInterface, BatchEventTypeTargetInterface, ContactInterface, CreateCalendarRequestInterface, CreateCalendarResponse, DayOfWeek, GetGroupResponse, GetServiceResponse, HostBookMeetingRequestInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponse, IsHostConfiguredResponse, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, UserBusyTimes, MeetingHostApiService, PagedRequestOptionsInterface, SendMeetingRequestEmailRequestInterface, TimeRangeInterface, TimeZoneInterface, WeekdayAvailability, Contact, EmailsToDelete, HostBookSessionRequestInterface, ListAttendeesResponse, BookingSource, ListEventTypesForMultipleCalendarsResponse, ListBookingTypesForAIResponse } from "../_internal";
|
|
3
3
|
import { BookMeetingResponse, BookSessionResponse } from "../guest";
|
|
4
4
|
import { ApplicationContextPropertiesSet, AvailabilityRule, BookedMeetingGroup, Calendar, EntityAssociations, Group, HostUrlMap, Meeting, MeetingForm, MeetingMetadata, MeetingStats, MeetingType, PagedResponse, Preferences, Service, TimeSpan } from "../shared";
|
|
5
5
|
import { HostUser } from "../shared/host-user";
|
|
@@ -136,7 +136,9 @@ export declare class HostService {
|
|
|
136
136
|
cursor: string;
|
|
137
137
|
pageSize: number;
|
|
138
138
|
timeZone: TimeZoneInterface;
|
|
139
|
-
}): Observable<PagedResponse<BookedMeetingGroup
|
|
139
|
+
}): Observable<PagedResponse<BookedMeetingGroup> & {
|
|
140
|
+
userBusyTimes: UserBusyTimes[];
|
|
141
|
+
}>;
|
|
140
142
|
hostBookBatchMeeting(req: {
|
|
141
143
|
calendarId: string;
|
|
142
144
|
targets: BatchBookingTargetInterface[];
|
|
@@ -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">> & {
|