@bigfootai/bigfoot-types 5.0.2 → 5.0.4

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 +2 -2
  2. package/model.ts +4 -4
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -415,12 +415,12 @@ type ConnectedProvider {
415
415
  exports.ReferenceBlockInputQL = `
416
416
  input ReferenceBlockInput {
417
417
  id: String!
418
- type: String!
418
+ blockType: String!
419
419
  }`;
420
420
  exports.ReferenceBlockQL = `
421
421
  type ReferenceBlock {
422
422
  id: String!
423
- type: String!
423
+ blockType: String!
424
424
  }`;
425
425
  exports.ChangesInputQL = `
426
426
  input ChangesInput {
package/model.ts CHANGED
@@ -589,16 +589,16 @@ export interface ConnectedProvider {
589
589
  export const ReferenceBlockInputQL = `
590
590
  input ReferenceBlockInput {
591
591
  id: String!
592
- type: String!
592
+ blockType: String!
593
593
  }`;
594
594
  export const ReferenceBlockQL = `
595
595
  type ReferenceBlock {
596
596
  id: String!
597
- type: String!
597
+ blockType: String!
598
598
  }`;
599
599
  export interface ReferenceBlock {
600
600
  id: string;
601
- type: BlockType;
601
+ blockType: BlockType;
602
602
  }
603
603
 
604
604
  export const ChangesInputQL = `
@@ -2812,7 +2812,7 @@ export interface SearchInput {
2812
2812
  dateDueFrom?: number;
2813
2813
  dateDueTo?: number;
2814
2814
  status?: TaskStatus;
2815
- originNoteId?: string;
2815
+ originReferenceBlock?: ReferenceBlock;
2816
2816
  editorId?: string;
2817
2817
  editorGroupId?: string;
2818
2818
  parentId?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.0.2",
4
+ "version": "5.0.4",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",