@bigfootai/bigfoot-types 4.6.15 → 4.6.17
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 +25 -8
- package/model.ts +33 -8
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
4
|
-
exports.
|
5
|
-
exports.
|
6
|
-
exports.GraphQLTypes = exports.SearchInputQL = exports.SearchTagsInputQL = exports.ArchiveSearchOutputQL = exports.ArchiveSearchInputQL = exports.FindSearchesInputQL = exports.FindSearchInputQL = exports.UpsertSearchInputQL = exports.ArchiveFolderOutputQL = exports.ArchiveFolderInputQL = exports.FindFoldersInputQL = exports.FindFolderInputQL = exports.UpsertFolderInputQL = exports.ArchiveTaskOutputQL = exports.ArchiveTaskInputQL = exports.FindTasksInputQL = exports.FindTaskInputQL = exports.UpdateTaskInputQL = exports.DeleteSharingTagInputQL = exports.SetSharingTagInputQL = exports.MergeTagInputQL = exports.ArchiveTagOutputQL = void 0;
|
3
|
+
exports.ReferenceBlockQL = exports.ReferenceBlockInputQL = exports.ConnectedProviderQL = exports.CredentialQL = exports.StandardObjectsQL = exports.ProviderResponseQL = 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.BusinessObjectLinkQL = exports.BusinessObjectLinkInputQL = exports.SharingTenantQL = exports.SharingDomainQL = exports.SharingTagQL = exports.SharingTagInputQL = exports.InviteSharingTagInputQL = exports.EditorQL = exports.EditorInputQL = exports.HighlightQL = exports.RelationType = exports.EntityType = exports.RecordType = 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.TaskPriority = exports.SharingLevel = exports.ClientType = exports.TagType = exports.NotificationType = exports.BlockType = void 0;
|
4
|
+
exports.TranscriptionEntryQL = exports.Task = exports.TaskQL = exports.TaskFields = exports.Note = exports.NoteQL = exports.BusinessObject = exports.BusinessObjectQL = exports.BusinessObjectFields = exports.BusinessObjectIngestionRequest = exports.IngestionNotification = exports.Notification = exports.History = exports.BlockProcessingResponse = exports.BlockProcessingRequest = exports.Block = exports.BlockFields = exports.Article = exports.ArticleQL = exports.Person = exports.Organization = exports.Domain = exports.DomainQL = exports.Tenant = exports.TenantQL = exports.ProviderRecommendationQL = exports.TagRecommendationQL = exports.Tag = exports.TagQL = exports.TagFieldsJustSharing = exports.TagFieldsWithoutSharing = exports.Provider = exports.ProviderQL = exports.ProviderApplicationQL = exports.Sync = exports.SyncQL = exports.Search = exports.SearchQL = exports.Folder = exports.FolderQL = exports.Metadata = exports.MetadataFields = exports.SharedPrimitive = exports.SharedPrimitiveFields = exports.Primitive = exports.PrimitiveFields = exports.PersonReferenceQL = exports.PersonReferenceFields = exports.ChangesQL = exports.ChangesInputQL = void 0;
|
5
|
+
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.FindDomainInputQL = exports.FindTenantInputQL = exports.Table = exports.TableQL = exports.Record = exports.RecordQL = exports.TableMetadata = exports.TableMetadataQL = exports.FieldValueQL = exports.FieldQL = exports.OptionQL = exports.FieldVariation = exports.FieldType = exports.Template = exports.TemplateQL = exports.DocumentMetadata = exports.DocumentMetadataQL = exports.BlockDescriptionQL = exports.Website = exports.WebsiteQL = exports.Document = exports.DocumentQL = 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 = void 0;
|
6
|
+
exports.GraphQLTypes = exports.SearchInputQL = exports.SearchTagsInputQL = exports.ArchiveSearchOutputQL = exports.ArchiveSearchInputQL = exports.FindSearchesInputQL = exports.FindSearchInputQL = exports.UpsertSearchInputQL = exports.ArchiveFolderOutputQL = exports.ArchiveFolderInputQL = exports.FindFoldersInputQL = exports.FindFolderInputQL = exports.UpsertFolderInputQL = exports.ArchiveTaskOutputQL = exports.ArchiveTaskInputQL = exports.FindTasksInputQL = exports.FindTaskInputQL = exports.UpdateTaskInputQL = exports.DeleteSharingTagInputQL = exports.SetSharingTagInputQL = exports.MergeTagInputQL = exports.ArchiveTagOutputQL = exports.ArchiveTagInputQL = exports.FindTagsInputQL = void 0;
|
7
7
|
const uuid_1 = require("uuid");
|
8
8
|
/*
|
9
9
|
These are the core primitives of our model. These represent the entities that show
|
@@ -281,6 +281,21 @@ type SharingTenant {
|
|
281
281
|
hasAutoShareTasksOn: Boolean
|
282
282
|
sharingLevel: Int!
|
283
283
|
}`;
|
284
|
+
exports.BusinessObjectLinkInputQL = `
|
285
|
+
input BusinessObjectLinkInput {
|
286
|
+
url: String!
|
287
|
+
provider: String
|
288
|
+
recordType: String
|
289
|
+
_compound: String
|
290
|
+
}`;
|
291
|
+
exports.BusinessObjectLinkQL = `
|
292
|
+
type BusinessObjectLink {
|
293
|
+
url: String
|
294
|
+
provider: String
|
295
|
+
recordType: String
|
296
|
+
blockType: String
|
297
|
+
_compound: String
|
298
|
+
}`;
|
284
299
|
exports.ReactionSkinToneQL = `
|
285
300
|
type ReactionSkinTone {
|
286
301
|
skinTone: String!
|
@@ -475,8 +490,8 @@ type Search {${exports.SharedPrimitiveFields}
|
|
475
490
|
blockType: String
|
476
491
|
_ids: [String]
|
477
492
|
tagIds: [String]
|
478
|
-
linkUrls: [String]
|
479
493
|
emails: [String]
|
494
|
+
businessObjects: [BusinessObjectLink]
|
480
495
|
sentiment: String
|
481
496
|
orderByDateUpdated: String
|
482
497
|
orderByDateCreated: String
|
@@ -656,8 +671,8 @@ type Article {${exports.PrimitiveFields}
|
|
656
671
|
dateRemindMe: Float
|
657
672
|
dates: [EntityEntry]
|
658
673
|
locations: [EntityEntry]
|
659
|
-
linkUrls: [String]
|
660
674
|
emails: [String]
|
675
|
+
businessObjects: [BusinessObjectLink]
|
661
676
|
sharingTags: [SharingTag]
|
662
677
|
tagRecommendations: [TagRecommendation]
|
663
678
|
providerRecommendations: [ProviderRecommendation]
|
@@ -1280,8 +1295,8 @@ input UpsertSearchInput {
|
|
1280
1295
|
search: String
|
1281
1296
|
_ids: [String]
|
1282
1297
|
tagIds: [String]
|
1283
|
-
linkUrls: [String]
|
1284
1298
|
emails: [String]
|
1299
|
+
businessObjects: [BusinessObjectLinkInput]
|
1285
1300
|
sentiment: String
|
1286
1301
|
sharingTags: [SharingTagInput]
|
1287
1302
|
orderByDateUpdated: String
|
@@ -1344,8 +1359,8 @@ input SearchInput {
|
|
1344
1359
|
search: String
|
1345
1360
|
_ids: [String]
|
1346
1361
|
tagIds: [String]
|
1347
|
-
linkUrls: [String]
|
1348
1362
|
emails: [String]
|
1363
|
+
businessObjects: [BusinessObjectLinkInput]
|
1349
1364
|
sentiment: String
|
1350
1365
|
orderByDateUpdated: String
|
1351
1366
|
orderByDateCreated: String
|
@@ -1373,6 +1388,8 @@ ${exports.SharingTagInputQL}
|
|
1373
1388
|
${exports.SharingTagQL}
|
1374
1389
|
${exports.SharingDomainQL}
|
1375
1390
|
${exports.SharingTenantQL}
|
1391
|
+
${exports.BusinessObjectLinkInputQL}
|
1392
|
+
${exports.BusinessObjectLinkQL}
|
1376
1393
|
${exports.ReactionSkinToneQL}
|
1377
1394
|
${exports.TaskStepInputQL}
|
1378
1395
|
${exports.ReactionQL}
|
package/model.ts
CHANGED
@@ -328,6 +328,29 @@ export interface SharingTenant {
|
|
328
328
|
_savedSearchId?: string;
|
329
329
|
}
|
330
330
|
|
331
|
+
export const BusinessObjectLinkInputQL = `
|
332
|
+
input BusinessObjectLinkInput {
|
333
|
+
url: String!
|
334
|
+
provider: String
|
335
|
+
recordType: String
|
336
|
+
_compound: String
|
337
|
+
}`;
|
338
|
+
export const BusinessObjectLinkQL = `
|
339
|
+
type BusinessObjectLink {
|
340
|
+
url: String
|
341
|
+
provider: String
|
342
|
+
recordType: String
|
343
|
+
blockType: String
|
344
|
+
_compound: String
|
345
|
+
}`;
|
346
|
+
export interface BusinessObjectLink {
|
347
|
+
url?: string;
|
348
|
+
provider?: string;
|
349
|
+
recordType?: string;
|
350
|
+
blockType?: BlockType;
|
351
|
+
_compound?: string;
|
352
|
+
}
|
353
|
+
|
331
354
|
export const ReactionSkinToneQL = `
|
332
355
|
type ReactionSkinTone {
|
333
356
|
skinTone: String!
|
@@ -687,8 +710,8 @@ type Search {${SharedPrimitiveFields}
|
|
687
710
|
blockType: String
|
688
711
|
_ids: [String]
|
689
712
|
tagIds: [String]
|
690
|
-
linkUrls: [String]
|
691
713
|
emails: [String]
|
714
|
+
businessObjects: [BusinessObjectLink]
|
692
715
|
sentiment: String
|
693
716
|
orderByDateUpdated: String
|
694
717
|
orderByDateCreated: String
|
@@ -713,8 +736,8 @@ export class Search extends SharedPrimitive {
|
|
713
736
|
search?: string;
|
714
737
|
_ids?: string[];
|
715
738
|
tagIds?: string[];
|
716
|
-
linkUrls?: string[];
|
717
739
|
emails?: string[];
|
740
|
+
businessObjects?: BusinessObjectLink[];
|
718
741
|
sentiment?: string;
|
719
742
|
orderByDateUpdated?: OrderByDirection;
|
720
743
|
orderByDateCreated?: OrderByDirection;
|
@@ -994,8 +1017,8 @@ type Article {${PrimitiveFields}
|
|
994
1017
|
dateRemindMe: Float
|
995
1018
|
dates: [EntityEntry]
|
996
1019
|
locations: [EntityEntry]
|
997
|
-
linkUrls: [String]
|
998
1020
|
emails: [String]
|
1021
|
+
businessObjects: [BusinessObjectLink]
|
999
1022
|
sharingTags: [SharingTag]
|
1000
1023
|
tagRecommendations: [TagRecommendation]
|
1001
1024
|
providerRecommendations: [ProviderRecommendation]
|
@@ -1018,8 +1041,8 @@ export class Article extends Primitive {
|
|
1018
1041
|
dateRemindMe?: number;
|
1019
1042
|
dates?: EntityEntry[];
|
1020
1043
|
locations?: EntityEntry[];
|
1021
|
-
linkUrls?: string[];
|
1022
1044
|
emails?: string[];
|
1045
|
+
businessObjects?: BusinessObjectLink[];
|
1023
1046
|
sharingTags?: SharingTag[];
|
1024
1047
|
tagRecommendations?: TagRecommendation[];
|
1025
1048
|
providerRecommendations?: ProviderRecommendation[];
|
@@ -2322,8 +2345,8 @@ input UpsertSearchInput {
|
|
2322
2345
|
search: String
|
2323
2346
|
_ids: [String]
|
2324
2347
|
tagIds: [String]
|
2325
|
-
linkUrls: [String]
|
2326
2348
|
emails: [String]
|
2349
|
+
businessObjects: [BusinessObjectLinkInput]
|
2327
2350
|
sentiment: String
|
2328
2351
|
sharingTags: [SharingTagInput]
|
2329
2352
|
orderByDateUpdated: String
|
@@ -2347,8 +2370,8 @@ export interface UpsertSearchInput {
|
|
2347
2370
|
search?: string;
|
2348
2371
|
_ids?: string[];
|
2349
2372
|
tagIds?: string[];
|
2350
|
-
linkUrls?: string[];
|
2351
2373
|
emails?: string[];
|
2374
|
+
businessObjects?: BusinessObjectLink[];
|
2352
2375
|
sentiment?: string;
|
2353
2376
|
sharingTags?: SharingTag[];
|
2354
2377
|
orderByDateUpdated?: OrderByDirection;
|
@@ -2451,8 +2474,8 @@ input SearchInput {
|
|
2451
2474
|
search: String
|
2452
2475
|
_ids: [String]
|
2453
2476
|
tagIds: [String]
|
2454
|
-
linkUrls: [String]
|
2455
2477
|
emails: [String]
|
2478
|
+
businessObjects: [BusinessObjectLinkInput]
|
2456
2479
|
sentiment: String
|
2457
2480
|
orderByDateUpdated: String
|
2458
2481
|
orderByDateCreated: String
|
@@ -2476,8 +2499,8 @@ export interface SearchInput {
|
|
2476
2499
|
search?: string;
|
2477
2500
|
_ids?: string[];
|
2478
2501
|
tagIds?: string[];
|
2479
|
-
linkUrls?: string[];
|
2480
2502
|
emails?: string[];
|
2503
|
+
businessObjects?: BusinessObjectLink[];
|
2481
2504
|
sentiment?: string;
|
2482
2505
|
orderByDateUpdated?: OrderByDirection;
|
2483
2506
|
orderByDateCreated?: OrderByDirection;
|
@@ -2506,6 +2529,8 @@ ${SharingTagInputQL}
|
|
2506
2529
|
${SharingTagQL}
|
2507
2530
|
${SharingDomainQL}
|
2508
2531
|
${SharingTenantQL}
|
2532
|
+
${BusinessObjectLinkInputQL}
|
2533
|
+
${BusinessObjectLinkQL}
|
2509
2534
|
${ReactionSkinToneQL}
|
2510
2535
|
${TaskStepInputQL}
|
2511
2536
|
${ReactionQL}
|