@bigfootai/bigfoot-types 3.7.3 → 3.7.5
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 -4
- package/model.ts +14 -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!
|
@@ -369,11 +378,13 @@ type Search {${exports.SharedPrimitiveFields}
|
|
369
378
|
orderByDateCreated: String
|
370
379
|
orderByAlias: String
|
371
380
|
size: Int
|
381
|
+
archived: Boolean!
|
372
382
|
}`;
|
373
383
|
class Search extends SharedPrimitive {
|
374
384
|
constructor(tenantIdCreated, sharingTags) {
|
375
385
|
super(sharingTags);
|
376
386
|
this.tenantIdCreated = tenantIdCreated;
|
387
|
+
this.archived = false;
|
377
388
|
}
|
378
389
|
}
|
379
390
|
exports.Search = Search;
|
@@ -906,7 +917,7 @@ input UpsertSearchInput {
|
|
906
917
|
search: String
|
907
918
|
tagIds: [String]
|
908
919
|
sentiment: String
|
909
|
-
sharingTags: [
|
920
|
+
sharingTags: [SharingTagInput]
|
910
921
|
orderByDateUpdated: String
|
911
922
|
orderByDateCreated: String
|
912
923
|
orderByAlias: String
|
@@ -947,6 +958,7 @@ exports.GraphQLTypes = `
|
|
947
958
|
${exports.HighlightQL}
|
948
959
|
${exports.EditorInputQL}
|
949
960
|
${exports.EditorQL}
|
961
|
+
${exports.SharingTagInputQL}
|
950
962
|
${exports.SharingTagQL}
|
951
963
|
${exports.SharingDomainQL}
|
952
964
|
${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!
|
@@ -545,6 +554,7 @@ type Search {${SharedPrimitiveFields}
|
|
545
554
|
orderByDateCreated: String
|
546
555
|
orderByAlias: String
|
547
556
|
size: Int
|
557
|
+
archived: Boolean!
|
548
558
|
}`;
|
549
559
|
export class Search extends SharedPrimitive {
|
550
560
|
search?: string;
|
@@ -555,11 +565,13 @@ export class Search extends SharedPrimitive {
|
|
555
565
|
orderByAlias?: OrderByDirection;
|
556
566
|
page?: number;
|
557
567
|
size?: number;
|
568
|
+
archived: boolean;
|
558
569
|
|
559
570
|
constructor(tenantIdCreated: string, sharingTags: SharingTag[]) {
|
560
571
|
super(sharingTags);
|
561
572
|
|
562
573
|
this.tenantIdCreated = tenantIdCreated;
|
574
|
+
this.archived = false;
|
563
575
|
}
|
564
576
|
}
|
565
577
|
|
@@ -1657,7 +1669,7 @@ input UpsertSearchInput {
|
|
1657
1669
|
search: String
|
1658
1670
|
tagIds: [String]
|
1659
1671
|
sentiment: String
|
1660
|
-
sharingTags: [
|
1672
|
+
sharingTags: [SharingTagInput]
|
1661
1673
|
orderByDateUpdated: String
|
1662
1674
|
orderByDateCreated: String
|
1663
1675
|
orderByAlias: String
|
@@ -1740,6 +1752,7 @@ export const GraphQLTypes = `
|
|
1740
1752
|
${HighlightQL}
|
1741
1753
|
${EditorInputQL}
|
1742
1754
|
${EditorQL}
|
1755
|
+
${SharingTagInputQL}
|
1743
1756
|
${SharingTagQL}
|
1744
1757
|
${SharingDomainQL}
|
1745
1758
|
${SharingTenantQL}
|