@bigfootai/bigfoot-types 4.6.16 → 4.6.18
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 +3 -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;
|
@@ -1059,6 +1059,7 @@ export class Article extends Primitive {
|
|
1059
1059
|
_timeZone?: string;
|
1060
1060
|
_locale?: string;
|
1061
1061
|
_changes?: Changes;
|
1062
|
+
_document?: any;
|
1062
1063
|
_tasks?: Task[];
|
1063
1064
|
_entitiesPerson?: EntityEntry[];
|
1064
1065
|
_entitiesOrganization?: EntityEntry[];
|