@bigfootai/bigfoot-types 2.7.1 → 2.7.2
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/model.ts +9 -1
- package/package.json +1 -1
package/model.ts
CHANGED
|
@@ -541,6 +541,14 @@ export interface Calendar extends BusinessObject {
|
|
|
541
541
|
timeZone: string;
|
|
542
542
|
}
|
|
543
543
|
|
|
544
|
+
export interface Attachment {
|
|
545
|
+
externalId: string;
|
|
546
|
+
url: string;
|
|
547
|
+
iconUrl?: string;
|
|
548
|
+
mimeType?: string;
|
|
549
|
+
title?: string;
|
|
550
|
+
}
|
|
551
|
+
|
|
544
552
|
export class Event extends BusinessObject {
|
|
545
553
|
calendarId: string;
|
|
546
554
|
status: EventStatus;
|
|
@@ -554,7 +562,7 @@ export class Event extends BusinessObject {
|
|
|
554
562
|
description?: string;
|
|
555
563
|
attendees?: PersonAcceptance[];
|
|
556
564
|
conference?: Conference;
|
|
557
|
-
|
|
565
|
+
attachments?: Attachment[];
|
|
558
566
|
|
|
559
567
|
constructor(
|
|
560
568
|
provider: string,
|