@bigfootai/bigfoot-types 5.1.58 → 5.1.60
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 +3 -1
- package/model.ts +6 -1
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1106,7 +1106,6 @@ exports.UpsertMessageInputQL = `
|
|
1106
1106
|
input UpsertMessageInput {${exports.BlockFieldsForUpsert}
|
1107
1107
|
originReferenceBlock: ReferenceBlockInput
|
1108
1108
|
originReferenceTagId: String
|
1109
|
-
parentId: String
|
1110
1109
|
}`;
|
1111
1110
|
exports.MessageQL = `
|
1112
1111
|
type Message {${exports.BusinessObjectFields}
|
@@ -1411,6 +1410,7 @@ input FindBlockInput {
|
|
1411
1410
|
exports.FindBlocksInputQL = `
|
1412
1411
|
input FindBlocksInput {
|
1413
1412
|
originReferenceBlock: ReferenceBlockInput
|
1413
|
+
originReferenceTagId: String
|
1414
1414
|
blockType: String
|
1415
1415
|
archived: Boolean
|
1416
1416
|
}`;
|
@@ -1632,6 +1632,7 @@ input SearchInput {
|
|
1632
1632
|
dateDueTo: Float
|
1633
1633
|
status: String
|
1634
1634
|
originReferenceBlock: [ReferenceBlockInput]
|
1635
|
+
originReferenceTagId: String
|
1635
1636
|
editorId: String
|
1636
1637
|
editorGroupId: String
|
1637
1638
|
parentId: String
|
@@ -1769,6 +1770,7 @@ exports.GraphSearchInputFields = `
|
|
1769
1770
|
statuses: [TaskStatus]
|
1770
1771
|
businessObjects: [BusinessObjectFilterInput]
|
1771
1772
|
originReferenceBlock: ReferenceBlockInput
|
1773
|
+
originReferenceTagId: String
|
1772
1774
|
editorId: String
|
1773
1775
|
editorGroupId: String
|
1774
1776
|
parentId: String
|
package/model.ts
CHANGED
@@ -1894,7 +1894,6 @@ export const UpsertMessageInputQL = `
|
|
1894
1894
|
input UpsertMessageInput {${BlockFieldsForUpsert}
|
1895
1895
|
originReferenceBlock: ReferenceBlockInput
|
1896
1896
|
originReferenceTagId: String
|
1897
|
-
parentId: String
|
1898
1897
|
}`;
|
1899
1898
|
export const MessageQL = `
|
1900
1899
|
type Message {${BusinessObjectFields}
|
@@ -2521,11 +2520,13 @@ export interface FindBlockInput {
|
|
2521
2520
|
export const FindBlocksInputQL = `
|
2522
2521
|
input FindBlocksInput {
|
2523
2522
|
originReferenceBlock: ReferenceBlockInput
|
2523
|
+
originReferenceTagId: String
|
2524
2524
|
blockType: String
|
2525
2525
|
archived: Boolean
|
2526
2526
|
}`;
|
2527
2527
|
export interface FindBlocksInput {
|
2528
2528
|
originReferenceBlock?: ReferenceBlock;
|
2529
|
+
originReferenceTagId?: string;
|
2529
2530
|
blockType?: BlockType;
|
2530
2531
|
archived?: boolean;
|
2531
2532
|
}
|
@@ -2919,6 +2920,7 @@ input SearchInput {
|
|
2919
2920
|
dateDueTo: Float
|
2920
2921
|
status: String
|
2921
2922
|
originReferenceBlock: [ReferenceBlockInput]
|
2923
|
+
originReferenceTagId: String
|
2922
2924
|
editorId: String
|
2923
2925
|
editorGroupId: String
|
2924
2926
|
parentId: String
|
@@ -2944,6 +2946,7 @@ export interface SearchInput {
|
|
2944
2946
|
dateDueTo?: number;
|
2945
2947
|
status?: TaskStatus;
|
2946
2948
|
originReferenceBlock?: ReferenceBlock;
|
2949
|
+
originReferenceTagId?: string;
|
2947
2950
|
editorId?: string;
|
2948
2951
|
editorGroupId?: string;
|
2949
2952
|
parentId?: string;
|
@@ -3153,6 +3156,7 @@ export const GraphSearchInputFields = `
|
|
3153
3156
|
statuses: [TaskStatus]
|
3154
3157
|
businessObjects: [BusinessObjectFilterInput]
|
3155
3158
|
originReferenceBlock: ReferenceBlockInput
|
3159
|
+
originReferenceTagId: String
|
3156
3160
|
editorId: String
|
3157
3161
|
editorGroupId: String
|
3158
3162
|
parentId: String
|
@@ -3182,6 +3186,7 @@ export interface GraphSearchInput {
|
|
3182
3186
|
statuses?: TaskStatus[];
|
3183
3187
|
businessObjects?: BusinessObjectFilterInput[];
|
3184
3188
|
originReferenceBlock?: ReferenceBlock;
|
3189
|
+
originReferenceTagId?: string;
|
3185
3190
|
editorId?: string;
|
3186
3191
|
editorGroupId?: string;
|
3187
3192
|
parentId?: string;
|