@bigfootai/bigfoot-types 5.1.26 → 5.1.28
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/metadata/tables/case.js +1 -1
- package/metadata/tables/case.ts +1 -1
- package/model.js +1 -0
- package/model.ts +2 -0
- package/package.json +1 -1
package/metadata/tables/case.js
CHANGED
package/metadata/tables/case.ts
CHANGED
package/model.js
CHANGED
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;
|