@vendasta/meetings 1.6.0 → 1.6.3

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 (44) hide show
  1. package/esm2020/lib/_internal/enums/index.mjs +2 -2
  2. package/esm2020/lib/_internal/google-meet.api.service.mjs +7 -8
  3. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  4. package/esm2020/lib/_internal/interfaces/meeting-external.interface.mjs +1 -1
  5. package/esm2020/lib/_internal/interfaces/meeting-guest.interface.mjs +1 -1
  6. package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
  7. package/esm2020/lib/_internal/interfaces/shared.interface.mjs +1 -1
  8. package/esm2020/lib/_internal/meeting-external.api.service.mjs +7 -8
  9. package/esm2020/lib/_internal/meeting-guest.api.service.mjs +7 -8
  10. package/esm2020/lib/_internal/meeting-host.api.service.mjs +13 -9
  11. package/esm2020/lib/_internal/meeting-source-api.api.service.mjs +7 -8
  12. package/esm2020/lib/_internal/objects/index.mjs +4 -4
  13. package/esm2020/lib/_internal/objects/meeting-external.mjs +25 -72
  14. package/esm2020/lib/_internal/objects/meeting-guest.mjs +7 -3
  15. package/esm2020/lib/_internal/objects/meeting-host.mjs +89 -12
  16. package/esm2020/lib/_internal/objects/shared.mjs +5 -3
  17. package/esm2020/lib/_internal/zoom.api.service.mjs +7 -8
  18. package/esm2020/lib/guest/guest.service.mjs +1 -1
  19. package/esm2020/lib/host/host.service.mjs +27 -2
  20. package/esm2020/lib/shared/calendar.mjs +2 -1
  21. package/fesm2015/vendasta-meetings.mjs +347 -283
  22. package/fesm2015/vendasta-meetings.mjs.map +1 -1
  23. package/fesm2020/vendasta-meetings.mjs +347 -283
  24. package/fesm2020/vendasta-meetings.mjs.map +1 -1
  25. package/lib/_internal/enums/index.d.ts +1 -1
  26. package/lib/_internal/google-meet.api.service.d.ts +2 -5
  27. package/lib/_internal/interfaces/index.d.ts +3 -3
  28. package/lib/_internal/interfaces/meeting-external.interface.d.ts +14 -25
  29. package/lib/_internal/interfaces/meeting-guest.interface.d.ts +4 -2
  30. package/lib/_internal/interfaces/meeting-host.interface.d.ts +20 -7
  31. package/lib/_internal/interfaces/shared.interface.d.ts +2 -2
  32. package/lib/_internal/meeting-external.api.service.d.ts +3 -5
  33. package/lib/_internal/meeting-guest.api.service.d.ts +3 -5
  34. package/lib/_internal/meeting-host.api.service.d.ts +6 -7
  35. package/lib/_internal/meeting-source-api.api.service.d.ts +2 -5
  36. package/lib/_internal/objects/index.d.ts +3 -3
  37. package/lib/_internal/objects/meeting-external.d.ts +14 -25
  38. package/lib/_internal/objects/meeting-guest.d.ts +4 -2
  39. package/lib/_internal/objects/meeting-host.d.ts +30 -11
  40. package/lib/_internal/objects/shared.d.ts +2 -2
  41. package/lib/_internal/zoom.api.service.d.ts +2 -5
  42. package/lib/guest/guest.service.d.ts +1 -0
  43. package/lib/host/host.service.d.ts +7 -0
  44. package/package.json +1 -1
@@ -3,5 +3,5 @@ export { ZoomApprovalType, ZoomMeetingRecurrenceType, ZoomMeetingType, ZoomMonth
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
5
  export { FeatureFlagFieldType, } from './meeting-guest.enum';
6
- export { DayOfWeek, } from './dayofweek.enum';
7
6
  export { BookingFailureReason, Recurrence, RegistrationMode, Weekday, } from './meeting-host.enum';
7
+ export { DayOfWeek, } from './dayofweek.enum';
@@ -1,14 +1,11 @@
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';
5
3
  import { Observable } from 'rxjs';
6
4
  import * as i0 from "@angular/core";
7
5
  export declare class GoogleMeetApiService {
8
- private http;
9
- private hostService;
6
+ private readonly hostService;
7
+ private readonly http;
10
8
  private _host;
11
- constructor(http: HttpClient, hostService: HostService);
12
9
  private apiOptions;
13
10
  createMeeting(r: GoogleMeetCreateMeetingRequest | GoogleMeetCreateMeetingRequestInterface): Observable<GoogleMeetCreateMeetingResponse>;
14
11
  listMeetings(r: GoogleMeetListMeetingsRequest | GoogleMeetListMeetingsRequestInterface): Observable<GoogleMeetListMeetingsResponse>;
@@ -1,8 +1,6 @@
1
1
  export { MeetingSourceInfoInterface, MeetingSourceListRequestInterface, MeetingSourceListResponseInterface, MeetingSourceQueryInterface, } from './meeting-source.interface';
2
2
  export { CreateZoomMeetingRequestInterface, CreateZoomMeetingResponseInterface, ZoomMeetingRecurrenceInterface, ZoomMeetingSettingsInterface, ZoomMeetingTrackingFieldInterface, ZoomOccurrenceInterface, } from './zoom.interface';
3
3
  export { GoogleMeetConferenceDataInterface, GoogleMeetConferenceRequestStatusInterface, GoogleMeetConferenceSolutionInterface, GoogleMeetConferenceSolutionKeyInterface, GoogleMeetCreateConferenceRequestInterface, GoogleMeetCreateMeetingRequestInterface, GoogleMeetCreateMeetingResponseInterface, GoogleMeetEntryPointInterface, GoogleMeetListMeetingsRequestInterface, GoogleMeetListMeetingsResponseInterface, GoogleMeetMeetingInterface, GoogleMeetMeetingAttendeeInterface, GoogleMeetMeetingCreatorInterface, GoogleMeetMeetingDateTimeInterface, GoogleMeetMeetingOrganizerInterface, GoogleMeetMeetingReminderInterface, GoogleMeetMeetingRemindersInterface, } from './google-meet.interface';
4
- export { TimeOfDayInterface, } from './timeofday.interface';
5
- export { DateTimeInterface, TimeZoneInterface, } from './datetime.interface';
6
4
  export { AnswerInterface, AnswersInterface, CalendarApplicationContextEntryInterface, AttachmentInterface, AttendeeInterface, CalendarInterface, ContactInterface, EmailsToDeleteInterface, HostInterface, HostOrderDetailsInterface, HostUserInterface, IsoDateTimeRangeInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, PhoneFieldsInterface, PreferencesInterface, TimeRangeInterface, } from './shared.interface';
7
5
  export { DateRangeInterface, } from './date-range.interface';
8
6
  export { EventTypeDateRangeInterface, FieldInterface, FormInterface, MeetingTypeInterface, RegistrationCutOffInterface, RelativeDateRangeInterface, } from './meeting-type.interface';
@@ -10,5 +8,7 @@ export { EventGroupAndServiceAssociationsInterface, GroupInterface, ServiceInter
10
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';
11
9
  export { AvailableTimeSlotsRequestInterface, AvailableTimeSlotsResponseInterface, BookMeetingExternalRequestInterface, BookMeetingExternalResponseInterface, EventTypeInterface, ExternalCancelMeetingRequestInterface, ExternalRescheduleMeetingRequestInterface, ExternalRescheduleMeetingResponseInterface, GetUsersRequestInterface, GetUsersResponseInterface, GroupResponseInterface, GroupsRequestInterface, GroupsResponseInterface, HostUserDetailsInterface, ListTeamEventTypesRequestInterface, ListTeamEventTypesResponseInterface, ListUserEventTypesRequestInterface, ListUserEventTypesResponseInterface, ServiceResponseInterface, ServicesRequestInterface, ServicesResponseInterface, UserResponseInterface, } from './meeting-external.interface';
12
10
  export { FieldMaskInterface, } from './field-mask.interface';
13
- export { EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, BuildHostIdRequestApplicationContextPropertiesEntryInterface, AvailabilityRuleInterface, AvailabilityRuleListInterface, BuildHostIdRequestInterface, BuildHostIdResponseInterface, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntryInterface, CalendarMigrationResponseInterface, CancelMeetingRequestInterface, CheckEventTypeSlugExistRequestInterface, CheckEventTypeSlugExistResponseInterface, CheckGroupOrServiceSlugExistRequestInterface, CheckGroupOrServiceSlugExistResponseInterface, CreateAvailabilityRequestInterface, CreateAvailabilityResponseInterface, CreateCalendarRequestInterface, CreateCalendarResponseInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateGroupResponseInterface, CreateMeetingTypeRequestInterface, CreateMeetingTypeResponseInterface, CreateServiceRequestInterface, CreateServiceResponseInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, DoesCalendarExistResponseInterface, EnsureGroupCalendarsExistRequestInterface, EnsureGroupCalendarsExistResponseInterface, EnsurePersonalCalendarExistsRequestInterface, EnsurePersonalCalendarExistsResponseInterface, EnsureSessionEventCalendarsExistRequestInterface, EnsureSessionEventCalendarsExistResponseInterface, EventTypeSummaryInterface, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, GetEntityAssociationRequestInterface, GetEntityAssociationResponseInterface, GetHostMeetingRequestInterface, GetHostMeetingResponseInterface, GetHostPreferencesRequestInterface, GetHostPreferencesResponseInterface, GetHostsForCalendarRequestInterface, GetHostsForCalendarResponseInterface, GetMeetingTypesForCalendarsRequestInterface, GetMeetingTypesForCalendarsResponseInterface, HostBookMeetingRequestInterface, HostBookMeetingResponseInterface, HostBookSessionRequestInterface, HostBookSessionResponseInterface, HostDeleteAttendeesRequestInterface, HostDetailsInterface, HostGetCalendarRequestInterface, HostGetCalendarResponseInterface, HostGetMeetingTypeRequestInterface, HostGetMeetingTypeResponseInterface, HostListMeetingTypesRequestInterface, HostListMeetingTypesResponseInterface, GetHostsForCalendarResponseHostUserAvailabilityRuleEntryInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponseInterface, IsHostConfiguredRequestInterface, IsHostConfiguredResponseInterface, ListAttendeesRequestInterface, ListAttendeesResponseInterface, ListAvailabilityRequestInterface, ListAvailabilityResponseInterface, ListAvailableTimeslotsForRecurringSessionRequestInterface, ListAvailableTimeslotsForRecurringSessionResponseInterface, ListAvailableTimeslotsForSessionRequestInterface, ListAvailableTimeslotsForSessionResponseInterface, ListBookedMeetingsRequestInterface, ListBookedMeetingsResponseInterface, ListEventTypesForMultipleCalendarsRequestInterface, ListEventTypesForMultipleCalendarsResponseInterface, ListGroupsRequestInterface, ListGroupsResponseInterface, ListServicesRequestInterface, ListServicesResponseInterface, MeetingInterface, MeetingTypeListInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, MeetingMetadataEntryInterface, RecurrenceConfigInterface, RecurrenceEndInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SessionAttendeesInterface, SetGeneralAvailabilityRequestInterface, TimeSlotsByWeekDayInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
11
+ export { IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, BuildHostIdRequestApplicationContextPropertiesEntryInterface, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, AvailabilityRuleInterface, AvailabilityRuleListInterface, BuildHostIdRequestInterface, BuildHostIdResponseInterface, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntryInterface, CalendarMigrationResponseInterface, CancelMeetingRequestInterface, CheckEventTypeSlugExistRequestInterface, CheckEventTypeSlugExistResponseInterface, CheckGroupOrServiceSlugExistRequestInterface, CheckGroupOrServiceSlugExistResponseInterface, CreateAvailabilityRequestInterface, CreateAvailabilityResponseInterface, CreateCalendarRequestInterface, CreateCalendarResponseInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateGroupResponseInterface, CreateMeetingTypeRequestInterface, CreateMeetingTypeResponseInterface, CreateServiceRequestInterface, CreateServiceResponseInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, DoesCalendarExistResponseInterface, EnsureGroupCalendarsExistRequestInterface, EnsureGroupCalendarsExistResponseInterface, EnsurePersonalCalendarExistsRequestInterface, EnsurePersonalCalendarExistsResponseInterface, EnsureSessionEventCalendarsExistRequestInterface, EnsureSessionEventCalendarsExistResponseInterface, EventTypeSummaryInterface, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, GetEntityAssociationRequestInterface, GetEntityAssociationResponseInterface, GetEventTypeByIdRequestInterface, GetEventTypeByIdResponseInterface, GetHostMeetingRequestInterface, GetHostMeetingResponseInterface, GetHostPreferencesRequestInterface, GetHostPreferencesResponseInterface, GetHostsForCalendarRequestInterface, GetHostsForCalendarResponseInterface, GetMeetingTypesForCalendarsRequestInterface, GetMeetingTypesForCalendarsResponseInterface, HostBookMeetingRequestInterface, HostBookMeetingResponseInterface, HostBookSessionRequestInterface, HostBookSessionResponseInterface, HostDeleteAttendeesRequestInterface, HostDetailsInterface, HostGetCalendarRequestInterface, HostGetCalendarResponseInterface, HostGetMeetingTypeRequestInterface, HostGetMeetingTypeResponseInterface, HostListMeetingTypesRequestInterface, HostListMeetingTypesResponseInterface, GetHostsForCalendarResponseHostUserAvailabilityRuleEntryInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponseInterface, IsHostConfiguredRequestInterface, IsHostConfiguredResponseInterface, ListAttendeesRequestInterface, ListAttendeesResponseInterface, ListAvailabilityRequestInterface, ListAvailabilityResponseInterface, ListAvailableTimeslotsForRecurringSessionRequestInterface, ListAvailableTimeslotsForRecurringSessionResponseInterface, ListAvailableTimeslotsForSessionRequestInterface, ListAvailableTimeslotsForSessionResponseInterface, ListBookedMeetingsRequestInterface, ListBookedMeetingsResponseInterface, ListEventTypesForMultipleCalendarsRequestInterface, ListEventTypesForMultipleCalendarsResponseInterface, ListGroupsRequestInterface, ListGroupsResponseInterface, ListServicesRequestInterface, ListServicesResponseInterface, MeetingInterface, MeetingTypeListInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, MeetingMetadataEntryInterface, RecurrenceConfigInterface, RecurrenceEndInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SessionAttendeesInterface, SetGeneralAvailabilityRequestInterface, TimeSlotsByWeekDayInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
14
12
  export { AccessInterface, MCPOptionsInterface, } from './annotations.interface';
13
+ export { TimeOfDayInterface, } from './timeofday.interface';
14
+ export { DateTimeInterface, TimeZoneInterface, } from './datetime.interface';
@@ -1,10 +1,11 @@
1
+ import { ContactInterface } from './shared.interface';
1
2
  import { DateRangeInterface } from './date-range.interface';
2
3
  import { EventTypeDateRangeInterface } from './meeting-type.interface';
3
- import { IsoDateTimeRangeInterface, ContactInterface, AnswersInterface, HostUserInterface, HostOrderDetailsInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface } from './shared.interface';
4
- import { TimeZoneInterface } from './datetime.interface';
4
+ import { IsoDateTimeRangeInterface, AnswersInterface, HostOrderDetailsInterface } from './shared.interface';
5
+ import { TimeZoneInterface } from './';
5
6
  import * as e from '../enums';
6
7
  export interface AvailableTimeSlotsRequestInterface {
7
- namespace?: string;
8
+ businessId?: string;
8
9
  eventTypeId?: string;
9
10
  timeSpan?: DateRangeInterface;
10
11
  timeZone?: TimeZoneInterface;
@@ -14,7 +15,7 @@ export interface AvailableTimeSlotsResponseInterface {
14
15
  timeSlots?: IsoDateTimeRangeInterface[];
15
16
  }
16
17
  export interface BookMeetingExternalRequestInterface {
17
- namespace?: string;
18
+ businessId?: string;
18
19
  eventTypeId?: string;
19
20
  start?: Date;
20
21
  attendees?: ContactInterface[];
@@ -31,11 +32,6 @@ export interface BookMeetingExternalResponseInterface {
31
32
  eventTypeId?: string;
32
33
  title?: string;
33
34
  location?: string;
34
- hostDetails?: HostUserDetailsInterface[];
35
- bookingUrl?: string;
36
- cancelUrl?: string;
37
- rescheduleUrl?: string;
38
- meetingLink?: string;
39
35
  attendeeEmails?: string[];
40
36
  }
41
37
  export interface EventTypeInterface {
@@ -49,7 +45,7 @@ export interface EventTypeInterface {
49
45
  locationGuidelines?: string;
50
46
  isVideoConferencingEnabled?: boolean;
51
47
  calendarType?: string;
52
- hostUsers?: HostUserInterface[];
48
+ hostUsers?: UserResponseInterface[];
53
49
  bookingWindow?: EventTypeDateRangeInterface;
54
50
  meetingType?: e.TeamEventMeetingType;
55
51
  hostOrderDetails?: HostOrderDetailsInterface[];
@@ -57,12 +53,12 @@ export interface EventTypeInterface {
57
53
  isPhoneNumberRequired?: boolean;
58
54
  }
59
55
  export interface ExternalCancelMeetingRequestInterface {
60
- namespace?: string;
56
+ businessId?: string;
61
57
  meetingId?: string;
62
58
  cancellationReason?: string;
63
59
  }
64
60
  export interface ExternalRescheduleMeetingRequestInterface {
65
- namespace?: string;
61
+ businessId?: string;
66
62
  meetingId?: string;
67
63
  startTime?: Date;
68
64
  location?: string;
@@ -72,22 +68,15 @@ export interface ExternalRescheduleMeetingResponseInterface {
72
68
  meetingId?: string;
73
69
  startTime?: Date;
74
70
  endTime?: Date;
75
- hostDetails?: HostUserDetailsInterface[];
76
71
  eventTypeId?: string;
77
72
  title?: string;
78
73
  location?: string;
79
- meetingUrl?: string;
80
- bookingUrl?: string;
81
- rescheduleUrl?: string;
82
- cancelUrl?: string;
83
74
  }
84
75
  export interface GetUsersRequestInterface {
85
- namespace?: string;
86
- pagedRequestOptions?: PagedRequestOptionsInterface;
76
+ businessId?: string;
87
77
  }
88
78
  export interface GetUsersResponseInterface {
89
79
  users?: UserResponseInterface[];
90
- pagedResponseMetadata?: PagedResponseMetadataInterface;
91
80
  }
92
81
  export interface GroupResponseInterface {
93
82
  id?: string;
@@ -97,7 +86,7 @@ export interface GroupResponseInterface {
97
86
  hexColor?: string;
98
87
  }
99
88
  export interface GroupsRequestInterface {
100
- namespace?: string;
89
+ businessId?: string;
101
90
  }
102
91
  export interface GroupsResponseInterface {
103
92
  groups?: GroupResponseInterface[];
@@ -107,7 +96,7 @@ export interface HostUserDetailsInterface {
107
96
  hostUserName?: string;
108
97
  }
109
98
  export interface ListTeamEventTypesRequestInterface {
110
- namespace?: string;
99
+ businessId?: string;
111
100
  cursor?: string;
112
101
  pageSize?: number;
113
102
  }
@@ -117,7 +106,7 @@ export interface ListTeamEventTypesResponseInterface {
117
106
  hasMore?: boolean;
118
107
  }
119
108
  export interface ListUserEventTypesRequestInterface {
120
- namespace?: string;
109
+ businessId?: string;
121
110
  userId?: string;
122
111
  }
123
112
  export interface ListUserEventTypesResponseInterface {
@@ -131,7 +120,7 @@ export interface ServiceResponseInterface {
131
120
  hexColor?: string;
132
121
  }
133
122
  export interface ServicesRequestInterface {
134
- namespace?: string;
123
+ businessId?: string;
135
124
  }
136
125
  export interface ServicesResponseInterface {
137
126
  services?: ServiceResponseInterface[];
@@ -139,5 +128,5 @@ export interface ServicesResponseInterface {
139
128
  export interface UserResponseInterface {
140
129
  userId?: string;
141
130
  displayName?: string;
142
- isConfigured?: boolean;
131
+ isConnected?: boolean;
143
132
  }
@@ -1,8 +1,9 @@
1
- import { ContactInterface, AnswersInterface, CalendarInterface, HostInterface, HostUserInterface, IsoDateTimeRangeInterface } from './shared.interface';
1
+ import { AnswersInterface, CalendarInterface, HostInterface, HostUserInterface, IsoDateTimeRangeInterface } from './shared.interface';
2
+ import { ContactInterface } from './shared.interface';
2
3
  import { DateRangeInterface } from './date-range.interface';
3
4
  import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
4
5
  import { MeetingTypeInterface, FormInterface } from './meeting-type.interface';
5
- import { TimeZoneInterface } from './datetime.interface';
6
+ import { TimeZoneInterface } from './';
6
7
  import * as e from '../enums';
7
8
  export interface BookMeetingRequestInterface {
8
9
  hostId?: string;
@@ -19,6 +20,7 @@ export interface BookMeetingRequestInterface {
19
20
  location?: string;
20
21
  userId?: string;
21
22
  bookingSource?: e.BookingSource;
23
+ hasSmsConsent?: boolean;
22
24
  }
23
25
  export interface BookMeetingResponseInterface {
24
26
  meetingId?: string;
@@ -1,19 +1,20 @@
1
+ import { ContactInterface } from './shared.interface';
1
2
  import { DateRangeInterface } from './date-range.interface';
2
3
  import { FieldMaskInterface } from './field-mask.interface';
3
4
  import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
4
- import { MeetingTypeInterface, RegistrationCutOffInterface } from './meeting-type.interface';
5
- import { TimeRangeInterface, CalendarInterface, PreferencesInterface, HostUserInterface, ContactInterface, EmailsToDeleteInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, IsoDateTimeRangeInterface, AttendeeInterface, AnswersInterface, AttachmentInterface } from './shared.interface';
6
- import { TimeZoneInterface } from './datetime.interface';
5
+ import { MeetingTypeInterface, EventTypeDateRangeInterface, RegistrationCutOffInterface } from './meeting-type.interface';
6
+ import { TimeRangeInterface, CalendarInterface, HostUserInterface, PreferencesInterface, EmailsToDeleteInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, IsoDateTimeRangeInterface, AttendeeInterface, AnswersInterface, AttachmentInterface } from './shared.interface';
7
+ import { TimeZoneInterface } from './';
7
8
  import * as e from '../enums';
8
- export interface EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
9
+ export interface IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
9
10
  key?: string;
10
11
  value?: string;
11
12
  }
12
- export interface IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
13
+ export interface BuildHostIdRequestApplicationContextPropertiesEntryInterface {
13
14
  key?: string;
14
15
  value?: string;
15
16
  }
16
- export interface BuildHostIdRequestApplicationContextPropertiesEntryInterface {
17
+ export interface EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
17
18
  key?: string;
18
19
  value?: string;
19
20
  }
@@ -150,9 +151,15 @@ export interface EventTypeSummaryInterface {
150
151
  bookingUrl?: string;
151
152
  isPinned?: boolean;
152
153
  location?: string;
153
- category?: string;
154
+ calendarType?: e.CalendarType;
154
155
  teamName?: string;
155
156
  calendarId?: string;
157
+ locationType?: e.MeetingLocationType;
158
+ meetingType?: e.TeamEventMeetingType;
159
+ hostUsers?: HostUserInterface[];
160
+ dateRange?: EventTypeDateRangeInterface;
161
+ locationGuidelines?: string;
162
+ description?: string;
156
163
  }
157
164
  export interface ListAvailabilityRequestFiltersInterface {
158
165
  hostId?: string;
@@ -170,6 +177,12 @@ export interface GetEntityAssociationResponseInterface {
170
177
  groups?: string[];
171
178
  services?: string[];
172
179
  }
180
+ export interface GetEventTypeByIdRequestInterface {
181
+ eventTypeId?: string;
182
+ }
183
+ export interface GetEventTypeByIdResponseInterface {
184
+ meetingType?: MeetingTypeInterface;
185
+ }
173
186
  export interface GetHostMeetingRequestInterface {
174
187
  meetingId?: string;
175
188
  location?: string;
@@ -1,5 +1,4 @@
1
- import { TimeOfDayInterface } from './timeofday.interface';
2
- import { TimeZoneInterface } from './datetime.interface';
1
+ import { TimeZoneInterface, TimeOfDayInterface } from './';
3
2
  import * as e from '../enums';
4
3
  export interface AnswerInterface {
5
4
  id?: string;
@@ -42,6 +41,7 @@ export interface CalendarInterface {
42
41
  };
43
42
  calendarType?: e.CalendarType;
44
43
  encodedApplicationContext?: string;
44
+ businessName?: string;
45
45
  }
46
46
  export interface ContactInterface {
47
47
  firstName?: string;
@@ -1,14 +1,12 @@
1
1
  import { AvailableTimeSlotsRequest, AvailableTimeSlotsResponse, BookMeetingExternalRequest, BookMeetingExternalResponse, ExternalCancelMeetingRequest, ExternalRescheduleMeetingRequest, ExternalRescheduleMeetingResponse, GetUsersRequest, GetUsersResponse, GroupsRequest, GroupsResponse, ListTeamEventTypesRequest, ListTeamEventTypesResponse, ListUserEventTypesRequest, ListUserEventTypesResponse, ServicesRequest, ServicesResponse } from './objects/';
2
2
  import { AvailableTimeSlotsRequestInterface, BookMeetingExternalRequestInterface, ExternalCancelMeetingRequestInterface, ExternalRescheduleMeetingRequestInterface, GetUsersRequestInterface, GroupsRequestInterface, ListTeamEventTypesRequestInterface, ListUserEventTypesRequestInterface, ServicesRequestInterface } from './interfaces/';
3
- import { HttpClient, HttpResponse } from '@angular/common/http';
4
- import { HostService } from '../_generated/host.service';
3
+ import { HttpResponse } from '@angular/common/http';
5
4
  import { Observable } from 'rxjs';
6
5
  import * as i0 from "@angular/core";
7
6
  export declare class MeetingExternalApiService {
8
- private http;
9
- private hostService;
7
+ private readonly hostService;
8
+ private readonly http;
10
9
  private _host;
11
- constructor(http: HttpClient, hostService: HostService);
12
10
  private apiOptions;
13
11
  listGroups(r: GroupsRequest | GroupsRequestInterface): Observable<GroupsResponse>;
14
12
  listServices(r: ServicesRequest | ServicesRequestInterface): Observable<ServicesResponse>;
@@ -1,14 +1,12 @@
1
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
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';
3
+ import { HttpResponse } from '@angular/common/http';
5
4
  import { Observable } from 'rxjs';
6
5
  import * as i0 from "@angular/core";
7
6
  export declare class MeetingGuestApiService {
8
- private http;
9
- private hostService;
7
+ private readonly hostService;
8
+ private readonly http;
10
9
  private _host;
11
- constructor(http: HttpClient, hostService: HostService);
12
10
  private apiOptions;
13
11
  listMeetingTypes(r: ListMeetingTypesRequest | ListMeetingTypesRequestInterface): Observable<ListMeetingTypesResponse>;
14
12
  getMeetingType(r: GetMeetingTypeRequest | GetMeetingTypeRequestInterface): Observable<GetMeetingTypeResponse>;
@@ -1,14 +1,12 @@
1
- import { BookMeetingRequest, BookMeetingResponse, BuildHostIdRequest, BuildHostIdResponse, CalendarMigrationResponse, CancelMeetingRequest, CheckEventTypeSlugExistRequest, CheckEventTypeSlugExistResponse, CheckGroupOrServiceSlugExistRequest, CheckGroupOrServiceSlugExistResponse, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateGroupRequest, CreateGroupResponse, CreateMeetingTypeRequest, CreateMeetingTypeResponse, CreateServiceRequest, CreateServiceResponse, DeleteAvailabilityRequest, DeleteGroupRequest, DeleteMeetingTypeRequest, DeleteServiceRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, EnsureSessionEventCalendarsExistRequest, EnsureSessionEventCalendarsExistResponse, GetEntityAssociationRequest, GetEntityAssociationResponse, GetGroupRequest, GetGroupResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, GetServiceRequest, GetServiceResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostBookSessionRequest, HostBookSessionResponse, HostDeleteAttendeesRequest, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAttendeesRequest, ListAttendeesResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListAvailableTimeslotsForRecurringSessionRequest, ListAvailableTimeslotsForRecurringSessionResponse, ListAvailableTimeslotsForSessionRequest, ListAvailableTimeslotsForSessionResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListEventTypesForMultipleCalendarsRequest, ListEventTypesForMultipleCalendarsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest } from './objects/';
2
- import { BookMeetingRequestInterface, BuildHostIdRequestInterface, CancelMeetingRequestInterface, CheckEventTypeSlugExistRequestInterface, CheckGroupOrServiceSlugExistRequestInterface, CreateAvailabilityRequestInterface, CreateCalendarRequestInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateMeetingTypeRequestInterface, CreateServiceRequestInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, EnsureGroupCalendarsExistRequestInterface, EnsurePersonalCalendarExistsRequestInterface, EnsureSessionEventCalendarsExistRequestInterface, GetEntityAssociationRequestInterface, GetGroupRequestInterface, GetHostMeetingRequestInterface, GetHostPreferencesRequestInterface, GetHostsForCalendarRequestInterface, GetMeetingTypesForCalendarsRequestInterface, GetServiceRequestInterface, HostBookMeetingRequestInterface, HostBookSessionRequestInterface, HostDeleteAttendeesRequestInterface, HostGetCalendarRequestInterface, HostGetMeetingTypeRequestInterface, HostListMeetingTypesRequestInterface, IsCalendarConfiguredRequestInterface, IsHostConfiguredRequestInterface, ListAttendeesRequestInterface, ListAvailabilityRequestInterface, ListAvailableTimeslotsForRecurringSessionRequestInterface, ListAvailableTimeslotsForSessionRequestInterface, ListBookedMeetingsRequestInterface, ListEventTypesForMultipleCalendarsRequestInterface, ListGroupsRequestInterface, ListServicesRequestInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface } from './interfaces/';
3
- import { HttpClient, HttpResponse } from '@angular/common/http';
4
- import { HostService } from '../_generated/host.service';
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, GetEventTypeByIdRequest, GetEventTypeByIdResponse, GetGroupRequest, GetGroupResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, GetServiceRequest, GetServiceResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostBookSessionRequest, HostBookSessionResponse, HostDeleteAttendeesRequest, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAttendeesRequest, ListAttendeesResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListAvailableTimeslotsForRecurringSessionRequest, ListAvailableTimeslotsForRecurringSessionResponse, ListAvailableTimeslotsForSessionRequest, ListAvailableTimeslotsForSessionResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListEventTypesForMultipleCalendarsRequest, ListEventTypesForMultipleCalendarsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest } from './objects/';
2
+ import { BookMeetingRequestInterface, BuildHostIdRequestInterface, CancelMeetingRequestInterface, CheckEventTypeSlugExistRequestInterface, CheckGroupOrServiceSlugExistRequestInterface, CreateAvailabilityRequestInterface, CreateCalendarRequestInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateMeetingTypeRequestInterface, CreateServiceRequestInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, EnsureGroupCalendarsExistRequestInterface, EnsurePersonalCalendarExistsRequestInterface, EnsureSessionEventCalendarsExistRequestInterface, GetEntityAssociationRequestInterface, GetEventTypeByIdRequestInterface, GetGroupRequestInterface, GetHostMeetingRequestInterface, GetHostPreferencesRequestInterface, GetHostsForCalendarRequestInterface, GetMeetingTypesForCalendarsRequestInterface, GetServiceRequestInterface, HostBookMeetingRequestInterface, HostBookSessionRequestInterface, HostDeleteAttendeesRequestInterface, HostGetCalendarRequestInterface, HostGetMeetingTypeRequestInterface, HostListMeetingTypesRequestInterface, IsCalendarConfiguredRequestInterface, IsHostConfiguredRequestInterface, ListAttendeesRequestInterface, ListAvailabilityRequestInterface, ListAvailableTimeslotsForRecurringSessionRequestInterface, ListAvailableTimeslotsForSessionRequestInterface, ListBookedMeetingsRequestInterface, ListEventTypesForMultipleCalendarsRequestInterface, ListGroupsRequestInterface, ListServicesRequestInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface } from './interfaces/';
3
+ import { HttpResponse } from '@angular/common/http';
5
4
  import { Observable } from 'rxjs';
6
5
  import * as i0 from "@angular/core";
7
6
  export declare class MeetingHostApiService {
8
- private http;
9
- private hostService;
7
+ private readonly hostService;
8
+ private readonly http;
10
9
  private _host;
11
- constructor(http: HttpClient, hostService: HostService);
12
10
  private apiOptions;
13
11
  buildHostId(r: BuildHostIdRequest | BuildHostIdRequestInterface): Observable<BuildHostIdResponse>;
14
12
  doesCalendarExist(r: DoesCalendarExistRequest | DoesCalendarExistRequestInterface): Observable<DoesCalendarExistResponse>;
@@ -65,6 +63,7 @@ export declare class MeetingHostApiService {
65
63
  rescheduleSession(r: RescheduleMeetingRequest | RescheduleMeetingRequestInterface): Observable<HttpResponse<null>>;
66
64
  listAvailableTimeslotsForSession(r: ListAvailableTimeslotsForSessionRequest | ListAvailableTimeslotsForSessionRequestInterface): Observable<ListAvailableTimeslotsForSessionResponse>;
67
65
  listAvailableTimeslotsForRecurringSession(r: ListAvailableTimeslotsForRecurringSessionRequest | ListAvailableTimeslotsForRecurringSessionRequestInterface): Observable<ListAvailableTimeslotsForRecurringSessionResponse>;
66
+ getEventTypeById(r: GetEventTypeByIdRequest | GetEventTypeByIdRequestInterface): Observable<GetEventTypeByIdResponse>;
68
67
  static ɵfac: i0.ɵɵFactoryDeclaration<MeetingHostApiService, never>;
69
68
  static ɵprov: i0.ɵɵInjectableDeclaration<MeetingHostApiService>;
70
69
  }
@@ -1,14 +1,11 @@
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';
5
3
  import { Observable } from 'rxjs';
6
4
  import * as i0 from "@angular/core";
7
5
  export declare class MeetingSourceAPIApiService {
8
- private http;
9
- private hostService;
6
+ private readonly hostService;
7
+ private readonly http;
10
8
  private _host;
11
- constructor(http: HttpClient, hostService: HostService);
12
9
  private apiOptions;
13
10
  list(r: MeetingSourceListRequest | MeetingSourceListRequestInterface): Observable<MeetingSourceListResponse>;
14
11
  static ɵfac: i0.ɵɵFactoryDeclaration<MeetingSourceAPIApiService, never>;
@@ -1,8 +1,6 @@
1
1
  export { MeetingSourceInfo, MeetingSourceListRequest, MeetingSourceListResponse, MeetingSourceQuery, } from './meeting-source';
2
2
  export { CreateZoomMeetingRequest, CreateZoomMeetingResponse, ZoomMeetingRecurrence, ZoomMeetingSettings, ZoomMeetingTrackingField, ZoomOccurrence, } from './zoom';
3
3
  export { GoogleMeetConferenceData, GoogleMeetConferenceRequestStatus, GoogleMeetConferenceSolution, GoogleMeetConferenceSolutionKey, GoogleMeetCreateConferenceRequest, GoogleMeetCreateMeetingRequest, GoogleMeetCreateMeetingResponse, GoogleMeetEntryPoint, GoogleMeetListMeetingsRequest, GoogleMeetListMeetingsResponse, GoogleMeetMeeting, GoogleMeetMeetingAttendee, GoogleMeetMeetingCreator, GoogleMeetMeetingDateTime, GoogleMeetMeetingOrganizer, GoogleMeetMeetingReminder, GoogleMeetMeetingReminders, } from './google-meet';
4
- export { TimeOfDay, } from './timeofday';
5
- export { DateTime, TimeZone, } from './datetime';
6
4
  export { Answer, Answers, CalendarApplicationContextEntry, Attachment, Attendee, Calendar, Contact, EmailsToDelete, Host, HostOrderDetails, HostUser, IsoDateTimeRange, PagedRequestOptions, PagedResponseMetadata, PhoneFields, Preferences, TimeRange, } from './shared';
7
5
  export { DateRange, } from './date-range';
8
6
  export { EventTypeDateRange, Field, Form, MeetingType, RegistrationCutOff, RelativeDateRange, } from './meeting-type';
@@ -10,5 +8,7 @@ export { EventGroupAndServiceAssociations, Group, Service, } from './groups-and-
10
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';
11
9
  export { AvailableTimeSlotsRequest, AvailableTimeSlotsResponse, BookMeetingExternalRequest, BookMeetingExternalResponse, EventType, ExternalCancelMeetingRequest, ExternalRescheduleMeetingRequest, ExternalRescheduleMeetingResponse, GetUsersRequest, GetUsersResponse, GroupResponse, GroupsRequest, GroupsResponse, HostUserDetails, ListTeamEventTypesRequest, ListTeamEventTypesResponse, ListUserEventTypesRequest, ListUserEventTypesResponse, ServiceResponse, ServicesRequest, ServicesResponse, UserResponse, } from './meeting-external';
12
10
  export { FieldMask, } from './field-mask';
13
- export { EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, IsCalendarConfiguredRequestApplicationContextPropertiesEntry, BuildHostIdRequestApplicationContextPropertiesEntry, AvailabilityRule, AvailabilityRuleList, BuildHostIdRequest, BuildHostIdResponse, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntry, CalendarMigrationResponse, CancelMeetingRequest, CheckEventTypeSlugExistRequest, CheckEventTypeSlugExistResponse, CheckGroupOrServiceSlugExistRequest, CheckGroupOrServiceSlugExistResponse, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateGroupRequest, CreateGroupResponse, CreateMeetingTypeRequest, CreateMeetingTypeResponse, CreateServiceRequest, CreateServiceResponse, DeleteAvailabilityRequest, DeleteGroupRequest, DeleteMeetingTypeRequest, DeleteServiceRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, EnsureSessionEventCalendarsExistRequest, EnsureSessionEventCalendarsExistResponse, EventTypeSummary, ListAvailabilityRequestFilters, ListBookedMeetingsRequestFilters, GetEntityAssociationRequest, GetEntityAssociationResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostBookSessionRequest, HostBookSessionResponse, HostDeleteAttendeesRequest, HostDetails, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, GetHostsForCalendarResponseHostUserAvailabilityRuleEntry, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAttendeesRequest, ListAttendeesResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListAvailableTimeslotsForRecurringSessionRequest, ListAvailableTimeslotsForRecurringSessionResponse, ListAvailableTimeslotsForSessionRequest, ListAvailableTimeslotsForSessionResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListEventTypesForMultipleCalendarsRequest, ListEventTypesForMultipleCalendarsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, Meeting, MeetingTypeList, UpdateMeetingMetadataRequestMetadataEntry, MeetingMetadataEntry, RecurrenceConfig, RecurrenceEnd, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SessionAttendees, SetGeneralAvailabilityRequest, TimeSlotsByWeekDay, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
11
+ export { IsCalendarConfiguredRequestApplicationContextPropertiesEntry, BuildHostIdRequestApplicationContextPropertiesEntry, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, AvailabilityRule, AvailabilityRuleList, BuildHostIdRequest, BuildHostIdResponse, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntry, CalendarMigrationResponse, CancelMeetingRequest, CheckEventTypeSlugExistRequest, CheckEventTypeSlugExistResponse, CheckGroupOrServiceSlugExistRequest, CheckGroupOrServiceSlugExistResponse, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateGroupRequest, CreateGroupResponse, CreateMeetingTypeRequest, CreateMeetingTypeResponse, CreateServiceRequest, CreateServiceResponse, DeleteAvailabilityRequest, DeleteGroupRequest, DeleteMeetingTypeRequest, DeleteServiceRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, EnsureSessionEventCalendarsExistRequest, EnsureSessionEventCalendarsExistResponse, EventTypeSummary, ListAvailabilityRequestFilters, ListBookedMeetingsRequestFilters, GetEntityAssociationRequest, GetEntityAssociationResponse, GetEventTypeByIdRequest, GetEventTypeByIdResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostBookSessionRequest, HostBookSessionResponse, HostDeleteAttendeesRequest, HostDetails, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, GetHostsForCalendarResponseHostUserAvailabilityRuleEntry, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAttendeesRequest, ListAttendeesResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListAvailableTimeslotsForRecurringSessionRequest, ListAvailableTimeslotsForRecurringSessionResponse, ListAvailableTimeslotsForSessionRequest, ListAvailableTimeslotsForSessionResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListEventTypesForMultipleCalendarsRequest, ListEventTypesForMultipleCalendarsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, Meeting, MeetingTypeList, UpdateMeetingMetadataRequestMetadataEntry, MeetingMetadataEntry, RecurrenceConfig, RecurrenceEnd, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SessionAttendees, SetGeneralAvailabilityRequest, TimeSlotsByWeekDay, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
14
12
  export { Access, MCPOptions, } from './annotations';
13
+ export { TimeOfDay, } from './timeofday';
14
+ export { DateTime, TimeZone, } from './datetime';
@@ -1,12 +1,13 @@
1
1
  import * as i from '../interfaces';
2
+ import { Contact } from './shared';
2
3
  import { DateRange } from './date-range';
3
4
  import { EventTypeDateRange } from './meeting-type';
4
- import { IsoDateTimeRange, Contact, Answers, HostUser, HostOrderDetails, PagedRequestOptions, PagedResponseMetadata } from './shared';
5
- import { TimeZone } from './datetime';
5
+ import { IsoDateTimeRange, Answers, HostOrderDetails } from './shared';
6
+ import { TimeZone } from './';
6
7
  import * as e from '../enums';
7
8
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
8
9
  export declare class AvailableTimeSlotsRequest implements i.AvailableTimeSlotsRequestInterface {
9
- namespace: string;
10
+ businessId: string;
10
11
  eventTypeId: string;
11
12
  timeSpan: DateRange;
12
13
  timeZone: TimeZone;
@@ -22,7 +23,7 @@ export declare class AvailableTimeSlotsResponse implements i.AvailableTimeSlotsR
22
23
  toApiJson(): object;
23
24
  }
24
25
  export declare class BookMeetingExternalRequest implements i.BookMeetingExternalRequestInterface {
25
- namespace: string;
26
+ businessId: string;
26
27
  eventTypeId: string;
27
28
  start: Date;
28
29
  attendees: Contact[];
@@ -42,11 +43,6 @@ export declare class BookMeetingExternalResponse implements i.BookMeetingExterna
42
43
  eventTypeId: string;
43
44
  title: string;
44
45
  location: string;
45
- hostDetails: HostUserDetails[];
46
- bookingUrl: string;
47
- cancelUrl: string;
48
- rescheduleUrl: string;
49
- meetingLink: string;
50
46
  attendeeEmails: string[];
51
47
  static fromProto(proto: any): BookMeetingExternalResponse;
52
48
  constructor(kwargs?: i.BookMeetingExternalResponseInterface);
@@ -63,7 +59,7 @@ export declare class EventType implements i.EventTypeInterface {
63
59
  locationGuidelines: string;
64
60
  isVideoConferencingEnabled: boolean;
65
61
  calendarType: string;
66
- hostUsers: HostUser[];
62
+ hostUsers: UserResponse[];
67
63
  bookingWindow: EventTypeDateRange;
68
64
  meetingType: e.TeamEventMeetingType;
69
65
  hostOrderDetails: HostOrderDetails[];
@@ -74,7 +70,7 @@ export declare class EventType implements i.EventTypeInterface {
74
70
  toApiJson(): object;
75
71
  }
76
72
  export declare class ExternalCancelMeetingRequest implements i.ExternalCancelMeetingRequestInterface {
77
- namespace: string;
73
+ businessId: string;
78
74
  meetingId: string;
79
75
  cancellationReason: string;
80
76
  static fromProto(proto: any): ExternalCancelMeetingRequest;
@@ -82,7 +78,7 @@ export declare class ExternalCancelMeetingRequest implements i.ExternalCancelMee
82
78
  toApiJson(): object;
83
79
  }
84
80
  export declare class ExternalRescheduleMeetingRequest implements i.ExternalRescheduleMeetingRequestInterface {
85
- namespace: string;
81
+ businessId: string;
86
82
  meetingId: string;
87
83
  startTime: Date;
88
84
  location: string;
@@ -95,28 +91,21 @@ export declare class ExternalRescheduleMeetingResponse implements i.ExternalResc
95
91
  meetingId: string;
96
92
  startTime: Date;
97
93
  endTime: Date;
98
- hostDetails: HostUserDetails[];
99
94
  eventTypeId: string;
100
95
  title: string;
101
96
  location: string;
102
- meetingUrl: string;
103
- bookingUrl: string;
104
- rescheduleUrl: string;
105
- cancelUrl: string;
106
97
  static fromProto(proto: any): ExternalRescheduleMeetingResponse;
107
98
  constructor(kwargs?: i.ExternalRescheduleMeetingResponseInterface);
108
99
  toApiJson(): object;
109
100
  }
110
101
  export declare class GetUsersRequest implements i.GetUsersRequestInterface {
111
- namespace: string;
112
- pagedRequestOptions: PagedRequestOptions;
102
+ businessId: string;
113
103
  static fromProto(proto: any): GetUsersRequest;
114
104
  constructor(kwargs?: i.GetUsersRequestInterface);
115
105
  toApiJson(): object;
116
106
  }
117
107
  export declare class GetUsersResponse implements i.GetUsersResponseInterface {
118
108
  users: UserResponse[];
119
- pagedResponseMetadata: PagedResponseMetadata;
120
109
  static fromProto(proto: any): GetUsersResponse;
121
110
  constructor(kwargs?: i.GetUsersResponseInterface);
122
111
  toApiJson(): object;
@@ -132,7 +121,7 @@ export declare class GroupResponse implements i.GroupResponseInterface {
132
121
  toApiJson(): object;
133
122
  }
134
123
  export declare class GroupsRequest implements i.GroupsRequestInterface {
135
- namespace: string;
124
+ businessId: string;
136
125
  static fromProto(proto: any): GroupsRequest;
137
126
  constructor(kwargs?: i.GroupsRequestInterface);
138
127
  toApiJson(): object;
@@ -151,7 +140,7 @@ export declare class HostUserDetails implements i.HostUserDetailsInterface {
151
140
  toApiJson(): object;
152
141
  }
153
142
  export declare class ListTeamEventTypesRequest implements i.ListTeamEventTypesRequestInterface {
154
- namespace: string;
143
+ businessId: string;
155
144
  cursor: string;
156
145
  pageSize: number;
157
146
  static fromProto(proto: any): ListTeamEventTypesRequest;
@@ -167,7 +156,7 @@ export declare class ListTeamEventTypesResponse implements i.ListTeamEventTypesR
167
156
  toApiJson(): object;
168
157
  }
169
158
  export declare class ListUserEventTypesRequest implements i.ListUserEventTypesRequestInterface {
170
- namespace: string;
159
+ businessId: string;
171
160
  userId: string;
172
161
  static fromProto(proto: any): ListUserEventTypesRequest;
173
162
  constructor(kwargs?: i.ListUserEventTypesRequestInterface);
@@ -190,7 +179,7 @@ export declare class ServiceResponse implements i.ServiceResponseInterface {
190
179
  toApiJson(): object;
191
180
  }
192
181
  export declare class ServicesRequest implements i.ServicesRequestInterface {
193
- namespace: string;
182
+ businessId: string;
194
183
  static fromProto(proto: any): ServicesRequest;
195
184
  constructor(kwargs?: i.ServicesRequestInterface);
196
185
  toApiJson(): object;
@@ -204,7 +193,7 @@ export declare class ServicesResponse implements i.ServicesResponseInterface {
204
193
  export declare class UserResponse implements i.UserResponseInterface {
205
194
  userId: string;
206
195
  displayName: string;
207
- isConfigured: boolean;
196
+ isConnected: boolean;
208
197
  static fromProto(proto: any): UserResponse;
209
198
  constructor(kwargs?: i.UserResponseInterface);
210
199
  toApiJson(): object;
@@ -1,9 +1,10 @@
1
1
  import * as i from '../interfaces';
2
- import { Contact, Answers, Calendar, Host, HostUser, IsoDateTimeRange } from './shared';
2
+ import { Answers, Calendar, Host, HostUser, IsoDateTimeRange } from './shared';
3
+ import { Contact } from './shared';
3
4
  import { DateRange } from './date-range';
4
5
  import { Group, Service } from './groups-and-services';
5
6
  import { MeetingType, Form } from './meeting-type';
6
- import { TimeZone } from './datetime';
7
+ import { TimeZone } from './';
7
8
  import * as e from '../enums';
8
9
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
9
10
  export declare class BookMeetingRequest implements i.BookMeetingRequestInterface {
@@ -21,6 +22,7 @@ export declare class BookMeetingRequest implements i.BookMeetingRequestInterface
21
22
  location: string;
22
23
  userId: string;
23
24
  bookingSource: e.BookingSource;
25
+ hasSmsConsent: boolean;
24
26
  static fromProto(proto: any): BookMeetingRequest;
25
27
  constructor(kwargs?: i.BookMeetingRequestInterface);
26
28
  toApiJson(): object;