@vendasta/meetings 1.5.0 → 1.5.4

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 +3 -2
  2. package/esm2020/lib/_internal/enums/meeting-guest.enum.mjs +11 -0
  3. package/esm2020/lib/_internal/enums/meeting-type.enum.mjs +7 -1
  4. package/esm2020/lib/_internal/google-meet.api.service.mjs +8 -7
  5. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  6. package/esm2020/lib/_internal/interfaces/meeting-external.interface.mjs +1 -7
  7. package/esm2020/lib/_internal/interfaces/meeting-guest.interface.mjs +1 -1
  8. package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
  9. package/esm2020/lib/_internal/interfaces/shared.interface.mjs +1 -1
  10. package/esm2020/lib/_internal/meeting-external.api.service.mjs +33 -8
  11. package/esm2020/lib/_internal/meeting-guest.api.service.mjs +19 -8
  12. package/esm2020/lib/_internal/meeting-host.api.service.mjs +8 -7
  13. package/esm2020/lib/_internal/meeting-source-api.api.service.mjs +8 -7
  14. package/esm2020/lib/_internal/objects/index.mjs +3 -3
  15. package/esm2020/lib/_internal/objects/meeting-external.mjs +431 -1
  16. package/esm2020/lib/_internal/objects/meeting-guest.mjs +145 -2
  17. package/esm2020/lib/_internal/objects/meeting-host.mjs +2 -2
  18. package/esm2020/lib/_internal/objects/shared.mjs +3 -2
  19. package/esm2020/lib/_internal/zoom.api.service.mjs +8 -7
  20. package/esm2020/lib/guest/guest.service.mjs +8 -2
  21. package/esm2020/lib/index.mjs +3 -3
  22. package/fesm2015/vendasta-meetings.mjs +843 -215
  23. package/fesm2015/vendasta-meetings.mjs.map +1 -1
  24. package/fesm2020/vendasta-meetings.mjs +843 -215
  25. package/fesm2020/vendasta-meetings.mjs.map +1 -1
  26. package/lib/_internal/enums/index.d.ts +2 -1
  27. package/lib/_internal/enums/meeting-guest.enum.d.ts +3 -0
  28. package/lib/_internal/enums/meeting-type.enum.d.ts +5 -0
  29. package/lib/_internal/google-meet.api.service.d.ts +5 -2
  30. package/lib/_internal/interfaces/index.d.ts +2 -2
  31. package/lib/_internal/interfaces/meeting-external.interface.d.ts +88 -0
  32. package/lib/_internal/interfaces/meeting-guest.interface.d.ts +28 -1
  33. package/lib/_internal/interfaces/meeting-host.interface.d.ts +1 -1
  34. package/lib/_internal/interfaces/shared.interface.d.ts +2 -1
  35. package/lib/_internal/meeting-external.api.service.d.ts +12 -4
  36. package/lib/_internal/meeting-guest.api.service.d.ts +9 -5
  37. package/lib/_internal/meeting-host.api.service.d.ts +5 -3
  38. package/lib/_internal/meeting-source-api.api.service.d.ts +5 -2
  39. package/lib/_internal/objects/index.d.ts +2 -2
  40. package/lib/_internal/objects/meeting-external.d.ts +121 -0
  41. package/lib/_internal/objects/meeting-guest.d.ts +40 -1
  42. package/lib/_internal/objects/meeting-host.d.ts +1 -1
  43. package/lib/_internal/objects/shared.d.ts +2 -1
  44. package/lib/_internal/zoom.api.service.d.ts +5 -2
  45. package/lib/guest/guest.service.d.ts +9 -1
  46. package/lib/index.d.ts +3 -3
  47. package/package.json +1 -1
@@ -1,6 +1,7 @@
1
1
  export { CalendarSource, MeetingSource, MeetingSourceStatus, } from './meeting-source.enum';
2
2
  export { ZoomApprovalType, ZoomMeetingRecurrenceType, ZoomMeetingType, ZoomMonthlyWeek, ZoomMonthlyWeekDay, ZoomRegistrationType, ZoomWeeklyDay, } from './zoom.enum';
3
3
  export { CalendarType, FormFieldType, OnBoardingState, } from './shared.enum';
4
- export { BookingSource, DateRangeType, MeetingLocationType, NotificationType, RegistrationCutOffUnit, RelativeTimeUnit, TeamEventMeetingType, } from './meeting-type.enum';
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
+ }
@@ -11,6 +11,11 @@ export declare enum DateRangeType {
11
11
  RELATIVE = 0,
12
12
  CUSTOM = 1
13
13
  }
14
+ export declare enum MeetingLocation {
15
+ VIDEO_MEETING = 0,
16
+ IN_PERSON_MEETING = 1,
17
+ HYBRID_MEETING = 2
18
+ }
14
19
  export declare enum MeetingLocationType {
15
20
  VIDEO = 0,
16
21
  IN_PERSON_USER_SITE = 1,
@@ -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,8 +5,8 @@ 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, GuestGetBookedMeetingResponseInterface, 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, ExternalCancelMeetingRequestInterface, ExternalRescheduleMeetingRequestInterface, ExternalRescheduleMeetingResponseInterface, GetUsersRequestInterface, GetUsersResponseInterface, GroupResponseInterface, GroupsRequestInterface, GroupsResponseInterface, HostUserDetailsInterface, ServiceResponseInterface, ServicesRequestInterface, ServicesResponseInterface, UserResponseInterface, } from './meeting-external.interface';
10
10
  export { FieldMaskInterface, } from './field-mask.interface';
11
11
  export { IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, BuildHostIdRequestApplicationContextPropertiesEntryInterface, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, AvailabilityRuleInterface, AvailabilityRuleListInterface, BuildHostIdRequestInterface, BuildHostIdResponseInterface, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntryInterface, CalendarMigrationResponseInterface, CancelMeetingRequestInterface, CheckGroupOrServiceSlugExistRequestInterface, CheckGroupOrServiceSlugExistResponseInterface, CreateAvailabilityRequestInterface, CreateAvailabilityResponseInterface, CreateCalendarRequestInterface, CreateCalendarResponseInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateGroupResponseInterface, CreateMeetingTypeRequestInterface, CreateMeetingTypeResponseInterface, CreateServiceRequestInterface, CreateServiceResponseInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, DoesCalendarExistResponseInterface, EnsureGroupCalendarsExistRequestInterface, EnsureGroupCalendarsExistResponseInterface, EnsurePersonalCalendarExistsRequestInterface, EnsurePersonalCalendarExistsResponseInterface, EnsureSessionEventCalendarsExistRequestInterface, EnsureSessionEventCalendarsExistResponseInterface, ListBookedMeetingsRequestFiltersInterface, ListAvailabilityRequestFiltersInterface, GetEntityAssociationRequestInterface, GetEntityAssociationResponseInterface, GetHostMeetingRequestInterface, GetHostMeetingResponseInterface, GetHostPreferencesRequestInterface, GetHostPreferencesResponseInterface, GetHostsForCalendarRequestInterface, GetHostsForCalendarResponseInterface, GetMeetingTypesForCalendarsRequestInterface, GetMeetingTypesForCalendarsResponseInterface, HostBookMeetingRequestInterface, HostBookMeetingResponseInterface, HostBookSessionRequestInterface, HostBookSessionResponseInterface, HostDeleteAttendeesRequestInterface, HostDetailsInterface, HostGetCalendarRequestInterface, HostGetCalendarResponseInterface, HostGetMeetingTypeRequestInterface, HostGetMeetingTypeResponseInterface, HostListMeetingTypesRequestInterface, HostListMeetingTypesResponseInterface, GetHostsForCalendarResponseHostUserAvailabilityRuleEntryInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponseInterface, IsHostConfiguredRequestInterface, IsHostConfiguredResponseInterface, ListAttendeesRequestInterface, ListAttendeesResponseInterface, ListAvailabilityRequestInterface, ListAvailabilityResponseInterface, ListAvailableTimeslotsForRecurringSessionRequestInterface, ListAvailableTimeslotsForRecurringSessionResponseInterface, ListAvailableTimeslotsForSessionRequestInterface, ListAvailableTimeslotsForSessionResponseInterface, ListBookedMeetingsRequestInterface, ListBookedMeetingsResponseInterface, ListGroupsRequestInterface, ListGroupsResponseInterface, ListServicesRequestInterface, ListServicesResponseInterface, MeetingInterface, MeetingTypeListInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, MeetingMetadataEntryInterface, RecurrenceConfigInterface, RecurrenceEndInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SessionAttendeesInterface, SetGeneralAvailabilityRequestInterface, TimeSlotsByWeekDayInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
12
12
  export { AccessInterface, MCPOptionsInterface, } from './annotations.interface';
@@ -1,3 +1,82 @@
1
+ import { DateRangeInterface } from './date-range.interface';
2
+ import { IsoDateTimeRangeInterface, ContactInterface, AnswersInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface } from './shared.interface';
3
+ import { TimeZoneInterface } from './datetime.interface';
4
+ export interface AvailableTimeSlotsRequestInterface {
5
+ partnerId?: string;
6
+ businessId?: string;
7
+ eventTypeId?: string;
8
+ timeSpan?: DateRangeInterface;
9
+ timeZone?: TimeZoneInterface;
10
+ hostUserId?: string;
11
+ }
12
+ export interface AvailableTimeSlotsResponseInterface {
13
+ timeSlots?: IsoDateTimeRangeInterface[];
14
+ }
15
+ export interface BookMeetingExternalRequestInterface {
16
+ partnerId?: string;
17
+ businessId?: string;
18
+ userId?: string;
19
+ eventTypeId?: string;
20
+ start?: Date;
21
+ attendees?: ContactInterface[];
22
+ comment?: string;
23
+ location?: string;
24
+ formAnswers?: AnswersInterface;
25
+ hostUserId?: string;
26
+ }
27
+ export interface BookMeetingExternalResponseInterface {
28
+ meetingId?: string;
29
+ userId?: string;
30
+ meetingStartTime?: Date;
31
+ meetingEndTime?: Date;
32
+ eventTypeId?: string;
33
+ title?: string;
34
+ location?: string;
35
+ hostDetails?: HostUserDetailsInterface[];
36
+ bookingUrl?: string;
37
+ cancelUrl?: string;
38
+ rescheduleUrl?: string;
39
+ meetingLink?: string;
40
+ attendeeEmails?: string[];
41
+ }
42
+ export interface ExternalCancelMeetingRequestInterface {
43
+ partnerId?: string;
44
+ businessId?: string;
45
+ meetingId?: string;
46
+ cancellationReason?: string;
47
+ }
48
+ export interface ExternalRescheduleMeetingRequestInterface {
49
+ partnerId?: string;
50
+ businessId?: string;
51
+ userId?: string;
52
+ meetingId?: string;
53
+ startTime?: Date;
54
+ location?: string;
55
+ timeZone?: TimeZoneInterface;
56
+ }
57
+ export interface ExternalRescheduleMeetingResponseInterface {
58
+ meetingId?: string;
59
+ startTime?: Date;
60
+ endTime?: Date;
61
+ hostDetails?: HostUserDetailsInterface[];
62
+ eventTypeId?: string;
63
+ title?: string;
64
+ location?: string;
65
+ meetingUrl?: string;
66
+ bookingUrl?: string;
67
+ rescheduleUrl?: string;
68
+ cancelUrl?: string;
69
+ }
70
+ export interface GetUsersRequestInterface {
71
+ partnerId?: string;
72
+ businessId?: string;
73
+ userId?: string;
74
+ pagedRequestOptions?: PagedRequestOptionsInterface;
75
+ }
76
+ export interface GetUsersResponseInterface {
77
+ users?: UserResponseInterface[];
78
+ pagedResponseMetadata?: PagedResponseMetadataInterface;
79
+ }
1
80
  export interface GroupResponseInterface {
2
81
  id?: string;
3
82
  name?: string;
@@ -13,6 +92,10 @@ export interface GroupsRequestInterface {
13
92
  export interface GroupsResponseInterface {
14
93
  groups?: GroupResponseInterface[];
15
94
  }
95
+ export interface HostUserDetailsInterface {
96
+ hostUserId?: string;
97
+ hostUserName?: string;
98
+ }
16
99
  export interface ServiceResponseInterface {
17
100
  id?: string;
18
101
  name?: string;
@@ -28,3 +111,8 @@ export interface ServicesRequestInterface {
28
111
  export interface ServicesResponseInterface {
29
112
  services?: ServiceResponseInterface[];
30
113
  }
114
+ export interface UserResponseInterface {
115
+ userId?: string;
116
+ displayName?: string;
117
+ isConfigured?: boolean;
118
+ }
@@ -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
  }
@@ -107,6 +115,9 @@ export interface GuestGetBookedMeetingRequestInterface {
107
115
  meetingId?: string;
108
116
  authToken?: string;
109
117
  }
118
+ export interface GuestGetBookedMeetingRequestV2Interface {
119
+ meetingId?: string;
120
+ }
110
121
  export interface GuestGetBookedMeetingResponseInterface {
111
122
  startTime?: Date;
112
123
  endTime?: Date;
@@ -119,6 +130,22 @@ export interface GuestGetBookedMeetingResponseInterface {
119
130
  displayName?: string;
120
131
  calendarId?: string;
121
132
  }
133
+ export interface GuestGetBookedMeetingResponseV2Interface {
134
+ title?: string;
135
+ hostUserNames?: string[];
136
+ startTime?: Date;
137
+ endTime?: Date;
138
+ location?: string;
139
+ meetingSourceLink?: string;
140
+ meetingSource?: e.MeetingSource;
141
+ meetingLocationType?: e.MeetingLocation;
142
+ googleCalendarLink?: string;
143
+ outlookCalendarLink?: string;
144
+ rescheduleLink?: string;
145
+ cancelLink?: string;
146
+ timeZone?: TimeZoneInterface;
147
+ businessLogo?: string;
148
+ }
122
149
  export interface GuestIsHostConfiguredRequestInterface {
123
150
  hostId?: string;
124
151
  }
@@ -3,7 +3,7 @@ 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
8
  export interface IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
9
9
  key?: string;
@@ -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,22 @@
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, ServicesRequest, ServicesResponse } from './objects/';
2
+ import { AvailableTimeSlotsRequestInterface, BookMeetingExternalRequestInterface, ExternalCancelMeetingRequestInterface, ExternalRescheduleMeetingRequestInterface, GetUsersRequestInterface, GroupsRequestInterface, 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>>;
12
20
  static ɵfac: i0.ɵɵFactoryDeclaration<MeetingExternalApiService, never>;
13
21
  static ɵprov: i0.ɵɵInjectableDeclaration<MeetingExternalApiService>;
14
22
  }
@@ -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, GuestGetBookedMeetingResponse, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, InviteeDeregisterSessionMeetingRequest, InviteeRegisterSessionMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse } from './objects/';
2
- import { BookMeetingRequestInterface, GetCalendarRequestInterface, GetGroupRequestInterface, GetHostRequestInterface, GetMeetingCalendarInfoRequestInterface, GetMeetingTypeRequestInterface, GetServiceRequestInterface, GetSessionInviteeMeetingInfoRequestInterface, GetSessionMeetingRequestInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, 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>;
@@ -16,6 +18,7 @@ export declare class MeetingGuestApiService {
16
18
  cancelMeeting(r: GuestCancelMeetingRequest | GuestCancelMeetingRequestInterface): Observable<HttpResponse<null>>;
17
19
  rescheduleMeeting(r: GuestRescheduleMeetingRequest | GuestRescheduleMeetingRequestInterface): Observable<HttpResponse<null>>;
18
20
  getGuestBookedMeeting(r: GuestGetBookedMeetingRequest | GuestGetBookedMeetingRequestInterface): Observable<GuestGetBookedMeetingResponse>;
21
+ getGuestBookedMeetingV2(r: GuestGetBookedMeetingRequestV2 | GuestGetBookedMeetingRequestV2Interface): Observable<GuestGetBookedMeetingResponseV2>;
19
22
  getCalendar(r: GetCalendarRequest | GetCalendarRequestInterface): Observable<GetCalendarResponse>;
20
23
  getHost(r: GetHostRequest | GetHostRequestInterface): Observable<GetHostResponse>;
21
24
  getGroup(r: GetGroupRequest | GetGroupRequestInterface): Observable<GetGroupResponse>;
@@ -25,6 +28,7 @@ export declare class MeetingGuestApiService {
25
28
  inviteeRegisterSessionMeeting(r: InviteeRegisterSessionMeetingRequest | InviteeRegisterSessionMeetingRequestInterface): Observable<HttpResponse<null>>;
26
29
  getSessionInviteeMeetingInfo(r: GetSessionInviteeMeetingInfoRequest | GetSessionInviteeMeetingInfoRequestInterface): Observable<GetSessionInviteeMeetingInfoResponse>;
27
30
  inviteeDeregisterSessionMeeting(r: InviteeDeregisterSessionMeetingRequest | InviteeDeregisterSessionMeetingRequestInterface): Observable<HttpResponse<null>>;
31
+ checkFeatureFlag(r: CheckFeatureFlagRequest | CheckFeatureFlagRequestInterface): Observable<CheckFeatureFlagResponse>;
28
32
  static ɵfac: i0.ɵɵFactoryDeclaration<MeetingGuestApiService, never>;
29
33
  static ɵprov: i0.ɵɵInjectableDeclaration<MeetingGuestApiService>;
30
34
  }
@@ -1,12 +1,14 @@
1
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
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';
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>;
@@ -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,8 +5,8 @@ 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, GuestGetBookedMeetingResponse, 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, ExternalCancelMeetingRequest, ExternalRescheduleMeetingRequest, ExternalRescheduleMeetingResponse, GetUsersRequest, GetUsersResponse, GroupResponse, GroupsRequest, GroupsResponse, HostUserDetails, ServiceResponse, ServicesRequest, ServicesResponse, UserResponse, } from './meeting-external';
10
10
  export { FieldMask, } from './field-mask';
11
11
  export { IsCalendarConfiguredRequestApplicationContextPropertiesEntry, BuildHostIdRequestApplicationContextPropertiesEntry, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, AvailabilityRule, AvailabilityRuleList, BuildHostIdRequest, BuildHostIdResponse, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntry, CalendarMigrationResponse, CancelMeetingRequest, CheckGroupOrServiceSlugExistRequest, CheckGroupOrServiceSlugExistResponse, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateGroupRequest, CreateGroupResponse, CreateMeetingTypeRequest, CreateMeetingTypeResponse, CreateServiceRequest, CreateServiceResponse, DeleteAvailabilityRequest, DeleteGroupRequest, DeleteMeetingTypeRequest, DeleteServiceRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, EnsureSessionEventCalendarsExistRequest, EnsureSessionEventCalendarsExistResponse, ListBookedMeetingsRequestFilters, ListAvailabilityRequestFilters, GetEntityAssociationRequest, GetEntityAssociationResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostBookSessionRequest, HostBookSessionResponse, HostDeleteAttendeesRequest, HostDetails, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, GetHostsForCalendarResponseHostUserAvailabilityRuleEntry, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAttendeesRequest, ListAttendeesResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListAvailableTimeslotsForRecurringSessionRequest, ListAvailableTimeslotsForRecurringSessionResponse, ListAvailableTimeslotsForSessionRequest, ListAvailableTimeslotsForSessionResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, Meeting, MeetingTypeList, UpdateMeetingMetadataRequestMetadataEntry, MeetingMetadataEntry, RecurrenceConfig, RecurrenceEnd, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SessionAttendees, SetGeneralAvailabilityRequest, TimeSlotsByWeekDay, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
12
12
  export { Access, MCPOptions, } from './annotations';
@@ -1,5 +1,111 @@
1
1
  import * as i from '../interfaces';
2
+ import { DateRange } from './date-range';
3
+ import { IsoDateTimeRange, Contact, Answers, PagedRequestOptions, PagedResponseMetadata } from './shared';
4
+ import { TimeZone } from './datetime';
2
5
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
6
+ export declare class AvailableTimeSlotsRequest implements i.AvailableTimeSlotsRequestInterface {
7
+ partnerId: string;
8
+ businessId: string;
9
+ eventTypeId: string;
10
+ timeSpan: DateRange;
11
+ timeZone: TimeZone;
12
+ hostUserId: string;
13
+ static fromProto(proto: any): AvailableTimeSlotsRequest;
14
+ constructor(kwargs?: i.AvailableTimeSlotsRequestInterface);
15
+ toApiJson(): object;
16
+ }
17
+ export declare class AvailableTimeSlotsResponse implements i.AvailableTimeSlotsResponseInterface {
18
+ timeSlots: IsoDateTimeRange[];
19
+ static fromProto(proto: any): AvailableTimeSlotsResponse;
20
+ constructor(kwargs?: i.AvailableTimeSlotsResponseInterface);
21
+ toApiJson(): object;
22
+ }
23
+ export declare class BookMeetingExternalRequest implements i.BookMeetingExternalRequestInterface {
24
+ partnerId: string;
25
+ businessId: string;
26
+ userId: string;
27
+ eventTypeId: string;
28
+ start: Date;
29
+ attendees: Contact[];
30
+ comment: string;
31
+ location: string;
32
+ formAnswers: Answers;
33
+ hostUserId: string;
34
+ static fromProto(proto: any): BookMeetingExternalRequest;
35
+ constructor(kwargs?: i.BookMeetingExternalRequestInterface);
36
+ toApiJson(): object;
37
+ }
38
+ export declare class BookMeetingExternalResponse implements i.BookMeetingExternalResponseInterface {
39
+ meetingId: string;
40
+ userId: string;
41
+ meetingStartTime: Date;
42
+ meetingEndTime: Date;
43
+ eventTypeId: string;
44
+ title: string;
45
+ location: string;
46
+ hostDetails: HostUserDetails[];
47
+ bookingUrl: string;
48
+ cancelUrl: string;
49
+ rescheduleUrl: string;
50
+ meetingLink: string;
51
+ attendeeEmails: string[];
52
+ static fromProto(proto: any): BookMeetingExternalResponse;
53
+ constructor(kwargs?: i.BookMeetingExternalResponseInterface);
54
+ toApiJson(): object;
55
+ }
56
+ export declare class ExternalCancelMeetingRequest implements i.ExternalCancelMeetingRequestInterface {
57
+ partnerId: string;
58
+ businessId: string;
59
+ meetingId: string;
60
+ cancellationReason: string;
61
+ static fromProto(proto: any): ExternalCancelMeetingRequest;
62
+ constructor(kwargs?: i.ExternalCancelMeetingRequestInterface);
63
+ toApiJson(): object;
64
+ }
65
+ export declare class ExternalRescheduleMeetingRequest implements i.ExternalRescheduleMeetingRequestInterface {
66
+ partnerId: string;
67
+ businessId: string;
68
+ userId: string;
69
+ meetingId: string;
70
+ startTime: Date;
71
+ location: string;
72
+ timeZone: TimeZone;
73
+ static fromProto(proto: any): ExternalRescheduleMeetingRequest;
74
+ constructor(kwargs?: i.ExternalRescheduleMeetingRequestInterface);
75
+ toApiJson(): object;
76
+ }
77
+ export declare class ExternalRescheduleMeetingResponse implements i.ExternalRescheduleMeetingResponseInterface {
78
+ meetingId: string;
79
+ startTime: Date;
80
+ endTime: Date;
81
+ hostDetails: HostUserDetails[];
82
+ eventTypeId: string;
83
+ title: string;
84
+ location: string;
85
+ meetingUrl: string;
86
+ bookingUrl: string;
87
+ rescheduleUrl: string;
88
+ cancelUrl: string;
89
+ static fromProto(proto: any): ExternalRescheduleMeetingResponse;
90
+ constructor(kwargs?: i.ExternalRescheduleMeetingResponseInterface);
91
+ toApiJson(): object;
92
+ }
93
+ export declare class GetUsersRequest implements i.GetUsersRequestInterface {
94
+ partnerId: string;
95
+ businessId: string;
96
+ userId: string;
97
+ pagedRequestOptions: PagedRequestOptions;
98
+ static fromProto(proto: any): GetUsersRequest;
99
+ constructor(kwargs?: i.GetUsersRequestInterface);
100
+ toApiJson(): object;
101
+ }
102
+ export declare class GetUsersResponse implements i.GetUsersResponseInterface {
103
+ users: UserResponse[];
104
+ pagedResponseMetadata: PagedResponseMetadata;
105
+ static fromProto(proto: any): GetUsersResponse;
106
+ constructor(kwargs?: i.GetUsersResponseInterface);
107
+ toApiJson(): object;
108
+ }
3
109
  export declare class GroupResponse implements i.GroupResponseInterface {
4
110
  id: string;
5
111
  name: string;
@@ -24,6 +130,13 @@ export declare class GroupsResponse implements i.GroupsResponseInterface {
24
130
  constructor(kwargs?: i.GroupsResponseInterface);
25
131
  toApiJson(): object;
26
132
  }
133
+ export declare class HostUserDetails implements i.HostUserDetailsInterface {
134
+ hostUserId: string;
135
+ hostUserName: string;
136
+ static fromProto(proto: any): HostUserDetails;
137
+ constructor(kwargs?: i.HostUserDetailsInterface);
138
+ toApiJson(): object;
139
+ }
27
140
  export declare class ServiceResponse implements i.ServiceResponseInterface {
28
141
  id: string;
29
142
  name: string;
@@ -48,3 +161,11 @@ export declare class ServicesResponse implements i.ServicesResponseInterface {
48
161
  constructor(kwargs?: i.ServicesResponseInterface);
49
162
  toApiJson(): object;
50
163
  }
164
+ export declare class UserResponse implements i.UserResponseInterface {
165
+ userId: string;
166
+ displayName: string;
167
+ isConfigured: boolean;
168
+ static fromProto(proto: any): UserResponse;
169
+ constructor(kwargs?: i.UserResponseInterface);
170
+ toApiJson(): object;
171
+ }
@@ -3,7 +3,7 @@ import { Contact, Answers, Calendar, Host, HostUser, IsoDateTimeRange } from './
3
3
  import { DateRange } from './date-range';
4
4
  import { Group, Service } from './groups-and-services';
5
5
  import { MeetingType, Form } from './meeting-type';
6
- import { TimeZone } from './';
6
+ import { TimeZone } from './datetime';
7
7
  import * as e from '../enums';
8
8
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
9
9
  export declare class BookMeetingRequest implements i.BookMeetingRequestInterface {
@@ -32,6 +32,20 @@ export declare class BookMeetingResponse implements i.BookMeetingResponseInterfa
32
32
  constructor(kwargs?: i.BookMeetingResponseInterface);
33
33
  toApiJson(): object;
34
34
  }
35
+ export declare class CheckFeatureFlagRequest implements i.CheckFeatureFlagRequestInterface {
36
+ fieldType: e.FeatureFlagFieldType;
37
+ fieldValue: string;
38
+ featureFlagKey: string;
39
+ static fromProto(proto: any): CheckFeatureFlagRequest;
40
+ constructor(kwargs?: i.CheckFeatureFlagRequestInterface);
41
+ toApiJson(): object;
42
+ }
43
+ export declare class CheckFeatureFlagResponse implements i.CheckFeatureFlagResponseInterface {
44
+ isEnabled: boolean;
45
+ static fromProto(proto: any): CheckFeatureFlagResponse;
46
+ constructor(kwargs?: i.CheckFeatureFlagResponseInterface);
47
+ toApiJson(): object;
48
+ }
35
49
  export declare class GetCalendarRequest implements i.GetCalendarRequestInterface {
36
50
  calendarId: string;
37
51
  static fromProto(proto: any): GetCalendarRequest;
@@ -169,6 +183,12 @@ export declare class GuestGetBookedMeetingRequest implements i.GuestGetBookedMee
169
183
  constructor(kwargs?: i.GuestGetBookedMeetingRequestInterface);
170
184
  toApiJson(): object;
171
185
  }
186
+ export declare class GuestGetBookedMeetingRequestV2 implements i.GuestGetBookedMeetingRequestV2Interface {
187
+ meetingId: string;
188
+ static fromProto(proto: any): GuestGetBookedMeetingRequestV2;
189
+ constructor(kwargs?: i.GuestGetBookedMeetingRequestV2Interface);
190
+ toApiJson(): object;
191
+ }
172
192
  export declare class GuestGetBookedMeetingResponse implements i.GuestGetBookedMeetingResponseInterface {
173
193
  startTime: Date;
174
194
  endTime: Date;
@@ -184,6 +204,25 @@ export declare class GuestGetBookedMeetingResponse implements i.GuestGetBookedMe
184
204
  constructor(kwargs?: i.GuestGetBookedMeetingResponseInterface);
185
205
  toApiJson(): object;
186
206
  }
207
+ export declare class GuestGetBookedMeetingResponseV2 implements i.GuestGetBookedMeetingResponseV2Interface {
208
+ title: string;
209
+ hostUserNames: string[];
210
+ startTime: Date;
211
+ endTime: Date;
212
+ location: string;
213
+ meetingSourceLink: string;
214
+ meetingSource: e.MeetingSource;
215
+ meetingLocationType: e.MeetingLocation;
216
+ googleCalendarLink: string;
217
+ outlookCalendarLink: string;
218
+ rescheduleLink: string;
219
+ cancelLink: string;
220
+ timeZone: TimeZone;
221
+ businessLogo: string;
222
+ static fromProto(proto: any): GuestGetBookedMeetingResponseV2;
223
+ constructor(kwargs?: i.GuestGetBookedMeetingResponseV2Interface);
224
+ toApiJson(): object;
225
+ }
187
226
  export declare class GuestIsHostConfiguredRequest implements i.GuestIsHostConfiguredRequestInterface {
188
227
  hostId: string;
189
228
  static fromProto(proto: any): GuestIsHostConfiguredRequest;
@@ -4,7 +4,7 @@ import { FieldMask } from './field-mask';
4
4
  import { Group, Service } from './groups-and-services';
5
5
  import { MeetingType, RegistrationCutOff } from './meeting-type';
6
6
  import { TimeRange, Calendar, Preferences, HostUser, Contact, EmailsToDelete, PagedRequestOptions, PagedResponseMetadata, IsoDateTimeRange, Attendee, Answers, Attachment } from './shared';
7
- import { TimeZone } from './';
7
+ import { TimeZone } from './datetime';
8
8
  import * as e from '../enums';
9
9
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
10
10
  export declare class IsCalendarConfiguredRequestApplicationContextPropertiesEntry implements i.IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
@@ -1,5 +1,6 @@
1
1
  import * as i from '../interfaces';
2
- import { TimeZone, TimeOfDay } from './';
2
+ import { TimeOfDay } from './timeofday';
3
+ import { TimeZone } from './datetime';
3
4
  import * as e from '../enums';
4
5
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
5
6
  export declare class Answer implements i.AnswerInterface {
@@ -1,11 +1,14 @@
1
1
  import { CreateZoomMeetingRequest, CreateZoomMeetingResponse } from './objects/';
2
2
  import { CreateZoomMeetingRequestInterface } 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 ZoomApiService {
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: CreateZoomMeetingRequest | CreateZoomMeetingRequestInterface): Observable<CreateZoomMeetingResponse>;
11
14
  static ɵfac: i0.ɵɵFactoryDeclaration<ZoomApiService, never>;