@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.
@@ -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
- calendarId?: string;
166
+ calendarIds?: string[];
166
167
  }
167
168
  export interface IsHostConfiguredRequestInterface {
168
169
  hostId?: string;
@@ -27,4 +27,5 @@ export interface MeetingTypeInterface {
27
27
  location?: string;
28
28
  isClientSiteMeeting?: boolean;
29
29
  locationGuidelines?: string;
30
+ isClientChoice?: boolean;
30
31
  }
@@ -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
- calendarId: string;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/meetings",
3
- "version": "0.81.1",
3
+ "version": "0.82.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"