@bigfootai/bigfoot-types 3.1.1 → 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.
Files changed (3) hide show
  1. package/model.js +2 -0
  2. package/model.ts +4 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -365,6 +365,7 @@ class Tag extends Primitive {
365
365
  exports.Tag = Tag;
366
366
  exports.TagRecommendationQL = `
367
367
  type TagRecommendation {
368
+ id: String!
368
369
  type: String!
369
370
  tags: [Tag]!
370
371
  entity: EntityEntry!
@@ -418,6 +419,7 @@ type Article {${exports.PrimitiveFields}
418
419
  dates: [EntityEntry]
419
420
  locations: [EntityEntry]
420
421
  linkUrls: [String]
422
+ emails: [String]
421
423
  sharingTags: [SharingTag]
422
424
  recommendations: [TagRecommendation]
423
425
  relations: [RelationEntry]
package/model.ts CHANGED
@@ -561,12 +561,14 @@ export class Tag extends Primitive {
561
561
 
562
562
  export const TagRecommendationQL = `
563
563
  type TagRecommendation {
564
+ id: String!
564
565
  type: String!
565
566
  tags: [Tag]!
566
567
  entity: EntityEntry!
567
568
  variation: String
568
569
  }`;
569
570
  export interface TagRecommendation {
571
+ id: string;
570
572
  type: TagRecommendationType;
571
573
  tags: Tag[];
572
574
  entity: EntityEntry;
@@ -652,6 +654,7 @@ type Article {${PrimitiveFields}
652
654
  dates: [EntityEntry]
653
655
  locations: [EntityEntry]
654
656
  linkUrls: [String]
657
+ emails: [String]
655
658
  sharingTags: [SharingTag]
656
659
  recommendations: [TagRecommendation]
657
660
  relations: [RelationEntry]
@@ -664,6 +667,7 @@ export class Article extends Primitive {
664
667
  dates?: EntityEntry[];
665
668
  locations?: EntityEntry[];
666
669
  linkUrls?: string[];
670
+ emails?: string[];
667
671
  sharingTags?: SharingTag[];
668
672
  recommendations?: TagRecommendation[];
669
673
  relations?: RelationEntry[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "3.1.1",
4
+ "version": "3.1.3",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",