@bigfootai/bigfoot-types 5.3.6 → 5.3.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 +2 -0
- package/model.ts +4 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -829,10 +829,12 @@ type ConnectRecommendation {
|
|
829
829
|
exports.ReactionRecommendationQL = `
|
830
830
|
type ReactionRecommendation {
|
831
831
|
reaction: Reaction!
|
832
|
+
tenant: TenantLight!
|
832
833
|
}`;
|
833
834
|
exports.ChangeRecommendationQL = `
|
834
835
|
type ChangeRecommendation {
|
835
836
|
status: String
|
837
|
+
tenant: TenantLight!
|
836
838
|
}`;
|
837
839
|
exports.UpsertRecommendationQL = `
|
838
840
|
type UpsertRecommendation {
|
package/model.ts
CHANGED
@@ -1254,17 +1254,21 @@ export interface ConnectRecommendation {
|
|
1254
1254
|
export const ReactionRecommendationQL = `
|
1255
1255
|
type ReactionRecommendation {
|
1256
1256
|
reaction: Reaction!
|
1257
|
+
tenant: TenantLight!
|
1257
1258
|
}`;
|
1258
1259
|
export interface ReactionRecommendation {
|
1259
1260
|
reaction: Reaction;
|
1261
|
+
tenant: TenantLight;
|
1260
1262
|
}
|
1261
1263
|
|
1262
1264
|
export const ChangeRecommendationQL = `
|
1263
1265
|
type ChangeRecommendation {
|
1264
1266
|
status: String
|
1267
|
+
tenant: TenantLight!
|
1265
1268
|
}`;
|
1266
1269
|
export interface ChangeRecommendation {
|
1267
1270
|
status?: TaskStatus;
|
1271
|
+
tenant: TenantLight;
|
1268
1272
|
}
|
1269
1273
|
|
1270
1274
|
export const UpsertRecommendationQL = `
|