@bigfootai/bigfoot-types 4.7.29 → 4.7.31

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 +2 -0
  2. package/model.ts +5 -2
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -292,6 +292,7 @@ type SharingTenant {
292
292
  }`;
293
293
  exports.BusinessObjectLinkInputQL = `
294
294
  input BusinessObjectLinkInput {
295
+ id: String
295
296
  url: String
296
297
  provider: String
297
298
  metadataType: String
@@ -300,6 +301,7 @@ input BusinessObjectLinkInput {
300
301
  }`;
301
302
  exports.BusinessObjectLinkQL = `
302
303
  type BusinessObjectLink {
304
+ id: String
303
305
  url: String
304
306
  provider: String
305
307
  metadataType: String
package/model.ts CHANGED
@@ -340,6 +340,7 @@ export interface SharingTenant {
340
340
 
341
341
  export const BusinessObjectLinkInputQL = `
342
342
  input BusinessObjectLinkInput {
343
+ id: String
343
344
  url: String
344
345
  provider: String
345
346
  metadataType: String
@@ -348,6 +349,7 @@ input BusinessObjectLinkInput {
348
349
  }`;
349
350
  export const BusinessObjectLinkQL = `
350
351
  type BusinessObjectLink {
352
+ id: String
351
353
  url: String
352
354
  provider: String
353
355
  metadataType: String
@@ -358,6 +360,7 @@ export interface BusinessObjectLink {
358
360
  url?: string;
359
361
  provider?: string;
360
362
  metadataType?: string;
363
+ id?: string;
361
364
  blockType?: BlockType;
362
365
  _compound?: string;
363
366
  }
@@ -1060,8 +1063,8 @@ export class Recommendation extends SharedPrimitive implements BaseTask {
1060
1063
  archived: boolean;
1061
1064
  favorite: boolean;
1062
1065
  snoozed: boolean;
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!
1066
+ thumbs?: ThumbsDirection; // Added so we can get some basic feedback on recommendations
1067
+ comment?: String; // Added likely just for the private beta, but perhaps longer!
1065
1068
  status?: TaskStatus;
1066
1069
 
1067
1070
  constructor(
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.7.29",
4
+ "version": "4.7.31",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",