@bigfootai/bigfoot-types 2.7.2 → 2.7.4

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 +25 -25
  2. package/package.json +1 -1
package/model.ts CHANGED
@@ -290,12 +290,12 @@ export class Tag extends Primitive {
290
290
  export class BusinessObject extends Primitive {
291
291
  provider: string; // A unique string representing the provider e.g. "salesforce", "jira", etc
292
292
  uri: string; // A uri to locate the specific instance of the business object
293
- iconUrl?: string; // The url of an icon that represents the business object
294
293
  externalId: string; // An identifier that allows us to do entity resolution
295
294
  businessObjectType: BusinessObjectType;
296
295
  externalResponse: any; // The full response from the external system that created this object
297
- document?: Document; // The business object formatted as a document for ML to ingest
298
- parentId?: string; // The business object that is the parent of this business object
296
+ iconUrl?: string | null; // The url of an icon that represents the business object
297
+ document?: Document | null; // The business object formatted as a document for ML to ingest
298
+ parentId?: string | null; // The business object that is the parent of this business object
299
299
 
300
300
  constructor(
301
301
  provider: string,
@@ -484,18 +484,18 @@ export interface Transcription {
484
484
 
485
485
  export interface ConferenceEntrypoint {
486
486
  entryPointType: string;
487
- uri?: string;
488
- label?: string;
489
- pin?: string;
490
- accessCode?: string;
491
- meetingCode?: string;
492
- passcode?: string;
493
- password?: string;
487
+ uri?: string | null;
488
+ label?: string | null;
489
+ pin?: string | null;
490
+ accessCode?: string | null;
491
+ meetingCode?: string | null;
492
+ passcode?: string | null;
493
+ password?: string | null;
494
494
  }
495
495
 
496
496
  export class Conference extends BusinessObject {
497
497
  entryPoints: ConferenceEntrypoint[];
498
- transcription?: Transcription;
498
+ transcription?: Transcription | null;
499
499
 
500
500
  constructor(
501
501
  provider: string,
@@ -536,17 +536,17 @@ export interface PersonAcceptance extends PersonReference {
536
536
  }
537
537
 
538
538
  export interface Calendar extends BusinessObject {
539
- description?: string;
540
- location?: string;
541
539
  timeZone: string;
540
+ description?: string | null;
541
+ location?: string | null;
542
542
  }
543
543
 
544
544
  export interface Attachment {
545
545
  externalId: string;
546
546
  url: string;
547
- iconUrl?: string;
548
- mimeType?: string;
549
- title?: string;
547
+ iconUrl?: string | null;
548
+ mimeType?: string | null;
549
+ title?: string | null;
550
550
  }
551
551
 
552
552
  export class Event extends BusinessObject {
@@ -554,15 +554,15 @@ export class Event extends BusinessObject {
554
554
  status: EventStatus;
555
555
  startDate: number;
556
556
  organizedBy: PersonReference;
557
- location?: string;
558
- originalStartDate?: number;
559
- recurrence?: RecurrenceRFC[];
560
- endDate?: number;
561
- subject?: string;
562
- description?: string;
563
- attendees?: PersonAcceptance[];
564
- conference?: Conference;
565
- attachments?: Attachment[];
557
+ location?: string | null;
558
+ originalStartDate?: number | null;
559
+ recurrence?: RecurrenceRFC[] | null;
560
+ endDate?: number | null;
561
+ subject?: string | null;
562
+ description?: string | null;
563
+ attendees?: PersonAcceptance[] | null;
564
+ conference?: Conference | null;
565
+ attachments?: Attachment[] | null;
566
566
 
567
567
  constructor(
568
568
  provider: string,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "2.7.2",
4
+ "version": "2.7.4",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",