@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.
- package/model.ts +27 -0
- 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;
|