@vendasta/meetings 1.4.0 → 1.4.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.
- package/esm2020/lib/_internal/enums/index.mjs +2 -2
- package/esm2020/lib/_internal/enums/meeting-host.enum.mjs +25 -1
- package/esm2020/lib/_internal/interfaces/annotations.interface.mjs +8 -0
- package/esm2020/lib/_internal/interfaces/index.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/meeting-host.api.service.mjs +7 -2
- package/esm2020/lib/_internal/objects/annotations.mjs +50 -0
- package/esm2020/lib/_internal/objects/index.mjs +3 -2
- package/esm2020/lib/_internal/objects/meeting-host.mjs +258 -83
- package/esm2020/lib/_internal/objects/meeting-type.mjs +7 -1
- package/esm2020/lib/shared/meeting-type.mjs +5 -1
- package/fesm2015/vendasta-meetings.mjs +386 -122
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +386 -122
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/enums/index.d.ts +1 -1
- package/lib/_internal/enums/meeting-host.enum.d.ts +21 -0
- package/lib/_internal/interfaces/annotations.interface.d.ts +7 -0
- package/lib/_internal/interfaces/index.d.ts +2 -1
- package/lib/_internal/interfaces/meeting-host.interface.d.ts +45 -17
- package/lib/_internal/interfaces/meeting-type.interface.d.ts +2 -0
- package/lib/_internal/meeting-host.api.service.d.ts +3 -2
- package/lib/_internal/objects/annotations.d.ts +15 -0
- package/lib/_internal/objects/index.d.ts +2 -1
- package/lib/_internal/objects/meeting-host.d.ts +73 -30
- package/lib/_internal/objects/meeting-type.d.ts +2 -0
- package/lib/shared/meeting-type.d.ts +2 -0
- package/package.json +1 -1
|
@@ -2,5 +2,5 @@ export { CalendarSource, MeetingSource, MeetingSourceStatus, } from './meeting-s
|
|
|
2
2
|
export { ZoomApprovalType, ZoomMeetingRecurrenceType, ZoomMeetingType, ZoomMonthlyWeek, ZoomMonthlyWeekDay, ZoomRegistrationType, ZoomWeeklyDay, } from './zoom.enum';
|
|
3
3
|
export { CalendarType, FormFieldType, OnBoardingState, } from './shared.enum';
|
|
4
4
|
export { DateRangeType, MeetingLocationType, RegistrationCutOffUnit, RelativeTimeUnit, TeamEventMeetingType, } from './meeting-type.enum';
|
|
5
|
-
export { BookingFailureReason, } from './meeting-host.enum';
|
|
5
|
+
export { BookingFailureReason, Recurrence, RegistrationMode, Weekday, } from './meeting-host.enum';
|
|
6
6
|
export { DayOfWeek, } from './dayofweek.enum';
|
|
@@ -2,3 +2,24 @@ export declare enum BookingFailureReason {
|
|
|
2
2
|
BOOKING_FAILURE_REASON_REGISTRATION_CUTOFF_EXCEEDED = 0,
|
|
3
3
|
BOOKING_FAILURE_REASON_MAX_INVITEE_COUNT_EXCEEDED = 1
|
|
4
4
|
}
|
|
5
|
+
export declare enum Recurrence {
|
|
6
|
+
RECURRENCE_DAILY = 0,
|
|
7
|
+
RECURRENCE_WEEKLY = 1,
|
|
8
|
+
RECURRENCE_WORKING_WEEK = 2,
|
|
9
|
+
RECURRENCE_MONTHLY = 3,
|
|
10
|
+
RECURRENCE_QUARTERLY = 4
|
|
11
|
+
}
|
|
12
|
+
export declare enum RegistrationMode {
|
|
13
|
+
REGISTRATION_MODE_ALL = 0,
|
|
14
|
+
REGISTRATION_MODE_ANY = 1
|
|
15
|
+
}
|
|
16
|
+
export declare enum Weekday {
|
|
17
|
+
WEEKDAY_UNSPECIFIED = 0,
|
|
18
|
+
WEEKDAY_MONDAY = 1,
|
|
19
|
+
WEEKDAY_TUESDAY = 2,
|
|
20
|
+
WEEKDAY_WEDNESDAY = 3,
|
|
21
|
+
WEEKDAY_THURSDAY = 4,
|
|
22
|
+
WEEKDAY_FRIDAY = 5,
|
|
23
|
+
WEEKDAY_SATURDAY = 6,
|
|
24
|
+
WEEKDAY_SUNDAY = 7
|
|
25
|
+
}
|
|
@@ -7,6 +7,7 @@ export { EventTypeDateRangeInterface, FieldInterface, FormInterface, MeetingType
|
|
|
7
7
|
export { EventGroupAndServiceAssociationsInterface, GroupInterface, ServiceInterface, } from './groups-and-services.interface';
|
|
8
8
|
export { BookMeetingRequestInterface, BookMeetingResponseInterface, GetCalendarRequestInterface, GetCalendarResponseInterface, GetGroupRequestInterface, GetGroupResponseInterface, GetHostRequestInterface, GetHostResponseInterface, GetMeetingTypeRequestInterface, GetMeetingTypeResponseInterface, GetServiceRequestInterface, GetServiceResponseInterface, GetSessionInviteeMeetingInfoRequestInterface, GetSessionInviteeMeetingInfoResponseInterface, GetSessionMeetingRequestInterface, GetSessionMeetingResponseInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingResponseInterface, GuestIsHostConfiguredRequestInterface, GuestIsHostConfiguredResponseInterface, GuestRescheduleMeetingRequestInterface, InviteeDeregisterSessionMeetingRequestInterface, InviteeRegisterSessionMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListAvailableTimeSlotsResponseInterface, ListMeetingTypesRequestInterface, ListMeetingTypesResponseInterface, BookMeetingRequestMetadataEntryInterface, RegisterSessionRequestInterface, } from './meeting-guest.interface';
|
|
9
9
|
export { FieldMaskInterface, } from './field-mask.interface';
|
|
10
|
-
export {
|
|
10
|
+
export { IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, BuildHostIdRequestApplicationContextPropertiesEntryInterface, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, AvailabilityRuleInterface, AvailabilityRuleListInterface, BuildHostIdRequestInterface, BuildHostIdResponseInterface, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntryInterface, CalendarMigrationResponseInterface, CancelMeetingRequestInterface, 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, ListBookedMeetingsRequestFiltersInterface, ListAvailabilityRequestFiltersInterface, GetEntityAssociationRequestInterface, GetEntityAssociationResponseInterface, GetHostMeetingRequestInterface, GetHostMeetingResponseInterface, GetHostPreferencesRequestInterface, GetHostPreferencesResponseInterface, GetHostsForCalendarRequestInterface, GetHostsForCalendarResponseInterface, GetMeetingTypesForCalendarsRequestInterface, GetMeetingTypesForCalendarsResponseInterface, HostBookMeetingRequestInterface, HostBookMeetingResponseInterface, HostBookSessionRequestInterface, HostBookSessionResponseInterface, HostDeleteAttendeesRequestInterface, HostDetailsInterface, HostGetCalendarRequestInterface, HostGetCalendarResponseInterface, HostGetMeetingTypeRequestInterface, HostGetMeetingTypeResponseInterface, HostListMeetingTypesRequestInterface, HostListMeetingTypesResponseInterface, GetHostsForCalendarResponseHostUserAvailabilityRuleEntryInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponseInterface, IsHostConfiguredRequestInterface, IsHostConfiguredResponseInterface, ListAttendeesRequestInterface, ListAttendeesResponseInterface, ListAvailabilityRequestInterface, ListAvailabilityResponseInterface, ListAvailableTimeslotsForRecurringSessionRequestInterface, ListAvailableTimeslotsForRecurringSessionResponseInterface, ListAvailableTimeslotsForSessionRequestInterface, ListAvailableTimeslotsForSessionResponseInterface, ListBookedMeetingsRequestInterface, ListBookedMeetingsResponseInterface, ListGroupsRequestInterface, ListGroupsResponseInterface, ListServicesRequestInterface, ListServicesResponseInterface, MeetingInterface, MeetingTypeListInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, MeetingMetadataEntryInterface, RecurrenceConfigInterface, RecurrenceEndInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SessionAttendeesInterface, SetGeneralAvailabilityRequestInterface, TimeSlotsByWeekDayInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
|
|
11
|
+
export { AccessInterface, MCPOptionsInterface, } from './annotations.interface';
|
|
11
12
|
export { TimeOfDayInterface, } from './timeofday.interface';
|
|
12
13
|
export { DateTimeInterface, TimeZoneInterface, } from './datetime.interface';
|
|
@@ -2,14 +2,14 @@ import { DateRangeInterface } from './date-range.interface';
|
|
|
2
2
|
import { FieldMaskInterface } from './field-mask.interface';
|
|
3
3
|
import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
|
|
4
4
|
import { MeetingTypeInterface, RegistrationCutOffInterface } from './meeting-type.interface';
|
|
5
|
-
import { TimeRangeInterface, CalendarInterface, PreferencesInterface, HostUserInterface, ContactInterface, EmailsToDeleteInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, AttendeeInterface, AnswersInterface, AttachmentInterface
|
|
5
|
+
import { TimeRangeInterface, CalendarInterface, PreferencesInterface, HostUserInterface, ContactInterface, EmailsToDeleteInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, IsoDateTimeRangeInterface, AttendeeInterface, AnswersInterface, AttachmentInterface } from './shared.interface';
|
|
6
6
|
import { TimeZoneInterface } from './';
|
|
7
7
|
import * as e from '../enums';
|
|
8
|
-
export interface
|
|
8
|
+
export interface IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
|
|
9
9
|
key?: string;
|
|
10
10
|
value?: string;
|
|
11
11
|
}
|
|
12
|
-
export interface
|
|
12
|
+
export interface BuildHostIdRequestApplicationContextPropertiesEntryInterface {
|
|
13
13
|
key?: string;
|
|
14
14
|
value?: string;
|
|
15
15
|
}
|
|
@@ -46,6 +46,8 @@ export interface CalendarMigrationResponseInterface {
|
|
|
46
46
|
export interface CancelMeetingRequestInterface {
|
|
47
47
|
meetingId?: string;
|
|
48
48
|
cancellationReason?: string;
|
|
49
|
+
isSeriesCancellation?: boolean;
|
|
50
|
+
sessionId?: string;
|
|
49
51
|
}
|
|
50
52
|
export interface CheckGroupOrServiceSlugExistRequestInterface {
|
|
51
53
|
hostId?: string;
|
|
@@ -133,15 +135,15 @@ export interface EnsureSessionEventCalendarsExistRequestInterface {
|
|
|
133
135
|
export interface EnsureSessionEventCalendarsExistResponseInterface {
|
|
134
136
|
calendarId?: string;
|
|
135
137
|
}
|
|
136
|
-
export interface ListAvailabilityRequestFiltersInterface {
|
|
137
|
-
hostId?: string;
|
|
138
|
-
meetingTypeId?: string;
|
|
139
|
-
}
|
|
140
138
|
export interface ListBookedMeetingsRequestFiltersInterface {
|
|
141
139
|
meetingTypeIds?: string[];
|
|
142
140
|
hostId?: string;
|
|
143
141
|
timeSpan?: DateRangeInterface;
|
|
144
142
|
}
|
|
143
|
+
export interface ListAvailabilityRequestFiltersInterface {
|
|
144
|
+
hostId?: string;
|
|
145
|
+
meetingTypeId?: string;
|
|
146
|
+
}
|
|
145
147
|
export interface GetEntityAssociationRequestInterface {
|
|
146
148
|
entityId?: string;
|
|
147
149
|
}
|
|
@@ -208,6 +210,8 @@ export interface HostBookSessionRequestInterface {
|
|
|
208
210
|
meetingTypeId?: string;
|
|
209
211
|
hostId?: string;
|
|
210
212
|
calendarId?: string;
|
|
213
|
+
isRecurring?: boolean;
|
|
214
|
+
recurrenceConfig?: RecurrenceConfigInterface;
|
|
211
215
|
}
|
|
212
216
|
export interface HostBookSessionResponseInterface {
|
|
213
217
|
meetingId?: string;
|
|
@@ -279,6 +283,24 @@ export interface ListAvailabilityResponseInterface {
|
|
|
279
283
|
availabilityRules?: AvailabilityRuleInterface[];
|
|
280
284
|
metadata?: PagedResponseMetadataInterface;
|
|
281
285
|
}
|
|
286
|
+
export interface ListAvailableTimeslotsForRecurringSessionRequestInterface {
|
|
287
|
+
userIds?: string[];
|
|
288
|
+
duration?: string;
|
|
289
|
+
timeZone?: TimeZoneInterface;
|
|
290
|
+
}
|
|
291
|
+
export interface ListAvailableTimeslotsForRecurringSessionResponseInterface {
|
|
292
|
+
timeSlots?: TimeSlotsByWeekDayInterface[];
|
|
293
|
+
}
|
|
294
|
+
export interface ListAvailableTimeslotsForSessionRequestInterface {
|
|
295
|
+
eventTypeId?: string;
|
|
296
|
+
timeSpan?: DateRangeInterface;
|
|
297
|
+
timeZone?: TimeZoneInterface;
|
|
298
|
+
userIds?: string[];
|
|
299
|
+
}
|
|
300
|
+
export interface ListAvailableTimeslotsForSessionResponseInterface {
|
|
301
|
+
timeSlots?: DateRangeInterface[];
|
|
302
|
+
isoTimeSlots?: IsoDateTimeRangeInterface[];
|
|
303
|
+
}
|
|
282
304
|
export interface ListBookedMeetingsRequestInterface {
|
|
283
305
|
filters?: ListBookedMeetingsRequestFiltersInterface;
|
|
284
306
|
pagingOptions?: PagedRequestOptionsInterface;
|
|
@@ -338,6 +360,17 @@ export interface MeetingMetadataEntryInterface {
|
|
|
338
360
|
key?: string;
|
|
339
361
|
value?: string;
|
|
340
362
|
}
|
|
363
|
+
export interface RecurrenceConfigInterface {
|
|
364
|
+
recurrence?: e.Recurrence;
|
|
365
|
+
startTime?: Date;
|
|
366
|
+
repeatOnDays?: e.Weekday[];
|
|
367
|
+
recurrenceEnd?: RecurrenceEndInterface;
|
|
368
|
+
registrationMode?: e.RegistrationMode;
|
|
369
|
+
}
|
|
370
|
+
export interface RecurrenceEndInterface {
|
|
371
|
+
endDate?: Date;
|
|
372
|
+
occurrenceCount?: number;
|
|
373
|
+
}
|
|
341
374
|
export interface RescheduleMeetingRequestInterface {
|
|
342
375
|
meetingId?: string;
|
|
343
376
|
start?: Date;
|
|
@@ -357,16 +390,7 @@ export interface SessionAttendeesInterface {
|
|
|
357
390
|
comment?: string;
|
|
358
391
|
isBookingConfirmed?: boolean;
|
|
359
392
|
bookingFailureReason?: e.BookingFailureReason;
|
|
360
|
-
|
|
361
|
-
export interface ListAvailableTimeslotsForSessionRequestInterface {
|
|
362
|
-
eventTypeId?: string;
|
|
363
|
-
timeSpan?: DateRangeInterface;
|
|
364
|
-
timeZone?: TimeZoneInterface;
|
|
365
|
-
userIds?: string[];
|
|
366
|
-
}
|
|
367
|
-
export interface ListAvailableTimeslotsForSessionResponseInterface {
|
|
368
|
-
timeSlots?: DateRangeInterface[];
|
|
369
|
-
isoTimeSlots?: IsoDateTimeRangeInterface[];
|
|
393
|
+
contactId?: string;
|
|
370
394
|
}
|
|
371
395
|
export interface SetGeneralAvailabilityRequestInterface {
|
|
372
396
|
hostId?: string;
|
|
@@ -376,6 +400,10 @@ export interface SetGeneralAvailabilityRequestInterface {
|
|
|
376
400
|
timeZone?: TimeZoneInterface;
|
|
377
401
|
weekdaysAvailability?: WeekdayAvailabilityInterface[];
|
|
378
402
|
}
|
|
403
|
+
export interface TimeSlotsByWeekDayInterface {
|
|
404
|
+
day?: e.DayOfWeek;
|
|
405
|
+
timeSlot?: TimeRangeInterface[];
|
|
406
|
+
}
|
|
379
407
|
export interface UpdateAvailabilityRequestInterface {
|
|
380
408
|
}
|
|
381
409
|
export interface UpdateCalendarRequestInterface {
|
|
@@ -48,6 +48,8 @@ export interface MeetingTypeInterface {
|
|
|
48
48
|
sessionTitle?: string;
|
|
49
49
|
registrationCutoff?: RegistrationCutOffInterface;
|
|
50
50
|
hostOrderDetails?: HostOrderDetailsInterface[];
|
|
51
|
+
isEmailRequired?: boolean;
|
|
52
|
+
isPhoneNumberRequired?: boolean;
|
|
51
53
|
}
|
|
52
54
|
export interface RegistrationCutOffInterface {
|
|
53
55
|
unit?: e.RegistrationCutOffUnit;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BookMeetingRequest, BookMeetingResponse, BuildHostIdRequest, BuildHostIdResponse, CalendarMigrationResponse, CancelMeetingRequest, 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, GetGroupRequest, GetGroupResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, GetServiceRequest, GetServiceResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostBookSessionRequest, HostBookSessionResponse, HostDeleteAttendeesRequest, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAttendeesRequest, ListAttendeesResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, RescheduleMeetingRequest, SendMeetingRequestEmailRequest,
|
|
2
|
-
import { BookMeetingRequestInterface, BuildHostIdRequestInterface, CancelMeetingRequestInterface, CheckGroupOrServiceSlugExistRequestInterface, CreateAvailabilityRequestInterface, CreateCalendarRequestInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateMeetingTypeRequestInterface, CreateServiceRequestInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, EnsureGroupCalendarsExistRequestInterface, EnsurePersonalCalendarExistsRequestInterface, EnsureSessionEventCalendarsExistRequestInterface, GetEntityAssociationRequestInterface, GetGroupRequestInterface, GetHostMeetingRequestInterface, GetHostPreferencesRequestInterface, GetHostsForCalendarRequestInterface, GetMeetingTypesForCalendarsRequestInterface, GetServiceRequestInterface, HostBookMeetingRequestInterface, HostBookSessionRequestInterface, HostDeleteAttendeesRequestInterface, HostGetCalendarRequestInterface, HostGetMeetingTypeRequestInterface, HostListMeetingTypesRequestInterface, IsCalendarConfiguredRequestInterface, IsHostConfiguredRequestInterface, ListAttendeesRequestInterface, ListAvailabilityRequestInterface, ListBookedMeetingsRequestInterface, ListGroupsRequestInterface, ListServicesRequestInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface,
|
|
1
|
+
import { BookMeetingRequest, BookMeetingResponse, BuildHostIdRequest, BuildHostIdResponse, CalendarMigrationResponse, CancelMeetingRequest, 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, GetGroupRequest, GetGroupResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, GetServiceRequest, GetServiceResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostBookSessionRequest, HostBookSessionResponse, HostDeleteAttendeesRequest, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAttendeesRequest, ListAttendeesResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListAvailableTimeslotsForRecurringSessionRequest, ListAvailableTimeslotsForRecurringSessionResponse, ListAvailableTimeslotsForSessionRequest, ListAvailableTimeslotsForSessionResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest } from './objects/';
|
|
2
|
+
import { BookMeetingRequestInterface, BuildHostIdRequestInterface, CancelMeetingRequestInterface, CheckGroupOrServiceSlugExistRequestInterface, CreateAvailabilityRequestInterface, CreateCalendarRequestInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateMeetingTypeRequestInterface, CreateServiceRequestInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, EnsureGroupCalendarsExistRequestInterface, EnsurePersonalCalendarExistsRequestInterface, EnsureSessionEventCalendarsExistRequestInterface, GetEntityAssociationRequestInterface, GetGroupRequestInterface, GetHostMeetingRequestInterface, GetHostPreferencesRequestInterface, GetHostsForCalendarRequestInterface, GetMeetingTypesForCalendarsRequestInterface, GetServiceRequestInterface, HostBookMeetingRequestInterface, HostBookSessionRequestInterface, HostDeleteAttendeesRequestInterface, HostGetCalendarRequestInterface, HostGetMeetingTypeRequestInterface, HostListMeetingTypesRequestInterface, IsCalendarConfiguredRequestInterface, IsHostConfiguredRequestInterface, ListAttendeesRequestInterface, ListAvailabilityRequestInterface, ListAvailableTimeslotsForRecurringSessionRequestInterface, ListAvailableTimeslotsForSessionRequestInterface, ListBookedMeetingsRequestInterface, 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";
|
|
@@ -60,6 +60,7 @@ export declare class MeetingHostApiService {
|
|
|
60
60
|
cancelSession(r: CancelMeetingRequest | CancelMeetingRequestInterface): Observable<HttpResponse<null>>;
|
|
61
61
|
rescheduleSession(r: RescheduleMeetingRequest | RescheduleMeetingRequestInterface): Observable<HttpResponse<null>>;
|
|
62
62
|
listAvailableTimeslotsForSession(r: ListAvailableTimeslotsForSessionRequest | ListAvailableTimeslotsForSessionRequestInterface): Observable<ListAvailableTimeslotsForSessionResponse>;
|
|
63
|
+
listAvailableTimeslotsForRecurringSession(r: ListAvailableTimeslotsForRecurringSessionRequest | ListAvailableTimeslotsForRecurringSessionRequestInterface): Observable<ListAvailableTimeslotsForRecurringSessionResponse>;
|
|
63
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<MeetingHostApiService, never>;
|
|
64
65
|
static ɵprov: i0.ɵɵInjectableDeclaration<MeetingHostApiService>;
|
|
65
66
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i from '../interfaces';
|
|
2
|
+
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
3
|
+
export declare class Access implements i.AccessInterface {
|
|
4
|
+
scope: string[];
|
|
5
|
+
public: boolean;
|
|
6
|
+
static fromProto(proto: any): Access;
|
|
7
|
+
constructor(kwargs?: i.AccessInterface);
|
|
8
|
+
toApiJson(): object;
|
|
9
|
+
}
|
|
10
|
+
export declare class MCPOptions implements i.MCPOptionsInterface {
|
|
11
|
+
serverId: string[];
|
|
12
|
+
static fromProto(proto: any): MCPOptions;
|
|
13
|
+
constructor(kwargs?: i.MCPOptionsInterface);
|
|
14
|
+
toApiJson(): object;
|
|
15
|
+
}
|
|
@@ -7,6 +7,7 @@ export { EventTypeDateRange, Field, Form, MeetingType, RegistrationCutOff, Relat
|
|
|
7
7
|
export { EventGroupAndServiceAssociations, Group, Service, } from './groups-and-services';
|
|
8
8
|
export { BookMeetingRequest, BookMeetingResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GetServiceRequest, GetServiceResponse, GetSessionInviteeMeetingInfoRequest, GetSessionInviteeMeetingInfoResponse, GetSessionMeetingRequest, GetSessionMeetingResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingResponse, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, InviteeDeregisterSessionMeetingRequest, InviteeRegisterSessionMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, BookMeetingRequestMetadataEntry, RegisterSessionRequest, } from './meeting-guest';
|
|
9
9
|
export { FieldMask, } from './field-mask';
|
|
10
|
-
export {
|
|
10
|
+
export { IsCalendarConfiguredRequestApplicationContextPropertiesEntry, BuildHostIdRequestApplicationContextPropertiesEntry, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, AvailabilityRule, AvailabilityRuleList, BuildHostIdRequest, BuildHostIdResponse, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntry, CalendarMigrationResponse, CancelMeetingRequest, 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, ListBookedMeetingsRequestFilters, ListAvailabilityRequestFilters, GetEntityAssociationRequest, GetEntityAssociationResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostBookSessionRequest, HostBookSessionResponse, HostDeleteAttendeesRequest, HostDetails, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, GetHostsForCalendarResponseHostUserAvailabilityRuleEntry, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAttendeesRequest, ListAttendeesResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListAvailableTimeslotsForRecurringSessionRequest, ListAvailableTimeslotsForRecurringSessionResponse, ListAvailableTimeslotsForSessionRequest, ListAvailableTimeslotsForSessionResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, Meeting, MeetingTypeList, UpdateMeetingMetadataRequestMetadataEntry, MeetingMetadataEntry, RecurrenceConfig, RecurrenceEnd, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SessionAttendees, SetGeneralAvailabilityRequest, TimeSlotsByWeekDay, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
|
|
11
|
+
export { Access, MCPOptions, } from './annotations';
|
|
11
12
|
export { TimeOfDay, } from './timeofday';
|
|
12
13
|
export { DateTime, TimeZone, } from './datetime';
|
|
@@ -3,22 +3,22 @@ import { DateRange } from './date-range';
|
|
|
3
3
|
import { FieldMask } from './field-mask';
|
|
4
4
|
import { Group, Service } from './groups-and-services';
|
|
5
5
|
import { MeetingType, RegistrationCutOff } from './meeting-type';
|
|
6
|
-
import { TimeRange, Calendar, Preferences, HostUser, Contact, EmailsToDelete, PagedRequestOptions, PagedResponseMetadata, Attendee, Answers, Attachment
|
|
6
|
+
import { TimeRange, Calendar, Preferences, HostUser, Contact, EmailsToDelete, PagedRequestOptions, PagedResponseMetadata, IsoDateTimeRange, Attendee, Answers, Attachment } from './shared';
|
|
7
7
|
import { TimeZone } from './';
|
|
8
8
|
import * as e from '../enums';
|
|
9
9
|
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
10
|
-
export declare class
|
|
10
|
+
export declare class IsCalendarConfiguredRequestApplicationContextPropertiesEntry implements i.IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
|
|
11
11
|
key: string;
|
|
12
12
|
value: string;
|
|
13
|
-
static fromProto(proto: any):
|
|
14
|
-
constructor(kwargs?: i.
|
|
13
|
+
static fromProto(proto: any): IsCalendarConfiguredRequestApplicationContextPropertiesEntry;
|
|
14
|
+
constructor(kwargs?: i.IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface);
|
|
15
15
|
toApiJson(): object;
|
|
16
16
|
}
|
|
17
|
-
export declare class
|
|
17
|
+
export declare class BuildHostIdRequestApplicationContextPropertiesEntry implements i.BuildHostIdRequestApplicationContextPropertiesEntryInterface {
|
|
18
18
|
key: string;
|
|
19
19
|
value: string;
|
|
20
|
-
static fromProto(proto: any):
|
|
21
|
-
constructor(kwargs?: i.
|
|
20
|
+
static fromProto(proto: any): BuildHostIdRequestApplicationContextPropertiesEntry;
|
|
21
|
+
constructor(kwargs?: i.BuildHostIdRequestApplicationContextPropertiesEntryInterface);
|
|
22
22
|
toApiJson(): object;
|
|
23
23
|
}
|
|
24
24
|
export declare class EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry implements i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
|
|
@@ -75,6 +75,8 @@ export declare class CalendarMigrationResponse implements i.CalendarMigrationRes
|
|
|
75
75
|
export declare class CancelMeetingRequest implements i.CancelMeetingRequestInterface {
|
|
76
76
|
meetingId: string;
|
|
77
77
|
cancellationReason: string;
|
|
78
|
+
isSeriesCancellation: boolean;
|
|
79
|
+
sessionId: string;
|
|
78
80
|
static fromProto(proto: any): CancelMeetingRequest;
|
|
79
81
|
constructor(kwargs?: i.CancelMeetingRequestInterface);
|
|
80
82
|
toApiJson(): object;
|
|
@@ -240,13 +242,6 @@ export declare class EnsureSessionEventCalendarsExistResponse implements i.Ensur
|
|
|
240
242
|
constructor(kwargs?: i.EnsureSessionEventCalendarsExistResponseInterface);
|
|
241
243
|
toApiJson(): object;
|
|
242
244
|
}
|
|
243
|
-
export declare class ListAvailabilityRequestFilters implements i.ListAvailabilityRequestFiltersInterface {
|
|
244
|
-
hostId: string;
|
|
245
|
-
meetingTypeId: string;
|
|
246
|
-
static fromProto(proto: any): ListAvailabilityRequestFilters;
|
|
247
|
-
constructor(kwargs?: i.ListAvailabilityRequestFiltersInterface);
|
|
248
|
-
toApiJson(): object;
|
|
249
|
-
}
|
|
250
245
|
export declare class ListBookedMeetingsRequestFilters implements i.ListBookedMeetingsRequestFiltersInterface {
|
|
251
246
|
meetingTypeIds: string[];
|
|
252
247
|
hostId: string;
|
|
@@ -255,6 +250,13 @@ export declare class ListBookedMeetingsRequestFilters implements i.ListBookedMee
|
|
|
255
250
|
constructor(kwargs?: i.ListBookedMeetingsRequestFiltersInterface);
|
|
256
251
|
toApiJson(): object;
|
|
257
252
|
}
|
|
253
|
+
export declare class ListAvailabilityRequestFilters implements i.ListAvailabilityRequestFiltersInterface {
|
|
254
|
+
hostId: string;
|
|
255
|
+
meetingTypeId: string;
|
|
256
|
+
static fromProto(proto: any): ListAvailabilityRequestFilters;
|
|
257
|
+
constructor(kwargs?: i.ListAvailabilityRequestFiltersInterface);
|
|
258
|
+
toApiJson(): object;
|
|
259
|
+
}
|
|
258
260
|
export declare class GetEntityAssociationRequest implements i.GetEntityAssociationRequestInterface {
|
|
259
261
|
entityId: string;
|
|
260
262
|
static fromProto(proto: any): GetEntityAssociationRequest;
|
|
@@ -357,6 +359,8 @@ export declare class HostBookSessionRequest implements i.HostBookSessionRequestI
|
|
|
357
359
|
meetingTypeId: string;
|
|
358
360
|
hostId: string;
|
|
359
361
|
calendarId: string;
|
|
362
|
+
isRecurring: boolean;
|
|
363
|
+
recurrenceConfig: RecurrenceConfig;
|
|
360
364
|
static fromProto(proto: any): HostBookSessionRequest;
|
|
361
365
|
constructor(kwargs?: i.HostBookSessionRequestInterface);
|
|
362
366
|
toApiJson(): object;
|
|
@@ -485,6 +489,36 @@ export declare class ListAvailabilityResponse implements i.ListAvailabilityRespo
|
|
|
485
489
|
constructor(kwargs?: i.ListAvailabilityResponseInterface);
|
|
486
490
|
toApiJson(): object;
|
|
487
491
|
}
|
|
492
|
+
export declare class ListAvailableTimeslotsForRecurringSessionRequest implements i.ListAvailableTimeslotsForRecurringSessionRequestInterface {
|
|
493
|
+
userIds: string[];
|
|
494
|
+
duration: string;
|
|
495
|
+
timeZone: TimeZone;
|
|
496
|
+
static fromProto(proto: any): ListAvailableTimeslotsForRecurringSessionRequest;
|
|
497
|
+
constructor(kwargs?: i.ListAvailableTimeslotsForRecurringSessionRequestInterface);
|
|
498
|
+
toApiJson(): object;
|
|
499
|
+
}
|
|
500
|
+
export declare class ListAvailableTimeslotsForRecurringSessionResponse implements i.ListAvailableTimeslotsForRecurringSessionResponseInterface {
|
|
501
|
+
timeSlots: TimeSlotsByWeekDay[];
|
|
502
|
+
static fromProto(proto: any): ListAvailableTimeslotsForRecurringSessionResponse;
|
|
503
|
+
constructor(kwargs?: i.ListAvailableTimeslotsForRecurringSessionResponseInterface);
|
|
504
|
+
toApiJson(): object;
|
|
505
|
+
}
|
|
506
|
+
export declare class ListAvailableTimeslotsForSessionRequest implements i.ListAvailableTimeslotsForSessionRequestInterface {
|
|
507
|
+
eventTypeId: string;
|
|
508
|
+
timeSpan: DateRange;
|
|
509
|
+
timeZone: TimeZone;
|
|
510
|
+
userIds: string[];
|
|
511
|
+
static fromProto(proto: any): ListAvailableTimeslotsForSessionRequest;
|
|
512
|
+
constructor(kwargs?: i.ListAvailableTimeslotsForSessionRequestInterface);
|
|
513
|
+
toApiJson(): object;
|
|
514
|
+
}
|
|
515
|
+
export declare class ListAvailableTimeslotsForSessionResponse implements i.ListAvailableTimeslotsForSessionResponseInterface {
|
|
516
|
+
timeSlots: DateRange[];
|
|
517
|
+
isoTimeSlots: IsoDateTimeRange[];
|
|
518
|
+
static fromProto(proto: any): ListAvailableTimeslotsForSessionResponse;
|
|
519
|
+
constructor(kwargs?: i.ListAvailableTimeslotsForSessionResponseInterface);
|
|
520
|
+
toApiJson(): object;
|
|
521
|
+
}
|
|
488
522
|
export declare class ListBookedMeetingsRequest implements i.ListBookedMeetingsRequestInterface {
|
|
489
523
|
filters: ListBookedMeetingsRequestFilters;
|
|
490
524
|
pagingOptions: PagedRequestOptions;
|
|
@@ -574,6 +608,23 @@ export declare class MeetingMetadataEntry implements i.MeetingMetadataEntryInter
|
|
|
574
608
|
constructor(kwargs?: i.MeetingMetadataEntryInterface);
|
|
575
609
|
toApiJson(): object;
|
|
576
610
|
}
|
|
611
|
+
export declare class RecurrenceConfig implements i.RecurrenceConfigInterface {
|
|
612
|
+
recurrence: e.Recurrence;
|
|
613
|
+
startTime: Date;
|
|
614
|
+
repeatOnDays: e.Weekday[];
|
|
615
|
+
recurrenceEnd: RecurrenceEnd;
|
|
616
|
+
registrationMode: e.RegistrationMode;
|
|
617
|
+
static fromProto(proto: any): RecurrenceConfig;
|
|
618
|
+
constructor(kwargs?: i.RecurrenceConfigInterface);
|
|
619
|
+
toApiJson(): object;
|
|
620
|
+
}
|
|
621
|
+
export declare class RecurrenceEnd implements i.RecurrenceEndInterface {
|
|
622
|
+
endDate: Date;
|
|
623
|
+
occurrenceCount: number;
|
|
624
|
+
static fromProto(proto: any): RecurrenceEnd;
|
|
625
|
+
constructor(kwargs?: i.RecurrenceEndInterface);
|
|
626
|
+
toApiJson(): object;
|
|
627
|
+
}
|
|
577
628
|
export declare class RescheduleMeetingRequest implements i.RescheduleMeetingRequestInterface {
|
|
578
629
|
meetingId: string;
|
|
579
630
|
start: Date;
|
|
@@ -599,26 +650,11 @@ export declare class SessionAttendees implements i.SessionAttendeesInterface {
|
|
|
599
650
|
comment: string;
|
|
600
651
|
isBookingConfirmed: boolean;
|
|
601
652
|
bookingFailureReason: e.BookingFailureReason;
|
|
653
|
+
contactId: string;
|
|
602
654
|
static fromProto(proto: any): SessionAttendees;
|
|
603
655
|
constructor(kwargs?: i.SessionAttendeesInterface);
|
|
604
656
|
toApiJson(): object;
|
|
605
657
|
}
|
|
606
|
-
export declare class ListAvailableTimeslotsForSessionRequest implements i.ListAvailableTimeslotsForSessionRequestInterface {
|
|
607
|
-
eventTypeId: string;
|
|
608
|
-
timeSpan: DateRange;
|
|
609
|
-
timeZone: TimeZone;
|
|
610
|
-
userIds: string[];
|
|
611
|
-
static fromProto(proto: any): ListAvailableTimeslotsForSessionRequest;
|
|
612
|
-
constructor(kwargs?: i.ListAvailableTimeslotsForSessionRequestInterface);
|
|
613
|
-
toApiJson(): object;
|
|
614
|
-
}
|
|
615
|
-
export declare class ListAvailableTimeslotsForSessionResponse implements i.ListAvailableTimeslotsForSessionResponseInterface {
|
|
616
|
-
timeSlots: DateRange[];
|
|
617
|
-
isoTimeSlots: IsoDateTimeRange[];
|
|
618
|
-
static fromProto(proto: any): ListAvailableTimeslotsForSessionResponse;
|
|
619
|
-
constructor(kwargs?: i.ListAvailableTimeslotsForSessionResponseInterface);
|
|
620
|
-
toApiJson(): object;
|
|
621
|
-
}
|
|
622
658
|
export declare class SetGeneralAvailabilityRequest implements i.SetGeneralAvailabilityRequestInterface {
|
|
623
659
|
hostId: string;
|
|
624
660
|
meetingTypeId: string;
|
|
@@ -630,6 +666,13 @@ export declare class SetGeneralAvailabilityRequest implements i.SetGeneralAvaila
|
|
|
630
666
|
constructor(kwargs?: i.SetGeneralAvailabilityRequestInterface);
|
|
631
667
|
toApiJson(): object;
|
|
632
668
|
}
|
|
669
|
+
export declare class TimeSlotsByWeekDay implements i.TimeSlotsByWeekDayInterface {
|
|
670
|
+
day: e.DayOfWeek;
|
|
671
|
+
timeSlot: TimeRange[];
|
|
672
|
+
static fromProto(proto: any): TimeSlotsByWeekDay;
|
|
673
|
+
constructor(kwargs?: i.TimeSlotsByWeekDayInterface);
|
|
674
|
+
toApiJson(): object;
|
|
675
|
+
}
|
|
633
676
|
export declare class UpdateAvailabilityRequest implements i.UpdateAvailabilityRequestInterface {
|
|
634
677
|
static fromProto(proto: any): UpdateAvailabilityRequest;
|
|
635
678
|
constructor(kwargs?: i.UpdateAvailabilityRequestInterface);
|
|
@@ -59,6 +59,8 @@ export declare class MeetingType implements i.MeetingTypeInterface {
|
|
|
59
59
|
sessionTitle: string;
|
|
60
60
|
registrationCutoff: RegistrationCutOff;
|
|
61
61
|
hostOrderDetails: HostOrderDetails[];
|
|
62
|
+
isEmailRequired: boolean;
|
|
63
|
+
isPhoneNumberRequired: boolean;
|
|
62
64
|
static fromProto(proto: any): MeetingType;
|
|
63
65
|
constructor(kwargs?: i.MeetingTypeInterface);
|
|
64
66
|
toApiJson(): object;
|
|
@@ -36,6 +36,8 @@ export interface MeetingType {
|
|
|
36
36
|
registrationCutoff?: RegistrationCutOffInterface;
|
|
37
37
|
sessionTitle?: string;
|
|
38
38
|
hostOrderDetails?: HostOrderDetailsInterface[];
|
|
39
|
+
isEmailRequired?: boolean;
|
|
40
|
+
isPhoneNumberRequired?: boolean;
|
|
39
41
|
}
|
|
40
42
|
export type MeetingTypeFormField = Required<FieldInterface>;
|
|
41
43
|
export type MeetingTypeForm = Required<Omit<FormInterface, "fields">> & {
|