@bigfootai/bigfoot-types 4.2.5 → 4.2.6
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 +14 -1
- package/model.ts +25 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.SharedPrimitive = exports.SharedPrimitiveFields = exports.Primitive = exports.PrimitiveFields = exports.PersonReferenceQL = exports.PersonReferenceFields = exports.ChangesQL = exports.ChangesInputQL = exports.ReferenceBlockQL = exports.ConnectedProviderQL = exports.CredentialQL = exports.StandardObjectsQL = 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.SharingTagInputQL = 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.Document = 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.BusinessObjectIngestionRequest = exports.BusinessObjectIngestionResponse = exports.History = 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 = exports.ProviderApplication = exports.ProviderApplicationQL = exports.Sync = exports.SyncQL = exports.Search = exports.SearchQL = 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 = exports.UpsertNoteInputQL = exports.FindEventInputQL = exports.FindCalendarInputQL = exports.FindArticlesInputQL = exports.FindArticleInputQL = exports.Table = exports.FieldVariation = exports.FieldType = exports.Template = exports.Website = void 0;
|
5
|
+
exports.GraphQLTypes = exports.SearchInputQL = exports.SearchTagsInputQL = 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 = exports.UpsertNoteInputQL = exports.FindEventInputQL = exports.FindCalendarInputQL = exports.FindArticlesInputQL = exports.FindArticleInputQL = exports.Table = exports.FieldVariation = exports.FieldType = exports.Template = exports.Website = 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
|
@@ -1020,6 +1020,18 @@ type ArchiveSearchOutput {
|
|
1020
1020
|
_id: String!
|
1021
1021
|
archived: Boolean!
|
1022
1022
|
}`;
|
1023
|
+
exports.SearchTagsInputQL = `
|
1024
|
+
input SearchInput {
|
1025
|
+
tagType: String
|
1026
|
+
search: String
|
1027
|
+
email: String
|
1028
|
+
inviteStatus: Int
|
1029
|
+
archived Boolean
|
1030
|
+
orderByDateUpdated: String
|
1031
|
+
orderByDateCreated: String
|
1032
|
+
page: Int
|
1033
|
+
size: Int
|
1034
|
+
}`;
|
1023
1035
|
exports.SearchInputQL = `
|
1024
1036
|
input SearchInput {
|
1025
1037
|
blockType: String
|
@@ -1116,4 +1128,5 @@ ${exports.FindSearchInputQL}
|
|
1116
1128
|
${exports.FindSearchesInputQL}
|
1117
1129
|
${exports.ArchiveSearchInputQL}
|
1118
1130
|
${exports.ArchiveSearchOutputQL}
|
1131
|
+
${exports.SearchTagsInputQL}
|
1119
1132
|
${exports.SearchInputQL}`;
|
package/model.ts
CHANGED
@@ -1899,6 +1899,30 @@ export interface ArchiveSearchOutput {
|
|
1899
1899
|
archived: boolean;
|
1900
1900
|
}
|
1901
1901
|
|
1902
|
+
export const SearchTagsInputQL = `
|
1903
|
+
input SearchInput {
|
1904
|
+
tagType: String
|
1905
|
+
search: String
|
1906
|
+
email: String
|
1907
|
+
inviteStatus: Int
|
1908
|
+
archived Boolean
|
1909
|
+
orderByDateUpdated: String
|
1910
|
+
orderByDateCreated: String
|
1911
|
+
page: Int
|
1912
|
+
size: Int
|
1913
|
+
}`;
|
1914
|
+
export interface SearchTagsInput {
|
1915
|
+
tagType?: TagType;
|
1916
|
+
search?: string;
|
1917
|
+
email?: string;
|
1918
|
+
inviteStatus?: InviteStatus;
|
1919
|
+
archived?: boolean;
|
1920
|
+
orderByDateUpdated?: OrderByDirection;
|
1921
|
+
orderByDateCreated?: OrderByDirection;
|
1922
|
+
page?: number;
|
1923
|
+
size?: number;
|
1924
|
+
}
|
1925
|
+
|
1902
1926
|
export const SearchInputQL = `
|
1903
1927
|
input SearchInput {
|
1904
1928
|
blockType: String
|
@@ -2017,4 +2041,5 @@ ${FindSearchInputQL}
|
|
2017
2041
|
${FindSearchesInputQL}
|
2018
2042
|
${ArchiveSearchInputQL}
|
2019
2043
|
${ArchiveSearchOutputQL}
|
2044
|
+
${SearchTagsInputQL}
|
2020
2045
|
${SearchInputQL}`;
|