@bigfootai/bigfoot-types 5.2.4 → 5.2.5
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 -0
- package/model.ts +2 -0
- package/package.json +1 -1
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -400,6 +400,7 @@ type ExternalIdLink {
|
|
400
400
|
tagType: TagType
|
401
401
|
tagSubType: String
|
402
402
|
blockType: BlockType
|
403
|
+
connectionId: String
|
403
404
|
}`;
|
404
405
|
export interface ExternalIdLink {
|
405
406
|
// Don't store these fields
|
@@ -407,6 +408,7 @@ export interface ExternalIdLink {
|
|
407
408
|
tagType?: TagType;
|
408
409
|
tagSubType?: string;
|
409
410
|
blockType?: BlockType;
|
411
|
+
connectionId?: string;
|
410
412
|
// Store these fields
|
411
413
|
externalId: string;
|
412
414
|
instanceId: string;
|