@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.
- package/model.js +4 -0
- package/model.ts +6 -0
- 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 = `
|