@bigfootai/bigfoot-types 5.3.7 → 5.3.8

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 +1 -0
  2. package/model.ts +2 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1497,6 +1497,7 @@ input UpsertNoteInput {
1497
1497
  editor: EditorInput!
1498
1498
  sharingTags: [SharingTagInput]
1499
1499
  favorite: Boolean
1500
+ dateAssociated: Float
1500
1501
  }`;
1501
1502
  exports.FindBlockInputQL = `
1502
1503
  input FindBlockInput {
package/model.ts CHANGED
@@ -2650,6 +2650,7 @@ input UpsertNoteInput {
2650
2650
  editor: EditorInput!
2651
2651
  sharingTags: [SharingTagInput]
2652
2652
  favorite: Boolean
2653
+ dateAssociated: Float
2653
2654
  }`;
2654
2655
  export interface UpsertNoteInput {
2655
2656
  _id?: string;
@@ -2657,6 +2658,7 @@ export interface UpsertNoteInput {
2657
2658
  editor: Editor;
2658
2659
  sharingTags?: SharingTag[];
2659
2660
  favorite?: boolean;
2661
+ dateAssociated?: number;
2660
2662
  }
2661
2663
 
2662
2664
  export const FindBlockInputQL = `
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.3.7",
4
+ "version": "5.3.8",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",