@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.
- package/model.js +1 -0
- package/model.ts +2 -0
- package/package.json +1 -1
package/model.js
CHANGED
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 = `
|