@bigfootai/bigfoot-types 4.8.2 → 4.8.3
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 -7
- package/model.ts +4 -8
- package/package.json +1 -1
package/model.js
CHANGED
@@ -802,14 +802,9 @@ exports.BlockFields = `${exports.SharedPrimitiveFields}
|
|
802
802
|
document: String
|
803
803
|
reactions: [Reaction]`;
|
804
804
|
exports.BlockFieldsForUpsert = `${exports.SharedPrimitiveFieldsForUpsert}
|
805
|
-
editors: [Editor]!
|
806
|
-
version: Float
|
807
|
-
blockType: String
|
808
805
|
archived: Boolean
|
809
806
|
favorite: Boolean
|
810
807
|
parentId: String
|
811
|
-
score: Float
|
812
|
-
originNoteId: String
|
813
808
|
document: String
|
814
809
|
reactions: [Reaction]`;
|
815
810
|
class Block extends SharedPrimitive {
|
@@ -907,8 +902,6 @@ exports.TaskFields = `${exports.BlockFields}
|
|
907
902
|
exports.TaskFieldsForUpsert = `${exports.BlockFieldsForUpsert}
|
908
903
|
status: String
|
909
904
|
dateDue: Float
|
910
|
-
editorId: String
|
911
|
-
editorGroupId: String
|
912
905
|
snoozed: Boolean
|
913
906
|
steps: [TaskStep]
|
914
907
|
dateRemindMe: Float
|
@@ -1348,6 +1341,7 @@ input DeleteSharingTagInput {
|
|
1348
1341
|
}`;
|
1349
1342
|
exports.UpdateTaskInputQL = `
|
1350
1343
|
input UpsertTaskInput {${exports.TaskFieldsForUpsert}
|
1344
|
+
editor: Editor!
|
1351
1345
|
}`;
|
1352
1346
|
exports.FindTaskInputQL = `
|
1353
1347
|
input FindTaskInput {
|
package/model.ts
CHANGED
@@ -1252,14 +1252,9 @@ export const BlockFields = `${SharedPrimitiveFields}
|
|
1252
1252
|
document: String
|
1253
1253
|
reactions: [Reaction]`;
|
1254
1254
|
export const BlockFieldsForUpsert = `${SharedPrimitiveFieldsForUpsert}
|
1255
|
-
editors: [Editor]!
|
1256
|
-
version: Float
|
1257
|
-
blockType: String
|
1258
1255
|
archived: Boolean
|
1259
1256
|
favorite: Boolean
|
1260
1257
|
parentId: String
|
1261
|
-
score: Float
|
1262
|
-
originNoteId: String
|
1263
1258
|
document: String
|
1264
1259
|
reactions: [Reaction]`;
|
1265
1260
|
export class Block extends SharedPrimitive {
|
@@ -1453,8 +1448,6 @@ export const TaskFields = `${BlockFields}
|
|
1453
1448
|
export const TaskFieldsForUpsert = `${BlockFieldsForUpsert}
|
1454
1449
|
status: String
|
1455
1450
|
dateDue: Float
|
1456
|
-
editorId: String
|
1457
|
-
editorGroupId: String
|
1458
1451
|
snoozed: Boolean
|
1459
1452
|
steps: [TaskStep]
|
1460
1453
|
dateRemindMe: Float
|
@@ -2417,8 +2410,11 @@ export interface DeleteSharingTagInput {
|
|
2417
2410
|
|
2418
2411
|
export const UpdateTaskInputQL = `
|
2419
2412
|
input UpsertTaskInput {${TaskFieldsForUpsert}
|
2413
|
+
editor: Editor!
|
2420
2414
|
}`;
|
2421
|
-
export interface UpsertTaskInput extends Task {
|
2415
|
+
export interface UpsertTaskInput extends Task {
|
2416
|
+
editor: Editor;
|
2417
|
+
}
|
2422
2418
|
|
2423
2419
|
export const FindTaskInputQL = `
|
2424
2420
|
input FindTaskInput {
|