@bigfootai/bigfoot-types 4.2.5 → 4.2.7
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 +16 -1
- package/model.ts +29 -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,20 @@ type ArchiveSearchOutput {
|
|
1020
1020
|
_id: String!
|
1021
1021
|
archived: Boolean!
|
1022
1022
|
}`;
|
1023
|
+
exports.SearchTagsInputQL = `
|
1024
|
+
input SearchTagsInput {
|
1025
|
+
tagType: String
|
1026
|
+
search: String
|
1027
|
+
email: String
|
1028
|
+
inviteStatus: Int
|
1029
|
+
archived Boolean
|
1030
|
+
orderByAlias: String
|
1031
|
+
orderByFriendlyName: String
|
1032
|
+
orderByDateUpdated: String
|
1033
|
+
orderByDateCreated: String
|
1034
|
+
page: Int
|
1035
|
+
size: Int
|
1036
|
+
}`;
|
1023
1037
|
exports.SearchInputQL = `
|
1024
1038
|
input SearchInput {
|
1025
1039
|
blockType: String
|
@@ -1116,4 +1130,5 @@ ${exports.FindSearchInputQL}
|
|
1116
1130
|
${exports.FindSearchesInputQL}
|
1117
1131
|
${exports.ArchiveSearchInputQL}
|
1118
1132
|
${exports.ArchiveSearchOutputQL}
|
1133
|
+
${exports.SearchTagsInputQL}
|
1119
1134
|
${exports.SearchInputQL}`;
|
package/model.ts
CHANGED
@@ -1899,6 +1899,34 @@ export interface ArchiveSearchOutput {
|
|
1899
1899
|
archived: boolean;
|
1900
1900
|
}
|
1901
1901
|
|
1902
|
+
export const SearchTagsInputQL = `
|
1903
|
+
input SearchTagsInput {
|
1904
|
+
tagType: String
|
1905
|
+
search: String
|
1906
|
+
email: String
|
1907
|
+
inviteStatus: Int
|
1908
|
+
archived Boolean
|
1909
|
+
orderByAlias: String
|
1910
|
+
orderByFriendlyName: String
|
1911
|
+
orderByDateUpdated: String
|
1912
|
+
orderByDateCreated: String
|
1913
|
+
page: Int
|
1914
|
+
size: Int
|
1915
|
+
}`;
|
1916
|
+
export interface SearchTagsInput {
|
1917
|
+
tagType?: TagType;
|
1918
|
+
search?: string;
|
1919
|
+
email?: string;
|
1920
|
+
inviteStatus?: InviteStatus;
|
1921
|
+
archived?: boolean;
|
1922
|
+
orderByAlias?: OrderByDirection;
|
1923
|
+
orderByFriendlyName?: OrderByDirection;
|
1924
|
+
orderByDateUpdated?: OrderByDirection;
|
1925
|
+
orderByDateCreated?: OrderByDirection;
|
1926
|
+
page?: number;
|
1927
|
+
size?: number;
|
1928
|
+
}
|
1929
|
+
|
1902
1930
|
export const SearchInputQL = `
|
1903
1931
|
input SearchInput {
|
1904
1932
|
blockType: String
|
@@ -2017,4 +2045,5 @@ ${FindSearchInputQL}
|
|
2017
2045
|
${FindSearchesInputQL}
|
2018
2046
|
${ArchiveSearchInputQL}
|
2019
2047
|
${ArchiveSearchOutputQL}
|
2048
|
+
${SearchTagsInputQL}
|
2020
2049
|
${SearchInputQL}`;
|