@bigfootai/bigfoot-types 2.12.8 → 2.12.9
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 +4 -4
- package/model.ts +4 -4
- package/package.json +1 -1
package/model.js
CHANGED
@@ -685,15 +685,15 @@ input FindEventInput {
|
|
685
685
|
exports.InsertNoteInputQL = `
|
686
686
|
input InsertNoteInput {
|
687
687
|
document: String!
|
688
|
-
editor:
|
689
|
-
changes:
|
688
|
+
editor: EditorInput!
|
689
|
+
changes: ChangesInput!
|
690
690
|
}`;
|
691
691
|
exports.UpsertNoteInputQL = `
|
692
692
|
input UpsertNoteInput {
|
693
693
|
_id: String!
|
694
694
|
document: String!
|
695
|
-
editor:
|
696
|
-
|
695
|
+
editor: EditorInput!
|
696
|
+
version: Float!
|
697
697
|
}`;
|
698
698
|
exports.FindNoteInputQL = `
|
699
699
|
input FindNoteInput {
|
package/model.ts
CHANGED
@@ -1320,8 +1320,8 @@ export interface FindEventInput {
|
|
1320
1320
|
export const InsertNoteInputQL = `
|
1321
1321
|
input InsertNoteInput {
|
1322
1322
|
document: String!
|
1323
|
-
editor:
|
1324
|
-
changes:
|
1323
|
+
editor: EditorInput!
|
1324
|
+
changes: ChangesInput!
|
1325
1325
|
}`;
|
1326
1326
|
export interface InsertNoteInput {
|
1327
1327
|
document: string;
|
@@ -1333,8 +1333,8 @@ export const UpsertNoteInputQL = `
|
|
1333
1333
|
input UpsertNoteInput {
|
1334
1334
|
_id: String!
|
1335
1335
|
document: String!
|
1336
|
-
editor:
|
1337
|
-
|
1336
|
+
editor: EditorInput!
|
1337
|
+
version: Float!
|
1338
1338
|
}`;
|
1339
1339
|
export interface UpsertNoteInput {
|
1340
1340
|
_id: string;
|