@bigfootai/bigfoot-types 4.7.8 → 4.7.9

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 +3 -0
  2. package/model.ts +3 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -454,6 +454,9 @@ class SharedPrimitive extends Primitive {
454
454
  }
455
455
  }
456
456
  }
457
+ if (sharingTags && sharingTags.length > 0) {
458
+ this._tagIds = sharingTags.map((sharingTag) => sharingTag.tagId);
459
+ }
457
460
  }
458
461
  }
459
462
  exports.SharedPrimitive = SharedPrimitive;
package/model.ts CHANGED
@@ -657,6 +657,9 @@ export class SharedPrimitive extends Primitive {
657
657
  }
658
658
  }
659
659
  }
660
+ if (sharingTags && sharingTags.length > 0) {
661
+ this._tagIds = sharingTags.map((sharingTag) => sharingTag.tagId);
662
+ }
660
663
  }
661
664
  }
662
665
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.7.8",
4
+ "version": "4.7.9",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",