@bigfootai/bigfoot-types 3.6.1 → 3.6.2
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 +37 -2
- package/model.ts +67 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.Sync = exports.SyncQL = exports.Search = exports.SearchQL = exports.Primitive = exports.PrimitiveFields = exports.PersonReferenceQL = exports.PersonReferenceFields = exports.ChangesQL = exports.ChangesInputQL = exports.ReferenceBlockQL = exports.ConnectedProviderQL = exports.CredentialQL = exports.ProviderRequestQL = exports.ProviderInfoQL = exports.DateEntityEntryQL = exports.EntityEntryQL = exports.EntityEntryFields = exports.RelationEntryQL = exports.ArgumentEntryQL = exports.EntityReferenceQL = exports.DocumentSentimentQL = exports.TaskStepQL = exports.TaskStepInputQL = exports.ReactionQL = exports.ReactionSkinToneQL = exports.SharingTenantQL = exports.SharingDomainQL = exports.SharingTagQL = exports.EditorQL = exports.EditorInputQL = exports.HighlightQL = exports.RelationType = exports.EntityType = exports.ProcessingStage = exports.MutationType = exports.MarkType = exports.DocumentType = exports.RecurrenceRFC = exports.TagRecommendationVariation = exports.TagRecommendationType = exports.InviteStatus = exports.OrderByDirection = exports.SharingApproach = exports.StepStatus = exports.TaskStatus = exports.SharingLevel = exports.ClientType = exports.TagType = exports.BlockType = void 0;
|
4
4
|
exports.UpsertNoteInputQL = exports.FindEventInputQL = exports.FindCalendarInputQL = exports.FindArticlesInputQL = exports.FindArticleInputQL = exports.Table = exports.FieldVariation = exports.FieldType = exports.Template = exports.Website = exports.Thread = exports.Todo = exports.Calendar = exports.CalendarQL = exports.Event = exports.EventQL = exports.PersonAcceptanceQL = exports.ResponseStatus = exports.EventStatus = exports.Conference = exports.ConferenceQL = exports.ConferenceEntrypointQL = exports.TranscriptionQL = exports.TranscriptionEntryQL = exports.Task = exports.TaskQL = exports.TaskFields = exports.Note = exports.NoteQL = exports.BusinessObject = exports.BusinessObjectQL = exports.BusinessObjectFields = exports.BlockProcessingResponse = exports.BlockProcessingRequest = exports.Block = exports.BlockFields = exports.Article = exports.ArticleQL = exports.Person = exports.Organization = exports.Domain = exports.Tenant = exports.TenantQL = exports.TagRecommendationQL = exports.Tag = exports.TagQL = exports.TagFieldsJustSharing = exports.TagFieldsWithoutSharing = exports.Provider = exports.ProviderQL = void 0;
|
5
|
-
exports.GraphQLTypes = exports.SearchInputQL = exports.ArchiveTaskOutputQL = exports.ArchiveTaskInputQL = exports.FindTasksInputQL = exports.FindTaskInputQL = exports.UpdateTaskInputQL = exports.ArchiveTagOutputQL = exports.ArchiveTagInputQL = exports.FindTagsInputQL = exports.FindTagInputQL = exports.UpsertTagInputQL = exports.SharingTenantInputQL = exports.SharingDomainInputQL = exports.FindSyncInputQL = exports.FindProviderInputQL = exports.ArchiveNoteOutputQL = exports.ArchiveNoteInputQL = exports.FindNotesInputQL = exports.FindNoteInputQL = void 0;
|
5
|
+
exports.GraphQLTypes = exports.SearchInputQL = exports.ArchiveSearchOutputQL = exports.ArchiveSearchInputQL = exports.FindSearchesInputQL = exports.FindSearchInputQL = exports.UpsertSearchInputQL = exports.ArchiveTaskOutputQL = exports.ArchiveTaskInputQL = exports.FindTasksInputQL = exports.FindTaskInputQL = exports.UpdateTaskInputQL = exports.ArchiveTagOutputQL = exports.ArchiveTagInputQL = exports.FindTagsInputQL = exports.FindTagInputQL = exports.UpsertTagInputQL = exports.SharingTenantInputQL = exports.SharingDomainInputQL = exports.FindSyncInputQL = exports.FindProviderInputQL = exports.ArchiveNoteOutputQL = exports.ArchiveNoteInputQL = exports.FindNotesInputQL = exports.FindNoteInputQL = void 0;
|
6
6
|
const uuid_1 = require("uuid");
|
7
7
|
/*
|
8
8
|
These are the core primitives of our model. These represent the entities that show
|
@@ -894,12 +894,42 @@ type ArchiveTaskOutput {
|
|
894
894
|
_id: String!
|
895
895
|
archived: Boolean!
|
896
896
|
}`;
|
897
|
+
exports.UpsertSearchInputQL = `
|
898
|
+
input UpsertSearchInput {
|
899
|
+
_id: String
|
900
|
+
search: String
|
901
|
+
tagIds: [String]
|
902
|
+
sentiment: String
|
903
|
+
sharingTags: [SharingTag]
|
904
|
+
orderByDateUpdated String
|
905
|
+
orderByDateCreated String
|
906
|
+
orderByAlias String
|
907
|
+
size: Int
|
908
|
+
}`;
|
909
|
+
exports.FindSearchInputQL = `
|
910
|
+
input FindSearchInput {
|
911
|
+
_id: String!
|
912
|
+
archived: Boolean
|
913
|
+
}`;
|
914
|
+
exports.FindSearchesInputQL = `
|
915
|
+
input FindSearchesInput {
|
916
|
+
archived: Boolean
|
917
|
+
}`;
|
918
|
+
exports.ArchiveSearchInputQL = `
|
919
|
+
input ArchiveSearchInput {
|
920
|
+
_id: String!
|
921
|
+
archive: Boolean
|
922
|
+
}`;
|
923
|
+
exports.ArchiveSearchOutputQL = `
|
924
|
+
type ArchiveSearchOutput {
|
925
|
+
_id: String!
|
926
|
+
archived: Boolean!
|
927
|
+
}`;
|
897
928
|
exports.SearchInputQL = `
|
898
929
|
input SearchInput {
|
899
930
|
search: String
|
900
931
|
tagIds: [String]
|
901
932
|
sentiment: String
|
902
|
-
sharingTags: [SharingTag]
|
903
933
|
orderByDateUpdated String
|
904
934
|
orderByDateCreated String
|
905
935
|
orderByAlias String
|
@@ -972,4 +1002,9 @@ ${exports.FindTaskInputQL}
|
|
972
1002
|
${exports.FindTasksInputQL}
|
973
1003
|
${exports.ArchiveTaskInputQL}
|
974
1004
|
${exports.ArchiveTaskOutputQL}
|
1005
|
+
${exports.UpsertSearchInputQL}
|
1006
|
+
${exports.FindSearchInputQL}
|
1007
|
+
${exports.FindSearchesInputQL}
|
1008
|
+
${exports.ArchiveSearchInputQL}
|
1009
|
+
${exports.ArchiveSearchOutputQL}
|
975
1010
|
${exports.SearchInputQL}`;
|
package/model.ts
CHANGED
@@ -1644,12 +1644,73 @@ export interface ArchiveTaskOutput {
|
|
1644
1644
|
archived: boolean;
|
1645
1645
|
}
|
1646
1646
|
|
1647
|
+
export const UpsertSearchInputQL = `
|
1648
|
+
input UpsertSearchInput {
|
1649
|
+
_id: String
|
1650
|
+
search: String
|
1651
|
+
tagIds: [String]
|
1652
|
+
sentiment: String
|
1653
|
+
sharingTags: [SharingTag]
|
1654
|
+
orderByDateUpdated String
|
1655
|
+
orderByDateCreated String
|
1656
|
+
orderByAlias String
|
1657
|
+
size: Int
|
1658
|
+
}`;
|
1659
|
+
export interface UpsertSearchInput {
|
1660
|
+
_id: string;
|
1661
|
+
search?: string;
|
1662
|
+
tagIds?: string[];
|
1663
|
+
sentiment?: string;
|
1664
|
+
sharingTags?: SharingTag[];
|
1665
|
+
orderByDateUpdated?: OrderByDirection;
|
1666
|
+
orderByDateCreated?: OrderByDirection;
|
1667
|
+
orderByAlias?: OrderByDirection;
|
1668
|
+
size?: number;
|
1669
|
+
}
|
1670
|
+
|
1671
|
+
export const FindSearchInputQL = `
|
1672
|
+
input FindSearchInput {
|
1673
|
+
_id: String!
|
1674
|
+
archived: Boolean
|
1675
|
+
}`;
|
1676
|
+
export interface FindSearchInput {
|
1677
|
+
_id: string;
|
1678
|
+
archived?: boolean;
|
1679
|
+
}
|
1680
|
+
|
1681
|
+
export const FindSearchesInputQL = `
|
1682
|
+
input FindSearchesInput {
|
1683
|
+
archived: Boolean
|
1684
|
+
}`;
|
1685
|
+
export interface FindSearchesInput {
|
1686
|
+
archived?: boolean;
|
1687
|
+
}
|
1688
|
+
|
1689
|
+
export const ArchiveSearchInputQL = `
|
1690
|
+
input ArchiveSearchInput {
|
1691
|
+
_id: String!
|
1692
|
+
archive: Boolean
|
1693
|
+
}`;
|
1694
|
+
export interface ArchiveSearchInput {
|
1695
|
+
_id: string;
|
1696
|
+
archive?: boolean;
|
1697
|
+
}
|
1698
|
+
|
1699
|
+
export const ArchiveSearchOutputQL = `
|
1700
|
+
type ArchiveSearchOutput {
|
1701
|
+
_id: String!
|
1702
|
+
archived: Boolean!
|
1703
|
+
}`;
|
1704
|
+
export interface ArchiveSearchOutput {
|
1705
|
+
_id: string;
|
1706
|
+
archived: boolean;
|
1707
|
+
}
|
1708
|
+
|
1647
1709
|
export const SearchInputQL = `
|
1648
1710
|
input SearchInput {
|
1649
1711
|
search: String
|
1650
1712
|
tagIds: [String]
|
1651
1713
|
sentiment: String
|
1652
|
-
sharingTags: [SharingTag]
|
1653
1714
|
orderByDateUpdated String
|
1654
1715
|
orderByDateCreated String
|
1655
1716
|
orderByAlias String
|
@@ -1660,7 +1721,6 @@ export interface SearchInput {
|
|
1660
1721
|
search?: string;
|
1661
1722
|
tagIds?: string[];
|
1662
1723
|
sentiment?: string;
|
1663
|
-
sharingTags?: SharingTag[];
|
1664
1724
|
orderByDateUpdated?: OrderByDirection;
|
1665
1725
|
orderByDateCreated?: OrderByDirection;
|
1666
1726
|
orderByAlias?: OrderByDirection;
|
@@ -1734,4 +1794,9 @@ ${FindTaskInputQL}
|
|
1734
1794
|
${FindTasksInputQL}
|
1735
1795
|
${ArchiveTaskInputQL}
|
1736
1796
|
${ArchiveTaskOutputQL}
|
1797
|
+
${UpsertSearchInputQL}
|
1798
|
+
${FindSearchInputQL}
|
1799
|
+
${FindSearchesInputQL}
|
1800
|
+
${ArchiveSearchInputQL}
|
1801
|
+
${ArchiveSearchOutputQL}
|
1737
1802
|
${SearchInputQL}`;
|