@bigfootai/bigfoot-types 4.6.5 → 4.6.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.
- package/model.js +3 -2
- package/model.ts +7 -5
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1097,10 +1097,11 @@ input FindEventInput {
|
|
1097
1097
|
exports.UpsertNoteInputQL = `
|
1098
1098
|
input UpsertNoteInput {
|
1099
1099
|
_id: String
|
1100
|
-
document: String
|
1100
|
+
document: String
|
1101
1101
|
editor: EditorInput!
|
1102
|
-
version: Float
|
1102
|
+
version: Float
|
1103
1103
|
sharingTags: [SharingTagInput]
|
1104
|
+
favorite: Boolean
|
1104
1105
|
}`;
|
1105
1106
|
exports.FindNoteInputQL = `
|
1106
1107
|
input FindNoteInput {
|
package/model.ts
CHANGED
@@ -1990,17 +1990,19 @@ export interface FindEventInput {
|
|
1990
1990
|
export const UpsertNoteInputQL = `
|
1991
1991
|
input UpsertNoteInput {
|
1992
1992
|
_id: String
|
1993
|
-
document: String
|
1993
|
+
document: String
|
1994
1994
|
editor: EditorInput!
|
1995
|
-
version: Float
|
1995
|
+
version: Float
|
1996
1996
|
sharingTags: [SharingTagInput]
|
1997
|
+
favorite: Boolean
|
1997
1998
|
}`;
|
1998
1999
|
export interface UpsertNoteInput {
|
1999
|
-
_id
|
2000
|
-
document
|
2000
|
+
_id?: string;
|
2001
|
+
document?: string;
|
2001
2002
|
editor: Editor;
|
2002
|
-
version
|
2003
|
+
version?: number;
|
2003
2004
|
sharingTags?: SharingTag[];
|
2005
|
+
favorite?: boolean;
|
2004
2006
|
}
|
2005
2007
|
|
2006
2008
|
export const FindNoteInputQL = `
|