@bigfootai/bigfoot-types 3.8.1 → 3.8.2
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 +6 -5
- package/model.ts +12 -10
- package/package.json +1 -1
package/model.js
CHANGED
@@ -513,7 +513,7 @@ type Article {${exports.PrimitiveFields}
|
|
513
513
|
archived: Boolean!
|
514
514
|
favorite: Boolean!
|
515
515
|
status: Int
|
516
|
-
|
516
|
+
originNoteId: String
|
517
517
|
parentId: String
|
518
518
|
}`;
|
519
519
|
class Article extends Primitive {
|
@@ -532,7 +532,7 @@ exports.BlockFields = `${exports.SharedPrimitiveFields}
|
|
532
532
|
archived: Boolean!
|
533
533
|
favorite: Boolean!
|
534
534
|
parentId: String
|
535
|
-
|
535
|
+
originNoteId: String
|
536
536
|
document: String
|
537
537
|
reactions: [Reaction]`;
|
538
538
|
class Block extends SharedPrimitive {
|
@@ -601,7 +601,9 @@ exports.Note = Note;
|
|
601
601
|
exports.TaskFields = `${exports.BlockFields}
|
602
602
|
status: String!
|
603
603
|
dateDue: Int!
|
604
|
-
originNoteId: String
|
604
|
+
originNoteId: String
|
605
|
+
editorId: String
|
606
|
+
editorGroupId: String
|
605
607
|
snoozed: Boolean!
|
606
608
|
steps: [TaskStep]
|
607
609
|
dateRemindMe: Int
|
@@ -933,7 +935,6 @@ input UpsertSearchInput {
|
|
933
935
|
orderByAlias: String
|
934
936
|
status: Int
|
935
937
|
parentId: String
|
936
|
-
groupId: String
|
937
938
|
favorite: Boolean
|
938
939
|
size: Int
|
939
940
|
}`;
|
@@ -966,8 +967,8 @@ input SearchInput {
|
|
966
967
|
orderByDateDue: String
|
967
968
|
orderByAlias: String
|
968
969
|
status: Int
|
970
|
+
originNoteId: String
|
969
971
|
parentId: String
|
970
|
-
groupId: String
|
971
972
|
favorite: Boolean
|
972
973
|
page: Int
|
973
974
|
size: Int
|
package/model.ts
CHANGED
@@ -763,7 +763,7 @@ type Article {${PrimitiveFields}
|
|
763
763
|
archived: Boolean!
|
764
764
|
favorite: Boolean!
|
765
765
|
status: Int
|
766
|
-
|
766
|
+
originNoteId: String
|
767
767
|
parentId: String
|
768
768
|
}`;
|
769
769
|
export class Article extends Primitive {
|
@@ -781,7 +781,7 @@ export class Article extends Primitive {
|
|
781
781
|
archived: boolean;
|
782
782
|
favorite: boolean;
|
783
783
|
status: TaskStatus;
|
784
|
-
|
784
|
+
originNoteId?: string;
|
785
785
|
parentId?: string;
|
786
786
|
_changes?: Changes;
|
787
787
|
_tasks?: Task[];
|
@@ -807,7 +807,7 @@ export const BlockFields = `${SharedPrimitiveFields}
|
|
807
807
|
archived: Boolean!
|
808
808
|
favorite: Boolean!
|
809
809
|
parentId: String
|
810
|
-
|
810
|
+
originNoteId: String
|
811
811
|
document: String
|
812
812
|
reactions: [Reaction]`;
|
813
813
|
export class Block extends SharedPrimitive {
|
@@ -817,7 +817,7 @@ export class Block extends SharedPrimitive {
|
|
817
817
|
archived: boolean;
|
818
818
|
favorite: boolean;
|
819
819
|
parentId?: string;
|
820
|
-
|
820
|
+
originNoteId?: string;
|
821
821
|
document?: any;
|
822
822
|
reactions?: Reaction[];
|
823
823
|
_changes?: Changes;
|
@@ -930,7 +930,9 @@ export class Note extends Block {
|
|
930
930
|
export const TaskFields = `${BlockFields}
|
931
931
|
status: String!
|
932
932
|
dateDue: Int!
|
933
|
-
originNoteId: String
|
933
|
+
originNoteId: String
|
934
|
+
editorId: String
|
935
|
+
editorGroupId: String
|
934
936
|
snoozed: Boolean!
|
935
937
|
steps: [TaskStep]
|
936
938
|
dateRemindMe: Int
|
@@ -942,7 +944,9 @@ type Task {${TaskFields}
|
|
942
944
|
export class Task extends Block {
|
943
945
|
status: TaskStatus;
|
944
946
|
dateDue: number;
|
945
|
-
originNoteId
|
947
|
+
originNoteId?: string;
|
948
|
+
editorId?: string;
|
949
|
+
editorGroupId?: string;
|
946
950
|
snoozed: boolean;
|
947
951
|
steps?: TaskStep[];
|
948
952
|
dateRemindMe?: number;
|
@@ -1691,7 +1695,6 @@ input UpsertSearchInput {
|
|
1691
1695
|
orderByAlias: String
|
1692
1696
|
status: Int
|
1693
1697
|
parentId: String
|
1694
|
-
groupId: String
|
1695
1698
|
favorite: Boolean
|
1696
1699
|
size: Int
|
1697
1700
|
}`;
|
@@ -1707,7 +1710,6 @@ export interface UpsertSearchInput {
|
|
1707
1710
|
orderByAlias?: OrderByDirection;
|
1708
1711
|
status?: number;
|
1709
1712
|
parentId?: string;
|
1710
|
-
groupId?: string;
|
1711
1713
|
favorite?: boolean;
|
1712
1714
|
size?: number;
|
1713
1715
|
}
|
@@ -1760,8 +1762,8 @@ input SearchInput {
|
|
1760
1762
|
orderByDateDue: String
|
1761
1763
|
orderByAlias: String
|
1762
1764
|
status: Int
|
1765
|
+
originNoteId: String
|
1763
1766
|
parentId: String
|
1764
|
-
groupId: String
|
1765
1767
|
favorite: Boolean
|
1766
1768
|
page: Int
|
1767
1769
|
size: Int
|
@@ -1775,8 +1777,8 @@ export interface SearchInput {
|
|
1775
1777
|
orderByDateDue?: OrderByDirection;
|
1776
1778
|
orderByAlias?: OrderByDirection;
|
1777
1779
|
status?: number;
|
1780
|
+
originNoteId?: string;
|
1778
1781
|
parentId?: string;
|
1779
|
-
groupId?: string;
|
1780
1782
|
favorite?: boolean;
|
1781
1783
|
page?: number;
|
1782
1784
|
size?: number;
|