@vendasta/meetings 0.95.2 → 0.95.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 +1 -1
- package/esm2020/lib/_internal/enums/meeting-source.enum.mjs +2 -1
- package/esm2020/lib/_internal/google-meet.api.service.mjs +8 -7
- package/esm2020/lib/_internal/index.mjs +2 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-bot.interface.mjs +8 -0
- 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-bot-api.api.service.mjs +55 -0
- package/esm2020/lib/_internal/meeting-guest.api.service.mjs +8 -7
- package/esm2020/lib/_internal/meeting-host.api.service.mjs +19 -13
- package/esm2020/lib/_internal/meeting-source-api.api.service.mjs +8 -7
- package/esm2020/lib/_internal/objects/index.mjs +3 -2
- package/esm2020/lib/_internal/objects/meeting-bot.mjs +240 -0
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +2 -2
- package/esm2020/lib/_internal/objects/meeting-host.mjs +51 -2
- package/esm2020/lib/_internal/objects/shared.mjs +3 -2
- package/esm2020/lib/_internal/zoom.api.service.mjs +8 -7
- package/esm2020/lib/host/host.service.mjs +4 -1
- package/esm2020/lib/index.mjs +1 -1
- package/esm2020/lib/shared/groups-and-services.mjs +1 -1
- package/fesm2015/vendasta-meetings.mjs +444 -104
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +444 -104
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/enums/meeting-source.enum.d.ts +2 -1
- package/lib/_internal/google-meet.api.service.d.ts +5 -2
- package/lib/_internal/index.d.ts +1 -0
- package/lib/_internal/interfaces/index.d.ts +3 -2
- package/lib/_internal/interfaces/meeting-bot.interface.d.ts +38 -0
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +1 -1
- package/lib/_internal/interfaces/meeting-host.interface.d.ts +8 -1
- package/lib/_internal/interfaces/shared.interface.d.ts +2 -1
- package/lib/_internal/meeting-bot-api.api.service.d.ts +19 -0
- package/lib/_internal/meeting-guest.api.service.d.ts +5 -3
- package/lib/_internal/meeting-host.api.service.d.ts +9 -6
- package/lib/_internal/meeting-source-api.api.service.d.ts +5 -2
- package/lib/_internal/objects/index.d.ts +2 -1
- package/lib/_internal/objects/meeting-bot.d.ts +64 -0
- package/lib/_internal/objects/meeting-guest.d.ts +1 -1
- package/lib/_internal/objects/meeting-host.d.ts +14 -1
- package/lib/_internal/objects/shared.d.ts +2 -1
- package/lib/_internal/zoom.api.service.d.ts +5 -2
- package/lib/host/host.service.d.ts +4 -1
- package/lib/index.d.ts +1 -1
- package/lib/shared/groups-and-services.d.ts +4 -0
- package/package.json +1 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
export declare enum MeetingSource {
|
|
2
2
|
MEETING_SOURCE_INVALID = 0,
|
|
3
3
|
MEETING_SOURCE_ZOOM = 1,
|
|
4
|
-
MEETING_SOURCE_GOOGLE_MEET = 2
|
|
4
|
+
MEETING_SOURCE_GOOGLE_MEET = 2,
|
|
5
|
+
MEETING_SOURCE_MICROSOFT = 3
|
|
5
6
|
}
|
|
6
7
|
export declare enum MeetingSourceStatus {
|
|
7
8
|
MEETING_SOURCE_STATUS_INVALID = 0,
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import { GoogleMeetCreateMeetingRequest, GoogleMeetCreateMeetingResponse } from './objects/';
|
|
2
2
|
import { GoogleMeetCreateMeetingRequestInterface } 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
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoogleMeetApiService, never>;
|
package/lib/_internal/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export * from './enums';
|
|
|
2
2
|
export * from './objects';
|
|
3
3
|
export * from './interfaces';
|
|
4
4
|
export { GoogleMeetApiService } from './google-meet.api.service';
|
|
5
|
+
export { MeetingBotAPIApiService } from './meeting-bot-api.api.service';
|
|
5
6
|
export { MeetingGuestApiService } from './meeting-guest.api.service';
|
|
6
7
|
export { MeetingHostApiService } from './meeting-host.api.service';
|
|
7
8
|
export { MeetingSourceAPIApiService } from './meeting-source-api.api.service';
|
|
@@ -1,12 +1,13 @@
|
|
|
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, GoogleMeetMeetingInterface, GoogleMeetMeetingAttendeeInterface, GoogleMeetMeetingCreatorInterface, GoogleMeetMeetingDateTimeInterface, GoogleMeetMeetingReminderInterface, GoogleMeetMeetingRemindersInterface, } from './google-meet.interface';
|
|
4
|
+
export { TimeOfDayInterface, } from './timeofday.interface';
|
|
4
5
|
export { AnswerInterface, AnswersInterface, CalendarApplicationContextEntryInterface, AttachmentInterface, AttendeeInterface, CalendarInterface, ContactInterface, HostInterface, HostUserInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, PreferencesInterface, TimeRangeInterface, } from './shared.interface';
|
|
5
6
|
export { FieldInterface, FormInterface, MeetingTypeInterface, } from './meeting-type.interface';
|
|
6
7
|
export { DateRangeInterface, } from './date-range.interface';
|
|
7
8
|
export { EventGroupAndServiceAssociationsInterface, GroupInterface, ServiceInterface, } from './groups-and-services.interface';
|
|
8
9
|
export { BookMeetingRequestInterface, BookMeetingResponseInterface, GetCalendarRequestInterface, GetCalendarResponseInterface, GetGroupRequestInterface, GetGroupResponseInterface, GetHostRequestInterface, GetHostResponseInterface, GetMeetingTypeRequestInterface, GetMeetingTypeResponseInterface, GetServiceRequestInterface, GetServiceResponseInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingResponseInterface, GuestIsHostConfiguredRequestInterface, GuestIsHostConfiguredResponseInterface, GuestRescheduleMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListAvailableTimeSlotsResponseInterface, ListMeetingTypesRequestInterface, ListMeetingTypesResponseInterface, BookMeetingRequestMetadataEntryInterface, } from './meeting-guest.interface';
|
|
9
10
|
export { FieldMaskInterface, } from './field-mask.interface';
|
|
10
|
-
export { BuildHostIdRequestApplicationContextPropertiesEntryInterface, IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, AvailabilityRuleInterface, 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, ListBookedMeetingsRequestFiltersInterface, ListAvailabilityRequestFiltersInterface, GetHostMeetingRequestInterface, GetHostMeetingResponseInterface, GetHostPreferencesRequestInterface, GetHostPreferencesResponseInterface, GetHostsForCalendarRequestInterface, GetHostsForCalendarResponseInterface, GetMeetingTypesForCalendarsRequestInterface, GetMeetingTypesForCalendarsResponseInterface, HostBookMeetingRequestInterface, HostBookMeetingResponseInterface, HostGetCalendarRequestInterface, HostGetCalendarResponseInterface, HostGetMeetingTypeRequestInterface, HostGetMeetingTypeResponseInterface, HostListMeetingTypesRequestInterface, HostListMeetingTypesResponseInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponseInterface, IsHostConfiguredRequestInterface, IsHostConfiguredResponseInterface, ListAvailabilityRequestInterface, ListAvailabilityResponseInterface, ListBookedMeetingsRequestInterface, ListBookedMeetingsResponseInterface, ListGroupsRequestInterface, ListGroupsResponseInterface, ListServicesRequestInterface, ListServicesResponseInterface, MeetingInterface, MeetingTypeListInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, MeetingMetadataEntryInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
|
|
11
|
-
export {
|
|
11
|
+
export { BuildHostIdRequestApplicationContextPropertiesEntryInterface, IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, AvailabilityRuleInterface, 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, ListBookedMeetingsRequestFiltersInterface, ListAvailabilityRequestFiltersInterface, GetHostMeetingRequestInterface, GetHostMeetingResponseInterface, GetHostPreferencesRequestInterface, GetHostPreferencesResponseInterface, GetHostsForCalendarRequestInterface, GetHostsForCalendarResponseInterface, GetMeetingTypesForCalendarsRequestInterface, GetMeetingTypesForCalendarsResponseInterface, HostBookMeetingRequestInterface, HostBookMeetingResponseInterface, HostGetCalendarRequestInterface, HostGetCalendarResponseInterface, HostGetMeetingTypeRequestInterface, HostGetMeetingTypeResponseInterface, HostListMeetingTypesRequestInterface, HostListMeetingTypesResponseInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponseInterface, IsHostConfiguredRequestInterface, IsHostConfiguredResponseInterface, ListAvailabilityRequestInterface, ListAvailabilityResponseInterface, ListBookedMeetingsRequestInterface, ListBookedMeetingsResponseInterface, ListGroupsRequestInterface, ListGroupsResponseInterface, ListServicesRequestInterface, ListServicesResponseInterface, MeetingInterface, MeetingTypeListInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, MeetingMetadataEntryInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, GetEntityAssociationsRequestInterface, GetEntityAssociationsResponseInterface, } from './meeting-host.interface';
|
|
12
|
+
export { CreateMeetingBotRequestInterface, CreateMeetingBotResponseInterface, DeleteMeetingBotRequestInterface, ListMeetingBotsRequestInterface, ListMeetingBotsResponseInterface, MeetingBotInterface, UpdateMeetingBotRequestInterface, UpdateMeetingBotResponseInterface, } from './meeting-bot.interface';
|
|
12
13
|
export { DateTimeInterface, TimeZoneInterface, } from './datetime.interface';
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import * as e from '../enums';
|
|
2
|
+
export interface CreateMeetingBotRequestInterface {
|
|
3
|
+
meetingBot?: MeetingBotInterface;
|
|
4
|
+
}
|
|
5
|
+
export interface CreateMeetingBotResponseInterface {
|
|
6
|
+
meetingBot?: MeetingBotInterface;
|
|
7
|
+
}
|
|
8
|
+
export interface DeleteMeetingBotRequestInterface {
|
|
9
|
+
id?: string;
|
|
10
|
+
}
|
|
11
|
+
export interface ListMeetingBotsRequestInterface {
|
|
12
|
+
userId?: string;
|
|
13
|
+
namespace?: string;
|
|
14
|
+
eventId?: string;
|
|
15
|
+
}
|
|
16
|
+
export interface ListMeetingBotsResponseInterface {
|
|
17
|
+
meetingBots?: MeetingBotInterface[];
|
|
18
|
+
}
|
|
19
|
+
export interface MeetingBotInterface {
|
|
20
|
+
id?: string;
|
|
21
|
+
externalBotId?: string;
|
|
22
|
+
namespace?: string;
|
|
23
|
+
userIds?: string[];
|
|
24
|
+
meetingId?: string;
|
|
25
|
+
eventId?: string;
|
|
26
|
+
eventUpdated?: Date;
|
|
27
|
+
meetingSource?: e.MeetingSource;
|
|
28
|
+
startTime?: Date;
|
|
29
|
+
created?: Date;
|
|
30
|
+
updated?: Date;
|
|
31
|
+
deleted?: Date;
|
|
32
|
+
}
|
|
33
|
+
export interface UpdateMeetingBotRequestInterface {
|
|
34
|
+
meetingBot?: MeetingBotInterface;
|
|
35
|
+
}
|
|
36
|
+
export interface UpdateMeetingBotResponseInterface {
|
|
37
|
+
meetingBot?: MeetingBotInterface;
|
|
38
|
+
}
|
|
@@ -2,7 +2,7 @@ import { ContactInterface, AnswersInterface, CalendarInterface, HostInterface }
|
|
|
2
2
|
import { DateRangeInterface } from './date-range.interface';
|
|
3
3
|
import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
|
|
4
4
|
import { MeetingTypeInterface } 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;
|
|
@@ -3,7 +3,7 @@ import { FieldMaskInterface } from './field-mask.interface';
|
|
|
3
3
|
import { GroupInterface, ServiceInterface } from './groups-and-services.interface';
|
|
4
4
|
import { MeetingTypeInterface } from './meeting-type.interface';
|
|
5
5
|
import { TimeRangeInterface, CalendarInterface, PreferencesInterface, HostUserInterface, ContactInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, AttendeeInterface, AnswersInterface, AttachmentInterface } from './shared.interface';
|
|
6
|
-
import { TimeZoneInterface } from './';
|
|
6
|
+
import { TimeZoneInterface } from './datetime.interface';
|
|
7
7
|
import * as e from '../enums';
|
|
8
8
|
export interface BuildHostIdRequestApplicationContextPropertiesEntryInterface {
|
|
9
9
|
key?: string;
|
|
@@ -324,3 +324,10 @@ export interface WeekdayAvailabilityInterface {
|
|
|
324
324
|
day?: e.DayOfWeek;
|
|
325
325
|
timeSlots?: TimeRangeInterface[];
|
|
326
326
|
}
|
|
327
|
+
export interface GetEntityAssociationsRequestInterface {
|
|
328
|
+
entityId?: string;
|
|
329
|
+
}
|
|
330
|
+
export interface GetEntityAssociationsResponseInterface {
|
|
331
|
+
services?: string[];
|
|
332
|
+
groups?: string[];
|
|
333
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { CreateMeetingBotRequest, CreateMeetingBotResponse, DeleteMeetingBotRequest, ListMeetingBotsRequest, ListMeetingBotsResponse, UpdateMeetingBotRequest, UpdateMeetingBotResponse } from './objects/';
|
|
2
|
+
import { CreateMeetingBotRequestInterface, DeleteMeetingBotRequestInterface, ListMeetingBotsRequestInterface, UpdateMeetingBotRequestInterface } from './interfaces/';
|
|
3
|
+
import { HttpClient, HttpResponse } from '@angular/common/http';
|
|
4
|
+
import { HostService } from '../_generated/host.service';
|
|
5
|
+
import { Observable } from 'rxjs';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class MeetingBotAPIApiService {
|
|
8
|
+
private http;
|
|
9
|
+
private hostService;
|
|
10
|
+
private _host;
|
|
11
|
+
constructor(http: HttpClient, hostService: HostService);
|
|
12
|
+
private apiOptions;
|
|
13
|
+
createMeetingBot(r: CreateMeetingBotRequest | CreateMeetingBotRequestInterface): Observable<CreateMeetingBotResponse>;
|
|
14
|
+
updateMeetingBot(r: UpdateMeetingBotRequest | UpdateMeetingBotRequestInterface): Observable<UpdateMeetingBotResponse>;
|
|
15
|
+
deleteMeetingBot(r: DeleteMeetingBotRequest | DeleteMeetingBotRequestInterface): Observable<HttpResponse<null>>;
|
|
16
|
+
listMeetingBots(r: ListMeetingBotsRequest | ListMeetingBotsRequestInterface): Observable<ListMeetingBotsResponse>;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MeetingBotAPIApiService, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MeetingBotAPIApiService>;
|
|
19
|
+
}
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import { BookMeetingRequest, BookMeetingResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GetServiceRequest, GetServiceResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingResponse, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse } from './objects/';
|
|
2
2
|
import { BookMeetingRequestInterface, GetCalendarRequestInterface, GetGroupRequestInterface, GetHostRequestInterface, GetMeetingTypeRequestInterface, GetServiceRequestInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestIsHostConfiguredRequestInterface, GuestRescheduleMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListMeetingTypesRequestInterface } 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 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>;
|
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
import { BookMeetingRequest, BookMeetingResponse, BuildHostIdRequest, BuildHostIdResponse, CalendarMigrationResponse, CancelMeetingRequest, CheckGroupOrServiceSlugExistRequest, CheckGroupOrServiceSlugExistResponse, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateGroupRequest, CreateGroupResponse, CreateMeetingTypeRequest, CreateMeetingTypeResponse, CreateServiceRequest, CreateServiceResponse, DeleteAvailabilityRequest, DeleteGroupRequest, DeleteMeetingTypeRequest, DeleteServiceRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, GetGroupRequest, GetGroupResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, GetServiceRequest, GetServiceResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest } from './objects/';
|
|
2
|
-
import { BookMeetingRequestInterface, BuildHostIdRequestInterface, CancelMeetingRequestInterface, CheckGroupOrServiceSlugExistRequestInterface, CreateAvailabilityRequestInterface, CreateCalendarRequestInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateMeetingTypeRequestInterface, CreateServiceRequestInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, EnsureGroupCalendarsExistRequestInterface, EnsurePersonalCalendarExistsRequestInterface, GetGroupRequestInterface, GetHostMeetingRequestInterface, GetHostPreferencesRequestInterface, GetHostsForCalendarRequestInterface, GetMeetingTypesForCalendarsRequestInterface, GetServiceRequestInterface, HostBookMeetingRequestInterface, HostGetCalendarRequestInterface, HostGetMeetingTypeRequestInterface, HostListMeetingTypesRequestInterface, IsCalendarConfiguredRequestInterface, IsHostConfiguredRequestInterface, ListAvailabilityRequestInterface, ListBookedMeetingsRequestInterface, ListGroupsRequestInterface, ListServicesRequestInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface } from './interfaces/';
|
|
3
|
-
import { HttpResponse } from '@angular/common/http';
|
|
1
|
+
import { BookMeetingRequest, BookMeetingResponse, BuildHostIdRequest, BuildHostIdResponse, CalendarMigrationResponse, CancelMeetingRequest, CheckGroupOrServiceSlugExistRequest, CheckGroupOrServiceSlugExistResponse, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateGroupRequest, CreateGroupResponse, CreateMeetingTypeRequest, CreateMeetingTypeResponse, CreateServiceRequest, CreateServiceResponse, DeleteAvailabilityRequest, DeleteGroupRequest, DeleteMeetingTypeRequest, DeleteServiceRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, GetGroupRequest, GetGroupResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, GetServiceRequest, GetServiceResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, GetEntityAssociationsRequest, GetEntityAssociationsResponse } from './objects/';
|
|
2
|
+
import { BookMeetingRequestInterface, BuildHostIdRequestInterface, CancelMeetingRequestInterface, CheckGroupOrServiceSlugExistRequestInterface, CreateAvailabilityRequestInterface, CreateCalendarRequestInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateMeetingTypeRequestInterface, CreateServiceRequestInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, EnsureGroupCalendarsExistRequestInterface, EnsurePersonalCalendarExistsRequestInterface, GetGroupRequestInterface, GetHostMeetingRequestInterface, GetHostPreferencesRequestInterface, GetHostsForCalendarRequestInterface, GetMeetingTypesForCalendarsRequestInterface, GetServiceRequestInterface, HostBookMeetingRequestInterface, HostGetCalendarRequestInterface, HostGetMeetingTypeRequestInterface, HostListMeetingTypesRequestInterface, IsCalendarConfiguredRequestInterface, IsHostConfiguredRequestInterface, ListAvailabilityRequestInterface, ListBookedMeetingsRequestInterface, ListGroupsRequestInterface, ListServicesRequestInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, GetEntityAssociationsRequestInterface } from './interfaces/';
|
|
3
|
+
import { HttpClient, HttpResponse } from '@angular/common/http';
|
|
4
|
+
import { HostService } from '../_generated/host.service';
|
|
4
5
|
import { Observable } from 'rxjs';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class MeetingHostApiService {
|
|
7
|
-
private
|
|
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>;
|
|
@@ -18,7 +20,6 @@ export declare class MeetingHostApiService {
|
|
|
18
20
|
getHostsForCalendar(r: GetHostsForCalendarRequest | GetHostsForCalendarRequestInterface): Observable<GetHostsForCalendarResponse>;
|
|
19
21
|
getMeetingTypesForCalendars(r: GetMeetingTypesForCalendarsRequest | GetMeetingTypesForCalendarsRequestInterface): Observable<GetMeetingTypesForCalendarsResponse>;
|
|
20
22
|
listAvailability(r: ListAvailabilityRequest | ListAvailabilityRequestInterface): Observable<ListAvailabilityResponse>;
|
|
21
|
-
hostBookMeeting(r: BookMeetingRequest | BookMeetingRequestInterface): Observable<BookMeetingResponse>;
|
|
22
23
|
bookMeeting(r: HostBookMeetingRequest | HostBookMeetingRequestInterface): Observable<HostBookMeetingResponse>;
|
|
23
24
|
getHostMeeting(r: GetHostMeetingRequest | GetHostMeetingRequestInterface): Observable<GetHostMeetingResponse>;
|
|
24
25
|
listBookedMeetings(r: ListBookedMeetingsRequest | ListBookedMeetingsRequestInterface): Observable<ListBookedMeetingsResponse>;
|
|
@@ -52,6 +53,8 @@ export declare class MeetingHostApiService {
|
|
|
52
53
|
getGroup(r: GetGroupRequest | GetGroupRequestInterface): Observable<GetGroupResponse>;
|
|
53
54
|
getService(r: GetServiceRequest | GetServiceRequestInterface): Observable<GetServiceResponse>;
|
|
54
55
|
checkGroupOrServiceSlugExist(r: CheckGroupOrServiceSlugExistRequest | CheckGroupOrServiceSlugExistRequestInterface): Observable<CheckGroupOrServiceSlugExistResponse>;
|
|
56
|
+
hostBookMeeting(r: BookMeetingRequest | BookMeetingRequestInterface): Observable<BookMeetingResponse>;
|
|
57
|
+
getEntityAssociations(r: GetEntityAssociationsRequest | GetEntityAssociationsRequestInterface): Observable<GetEntityAssociationsResponse>;
|
|
55
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<MeetingHostApiService, never>;
|
|
56
59
|
static ɵprov: i0.ɵɵInjectableDeclaration<MeetingHostApiService>;
|
|
57
60
|
}
|
|
@@ -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>;
|
|
@@ -7,6 +7,7 @@ export { DateRange, } from './date-range';
|
|
|
7
7
|
export { EventGroupAndServiceAssociations, Group, Service, } from './groups-and-services';
|
|
8
8
|
export { BookMeetingRequest, BookMeetingResponse, GetCalendarRequest, GetCalendarResponse, GetGroupRequest, GetGroupResponse, GetHostRequest, GetHostResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GetServiceRequest, GetServiceResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingResponse, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, BookMeetingRequestMetadataEntry, } from './meeting-guest';
|
|
9
9
|
export { FieldMask, } from './field-mask';
|
|
10
|
-
export { BuildHostIdRequestApplicationContextPropertiesEntry, IsCalendarConfiguredRequestApplicationContextPropertiesEntry, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, AvailabilityRule, 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, ListBookedMeetingsRequestFilters, ListAvailabilityRequestFilters, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, Meeting, MeetingTypeList, UpdateMeetingMetadataRequestMetadataEntry, MeetingMetadataEntry, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
|
|
10
|
+
export { BuildHostIdRequestApplicationContextPropertiesEntry, IsCalendarConfiguredRequestApplicationContextPropertiesEntry, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, AvailabilityRule, 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, ListBookedMeetingsRequestFilters, ListAvailabilityRequestFilters, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, IsCalendarConfiguredRequest, IsCalendarConfiguredResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, ListGroupsRequest, ListGroupsResponse, ListServicesRequest, ListServicesResponse, Meeting, MeetingTypeList, UpdateMeetingMetadataRequestMetadataEntry, MeetingMetadataEntry, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, GetEntityAssociationsRequest, GetEntityAssociationsResponse, } from './meeting-host';
|
|
11
|
+
export { CreateMeetingBotRequest, CreateMeetingBotResponse, DeleteMeetingBotRequest, ListMeetingBotsRequest, ListMeetingBotsResponse, MeetingBot, UpdateMeetingBotRequest, UpdateMeetingBotResponse, } from './meeting-bot';
|
|
11
12
|
export { TimeOfDay, } from './timeofday';
|
|
12
13
|
export { DateTime, TimeZone, } from './datetime';
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import * as i from '../interfaces';
|
|
2
|
+
import * as e from '../enums';
|
|
3
|
+
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
4
|
+
export declare class CreateMeetingBotRequest implements i.CreateMeetingBotRequestInterface {
|
|
5
|
+
meetingBot: MeetingBot;
|
|
6
|
+
static fromProto(proto: any): CreateMeetingBotRequest;
|
|
7
|
+
constructor(kwargs?: i.CreateMeetingBotRequestInterface);
|
|
8
|
+
toApiJson(): object;
|
|
9
|
+
}
|
|
10
|
+
export declare class CreateMeetingBotResponse implements i.CreateMeetingBotResponseInterface {
|
|
11
|
+
meetingBot: MeetingBot;
|
|
12
|
+
static fromProto(proto: any): CreateMeetingBotResponse;
|
|
13
|
+
constructor(kwargs?: i.CreateMeetingBotResponseInterface);
|
|
14
|
+
toApiJson(): object;
|
|
15
|
+
}
|
|
16
|
+
export declare class DeleteMeetingBotRequest implements i.DeleteMeetingBotRequestInterface {
|
|
17
|
+
id: string;
|
|
18
|
+
static fromProto(proto: any): DeleteMeetingBotRequest;
|
|
19
|
+
constructor(kwargs?: i.DeleteMeetingBotRequestInterface);
|
|
20
|
+
toApiJson(): object;
|
|
21
|
+
}
|
|
22
|
+
export declare class ListMeetingBotsRequest implements i.ListMeetingBotsRequestInterface {
|
|
23
|
+
userId: string;
|
|
24
|
+
namespace: string;
|
|
25
|
+
eventId: string;
|
|
26
|
+
static fromProto(proto: any): ListMeetingBotsRequest;
|
|
27
|
+
constructor(kwargs?: i.ListMeetingBotsRequestInterface);
|
|
28
|
+
toApiJson(): object;
|
|
29
|
+
}
|
|
30
|
+
export declare class ListMeetingBotsResponse implements i.ListMeetingBotsResponseInterface {
|
|
31
|
+
meetingBots: MeetingBot[];
|
|
32
|
+
static fromProto(proto: any): ListMeetingBotsResponse;
|
|
33
|
+
constructor(kwargs?: i.ListMeetingBotsResponseInterface);
|
|
34
|
+
toApiJson(): object;
|
|
35
|
+
}
|
|
36
|
+
export declare class MeetingBot implements i.MeetingBotInterface {
|
|
37
|
+
id: string;
|
|
38
|
+
externalBotId: string;
|
|
39
|
+
namespace: string;
|
|
40
|
+
userIds: string[];
|
|
41
|
+
meetingId: string;
|
|
42
|
+
eventId: string;
|
|
43
|
+
eventUpdated: Date;
|
|
44
|
+
meetingSource: e.MeetingSource;
|
|
45
|
+
startTime: Date;
|
|
46
|
+
created: Date;
|
|
47
|
+
updated: Date;
|
|
48
|
+
deleted: Date;
|
|
49
|
+
static fromProto(proto: any): MeetingBot;
|
|
50
|
+
constructor(kwargs?: i.MeetingBotInterface);
|
|
51
|
+
toApiJson(): object;
|
|
52
|
+
}
|
|
53
|
+
export declare class UpdateMeetingBotRequest implements i.UpdateMeetingBotRequestInterface {
|
|
54
|
+
meetingBot: MeetingBot;
|
|
55
|
+
static fromProto(proto: any): UpdateMeetingBotRequest;
|
|
56
|
+
constructor(kwargs?: i.UpdateMeetingBotRequestInterface);
|
|
57
|
+
toApiJson(): object;
|
|
58
|
+
}
|
|
59
|
+
export declare class UpdateMeetingBotResponse implements i.UpdateMeetingBotResponseInterface {
|
|
60
|
+
meetingBot: MeetingBot;
|
|
61
|
+
static fromProto(proto: any): UpdateMeetingBotResponse;
|
|
62
|
+
constructor(kwargs?: i.UpdateMeetingBotResponseInterface);
|
|
63
|
+
toApiJson(): object;
|
|
64
|
+
}
|
|
@@ -3,7 +3,7 @@ import { Contact, Answers, Calendar, Host } from './shared';
|
|
|
3
3
|
import { DateRange } from './date-range';
|
|
4
4
|
import { Group, Service } from './groups-and-services';
|
|
5
5
|
import { MeetingType } 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 {
|
|
@@ -4,7 +4,7 @@ import { FieldMask } from './field-mask';
|
|
|
4
4
|
import { Group, Service } from './groups-and-services';
|
|
5
5
|
import { MeetingType } from './meeting-type';
|
|
6
6
|
import { TimeRange, Calendar, Preferences, HostUser, Contact, PagedRequestOptions, PagedResponseMetadata, Attendee, Answers, Attachment } from './shared';
|
|
7
|
-
import { TimeZone } from './';
|
|
7
|
+
import { TimeZone } from './datetime';
|
|
8
8
|
import * as e from '../enums';
|
|
9
9
|
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
10
10
|
export declare class BuildHostIdRequestApplicationContextPropertiesEntry implements i.BuildHostIdRequestApplicationContextPropertiesEntryInterface {
|
|
@@ -557,3 +557,16 @@ export declare class WeekdayAvailability implements i.WeekdayAvailabilityInterfa
|
|
|
557
557
|
constructor(kwargs?: i.WeekdayAvailabilityInterface);
|
|
558
558
|
toApiJson(): object;
|
|
559
559
|
}
|
|
560
|
+
export declare class GetEntityAssociationsRequest implements i.GetEntityAssociationsRequestInterface {
|
|
561
|
+
entityId: string;
|
|
562
|
+
static fromProto(proto: any): GetEntityAssociationsRequest;
|
|
563
|
+
constructor(kwargs?: i.GetEntityAssociationsRequestInterface);
|
|
564
|
+
toApiJson(): object;
|
|
565
|
+
}
|
|
566
|
+
export declare class GetEntityAssociationsResponse implements i.GetEntityAssociationsResponseInterface {
|
|
567
|
+
services: string[];
|
|
568
|
+
groups: string[];
|
|
569
|
+
static fromProto(proto: any): GetEntityAssociationsResponse;
|
|
570
|
+
constructor(kwargs?: i.ListServicesResponseInterface);
|
|
571
|
+
toApiJson(): object;
|
|
572
|
+
}
|
|
@@ -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>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Observable } from "rxjs";
|
|
2
2
|
import { CreateCalendarRequestInterface, CreateCalendarResponse, DayOfWeek, GetGroupResponse, GetServiceResponse, HostBookMeetingRequestInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponse, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, MeetingHostApiService, PagedRequestOptionsInterface, SendMeetingRequestEmailRequestInterface, TimeRangeInterface, TimeZoneInterface, WeekdayAvailability, Contact } from "../_internal";
|
|
3
3
|
import { BookMeetingResponse } from '../guest';
|
|
4
|
-
import { ApplicationContextPropertiesSet, AvailabilityRule, Calendar, Group, HostUrlMap, Meeting, MeetingMetadata, MeetingType, PagedResponse, Preferences, Service } from "../shared";
|
|
4
|
+
import { ApplicationContextPropertiesSet, AvailabilityRule, Calendar, EntityAssociations, Group, HostUrlMap, Meeting, MeetingMetadata, MeetingType, PagedResponse, Preferences, Service } from "../shared";
|
|
5
5
|
import { HostUser } from "../shared/host-user";
|
|
6
6
|
import { HttpResponse } from "@angular/common/http";
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
@@ -192,6 +192,9 @@ export declare class HostService {
|
|
|
192
192
|
slugIdentifier: string;
|
|
193
193
|
category: string;
|
|
194
194
|
}): Observable<boolean>;
|
|
195
|
+
getEntityAssociations(req: {
|
|
196
|
+
entityId: string;
|
|
197
|
+
}): Observable<EntityAssociations>;
|
|
195
198
|
static ɵfac: i0.ɵɵFactoryDeclaration<HostService, never>;
|
|
196
199
|
static ɵprov: i0.ɵɵInjectableDeclaration<HostService>;
|
|
197
200
|
}
|
package/lib/index.d.ts
CHANGED
|
@@ -5,5 +5,5 @@ export { HostService } from './host/host.service';
|
|
|
5
5
|
export { addMetadataToBookingLink } from './host/url';
|
|
6
6
|
export { MeetingSource, MeetingSourceStatus, DayOfWeek, FormFieldType, CalendarType, MeetingLocationType, } from './_internal/enums/index';
|
|
7
7
|
export { MeetingSourceQuery, MeetingSourceInfo, MeetingSourceListResponse, Contact, WeekdayAvailability, CreateCalendarRequest, CreateCalendarResponse, } from './_internal/objects/index';
|
|
8
|
-
export { Host, TimeSpan, PagedResponse, Meeting, MeetingType, Attendee, AvailabilityRule, Calendar, HostUrlMap, Preferences, Duration, MeetingTypeForm, MeetingTypeFormField, MeetingForm, MeetingFormAnswer, MeetingMetadata, WellKnownMeetingMetadataKeys, WellKnownFormFieldIds, meetingSchedulerIdToMetadataKey, durationFromString, durationToString, durationStringToMinutes, newBusinessCenterApplicationContextProperties, newSalesCenterApplicationContextProperties, newPartnerCenterApplicationContextProperties, ApplicationContextPropertiesSet, BusinessCenterApplicationContextProperties, SalesCenterApplicationContextProperties, PartnerCenterApplicationContextProperties, KnownCalendarApplicationContextKeys, KnownCalendarExternalIntegrations, HostUser, Group, Service, EventGroupAndServiceAssociations, MeetingSourceOrigin, } from './shared/index';
|
|
8
|
+
export { Host, TimeSpan, PagedResponse, Meeting, MeetingType, Attendee, AvailabilityRule, Calendar, HostUrlMap, Preferences, Duration, MeetingTypeForm, MeetingTypeFormField, MeetingForm, MeetingFormAnswer, MeetingMetadata, WellKnownMeetingMetadataKeys, WellKnownFormFieldIds, meetingSchedulerIdToMetadataKey, durationFromString, durationToString, durationStringToMinutes, newBusinessCenterApplicationContextProperties, newSalesCenterApplicationContextProperties, newPartnerCenterApplicationContextProperties, ApplicationContextPropertiesSet, BusinessCenterApplicationContextProperties, SalesCenterApplicationContextProperties, PartnerCenterApplicationContextProperties, KnownCalendarApplicationContextKeys, KnownCalendarExternalIntegrations, HostUser, Group, Service, EventGroupAndServiceAssociations, MeetingSourceOrigin, EntityAssociations, } from './shared/index';
|
|
9
9
|
export { TimeRangeInterface as TimeRange, TimeOfDayInterface as TimeOfDay, TimeZoneInterface as TimeZone, ListBookedMeetingsRequestFiltersInterface as ListBookedMeetingsRequestFilters, ListAvailabilityRequestFiltersInterface as ListAvailabilityRequestFilters, PagedRequestOptionsInterface as PagedRequestOptions, DateRangeInterface as DateRange, CreateCalendarRequestInterface, CreateCalendarResponseInterface, UpdateCalendarRequestInterface, AttachmentInterface, GoogleMeetMeetingAttendeeInterface, IsCalendarConfiguredRequestInterface, SendMeetingRequestEmailRequestInterface, } from './_internal/interfaces/index';
|
|
@@ -33,6 +33,10 @@ export interface Service {
|
|
|
33
33
|
hexColor?: string;
|
|
34
34
|
bookingUrl?: string;
|
|
35
35
|
}
|
|
36
|
+
export interface EntityAssociations {
|
|
37
|
+
services?: string[];
|
|
38
|
+
groups?: string[];
|
|
39
|
+
}
|
|
36
40
|
export declare function GroupTypeToAPi(req: {
|
|
37
41
|
group: Partial<Group>;
|
|
38
42
|
}): GroupInterface;
|