@vendasta/meetings 0.99.8 → 0.99.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/interfaces/shared.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 +122 -8
- package/esm2020/lib/_internal/objects/shared.mjs +1 -1
- package/esm2020/lib/host/host.service.mjs +6 -1
- package/fesm2015/vendasta-meetings.mjs +128 -6
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +130 -6
- 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 +29 -7
- 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 +39 -8
- package/lib/host/host.service.d.ts +4 -0
- package/package.json +1 -1
|
@@ -7,6 +7,6 @@ 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, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingResponseInterface, GuestIsHostConfiguredRequestInterface, GuestIsHostConfiguredResponseInterface, GuestRescheduleMeetingRequestInterface, IsoDateTimeRangeInterface, ListAvailableTimeSlotsRequestInterface, ListAvailableTimeSlotsResponseInterface, ListMeetingTypesRequestInterface, ListMeetingTypesResponseInterface, BookMeetingRequestMetadataEntryInterface, RegisterSessionRequestInterface, } from './meeting-guest.interface';
|
|
9
9
|
export { FieldMaskInterface, } from './field-mask.interface';
|
|
10
|
-
export {
|
|
10
|
+
export { BuildHostIdRequestApplicationContextPropertiesEntryInterface, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, 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, ListBookedMeetingsRequestInterface, ListBookedMeetingsResponseInterface, ListGroupsRequestInterface, ListGroupsResponseInterface, ListServicesRequestInterface, ListServicesResponseInterface, MeetingInterface, MeetingTypeListInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, MeetingMetadataEntryInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SessionAttendeesInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
|
|
11
11
|
export { TimeOfDayInterface, } from './timeofday.interface';
|
|
12
12
|
export { DateTimeInterface, TimeZoneInterface, } from './datetime.interface';
|
|
@@ -2,18 +2,18 @@ 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,
|
|
5
|
+
import { TimeRangeInterface, CalendarInterface, PreferencesInterface, HostUserInterface, ContactInterface, EmailsToDeleteInterface, PagedResponseMetadataInterface, PagedRequestOptionsInterface, AttendeeInterface, AnswersInterface, AttachmentInterface } from './shared.interface';
|
|
6
6
|
import { TimeZoneInterface } from './';
|
|
7
7
|
import * as e from '../enums';
|
|
8
|
-
export interface
|
|
8
|
+
export interface BuildHostIdRequestApplicationContextPropertiesEntryInterface {
|
|
9
9
|
key?: string;
|
|
10
10
|
value?: string;
|
|
11
11
|
}
|
|
12
|
-
export interface
|
|
12
|
+
export interface EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
|
|
13
13
|
key?: string;
|
|
14
14
|
value?: string;
|
|
15
15
|
}
|
|
16
|
-
export interface
|
|
16
|
+
export interface IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
|
|
17
17
|
key?: string;
|
|
18
18
|
value?: string;
|
|
19
19
|
}
|
|
@@ -203,9 +203,11 @@ export interface HostBookSessionRequestInterface {
|
|
|
203
203
|
hostUsers?: HostUserInterface[];
|
|
204
204
|
registrationCutoff?: RegistrationCutOffInterface;
|
|
205
205
|
timeSlot?: DateRangeInterface;
|
|
206
|
-
|
|
206
|
+
sessionSlug?: string;
|
|
207
207
|
start?: Date;
|
|
208
208
|
meetingTypeId?: string;
|
|
209
|
+
hostId?: string;
|
|
210
|
+
calendarId?: string;
|
|
209
211
|
}
|
|
210
212
|
export interface HostBookSessionResponseInterface {
|
|
211
213
|
meetingId?: string;
|
|
@@ -259,6 +261,13 @@ export interface IsHostConfiguredResponseInterface {
|
|
|
259
261
|
isConfigured?: boolean;
|
|
260
262
|
onBoardingState?: e.OnBoardingState;
|
|
261
263
|
}
|
|
264
|
+
export interface ListAttendeesRequestInterface {
|
|
265
|
+
meetingId?: string;
|
|
266
|
+
}
|
|
267
|
+
export interface ListAttendeesResponseInterface {
|
|
268
|
+
attendees?: SessionAttendeesInterface[];
|
|
269
|
+
metadata?: PagedResponseMetadataInterface;
|
|
270
|
+
}
|
|
262
271
|
export interface ListAvailabilityRequestInterface {
|
|
263
272
|
pagingOptions?: PagedRequestOptionsInterface;
|
|
264
273
|
filters?: ListAvailabilityRequestFiltersInterface;
|
|
@@ -310,15 +319,20 @@ export interface MeetingInterface {
|
|
|
310
319
|
calendarId?: string;
|
|
311
320
|
hostDetails?: HostDetailsInterface[];
|
|
312
321
|
meetingType?: e.TeamEventMeetingType;
|
|
322
|
+
sessionTitle?: string;
|
|
323
|
+
sessionRegistrationUrl?: string;
|
|
324
|
+
maxAttendeeCount?: number;
|
|
325
|
+
registeredAttendeeCount?: number;
|
|
326
|
+
registrationCutoff?: string;
|
|
313
327
|
}
|
|
314
328
|
export interface MeetingTypeListInterface {
|
|
315
329
|
meetingTypes?: MeetingTypeInterface[];
|
|
316
330
|
}
|
|
317
|
-
export interface
|
|
331
|
+
export interface UpdateMeetingMetadataRequestMetadataEntryInterface {
|
|
318
332
|
key?: string;
|
|
319
333
|
value?: string;
|
|
320
334
|
}
|
|
321
|
-
export interface
|
|
335
|
+
export interface MeetingMetadataEntryInterface {
|
|
322
336
|
key?: string;
|
|
323
337
|
value?: string;
|
|
324
338
|
}
|
|
@@ -331,6 +345,14 @@ export interface SendMeetingRequestEmailRequestInterface {
|
|
|
331
345
|
userId?: string;
|
|
332
346
|
meetingTypeId?: string;
|
|
333
347
|
}
|
|
348
|
+
export interface SessionAttendeesInterface {
|
|
349
|
+
id?: string;
|
|
350
|
+
firstName?: string;
|
|
351
|
+
lastName?: string;
|
|
352
|
+
email?: string;
|
|
353
|
+
phoneNumber?: string;
|
|
354
|
+
formAnswers?: AnswersInterface;
|
|
355
|
+
}
|
|
334
356
|
export interface SetGeneralAvailabilityRequestInterface {
|
|
335
357
|
hostId?: string;
|
|
336
358
|
meetingTypeId?: string;
|
|
@@ -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, 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, HostDeleteAttendeesRequestInterface, 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, HostDeleteAttendeesRequest, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAttendeesRequest, ListAttendeesResponse, 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, HostDeleteAttendeesRequestInterface, HostGetCalendarRequestInterface, HostGetMeetingTypeRequestInterface, HostListMeetingTypesRequestInterface, IsCalendarConfiguredRequestInterface, IsHostConfiguredRequestInterface, ListAttendeesRequestInterface, 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";
|
|
@@ -56,6 +56,7 @@ export declare class MeetingHostApiService {
|
|
|
56
56
|
getEntityAssociations(r: GetEntityAssociationRequest | GetEntityAssociationRequestInterface): Observable<GetEntityAssociationResponse>;
|
|
57
57
|
hostBookSession(r: HostBookSessionRequest | HostBookSessionRequestInterface): Observable<HostBookSessionResponse>;
|
|
58
58
|
hostDeleteAttendees(r: HostDeleteAttendeesRequest | HostDeleteAttendeesRequestInterface): Observable<HttpResponse<null>>;
|
|
59
|
+
listAttendees(r: ListAttendeesRequest | ListAttendeesRequestInterface): Observable<ListAttendeesResponse>;
|
|
59
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<MeetingHostApiService, never>;
|
|
60
61
|
static ɵprov: i0.ɵɵInjectableDeclaration<MeetingHostApiService>;
|
|
61
62
|
}
|
|
@@ -7,6 +7,6 @@ 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, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingResponse, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, IsoDateTimeRange, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, BookMeetingRequestMetadataEntry, RegisterSessionRequest, } from './meeting-guest';
|
|
9
9
|
export { FieldMask, } from './field-mask';
|
|
10
|
-
export { EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, IsCalendarConfiguredRequestApplicationContextPropertiesEntry,
|
|
10
|
+
export { BuildHostIdRequestApplicationContextPropertiesEntry, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, IsCalendarConfiguredRequestApplicationContextPropertiesEntry, 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, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, Meeting, MeetingTypeList, UpdateMeetingMetadataRequestMetadataEntry, MeetingMetadataEntry, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SessionAttendees, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
|
|
11
11
|
export { TimeOfDay, } from './timeofday';
|
|
12
12
|
export { DateTime, TimeZone, } from './datetime';
|
|
@@ -3,7 +3,7 @@ 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,
|
|
6
|
+
import { TimeRange, Calendar, Preferences, HostUser, Contact, EmailsToDelete, PagedResponseMetadata, PagedRequestOptions, 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;
|
|
@@ -352,9 +352,11 @@ export declare class HostBookSessionRequest implements i.HostBookSessionRequestI
|
|
|
352
352
|
hostUsers: HostUser[];
|
|
353
353
|
registrationCutoff: RegistrationCutOff;
|
|
354
354
|
timeSlot: DateRange;
|
|
355
|
-
|
|
355
|
+
sessionSlug: string;
|
|
356
356
|
start: Date;
|
|
357
357
|
meetingTypeId: string;
|
|
358
|
+
hostId: string;
|
|
359
|
+
calendarId: string;
|
|
358
360
|
static fromProto(proto: any): HostBookSessionRequest;
|
|
359
361
|
constructor(kwargs?: i.HostBookSessionRequestInterface);
|
|
360
362
|
toApiJson(): object;
|
|
@@ -453,6 +455,19 @@ export declare class IsHostConfiguredResponse implements i.IsHostConfiguredRespo
|
|
|
453
455
|
constructor(kwargs?: i.IsHostConfiguredResponseInterface);
|
|
454
456
|
toApiJson(): object;
|
|
455
457
|
}
|
|
458
|
+
export declare class ListAttendeesRequest implements i.ListAttendeesRequestInterface {
|
|
459
|
+
meetingId: string;
|
|
460
|
+
static fromProto(proto: any): ListAttendeesRequest;
|
|
461
|
+
constructor(kwargs?: i.ListAttendeesRequestInterface);
|
|
462
|
+
toApiJson(): object;
|
|
463
|
+
}
|
|
464
|
+
export declare class ListAttendeesResponse implements i.ListAttendeesResponseInterface {
|
|
465
|
+
attendees: SessionAttendees[];
|
|
466
|
+
metadata: PagedResponseMetadata;
|
|
467
|
+
static fromProto(proto: any): ListAttendeesResponse;
|
|
468
|
+
constructor(kwargs?: i.ListAttendeesResponseInterface);
|
|
469
|
+
toApiJson(): object;
|
|
470
|
+
}
|
|
456
471
|
export declare class ListAvailabilityRequest implements i.ListAvailabilityRequestInterface {
|
|
457
472
|
pagingOptions: PagedRequestOptions;
|
|
458
473
|
filters: ListAvailabilityRequestFilters;
|
|
@@ -528,6 +543,11 @@ export declare class Meeting implements i.MeetingInterface {
|
|
|
528
543
|
calendarId: string;
|
|
529
544
|
hostDetails: HostDetails[];
|
|
530
545
|
meetingType: e.TeamEventMeetingType;
|
|
546
|
+
sessionTitle: string;
|
|
547
|
+
sessionRegistrationUrl: string;
|
|
548
|
+
maxAttendeeCount: number;
|
|
549
|
+
registeredAttendeeCount: number;
|
|
550
|
+
registrationCutoff: string;
|
|
531
551
|
static fromProto(proto: any): Meeting;
|
|
532
552
|
constructor(kwargs?: i.MeetingInterface);
|
|
533
553
|
toApiJson(): object;
|
|
@@ -538,18 +558,18 @@ export declare class MeetingTypeList implements i.MeetingTypeListInterface {
|
|
|
538
558
|
constructor(kwargs?: i.MeetingTypeListInterface);
|
|
539
559
|
toApiJson(): object;
|
|
540
560
|
}
|
|
541
|
-
export declare class
|
|
561
|
+
export declare class UpdateMeetingMetadataRequestMetadataEntry implements i.UpdateMeetingMetadataRequestMetadataEntryInterface {
|
|
542
562
|
key: string;
|
|
543
563
|
value: string;
|
|
544
|
-
static fromProto(proto: any):
|
|
545
|
-
constructor(kwargs?: i.
|
|
564
|
+
static fromProto(proto: any): UpdateMeetingMetadataRequestMetadataEntry;
|
|
565
|
+
constructor(kwargs?: i.UpdateMeetingMetadataRequestMetadataEntryInterface);
|
|
546
566
|
toApiJson(): object;
|
|
547
567
|
}
|
|
548
|
-
export declare class
|
|
568
|
+
export declare class MeetingMetadataEntry implements i.MeetingMetadataEntryInterface {
|
|
549
569
|
key: string;
|
|
550
570
|
value: string;
|
|
551
|
-
static fromProto(proto: any):
|
|
552
|
-
constructor(kwargs?: i.
|
|
571
|
+
static fromProto(proto: any): MeetingMetadataEntry;
|
|
572
|
+
constructor(kwargs?: i.MeetingMetadataEntryInterface);
|
|
553
573
|
toApiJson(): object;
|
|
554
574
|
}
|
|
555
575
|
export declare class RescheduleMeetingRequest implements i.RescheduleMeetingRequestInterface {
|
|
@@ -567,6 +587,17 @@ export declare class SendMeetingRequestEmailRequest implements i.SendMeetingRequ
|
|
|
567
587
|
constructor(kwargs?: i.SendMeetingRequestEmailRequestInterface);
|
|
568
588
|
toApiJson(): object;
|
|
569
589
|
}
|
|
590
|
+
export declare class SessionAttendees implements i.SessionAttendeesInterface {
|
|
591
|
+
id: string;
|
|
592
|
+
firstName: string;
|
|
593
|
+
lastName: string;
|
|
594
|
+
email: string;
|
|
595
|
+
phoneNumber: string;
|
|
596
|
+
formAnswers: Answers;
|
|
597
|
+
static fromProto(proto: any): SessionAttendees;
|
|
598
|
+
constructor(kwargs?: i.SessionAttendeesInterface);
|
|
599
|
+
toApiJson(): object;
|
|
600
|
+
}
|
|
570
601
|
export declare class SetGeneralAvailabilityRequest implements i.SetGeneralAvailabilityRequestInterface {
|
|
571
602
|
hostId: string;
|
|
572
603
|
meetingTypeId: string;
|
|
@@ -222,6 +222,10 @@ export declare class HostService {
|
|
|
222
222
|
meetingId: string;
|
|
223
223
|
emailsToDelete: EmailsToDelete[];
|
|
224
224
|
}): Observable<null>;
|
|
225
|
+
listAttendees(req: {
|
|
226
|
+
meetingId: string;
|
|
227
|
+
emailsToDelete: EmailsToDelete[];
|
|
228
|
+
}): Observable<null>;
|
|
225
229
|
static ɵfac: i0.ɵɵFactoryDeclaration<HostService, never>;
|
|
226
230
|
static ɵprov: i0.ɵɵInjectableDeclaration<HostService>;
|
|
227
231
|
}
|