@bigfootai/bigfoot-types 4.7.8 → 4.7.10

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 -1
  2. package/model.ts +3 -2
  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;
@@ -637,7 +640,6 @@ type ConnectRecommendation {
637
640
  exports.UpsertRecommendationQL = `
638
641
  type UpsertRecommendation {
639
642
  table: Table!
640
- record: Record!
641
643
  upsertType: String!
642
644
  }`;
643
645
  exports.RecommendationQL = `
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
 
@@ -962,12 +965,10 @@ export interface ConnectRecommendation {
962
965
  export const UpsertRecommendationQL = `
963
966
  type UpsertRecommendation {
964
967
  table: Table!
965
- record: Record!
966
968
  upsertType: String!
967
969
  }`;
968
970
  export interface UpsertRecommendation {
969
971
  table: Table;
970
- record: Record;
971
972
  upsertType: UpsertType;
972
973
  }
973
974
 
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.10",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",