@bigfootai/bigfoot-types 5.1.26 → 5.1.27

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 +1 -0
  2. package/model.ts +2 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1671,6 +1671,7 @@ input StringFilterInput {
1671
1671
  }`;
1672
1672
  exports.BusinessObjectFilterInputQL = `
1673
1673
  input BusinessObjectFilterInput {
1674
+ id: String
1674
1675
  url: String
1675
1676
  blockType: BlockType
1676
1677
  provider: String
package/model.ts CHANGED
@@ -2958,12 +2958,14 @@ export interface StringFilterInput {
2958
2958
 
2959
2959
  export const BusinessObjectFilterInputQL = `
2960
2960
  input BusinessObjectFilterInput {
2961
+ id: String
2961
2962
  url: String
2962
2963
  blockType: BlockType
2963
2964
  provider: String
2964
2965
  metadataType: String
2965
2966
  }`;
2966
2967
  export interface BusinessObjectFilterInput {
2968
+ id?: string;
2967
2969
  url?: string;
2968
2970
  blockType?: string;
2969
2971
  provider?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.1.26",
4
+ "version": "5.1.27",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",