@vendasta/meetings 0.95.5 → 0.96.1
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/google-meet.api.service.mjs +7 -8
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- 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 +7 -8
- package/esm2020/lib/_internal/meeting-guest.api.service.mjs +7 -8
- package/esm2020/lib/_internal/meeting-host.api.service.mjs +10 -11
- package/esm2020/lib/_internal/meeting-source-api.api.service.mjs +7 -8
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +8 -2
- package/esm2020/lib/_internal/objects/meeting-host.mjs +55 -61
- package/esm2020/lib/_internal/objects/shared.mjs +2 -3
- package/esm2020/lib/_internal/zoom.api.service.mjs +7 -8
- package/fesm2015/vendasta-meetings.mjs +224 -225
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +224 -225
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/google-meet.api.service.d.ts +2 -5
- package/lib/_internal/interfaces/index.d.ts +2 -2
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +3 -1
- package/lib/_internal/interfaces/meeting-host.interface.d.ts +14 -13
- package/lib/_internal/interfaces/shared.interface.d.ts +1 -2
- package/lib/_internal/meeting-bot-api.api.service.d.ts +3 -5
- package/lib/_internal/meeting-guest.api.service.d.ts +3 -5
- package/lib/_internal/meeting-host.api.service.d.ts +6 -8
- package/lib/_internal/meeting-source-api.api.service.d.ts +2 -5
- package/lib/_internal/objects/index.d.ts +1 -1
- package/lib/_internal/objects/meeting-guest.d.ts +3 -1
- package/lib/_internal/objects/meeting-host.d.ts +27 -27
- package/lib/_internal/objects/shared.d.ts +1 -2
- package/lib/_internal/zoom.api.service.d.ts +2 -5
- package/package.json +1 -1
|
@@ -1,14 +1,11 @@
|
|
|
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';
|
|
5
3
|
import { Observable } from 'rxjs';
|
|
6
4
|
import * as i0 from "@angular/core";
|
|
7
5
|
export declare class GoogleMeetApiService {
|
|
8
|
-
private
|
|
9
|
-
private
|
|
6
|
+
private readonly hostService;
|
|
7
|
+
private readonly http;
|
|
10
8
|
private _host;
|
|
11
|
-
constructor(http: HttpClient, hostService: HostService);
|
|
12
9
|
private apiOptions;
|
|
13
10
|
createMeeting(r: GoogleMeetCreateMeetingRequest | GoogleMeetCreateMeetingRequestInterface): Observable<GoogleMeetCreateMeetingResponse>;
|
|
14
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoogleMeetApiService, never>;
|
|
@@ -1,13 +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';
|
|
5
4
|
export { AnswerInterface, AnswersInterface, CalendarApplicationContextEntryInterface, AttachmentInterface, AttendeeInterface, CalendarInterface, ContactInterface, HostInterface, HostUserInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, PreferencesInterface, TimeRangeInterface, } from './shared.interface';
|
|
6
5
|
export { FieldInterface, FormInterface, MeetingTypeInterface, } from './meeting-type.interface';
|
|
7
6
|
export { DateRangeInterface, } from './date-range.interface';
|
|
8
7
|
export { EventGroupAndServiceAssociationsInterface, GroupInterface, ServiceInterface, } from './groups-and-services.interface';
|
|
9
8
|
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';
|
|
10
9
|
export { FieldMaskInterface, } from './field-mask.interface';
|
|
11
|
-
export { BuildHostIdRequestApplicationContextPropertiesEntryInterface, IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface,
|
|
10
|
+
export { EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, BuildHostIdRequestApplicationContextPropertiesEntryInterface, IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface, 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, GetEntityAssociationRequestInterface, GetEntityAssociationResponseInterface, 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, MeetingMetadataEntryInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
|
|
12
11
|
export { CreateMeetingBotRequestInterface, CreateMeetingBotResponseInterface, DeleteMeetingBotRequestInterface, ListMeetingBotsRequestInterface, ListMeetingBotsResponseInterface, MeetingBotInterface, UpdateMeetingBotRequestInterface, UpdateMeetingBotResponseInterface, } from './meeting-bot.interface';
|
|
12
|
+
export { TimeOfDayInterface, } from './timeofday.interface';
|
|
13
13
|
export { DateTimeInterface, TimeZoneInterface, } from './datetime.interface';
|
|
@@ -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 './';
|
|
6
6
|
import * as e from '../enums';
|
|
7
7
|
export interface BookMeetingRequestInterface {
|
|
8
8
|
hostId?: string;
|
|
@@ -36,6 +36,7 @@ export interface GetGroupRequestInterface {
|
|
|
36
36
|
}
|
|
37
37
|
export interface GetGroupResponseInterface {
|
|
38
38
|
group?: GroupInterface;
|
|
39
|
+
businessDisplayLogoUrl?: string;
|
|
39
40
|
}
|
|
40
41
|
export interface GetHostRequestInterface {
|
|
41
42
|
hostId?: string;
|
|
@@ -57,6 +58,7 @@ export interface GetServiceRequestInterface {
|
|
|
57
58
|
}
|
|
58
59
|
export interface GetServiceResponseInterface {
|
|
59
60
|
service?: ServiceInterface;
|
|
61
|
+
businessDisplayLogoUrl?: string;
|
|
60
62
|
}
|
|
61
63
|
export interface GuestCancelMeetingRequestInterface {
|
|
62
64
|
meetingId?: 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 } 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 './';
|
|
7
7
|
import * as e from '../enums';
|
|
8
|
-
export interface
|
|
8
|
+
export interface EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface {
|
|
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 IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface {
|
|
17
17
|
key?: string;
|
|
18
18
|
value?: string;
|
|
19
19
|
}
|
|
@@ -133,6 +133,13 @@ export interface ListAvailabilityRequestFiltersInterface {
|
|
|
133
133
|
hostId?: string;
|
|
134
134
|
meetingTypeId?: string;
|
|
135
135
|
}
|
|
136
|
+
export interface GetEntityAssociationRequestInterface {
|
|
137
|
+
entityId?: string;
|
|
138
|
+
}
|
|
139
|
+
export interface GetEntityAssociationResponseInterface {
|
|
140
|
+
groups?: string[];
|
|
141
|
+
services?: string[];
|
|
142
|
+
}
|
|
136
143
|
export interface GetHostMeetingRequestInterface {
|
|
137
144
|
meetingId?: string;
|
|
138
145
|
location?: string;
|
|
@@ -255,15 +262,16 @@ export interface MeetingInterface {
|
|
|
255
262
|
};
|
|
256
263
|
attachments?: AttachmentInterface[];
|
|
257
264
|
location?: string;
|
|
265
|
+
calendarId?: string;
|
|
258
266
|
}
|
|
259
267
|
export interface MeetingTypeListInterface {
|
|
260
268
|
meetingTypes?: MeetingTypeInterface[];
|
|
261
269
|
}
|
|
262
|
-
export interface
|
|
270
|
+
export interface MeetingMetadataEntryInterface {
|
|
263
271
|
key?: string;
|
|
264
272
|
value?: string;
|
|
265
273
|
}
|
|
266
|
-
export interface
|
|
274
|
+
export interface UpdateMeetingMetadataRequestMetadataEntryInterface {
|
|
267
275
|
key?: string;
|
|
268
276
|
value?: string;
|
|
269
277
|
}
|
|
@@ -324,10 +332,3 @@ export interface WeekdayAvailabilityInterface {
|
|
|
324
332
|
day?: e.DayOfWeek;
|
|
325
333
|
timeSlots?: TimeRangeInterface[];
|
|
326
334
|
}
|
|
327
|
-
export interface GetEntityAssociationsRequestInterface {
|
|
328
|
-
entityId?: string;
|
|
329
|
-
}
|
|
330
|
-
export interface GetEntityAssociationsResponseInterface {
|
|
331
|
-
services?: string[];
|
|
332
|
-
groups?: string[];
|
|
333
|
-
}
|
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
import { CreateMeetingBotRequest, CreateMeetingBotResponse, DeleteMeetingBotRequest, ListMeetingBotsRequest, ListMeetingBotsResponse, UpdateMeetingBotRequest, UpdateMeetingBotResponse } from './objects/';
|
|
2
2
|
import { CreateMeetingBotRequestInterface, DeleteMeetingBotRequestInterface, ListMeetingBotsRequestInterface, UpdateMeetingBotRequestInterface } from './interfaces/';
|
|
3
|
-
import {
|
|
4
|
-
import { HostService } from '../_generated/host.service';
|
|
3
|
+
import { HttpResponse } from '@angular/common/http';
|
|
5
4
|
import { Observable } from 'rxjs';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
export declare class MeetingBotAPIApiService {
|
|
8
|
-
private
|
|
9
|
-
private
|
|
7
|
+
private readonly hostService;
|
|
8
|
+
private readonly http;
|
|
10
9
|
private _host;
|
|
11
|
-
constructor(http: HttpClient, hostService: HostService);
|
|
12
10
|
private apiOptions;
|
|
13
11
|
createMeetingBot(r: CreateMeetingBotRequest | CreateMeetingBotRequestInterface): Observable<CreateMeetingBotResponse>;
|
|
14
12
|
updateMeetingBot(r: UpdateMeetingBotRequest | UpdateMeetingBotRequestInterface): Observable<UpdateMeetingBotResponse>;
|
|
@@ -1,14 +1,12 @@
|
|
|
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 {
|
|
4
|
-
import { HostService } from '../_generated/host.service';
|
|
3
|
+
import { HttpResponse } from '@angular/common/http';
|
|
5
4
|
import { Observable } from 'rxjs';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
export declare class MeetingGuestApiService {
|
|
8
|
-
private
|
|
9
|
-
private
|
|
7
|
+
private readonly hostService;
|
|
8
|
+
private readonly http;
|
|
10
9
|
private _host;
|
|
11
|
-
constructor(http: HttpClient, hostService: HostService);
|
|
12
10
|
private apiOptions;
|
|
13
11
|
listMeetingTypes(r: ListMeetingTypesRequest | ListMeetingTypesRequestInterface): Observable<ListMeetingTypesResponse>;
|
|
14
12
|
getMeetingType(r: GetMeetingTypeRequest | GetMeetingTypeRequestInterface): Observable<GetMeetingTypeResponse>;
|
|
@@ -1,14 +1,12 @@
|
|
|
1
|
-
import { BookMeetingRequest, BookMeetingResponse, BuildHostIdRequest, BuildHostIdResponse, CalendarMigrationResponse, CancelMeetingRequest, 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
|
|
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
|
|
3
|
-
import {
|
|
4
|
-
import { HostService } from '../_generated/host.service';
|
|
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, GetEntityAssociationRequest, GetEntityAssociationResponse, 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, GetEntityAssociationRequestInterface, 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';
|
|
5
4
|
import { Observable } from 'rxjs';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
export declare class MeetingHostApiService {
|
|
8
|
-
private
|
|
9
|
-
private
|
|
7
|
+
private readonly hostService;
|
|
8
|
+
private readonly http;
|
|
10
9
|
private _host;
|
|
11
|
-
constructor(http: HttpClient, hostService: HostService);
|
|
12
10
|
private apiOptions;
|
|
13
11
|
buildHostId(r: BuildHostIdRequest | BuildHostIdRequestInterface): Observable<BuildHostIdResponse>;
|
|
14
12
|
doesCalendarExist(r: DoesCalendarExistRequest | DoesCalendarExistRequestInterface): Observable<DoesCalendarExistResponse>;
|
|
@@ -54,7 +52,7 @@ export declare class MeetingHostApiService {
|
|
|
54
52
|
getService(r: GetServiceRequest | GetServiceRequestInterface): Observable<GetServiceResponse>;
|
|
55
53
|
checkGroupOrServiceSlugExist(r: CheckGroupOrServiceSlugExistRequest | CheckGroupOrServiceSlugExistRequestInterface): Observable<CheckGroupOrServiceSlugExistResponse>;
|
|
56
54
|
hostBookMeeting(r: BookMeetingRequest | BookMeetingRequestInterface): Observable<BookMeetingResponse>;
|
|
57
|
-
getEntityAssociations(r:
|
|
55
|
+
getEntityAssociations(r: GetEntityAssociationRequest | GetEntityAssociationRequestInterface): Observable<GetEntityAssociationResponse>;
|
|
58
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<MeetingHostApiService, never>;
|
|
59
57
|
static ɵprov: i0.ɵɵInjectableDeclaration<MeetingHostApiService>;
|
|
60
58
|
}
|
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
import { MeetingSourceListRequest, MeetingSourceListResponse } from './objects/';
|
|
2
2
|
import { MeetingSourceListRequestInterface } from './interfaces/';
|
|
3
|
-
import { HttpClient } from '@angular/common/http';
|
|
4
|
-
import { HostService } from '../_generated/host.service';
|
|
5
3
|
import { Observable } from 'rxjs';
|
|
6
4
|
import * as i0 from "@angular/core";
|
|
7
5
|
export declare class MeetingSourceAPIApiService {
|
|
8
|
-
private
|
|
9
|
-
private
|
|
6
|
+
private readonly hostService;
|
|
7
|
+
private readonly http;
|
|
10
8
|
private _host;
|
|
11
|
-
constructor(http: HttpClient, hostService: HostService);
|
|
12
9
|
private apiOptions;
|
|
13
10
|
list(r: MeetingSourceListRequest | MeetingSourceListRequestInterface): Observable<MeetingSourceListResponse>;
|
|
14
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<MeetingSourceAPIApiService, never>;
|
|
@@ -7,7 +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,
|
|
10
|
+
export { EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, BuildHostIdRequestApplicationContextPropertiesEntry, IsCalendarConfiguredRequestApplicationContextPropertiesEntry, 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, GetEntityAssociationRequest, GetEntityAssociationResponse, 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, MeetingMetadataEntry, UpdateMeetingMetadataRequestMetadataEntry, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest, WeekdayAvailability, } from './meeting-host';
|
|
11
11
|
export { CreateMeetingBotRequest, CreateMeetingBotResponse, DeleteMeetingBotRequest, ListMeetingBotsRequest, ListMeetingBotsResponse, MeetingBot, UpdateMeetingBotRequest, UpdateMeetingBotResponse, } from './meeting-bot';
|
|
12
12
|
export { TimeOfDay, } from './timeofday';
|
|
13
13
|
export { DateTime, TimeZone, } from './datetime';
|
|
@@ -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 './';
|
|
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 {
|
|
@@ -53,6 +53,7 @@ export declare class GetGroupRequest implements i.GetGroupRequestInterface {
|
|
|
53
53
|
}
|
|
54
54
|
export declare class GetGroupResponse implements i.GetGroupResponseInterface {
|
|
55
55
|
group: Group;
|
|
56
|
+
businessDisplayLogoUrl: string;
|
|
56
57
|
static fromProto(proto: any): GetGroupResponse;
|
|
57
58
|
constructor(kwargs?: i.GetGroupResponseInterface);
|
|
58
59
|
toApiJson(): object;
|
|
@@ -92,6 +93,7 @@ export declare class GetServiceRequest implements i.GetServiceRequestInterface {
|
|
|
92
93
|
}
|
|
93
94
|
export declare class GetServiceResponse implements i.GetServiceResponseInterface {
|
|
94
95
|
service: Service;
|
|
96
|
+
businessDisplayLogoUrl: string;
|
|
95
97
|
static fromProto(proto: any): GetServiceResponse;
|
|
96
98
|
constructor(kwargs?: i.GetServiceResponseInterface);
|
|
97
99
|
toApiJson(): object;
|
|
@@ -4,9 +4,16 @@ 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 './';
|
|
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
|
+
}
|
|
10
17
|
export declare class BuildHostIdRequestApplicationContextPropertiesEntry implements i.BuildHostIdRequestApplicationContextPropertiesEntryInterface {
|
|
11
18
|
key: string;
|
|
12
19
|
value: string;
|
|
@@ -21,13 +28,6 @@ export declare class IsCalendarConfiguredRequestApplicationContextPropertiesEntr
|
|
|
21
28
|
constructor(kwargs?: i.IsCalendarConfiguredRequestApplicationContextPropertiesEntryInterface);
|
|
22
29
|
toApiJson(): object;
|
|
23
30
|
}
|
|
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;
|
|
@@ -237,6 +237,19 @@ export declare class ListAvailabilityRequestFilters implements i.ListAvailabilit
|
|
|
237
237
|
constructor(kwargs?: i.ListAvailabilityRequestFiltersInterface);
|
|
238
238
|
toApiJson(): object;
|
|
239
239
|
}
|
|
240
|
+
export declare class GetEntityAssociationRequest implements i.GetEntityAssociationRequestInterface {
|
|
241
|
+
entityId: string;
|
|
242
|
+
static fromProto(proto: any): GetEntityAssociationRequest;
|
|
243
|
+
constructor(kwargs?: i.GetEntityAssociationRequestInterface);
|
|
244
|
+
toApiJson(): object;
|
|
245
|
+
}
|
|
246
|
+
export declare class GetEntityAssociationResponse implements i.GetEntityAssociationResponseInterface {
|
|
247
|
+
groups: string[];
|
|
248
|
+
services: string[];
|
|
249
|
+
static fromProto(proto: any): GetEntityAssociationResponse;
|
|
250
|
+
constructor(kwargs?: i.GetEntityAssociationResponseInterface);
|
|
251
|
+
toApiJson(): object;
|
|
252
|
+
}
|
|
240
253
|
export declare class GetHostMeetingRequest implements i.GetHostMeetingRequestInterface {
|
|
241
254
|
meetingId: string;
|
|
242
255
|
location: string;
|
|
@@ -454,18 +467,18 @@ export declare class MeetingTypeList implements i.MeetingTypeListInterface {
|
|
|
454
467
|
constructor(kwargs?: i.MeetingTypeListInterface);
|
|
455
468
|
toApiJson(): object;
|
|
456
469
|
}
|
|
457
|
-
export declare class
|
|
470
|
+
export declare class MeetingMetadataEntry implements i.MeetingMetadataEntryInterface {
|
|
458
471
|
key: string;
|
|
459
472
|
value: string;
|
|
460
|
-
static fromProto(proto: any):
|
|
461
|
-
constructor(kwargs?: i.
|
|
473
|
+
static fromProto(proto: any): MeetingMetadataEntry;
|
|
474
|
+
constructor(kwargs?: i.MeetingMetadataEntryInterface);
|
|
462
475
|
toApiJson(): object;
|
|
463
476
|
}
|
|
464
|
-
export declare class
|
|
477
|
+
export declare class UpdateMeetingMetadataRequestMetadataEntry implements i.UpdateMeetingMetadataRequestMetadataEntryInterface {
|
|
465
478
|
key: string;
|
|
466
479
|
value: string;
|
|
467
|
-
static fromProto(proto: any):
|
|
468
|
-
constructor(kwargs?: i.
|
|
480
|
+
static fromProto(proto: any): UpdateMeetingMetadataRequestMetadataEntry;
|
|
481
|
+
constructor(kwargs?: i.UpdateMeetingMetadataRequestMetadataEntryInterface);
|
|
469
482
|
toApiJson(): object;
|
|
470
483
|
}
|
|
471
484
|
export declare class RescheduleMeetingRequest implements i.RescheduleMeetingRequestInterface {
|
|
@@ -558,16 +571,3 @@ export declare class WeekdayAvailability implements i.WeekdayAvailabilityInterfa
|
|
|
558
571
|
constructor(kwargs?: i.WeekdayAvailabilityInterface);
|
|
559
572
|
toApiJson(): object;
|
|
560
573
|
}
|
|
561
|
-
export declare class GetEntityAssociationsRequest implements i.GetEntityAssociationsRequestInterface {
|
|
562
|
-
entityId: string;
|
|
563
|
-
static fromProto(proto: any): GetEntityAssociationsRequest;
|
|
564
|
-
constructor(kwargs?: i.GetEntityAssociationsRequestInterface);
|
|
565
|
-
toApiJson(): object;
|
|
566
|
-
}
|
|
567
|
-
export declare class GetEntityAssociationsResponse implements i.GetEntityAssociationsResponseInterface {
|
|
568
|
-
services: string[];
|
|
569
|
-
groups: string[];
|
|
570
|
-
static fromProto(proto: any): GetEntityAssociationsResponse;
|
|
571
|
-
constructor(kwargs?: i.ListServicesResponseInterface);
|
|
572
|
-
toApiJson(): object;
|
|
573
|
-
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as i from '../interfaces';
|
|
2
|
-
import { TimeOfDay } from './
|
|
3
|
-
import { TimeZone } from './datetime';
|
|
2
|
+
import { TimeZone, TimeOfDay } from './';
|
|
4
3
|
import * as e from '../enums';
|
|
5
4
|
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
6
5
|
export declare class Answer implements i.AnswerInterface {
|
|
@@ -1,14 +1,11 @@
|
|
|
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';
|
|
5
3
|
import { Observable } from 'rxjs';
|
|
6
4
|
import * as i0 from "@angular/core";
|
|
7
5
|
export declare class ZoomApiService {
|
|
8
|
-
private
|
|
9
|
-
private
|
|
6
|
+
private readonly hostService;
|
|
7
|
+
private readonly http;
|
|
10
8
|
private _host;
|
|
11
|
-
constructor(http: HttpClient, hostService: HostService);
|
|
12
9
|
private apiOptions;
|
|
13
10
|
createMeeting(r: CreateZoomMeetingRequest | CreateZoomMeetingRequestInterface): Observable<CreateZoomMeetingResponse>;
|
|
14
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<ZoomApiService, never>;
|