@bigfootai/bigfoot-types 3.5.14 → 3.5.15
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 +6 -6
- package/package.json +1 -1
package/model.js
CHANGED
@@ -778,7 +778,7 @@ input ArchiveNoteInput {
|
|
778
778
|
exports.ArchiveNoteOutputQL = `
|
779
779
|
type ArchiveNoteOutput {
|
780
780
|
_id: String!
|
781
|
-
|
781
|
+
archived: Boolean!
|
782
782
|
}`;
|
783
783
|
exports.FindProviderInputQL = `
|
784
784
|
input FindProviderInput {
|
@@ -825,7 +825,7 @@ input ArchiveTagInput {
|
|
825
825
|
exports.ArchiveTagOutputQL = `
|
826
826
|
type ArchiveTagOutput {
|
827
827
|
_id: String!
|
828
|
-
|
828
|
+
archived: Boolean!
|
829
829
|
}`;
|
830
830
|
exports.UpdateTaskInputQL = `
|
831
831
|
input UpdateTaskInput {
|
@@ -856,7 +856,7 @@ input ArchiveTaskInput {
|
|
856
856
|
exports.ArchiveTaskOutputQL = `
|
857
857
|
type ArchiveTaskOutput {
|
858
858
|
_id: String!
|
859
|
-
|
859
|
+
archived: Boolean!
|
860
860
|
}`;
|
861
861
|
exports.SearchInputQL = `
|
862
862
|
input SearchInput {
|
package/model.ts
CHANGED
@@ -1448,11 +1448,11 @@ export interface ArchiveNoteInput {
|
|
1448
1448
|
export const ArchiveNoteOutputQL = `
|
1449
1449
|
type ArchiveNoteOutput {
|
1450
1450
|
_id: String!
|
1451
|
-
|
1451
|
+
archived: Boolean!
|
1452
1452
|
}`;
|
1453
1453
|
export interface ArchiveNoteOutput {
|
1454
1454
|
_id: string;
|
1455
|
-
|
1455
|
+
archived: boolean;
|
1456
1456
|
}
|
1457
1457
|
|
1458
1458
|
export const FindProviderInputQL = `
|
@@ -1524,11 +1524,11 @@ export interface ArchiveTagInput {
|
|
1524
1524
|
export const ArchiveTagOutputQL = `
|
1525
1525
|
type ArchiveTagOutput {
|
1526
1526
|
_id: String!
|
1527
|
-
|
1527
|
+
archived: Boolean!
|
1528
1528
|
}`;
|
1529
1529
|
export interface ArchiveTagOutput {
|
1530
1530
|
_id: string;
|
1531
|
-
|
1531
|
+
archived: boolean;
|
1532
1532
|
}
|
1533
1533
|
|
1534
1534
|
export const UpdateTaskInputQL = `
|
@@ -1586,11 +1586,11 @@ export interface ArchiveTaskInput {
|
|
1586
1586
|
export const ArchiveTaskOutputQL = `
|
1587
1587
|
type ArchiveTaskOutput {
|
1588
1588
|
_id: String!
|
1589
|
-
|
1589
|
+
archived: Boolean!
|
1590
1590
|
}`;
|
1591
1591
|
export interface ArchiveTaskOutput {
|
1592
1592
|
_id: string;
|
1593
|
-
|
1593
|
+
archived: boolean;
|
1594
1594
|
}
|
1595
1595
|
|
1596
1596
|
export const SearchInputQL = `
|