@bigfootai/bigfoot-types 4.7.14 → 4.7.16
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 +3 -1
- package/model.ts +7 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -647,7 +647,9 @@ type ConnectRecommendation {
|
|
647
647
|
}`;
|
648
648
|
exports.UpsertRecommendationQL = `
|
649
649
|
type UpsertRecommendation {
|
650
|
-
table: Table
|
650
|
+
table: Table
|
651
|
+
document: Document
|
652
|
+
blockType: String!
|
651
653
|
upsertType: String!
|
652
654
|
}`;
|
653
655
|
exports.RecommendationQL = `
|
package/model.ts
CHANGED
@@ -978,12 +978,17 @@ export interface ConnectRecommendation {
|
|
978
978
|
|
979
979
|
export const UpsertRecommendationQL = `
|
980
980
|
type UpsertRecommendation {
|
981
|
-
table: Table
|
981
|
+
table: Table
|
982
|
+
document: Document
|
983
|
+
blockType: String!
|
982
984
|
upsertType: String!
|
983
985
|
}`;
|
984
986
|
export interface UpsertRecommendation {
|
985
|
-
table
|
987
|
+
table?: Table;
|
988
|
+
document?: Document;
|
989
|
+
blockType: BlockType;
|
986
990
|
upsertType: UpsertType;
|
991
|
+
metadata: Metadata;
|
987
992
|
}
|
988
993
|
|
989
994
|
export interface BaseTask {
|