@bigfootai/bigfoot-types 3.7.5 → 3.7.6

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 +4 -2
  2. package/model.ts +6 -3
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -216,7 +216,7 @@ type Editor {
216
216
  exports.SharingTagInputQL = `
217
217
  input SharingTagInput {
218
218
  tagId: String!
219
- isShared: Boolean!
219
+ shared: Boolean!
220
220
  sharingApproach: String!
221
221
  sharingLevel: String!
222
222
  confidence: Float
@@ -225,7 +225,7 @@ input SharingTagInput {
225
225
  exports.SharingTagQL = `
226
226
  type SharingTag {
227
227
  tagId: String!
228
- isShared: Boolean!
228
+ shared: Boolean!
229
229
  sharingApproach: String!
230
230
  sharingLevel: String!
231
231
  confidence: Float
@@ -523,6 +523,7 @@ exports.BlockFields = `${exports.SharedPrimitiveFields}
523
523
  version: Float!
524
524
  blockType: String!
525
525
  archived: Boolean!
526
+ favorite: Boolean!
526
527
  document: String
527
528
  reactions: [Reaction]`;
528
529
  class Block extends SharedPrimitive {
@@ -533,6 +534,7 @@ class Block extends SharedPrimitive {
533
534
  this.version = version;
534
535
  this.blockType = blockType;
535
536
  this.archived = false;
537
+ this.favorite = false;
536
538
  }
537
539
  }
538
540
  exports.Block = Block;
package/model.ts CHANGED
@@ -241,7 +241,7 @@ export interface Editor {
241
241
  export const SharingTagInputQL = `
242
242
  input SharingTagInput {
243
243
  tagId: String!
244
- isShared: Boolean!
244
+ shared: Boolean!
245
245
  sharingApproach: String!
246
246
  sharingLevel: String!
247
247
  confidence: Float
@@ -250,7 +250,7 @@ input SharingTagInput {
250
250
  export const SharingTagQL = `
251
251
  type SharingTag {
252
252
  tagId: String!
253
- isShared: Boolean!
253
+ shared: Boolean!
254
254
  sharingApproach: String!
255
255
  sharingLevel: String!
256
256
  confidence: Float
@@ -258,7 +258,7 @@ type SharingTag {
258
258
  }`;
259
259
  export interface SharingTag {
260
260
  tagId: string;
261
- isShared: boolean;
261
+ shared: boolean;
262
262
  sharingApproach: SharingApproach;
263
263
  sharingLevel: SharingLevel;
264
264
  confidence?: number;
@@ -793,6 +793,7 @@ export const BlockFields = `${SharedPrimitiveFields}
793
793
  version: Float!
794
794
  blockType: String!
795
795
  archived: Boolean!
796
+ favorite: Boolean!
796
797
  document: String
797
798
  reactions: [Reaction]`;
798
799
  export class Block extends SharedPrimitive {
@@ -800,6 +801,7 @@ export class Block extends SharedPrimitive {
800
801
  version: number;
801
802
  blockType: BlockType;
802
803
  archived: boolean;
804
+ favorite: boolean;
803
805
  document?: any;
804
806
  reactions?: Reaction[];
805
807
  _changes?: Changes;
@@ -819,6 +821,7 @@ export class Block extends SharedPrimitive {
819
821
  this.blockType = blockType;
820
822
 
821
823
  this.archived = false;
824
+ this.favorite = false;
822
825
  }
823
826
  }
824
827
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "3.7.5",
4
+ "version": "3.7.6",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",