@vendasta/meetings 0.92.6 → 0.92.8
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/interfaces/meeting-guest.interface.mjs +1 -1
- package/esm2020/lib/_internal/meeting-host.api.service.mjs +12 -2
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +10 -1
- package/esm2020/lib/host/host.service.mjs +7 -1
- package/fesm2015/vendasta-meetings.mjs +25 -0
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +25 -0
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +3 -0
- package/lib/_internal/meeting-host.api.service.d.ts +4 -2
- package/lib/_internal/objects/meeting-guest.d.ts +3 -0
- package/lib/host/host.service.d.ts +11 -1
- package/package.json +1 -1
|
@@ -31,6 +31,7 @@ export interface GetCalendarResponseInterface {
|
|
|
31
31
|
export interface GetGroupRequestInterface {
|
|
32
32
|
groupId?: string;
|
|
33
33
|
slug?: string;
|
|
34
|
+
hostId?: string;
|
|
34
35
|
}
|
|
35
36
|
export interface GetGroupResponseInterface {
|
|
36
37
|
group?: GroupInterface;
|
|
@@ -51,6 +52,7 @@ export interface GetMeetingTypeResponseInterface {
|
|
|
51
52
|
export interface GetServiceRequestInterface {
|
|
52
53
|
serviceId?: string;
|
|
53
54
|
slug?: string;
|
|
55
|
+
hostId?: string;
|
|
54
56
|
}
|
|
55
57
|
export interface GetServiceResponseInterface {
|
|
56
58
|
service?: ServiceInterface;
|
|
@@ -69,6 +71,7 @@ export interface GuestGetBookedMeetingResponseInterface {
|
|
|
69
71
|
endTime?: Date;
|
|
70
72
|
timeZone?: TimeZoneInterface;
|
|
71
73
|
meetingTypeId?: string;
|
|
74
|
+
location?: string;
|
|
72
75
|
}
|
|
73
76
|
export interface GuestIsHostConfiguredRequestInterface {
|
|
74
77
|
hostId?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BuildHostIdRequest, BuildHostIdResponse, CalendarMigrationResponse, CancelMeetingRequest, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateGroupRequest, CreateGroupResponse, CreateMeetingTypeRequest, CreateMeetingTypeResponse, CreateServiceRequest, CreateServiceResponse, DeleteAvailabilityRequest, DeleteGroupRequest, DeleteMeetingTypeRequest, DeleteServiceRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, 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, RescheduleMeetingRequest, SendMeetingRequestEmailRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateGroupRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, UpdateServiceRequest } from './objects/';
|
|
2
|
-
import { BuildHostIdRequestInterface, CancelMeetingRequestInterface, CreateAvailabilityRequestInterface, CreateCalendarRequestInterface, CreateDefaultMeetingTypesRequestInterface, CreateGroupRequestInterface, CreateMeetingTypeRequestInterface, CreateServiceRequestInterface, DeleteAvailabilityRequestInterface, DeleteGroupRequestInterface, DeleteMeetingTypeRequestInterface, DeleteServiceRequestInterface, DoesCalendarExistRequestInterface, EnsureGroupCalendarsExistRequestInterface, EnsurePersonalCalendarExistsRequestInterface, GetHostMeetingRequestInterface, GetHostPreferencesRequestInterface, GetHostsForCalendarRequestInterface, GetMeetingTypesForCalendarsRequestInterface, HostBookMeetingRequestInterface, HostGetCalendarRequestInterface, HostGetMeetingTypeRequestInterface, HostListMeetingTypesRequestInterface, IsCalendarConfiguredRequestInterface, IsHostConfiguredRequestInterface, ListAvailabilityRequestInterface, ListBookedMeetingsRequestInterface, ListGroupsRequestInterface, ListServicesRequestInterface, RescheduleMeetingRequestInterface, SendMeetingRequestEmailRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateGroupRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, UpdateServiceRequestInterface } from './interfaces/';
|
|
1
|
+
import { BuildHostIdRequest, BuildHostIdResponse, CalendarMigrationResponse, CancelMeetingRequest, 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 { BuildHostIdRequestInterface, CancelMeetingRequestInterface, 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
3
|
import { HttpResponse } from '@angular/common/http';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -48,6 +48,8 @@ export declare class MeetingHostApiService {
|
|
|
48
48
|
deleteService(r: DeleteServiceRequest | DeleteServiceRequestInterface): Observable<HttpResponse<null>>;
|
|
49
49
|
listServices(r: ListServicesRequest | ListServicesRequestInterface): Observable<ListServicesResponse>;
|
|
50
50
|
calendarMigration(): Observable<CalendarMigrationResponse>;
|
|
51
|
+
getGroup(r: GetGroupRequest | GetGroupRequestInterface): Observable<GetGroupResponse>;
|
|
52
|
+
getService(r: GetServiceRequest | GetServiceRequestInterface): Observable<GetServiceResponse>;
|
|
51
53
|
static ɵfac: i0.ɵɵFactoryDeclaration<MeetingHostApiService, never>;
|
|
52
54
|
static ɵprov: i0.ɵɵInjectableDeclaration<MeetingHostApiService>;
|
|
53
55
|
}
|
|
@@ -45,6 +45,7 @@ export declare class GetCalendarResponse implements i.GetCalendarResponseInterfa
|
|
|
45
45
|
export declare class GetGroupRequest implements i.GetGroupRequestInterface {
|
|
46
46
|
groupId: string;
|
|
47
47
|
slug: string;
|
|
48
|
+
hostId: string;
|
|
48
49
|
static fromProto(proto: any): GetGroupRequest;
|
|
49
50
|
constructor(kwargs?: i.GetGroupRequestInterface);
|
|
50
51
|
toApiJson(): object;
|
|
@@ -83,6 +84,7 @@ export declare class GetMeetingTypeResponse implements i.GetMeetingTypeResponseI
|
|
|
83
84
|
export declare class GetServiceRequest implements i.GetServiceRequestInterface {
|
|
84
85
|
serviceId: string;
|
|
85
86
|
slug: string;
|
|
87
|
+
hostId: string;
|
|
86
88
|
static fromProto(proto: any): GetServiceRequest;
|
|
87
89
|
constructor(kwargs?: i.GetServiceRequestInterface);
|
|
88
90
|
toApiJson(): object;
|
|
@@ -113,6 +115,7 @@ export declare class GuestGetBookedMeetingResponse implements i.GuestGetBookedMe
|
|
|
113
115
|
endTime: Date;
|
|
114
116
|
timeZone: TimeZone;
|
|
115
117
|
meetingTypeId: string;
|
|
118
|
+
location: string;
|
|
116
119
|
static fromProto(proto: any): GuestGetBookedMeetingResponse;
|
|
117
120
|
constructor(kwargs?: i.GuestGetBookedMeetingResponseInterface);
|
|
118
121
|
toApiJson(): object;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
-
import { CreateCalendarRequestInterface, CreateCalendarResponse, DayOfWeek, HostBookMeetingRequestInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponse, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, MeetingHostApiService, PagedRequestOptionsInterface, SendMeetingRequestEmailRequestInterface, TimeRangeInterface, TimeZoneInterface, WeekdayAvailability } from '../_internal';
|
|
2
|
+
import { CreateCalendarRequestInterface, CreateCalendarResponse, DayOfWeek, GetGroupResponse, GetServiceResponse, HostBookMeetingRequestInterface, IsCalendarConfiguredRequestInterface, IsCalendarConfiguredResponse, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, MeetingHostApiService, PagedRequestOptionsInterface, SendMeetingRequestEmailRequestInterface, TimeRangeInterface, TimeZoneInterface, WeekdayAvailability } from '../_internal';
|
|
3
3
|
import { ApplicationContextPropertiesSet, AvailabilityRule, Calendar, Group, HostUrlMap, Meeting, MeetingMetadata, MeetingType, PagedResponse, Preferences, Service } from '../shared';
|
|
4
4
|
import { HostUser } from '../shared/host-user';
|
|
5
5
|
import { HttpResponse } from "@angular/common/http";
|
|
@@ -164,6 +164,16 @@ export declare class HostService {
|
|
|
164
164
|
listGroups(req: {
|
|
165
165
|
hostId: string;
|
|
166
166
|
}): Observable<Group[]>;
|
|
167
|
+
getGroup(req: {
|
|
168
|
+
groupId: string;
|
|
169
|
+
slug: string;
|
|
170
|
+
hostId: string;
|
|
171
|
+
}): Observable<GetGroupResponse>;
|
|
172
|
+
getService(req: {
|
|
173
|
+
serviceId: string;
|
|
174
|
+
slug: string;
|
|
175
|
+
hostId: string;
|
|
176
|
+
}): Observable<GetServiceResponse>;
|
|
167
177
|
static ɵfac: i0.ɵɵFactoryDeclaration<HostService, never>;
|
|
168
178
|
static ɵprov: i0.ɵɵInjectableDeclaration<HostService>;
|
|
169
179
|
}
|