@vendasta/meetings 1.6.6 → 1.6.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.
@@ -169,6 +169,7 @@ export interface ListBookedMeetingsRequestFiltersInterface {
169
169
  meetingTypeIds?: string[];
170
170
  hostId?: string;
171
171
  timeSpan?: DateRangeInterface;
172
+ userIds?: string[];
172
173
  }
173
174
  export interface GetEntityAssociationRequestInterface {
174
175
  entityId?: string;
@@ -25,6 +25,7 @@ export interface AttendeeInterface {
25
25
  phoneNumber?: string;
26
26
  timeZone?: string;
27
27
  isPrimary?: boolean;
28
+ contactId?: string;
28
29
  }
29
30
  export interface CalendarInterface {
30
31
  id?: string;
@@ -288,6 +288,7 @@ export declare class ListBookedMeetingsRequestFilters implements i.ListBookedMee
288
288
  meetingTypeIds: string[];
289
289
  hostId: string;
290
290
  timeSpan: DateRange;
291
+ userIds: string[];
291
292
  static fromProto(proto: any): ListBookedMeetingsRequestFilters;
292
293
  constructor(kwargs?: i.ListBookedMeetingsRequestFiltersInterface);
293
294
  toApiJson(): object;
@@ -39,6 +39,7 @@ export declare class Attendee implements i.AttendeeInterface {
39
39
  phoneNumber: string;
40
40
  timeZone: string;
41
41
  isPrimary: boolean;
42
+ contactId: string;
42
43
  static fromProto(proto: any): Attendee;
43
44
  constructor(kwargs?: i.AttendeeInterface);
44
45
  toApiJson(): object;
@@ -8,6 +8,7 @@ export interface Attendee {
8
8
  phoneNumber: string;
9
9
  timeZone?: string;
10
10
  isPrimary: boolean;
11
+ contactId: string;
11
12
  }
12
13
  export type MeetingFormAnswer = Required<AnswerInterface>;
13
14
  export type MeetingForm = Required<Omit<AnswersInterface, "formAnswers">> & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/meetings",
3
- "version": "1.6.6",
3
+ "version": "1.6.8",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"