@bigfootai/bigfoot-types 4.7.28 → 4.7.30
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 -2
- package/model.ts +5 -4
- package/package.json +1 -1
package/model.js
CHANGED
@@ -292,9 +292,10 @@ type SharingTenant {
|
|
292
292
|
}`;
|
293
293
|
exports.BusinessObjectLinkInputQL = `
|
294
294
|
input BusinessObjectLinkInput {
|
295
|
-
url: String
|
295
|
+
url: String
|
296
296
|
provider: String
|
297
|
-
|
297
|
+
metadataType: String
|
298
|
+
blockType: String
|
298
299
|
_compound: String
|
299
300
|
}`;
|
300
301
|
exports.BusinessObjectLinkQL = `
|
package/model.ts
CHANGED
@@ -340,9 +340,10 @@ export interface SharingTenant {
|
|
340
340
|
|
341
341
|
export const BusinessObjectLinkInputQL = `
|
342
342
|
input BusinessObjectLinkInput {
|
343
|
-
url: String
|
343
|
+
url: String
|
344
344
|
provider: String
|
345
|
-
|
345
|
+
metadataType: String
|
346
|
+
blockType: String
|
346
347
|
_compound: String
|
347
348
|
}`;
|
348
349
|
export const BusinessObjectLinkQL = `
|
@@ -1059,8 +1060,8 @@ export class Recommendation extends SharedPrimitive implements BaseTask {
|
|
1059
1060
|
archived: boolean;
|
1060
1061
|
favorite: boolean;
|
1061
1062
|
snoozed: boolean;
|
1062
|
-
thumbs
|
1063
|
-
comment
|
1063
|
+
thumbs?: ThumbsDirection; // Added so we can get some basic feedback on recommendations
|
1064
|
+
comment?: String; // Added likely just for the private beta, but perhaps longer!
|
1064
1065
|
status?: TaskStatus;
|
1065
1066
|
|
1066
1067
|
constructor(
|