@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.
- package/model.js +1 -0
- package/model.ts +2 -0
- package/package.json +1 -1
package/model.js
CHANGED
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;
|