@bigfootai/bigfoot-types 4.7.9 → 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.
- package/model.js +0 -1
- package/model.ts +0 -2
- package/package.json +1 -1
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -965,12 +965,10 @@ export interface ConnectRecommendation {
|
|
965
965
|
export const UpsertRecommendationQL = `
|
966
966
|
type UpsertRecommendation {
|
967
967
|
table: Table!
|
968
|
-
record: Record!
|
969
968
|
upsertType: String!
|
970
969
|
}`;
|
971
970
|
export interface UpsertRecommendation {
|
972
971
|
table: Table;
|
973
|
-
record: Record;
|
974
972
|
upsertType: UpsertType;
|
975
973
|
}
|
976
974
|
|