@vendasta/meetings 0.99.2 → 0.99.5
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-type.enum.mjs +7 -1
- package/esm2020/lib/_internal/enums/shared.enum.mjs +2 -1
- package/esm2020/lib/_internal/interfaces/google-meet.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.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/meeting-guest.api.service.mjs +6 -2
- package/esm2020/lib/_internal/meeting-host.api.service.mjs +12 -2
- package/esm2020/lib/_internal/objects/google-meet.mjs +4 -1
- package/esm2020/lib/_internal/objects/index.mjs +13 -13
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +39 -1
- package/esm2020/lib/_internal/objects/meeting-host.mjs +143 -6
- package/esm2020/lib/_internal/objects/meeting-type.mjs +34 -5
- package/esm2020/lib/_internal/objects/shared.mjs +4 -1
- package/esm2020/lib/guest/guest.service.mjs +1 -1
- package/esm2020/lib/host/host.service.mjs +6 -1
- package/esm2020/lib/shared/host-user.mjs +3 -2
- package/esm2020/lib/shared/meeting-type.mjs +34 -29
- package/fesm2015/vendasta-meetings.mjs +275 -33
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +277 -35
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/enums/index.d.ts +1 -1
- package/lib/_internal/enums/meeting-type.enum.d.ts +5 -0
- package/lib/_internal/enums/shared.enum.d.ts +2 -1
- package/lib/_internal/interfaces/google-meet.interface.d.ts +1 -0
- package/lib/_internal/interfaces/index.d.ts +12 -12
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +7 -0
- package/lib/_internal/interfaces/meeting-host.interface.d.ts +28 -3
- package/lib/_internal/interfaces/meeting-type.interface.d.ts +5 -1
- package/lib/_internal/interfaces/shared.interface.d.ts +1 -0
- package/lib/_internal/meeting-guest.api.service.d.ts +3 -2
- package/lib/_internal/meeting-host.api.service.d.ts +4 -2
- package/lib/_internal/objects/google-meet.d.ts +1 -0
- package/lib/_internal/objects/index.d.ts +12 -12
- package/lib/_internal/objects/meeting-guest.d.ts +10 -0
- package/lib/_internal/objects/meeting-host.d.ts +44 -7
- package/lib/_internal/objects/meeting-type.d.ts +8 -1
- package/lib/_internal/objects/shared.d.ts +1 -0
- package/lib/host/host.service.d.ts +5 -2
- package/lib/shared/host-user.d.ts +1 -0
- package/lib/shared/meeting-type.d.ts +4 -4
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { CalendarSource, MeetingSource, MeetingSourceStatus, } from './meeting-source.enum';
|
|
2
2
|
export { ZoomApprovalType, ZoomMeetingRecurrenceType, ZoomMeetingType, ZoomMonthlyWeek, ZoomMonthlyWeekDay, ZoomRegistrationType, ZoomWeeklyDay, } from './zoom.enum';
|
|
3
3
|
export { CalendarType, FormFieldType, OnBoardingState, } from './shared.enum';
|
|
4
|
-
export { DateRangeType, MeetingLocationType, RelativeTimeUnit, TeamEventMeetingType, } from './meeting-type.enum';
|
|
4
|
+
export { DateRangeType, MeetingLocationType, RegistrationCutOffUnit, RelativeTimeUnit, TeamEventMeetingType, } from './meeting-type.enum';
|
|
5
5
|
export { DayOfWeek, } from './dayofweek.enum';
|
|
@@ -7,6 +7,11 @@ export declare enum MeetingLocationType {
|
|
|
7
7
|
IN_PERSON_USER_SITE = 1,
|
|
8
8
|
IN_PERSON_CLIENT_SITE = 2
|
|
9
9
|
}
|
|
10
|
+
export declare enum RegistrationCutOffUnit {
|
|
11
|
+
REGISTRATION_CUTOFF_DAYS = 0,
|
|
12
|
+
REGISTRATION_CUTOFF_HOURS = 1,
|
|
13
|
+
REGISTRATION_CUTOFF_MINUTES = 2
|
|
14
|
+
}
|
|
10
15
|
export declare enum RelativeTimeUnit {
|
|
11
16
|
DAYS = 0,
|
|
12
17
|
WEEKS = 1,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export { MeetingSourceInfoInterface, MeetingSourceListRequestInterface, MeetingSourceListResponseInterface, MeetingSourceQueryInterface, } from
|
|
2
|
-
export { CreateZoomMeetingRequestInterface, CreateZoomMeetingResponseInterface, ZoomMeetingRecurrenceInterface, ZoomMeetingSettingsInterface, ZoomMeetingTrackingFieldInterface, ZoomOccurrenceInterface, } from
|
|
3
|
-
export { GoogleMeetConferenceDataInterface, GoogleMeetConferenceRequestStatusInterface, GoogleMeetConferenceSolutionInterface, GoogleMeetConferenceSolutionKeyInterface, GoogleMeetCreateConferenceRequestInterface, GoogleMeetCreateMeetingRequestInterface, GoogleMeetCreateMeetingResponseInterface, GoogleMeetEntryPointInterface, GoogleMeetListMeetingsRequestInterface, GoogleMeetListMeetingsResponseInterface, GoogleMeetMeetingInterface, GoogleMeetMeetingAttendeeInterface, GoogleMeetMeetingCreatorInterface, GoogleMeetMeetingDateTimeInterface, GoogleMeetMeetingOrganizerInterface, GoogleMeetMeetingReminderInterface, GoogleMeetMeetingRemindersInterface, } from
|
|
4
|
-
export { AnswerInterface, AnswersInterface, CalendarApplicationContextEntryInterface, AttachmentInterface, AttendeeInterface, CalendarInterface, ContactInterface, HostInterface, HostUserInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, PreferencesInterface, TimeRangeInterface, } from
|
|
5
|
-
export { DateRangeInterface
|
|
6
|
-
export { EventTypeDateRangeInterface, FieldInterface, FormInterface, MeetingTypeInterface, RelativeDateRangeInterface, } from
|
|
7
|
-
export { EventGroupAndServiceAssociationsInterface, GroupInterface, ServiceInterface, } from
|
|
8
|
-
export { BookMeetingRequestInterface, BookMeetingResponseInterface, GetCalendarRequestInterface, GetCalendarResponseInterface, GetGroupRequestInterface, GetGroupResponseInterface, GetHostRequestInterface, GetHostResponseInterface, GetMeetingTypeRequestInterface, GetMeetingTypeResponseInterface, GetServiceRequestInterface, GetServiceResponseInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingResponseInterface, GuestIsHostConfiguredRequestInterface, GuestIsHostConfiguredResponseInterface, GuestRescheduleMeetingRequestInterface, IsoDateTimeRangeInterface, ListAvailableTimeSlotsRequestInterface, ListAvailableTimeSlotsResponseInterface, ListMeetingTypesRequestInterface, ListMeetingTypesResponseInterface, BookMeetingRequestMetadataEntryInterface, } from
|
|
9
|
-
export { FieldMaskInterface
|
|
10
|
-
export {
|
|
11
|
-
export { TimeOfDayInterface
|
|
12
|
-
export { DateTimeInterface, TimeZoneInterface
|
|
1
|
+
export { MeetingSourceInfoInterface, MeetingSourceListRequestInterface, MeetingSourceListResponseInterface, MeetingSourceQueryInterface, } from "./meeting-source.interface";
|
|
2
|
+
export { CreateZoomMeetingRequestInterface, CreateZoomMeetingResponseInterface, ZoomMeetingRecurrenceInterface, ZoomMeetingSettingsInterface, ZoomMeetingTrackingFieldInterface, ZoomOccurrenceInterface, } from "./zoom.interface";
|
|
3
|
+
export { GoogleMeetConferenceDataInterface, GoogleMeetConferenceRequestStatusInterface, GoogleMeetConferenceSolutionInterface, GoogleMeetConferenceSolutionKeyInterface, GoogleMeetCreateConferenceRequestInterface, GoogleMeetCreateMeetingRequestInterface, GoogleMeetCreateMeetingResponseInterface, GoogleMeetEntryPointInterface, GoogleMeetListMeetingsRequestInterface, GoogleMeetListMeetingsResponseInterface, GoogleMeetMeetingInterface, GoogleMeetMeetingAttendeeInterface, GoogleMeetMeetingCreatorInterface, GoogleMeetMeetingDateTimeInterface, GoogleMeetMeetingOrganizerInterface, GoogleMeetMeetingReminderInterface, GoogleMeetMeetingRemindersInterface, } from "./google-meet.interface";
|
|
4
|
+
export { AnswerInterface, AnswersInterface, CalendarApplicationContextEntryInterface, AttachmentInterface, AttendeeInterface, CalendarInterface, ContactInterface, HostInterface, HostUserInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, PreferencesInterface, TimeRangeInterface, } from "./shared.interface";
|
|
5
|
+
export { DateRangeInterface } from "./date-range.interface";
|
|
6
|
+
export { EventTypeDateRangeInterface, FieldInterface, FormInterface, MeetingTypeInterface, RegistrationCutOffInterface, RelativeDateRangeInterface, } from "./meeting-type.interface";
|
|
7
|
+
export { EventGroupAndServiceAssociationsInterface, GroupInterface, ServiceInterface, } from "./groups-and-services.interface";
|
|
8
|
+
export { BookMeetingRequestInterface, BookMeetingResponseInterface, GetCalendarRequestInterface, GetCalendarResponseInterface, GetGroupRequestInterface, GetGroupResponseInterface, GetHostRequestInterface, GetHostResponseInterface, GetMeetingTypeRequestInterface, GetMeetingTypeResponseInterface, GetServiceRequestInterface, GetServiceResponseInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingResponseInterface, GuestIsHostConfiguredRequestInterface, GuestIsHostConfiguredResponseInterface, GuestRescheduleMeetingRequestInterface, IsoDateTimeRangeInterface, ListAvailableTimeSlotsRequestInterface, ListAvailableTimeSlotsResponseInterface, ListMeetingTypesRequestInterface, ListMeetingTypesResponseInterface, BookMeetingRequestMetadataEntryInterface, RegisterSessionRequestInterface, } from "./meeting-guest.interface";
|
|
9
|
+
export { FieldMaskInterface } from "./field-mask.interface";
|
|
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, HostDetailsInterface, HostGetCalendarRequestInterface, HostGetCalendarResponseInterface, HostGetMeetingTypeRequestInterface, HostGetMeetingTypeResponseInterface, HostListMeetingTypesRequestInterface, HostListMeetingTypesResponseInterface, GetHostsForCalendarResponseHostUserAvailabilityRuleEntryInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponseInterface, IsHostConfiguredRequestInterface, IsHostConfiguredResponseInterface, ListAvailabilityRequestInterface, ListAvailabilityResponseInterface, ListBookedMeetingsRequestInterface, ListBookedMeetingsResponseInterface, ListGroupsRequestInterface, ListGroupsResponseInterface, ListServicesRequestInterface, ListServicesResponseInterface, MeetingInterface, MeetingTypeListInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, MeetingMetadataEntryInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from "./meeting-host.interface";
|
|
11
|
+
export { TimeOfDayInterface } from "./timeofday.interface";
|
|
12
|
+
export { DateTimeInterface, TimeZoneInterface } from "./datetime.interface";
|
|
@@ -120,3 +120,10 @@ export interface BookMeetingRequestMetadataEntryInterface {
|
|
|
120
120
|
key?: string;
|
|
121
121
|
value?: string;
|
|
122
122
|
}
|
|
123
|
+
export interface RegisterSessionRequestInterface {
|
|
124
|
+
meetingId?: string;
|
|
125
|
+
attendees?: ContactInterface[];
|
|
126
|
+
comment?: string;
|
|
127
|
+
formAnswers?: AnswersInterface;
|
|
128
|
+
recaptchaToken?: string;
|
|
129
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
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
|
-
import { MeetingTypeInterface } from './meeting-type.interface';
|
|
4
|
+
import { MeetingTypeInterface, RegistrationCutOffInterface } from './meeting-type.interface';
|
|
5
5
|
import { TimeRangeInterface, CalendarInterface, PreferencesInterface, HostUserInterface, ContactInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, 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
|
}
|
|
@@ -127,6 +127,12 @@ export interface EnsurePersonalCalendarExistsRequestInterface {
|
|
|
127
127
|
export interface EnsurePersonalCalendarExistsResponseInterface {
|
|
128
128
|
calendarId?: string;
|
|
129
129
|
}
|
|
130
|
+
export interface EnsureSessionEventCalendarsExistRequestInterface {
|
|
131
|
+
externalId?: string;
|
|
132
|
+
}
|
|
133
|
+
export interface EnsureSessionEventCalendarsExistResponseInterface {
|
|
134
|
+
calendarId?: string;
|
|
135
|
+
}
|
|
130
136
|
export interface ListBookedMeetingsRequestFiltersInterface {
|
|
131
137
|
meetingTypeIds?: string[];
|
|
132
138
|
hostId?: string;
|
|
@@ -186,6 +192,25 @@ export interface HostBookMeetingRequestInterface {
|
|
|
186
192
|
export interface HostBookMeetingResponseInterface {
|
|
187
193
|
meetingId?: string;
|
|
188
194
|
}
|
|
195
|
+
export interface HostBookSessionRequestInterface {
|
|
196
|
+
title?: string;
|
|
197
|
+
location?: string;
|
|
198
|
+
locationType?: e.MeetingLocationType;
|
|
199
|
+
duration?: string;
|
|
200
|
+
description?: string;
|
|
201
|
+
maxAttendees?: number;
|
|
202
|
+
logoUrl?: string;
|
|
203
|
+
hostUsers?: HostUserInterface[];
|
|
204
|
+
registrationCutoff?: RegistrationCutOffInterface;
|
|
205
|
+
timeSlot?: DateRangeInterface;
|
|
206
|
+
slug?: string;
|
|
207
|
+
start?: Date;
|
|
208
|
+
meetingTypeId?: string;
|
|
209
|
+
}
|
|
210
|
+
export interface HostBookSessionResponseInterface {
|
|
211
|
+
meetingId?: string;
|
|
212
|
+
bookingUrl?: string;
|
|
213
|
+
}
|
|
189
214
|
export interface HostDetailsInterface {
|
|
190
215
|
hostId?: string;
|
|
191
216
|
name?: string;
|
|
@@ -45,8 +45,12 @@ export interface MeetingTypeInterface {
|
|
|
45
45
|
dateRange?: EventTypeDateRangeInterface;
|
|
46
46
|
meetingType?: e.TeamEventMeetingType;
|
|
47
47
|
attendeeCount?: number;
|
|
48
|
-
registrationCutoff?: number;
|
|
49
48
|
sessionTitle?: string;
|
|
49
|
+
registrationCutoff?: RegistrationCutOffInterface;
|
|
50
|
+
}
|
|
51
|
+
export interface RegistrationCutOffInterface {
|
|
52
|
+
unit?: e.RegistrationCutOffUnit;
|
|
53
|
+
value?: number;
|
|
50
54
|
}
|
|
51
55
|
export interface RelativeDateRangeInterface {
|
|
52
56
|
unit?: e.RelativeTimeUnit;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BookMeetingRequest, BookMeetingResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GetServiceRequest, GetServiceResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingResponse, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse } from './objects/';
|
|
2
|
-
import { BookMeetingRequestInterface, GetCalendarRequestInterface, GetGroupRequestInterface, GetHostRequestInterface, GetMeetingTypeRequestInterface, GetServiceRequestInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestIsHostConfiguredRequestInterface, GuestRescheduleMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListMeetingTypesRequestInterface } from './interfaces/';
|
|
1
|
+
import { BookMeetingRequest, BookMeetingResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GetServiceRequest, GetServiceResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingResponse, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, RegisterSessionRequest } from './objects/';
|
|
2
|
+
import { BookMeetingRequestInterface, GetCalendarRequestInterface, GetGroupRequestInterface, GetHostRequestInterface, GetMeetingTypeRequestInterface, GetServiceRequestInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestIsHostConfiguredRequestInterface, GuestRescheduleMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListMeetingTypesRequestInterface, RegisterSessionRequestInterface } from './interfaces/';
|
|
3
3
|
import { HttpResponse } from '@angular/common/http';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -20,6 +20,7 @@ export declare class MeetingGuestApiService {
|
|
|
20
20
|
getGroup(r: GetGroupRequest | GetGroupRequestInterface): Observable<GetGroupResponse>;
|
|
21
21
|
isHostConfigured(r: GuestIsHostConfiguredRequest | GuestIsHostConfiguredRequestInterface): Observable<GuestIsHostConfiguredResponse>;
|
|
22
22
|
getService(r: GetServiceRequest | GetServiceRequestInterface): Observable<GetServiceResponse>;
|
|
23
|
+
registerSession(r: RegisterSessionRequest | RegisterSessionRequestInterface): Observable<HttpResponse<null>>;
|
|
23
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<MeetingGuestApiService, never>;
|
|
24
25
|
static ɵprov: i0.ɵɵInjectableDeclaration<MeetingGuestApiService>;
|
|
25
26
|
}
|
|
@@ -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, GetEntityAssociationRequest, GetEntityAssociationResponse, GetGroupRequest, GetGroupResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, GetServiceRequest, GetServiceResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAvailabilityRequest, ListAvailabilityResponse, 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, GetEntityAssociationRequestInterface, GetGroupRequestInterface, GetHostMeetingRequestInterface, GetHostPreferencesRequestInterface, GetHostsForCalendarRequestInterface, GetMeetingTypesForCalendarsRequestInterface, GetServiceRequestInterface, HostBookMeetingRequestInterface, HostGetCalendarRequestInterface, HostGetMeetingTypeRequestInterface, HostListMeetingTypesRequestInterface, IsCalendarConfiguredRequestInterface, IsHostConfiguredRequestInterface, ListAvailabilityRequestInterface, ListBookedMeetingsRequestInterface, ListGroupsRequestInterface, ListServicesRequestInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface } from './interfaces/';
|
|
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, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAvailabilityRequest, ListAvailabilityResponse, 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, HostGetCalendarRequestInterface, HostGetMeetingTypeRequestInterface, HostListMeetingTypesRequestInterface, IsCalendarConfiguredRequestInterface, IsHostConfiguredRequestInterface, ListAvailabilityRequestInterface, 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";
|
|
@@ -15,6 +15,7 @@ export declare class MeetingHostApiService {
|
|
|
15
15
|
getCalendar(r: HostGetCalendarRequest | HostGetCalendarRequestInterface): Observable<HostGetCalendarResponse>;
|
|
16
16
|
ensurePersonalCalendarExists(r: EnsurePersonalCalendarExistsRequest | EnsurePersonalCalendarExistsRequestInterface): Observable<EnsurePersonalCalendarExistsResponse>;
|
|
17
17
|
ensureGroupCalendarsExist(r: EnsureGroupCalendarsExistRequest | EnsureGroupCalendarsExistRequestInterface): Observable<EnsureGroupCalendarsExistResponse>;
|
|
18
|
+
ensureSessionEventCalendarsExist(r: EnsureSessionEventCalendarsExistRequest | EnsureSessionEventCalendarsExistRequestInterface): Observable<EnsureSessionEventCalendarsExistResponse>;
|
|
18
19
|
getHostsForCalendar(r: GetHostsForCalendarRequest | GetHostsForCalendarRequestInterface): Observable<GetHostsForCalendarResponse>;
|
|
19
20
|
getMeetingTypesForCalendars(r: GetMeetingTypesForCalendarsRequest | GetMeetingTypesForCalendarsRequestInterface): Observable<GetMeetingTypesForCalendarsResponse>;
|
|
20
21
|
listAvailability(r: ListAvailabilityRequest | ListAvailabilityRequestInterface): Observable<ListAvailabilityResponse>;
|
|
@@ -53,6 +54,7 @@ export declare class MeetingHostApiService {
|
|
|
53
54
|
checkGroupOrServiceSlugExist(r: CheckGroupOrServiceSlugExistRequest | CheckGroupOrServiceSlugExistRequestInterface): Observable<CheckGroupOrServiceSlugExistResponse>;
|
|
54
55
|
hostBookMeeting(r: BookMeetingRequest | BookMeetingRequestInterface): Observable<BookMeetingResponse>;
|
|
55
56
|
getEntityAssociations(r: GetEntityAssociationRequest | GetEntityAssociationRequestInterface): Observable<GetEntityAssociationResponse>;
|
|
57
|
+
hostBookSession(r: HostBookSessionRequest | HostBookSessionRequestInterface): Observable<HostBookSessionResponse>;
|
|
56
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<MeetingHostApiService, never>;
|
|
57
59
|
static ɵprov: i0.ɵɵInjectableDeclaration<MeetingHostApiService>;
|
|
58
60
|
}
|
|
@@ -76,6 +76,7 @@ export declare class GoogleMeetListMeetingsRequest implements i.GoogleMeetListMe
|
|
|
76
76
|
syncToken: string;
|
|
77
77
|
timeMin: Date;
|
|
78
78
|
timeMax: Date;
|
|
79
|
+
singleEvents: boolean;
|
|
79
80
|
static fromProto(proto: any): GoogleMeetListMeetingsRequest;
|
|
80
81
|
constructor(kwargs?: i.GoogleMeetListMeetingsRequestInterface);
|
|
81
82
|
toApiJson(): object;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export { MeetingSourceInfo, MeetingSourceListRequest, MeetingSourceListResponse, MeetingSourceQuery, } from
|
|
2
|
-
export { CreateZoomMeetingRequest, CreateZoomMeetingResponse, ZoomMeetingRecurrence, ZoomMeetingSettings, ZoomMeetingTrackingField, ZoomOccurrence, } from
|
|
3
|
-
export { GoogleMeetConferenceData, GoogleMeetConferenceRequestStatus, GoogleMeetConferenceSolution, GoogleMeetConferenceSolutionKey, GoogleMeetCreateConferenceRequest, GoogleMeetCreateMeetingRequest, GoogleMeetCreateMeetingResponse, GoogleMeetEntryPoint, GoogleMeetListMeetingsRequest, GoogleMeetListMeetingsResponse, GoogleMeetMeeting, GoogleMeetMeetingAttendee, GoogleMeetMeetingCreator, GoogleMeetMeetingDateTime, GoogleMeetMeetingOrganizer, GoogleMeetMeetingReminder, GoogleMeetMeetingReminders, } from
|
|
4
|
-
export { Answer, Answers, CalendarApplicationContextEntry, Attachment, Attendee, Calendar, Contact, Host, HostUser, PagedRequestOptions, PagedResponseMetadata, Preferences, TimeRange, } from
|
|
5
|
-
export { DateRange
|
|
6
|
-
export { EventTypeDateRange, Field, Form, MeetingType, RelativeDateRange, } from
|
|
7
|
-
export { EventGroupAndServiceAssociations, Group, Service, } from
|
|
8
|
-
export { BookMeetingRequest, BookMeetingResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GetServiceRequest, GetServiceResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingResponse, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, IsoDateTimeRange, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, BookMeetingRequestMetadataEntry, } from
|
|
9
|
-
export { FieldMask
|
|
10
|
-
export {
|
|
11
|
-
export { TimeOfDay
|
|
12
|
-
export { DateTime, TimeZone
|
|
1
|
+
export { MeetingSourceInfo, MeetingSourceListRequest, MeetingSourceListResponse, MeetingSourceQuery, } from "./meeting-source";
|
|
2
|
+
export { CreateZoomMeetingRequest, CreateZoomMeetingResponse, ZoomMeetingRecurrence, ZoomMeetingSettings, ZoomMeetingTrackingField, ZoomOccurrence, } from "./zoom";
|
|
3
|
+
export { GoogleMeetConferenceData, GoogleMeetConferenceRequestStatus, GoogleMeetConferenceSolution, GoogleMeetConferenceSolutionKey, GoogleMeetCreateConferenceRequest, GoogleMeetCreateMeetingRequest, GoogleMeetCreateMeetingResponse, GoogleMeetEntryPoint, GoogleMeetListMeetingsRequest, GoogleMeetListMeetingsResponse, GoogleMeetMeeting, GoogleMeetMeetingAttendee, GoogleMeetMeetingCreator, GoogleMeetMeetingDateTime, GoogleMeetMeetingOrganizer, GoogleMeetMeetingReminder, GoogleMeetMeetingReminders, } from "./google-meet";
|
|
4
|
+
export { Answer, Answers, CalendarApplicationContextEntry, Attachment, Attendee, Calendar, Contact, Host, HostUser, PagedRequestOptions, PagedResponseMetadata, Preferences, TimeRange, } from "./shared";
|
|
5
|
+
export { DateRange } from "./date-range";
|
|
6
|
+
export { EventTypeDateRange, Field, Form, MeetingType, RegistrationCutOff, RelativeDateRange, } from "./meeting-type";
|
|
7
|
+
export { EventGroupAndServiceAssociations, Group, Service, } from "./groups-and-services";
|
|
8
|
+
export { BookMeetingRequest, BookMeetingResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GetServiceRequest, GetServiceResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingResponse, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, IsoDateTimeRange, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, BookMeetingRequestMetadataEntry, RegisterSessionRequest, } from "./meeting-guest";
|
|
9
|
+
export { FieldMask } from "./field-mask";
|
|
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, HostDetails, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, GetHostsForCalendarResponseHostUserAvailabilityRuleEntry, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, Meeting, MeetingTypeList, UpdateMeetingMetadataRequestMetadataEntry, MeetingMetadataEntry, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from "./meeting-host";
|
|
11
|
+
export { TimeOfDay } from "./timeofday";
|
|
12
|
+
export { DateTime, TimeZone } from "./datetime";
|
|
@@ -194,3 +194,13 @@ export declare class BookMeetingRequestMetadataEntry implements i.BookMeetingReq
|
|
|
194
194
|
constructor(kwargs?: i.BookMeetingRequestMetadataEntryInterface);
|
|
195
195
|
toApiJson(): object;
|
|
196
196
|
}
|
|
197
|
+
export declare class RegisterSessionRequest implements i.RegisterSessionRequestInterface {
|
|
198
|
+
meetingId: string;
|
|
199
|
+
attendees: Contact[];
|
|
200
|
+
comment: string;
|
|
201
|
+
formAnswers: Answers;
|
|
202
|
+
recaptchaToken: string;
|
|
203
|
+
static fromProto(proto: any): RegisterSessionRequest;
|
|
204
|
+
constructor(kwargs?: i.RegisterSessionRequestInterface);
|
|
205
|
+
toApiJson(): object;
|
|
206
|
+
}
|
|
@@ -2,7 +2,7 @@ import * as i from '../interfaces';
|
|
|
2
2
|
import { DateRange } from './date-range';
|
|
3
3
|
import { FieldMask } from './field-mask';
|
|
4
4
|
import { Group, Service } from './groups-and-services';
|
|
5
|
-
import { MeetingType } from './meeting-type';
|
|
5
|
+
import { MeetingType, RegistrationCutOff } from './meeting-type';
|
|
6
6
|
import { TimeRange, Calendar, Preferences, HostUser, Contact, PagedRequestOptions, PagedResponseMetadata, Attendee, Answers, Attachment } from './shared';
|
|
7
7
|
import { TimeZone } from './';
|
|
8
8
|
import * as e from '../enums';
|
|
@@ -14,18 +14,18 @@ export declare class IsCalendarConfiguredRequestApplicationContextPropertiesEntr
|
|
|
14
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
|
-
export declare class
|
|
24
|
+
export declare class EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry implements i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
|
|
25
25
|
key: string;
|
|
26
26
|
value: string;
|
|
27
|
-
static fromProto(proto: any):
|
|
28
|
-
constructor(kwargs?: i.
|
|
27
|
+
static fromProto(proto: any): EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry;
|
|
28
|
+
constructor(kwargs?: i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface);
|
|
29
29
|
toApiJson(): object;
|
|
30
30
|
}
|
|
31
31
|
export declare class AvailabilityRule implements i.AvailabilityRuleInterface {
|
|
@@ -228,6 +228,18 @@ export declare class EnsurePersonalCalendarExistsResponse implements i.EnsurePer
|
|
|
228
228
|
constructor(kwargs?: i.EnsurePersonalCalendarExistsResponseInterface);
|
|
229
229
|
toApiJson(): object;
|
|
230
230
|
}
|
|
231
|
+
export declare class EnsureSessionEventCalendarsExistRequest implements i.EnsureSessionEventCalendarsExistRequestInterface {
|
|
232
|
+
externalId: string;
|
|
233
|
+
static fromProto(proto: any): EnsureSessionEventCalendarsExistRequest;
|
|
234
|
+
constructor(kwargs?: i.EnsureSessionEventCalendarsExistRequestInterface);
|
|
235
|
+
toApiJson(): object;
|
|
236
|
+
}
|
|
237
|
+
export declare class EnsureSessionEventCalendarsExistResponse implements i.EnsureSessionEventCalendarsExistResponseInterface {
|
|
238
|
+
calendarId: string;
|
|
239
|
+
static fromProto(proto: any): EnsureSessionEventCalendarsExistResponse;
|
|
240
|
+
constructor(kwargs?: i.EnsureSessionEventCalendarsExistResponseInterface);
|
|
241
|
+
toApiJson(): object;
|
|
242
|
+
}
|
|
231
243
|
export declare class ListBookedMeetingsRequestFilters implements i.ListBookedMeetingsRequestFiltersInterface {
|
|
232
244
|
meetingTypeIds: string[];
|
|
233
245
|
hostId: string;
|
|
@@ -329,6 +341,31 @@ export declare class HostBookMeetingResponse implements i.HostBookMeetingRespons
|
|
|
329
341
|
constructor(kwargs?: i.HostBookMeetingResponseInterface);
|
|
330
342
|
toApiJson(): object;
|
|
331
343
|
}
|
|
344
|
+
export declare class HostBookSessionRequest implements i.HostBookSessionRequestInterface {
|
|
345
|
+
title: string;
|
|
346
|
+
location: string;
|
|
347
|
+
locationType: e.MeetingLocationType;
|
|
348
|
+
duration: string;
|
|
349
|
+
description: string;
|
|
350
|
+
maxAttendees: number;
|
|
351
|
+
logoUrl: string;
|
|
352
|
+
hostUsers: HostUser[];
|
|
353
|
+
registrationCutoff: RegistrationCutOff;
|
|
354
|
+
timeSlot: DateRange;
|
|
355
|
+
slug: string;
|
|
356
|
+
start: Date;
|
|
357
|
+
meetingTypeId: string;
|
|
358
|
+
static fromProto(proto: any): HostBookSessionRequest;
|
|
359
|
+
constructor(kwargs?: i.HostBookSessionRequestInterface);
|
|
360
|
+
toApiJson(): object;
|
|
361
|
+
}
|
|
362
|
+
export declare class HostBookSessionResponse implements i.HostBookSessionResponseInterface {
|
|
363
|
+
meetingId: string;
|
|
364
|
+
bookingUrl: string;
|
|
365
|
+
static fromProto(proto: any): HostBookSessionResponse;
|
|
366
|
+
constructor(kwargs?: i.HostBookSessionResponseInterface);
|
|
367
|
+
toApiJson(): object;
|
|
368
|
+
}
|
|
332
369
|
export declare class HostDetails implements i.HostDetailsInterface {
|
|
333
370
|
hostId: string;
|
|
334
371
|
name: string;
|
|
@@ -56,12 +56,19 @@ export declare class MeetingType implements i.MeetingTypeInterface {
|
|
|
56
56
|
dateRange: EventTypeDateRange;
|
|
57
57
|
meetingType: e.TeamEventMeetingType;
|
|
58
58
|
attendeeCount: number;
|
|
59
|
-
registrationCutoff: number;
|
|
60
59
|
sessionTitle: string;
|
|
60
|
+
registrationCutoff: RegistrationCutOff;
|
|
61
61
|
static fromProto(proto: any): MeetingType;
|
|
62
62
|
constructor(kwargs?: i.MeetingTypeInterface);
|
|
63
63
|
toApiJson(): object;
|
|
64
64
|
}
|
|
65
|
+
export declare class RegistrationCutOff implements i.RegistrationCutOffInterface {
|
|
66
|
+
unit: e.RegistrationCutOffUnit;
|
|
67
|
+
value: number;
|
|
68
|
+
static fromProto(proto: any): RegistrationCutOff;
|
|
69
|
+
constructor(kwargs?: i.RegistrationCutOffInterface);
|
|
70
|
+
toApiJson(): object;
|
|
71
|
+
}
|
|
65
72
|
export declare class RelativeDateRange implements i.RelativeDateRangeInterface {
|
|
66
73
|
unit: e.RelativeTimeUnit;
|
|
67
74
|
value: number;
|
|
@@ -86,6 +86,7 @@ export declare class HostUser implements i.HostUserInterface {
|
|
|
86
86
|
userId: string;
|
|
87
87
|
displayName: string;
|
|
88
88
|
isConfigured: boolean;
|
|
89
|
+
isConnected: boolean;
|
|
89
90
|
static fromProto(proto: any): HostUser;
|
|
90
91
|
constructor(kwargs?: i.HostUserInterface);
|
|
91
92
|
toApiJson(): object;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Observable } from "rxjs";
|
|
2
2
|
import { AvailabilityRuleList, CreateCalendarRequestInterface, CreateCalendarResponse, DayOfWeek, GetGroupResponse, GetServiceResponse, HostBookMeetingRequestInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponse, IsHostConfiguredResponse, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, MeetingHostApiService, PagedRequestOptionsInterface, SendMeetingRequestEmailRequestInterface, TimeRangeInterface, TimeZoneInterface, WeekdayAvailability, Contact } from "../_internal";
|
|
3
|
-
import { BookMeetingResponse } from
|
|
3
|
+
import { BookMeetingResponse } from "../guest";
|
|
4
4
|
import { ApplicationContextPropertiesSet, AvailabilityRule, Calendar, EntityAssociations, Group, HostUrlMap, Meeting, MeetingMetadata, MeetingType, PagedResponse, Preferences, Service } from "../shared";
|
|
5
5
|
import { HostUser } from "../shared/host-user";
|
|
6
6
|
import { HttpResponse } from "@angular/common/http";
|
|
@@ -112,7 +112,7 @@ export declare class HostService {
|
|
|
112
112
|
start: Date;
|
|
113
113
|
comment: string;
|
|
114
114
|
metadata?: MeetingMetadata;
|
|
115
|
-
attendees: (Omit<Contact,
|
|
115
|
+
attendees: (Omit<Contact, "fromProto" | "toApiJson" | "constructor" | "timeZone"> & {
|
|
116
116
|
timeZone: TimeZoneInterface;
|
|
117
117
|
})[];
|
|
118
118
|
location?: string;
|
|
@@ -200,6 +200,9 @@ export declare class HostService {
|
|
|
200
200
|
getEntityAssociations(req: {
|
|
201
201
|
entityId: string;
|
|
202
202
|
}): Observable<EntityAssociations>;
|
|
203
|
+
ensureSessionEventCalendarsExist(req: {
|
|
204
|
+
externalId: string;
|
|
205
|
+
}): Observable<string>;
|
|
203
206
|
static ɵfac: i0.ɵɵFactoryDeclaration<HostService, never>;
|
|
204
207
|
static ɵprov: i0.ɵɵInjectableDeclaration<HostService>;
|
|
205
208
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { EventTypeDateRangeInterface, FieldInterface, FormInterface, HostUserInterface, MeetingTypeInterface as ApiMeetingType } from
|
|
2
|
-
import { MeetingLocationType, TeamEventMeetingType } from
|
|
1
|
+
import { EventTypeDateRangeInterface, FieldInterface, FormInterface, HostUserInterface, MeetingTypeInterface as ApiMeetingType, RegistrationCutOffInterface } from "../_internal/interfaces";
|
|
2
|
+
import { MeetingLocationType, TeamEventMeetingType } from "../_internal/enums";
|
|
3
3
|
import { Environment } from "./environment";
|
|
4
4
|
export interface MeetingType {
|
|
5
5
|
id: string;
|
|
@@ -33,11 +33,11 @@ export interface MeetingType {
|
|
|
33
33
|
meetingType?: TeamEventMeetingType;
|
|
34
34
|
dateRange?: EventTypeDateRangeInterface;
|
|
35
35
|
attendeeCount?: number;
|
|
36
|
-
registrationCutoff?:
|
|
36
|
+
registrationCutoff?: RegistrationCutOffInterface;
|
|
37
37
|
sessionTitle?: string;
|
|
38
38
|
}
|
|
39
39
|
export type MeetingTypeFormField = Required<FieldInterface>;
|
|
40
|
-
export type MeetingTypeForm = Required<Omit<FormInterface,
|
|
40
|
+
export type MeetingTypeForm = Required<Omit<FormInterface, "fields">> & {
|
|
41
41
|
fields: MeetingTypeFormField[];
|
|
42
42
|
};
|
|
43
43
|
export declare function MeetingTypeFromApi(req: {
|