@vendasta/meetings 1.5.1 → 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.
- package/esm2020/lib/_internal/enums/index.mjs +2 -1
- package/esm2020/lib/_internal/enums/meeting-guest.enum.mjs +11 -0
- package/esm2020/lib/_internal/google-meet.api.service.mjs +8 -7
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-external.interface.mjs +1 -7
- package/esm2020/lib/_internal/interfaces/meeting-guest.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/shared.interface.mjs +1 -1
- package/esm2020/lib/_internal/meeting-external.api.service.mjs +33 -8
- package/esm2020/lib/_internal/meeting-guest.api.service.mjs +14 -8
- package/esm2020/lib/_internal/meeting-host.api.service.mjs +8 -7
- package/esm2020/lib/_internal/meeting-source-api.api.service.mjs +8 -7
- package/esm2020/lib/_internal/objects/index.mjs +4 -4
- package/esm2020/lib/_internal/objects/meeting-external.mjs +431 -1
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +54 -5
- package/esm2020/lib/_internal/objects/meeting-host.mjs +12 -12
- package/esm2020/lib/_internal/objects/shared.mjs +3 -2
- package/esm2020/lib/_internal/zoom.api.service.mjs +8 -7
- package/esm2020/lib/guest/guest.service.mjs +4 -1
- package/esm2020/lib/index.mjs +3 -3
- package/fesm2015/vendasta-meetings.mjs +768 -248
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +768 -248
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/enums/index.d.ts +1 -0
- package/lib/_internal/enums/meeting-guest.enum.d.ts +3 -0
- package/lib/_internal/google-meet.api.service.d.ts +5 -2
- package/lib/_internal/interfaces/index.d.ts +3 -3
- package/lib/_internal/interfaces/meeting-external.interface.d.ts +88 -0
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +10 -1
- package/lib/_internal/interfaces/meeting-host.interface.d.ts +6 -6
- package/lib/_internal/interfaces/shared.interface.d.ts +2 -1
- package/lib/_internal/meeting-external.api.service.d.ts +12 -4
- package/lib/_internal/meeting-guest.api.service.d.ts +8 -5
- package/lib/_internal/meeting-host.api.service.d.ts +5 -3
- package/lib/_internal/meeting-source-api.api.service.d.ts +5 -2
- package/lib/_internal/objects/index.d.ts +3 -3
- package/lib/_internal/objects/meeting-external.d.ts +121 -0
- package/lib/_internal/objects/meeting-guest.d.ts +15 -1
- package/lib/_internal/objects/meeting-host.d.ts +14 -14
- package/lib/_internal/objects/shared.d.ts +2 -1
- package/lib/_internal/zoom.api.service.d.ts +5 -2
- package/lib/guest/guest.service.d.ts +6 -1
- package/lib/index.d.ts +3 -3
- package/package.json +1 -1
|
@@ -2,5 +2,6 @@ export { CalendarSource, MeetingSource, MeetingSourceStatus, } from './meeting-s
|
|
|
2
2
|
export { ZoomApprovalType, ZoomMeetingRecurrenceType, ZoomMeetingType, ZoomMonthlyWeek, ZoomMonthlyWeekDay, ZoomRegistrationType, ZoomWeeklyDay, } from './zoom.enum';
|
|
3
3
|
export { CalendarType, FormFieldType, OnBoardingState, } from './shared.enum';
|
|
4
4
|
export { BookingSource, DateRangeType, MeetingLocation, MeetingLocationType, NotificationType, RegistrationCutOffUnit, RelativeTimeUnit, TeamEventMeetingType, } from './meeting-type.enum';
|
|
5
|
+
export { FeatureFlagFieldType, } from './meeting-guest.enum';
|
|
5
6
|
export { BookingFailureReason, Recurrence, RegistrationMode, Weekday, } from './meeting-host.enum';
|
|
6
7
|
export { DayOfWeek, } from './dayofweek.enum';
|
|
@@ -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
|
|
7
|
-
private
|
|
8
|
+
private http;
|
|
9
|
+
private hostService;
|
|
8
10
|
private _host;
|
|
11
|
+
constructor(http: HttpClient, hostService: HostService);
|
|
9
12
|
private apiOptions;
|
|
10
13
|
createMeeting(r: GoogleMeetCreateMeetingRequest | GoogleMeetCreateMeetingRequestInterface): Observable<GoogleMeetCreateMeetingResponse>;
|
|
11
14
|
listMeetings(r: GoogleMeetListMeetingsRequest | GoogleMeetListMeetingsRequestInterface): Observable<GoogleMeetListMeetingsResponse>;
|
|
@@ -5,10 +5,10 @@ export { AnswerInterface, AnswersInterface, CalendarApplicationContextEntryInter
|
|
|
5
5
|
export { DateRangeInterface, } from './date-range.interface';
|
|
6
6
|
export { EventTypeDateRangeInterface, FieldInterface, FormInterface, MeetingTypeInterface, RegistrationCutOffInterface, RelativeDateRangeInterface, } from './meeting-type.interface';
|
|
7
7
|
export { EventGroupAndServiceAssociationsInterface, GroupInterface, ServiceInterface, } from './groups-and-services.interface';
|
|
8
|
-
export { BookMeetingRequestInterface, BookMeetingResponseInterface, GetCalendarRequestInterface, GetCalendarResponseInterface, GetGroupRequestInterface, GetGroupResponseInterface, GetHostRequestInterface, GetHostResponseInterface, GetMeetingCalendarInfoRequestInterface, GetMeetingCalendarInfoResponseInterface, GetMeetingTypeRequestInterface, GetMeetingTypeResponseInterface, GetServiceRequestInterface, GetServiceResponseInterface, GetSessionInviteeMeetingInfoRequestInterface, GetSessionInviteeMeetingInfoResponseInterface, GetSessionMeetingRequestInterface, GetSessionMeetingResponseInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingRequestV2Interface, GuestGetBookedMeetingResponseInterface, GuestGetBookedMeetingResponseV2Interface, GuestIsHostConfiguredRequestInterface, GuestIsHostConfiguredResponseInterface, GuestRescheduleMeetingRequestInterface, InviteeDeregisterSessionMeetingRequestInterface, InviteeRegisterSessionMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListAvailableTimeSlotsResponseInterface, ListMeetingTypesRequestInterface, ListMeetingTypesResponseInterface, BookMeetingRequestMetadataEntryInterface, RegisterSessionRequestInterface, } from './meeting-guest.interface';
|
|
9
|
-
export { GroupResponseInterface, GroupsRequestInterface, GroupsResponseInterface, ServiceResponseInterface, ServicesRequestInterface, ServicesResponseInterface, } from './meeting-external.interface';
|
|
8
|
+
export { BookMeetingRequestInterface, BookMeetingResponseInterface, CheckFeatureFlagRequestInterface, CheckFeatureFlagResponseInterface, GetCalendarRequestInterface, GetCalendarResponseInterface, GetGroupRequestInterface, GetGroupResponseInterface, GetHostRequestInterface, GetHostResponseInterface, GetMeetingCalendarInfoRequestInterface, GetMeetingCalendarInfoResponseInterface, GetMeetingTypeRequestInterface, GetMeetingTypeResponseInterface, GetServiceRequestInterface, GetServiceResponseInterface, GetSessionInviteeMeetingInfoRequestInterface, GetSessionInviteeMeetingInfoResponseInterface, GetSessionMeetingRequestInterface, GetSessionMeetingResponseInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingRequestV2Interface, GuestGetBookedMeetingResponseInterface, GuestGetBookedMeetingResponseV2Interface, GuestIsHostConfiguredRequestInterface, GuestIsHostConfiguredResponseInterface, GuestRescheduleMeetingRequestInterface, InviteeDeregisterSessionMeetingRequestInterface, InviteeRegisterSessionMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListAvailableTimeSlotsResponseInterface, ListMeetingTypesRequestInterface, ListMeetingTypesResponseInterface, BookMeetingRequestMetadataEntryInterface, RegisterSessionRequestInterface, } from './meeting-guest.interface';
|
|
9
|
+
export { AvailableTimeSlotsRequestInterface, AvailableTimeSlotsResponseInterface, BookMeetingExternalRequestInterface, BookMeetingExternalResponseInterface, 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
|
-
export {
|
|
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';
|
|
13
13
|
export { TimeOfDayInterface, } from './timeofday.interface';
|
|
14
14
|
export { DateTimeInterface, TimeZoneInterface, } from './datetime.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
|
}
|
|
@@ -136,6 +144,7 @@ export interface GuestGetBookedMeetingResponseV2Interface {
|
|
|
136
144
|
rescheduleLink?: string;
|
|
137
145
|
cancelLink?: string;
|
|
138
146
|
timeZone?: TimeZoneInterface;
|
|
147
|
+
businessLogo?: string;
|
|
139
148
|
}
|
|
140
149
|
export interface GuestIsHostConfiguredRequestInterface {
|
|
141
150
|
hostId?: string;
|
|
@@ -3,17 +3,17 @@ import { FieldMaskInterface } from './field-mask.interface';
|
|
|
3
3
|
import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
|
|
4
4
|
import { MeetingTypeInterface, RegistrationCutOffInterface } from './meeting-type.interface';
|
|
5
5
|
import { TimeRangeInterface, CalendarInterface, PreferencesInterface, HostUserInterface, ContactInterface, EmailsToDeleteInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, IsoDateTimeRangeInterface, AttendeeInterface, AnswersInterface, AttachmentInterface } from './shared.interface';
|
|
6
|
-
import { TimeZoneInterface } from './';
|
|
6
|
+
import { TimeZoneInterface } from './datetime.interface';
|
|
7
7
|
import * as e from '../enums';
|
|
8
|
-
export interface
|
|
8
|
+
export interface IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
|
|
9
9
|
key?: string;
|
|
10
10
|
value?: string;
|
|
11
11
|
}
|
|
12
|
-
export interface
|
|
12
|
+
export interface BuildHostIdRequestApplicationContextPropertiesEntryInterface {
|
|
13
13
|
key?: string;
|
|
14
14
|
value?: string;
|
|
15
15
|
}
|
|
16
|
-
export interface
|
|
16
|
+
export interface EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
|
|
17
17
|
key?: string;
|
|
18
18
|
value?: string;
|
|
19
19
|
}
|
|
@@ -353,11 +353,11 @@ export interface MeetingInterface {
|
|
|
353
353
|
export interface MeetingTypeListInterface {
|
|
354
354
|
meetingTypes?: MeetingTypeInterface[];
|
|
355
355
|
}
|
|
356
|
-
export interface
|
|
356
|
+
export interface UpdateMeetingMetadataRequestMetadataEntryInterface {
|
|
357
357
|
key?: string;
|
|
358
358
|
value?: string;
|
|
359
359
|
}
|
|
360
|
-
export interface
|
|
360
|
+
export interface MeetingMetadataEntryInterface {
|
|
361
361
|
key?: string;
|
|
362
362
|
value?: string;
|
|
363
363
|
}
|
|
@@ -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
|
|
7
|
-
private
|
|
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, GuestGetBookedMeetingRequestV2, GuestGetBookedMeetingResponse, GuestGetBookedMeetingResponseV2, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, InviteeDeregisterSessionMeetingRequest, InviteeRegisterSessionMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse } from './objects/';
|
|
2
|
-
import { BookMeetingRequestInterface, GetCalendarRequestInterface, GetGroupRequestInterface, GetHostRequestInterface, GetMeetingCalendarInfoRequestInterface, GetMeetingTypeRequestInterface, GetServiceRequestInterface, GetSessionInviteeMeetingInfoRequestInterface, GetSessionMeetingRequestInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingRequestV2Interface, GuestIsHostConfiguredRequestInterface, GuestRescheduleMeetingRequestInterface, InviteeDeregisterSessionMeetingRequestInterface, InviteeRegisterSessionMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListMeetingTypesRequestInterface } from './interfaces/';
|
|
3
|
-
import { HttpResponse } from '@angular/common/http';
|
|
1
|
+
import { BookMeetingRequest, BookMeetingResponse, CheckFeatureFlagRequest, CheckFeatureFlagResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingCalendarInfoRequest, GetMeetingCalendarInfoResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GetServiceRequest, GetServiceResponse, GetSessionInviteeMeetingInfoRequest, GetSessionInviteeMeetingInfoResponse, GetSessionMeetingRequest, GetSessionMeetingResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingRequestV2, GuestGetBookedMeetingResponse, GuestGetBookedMeetingResponseV2, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, InviteeDeregisterSessionMeetingRequest, InviteeRegisterSessionMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse } from './objects/';
|
|
2
|
+
import { BookMeetingRequestInterface, CheckFeatureFlagRequestInterface, GetCalendarRequestInterface, GetGroupRequestInterface, GetHostRequestInterface, GetMeetingCalendarInfoRequestInterface, GetMeetingTypeRequestInterface, GetServiceRequestInterface, GetSessionInviteeMeetingInfoRequestInterface, GetSessionMeetingRequestInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingRequestV2Interface, GuestIsHostConfiguredRequestInterface, GuestRescheduleMeetingRequestInterface, InviteeDeregisterSessionMeetingRequestInterface, InviteeRegisterSessionMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListMeetingTypesRequestInterface } from './interfaces/';
|
|
3
|
+
import { HttpClient, HttpResponse } from '@angular/common/http';
|
|
4
|
+
import { HostService } from '../_generated/host.service';
|
|
4
5
|
import { Observable } from 'rxjs';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class MeetingGuestApiService {
|
|
7
|
-
private
|
|
8
|
-
private
|
|
8
|
+
private http;
|
|
9
|
+
private hostService;
|
|
9
10
|
private _host;
|
|
11
|
+
constructor(http: HttpClient, hostService: HostService);
|
|
10
12
|
private apiOptions;
|
|
11
13
|
listMeetingTypes(r: ListMeetingTypesRequest | ListMeetingTypesRequestInterface): Observable<ListMeetingTypesResponse>;
|
|
12
14
|
getMeetingType(r: GetMeetingTypeRequest | GetMeetingTypeRequestInterface): Observable<GetMeetingTypeResponse>;
|
|
@@ -26,6 +28,7 @@ export declare class MeetingGuestApiService {
|
|
|
26
28
|
inviteeRegisterSessionMeeting(r: InviteeRegisterSessionMeetingRequest | InviteeRegisterSessionMeetingRequestInterface): Observable<HttpResponse<null>>;
|
|
27
29
|
getSessionInviteeMeetingInfo(r: GetSessionInviteeMeetingInfoRequest | GetSessionInviteeMeetingInfoRequestInterface): Observable<GetSessionInviteeMeetingInfoResponse>;
|
|
28
30
|
inviteeDeregisterSessionMeeting(r: InviteeDeregisterSessionMeetingRequest | InviteeDeregisterSessionMeetingRequestInterface): Observable<HttpResponse<null>>;
|
|
31
|
+
checkFeatureFlag(r: CheckFeatureFlagRequest | CheckFeatureFlagRequestInterface): Observable<CheckFeatureFlagResponse>;
|
|
29
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<MeetingGuestApiService, never>;
|
|
30
33
|
static ɵprov: i0.ɵɵInjectableDeclaration<MeetingGuestApiService>;
|
|
31
34
|
}
|
|
@@ -1,12 +1,14 @@
|
|
|
1
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
|
|
8
|
-
private
|
|
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
|
|
7
|
-
private
|
|
8
|
+
private http;
|
|
9
|
+
private hostService;
|
|
8
10
|
private _host;
|
|
11
|
+
constructor(http: HttpClient, hostService: HostService);
|
|
9
12
|
private apiOptions;
|
|
10
13
|
list(r: MeetingSourceListRequest | MeetingSourceListRequestInterface): Observable<MeetingSourceListResponse>;
|
|
11
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<MeetingSourceAPIApiService, never>;
|
|
@@ -5,10 +5,10 @@ export { Answer, Answers, CalendarApplicationContextEntry, Attachment, Attendee,
|
|
|
5
5
|
export { DateRange, } from './date-range';
|
|
6
6
|
export { EventTypeDateRange, Field, Form, MeetingType, RegistrationCutOff, RelativeDateRange, } from './meeting-type';
|
|
7
7
|
export { EventGroupAndServiceAssociations, Group, Service, } from './groups-and-services';
|
|
8
|
-
export { BookMeetingRequest, BookMeetingResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingCalendarInfoRequest, GetMeetingCalendarInfoResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GetServiceRequest, GetServiceResponse, GetSessionInviteeMeetingInfoRequest, GetSessionInviteeMeetingInfoResponse, GetSessionMeetingRequest, GetSessionMeetingResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingRequestV2, GuestGetBookedMeetingResponse, GuestGetBookedMeetingResponseV2, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, InviteeDeregisterSessionMeetingRequest, InviteeRegisterSessionMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, BookMeetingRequestMetadataEntry, RegisterSessionRequest, } from './meeting-guest';
|
|
9
|
-
export { GroupResponse, GroupsRequest, GroupsResponse, ServiceResponse, ServicesRequest, ServicesResponse, } from './meeting-external';
|
|
8
|
+
export { BookMeetingRequest, BookMeetingResponse, CheckFeatureFlagRequest, CheckFeatureFlagResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingCalendarInfoRequest, GetMeetingCalendarInfoResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GetServiceRequest, GetServiceResponse, GetSessionInviteeMeetingInfoRequest, GetSessionInviteeMeetingInfoResponse, GetSessionMeetingRequest, GetSessionMeetingResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingRequestV2, GuestGetBookedMeetingResponse, GuestGetBookedMeetingResponseV2, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, InviteeDeregisterSessionMeetingRequest, InviteeRegisterSessionMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, BookMeetingRequestMetadataEntry, RegisterSessionRequest, } from './meeting-guest';
|
|
9
|
+
export { AvailableTimeSlotsRequest, AvailableTimeSlotsResponse, BookMeetingExternalRequest, BookMeetingExternalResponse, ExternalCancelMeetingRequest, ExternalRescheduleMeetingRequest, ExternalRescheduleMeetingResponse, GetUsersRequest, GetUsersResponse, GroupResponse, GroupsRequest, GroupsResponse, HostUserDetails, ServiceResponse, ServicesRequest, ServicesResponse, UserResponse, } from './meeting-external';
|
|
10
10
|
export { FieldMask, } from './field-mask';
|
|
11
|
-
export {
|
|
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';
|
|
13
13
|
export { TimeOfDay, } from './timeofday';
|
|
14
14
|
export { DateTime, TimeZone, } from './datetime';
|
|
@@ -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;
|
|
@@ -4,16 +4,9 @@ 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
|
-
export declare class EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry implements i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
|
|
11
|
-
key: string;
|
|
12
|
-
value: string;
|
|
13
|
-
static fromProto(proto: any): EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry;
|
|
14
|
-
constructor(kwargs?: i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface);
|
|
15
|
-
toApiJson(): object;
|
|
16
|
-
}
|
|
17
10
|
export declare class IsCalendarConfiguredRequestApplicationContextPropertiesEntry implements i.IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
|
|
18
11
|
key: string;
|
|
19
12
|
value: string;
|
|
@@ -28,6 +21,13 @@ export declare class BuildHostIdRequestApplicationContextPropertiesEntry impleme
|
|
|
28
21
|
constructor(kwargs?: i.BuildHostIdRequestApplicationContextPropertiesEntryInterface);
|
|
29
22
|
toApiJson(): object;
|
|
30
23
|
}
|
|
24
|
+
export declare class EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry implements i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
|
|
25
|
+
key: string;
|
|
26
|
+
value: string;
|
|
27
|
+
static fromProto(proto: any): EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry;
|
|
28
|
+
constructor(kwargs?: i.EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface);
|
|
29
|
+
toApiJson(): object;
|
|
30
|
+
}
|
|
31
31
|
export declare class AvailabilityRule implements i.AvailabilityRuleInterface {
|
|
32
32
|
hostId: string;
|
|
33
33
|
meetingTypeId: string;
|
|
@@ -595,18 +595,18 @@ export declare class MeetingTypeList implements i.MeetingTypeListInterface {
|
|
|
595
595
|
constructor(kwargs?: i.MeetingTypeListInterface);
|
|
596
596
|
toApiJson(): object;
|
|
597
597
|
}
|
|
598
|
-
export declare class
|
|
598
|
+
export declare class UpdateMeetingMetadataRequestMetadataEntry implements i.UpdateMeetingMetadataRequestMetadataEntryInterface {
|
|
599
599
|
key: string;
|
|
600
600
|
value: string;
|
|
601
|
-
static fromProto(proto: any):
|
|
602
|
-
constructor(kwargs?: i.
|
|
601
|
+
static fromProto(proto: any): UpdateMeetingMetadataRequestMetadataEntry;
|
|
602
|
+
constructor(kwargs?: i.UpdateMeetingMetadataRequestMetadataEntryInterface);
|
|
603
603
|
toApiJson(): object;
|
|
604
604
|
}
|
|
605
|
-
export declare class
|
|
605
|
+
export declare class MeetingMetadataEntry implements i.MeetingMetadataEntryInterface {
|
|
606
606
|
key: string;
|
|
607
607
|
value: string;
|
|
608
|
-
static fromProto(proto: any):
|
|
609
|
-
constructor(kwargs?: i.
|
|
608
|
+
static fromProto(proto: any): MeetingMetadataEntry;
|
|
609
|
+
constructor(kwargs?: i.MeetingMetadataEntryInterface);
|
|
610
610
|
toApiJson(): object;
|
|
611
611
|
}
|
|
612
612
|
export declare class RecurrenceConfig implements i.RecurrenceConfigInterface {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as i from '../interfaces';
|
|
2
|
-
import {
|
|
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
|
|
7
|
-
private
|
|
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>;
|