@bigfootai/bigfoot-types 5.1.59 → 5.1.61
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 +4 -1
- package/model.ts +7 -1
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1410,6 +1410,7 @@ input FindBlockInput {
|
|
1410
1410
|
exports.FindBlocksInputQL = `
|
1411
1411
|
input FindBlocksInput {
|
1412
1412
|
originReferenceBlock: ReferenceBlockInput
|
1413
|
+
originReferenceTagId: String
|
1413
1414
|
blockType: String
|
1414
1415
|
archived: Boolean
|
1415
1416
|
}`;
|
@@ -1630,7 +1631,8 @@ input SearchInput {
|
|
1630
1631
|
dateDueFrom: Float
|
1631
1632
|
dateDueTo: Float
|
1632
1633
|
status: String
|
1633
|
-
originReferenceBlock:
|
1634
|
+
originReferenceBlock: ReferenceBlockInput
|
1635
|
+
originReferenceTagId: String
|
1634
1636
|
editorId: String
|
1635
1637
|
editorGroupId: String
|
1636
1638
|
parentId: String
|
@@ -1768,6 +1770,7 @@ exports.GraphSearchInputFields = `
|
|
1768
1770
|
statuses: [TaskStatus]
|
1769
1771
|
businessObjects: [BusinessObjectFilterInput]
|
1770
1772
|
originReferenceBlock: ReferenceBlockInput
|
1773
|
+
originReferenceTagId: String
|
1771
1774
|
editorId: String
|
1772
1775
|
editorGroupId: String
|
1773
1776
|
parentId: String
|
package/model.ts
CHANGED
@@ -2520,11 +2520,13 @@ export interface FindBlockInput {
|
|
2520
2520
|
export const FindBlocksInputQL = `
|
2521
2521
|
input FindBlocksInput {
|
2522
2522
|
originReferenceBlock: ReferenceBlockInput
|
2523
|
+
originReferenceTagId: String
|
2523
2524
|
blockType: String
|
2524
2525
|
archived: Boolean
|
2525
2526
|
}`;
|
2526
2527
|
export interface FindBlocksInput {
|
2527
2528
|
originReferenceBlock?: ReferenceBlock;
|
2529
|
+
originReferenceTagId?: string;
|
2528
2530
|
blockType?: BlockType;
|
2529
2531
|
archived?: boolean;
|
2530
2532
|
}
|
@@ -2917,7 +2919,8 @@ input SearchInput {
|
|
2917
2919
|
dateDueFrom: Float
|
2918
2920
|
dateDueTo: Float
|
2919
2921
|
status: String
|
2920
|
-
originReferenceBlock:
|
2922
|
+
originReferenceBlock: ReferenceBlockInput
|
2923
|
+
originReferenceTagId: String
|
2921
2924
|
editorId: String
|
2922
2925
|
editorGroupId: String
|
2923
2926
|
parentId: String
|
@@ -2943,6 +2946,7 @@ export interface SearchInput {
|
|
2943
2946
|
dateDueTo?: number;
|
2944
2947
|
status?: TaskStatus;
|
2945
2948
|
originReferenceBlock?: ReferenceBlock;
|
2949
|
+
originReferenceTagId?: string;
|
2946
2950
|
editorId?: string;
|
2947
2951
|
editorGroupId?: string;
|
2948
2952
|
parentId?: string;
|
@@ -3152,6 +3156,7 @@ export const GraphSearchInputFields = `
|
|
3152
3156
|
statuses: [TaskStatus]
|
3153
3157
|
businessObjects: [BusinessObjectFilterInput]
|
3154
3158
|
originReferenceBlock: ReferenceBlockInput
|
3159
|
+
originReferenceTagId: String
|
3155
3160
|
editorId: String
|
3156
3161
|
editorGroupId: String
|
3157
3162
|
parentId: String
|
@@ -3181,6 +3186,7 @@ export interface GraphSearchInput {
|
|
3181
3186
|
statuses?: TaskStatus[];
|
3182
3187
|
businessObjects?: BusinessObjectFilterInput[];
|
3183
3188
|
originReferenceBlock?: ReferenceBlock;
|
3189
|
+
originReferenceTagId?: string;
|
3184
3190
|
editorId?: string;
|
3185
3191
|
editorGroupId?: string;
|
3186
3192
|
parentId?: string;
|