@bigfootai/bigfoot-types 2.12.0 → 2.12.1
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 -3
- package/model.ts +3 -3
- package/package.json +1 -1
package/model.js
CHANGED
|
@@ -629,18 +629,18 @@ type FindSyncInput {
|
|
|
629
629
|
exports.FindTaskInputQL = `
|
|
630
630
|
type FindTaskInput {
|
|
631
631
|
_id: String!
|
|
632
|
-
|
|
632
|
+
archived: Boolean
|
|
633
633
|
}`;
|
|
634
634
|
exports.FindTasksInputQL = `
|
|
635
635
|
type FindTasksInput {
|
|
636
636
|
originNoteId: String
|
|
637
637
|
tagIds: [String]
|
|
638
|
-
|
|
638
|
+
archived: Boolean
|
|
639
639
|
}`;
|
|
640
640
|
exports.ArchiveTaskInputQL = `
|
|
641
641
|
type ArchiveTaskInput {
|
|
642
642
|
_id: String!
|
|
643
|
-
|
|
643
|
+
archived: Boolean
|
|
644
644
|
}`;
|
|
645
645
|
// THE GRAPH QL DEFINITIONS
|
|
646
646
|
exports.GraphQLTypes = `
|
package/model.ts
CHANGED
|
@@ -1309,7 +1309,7 @@ export interface FindSyncInput {
|
|
|
1309
1309
|
export const FindTaskInputQL = `
|
|
1310
1310
|
type FindTaskInput {
|
|
1311
1311
|
_id: String!
|
|
1312
|
-
|
|
1312
|
+
archived: Boolean
|
|
1313
1313
|
}`;
|
|
1314
1314
|
export interface FindTaskInput {
|
|
1315
1315
|
_id: string;
|
|
@@ -1320,7 +1320,7 @@ export const FindTasksInputQL = `
|
|
|
1320
1320
|
type FindTasksInput {
|
|
1321
1321
|
originNoteId: String
|
|
1322
1322
|
tagIds: [String]
|
|
1323
|
-
|
|
1323
|
+
archived: Boolean
|
|
1324
1324
|
}`;
|
|
1325
1325
|
export interface FindTasksInput {
|
|
1326
1326
|
originNoteId?: string;
|
|
@@ -1331,7 +1331,7 @@ export interface FindTasksInput {
|
|
|
1331
1331
|
export const ArchiveTaskInputQL = `
|
|
1332
1332
|
type ArchiveTaskInput {
|
|
1333
1333
|
_id: String!
|
|
1334
|
-
|
|
1334
|
+
archived: Boolean
|
|
1335
1335
|
}`;
|
|
1336
1336
|
export interface ArchiveTaskInput {
|
|
1337
1337
|
_id: string;
|