@bigfootai/bigfoot-types 4.7.5 → 4.7.7
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 +0 -2
- package/model.ts +0 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -639,12 +639,10 @@ 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}
|
646
645
|
referenceBlock: ReferenceBlock
|
647
|
-
tenantIdCreated: Record!
|
648
646
|
recommendationType: String!
|
649
647
|
connectRecommendation: ConnectRecommendation
|
650
648
|
upsertRecommendation: UpsertRecommendation
|
package/model.ts
CHANGED
@@ -974,7 +974,6 @@ export interface UpsertRecommendation {
|
|
974
974
|
export const RecommendationQL = `
|
975
975
|
type Recommendation {${SharedPrimitiveFields}
|
976
976
|
referenceBlock: ReferenceBlock
|
977
|
-
tenantIdCreated: Record!
|
978
977
|
recommendationType: String!
|
979
978
|
connectRecommendation: ConnectRecommendation
|
980
979
|
upsertRecommendation: UpsertRecommendation
|
@@ -982,7 +981,6 @@ type Recommendation {${SharedPrimitiveFields}
|
|
982
981
|
}`;
|
983
982
|
export class Recommendation extends SharedPrimitive {
|
984
983
|
referenceBlock: ReferenceBlock; // This is the block that caused the recommendation to happen
|
985
|
-
tenantIdCreated: string;
|
986
984
|
recommendationType: RecommendationType;
|
987
985
|
connectRecommendation?: ConnectRecommendation; // For provider recommendations, we use this field
|
988
986
|
upsertRecommendation?: UpsertRecommendation; // For data upsert recommendations, we use this field
|