@bigfootai/bigfoot-types 3.1.2 → 3.1.3
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.js +1 -0
- package/model.ts +2 -0
- package/package.json +1 -1
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -654,6 +654,7 @@ type Article {${PrimitiveFields}
|
|
654
654
|
dates: [EntityEntry]
|
655
655
|
locations: [EntityEntry]
|
656
656
|
linkUrls: [String]
|
657
|
+
emails: [String]
|
657
658
|
sharingTags: [SharingTag]
|
658
659
|
recommendations: [TagRecommendation]
|
659
660
|
relations: [RelationEntry]
|
@@ -666,6 +667,7 @@ export class Article extends Primitive {
|
|
666
667
|
dates?: EntityEntry[];
|
667
668
|
locations?: EntityEntry[];
|
668
669
|
linkUrls?: string[];
|
670
|
+
emails?: string[];
|
669
671
|
sharingTags?: SharingTag[];
|
670
672
|
recommendations?: TagRecommendation[];
|
671
673
|
relations?: RelationEntry[];
|