@vendasta/meetings 1.5.1 → 1.5.6

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.
Files changed (47) hide show
  1. package/esm2020/lib/_internal/enums/index.mjs +2 -1
  2. package/esm2020/lib/_internal/enums/meeting-guest.enum.mjs +11 -0
  3. package/esm2020/lib/_internal/google-meet.api.service.mjs +8 -7
  4. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  5. package/esm2020/lib/_internal/interfaces/meeting-external.interface.mjs +1 -7
  6. package/esm2020/lib/_internal/interfaces/meeting-guest.interface.mjs +1 -1
  7. package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
  8. package/esm2020/lib/_internal/interfaces/shared.interface.mjs +1 -1
  9. package/esm2020/lib/_internal/meeting-external.api.service.mjs +38 -8
  10. package/esm2020/lib/_internal/meeting-guest.api.service.mjs +14 -8
  11. package/esm2020/lib/_internal/meeting-host.api.service.mjs +14 -8
  12. package/esm2020/lib/_internal/meeting-source-api.api.service.mjs +8 -7
  13. package/esm2020/lib/_internal/objects/index.mjs +4 -4
  14. package/esm2020/lib/_internal/objects/meeting-external.mjs +577 -1
  15. package/esm2020/lib/_internal/objects/meeting-guest.mjs +54 -5
  16. package/esm2020/lib/_internal/objects/meeting-host.mjs +55 -12
  17. package/esm2020/lib/_internal/objects/shared.mjs +3 -2
  18. package/esm2020/lib/_internal/zoom.api.service.mjs +8 -7
  19. package/esm2020/lib/guest/guest.service.mjs +4 -1
  20. package/esm2020/lib/host/host.service.mjs +6 -1
  21. package/esm2020/lib/index.mjs +3 -3
  22. package/fesm2015/vendasta-meetings.mjs +941 -219
  23. package/fesm2015/vendasta-meetings.mjs.map +1 -1
  24. package/fesm2020/vendasta-meetings.mjs +941 -219
  25. package/fesm2020/vendasta-meetings.mjs.map +1 -1
  26. package/lib/_internal/enums/index.d.ts +1 -0
  27. package/lib/_internal/enums/meeting-guest.enum.d.ts +3 -0
  28. package/lib/_internal/google-meet.api.service.d.ts +5 -2
  29. package/lib/_internal/interfaces/index.d.ts +3 -3
  30. package/lib/_internal/interfaces/meeting-external.interface.d.ts +120 -0
  31. package/lib/_internal/interfaces/meeting-guest.interface.d.ts +10 -1
  32. package/lib/_internal/interfaces/meeting-host.interface.d.ts +13 -6
  33. package/lib/_internal/interfaces/shared.interface.d.ts +2 -1
  34. package/lib/_internal/meeting-external.api.service.d.ts +13 -4
  35. package/lib/_internal/meeting-guest.api.service.d.ts +8 -5
  36. package/lib/_internal/meeting-host.api.service.d.ts +8 -5
  37. package/lib/_internal/meeting-source-api.api.service.d.ts +5 -2
  38. package/lib/_internal/objects/index.d.ts +3 -3
  39. package/lib/_internal/objects/meeting-external.d.ts +162 -0
  40. package/lib/_internal/objects/meeting-guest.d.ts +15 -1
  41. package/lib/_internal/objects/meeting-host.d.ts +27 -14
  42. package/lib/_internal/objects/shared.d.ts +2 -1
  43. package/lib/_internal/zoom.api.service.d.ts +5 -2
  44. package/lib/guest/guest.service.d.ts +6 -1
  45. package/lib/host/host.service.d.ts +4 -0
  46. package/lib/index.d.ts +3 -3
  47. package/package.json +1 -1
@@ -2,5 +2,6 @@ export { CalendarSource, MeetingSource, MeetingSourceStatus, } from './meeting-s
2
2
  export { ZoomApprovalType, ZoomMeetingRecurrenceType, ZoomMeetingType, ZoomMonthlyWeek, ZoomMonthlyWeekDay, ZoomRegistrationType, ZoomWeeklyDay, } from './zoom.enum';
3
3
  export { CalendarType, FormFieldType, OnBoardingState, } from './shared.enum';
4
4
  export { BookingSource, DateRangeType, MeetingLocation, MeetingLocationType, NotificationType, RegistrationCutOffUnit, RelativeTimeUnit, TeamEventMeetingType, } from './meeting-type.enum';
5
+ export { FeatureFlagFieldType, } from './meeting-guest.enum';
5
6
  export { BookingFailureReason, Recurrence, RegistrationMode, Weekday, } from './meeting-host.enum';
6
7
  export { DayOfWeek, } from './dayofweek.enum';
@@ -0,0 +1,3 @@
1
+ export declare enum FeatureFlagFieldType {
2
+ FEATURE_FLAG_FIELD_TYPE_CALENDAR_ID = 0
3
+ }
@@ -1,11 +1,14 @@
1
1
  import { GoogleMeetCreateMeetingRequest, GoogleMeetCreateMeetingResponse, GoogleMeetListMeetingsRequest, GoogleMeetListMeetingsResponse } from './objects/';
2
2
  import { GoogleMeetCreateMeetingRequestInterface, GoogleMeetListMeetingsRequestInterface } from './interfaces/';
3
+ import { HttpClient } from '@angular/common/http';
4
+ import { HostService } from '../_generated/host.service';
3
5
  import { Observable } from 'rxjs';
4
6
  import * as i0 from "@angular/core";
5
7
  export declare class GoogleMeetApiService {
6
- private readonly hostService;
7
- private readonly http;
8
+ private http;
9
+ private hostService;
8
10
  private _host;
11
+ constructor(http: HttpClient, hostService: HostService);
9
12
  private apiOptions;
10
13
  createMeeting(r: GoogleMeetCreateMeetingRequest | GoogleMeetCreateMeetingRequestInterface): Observable<GoogleMeetCreateMeetingResponse>;
11
14
  listMeetings(r: GoogleMeetListMeetingsRequest | GoogleMeetListMeetingsRequestInterface): Observable<GoogleMeetListMeetingsResponse>;
@@ -5,10 +5,10 @@ export { AnswerInterface, AnswersInterface, CalendarApplicationContextEntryInter
5
5
  export { DateRangeInterface, } from './date-range.interface';
6
6
  export { EventTypeDateRangeInterface, FieldInterface, FormInterface, MeetingTypeInterface, RegistrationCutOffInterface, RelativeDateRangeInterface, } from './meeting-type.interface';
7
7
  export { EventGroupAndServiceAssociationsInterface, GroupInterface, ServiceInterface, } from './groups-and-services.interface';
8
- export { BookMeetingRequestInterface, BookMeetingResponseInterface, 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
- export { GroupResponseInterface, GroupsRequestInterface, GroupsResponseInterface, ServiceResponseInterface, ServicesRequestInterface, ServicesResponseInterface, } from './meeting-external.interface';
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
+ export { AvailableTimeSlotsRequestInterface, AvailableTimeSlotsResponseInterface, BookMeetingExternalRequestInterface, BookMeetingExternalResponseInterface, EventTypeInterface, ExternalCancelMeetingRequestInterface, ExternalRescheduleMeetingRequestInterface, ExternalRescheduleMeetingResponseInterface, GetUsersRequestInterface, GetUsersResponseInterface, GroupResponseInterface, GroupsRequestInterface, GroupsResponseInterface, HostUserDetailsInterface, ListTeamEventTypesRequestInterface, ListTeamEventTypesResponseInterface, ServiceResponseInterface, ServicesRequestInterface, ServicesResponseInterface, UserResponseInterface, } from './meeting-external.interface';
10
10
  export { FieldMaskInterface, } from './field-mask.interface';
11
- export { EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, BuildHostIdRequestApplicationContextPropertiesEntryInterface, AvailabilityRuleInterface, AvailabilityRuleListInterface, BuildHostIdRequestInterface, BuildHostIdResponseInterface, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntryInterface, CalendarMigrationResponseInterface, CancelMeetingRequestInterface, CheckGroupOrServiceSlugExistRequestInterface, CheckGroupOrServiceSlugExistResponseInterface, CreateAvailabilityRequestInterface, CreateAvailabilityResponseInterface, CreateCalendarRequestInterface, CreateCalendarResponseInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateGroupResponseInterface, CreateMeetingTypeRequestInterface, CreateMeetingTypeResponseInterface, CreateServiceRequestInterface, CreateServiceResponseInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, DoesCalendarExistResponseInterface, EnsureGroupCalendarsExistRequestInterface, EnsureGroupCalendarsExistResponseInterface, EnsurePersonalCalendarExistsRequestInterface, EnsurePersonalCalendarExistsResponseInterface, EnsureSessionEventCalendarsExistRequestInterface, EnsureSessionEventCalendarsExistResponseInterface, ListBookedMeetingsRequestFiltersInterface, ListAvailabilityRequestFiltersInterface, GetEntityAssociationRequestInterface, GetEntityAssociationResponseInterface, GetHostMeetingRequestInterface, GetHostMeetingResponseInterface, GetHostPreferencesRequestInterface, GetHostPreferencesResponseInterface, GetHostsForCalendarRequestInterface, GetHostsForCalendarResponseInterface, GetMeetingTypesForCalendarsRequestInterface, GetMeetingTypesForCalendarsResponseInterface, HostBookMeetingRequestInterface, HostBookMeetingResponseInterface, HostBookSessionRequestInterface, HostBookSessionResponseInterface, HostDeleteAttendeesRequestInterface, HostDetailsInterface, HostGetCalendarRequestInterface, HostGetCalendarResponseInterface, HostGetMeetingTypeRequestInterface, HostGetMeetingTypeResponseInterface, HostListMeetingTypesRequestInterface, HostListMeetingTypesResponseInterface, GetHostsForCalendarResponseHostUserAvailabilityRuleEntryInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponseInterface, IsHostConfiguredRequestInterface, IsHostConfiguredResponseInterface, ListAttendeesRequestInterface, ListAttendeesResponseInterface, ListAvailabilityRequestInterface, ListAvailabilityResponseInterface, ListAvailableTimeslotsForRecurringSessionRequestInterface, ListAvailableTimeslotsForRecurringSessionResponseInterface, ListAvailableTimeslotsForSessionRequestInterface, ListAvailableTimeslotsForSessionResponseInterface, ListBookedMeetingsRequestInterface, ListBookedMeetingsResponseInterface, ListGroupsRequestInterface, ListGroupsResponseInterface, ListServicesRequestInterface, ListServicesResponseInterface, MeetingInterface, MeetingTypeListInterface, MeetingMetadataEntryInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, RecurrenceConfigInterface, RecurrenceEndInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SessionAttendeesInterface, SetGeneralAvailabilityRequestInterface, TimeSlotsByWeekDayInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
11
+ export { BuildHostIdRequestApplicationContextPropertiesEntryInterface, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, 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, ListBookedMeetingsRequestFiltersInterface, ListAvailabilityRequestFiltersInterface, GetEntityAssociationRequestInterface, GetEntityAssociationResponseInterface, GetHostMeetingRequestInterface, GetHostMeetingResponseInterface, GetHostPreferencesRequestInterface, GetHostPreferencesResponseInterface, GetHostsForCalendarRequestInterface, GetHostsForCalendarResponseInterface, GetMeetingTypesForCalendarsRequestInterface, GetMeetingTypesForCalendarsResponseInterface, HostBookMeetingRequestInterface, HostBookMeetingResponseInterface, HostBookSessionRequestInterface, HostBookSessionResponseInterface, HostDeleteAttendeesRequestInterface, HostDetailsInterface, HostGetCalendarRequestInterface, HostGetCalendarResponseInterface, HostGetMeetingTypeRequestInterface, HostGetMeetingTypeResponseInterface, HostListMeetingTypesRequestInterface, HostListMeetingTypesResponseInterface, GetHostsForCalendarResponseHostUserAvailabilityRuleEntryInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponseInterface, IsHostConfiguredRequestInterface, IsHostConfiguredResponseInterface, ListAttendeesRequestInterface, ListAttendeesResponseInterface, ListAvailabilityRequestInterface, ListAvailabilityResponseInterface, ListAvailableTimeslotsForRecurringSessionRequestInterface, ListAvailableTimeslotsForRecurringSessionResponseInterface, ListAvailableTimeslotsForSessionRequestInterface, ListAvailableTimeslotsForSessionResponseInterface, ListBookedMeetingsRequestInterface, ListBookedMeetingsResponseInterface, ListGroupsRequestInterface, ListGroupsResponseInterface, ListServicesRequestInterface, ListServicesResponseInterface, MeetingInterface, MeetingTypeListInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, MeetingMetadataEntryInterface, RecurrenceConfigInterface, RecurrenceEndInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SessionAttendeesInterface, SetGeneralAvailabilityRequestInterface, TimeSlotsByWeekDayInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
12
12
  export { AccessInterface, MCPOptionsInterface, } from './annotations.interface';
13
13
  export { TimeOfDayInterface, } from './timeofday.interface';
14
14
  export { DateTimeInterface, TimeZoneInterface, } from './datetime.interface';
@@ -1,3 +1,102 @@
1
+ import { DateRangeInterface } from './date-range.interface';
2
+ import { EventTypeDateRangeInterface } from './meeting-type.interface';
3
+ import { IsoDateTimeRangeInterface, ContactInterface, AnswersInterface, HostUserInterface, HostOrderDetailsInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface } from './shared.interface';
4
+ import { TimeZoneInterface } from './datetime.interface';
5
+ import * as e from '../enums';
6
+ export interface AvailableTimeSlotsRequestInterface {
7
+ partnerId?: string;
8
+ businessId?: string;
9
+ eventTypeId?: string;
10
+ timeSpan?: DateRangeInterface;
11
+ timeZone?: TimeZoneInterface;
12
+ hostUserId?: string;
13
+ }
14
+ export interface AvailableTimeSlotsResponseInterface {
15
+ timeSlots?: IsoDateTimeRangeInterface[];
16
+ }
17
+ export interface BookMeetingExternalRequestInterface {
18
+ partnerId?: string;
19
+ businessId?: string;
20
+ userId?: string;
21
+ eventTypeId?: string;
22
+ start?: Date;
23
+ attendees?: ContactInterface[];
24
+ comment?: string;
25
+ location?: string;
26
+ formAnswers?: AnswersInterface;
27
+ hostUserId?: string;
28
+ }
29
+ export interface BookMeetingExternalResponseInterface {
30
+ meetingId?: string;
31
+ userId?: string;
32
+ meetingStartTime?: Date;
33
+ meetingEndTime?: Date;
34
+ eventTypeId?: string;
35
+ title?: string;
36
+ location?: string;
37
+ hostDetails?: HostUserDetailsInterface[];
38
+ bookingUrl?: string;
39
+ cancelUrl?: string;
40
+ rescheduleUrl?: string;
41
+ meetingLink?: string;
42
+ attendeeEmails?: string[];
43
+ }
44
+ export interface EventTypeInterface {
45
+ id?: string;
46
+ name?: string;
47
+ duration?: string;
48
+ description?: string;
49
+ bookingUrl?: string;
50
+ location?: string;
51
+ locationType?: e.MeetingLocationType;
52
+ locationGuidelines?: string;
53
+ isVideoConferencingEnabled?: boolean;
54
+ calendarType?: string;
55
+ hostUsers?: HostUserInterface[];
56
+ bookingWindow?: EventTypeDateRangeInterface;
57
+ meetingType?: e.TeamEventMeetingType;
58
+ hostOrderDetails?: HostOrderDetailsInterface[];
59
+ isEmailRequired?: boolean;
60
+ isPhoneNumberRequired?: boolean;
61
+ }
62
+ export interface ExternalCancelMeetingRequestInterface {
63
+ partnerId?: string;
64
+ businessId?: string;
65
+ meetingId?: string;
66
+ cancellationReason?: string;
67
+ }
68
+ export interface ExternalRescheduleMeetingRequestInterface {
69
+ partnerId?: string;
70
+ businessId?: string;
71
+ userId?: string;
72
+ meetingId?: string;
73
+ startTime?: Date;
74
+ location?: string;
75
+ timeZone?: TimeZoneInterface;
76
+ }
77
+ export interface ExternalRescheduleMeetingResponseInterface {
78
+ meetingId?: string;
79
+ startTime?: Date;
80
+ endTime?: Date;
81
+ hostDetails?: HostUserDetailsInterface[];
82
+ eventTypeId?: string;
83
+ title?: string;
84
+ location?: string;
85
+ meetingUrl?: string;
86
+ bookingUrl?: string;
87
+ rescheduleUrl?: string;
88
+ cancelUrl?: string;
89
+ }
90
+ export interface GetUsersRequestInterface {
91
+ partnerId?: string;
92
+ businessId?: string;
93
+ userId?: string;
94
+ pagedRequestOptions?: PagedRequestOptionsInterface;
95
+ }
96
+ export interface GetUsersResponseInterface {
97
+ users?: UserResponseInterface[];
98
+ pagedResponseMetadata?: PagedResponseMetadataInterface;
99
+ }
1
100
  export interface GroupResponseInterface {
2
101
  id?: string;
3
102
  name?: string;
@@ -13,6 +112,22 @@ export interface GroupsRequestInterface {
13
112
  export interface GroupsResponseInterface {
14
113
  groups?: GroupResponseInterface[];
15
114
  }
115
+ export interface HostUserDetailsInterface {
116
+ hostUserId?: string;
117
+ hostUserName?: string;
118
+ }
119
+ export interface ListTeamEventTypesRequestInterface {
120
+ partnerId?: string;
121
+ businessId?: string;
122
+ ownerId?: string;
123
+ cursor?: string;
124
+ pageSize?: number;
125
+ }
126
+ export interface ListTeamEventTypesResponseInterface {
127
+ eventTypes?: EventTypeInterface[];
128
+ nextCursor?: string;
129
+ hasMore?: boolean;
130
+ }
16
131
  export interface ServiceResponseInterface {
17
132
  id?: string;
18
133
  name?: string;
@@ -28,3 +143,8 @@ export interface ServicesRequestInterface {
28
143
  export interface ServicesResponseInterface {
29
144
  services?: ServiceResponseInterface[];
30
145
  }
146
+ export interface UserResponseInterface {
147
+ userId?: string;
148
+ displayName?: string;
149
+ isConfigured?: boolean;
150
+ }
@@ -2,7 +2,7 @@ import { ContactInterface, AnswersInterface, CalendarInterface, HostInterface, H
2
2
  import { DateRangeInterface } from './date-range.interface';
3
3
  import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
4
4
  import { MeetingTypeInterface, FormInterface } from './meeting-type.interface';
5
- import { TimeZoneInterface } from './';
5
+ import { TimeZoneInterface } from './datetime.interface';
6
6
  import * as e from '../enums';
7
7
  export interface BookMeetingRequestInterface {
8
8
  hostId?: string;
@@ -24,6 +24,14 @@ export interface BookMeetingResponseInterface {
24
24
  meetingId?: string;
25
25
  hostId?: string;
26
26
  }
27
+ export interface CheckFeatureFlagRequestInterface {
28
+ fieldType?: e.FeatureFlagFieldType;
29
+ fieldValue?: string;
30
+ featureFlagKey?: string;
31
+ }
32
+ export interface CheckFeatureFlagResponseInterface {
33
+ isEnabled?: boolean;
34
+ }
27
35
  export interface GetCalendarRequestInterface {
28
36
  calendarId?: string;
29
37
  }
@@ -136,6 +144,7 @@ export interface GuestGetBookedMeetingResponseV2Interface {
136
144
  rescheduleLink?: string;
137
145
  cancelLink?: string;
138
146
  timeZone?: TimeZoneInterface;
147
+ businessLogo?: string;
139
148
  }
140
149
  export interface GuestIsHostConfiguredRequestInterface {
141
150
  hostId?: string;
@@ -3,17 +3,17 @@ 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
5
  import { TimeRangeInterface, CalendarInterface, PreferencesInterface, HostUserInterface, ContactInterface, EmailsToDeleteInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, IsoDateTimeRangeInterface, AttendeeInterface, AnswersInterface, AttachmentInterface } from './shared.interface';
6
- import { TimeZoneInterface } from './';
6
+ import { TimeZoneInterface } from './datetime.interface';
7
7
  import * as e from '../enums';
8
- export interface EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
8
+ export interface BuildHostIdRequestApplicationContextPropertiesEntryInterface {
9
9
  key?: string;
10
10
  value?: string;
11
11
  }
12
- export interface IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
12
+ export interface EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
13
13
  key?: string;
14
14
  value?: string;
15
15
  }
16
- export interface BuildHostIdRequestApplicationContextPropertiesEntryInterface {
16
+ export interface IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
17
17
  key?: string;
18
18
  value?: string;
19
19
  }
@@ -49,6 +49,13 @@ export interface CancelMeetingRequestInterface {
49
49
  isSeriesCancellation?: boolean;
50
50
  sessionId?: string;
51
51
  }
52
+ export interface CheckEventTypeSlugExistRequestInterface {
53
+ calendarId?: string;
54
+ slugIdentifier?: string;
55
+ }
56
+ export interface CheckEventTypeSlugExistResponseInterface {
57
+ exists?: boolean;
58
+ }
52
59
  export interface CheckGroupOrServiceSlugExistRequestInterface {
53
60
  hostId?: string;
54
61
  slugIdentifier?: string;
@@ -353,11 +360,11 @@ export interface MeetingInterface {
353
360
  export interface MeetingTypeListInterface {
354
361
  meetingTypes?: MeetingTypeInterface[];
355
362
  }
356
- export interface MeetingMetadataEntryInterface {
363
+ export interface UpdateMeetingMetadataRequestMetadataEntryInterface {
357
364
  key?: string;
358
365
  value?: string;
359
366
  }
360
- export interface UpdateMeetingMetadataRequestMetadataEntryInterface {
367
+ export interface MeetingMetadataEntryInterface {
361
368
  key?: string;
362
369
  value?: string;
363
370
  }
@@ -1,4 +1,5 @@
1
- import { TimeZoneInterface, TimeOfDayInterface } from './';
1
+ import { TimeOfDayInterface } from './timeofday.interface';
2
+ import { TimeZoneInterface } from './datetime.interface';
2
3
  import * as e from '../enums';
3
4
  export interface AnswerInterface {
4
5
  id?: string;
@@ -1,14 +1,23 @@
1
- import { GroupsRequest, GroupsResponse, ServicesRequest, ServicesResponse } from './objects/';
2
- import { GroupsRequestInterface, ServicesRequestInterface } from './interfaces/';
1
+ import { AvailableTimeSlotsRequest, AvailableTimeSlotsResponse, BookMeetingExternalRequest, BookMeetingExternalResponse, ExternalCancelMeetingRequest, ExternalRescheduleMeetingRequest, ExternalRescheduleMeetingResponse, GetUsersRequest, GetUsersResponse, GroupsRequest, GroupsResponse, ListTeamEventTypesRequest, ListTeamEventTypesResponse, ServicesRequest, ServicesResponse } from './objects/';
2
+ import { AvailableTimeSlotsRequestInterface, BookMeetingExternalRequestInterface, ExternalCancelMeetingRequestInterface, ExternalRescheduleMeetingRequestInterface, GetUsersRequestInterface, GroupsRequestInterface, ListTeamEventTypesRequestInterface, ServicesRequestInterface } from './interfaces/';
3
+ import { HttpClient, HttpResponse } from '@angular/common/http';
4
+ import { HostService } from '../_generated/host.service';
3
5
  import { Observable } from 'rxjs';
4
6
  import * as i0 from "@angular/core";
5
7
  export declare class MeetingExternalApiService {
6
- private readonly hostService;
7
- private readonly http;
8
+ private http;
9
+ private hostService;
8
10
  private _host;
11
+ constructor(http: HttpClient, hostService: HostService);
9
12
  private apiOptions;
10
13
  listGroups(r: GroupsRequest | GroupsRequestInterface): Observable<GroupsResponse>;
11
14
  listServices(r: ServicesRequest | ServicesRequestInterface): Observable<ServicesResponse>;
15
+ bookMeeting(r: BookMeetingExternalRequest | BookMeetingExternalRequestInterface): Observable<BookMeetingExternalResponse>;
16
+ getUsers(r: GetUsersRequest | GetUsersRequestInterface): Observable<GetUsersResponse>;
17
+ listAvailableTimeSlots(r: AvailableTimeSlotsRequest | AvailableTimeSlotsRequestInterface): Observable<AvailableTimeSlotsResponse>;
18
+ rescheduleMeeting(r: ExternalRescheduleMeetingRequest | ExternalRescheduleMeetingRequestInterface): Observable<ExternalRescheduleMeetingResponse>;
19
+ cancelMeeting(r: ExternalCancelMeetingRequest | ExternalCancelMeetingRequestInterface): Observable<HttpResponse<null>>;
20
+ listTeamEventTypes(r: ListTeamEventTypesRequest | ListTeamEventTypesRequestInterface): Observable<ListTeamEventTypesResponse>;
12
21
  static ɵfac: i0.ɵɵFactoryDeclaration<MeetingExternalApiService, never>;
13
22
  static ɵprov: i0.ɵɵInjectableDeclaration<MeetingExternalApiService>;
14
23
  }
@@ -1,12 +1,14 @@
1
- import { BookMeetingRequest, BookMeetingResponse, 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 } from './objects/';
2
- import { BookMeetingRequestInterface, GetCalendarRequestInterface, GetGroupRequestInterface, GetHostRequestInterface, GetMeetingCalendarInfoRequestInterface, GetMeetingTypeRequestInterface, GetServiceRequestInterface, GetSessionInviteeMeetingInfoRequestInterface, GetSessionMeetingRequestInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingRequestV2Interface, GuestIsHostConfiguredRequestInterface, GuestRescheduleMeetingRequestInterface, InviteeDeregisterSessionMeetingRequestInterface, InviteeRegisterSessionMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListMeetingTypesRequestInterface } from './interfaces/';
3
- import { HttpResponse } from '@angular/common/http';
1
+ import { 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 } from './objects/';
2
+ import { BookMeetingRequestInterface, CheckFeatureFlagRequestInterface, GetCalendarRequestInterface, GetGroupRequestInterface, GetHostRequestInterface, GetMeetingCalendarInfoRequestInterface, GetMeetingTypeRequestInterface, GetServiceRequestInterface, GetSessionInviteeMeetingInfoRequestInterface, GetSessionMeetingRequestInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingRequestV2Interface, GuestIsHostConfiguredRequestInterface, GuestRescheduleMeetingRequestInterface, InviteeDeregisterSessionMeetingRequestInterface, InviteeRegisterSessionMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListMeetingTypesRequestInterface } from './interfaces/';
3
+ import { HttpClient, HttpResponse } from '@angular/common/http';
4
+ import { HostService } from '../_generated/host.service';
4
5
  import { Observable } from 'rxjs';
5
6
  import * as i0 from "@angular/core";
6
7
  export declare class MeetingGuestApiService {
7
- private readonly hostService;
8
- private readonly http;
8
+ private http;
9
+ private hostService;
9
10
  private _host;
11
+ constructor(http: HttpClient, hostService: HostService);
10
12
  private apiOptions;
11
13
  listMeetingTypes(r: ListMeetingTypesRequest | ListMeetingTypesRequestInterface): Observable<ListMeetingTypesResponse>;
12
14
  getMeetingType(r: GetMeetingTypeRequest | GetMeetingTypeRequestInterface): Observable<GetMeetingTypeResponse>;
@@ -26,6 +28,7 @@ export declare class MeetingGuestApiService {
26
28
  inviteeRegisterSessionMeeting(r: InviteeRegisterSessionMeetingRequest | InviteeRegisterSessionMeetingRequestInterface): Observable<HttpResponse<null>>;
27
29
  getSessionInviteeMeetingInfo(r: GetSessionInviteeMeetingInfoRequest | GetSessionInviteeMeetingInfoRequestInterface): Observable<GetSessionInviteeMeetingInfoResponse>;
28
30
  inviteeDeregisterSessionMeeting(r: InviteeDeregisterSessionMeetingRequest | InviteeDeregisterSessionMeetingRequestInterface): Observable<HttpResponse<null>>;
31
+ checkFeatureFlag(r: CheckFeatureFlagRequest | CheckFeatureFlagRequestInterface): Observable<CheckFeatureFlagResponse>;
29
32
  static ɵfac: i0.ɵɵFactoryDeclaration<MeetingGuestApiService, never>;
30
33
  static ɵprov: i0.ɵɵInjectableDeclaration<MeetingGuestApiService>;
31
34
  }
@@ -1,12 +1,14 @@
1
- import { BookMeetingRequest, BookMeetingResponse, BuildHostIdRequest, BuildHostIdResponse, CalendarMigrationResponse, CancelMeetingRequest, CheckGroupOrServiceSlugExistRequest, CheckGroupOrServiceSlugExistResponse, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateGroupRequest, CreateGroupResponse, CreateMeetingTypeRequest, CreateMeetingTypeResponse, CreateServiceRequest, CreateServiceResponse, DeleteAvailabilityRequest, DeleteGroupRequest, DeleteMeetingTypeRequest, DeleteServiceRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, EnsureSessionEventCalendarsExistRequest, EnsureSessionEventCalendarsExistResponse, GetEntityAssociationRequest, GetEntityAssociationResponse, GetGroupRequest, GetGroupResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, GetServiceRequest, GetServiceResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostBookSessionRequest, HostBookSessionResponse, HostDeleteAttendeesRequest, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAttendeesRequest, ListAttendeesResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListAvailableTimeslotsForRecurringSessionRequest, ListAvailableTimeslotsForRecurringSessionResponse, ListAvailableTimeslotsForSessionRequest, ListAvailableTimeslotsForSessionResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest } from './objects/';
2
- import { BookMeetingRequestInterface, BuildHostIdRequestInterface, CancelMeetingRequestInterface, CheckGroupOrServiceSlugExistRequestInterface, CreateAvailabilityRequestInterface, CreateCalendarRequestInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateMeetingTypeRequestInterface, CreateServiceRequestInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, EnsureGroupCalendarsExistRequestInterface, EnsurePersonalCalendarExistsRequestInterface, EnsureSessionEventCalendarsExistRequestInterface, GetEntityAssociationRequestInterface, GetGroupRequestInterface, GetHostMeetingRequestInterface, GetHostPreferencesRequestInterface, GetHostsForCalendarRequestInterface, GetMeetingTypesForCalendarsRequestInterface, GetServiceRequestInterface, HostBookMeetingRequestInterface, HostBookSessionRequestInterface, HostDeleteAttendeesRequestInterface, HostGetCalendarRequestInterface, HostGetMeetingTypeRequestInterface, HostListMeetingTypesRequestInterface, IsCalendarConfiguredRequestInterface, IsHostConfiguredRequestInterface, ListAttendeesRequestInterface, ListAvailabilityRequestInterface, ListAvailableTimeslotsForRecurringSessionRequestInterface, ListAvailableTimeslotsForSessionRequestInterface, ListBookedMeetingsRequestInterface, ListGroupsRequestInterface, ListServicesRequestInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface } from './interfaces/';
3
- import { HttpResponse } from '@angular/common/http';
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/';
3
+ import { HttpClient, HttpResponse } from '@angular/common/http';
4
+ import { HostService } from '../_generated/host.service';
4
5
  import { Observable } from 'rxjs';
5
6
  import * as i0 from "@angular/core";
6
7
  export declare class MeetingHostApiService {
7
- private readonly hostService;
8
- private readonly http;
8
+ private http;
9
+ private hostService;
9
10
  private _host;
11
+ constructor(http: HttpClient, hostService: HostService);
10
12
  private apiOptions;
11
13
  buildHostId(r: BuildHostIdRequest | BuildHostIdRequestInterface): Observable<BuildHostIdResponse>;
12
14
  doesCalendarExist(r: DoesCalendarExistRequest | DoesCalendarExistRequestInterface): Observable<DoesCalendarExistResponse>;
@@ -52,6 +54,7 @@ export declare class MeetingHostApiService {
52
54
  getGroup(r: GetGroupRequest | GetGroupRequestInterface): Observable<GetGroupResponse>;
53
55
  getService(r: GetServiceRequest | GetServiceRequestInterface): Observable<GetServiceResponse>;
54
56
  checkGroupOrServiceSlugExist(r: CheckGroupOrServiceSlugExistRequest | CheckGroupOrServiceSlugExistRequestInterface): Observable<CheckGroupOrServiceSlugExistResponse>;
57
+ checkEventTypeSlugExist(r: CheckEventTypeSlugExistRequest | CheckEventTypeSlugExistRequestInterface): Observable<CheckEventTypeSlugExistResponse>;
55
58
  hostBookMeeting(r: BookMeetingRequest | BookMeetingRequestInterface): Observable<BookMeetingResponse>;
56
59
  getEntityAssociations(r: GetEntityAssociationRequest | GetEntityAssociationRequestInterface): Observable<GetEntityAssociationResponse>;
57
60
  hostBookSession(r: HostBookSessionRequest | HostBookSessionRequestInterface): Observable<HostBookSessionResponse>;
@@ -1,11 +1,14 @@
1
1
  import { MeetingSourceListRequest, MeetingSourceListResponse } from './objects/';
2
2
  import { MeetingSourceListRequestInterface } from './interfaces/';
3
+ import { HttpClient } from '@angular/common/http';
4
+ import { HostService } from '../_generated/host.service';
3
5
  import { Observable } from 'rxjs';
4
6
  import * as i0 from "@angular/core";
5
7
  export declare class MeetingSourceAPIApiService {
6
- private readonly hostService;
7
- private readonly http;
8
+ private http;
9
+ private hostService;
8
10
  private _host;
11
+ constructor(http: HttpClient, hostService: HostService);
9
12
  private apiOptions;
10
13
  list(r: MeetingSourceListRequest | MeetingSourceListRequestInterface): Observable<MeetingSourceListResponse>;
11
14
  static ɵfac: i0.ɵɵFactoryDeclaration<MeetingSourceAPIApiService, never>;
@@ -5,10 +5,10 @@ export { Answer, Answers, CalendarApplicationContextEntry, Attachment, Attendee,
5
5
  export { DateRange, } from './date-range';
6
6
  export { EventTypeDateRange, Field, Form, MeetingType, RegistrationCutOff, RelativeDateRange, } from './meeting-type';
7
7
  export { EventGroupAndServiceAssociations, Group, Service, } from './groups-and-services';
8
- export { BookMeetingRequest, BookMeetingResponse, 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
- export { GroupResponse, GroupsRequest, GroupsResponse, ServiceResponse, ServicesRequest, ServicesResponse, } from './meeting-external';
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
+ export { AvailableTimeSlotsRequest, AvailableTimeSlotsResponse, BookMeetingExternalRequest, BookMeetingExternalResponse, EventType, ExternalCancelMeetingRequest, ExternalRescheduleMeetingRequest, ExternalRescheduleMeetingResponse, GetUsersRequest, GetUsersResponse, GroupResponse, GroupsRequest, GroupsResponse, HostUserDetails, ListTeamEventTypesRequest, ListTeamEventTypesResponse, ServiceResponse, ServicesRequest, ServicesResponse, UserResponse, } from './meeting-external';
10
10
  export { FieldMask, } from './field-mask';
11
- export { EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, IsCalendarConfiguredRequestApplicationContextPropertiesEntry, BuildHostIdRequestApplicationContextPropertiesEntry, AvailabilityRule, AvailabilityRuleList, BuildHostIdRequest, BuildHostIdResponse, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntry, CalendarMigrationResponse, CancelMeetingRequest, CheckGroupOrServiceSlugExistRequest, CheckGroupOrServiceSlugExistResponse, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateGroupRequest, CreateGroupResponse, CreateMeetingTypeRequest, CreateMeetingTypeResponse, CreateServiceRequest, CreateServiceResponse, DeleteAvailabilityRequest, DeleteGroupRequest, DeleteMeetingTypeRequest, DeleteServiceRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, EnsureSessionEventCalendarsExistRequest, EnsureSessionEventCalendarsExistResponse, ListBookedMeetingsRequestFilters, ListAvailabilityRequestFilters, GetEntityAssociationRequest, GetEntityAssociationResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostBookSessionRequest, HostBookSessionResponse, HostDeleteAttendeesRequest, HostDetails, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, GetHostsForCalendarResponseHostUserAvailabilityRuleEntry, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAttendeesRequest, ListAttendeesResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListAvailableTimeslotsForRecurringSessionRequest, ListAvailableTimeslotsForRecurringSessionResponse, ListAvailableTimeslotsForSessionRequest, ListAvailableTimeslotsForSessionResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, Meeting, MeetingTypeList, MeetingMetadataEntry, UpdateMeetingMetadataRequestMetadataEntry, RecurrenceConfig, RecurrenceEnd, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SessionAttendees, SetGeneralAvailabilityRequest, TimeSlotsByWeekDay, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
11
+ export { BuildHostIdRequestApplicationContextPropertiesEntry, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, IsCalendarConfiguredRequestApplicationContextPropertiesEntry, 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, ListBookedMeetingsRequestFilters, ListAvailabilityRequestFilters, GetEntityAssociationRequest, GetEntityAssociationResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostBookSessionRequest, HostBookSessionResponse, HostDeleteAttendeesRequest, HostDetails, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, GetHostsForCalendarResponseHostUserAvailabilityRuleEntry, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAttendeesRequest, ListAttendeesResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListAvailableTimeslotsForRecurringSessionRequest, ListAvailableTimeslotsForRecurringSessionResponse, ListAvailableTimeslotsForSessionRequest, ListAvailableTimeslotsForSessionResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, Meeting, MeetingTypeList, UpdateMeetingMetadataRequestMetadataEntry, MeetingMetadataEntry, RecurrenceConfig, RecurrenceEnd, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SessionAttendees, SetGeneralAvailabilityRequest, TimeSlotsByWeekDay, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
12
12
  export { Access, MCPOptions, } from './annotations';
13
13
  export { TimeOfDay, } from './timeofday';
14
14
  export { DateTime, TimeZone, } from './datetime';
@@ -1,5 +1,134 @@
1
1
  import * as i from '../interfaces';
2
+ import { DateRange } from './date-range';
3
+ import { EventTypeDateRange } from './meeting-type';
4
+ import { IsoDateTimeRange, Contact, Answers, HostUser, HostOrderDetails, PagedRequestOptions, PagedResponseMetadata } from './shared';
5
+ import { TimeZone } from './datetime';
6
+ import * as e from '../enums';
2
7
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
8
+ export declare class AvailableTimeSlotsRequest implements i.AvailableTimeSlotsRequestInterface {
9
+ partnerId: string;
10
+ businessId: string;
11
+ eventTypeId: string;
12
+ timeSpan: DateRange;
13
+ timeZone: TimeZone;
14
+ hostUserId: string;
15
+ static fromProto(proto: any): AvailableTimeSlotsRequest;
16
+ constructor(kwargs?: i.AvailableTimeSlotsRequestInterface);
17
+ toApiJson(): object;
18
+ }
19
+ export declare class AvailableTimeSlotsResponse implements i.AvailableTimeSlotsResponseInterface {
20
+ timeSlots: IsoDateTimeRange[];
21
+ static fromProto(proto: any): AvailableTimeSlotsResponse;
22
+ constructor(kwargs?: i.AvailableTimeSlotsResponseInterface);
23
+ toApiJson(): object;
24
+ }
25
+ export declare class BookMeetingExternalRequest implements i.BookMeetingExternalRequestInterface {
26
+ partnerId: string;
27
+ businessId: string;
28
+ userId: string;
29
+ eventTypeId: string;
30
+ start: Date;
31
+ attendees: Contact[];
32
+ comment: string;
33
+ location: string;
34
+ formAnswers: Answers;
35
+ hostUserId: string;
36
+ static fromProto(proto: any): BookMeetingExternalRequest;
37
+ constructor(kwargs?: i.BookMeetingExternalRequestInterface);
38
+ toApiJson(): object;
39
+ }
40
+ export declare class BookMeetingExternalResponse implements i.BookMeetingExternalResponseInterface {
41
+ meetingId: string;
42
+ userId: string;
43
+ meetingStartTime: Date;
44
+ meetingEndTime: Date;
45
+ eventTypeId: string;
46
+ title: string;
47
+ location: string;
48
+ hostDetails: HostUserDetails[];
49
+ bookingUrl: string;
50
+ cancelUrl: string;
51
+ rescheduleUrl: string;
52
+ meetingLink: string;
53
+ attendeeEmails: string[];
54
+ static fromProto(proto: any): BookMeetingExternalResponse;
55
+ constructor(kwargs?: i.BookMeetingExternalResponseInterface);
56
+ toApiJson(): object;
57
+ }
58
+ export declare class EventType implements i.EventTypeInterface {
59
+ id: string;
60
+ name: string;
61
+ duration: string;
62
+ description: string;
63
+ bookingUrl: string;
64
+ location: string;
65
+ locationType: e.MeetingLocationType;
66
+ locationGuidelines: string;
67
+ isVideoConferencingEnabled: boolean;
68
+ calendarType: string;
69
+ hostUsers: HostUser[];
70
+ bookingWindow: EventTypeDateRange;
71
+ meetingType: e.TeamEventMeetingType;
72
+ hostOrderDetails: HostOrderDetails[];
73
+ isEmailRequired: boolean;
74
+ isPhoneNumberRequired: boolean;
75
+ static fromProto(proto: any): EventType;
76
+ constructor(kwargs?: i.EventTypeInterface);
77
+ toApiJson(): object;
78
+ }
79
+ export declare class ExternalCancelMeetingRequest implements i.ExternalCancelMeetingRequestInterface {
80
+ partnerId: string;
81
+ businessId: string;
82
+ meetingId: string;
83
+ cancellationReason: string;
84
+ static fromProto(proto: any): ExternalCancelMeetingRequest;
85
+ constructor(kwargs?: i.ExternalCancelMeetingRequestInterface);
86
+ toApiJson(): object;
87
+ }
88
+ export declare class ExternalRescheduleMeetingRequest implements i.ExternalRescheduleMeetingRequestInterface {
89
+ partnerId: string;
90
+ businessId: string;
91
+ userId: string;
92
+ meetingId: string;
93
+ startTime: Date;
94
+ location: string;
95
+ timeZone: TimeZone;
96
+ static fromProto(proto: any): ExternalRescheduleMeetingRequest;
97
+ constructor(kwargs?: i.ExternalRescheduleMeetingRequestInterface);
98
+ toApiJson(): object;
99
+ }
100
+ export declare class ExternalRescheduleMeetingResponse implements i.ExternalRescheduleMeetingResponseInterface {
101
+ meetingId: string;
102
+ startTime: Date;
103
+ endTime: Date;
104
+ hostDetails: HostUserDetails[];
105
+ eventTypeId: string;
106
+ title: string;
107
+ location: string;
108
+ meetingUrl: string;
109
+ bookingUrl: string;
110
+ rescheduleUrl: string;
111
+ cancelUrl: string;
112
+ static fromProto(proto: any): ExternalRescheduleMeetingResponse;
113
+ constructor(kwargs?: i.ExternalRescheduleMeetingResponseInterface);
114
+ toApiJson(): object;
115
+ }
116
+ export declare class GetUsersRequest implements i.GetUsersRequestInterface {
117
+ partnerId: string;
118
+ businessId: string;
119
+ userId: string;
120
+ pagedRequestOptions: PagedRequestOptions;
121
+ static fromProto(proto: any): GetUsersRequest;
122
+ constructor(kwargs?: i.GetUsersRequestInterface);
123
+ toApiJson(): object;
124
+ }
125
+ export declare class GetUsersResponse implements i.GetUsersResponseInterface {
126
+ users: UserResponse[];
127
+ pagedResponseMetadata: PagedResponseMetadata;
128
+ static fromProto(proto: any): GetUsersResponse;
129
+ constructor(kwargs?: i.GetUsersResponseInterface);
130
+ toApiJson(): object;
131
+ }
3
132
  export declare class GroupResponse implements i.GroupResponseInterface {
4
133
  id: string;
5
134
  name: string;
@@ -24,6 +153,31 @@ export declare class GroupsResponse implements i.GroupsResponseInterface {
24
153
  constructor(kwargs?: i.GroupsResponseInterface);
25
154
  toApiJson(): object;
26
155
  }
156
+ export declare class HostUserDetails implements i.HostUserDetailsInterface {
157
+ hostUserId: string;
158
+ hostUserName: string;
159
+ static fromProto(proto: any): HostUserDetails;
160
+ constructor(kwargs?: i.HostUserDetailsInterface);
161
+ toApiJson(): object;
162
+ }
163
+ export declare class ListTeamEventTypesRequest implements i.ListTeamEventTypesRequestInterface {
164
+ partnerId: string;
165
+ businessId: string;
166
+ ownerId: string;
167
+ cursor: string;
168
+ pageSize: number;
169
+ static fromProto(proto: any): ListTeamEventTypesRequest;
170
+ constructor(kwargs?: i.ListTeamEventTypesRequestInterface);
171
+ toApiJson(): object;
172
+ }
173
+ export declare class ListTeamEventTypesResponse implements i.ListTeamEventTypesResponseInterface {
174
+ eventTypes: EventType[];
175
+ nextCursor: string;
176
+ hasMore: boolean;
177
+ static fromProto(proto: any): ListTeamEventTypesResponse;
178
+ constructor(kwargs?: i.ListTeamEventTypesResponseInterface);
179
+ toApiJson(): object;
180
+ }
27
181
  export declare class ServiceResponse implements i.ServiceResponseInterface {
28
182
  id: string;
29
183
  name: string;
@@ -48,3 +202,11 @@ export declare class ServicesResponse implements i.ServicesResponseInterface {
48
202
  constructor(kwargs?: i.ServicesResponseInterface);
49
203
  toApiJson(): object;
50
204
  }
205
+ export declare class UserResponse implements i.UserResponseInterface {
206
+ userId: string;
207
+ displayName: string;
208
+ isConfigured: boolean;
209
+ static fromProto(proto: any): UserResponse;
210
+ constructor(kwargs?: i.UserResponseInterface);
211
+ toApiJson(): object;
212
+ }