@vendasta/meetings 0.81.1 → 0.82.0
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/interfaces/meeting-host.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-type.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +7 -1
- package/esm2020/lib/_internal/objects/meeting-host.mjs +6 -3
- package/esm2020/lib/_internal/objects/meeting-type.mjs +4 -1
- package/esm2020/lib/guest/guest.service.mjs +1 -1
- package/fesm2015/vendasta-meetings.mjs +14 -2
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +14 -2
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +2 -0
- package/lib/_internal/interfaces/meeting-host.interface.d.ts +2 -1
- package/lib/_internal/interfaces/meeting-type.interface.d.ts +1 -0
- package/lib/_internal/objects/meeting-guest.d.ts +2 -0
- package/lib/_internal/objects/meeting-host.d.ts +2 -1
- package/lib/_internal/objects/meeting-type.d.ts +1 -0
- package/lib/guest/guest.service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -15,6 +15,7 @@ export interface BookMeetingRequestInterface {
|
|
|
15
15
|
formAnswers?: AnswersInterface;
|
|
16
16
|
recaptchaToken?: string;
|
|
17
17
|
location?: string;
|
|
18
|
+
userId?: string;
|
|
18
19
|
}
|
|
19
20
|
export interface BookMeetingResponseInterface {
|
|
20
21
|
meetingId?: string;
|
|
@@ -71,6 +72,7 @@ export interface ListAvailableTimeSlotsRequestInterface {
|
|
|
71
72
|
meetingTypeId?: string;
|
|
72
73
|
timeSpan?: DateRangeInterface;
|
|
73
74
|
timeZone?: TimeZoneInterface;
|
|
75
|
+
userId?: string;
|
|
74
76
|
}
|
|
75
77
|
export interface ListAvailableTimeSlotsResponseInterface {
|
|
76
78
|
timeSlots?: DateRangeInterface[];
|
|
@@ -131,6 +131,7 @@ export interface HostBookMeetingRequestInterface {
|
|
|
131
131
|
timeSlot?: DateRangeInterface;
|
|
132
132
|
attendees?: ContactInterface[];
|
|
133
133
|
topic?: string;
|
|
134
|
+
userId?: string;
|
|
134
135
|
}
|
|
135
136
|
export interface HostBookMeetingResponseInterface {
|
|
136
137
|
meetingId?: string;
|
|
@@ -162,7 +163,7 @@ export interface IsCalendarConfiguredRequestInterface {
|
|
|
162
163
|
}
|
|
163
164
|
export interface IsCalendarConfiguredResponseInterface {
|
|
164
165
|
isConfigured?: boolean;
|
|
165
|
-
|
|
166
|
+
calendarIds?: string[];
|
|
166
167
|
}
|
|
167
168
|
export interface IsHostConfiguredRequestInterface {
|
|
168
169
|
hostId?: string;
|
|
@@ -17,6 +17,7 @@ export declare class BookMeetingRequest implements i.BookMeetingRequestInterface
|
|
|
17
17
|
formAnswers: Answers;
|
|
18
18
|
recaptchaToken: string;
|
|
19
19
|
location: string;
|
|
20
|
+
userId: string;
|
|
20
21
|
static fromProto(proto: any): BookMeetingRequest;
|
|
21
22
|
constructor(kwargs?: i.BookMeetingRequestInterface);
|
|
22
23
|
toApiJson(): object;
|
|
@@ -115,6 +116,7 @@ export declare class ListAvailableTimeSlotsRequest implements i.ListAvailableTim
|
|
|
115
116
|
meetingTypeId: string;
|
|
116
117
|
timeSpan: DateRange;
|
|
117
118
|
timeZone: TimeZone;
|
|
119
|
+
userId: string;
|
|
118
120
|
static fromProto(proto: any): ListAvailableTimeSlotsRequest;
|
|
119
121
|
constructor(kwargs?: i.ListAvailableTimeSlotsRequestInterface);
|
|
120
122
|
toApiJson(): object;
|
|
@@ -232,6 +232,7 @@ export declare class HostBookMeetingRequest implements i.HostBookMeetingRequestI
|
|
|
232
232
|
timeSlot: DateRange;
|
|
233
233
|
attendees: Contact[];
|
|
234
234
|
topic: string;
|
|
235
|
+
userId: string;
|
|
235
236
|
static fromProto(proto: any): HostBookMeetingRequest;
|
|
236
237
|
constructor(kwargs?: i.HostBookMeetingRequestInterface);
|
|
237
238
|
toApiJson(): object;
|
|
@@ -290,7 +291,7 @@ export declare class IsCalendarConfiguredRequest implements i.IsCalendarConfigur
|
|
|
290
291
|
}
|
|
291
292
|
export declare class IsCalendarConfiguredResponse implements i.IsCalendarConfiguredResponseInterface {
|
|
292
293
|
isConfigured: boolean;
|
|
293
|
-
|
|
294
|
+
calendarIds: string[];
|
|
294
295
|
static fromProto(proto: any): IsCalendarConfiguredResponse;
|
|
295
296
|
constructor(kwargs?: i.IsCalendarConfiguredResponseInterface);
|
|
296
297
|
toApiJson(): object;
|
|
@@ -35,6 +35,7 @@ export declare class MeetingType implements i.MeetingTypeInterface {
|
|
|
35
35
|
location: string;
|
|
36
36
|
isClientSiteMeeting: boolean;
|
|
37
37
|
locationGuidelines: string;
|
|
38
|
+
isClientChoice: boolean;
|
|
38
39
|
static fromProto(proto: any): MeetingType;
|
|
39
40
|
constructor(kwargs?: i.MeetingTypeInterface);
|
|
40
41
|
toApiJson(): object;
|
|
@@ -49,6 +49,7 @@ export declare class GuestService implements GuestServiceInterface {
|
|
|
49
49
|
meetingTypeId: string;
|
|
50
50
|
timeSpan: TimeSpan;
|
|
51
51
|
timeZone: TimeZoneInterface;
|
|
52
|
+
userId?: string;
|
|
52
53
|
}): Observable<TimeSpan[]>;
|
|
53
54
|
bookMeeting(req: {
|
|
54
55
|
hostId: string;
|
|
@@ -62,6 +63,7 @@ export declare class GuestService implements GuestServiceInterface {
|
|
|
62
63
|
formAnswers?: MeetingForm;
|
|
63
64
|
recaptchaToken: string;
|
|
64
65
|
location?: string;
|
|
66
|
+
userId?: string;
|
|
65
67
|
}): Observable<BookMeetingResponse>;
|
|
66
68
|
cancelMeeting(req: {
|
|
67
69
|
authToken: string;
|