@bigfootai/bigfoot-types 3.7.2 → 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 -5
- package/model.ts +11 -2
- 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!
|
@@ -365,7 +374,6 @@ type Search {${exports.SharedPrimitiveFields}
|
|
365
374
|
search: String
|
366
375
|
tagIds: [String]
|
367
376
|
sentiment: String
|
368
|
-
sharingTags: [SharingTag]
|
369
377
|
orderByDateUpdated: String
|
370
378
|
orderByDateCreated: String
|
371
379
|
orderByAlias: String
|
@@ -907,7 +915,7 @@ input UpsertSearchInput {
|
|
907
915
|
search: String
|
908
916
|
tagIds: [String]
|
909
917
|
sentiment: String
|
910
|
-
sharingTags: [
|
918
|
+
sharingTags: [SharingTagInput]
|
911
919
|
orderByDateUpdated: String
|
912
920
|
orderByDateCreated: String
|
913
921
|
orderByAlias: String
|
@@ -948,6 +956,7 @@ exports.GraphQLTypes = `
|
|
948
956
|
${exports.HighlightQL}
|
949
957
|
${exports.EditorInputQL}
|
950
958
|
${exports.EditorQL}
|
959
|
+
${exports.SharingTagInputQL}
|
951
960
|
${exports.SharingTagQL}
|
952
961
|
${exports.SharingDomainQL}
|
953
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!
|
@@ -541,7 +550,6 @@ type Search {${SharedPrimitiveFields}
|
|
541
550
|
search: String
|
542
551
|
tagIds: [String]
|
543
552
|
sentiment: String
|
544
|
-
sharingTags: [SharingTag]
|
545
553
|
orderByDateUpdated: String
|
546
554
|
orderByDateCreated: String
|
547
555
|
orderByAlias: String
|
@@ -1658,7 +1666,7 @@ input UpsertSearchInput {
|
|
1658
1666
|
search: String
|
1659
1667
|
tagIds: [String]
|
1660
1668
|
sentiment: String
|
1661
|
-
sharingTags: [
|
1669
|
+
sharingTags: [SharingTagInput]
|
1662
1670
|
orderByDateUpdated: String
|
1663
1671
|
orderByDateCreated: String
|
1664
1672
|
orderByAlias: String
|
@@ -1741,6 +1749,7 @@ export const GraphQLTypes = `
|
|
1741
1749
|
${HighlightQL}
|
1742
1750
|
${EditorInputQL}
|
1743
1751
|
${EditorQL}
|
1752
|
+
${SharingTagInputQL}
|
1744
1753
|
${SharingTagQL}
|
1745
1754
|
${SharingDomainQL}
|
1746
1755
|
${SharingTenantQL}
|