@bigfootai/bigfoot-types 4.6.16 → 4.6.17
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
@@ -337,14 +337,14 @@ input BusinessObjectLinkInput {
|
|
337
337
|
}`;
|
338
338
|
export const BusinessObjectLinkQL = `
|
339
339
|
type BusinessObjectLink {
|
340
|
-
url: String
|
340
|
+
url: String
|
341
341
|
provider: String
|
342
342
|
recordType: String
|
343
343
|
blockType: String
|
344
344
|
_compound: String
|
345
345
|
}`;
|
346
346
|
export interface BusinessObjectLink {
|
347
|
-
url
|
347
|
+
url?: string;
|
348
348
|
provider?: string;
|
349
349
|
recordType?: string;
|
350
350
|
blockType?: BlockType;
|