@vendasta/meetings 1.5.7 → 1.5.9
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/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
- package/esm2020/lib/_internal/meeting-host.api.service.mjs +7 -2
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/esm2020/lib/_internal/objects/meeting-host.mjs +98 -5
- package/esm2020/lib/host/host.service.mjs +7 -2
- package/fesm2015/vendasta-meetings.mjs +108 -5
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +108 -5
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/interfaces/meeting-host.interface.d.ts +20 -2
- package/lib/_internal/meeting-host.api.service.d.ts +3 -2
- package/lib/_internal/objects/index.d.ts +1 -1
- package/lib/_internal/objects/meeting-host.d.ts +33 -6
- package/lib/host/host.service.d.ts +4 -1
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ export { EventGroupAndServiceAssociationsInterface, GroupInterface, ServiceInter
|
|
|
8
8
|
export { BookMeetingRequestInterface, BookMeetingResponseInterface, CheckFeatureFlagRequestInterface, CheckFeatureFlagResponseInterface, GetCalendarRequestInterface, GetCalendarResponseInterface, GetGroupRequestInterface, GetGroupResponseInterface, GetHostRequestInterface, GetHostResponseInterface, GetMeetingCalendarInfoRequestInterface, GetMeetingCalendarInfoResponseInterface, GetMeetingTypeRequestInterface, GetMeetingTypeResponseInterface, GetServiceRequestInterface, GetServiceResponseInterface, GetSessionInviteeMeetingInfoRequestInterface, GetSessionInviteeMeetingInfoResponseInterface, GetSessionMeetingRequestInterface, GetSessionMeetingResponseInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingRequestV2Interface, GuestGetBookedMeetingResponseInterface, GuestGetBookedMeetingResponseV2Interface, GuestIsHostConfiguredRequestInterface, GuestIsHostConfiguredResponseInterface, GuestRescheduleMeetingRequestInterface, InviteeDeregisterSessionMeetingRequestInterface, InviteeRegisterSessionMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListAvailableTimeSlotsResponseInterface, ListMeetingTypesRequestInterface, ListMeetingTypesResponseInterface, BookMeetingRequestMetadataEntryInterface, RegisterSessionRequestInterface, } from './meeting-guest.interface';
|
|
9
9
|
export { AvailableTimeSlotsRequestInterface, AvailableTimeSlotsResponseInterface, BookMeetingExternalRequestInterface, BookMeetingExternalResponseInterface, EventTypeInterface, ExternalCancelMeetingRequestInterface, ExternalRescheduleMeetingRequestInterface, ExternalRescheduleMeetingResponseInterface, GetUsersRequestInterface, GetUsersResponseInterface, GroupResponseInterface, GroupsRequestInterface, GroupsResponseInterface, HostUserDetailsInterface, ListTeamEventTypesRequestInterface, ListTeamEventTypesResponseInterface, ListUserEventTypesRequestInterface, ListUserEventTypesResponseInterface, ServiceResponseInterface, ServicesRequestInterface, ServicesResponseInterface, UserResponseInterface, } from './meeting-external.interface';
|
|
10
10
|
export { FieldMaskInterface, } from './field-mask.interface';
|
|
11
|
-
export {
|
|
11
|
+
export { IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, BuildHostIdRequestApplicationContextPropertiesEntryInterface, AvailabilityRuleInterface, AvailabilityRuleListInterface, BuildHostIdRequestInterface, BuildHostIdResponseInterface, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntryInterface, CalendarMigrationResponseInterface, CancelMeetingRequestInterface, CheckEventTypeSlugExistRequestInterface, CheckEventTypeSlugExistResponseInterface, CheckGroupOrServiceSlugExistRequestInterface, CheckGroupOrServiceSlugExistResponseInterface, CreateAvailabilityRequestInterface, CreateAvailabilityResponseInterface, CreateCalendarRequestInterface, CreateCalendarResponseInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateGroupResponseInterface, CreateMeetingTypeRequestInterface, CreateMeetingTypeResponseInterface, CreateServiceRequestInterface, CreateServiceResponseInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, DoesCalendarExistResponseInterface, EnsureGroupCalendarsExistRequestInterface, EnsureGroupCalendarsExistResponseInterface, EnsurePersonalCalendarExistsRequestInterface, EnsurePersonalCalendarExistsResponseInterface, EnsureSessionEventCalendarsExistRequestInterface, EnsureSessionEventCalendarsExistResponseInterface, EventTypeSummaryInterface, 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, ListEventTypesForMultipleCalendarsRequestInterface, ListEventTypesForMultipleCalendarsResponseInterface, ListGroupsRequestInterface, ListGroupsResponseInterface, ListServicesRequestInterface, ListServicesResponseInterface, MeetingInterface, MeetingTypeListInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, MeetingMetadataEntryInterface, RecurrenceConfigInterface, RecurrenceEndInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SessionAttendeesInterface, SetGeneralAvailabilityRequestInterface, TimeSlotsByWeekDayInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
|
|
12
12
|
export { AccessInterface, MCPOptionsInterface, } from './annotations.interface';
|
|
13
13
|
export { TimeOfDayInterface, } from './timeofday.interface';
|
|
14
14
|
export { DateTimeInterface, TimeZoneInterface, } from './datetime.interface';
|
|
@@ -5,7 +5,7 @@ import { MeetingTypeInterface, RegistrationCutOffInterface } from './meeting-typ
|
|
|
5
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
|
}
|
|
@@ -13,7 +13,7 @@ export interface EnsurePersonalCalendarExistsRequestApplicationContextProperties
|
|
|
13
13
|
key?: string;
|
|
14
14
|
value?: string;
|
|
15
15
|
}
|
|
16
|
-
export interface
|
|
16
|
+
export interface BuildHostIdRequestApplicationContextPropertiesEntryInterface {
|
|
17
17
|
key?: string;
|
|
18
18
|
value?: string;
|
|
19
19
|
}
|
|
@@ -142,6 +142,18 @@ export interface EnsureSessionEventCalendarsExistRequestInterface {
|
|
|
142
142
|
export interface EnsureSessionEventCalendarsExistResponseInterface {
|
|
143
143
|
calendarId?: string;
|
|
144
144
|
}
|
|
145
|
+
export interface EventTypeSummaryInterface {
|
|
146
|
+
id?: string;
|
|
147
|
+
name?: string;
|
|
148
|
+
slug?: string;
|
|
149
|
+
duration?: number;
|
|
150
|
+
bookingUrl?: string;
|
|
151
|
+
isPinned?: boolean;
|
|
152
|
+
location?: string;
|
|
153
|
+
category?: string;
|
|
154
|
+
teamName?: string;
|
|
155
|
+
calendarId?: string;
|
|
156
|
+
}
|
|
145
157
|
export interface ListBookedMeetingsRequestFiltersInterface {
|
|
146
158
|
meetingTypeIds?: string[];
|
|
147
159
|
hostId?: string;
|
|
@@ -318,6 +330,12 @@ export interface ListBookedMeetingsResponseInterface {
|
|
|
318
330
|
meetings?: MeetingInterface[];
|
|
319
331
|
pagingMetadata?: PagedResponseMetadataInterface;
|
|
320
332
|
}
|
|
333
|
+
export interface ListEventTypesForMultipleCalendarsRequestInterface {
|
|
334
|
+
calendarIds?: string[];
|
|
335
|
+
}
|
|
336
|
+
export interface ListEventTypesForMultipleCalendarsResponseInterface {
|
|
337
|
+
eventTypes?: EventTypeSummaryInterface[];
|
|
338
|
+
}
|
|
321
339
|
export interface ListGroupsRequestInterface {
|
|
322
340
|
hostId?: string;
|
|
323
341
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BookMeetingRequest, BookMeetingResponse, BuildHostIdRequest, BuildHostIdResponse, CalendarMigrationResponse, CancelMeetingRequest, CheckEventTypeSlugExistRequest, CheckEventTypeSlugExistResponse, CheckGroupOrServiceSlugExistRequest, CheckGroupOrServiceSlugExistResponse, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateGroupRequest, CreateGroupResponse, CreateMeetingTypeRequest, CreateMeetingTypeResponse, CreateServiceRequest, CreateServiceResponse, DeleteAvailabilityRequest, DeleteGroupRequest, DeleteMeetingTypeRequest, DeleteServiceRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, EnsureSessionEventCalendarsExistRequest, EnsureSessionEventCalendarsExistResponse, GetEntityAssociationRequest, GetEntityAssociationResponse, 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, CheckEventTypeSlugExistRequestInterface, 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/';
|
|
1
|
+
import { BookMeetingRequest, BookMeetingResponse, BuildHostIdRequest, BuildHostIdResponse, CalendarMigrationResponse, CancelMeetingRequest, CheckEventTypeSlugExistRequest, CheckEventTypeSlugExistResponse, CheckGroupOrServiceSlugExistRequest, CheckGroupOrServiceSlugExistResponse, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateGroupRequest, CreateGroupResponse, CreateMeetingTypeRequest, CreateMeetingTypeResponse, CreateServiceRequest, CreateServiceResponse, DeleteAvailabilityRequest, DeleteGroupRequest, DeleteMeetingTypeRequest, DeleteServiceRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, EnsureSessionEventCalendarsExistRequest, EnsureSessionEventCalendarsExistResponse, GetEntityAssociationRequest, GetEntityAssociationResponse, 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, ListEventTypesForMultipleCalendarsRequest, ListEventTypesForMultipleCalendarsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest } from './objects/';
|
|
2
|
+
import { BookMeetingRequestInterface, BuildHostIdRequestInterface, CancelMeetingRequestInterface, CheckEventTypeSlugExistRequestInterface, CheckGroupOrServiceSlugExistRequestInterface, CreateAvailabilityRequestInterface, CreateCalendarRequestInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateMeetingTypeRequestInterface, CreateServiceRequestInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, EnsureGroupCalendarsExistRequestInterface, EnsurePersonalCalendarExistsRequestInterface, EnsureSessionEventCalendarsExistRequestInterface, GetEntityAssociationRequestInterface, GetGroupRequestInterface, GetHostMeetingRequestInterface, GetHostPreferencesRequestInterface, GetHostsForCalendarRequestInterface, GetMeetingTypesForCalendarsRequestInterface, GetServiceRequestInterface, HostBookMeetingRequestInterface, HostBookSessionRequestInterface, HostDeleteAttendeesRequestInterface, HostGetCalendarRequestInterface, HostGetMeetingTypeRequestInterface, HostListMeetingTypesRequestInterface, IsCalendarConfiguredRequestInterface, IsHostConfiguredRequestInterface, ListAttendeesRequestInterface, ListAvailabilityRequestInterface, ListAvailableTimeslotsForRecurringSessionRequestInterface, ListAvailableTimeslotsForSessionRequestInterface, ListBookedMeetingsRequestInterface, ListEventTypesForMultipleCalendarsRequestInterface, ListGroupsRequestInterface, ListServicesRequestInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface } from './interfaces/';
|
|
3
3
|
import { HttpResponse } from '@angular/common/http';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -18,6 +18,7 @@ export declare class MeetingHostApiService {
|
|
|
18
18
|
ensureSessionEventCalendarsExist(r: EnsureSessionEventCalendarsExistRequest | EnsureSessionEventCalendarsExistRequestInterface): Observable<EnsureSessionEventCalendarsExistResponse>;
|
|
19
19
|
getHostsForCalendar(r: GetHostsForCalendarRequest | GetHostsForCalendarRequestInterface): Observable<GetHostsForCalendarResponse>;
|
|
20
20
|
getMeetingTypesForCalendars(r: GetMeetingTypesForCalendarsRequest | GetMeetingTypesForCalendarsRequestInterface): Observable<GetMeetingTypesForCalendarsResponse>;
|
|
21
|
+
listEventTypesForMultipleCalendars(r: ListEventTypesForMultipleCalendarsRequest | ListEventTypesForMultipleCalendarsRequestInterface): Observable<ListEventTypesForMultipleCalendarsResponse>;
|
|
21
22
|
listAvailability(r: ListAvailabilityRequest | ListAvailabilityRequestInterface): Observable<ListAvailabilityResponse>;
|
|
22
23
|
bookMeeting(r: HostBookMeetingRequest | HostBookMeetingRequestInterface): Observable<HostBookMeetingResponse>;
|
|
23
24
|
getHostMeeting(r: GetHostMeetingRequest | GetHostMeetingRequestInterface): Observable<GetHostMeetingResponse>;
|
|
@@ -8,7 +8,7 @@ export { EventGroupAndServiceAssociations, Group, Service, } from './groups-and-
|
|
|
8
8
|
export { BookMeetingRequest, BookMeetingResponse, CheckFeatureFlagRequest, CheckFeatureFlagResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingCalendarInfoRequest, GetMeetingCalendarInfoResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GetServiceRequest, GetServiceResponse, GetSessionInviteeMeetingInfoRequest, GetSessionInviteeMeetingInfoResponse, GetSessionMeetingRequest, GetSessionMeetingResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingRequestV2, GuestGetBookedMeetingResponse, GuestGetBookedMeetingResponseV2, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, InviteeDeregisterSessionMeetingRequest, InviteeRegisterSessionMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, BookMeetingRequestMetadataEntry, RegisterSessionRequest, } from './meeting-guest';
|
|
9
9
|
export { AvailableTimeSlotsRequest, AvailableTimeSlotsResponse, BookMeetingExternalRequest, BookMeetingExternalResponse, EventType, ExternalCancelMeetingRequest, ExternalRescheduleMeetingRequest, ExternalRescheduleMeetingResponse, GetUsersRequest, GetUsersResponse, GroupResponse, GroupsRequest, GroupsResponse, HostUserDetails, ListTeamEventTypesRequest, ListTeamEventTypesResponse, ListUserEventTypesRequest, ListUserEventTypesResponse, ServiceResponse, ServicesRequest, ServicesResponse, UserResponse, } from './meeting-external';
|
|
10
10
|
export { FieldMask, } from './field-mask';
|
|
11
|
-
export {
|
|
11
|
+
export { IsCalendarConfiguredRequestApplicationContextPropertiesEntry, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, BuildHostIdRequestApplicationContextPropertiesEntry, AvailabilityRule, AvailabilityRuleList, BuildHostIdRequest, BuildHostIdResponse, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntry, CalendarMigrationResponse, CancelMeetingRequest, CheckEventTypeSlugExistRequest, CheckEventTypeSlugExistResponse, CheckGroupOrServiceSlugExistRequest, CheckGroupOrServiceSlugExistResponse, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateGroupRequest, CreateGroupResponse, CreateMeetingTypeRequest, CreateMeetingTypeResponse, CreateServiceRequest, CreateServiceResponse, DeleteAvailabilityRequest, DeleteGroupRequest, DeleteMeetingTypeRequest, DeleteServiceRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, EnsureSessionEventCalendarsExistRequest, EnsureSessionEventCalendarsExistResponse, EventTypeSummary, 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, ListEventTypesForMultipleCalendarsRequest, ListEventTypesForMultipleCalendarsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, Meeting, MeetingTypeList, UpdateMeetingMetadataRequestMetadataEntry, MeetingMetadataEntry, RecurrenceConfig, RecurrenceEnd, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SessionAttendees, SetGeneralAvailabilityRequest, TimeSlotsByWeekDay, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
|
|
12
12
|
export { Access, MCPOptions, } from './annotations';
|
|
13
13
|
export { TimeOfDay, } from './timeofday';
|
|
14
14
|
export { DateTime, TimeZone, } from './datetime';
|
|
@@ -7,11 +7,11 @@ import { TimeRange, Calendar, Preferences, HostUser, Contact, EmailsToDelete, Pa
|
|
|
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
17
|
export declare class EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry implements i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
|
|
@@ -21,11 +21,11 @@ export declare class EnsurePersonalCalendarExistsRequestApplicationContextProper
|
|
|
21
21
|
constructor(kwargs?: i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface);
|
|
22
22
|
toApiJson(): object;
|
|
23
23
|
}
|
|
24
|
-
export declare class
|
|
24
|
+
export declare class BuildHostIdRequestApplicationContextPropertiesEntry implements i.BuildHostIdRequestApplicationContextPropertiesEntryInterface {
|
|
25
25
|
key: string;
|
|
26
26
|
value: string;
|
|
27
|
-
static fromProto(proto: any):
|
|
28
|
-
constructor(kwargs?: i.
|
|
27
|
+
static fromProto(proto: any): BuildHostIdRequestApplicationContextPropertiesEntry;
|
|
28
|
+
constructor(kwargs?: i.BuildHostIdRequestApplicationContextPropertiesEntryInterface);
|
|
29
29
|
toApiJson(): object;
|
|
30
30
|
}
|
|
31
31
|
export declare class AvailabilityRule implements i.AvailabilityRuleInterface {
|
|
@@ -255,6 +255,21 @@ export declare class EnsureSessionEventCalendarsExistResponse implements i.Ensur
|
|
|
255
255
|
constructor(kwargs?: i.EnsureSessionEventCalendarsExistResponseInterface);
|
|
256
256
|
toApiJson(): object;
|
|
257
257
|
}
|
|
258
|
+
export declare class EventTypeSummary implements i.EventTypeSummaryInterface {
|
|
259
|
+
id: string;
|
|
260
|
+
name: string;
|
|
261
|
+
slug: string;
|
|
262
|
+
duration: number;
|
|
263
|
+
bookingUrl: string;
|
|
264
|
+
isPinned: boolean;
|
|
265
|
+
location: string;
|
|
266
|
+
category: string;
|
|
267
|
+
teamName: string;
|
|
268
|
+
calendarId: string;
|
|
269
|
+
static fromProto(proto: any): EventTypeSummary;
|
|
270
|
+
constructor(kwargs?: i.EventTypeSummaryInterface);
|
|
271
|
+
toApiJson(): object;
|
|
272
|
+
}
|
|
258
273
|
export declare class ListBookedMeetingsRequestFilters implements i.ListBookedMeetingsRequestFiltersInterface {
|
|
259
274
|
meetingTypeIds: string[];
|
|
260
275
|
hostId: string;
|
|
@@ -548,6 +563,18 @@ export declare class ListBookedMeetingsResponse implements i.ListBookedMeetingsR
|
|
|
548
563
|
constructor(kwargs?: i.ListBookedMeetingsResponseInterface);
|
|
549
564
|
toApiJson(): object;
|
|
550
565
|
}
|
|
566
|
+
export declare class ListEventTypesForMultipleCalendarsRequest implements i.ListEventTypesForMultipleCalendarsRequestInterface {
|
|
567
|
+
calendarIds: string[];
|
|
568
|
+
static fromProto(proto: any): ListEventTypesForMultipleCalendarsRequest;
|
|
569
|
+
constructor(kwargs?: i.ListEventTypesForMultipleCalendarsRequestInterface);
|
|
570
|
+
toApiJson(): object;
|
|
571
|
+
}
|
|
572
|
+
export declare class ListEventTypesForMultipleCalendarsResponse implements i.ListEventTypesForMultipleCalendarsResponseInterface {
|
|
573
|
+
eventTypes: EventTypeSummary[];
|
|
574
|
+
static fromProto(proto: any): ListEventTypesForMultipleCalendarsResponse;
|
|
575
|
+
constructor(kwargs?: i.ListEventTypesForMultipleCalendarsResponseInterface);
|
|
576
|
+
toApiJson(): object;
|
|
577
|
+
}
|
|
551
578
|
export declare class ListGroupsRequest implements i.ListGroupsRequestInterface {
|
|
552
579
|
hostId: string;
|
|
553
580
|
static fromProto(proto: any): ListGroupsRequest;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Observable } from "rxjs";
|
|
2
|
-
import { AvailabilityRuleList, CreateCalendarRequestInterface, CreateCalendarResponse, DayOfWeek, GetGroupResponse, GetServiceResponse, HostBookMeetingRequestInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponse, IsHostConfiguredResponse, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, MeetingHostApiService, PagedRequestOptionsInterface, SendMeetingRequestEmailRequestInterface, TimeRangeInterface, TimeZoneInterface, WeekdayAvailability, Contact, EmailsToDelete, HostBookSessionRequestInterface, ListAttendeesResponse, BookingSource } from "../_internal";
|
|
2
|
+
import { AvailabilityRuleList, CreateCalendarRequestInterface, CreateCalendarResponse, DayOfWeek, GetGroupResponse, GetServiceResponse, HostBookMeetingRequestInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponse, IsHostConfiguredResponse, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, MeetingHostApiService, PagedRequestOptionsInterface, SendMeetingRequestEmailRequestInterface, TimeRangeInterface, TimeZoneInterface, WeekdayAvailability, Contact, EmailsToDelete, HostBookSessionRequestInterface, ListAttendeesResponse, BookingSource, ListEventTypesForMultipleCalendarsResponse } from "../_internal";
|
|
3
3
|
import { BookMeetingResponse, BookSessionResponse } from "../guest";
|
|
4
4
|
import { ApplicationContextPropertiesSet, AvailabilityRule, Calendar, EntityAssociations, Group, HostUrlMap, Meeting, MeetingMetadata, MeetingType, PagedResponse, Preferences, Service, TimeSpan } from "../shared";
|
|
5
5
|
import { HostUser } from "../shared/host-user";
|
|
@@ -233,6 +233,9 @@ export declare class HostService {
|
|
|
233
233
|
timeZone: TimeZoneInterface;
|
|
234
234
|
userIds: string[];
|
|
235
235
|
}): Observable<TimeSpan[]>;
|
|
236
|
+
listEventTypesForMultipleCalendars(req: {
|
|
237
|
+
calendarIds: string[];
|
|
238
|
+
}): Observable<ListEventTypesForMultipleCalendarsResponse>;
|
|
236
239
|
static ɵfac: i0.ɵɵFactoryDeclaration<HostService, never>;
|
|
237
240
|
static ɵprov: i0.ɵɵInjectableDeclaration<HostService>;
|
|
238
241
|
}
|