@bigfootai/bigfoot-types 4.7.13 → 4.7.15

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 -2
  2. package/model.ts +8 -4
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -295,7 +295,7 @@ exports.BusinessObjectLinkQL = `
295
295
  type BusinessObjectLink {
296
296
  url: String
297
297
  provider: String
298
- recordType: String
298
+ metadataType: String
299
299
  blockType: String
300
300
  _compound: String
301
301
  }`;
@@ -647,7 +647,9 @@ type ConnectRecommendation {
647
647
  }`;
648
648
  exports.UpsertRecommendationQL = `
649
649
  type UpsertRecommendation {
650
- table: Table!
650
+ table: Table
651
+ document: Document
652
+ blockType: String!
651
653
  upsertType: String!
652
654
  }`;
653
655
  exports.RecommendationQL = `
package/model.ts CHANGED
@@ -342,14 +342,14 @@ export const BusinessObjectLinkQL = `
342
342
  type BusinessObjectLink {
343
343
  url: String
344
344
  provider: String
345
- recordType: String
345
+ metadataType: String
346
346
  blockType: String
347
347
  _compound: String
348
348
  }`;
349
349
  export interface BusinessObjectLink {
350
350
  url?: string;
351
351
  provider?: string;
352
- recordType?: string;
352
+ metadataType?: string;
353
353
  blockType?: BlockType;
354
354
  _compound?: string;
355
355
  }
@@ -978,11 +978,15 @@ export interface ConnectRecommendation {
978
978
 
979
979
  export const UpsertRecommendationQL = `
980
980
  type UpsertRecommendation {
981
- table: Table!
981
+ table: Table
982
+ document: Document
983
+ blockType: String!
982
984
  upsertType: String!
983
985
  }`;
984
986
  export interface UpsertRecommendation {
985
- table: Table;
987
+ table?: Table;
988
+ document?: Document;
989
+ blockType: BlockType;
986
990
  upsertType: UpsertType;
987
991
  }
988
992
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.7.13",
4
+ "version": "4.7.15",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",