@bigfootai/bigfoot-types 4.7.30 → 4.7.31
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 +2 -0
- package/model.ts +3 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -292,6 +292,7 @@ type SharingTenant {
|
|
292
292
|
}`;
|
293
293
|
exports.BusinessObjectLinkInputQL = `
|
294
294
|
input BusinessObjectLinkInput {
|
295
|
+
id: String
|
295
296
|
url: String
|
296
297
|
provider: String
|
297
298
|
metadataType: String
|
@@ -300,6 +301,7 @@ input BusinessObjectLinkInput {
|
|
300
301
|
}`;
|
301
302
|
exports.BusinessObjectLinkQL = `
|
302
303
|
type BusinessObjectLink {
|
304
|
+
id: String
|
303
305
|
url: String
|
304
306
|
provider: String
|
305
307
|
metadataType: String
|
package/model.ts
CHANGED
@@ -340,6 +340,7 @@ export interface SharingTenant {
|
|
340
340
|
|
341
341
|
export const BusinessObjectLinkInputQL = `
|
342
342
|
input BusinessObjectLinkInput {
|
343
|
+
id: String
|
343
344
|
url: String
|
344
345
|
provider: String
|
345
346
|
metadataType: String
|
@@ -348,6 +349,7 @@ input BusinessObjectLinkInput {
|
|
348
349
|
}`;
|
349
350
|
export const BusinessObjectLinkQL = `
|
350
351
|
type BusinessObjectLink {
|
352
|
+
id: String
|
351
353
|
url: String
|
352
354
|
provider: String
|
353
355
|
metadataType: String
|
@@ -358,6 +360,7 @@ export interface BusinessObjectLink {
|
|
358
360
|
url?: string;
|
359
361
|
provider?: string;
|
360
362
|
metadataType?: string;
|
363
|
+
id?: string;
|
361
364
|
blockType?: BlockType;
|
362
365
|
_compound?: string;
|
363
366
|
}
|