@bigfootai/bigfoot-types 3.8.2 → 3.8.3
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 +7 -2
- package/model.ts +13 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -514,6 +514,8 @@ type Article {${exports.PrimitiveFields}
|
|
514
514
|
favorite: Boolean!
|
515
515
|
status: Int
|
516
516
|
originNoteId: String
|
517
|
+
editorId: String
|
518
|
+
editorGroupId: String
|
517
519
|
parentId: String
|
518
520
|
}`;
|
519
521
|
class Article extends Primitive {
|
@@ -569,8 +571,7 @@ exports.BusinessObjectFields = `${exports.SharedPrimitiveFields}
|
|
569
571
|
dateProcessed: Float!
|
570
572
|
externalId: String!
|
571
573
|
processingReason: String
|
572
|
-
iconUrl: String
|
573
|
-
parentId: String`;
|
574
|
+
iconUrl: String`;
|
574
575
|
exports.BusinessObjectQL = `
|
575
576
|
type BusinessObject {${exports.BusinessObjectFields}
|
576
577
|
}`;
|
@@ -934,6 +935,8 @@ input UpsertSearchInput {
|
|
934
935
|
orderByDateDue: String
|
935
936
|
orderByAlias: String
|
936
937
|
status: Int
|
938
|
+
editorId: String
|
939
|
+
editorGroupId: String
|
937
940
|
parentId: String
|
938
941
|
favorite: Boolean
|
939
942
|
size: Int
|
@@ -968,6 +971,8 @@ input SearchInput {
|
|
968
971
|
orderByAlias: String
|
969
972
|
status: Int
|
970
973
|
originNoteId: String
|
974
|
+
editorId: String
|
975
|
+
editorGroupId: String
|
971
976
|
parentId: String
|
972
977
|
favorite: Boolean
|
973
978
|
page: Int
|
package/model.ts
CHANGED
@@ -764,6 +764,8 @@ type Article {${PrimitiveFields}
|
|
764
764
|
favorite: Boolean!
|
765
765
|
status: Int
|
766
766
|
originNoteId: String
|
767
|
+
editorId: String
|
768
|
+
editorGroupId: String
|
767
769
|
parentId: String
|
768
770
|
}`;
|
769
771
|
export class Article extends Primitive {
|
@@ -782,6 +784,8 @@ export class Article extends Primitive {
|
|
782
784
|
favorite: boolean;
|
783
785
|
status: TaskStatus;
|
784
786
|
originNoteId?: string;
|
787
|
+
editorId?: string;
|
788
|
+
editorGroupId?: string;
|
785
789
|
parentId?: string;
|
786
790
|
_changes?: Changes;
|
787
791
|
_tasks?: Task[];
|
@@ -869,8 +873,7 @@ export const BusinessObjectFields = `${SharedPrimitiveFields}
|
|
869
873
|
dateProcessed: Float!
|
870
874
|
externalId: String!
|
871
875
|
processingReason: String
|
872
|
-
iconUrl: String
|
873
|
-
parentId: String`;
|
876
|
+
iconUrl: String`;
|
874
877
|
export const BusinessObjectQL = `
|
875
878
|
type BusinessObject {${BusinessObjectFields}
|
876
879
|
}`;
|
@@ -1694,6 +1697,8 @@ input UpsertSearchInput {
|
|
1694
1697
|
orderByDateDue: String
|
1695
1698
|
orderByAlias: String
|
1696
1699
|
status: Int
|
1700
|
+
editorId: String
|
1701
|
+
editorGroupId: String
|
1697
1702
|
parentId: String
|
1698
1703
|
favorite: Boolean
|
1699
1704
|
size: Int
|
@@ -1709,6 +1714,8 @@ export interface UpsertSearchInput {
|
|
1709
1714
|
orderByDateDue?: OrderByDirection;
|
1710
1715
|
orderByAlias?: OrderByDirection;
|
1711
1716
|
status?: number;
|
1717
|
+
editorId?: string;
|
1718
|
+
editorGroupId?: string;
|
1712
1719
|
parentId?: string;
|
1713
1720
|
favorite?: boolean;
|
1714
1721
|
size?: number;
|
@@ -1763,6 +1770,8 @@ input SearchInput {
|
|
1763
1770
|
orderByAlias: String
|
1764
1771
|
status: Int
|
1765
1772
|
originNoteId: String
|
1773
|
+
editorId: String
|
1774
|
+
editorGroupId: String
|
1766
1775
|
parentId: String
|
1767
1776
|
favorite: Boolean
|
1768
1777
|
page: Int
|
@@ -1778,6 +1787,8 @@ export interface SearchInput {
|
|
1778
1787
|
orderByAlias?: OrderByDirection;
|
1779
1788
|
status?: number;
|
1780
1789
|
originNoteId?: string;
|
1790
|
+
editorId?: string;
|
1791
|
+
editorGroupId?: string;
|
1781
1792
|
parentId?: string;
|
1782
1793
|
favorite?: boolean;
|
1783
1794
|
page?: number;
|