@bigfootai/bigfoot-types 2.7.0 → 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.
Files changed (2) hide show
  1. package/model.ts +10 -2
  2. 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
- businessObjectIds?: string[]; // Attachments
565
+ attachments?: Attachment[];
558
566
 
559
567
  constructor(
560
568
  provider: string,
@@ -565,7 +573,7 @@ export class Event extends BusinessObject {
565
573
  status: EventStatus,
566
574
  location: string,
567
575
  startDate: number,
568
- organizedBy: Person
576
+ organizedBy: PersonReference
569
577
  ) {
570
578
  super(
571
579
  provider,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "2.7.0",
4
+ "version": "2.7.2",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",