@bigfootai/bigfoot-types 3.5.13 → 3.5.14
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 +12 -12
- package/model.ts +6 -6
- package/package.json +1 -1
package/model.js
CHANGED
@@ -220,14 +220,14 @@ type SharingTag {
|
|
220
220
|
exports.SharingDomainQL = `
|
221
221
|
type SharingDomain {
|
222
222
|
domainId: String!
|
223
|
-
archived: Boolean
|
223
|
+
archived: Boolean
|
224
224
|
sharingLevel: Int!
|
225
225
|
}`;
|
226
226
|
exports.SharingTenantQL = `
|
227
227
|
type SharingTenant {
|
228
228
|
tenantId: String!
|
229
|
-
hasAutoShareNotesOn: Boolean
|
230
|
-
hasAutoShareTasksOn: Boolean
|
229
|
+
hasAutoShareNotesOn: Boolean
|
230
|
+
hasAutoShareTasksOn: Boolean
|
231
231
|
sharingLevel: Int!
|
232
232
|
}`;
|
233
233
|
exports.ReactionSkinToneQL = `
|
@@ -773,12 +773,12 @@ input FindNotesInput {
|
|
773
773
|
exports.ArchiveNoteInputQL = `
|
774
774
|
input ArchiveNoteInput {
|
775
775
|
_id: String!
|
776
|
-
|
776
|
+
archive: Boolean
|
777
777
|
}`;
|
778
778
|
exports.ArchiveNoteOutputQL = `
|
779
779
|
type ArchiveNoteOutput {
|
780
780
|
_id: String!
|
781
|
-
|
781
|
+
archive: Boolean
|
782
782
|
}`;
|
783
783
|
exports.FindProviderInputQL = `
|
784
784
|
input FindProviderInput {
|
@@ -791,14 +791,14 @@ input FindSyncInput {
|
|
791
791
|
exports.SharingDomainInputQL = `
|
792
792
|
input SharingDomainInput {
|
793
793
|
domainId: String!
|
794
|
-
archived: Boolean
|
794
|
+
archived: Boolean
|
795
795
|
sharingLevel: Int!
|
796
796
|
}`;
|
797
797
|
exports.SharingTenantInputQL = `
|
798
798
|
input SharingTenantInput {
|
799
799
|
tenantId: String!
|
800
|
-
hasAutoShareNotesOn: Boolean
|
801
|
-
hasAutoShareTasksOn: Boolean
|
800
|
+
hasAutoShareNotesOn: Boolean
|
801
|
+
hasAutoShareTasksOn: Boolean
|
802
802
|
sharingLevel: Int!
|
803
803
|
}`;
|
804
804
|
exports.UpsertTagInputQL = `
|
@@ -820,12 +820,12 @@ input FindTagsInput {
|
|
820
820
|
exports.ArchiveTagInputQL = `
|
821
821
|
input ArchiveTagInput {
|
822
822
|
_id: String!
|
823
|
-
|
823
|
+
archive: Boolean
|
824
824
|
}`;
|
825
825
|
exports.ArchiveTagOutputQL = `
|
826
826
|
type ArchiveTagOutput {
|
827
827
|
_id: String!
|
828
|
-
|
828
|
+
archive: Boolean
|
829
829
|
}`;
|
830
830
|
exports.UpdateTaskInputQL = `
|
831
831
|
input UpdateTaskInput {
|
@@ -851,12 +851,12 @@ input FindTasksInput {
|
|
851
851
|
exports.ArchiveTaskInputQL = `
|
852
852
|
input ArchiveTaskInput {
|
853
853
|
_id: String!
|
854
|
-
|
854
|
+
archive: Boolean
|
855
855
|
}`;
|
856
856
|
exports.ArchiveTaskOutputQL = `
|
857
857
|
type ArchiveTaskOutput {
|
858
858
|
_id: String!
|
859
|
-
|
859
|
+
archive: Boolean
|
860
860
|
}`;
|
861
861
|
exports.SearchInputQL = `
|
862
862
|
input SearchInput {
|
package/model.ts
CHANGED
@@ -1438,7 +1438,7 @@ export interface FindNotesInput {
|
|
1438
1438
|
export const ArchiveNoteInputQL = `
|
1439
1439
|
input ArchiveNoteInput {
|
1440
1440
|
_id: String!
|
1441
|
-
|
1441
|
+
archive: Boolean
|
1442
1442
|
}`;
|
1443
1443
|
export interface ArchiveNoteInput {
|
1444
1444
|
_id: string;
|
@@ -1448,7 +1448,7 @@ export interface ArchiveNoteInput {
|
|
1448
1448
|
export const ArchiveNoteOutputQL = `
|
1449
1449
|
type ArchiveNoteOutput {
|
1450
1450
|
_id: String!
|
1451
|
-
|
1451
|
+
archive: Boolean
|
1452
1452
|
}`;
|
1453
1453
|
export interface ArchiveNoteOutput {
|
1454
1454
|
_id: string;
|
@@ -1514,7 +1514,7 @@ export interface FindTagsInput {
|
|
1514
1514
|
export const ArchiveTagInputQL = `
|
1515
1515
|
input ArchiveTagInput {
|
1516
1516
|
_id: String!
|
1517
|
-
|
1517
|
+
archive: Boolean
|
1518
1518
|
}`;
|
1519
1519
|
export interface ArchiveTagInput {
|
1520
1520
|
_id: string;
|
@@ -1524,7 +1524,7 @@ export interface ArchiveTagInput {
|
|
1524
1524
|
export const ArchiveTagOutputQL = `
|
1525
1525
|
type ArchiveTagOutput {
|
1526
1526
|
_id: String!
|
1527
|
-
|
1527
|
+
archive: Boolean
|
1528
1528
|
}`;
|
1529
1529
|
export interface ArchiveTagOutput {
|
1530
1530
|
_id: string;
|
@@ -1576,7 +1576,7 @@ export interface FindTasksInput {
|
|
1576
1576
|
export const ArchiveTaskInputQL = `
|
1577
1577
|
input ArchiveTaskInput {
|
1578
1578
|
_id: String!
|
1579
|
-
|
1579
|
+
archive: Boolean
|
1580
1580
|
}`;
|
1581
1581
|
export interface ArchiveTaskInput {
|
1582
1582
|
_id: string;
|
@@ -1586,7 +1586,7 @@ export interface ArchiveTaskInput {
|
|
1586
1586
|
export const ArchiveTaskOutputQL = `
|
1587
1587
|
type ArchiveTaskOutput {
|
1588
1588
|
_id: String!
|
1589
|
-
|
1589
|
+
archive: Boolean
|
1590
1590
|
}`;
|
1591
1591
|
export interface ArchiveTaskOutput {
|
1592
1592
|
_id: string;
|