@bigfootai/bigfoot-types 3.9.9 → 3.9.10

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 +3 -0
  2. package/model.ts +6 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -517,6 +517,7 @@ type Article {${exports.PrimitiveFields}
517
517
  relations: [RelationEntry]
518
518
  archived: Boolean!
519
519
  favorite: Boolean!
520
+ snoozed: Boolean
520
521
  status: Int
521
522
  originNoteId: String
522
523
  editorId: String
@@ -947,6 +948,7 @@ input UpsertSearchInput {
947
948
  editorGroupId: String
948
949
  parentId: String
949
950
  favorite: Boolean
951
+ snoozed: Boolean
950
952
  size: Int
951
953
  }`;
952
954
  exports.FindSearchInputQL = `
@@ -986,6 +988,7 @@ input SearchInput {
986
988
  editorGroupId: String
987
989
  parentId: String
988
990
  favorite: Boolean
991
+ snoozed: Boolean
989
992
  page: Int
990
993
  size: Int
991
994
  }`;
package/model.ts CHANGED
@@ -770,6 +770,7 @@ type Article {${PrimitiveFields}
770
770
  relations: [RelationEntry]
771
771
  archived: Boolean!
772
772
  favorite: Boolean!
773
+ snoozed: Boolean
773
774
  status: Int
774
775
  originNoteId: String
775
776
  editorId: String
@@ -790,6 +791,7 @@ export class Article extends Primitive {
790
791
  relations?: RelationEntry[];
791
792
  archived: boolean;
792
793
  favorite: boolean;
794
+ snoozed?: boolean;
793
795
  status?: TaskStatus;
794
796
  originNoteId?: string;
795
797
  editorId?: string;
@@ -1714,6 +1716,7 @@ input UpsertSearchInput {
1714
1716
  editorGroupId: String
1715
1717
  parentId: String
1716
1718
  favorite: Boolean
1719
+ snoozed: Boolean
1717
1720
  size: Int
1718
1721
  }`;
1719
1722
  export interface UpsertSearchInput {
@@ -1734,6 +1737,7 @@ export interface UpsertSearchInput {
1734
1737
  editorGroupId?: string;
1735
1738
  parentId?: string;
1736
1739
  favorite?: boolean;
1740
+ snoozed?: boolean;
1737
1741
  size?: number;
1738
1742
  }
1739
1743
 
@@ -1793,6 +1797,7 @@ input SearchInput {
1793
1797
  editorGroupId: String
1794
1798
  parentId: String
1795
1799
  favorite: Boolean
1800
+ snoozed: Boolean
1796
1801
  page: Int
1797
1802
  size: Int
1798
1803
  }`;
@@ -1813,6 +1818,7 @@ export interface SearchInput {
1813
1818
  editorGroupId?: string;
1814
1819
  parentId?: string;
1815
1820
  favorite?: boolean;
1821
+ snoozed?: boolean;
1816
1822
  page?: number;
1817
1823
  size?: number;
1818
1824
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "3.9.9",
4
+ "version": "3.9.10",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",