@bigfootai/bigfoot-types 4.7.28 → 4.7.29
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 +3 -2
- package/model.ts +3 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -292,9 +292,10 @@ type SharingTenant {
|
|
292
292
|
}`;
|
293
293
|
exports.BusinessObjectLinkInputQL = `
|
294
294
|
input BusinessObjectLinkInput {
|
295
|
-
url: String
|
295
|
+
url: String
|
296
296
|
provider: String
|
297
|
-
|
297
|
+
metadataType: String
|
298
|
+
blockType: String
|
298
299
|
_compound: String
|
299
300
|
}`;
|
300
301
|
exports.BusinessObjectLinkQL = `
|
package/model.ts
CHANGED
@@ -340,9 +340,10 @@ export interface SharingTenant {
|
|
340
340
|
|
341
341
|
export const BusinessObjectLinkInputQL = `
|
342
342
|
input BusinessObjectLinkInput {
|
343
|
-
url: String
|
343
|
+
url: String
|
344
344
|
provider: String
|
345
|
-
|
345
|
+
metadataType: String
|
346
|
+
blockType: String
|
346
347
|
_compound: String
|
347
348
|
}`;
|
348
349
|
export const BusinessObjectLinkQL = `
|