@bigfootai/bigfoot-types 3.8.1 → 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.
Files changed (3) hide show
  1. package/model.js +13 -7
  2. package/model.ts +25 -12
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -513,7 +513,9 @@ type Article {${exports.PrimitiveFields}
513
513
  archived: Boolean!
514
514
  favorite: Boolean!
515
515
  status: Int
516
- groupId: String
516
+ originNoteId: String
517
+ editorId: String
518
+ editorGroupId: String
517
519
  parentId: String
518
520
  }`;
519
521
  class Article extends Primitive {
@@ -532,7 +534,7 @@ exports.BlockFields = `${exports.SharedPrimitiveFields}
532
534
  archived: Boolean!
533
535
  favorite: Boolean!
534
536
  parentId: String
535
- groupId: String
537
+ originNoteId: String
536
538
  document: String
537
539
  reactions: [Reaction]`;
538
540
  class Block extends SharedPrimitive {
@@ -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
  }`;
@@ -601,7 +602,9 @@ exports.Note = Note;
601
602
  exports.TaskFields = `${exports.BlockFields}
602
603
  status: String!
603
604
  dateDue: Int!
604
- originNoteId: String!
605
+ originNoteId: String
606
+ editorId: String
607
+ editorGroupId: String
605
608
  snoozed: Boolean!
606
609
  steps: [TaskStep]
607
610
  dateRemindMe: Int
@@ -932,8 +935,9 @@ input UpsertSearchInput {
932
935
  orderByDateDue: String
933
936
  orderByAlias: String
934
937
  status: Int
938
+ editorId: String
939
+ editorGroupId: String
935
940
  parentId: String
936
- groupId: String
937
941
  favorite: Boolean
938
942
  size: Int
939
943
  }`;
@@ -966,8 +970,10 @@ input SearchInput {
966
970
  orderByDateDue: String
967
971
  orderByAlias: String
968
972
  status: Int
973
+ originNoteId: String
974
+ editorId: String
975
+ editorGroupId: String
969
976
  parentId: String
970
- groupId: String
971
977
  favorite: Boolean
972
978
  page: Int
973
979
  size: Int
package/model.ts CHANGED
@@ -763,7 +763,9 @@ type Article {${PrimitiveFields}
763
763
  archived: Boolean!
764
764
  favorite: Boolean!
765
765
  status: Int
766
- groupId: String
766
+ originNoteId: String
767
+ editorId: String
768
+ editorGroupId: String
767
769
  parentId: String
768
770
  }`;
769
771
  export class Article extends Primitive {
@@ -781,7 +783,9 @@ export class Article extends Primitive {
781
783
  archived: boolean;
782
784
  favorite: boolean;
783
785
  status: TaskStatus;
784
- groupId?: string;
786
+ originNoteId?: string;
787
+ editorId?: string;
788
+ editorGroupId?: string;
785
789
  parentId?: string;
786
790
  _changes?: Changes;
787
791
  _tasks?: Task[];
@@ -807,7 +811,7 @@ export const BlockFields = `${SharedPrimitiveFields}
807
811
  archived: Boolean!
808
812
  favorite: Boolean!
809
813
  parentId: String
810
- groupId: String
814
+ originNoteId: String
811
815
  document: String
812
816
  reactions: [Reaction]`;
813
817
  export class Block extends SharedPrimitive {
@@ -817,7 +821,7 @@ export class Block extends SharedPrimitive {
817
821
  archived: boolean;
818
822
  favorite: boolean;
819
823
  parentId?: string;
820
- groupId?: string;
824
+ originNoteId?: string;
821
825
  document?: any;
822
826
  reactions?: Reaction[];
823
827
  _changes?: Changes;
@@ -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
  }`;
@@ -930,7 +933,9 @@ export class Note extends Block {
930
933
  export const TaskFields = `${BlockFields}
931
934
  status: String!
932
935
  dateDue: Int!
933
- originNoteId: String!
936
+ originNoteId: String
937
+ editorId: String
938
+ editorGroupId: String
934
939
  snoozed: Boolean!
935
940
  steps: [TaskStep]
936
941
  dateRemindMe: Int
@@ -942,7 +947,9 @@ type Task {${TaskFields}
942
947
  export class Task extends Block {
943
948
  status: TaskStatus;
944
949
  dateDue: number;
945
- originNoteId: string;
950
+ originNoteId?: string;
951
+ editorId?: string;
952
+ editorGroupId?: string;
946
953
  snoozed: boolean;
947
954
  steps?: TaskStep[];
948
955
  dateRemindMe?: number;
@@ -1690,8 +1697,9 @@ input UpsertSearchInput {
1690
1697
  orderByDateDue: String
1691
1698
  orderByAlias: String
1692
1699
  status: Int
1700
+ editorId: String
1701
+ editorGroupId: String
1693
1702
  parentId: String
1694
- groupId: String
1695
1703
  favorite: Boolean
1696
1704
  size: Int
1697
1705
  }`;
@@ -1706,8 +1714,9 @@ export interface UpsertSearchInput {
1706
1714
  orderByDateDue?: OrderByDirection;
1707
1715
  orderByAlias?: OrderByDirection;
1708
1716
  status?: number;
1717
+ editorId?: string;
1718
+ editorGroupId?: string;
1709
1719
  parentId?: string;
1710
- groupId?: string;
1711
1720
  favorite?: boolean;
1712
1721
  size?: number;
1713
1722
  }
@@ -1760,8 +1769,10 @@ input SearchInput {
1760
1769
  orderByDateDue: String
1761
1770
  orderByAlias: String
1762
1771
  status: Int
1772
+ originNoteId: String
1773
+ editorId: String
1774
+ editorGroupId: String
1763
1775
  parentId: String
1764
- groupId: String
1765
1776
  favorite: Boolean
1766
1777
  page: Int
1767
1778
  size: Int
@@ -1775,8 +1786,10 @@ export interface SearchInput {
1775
1786
  orderByDateDue?: OrderByDirection;
1776
1787
  orderByAlias?: OrderByDirection;
1777
1788
  status?: number;
1789
+ originNoteId?: string;
1790
+ editorId?: string;
1791
+ editorGroupId?: string;
1778
1792
  parentId?: string;
1779
- groupId?: string;
1780
1793
  favorite?: boolean;
1781
1794
  page?: number;
1782
1795
  size?: number;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "3.8.1",
4
+ "version": "3.8.3",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",