@bigfootai/bigfoot-types 3.7.3 → 3.7.4
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 -4
- package/model.ts +11 -1
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
4
|
-
exports.
|
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 = void 0;
|
3
|
+
exports.SearchQL = exports.SharedPrimitive = exports.SharedPrimitiveFields = 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.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
|
+
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 = exports.Sync = exports.SyncQL = exports.Search = 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 = 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
|
@@ -213,6 +213,15 @@ type Editor {
|
|
213
213
|
clientId: String!
|
214
214
|
tenantId: String
|
215
215
|
}`;
|
216
|
+
exports.SharingTagInputQL = `
|
217
|
+
input SharingTagInput {
|
218
|
+
tagId: String!
|
219
|
+
isShared: Boolean!
|
220
|
+
sharingApproach: String!
|
221
|
+
sharingLevel: String!
|
222
|
+
confidence: Float
|
223
|
+
text: String
|
224
|
+
}`;
|
216
225
|
exports.SharingTagQL = `
|
217
226
|
type SharingTag {
|
218
227
|
tagId: String!
|
@@ -906,7 +915,7 @@ input UpsertSearchInput {
|
|
906
915
|
search: String
|
907
916
|
tagIds: [String]
|
908
917
|
sentiment: String
|
909
|
-
sharingTags: [
|
918
|
+
sharingTags: [SharingTagInput]
|
910
919
|
orderByDateUpdated: String
|
911
920
|
orderByDateCreated: String
|
912
921
|
orderByAlias: String
|
@@ -947,6 +956,7 @@ exports.GraphQLTypes = `
|
|
947
956
|
${exports.HighlightQL}
|
948
957
|
${exports.EditorInputQL}
|
949
958
|
${exports.EditorQL}
|
959
|
+
${exports.SharingTagInputQL}
|
950
960
|
${exports.SharingTagQL}
|
951
961
|
${exports.SharingDomainQL}
|
952
962
|
${exports.SharingTenantQL}
|
package/model.ts
CHANGED
@@ -238,6 +238,15 @@ export interface Editor {
|
|
238
238
|
tenantId?: string;
|
239
239
|
}
|
240
240
|
|
241
|
+
export const SharingTagInputQL = `
|
242
|
+
input SharingTagInput {
|
243
|
+
tagId: String!
|
244
|
+
isShared: Boolean!
|
245
|
+
sharingApproach: String!
|
246
|
+
sharingLevel: String!
|
247
|
+
confidence: Float
|
248
|
+
text: String
|
249
|
+
}`;
|
241
250
|
export const SharingTagQL = `
|
242
251
|
type SharingTag {
|
243
252
|
tagId: String!
|
@@ -1657,7 +1666,7 @@ input UpsertSearchInput {
|
|
1657
1666
|
search: String
|
1658
1667
|
tagIds: [String]
|
1659
1668
|
sentiment: String
|
1660
|
-
sharingTags: [
|
1669
|
+
sharingTags: [SharingTagInput]
|
1661
1670
|
orderByDateUpdated: String
|
1662
1671
|
orderByDateCreated: String
|
1663
1672
|
orderByAlias: String
|
@@ -1740,6 +1749,7 @@ export const GraphQLTypes = `
|
|
1740
1749
|
${HighlightQL}
|
1741
1750
|
${EditorInputQL}
|
1742
1751
|
${EditorQL}
|
1752
|
+
${SharingTagInputQL}
|
1743
1753
|
${SharingTagQL}
|
1744
1754
|
${SharingDomainQL}
|
1745
1755
|
${SharingTenantQL}
|