@bigfootai/bigfoot-types 3.9.8 → 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 +7 -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;
@@ -1145,6 +1147,7 @@ export class Event extends BusinessObject {
1145
1147
  description?: string | null;
1146
1148
  attendees?: PersonAcceptance[] | null;
1147
1149
  conference?: Conference | null;
1150
+ attachments?: Attachment[] | null;
1148
1151
 
1149
1152
  constructor(
1150
1153
  tenantIdCreated: string,
@@ -1713,6 +1716,7 @@ input UpsertSearchInput {
1713
1716
  editorGroupId: String
1714
1717
  parentId: String
1715
1718
  favorite: Boolean
1719
+ snoozed: Boolean
1716
1720
  size: Int
1717
1721
  }`;
1718
1722
  export interface UpsertSearchInput {
@@ -1733,6 +1737,7 @@ export interface UpsertSearchInput {
1733
1737
  editorGroupId?: string;
1734
1738
  parentId?: string;
1735
1739
  favorite?: boolean;
1740
+ snoozed?: boolean;
1736
1741
  size?: number;
1737
1742
  }
1738
1743
 
@@ -1792,6 +1797,7 @@ input SearchInput {
1792
1797
  editorGroupId: String
1793
1798
  parentId: String
1794
1799
  favorite: Boolean
1800
+ snoozed: Boolean
1795
1801
  page: Int
1796
1802
  size: Int
1797
1803
  }`;
@@ -1812,6 +1818,7 @@ export interface SearchInput {
1812
1818
  editorGroupId?: string;
1813
1819
  parentId?: string;
1814
1820
  favorite?: boolean;
1821
+ snoozed?: boolean;
1815
1822
  page?: number;
1816
1823
  size?: number;
1817
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.8",
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",