@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.
Files changed (3) hide show
  1. package/model.js +1 -0
  2. package/model.ts +2 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -342,6 +342,7 @@ type ExternalIdLink {
342
342
  tagType: TagType
343
343
  tagSubType: String
344
344
  blockType: BlockType
345
+ connectionId: String
345
346
  }`;
346
347
  exports.TaskStepInputQL = `
347
348
  input TaskStepInput {
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;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.2.4",
4
+ "version": "5.2.5",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",