@vendasta/meetings 1.6.6 → 1.6.7

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.
@@ -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;
@@ -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.7",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"