@bigfootai/bigfoot-types 5.3.5 → 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.
Files changed (3) hide show
  1. package/model.js +4 -0
  2. package/model.ts +6 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -39,6 +39,8 @@ var RecommendationType;
39
39
  RecommendationType["Share"] = "share";
40
40
  RecommendationType["Notification"] = "notification";
41
41
  RecommendationType["Message"] = "message";
42
+ RecommendationType["Reaction"] = "reaction";
43
+ RecommendationType["Change"] = "change";
42
44
  })(RecommendationType || (exports.RecommendationType = RecommendationType = {}));
43
45
  var UpsertType;
44
46
  (function (UpsertType) {
@@ -827,10 +829,12 @@ type ConnectRecommendation {
827
829
  exports.ReactionRecommendationQL = `
828
830
  type ReactionRecommendation {
829
831
  reaction: Reaction!
832
+ tenant: TenantLight!
830
833
  }`;
831
834
  exports.ChangeRecommendationQL = `
832
835
  type ChangeRecommendation {
833
836
  status: String
837
+ tenant: TenantLight!
834
838
  }`;
835
839
  exports.UpsertRecommendationQL = `
836
840
  type UpsertRecommendation {
package/model.ts CHANGED
@@ -32,6 +32,8 @@ export enum RecommendationType {
32
32
  Share = 'share',
33
33
  Notification = 'notification',
34
34
  Message = 'message',
35
+ Reaction = 'reaction',
36
+ Change = 'change',
35
37
  }
36
38
 
37
39
  export enum UpsertType {
@@ -1252,17 +1254,21 @@ export interface ConnectRecommendation {
1252
1254
  export const ReactionRecommendationQL = `
1253
1255
  type ReactionRecommendation {
1254
1256
  reaction: Reaction!
1257
+ tenant: TenantLight!
1255
1258
  }`;
1256
1259
  export interface ReactionRecommendation {
1257
1260
  reaction: Reaction;
1261
+ tenant: TenantLight;
1258
1262
  }
1259
1263
 
1260
1264
  export const ChangeRecommendationQL = `
1261
1265
  type ChangeRecommendation {
1262
1266
  status: String
1267
+ tenant: TenantLight!
1263
1268
  }`;
1264
1269
  export interface ChangeRecommendation {
1265
1270
  status?: TaskStatus;
1271
+ tenant: TenantLight;
1266
1272
  }
1267
1273
 
1268
1274
  export const UpsertRecommendationQL = `
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.3.5",
4
+ "version": "5.3.7",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",