@bigfootai/bigfoot-types 2.12.8 → 2.12.10

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 +5 -5
  2. package/model.ts +5 -5
  3. 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: Editor!
689
- changes: Changes!
688
+ editor: EditorInput!
689
+ changes: ChangesInput!
690
690
  }`;
691
691
  exports.UpsertNoteInputQL = `
692
692
  input UpsertNoteInput {
693
- _id: String!
693
+ _id: String
694
694
  document: String!
695
- editor: Editor!
696
- changes: Changes!
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: Editor!
1324
- changes: Changes!
1323
+ editor: EditorInput!
1324
+ changes: ChangesInput!
1325
1325
  }`;
1326
1326
  export interface InsertNoteInput {
1327
1327
  document: string;
@@ -1331,10 +1331,10 @@ export interface InsertNoteInput {
1331
1331
 
1332
1332
  export const UpsertNoteInputQL = `
1333
1333
  input UpsertNoteInput {
1334
- _id: String!
1334
+ _id: String
1335
1335
  document: String!
1336
- editor: Editor!
1337
- changes: Changes!
1336
+ editor: EditorInput!
1337
+ version: Float!
1338
1338
  }`;
1339
1339
  export interface UpsertNoteInput {
1340
1340
  _id: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "2.12.8",
4
+ "version": "2.12.10",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",