@bigfootai/bigfoot-types 4.7.13 → 4.7.14
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 +1 -1
- package/model.ts +2 -2
- package/package.json +1 -1
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -342,14 +342,14 @@ export const BusinessObjectLinkQL = `
|
|
342
342
|
type BusinessObjectLink {
|
343
343
|
url: String
|
344
344
|
provider: String
|
345
|
-
|
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
|
-
|
352
|
+
metadataType?: string;
|
353
353
|
blockType?: BlockType;
|
354
354
|
_compound?: string;
|
355
355
|
}
|