@bigfootai/bigfoot-types 4.7.5 → 4.7.6

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 +0 -1
  2. package/model.ts +0 -1
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -639,7 +639,6 @@ type UpsertRecommendation {
639
639
  table: Table!
640
640
  record: Record!
641
641
  upsertType: String!
642
- connectRecommendations: [ConnectRecommendation]
643
642
  }`;
644
643
  exports.RecommendationQL = `
645
644
  type Recommendation {${exports.SharedPrimitiveFields}
package/model.ts CHANGED
@@ -982,7 +982,6 @@ type Recommendation {${SharedPrimitiveFields}
982
982
  }`;
983
983
  export class Recommendation extends SharedPrimitive {
984
984
  referenceBlock: ReferenceBlock; // This is the block that caused the recommendation to happen
985
- tenantIdCreated: string;
986
985
  recommendationType: RecommendationType;
987
986
  connectRecommendation?: ConnectRecommendation; // For provider recommendations, we use this field
988
987
  upsertRecommendation?: UpsertRecommendation; // For data upsert recommendations, we use this field
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.7.5",
4
+ "version": "4.7.6",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",