@bigfootai/bigfoot-types 3.1.1 → 3.1.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 (3) hide show
  1. package/model.js +1 -0
  2. package/model.ts +2 -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!
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;
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.2",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",