@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.
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/shared.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/index.mjs +1 -1
- package/esm2020/lib/_internal/objects/meeting-host.mjs +4 -1
- package/esm2020/lib/_internal/objects/shared.mjs +4 -1
- package/esm2020/lib/shared/meeting.mjs +2 -1
- package/fesm2015/vendasta-meetings.mjs +7 -0
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +7 -0
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/interfaces/meeting-host.interface.d.ts +1 -0
- package/lib/_internal/interfaces/shared.interface.d.ts +1 -0
- package/lib/_internal/objects/meeting-host.d.ts +1 -0
- package/lib/_internal/objects/shared.d.ts +1 -0
- package/lib/shared/meeting.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -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;
|
package/lib/shared/meeting.d.ts
CHANGED