@bigfootai/bigfoot-types 5.1.31 → 5.1.33

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 (2) hide show
  1. package/model.ts +27 -0
  2. package/package.json +1 -1
package/model.ts CHANGED
@@ -1666,6 +1666,32 @@ export interface Attachment {
1666
1666
  title?: string | null;
1667
1667
  }
1668
1668
 
1669
+ export interface NormalizedImportantField {
1670
+ name: string;
1671
+ value?: string;
1672
+ tagType?: TagType;
1673
+ }
1674
+
1675
+ export interface NormalizedBusinessObject {
1676
+ businessObject: BusinessObject;
1677
+ dateDue?: number;
1678
+ priority?: TaskPriority;
1679
+ status?: TaskStatus;
1680
+ important?: NormalizedImportantField[];
1681
+ tagIds?: string[];
1682
+ }
1683
+
1684
+ export interface AveragePriorityChange {
1685
+ before: TaskPriority;
1686
+ after: TaskPriority;
1687
+ }
1688
+
1689
+ export interface AnalysisResult {
1690
+ dateDueImpacted?: NormalizedBusinessObject[];
1691
+ movingPriority?: AveragePriorityChange;
1692
+ taskCompleted?: boolean;
1693
+ }
1694
+
1669
1695
  export interface CalendarFilter {
1670
1696
  dateStart: number;
1671
1697
  dateEnd: number;
@@ -3043,6 +3069,7 @@ export interface GraphSearchInput {
3043
3069
  tenantIdCreateds?: string[];
3044
3070
  tagIds?: string[];
3045
3071
  blockTypes?: BlockType[];
3072
+ recommendationTypes?: RecommendationType[];
3046
3073
  statuses?: TaskStatus[];
3047
3074
  businessObjects?: BusinessObjectFilterInput[];
3048
3075
  originReferenceBlock?: ReferenceBlock;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.1.31",
4
+ "version": "5.1.33",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",