@bigfootai/bigfoot-types 4.9.28 → 4.9.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 +2 -3
- package/model.ts +4 -6
- package/package.json +1 -1
package/model.js
CHANGED
@@ -313,12 +313,11 @@ input BusinessObjectLinkInput {
|
|
313
313
|
}`;
|
314
314
|
exports.BusinessObjectLinkQL = `
|
315
315
|
type BusinessObjectLink {
|
316
|
-
id: String
|
317
316
|
url: String
|
318
|
-
|
317
|
+
id: String
|
318
|
+
blockType: String
|
319
319
|
provider: String
|
320
320
|
metadataType: String
|
321
|
-
blockType: String
|
322
321
|
_compound: String
|
323
322
|
}`;
|
324
323
|
exports.ReactionSkinToneQL = `
|
package/model.ts
CHANGED
@@ -364,21 +364,19 @@ input BusinessObjectLinkInput {
|
|
364
364
|
}`;
|
365
365
|
export const BusinessObjectLinkQL = `
|
366
366
|
type BusinessObjectLink {
|
367
|
-
id: String
|
368
367
|
url: String
|
369
|
-
|
368
|
+
id: String
|
369
|
+
blockType: String
|
370
370
|
provider: String
|
371
371
|
metadataType: String
|
372
|
-
blockType: String
|
373
372
|
_compound: String
|
374
373
|
}`;
|
375
374
|
export interface BusinessObjectLink {
|
376
375
|
url?: string;
|
377
|
-
externalId?: string;
|
378
|
-
provider?: string;
|
379
|
-
metadataType?: string;
|
380
376
|
id?: string;
|
381
377
|
blockType?: BlockType;
|
378
|
+
provider?: string;
|
379
|
+
metadataType?: string;
|
382
380
|
_compound?: string;
|
383
381
|
}
|
384
382
|
|