@bigfootai/bigfoot-types 5.2.15 → 5.2.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 +7 -2
- package/model.ts +8 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -4,7 +4,7 @@ exports.CredentialQL = exports.StandardObjectsQL = exports.ProviderResponseQL =
|
|
4
4
|
exports.Domain = exports.DomainQL = exports.Tenant = exports.TenantQL = exports.Recommendation = exports.RecommendationQL = exports.NotificationRecommendationQL = exports.ShareRecommendationQL = exports.UpsertRecommendationQL = exports.ConnectRecommendationQL = exports.TenantLight = exports.TenantLightQL = exports.TagRecommendationQL = exports.Tag = exports.TagQL = exports.TagFieldsJustSharing = exports.TagFieldsWithoutSharing = exports.GraphTagsInputQL = exports.GraphTagQL = exports.TagTypeQL = exports.Provider = exports.ProviderQL = exports.ProviderApplicationQL = exports.ExternalIdQL = exports.DashboardTagSubscriptionQL = exports.Sync = exports.SyncQL = exports.Search = exports.SearchQL = exports.Folder = exports.FolderQL = exports.History = exports.Metadata = exports.MetadataQL = exports.MetadataFields = exports.SharedPrimitive = exports.SharedPrimitiveFieldsForUpsert = exports.SharedPrimitiveFields = exports.Primitive = exports.PrimitiveFieldsForUpsert = exports.PrimitiveFields = exports.FindExternalTagReferenceInputQL = exports.FindExternalTagReferencesInputQL = exports.PersonReferenceQL = exports.PersonReferenceFields = exports.ChangesQL = exports.ChangesInputQL = exports.ReferenceBlockQL = exports.ReferenceBlockInputQL = exports.ConnectedProviderQL = void 0;
|
5
5
|
exports.Template = exports.TemplateQL = exports.DashboardMetadata = exports.DashboardMetadataQL = exports.DocumentMetadata = exports.DocumentMetadataQL = exports.BlockDescriptionQL = exports.Website = exports.WebsiteQL = exports.Dashboard = exports.DashboardQL = exports.BlockData = exports.BlockDataQL = exports.Document = exports.DocumentQL = exports.DocumentFields = exports.Message = exports.MessageQL = exports.UpsertMessageInputQL = 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.Note = exports.NoteQL = exports.Section = exports.BusinessObject = exports.BusinessObjectQL = exports.BusinessObjectFieldsForUpsert = exports.BusinessObjectFields = exports.BusinessObjectIngestionRequest = exports.BlockProcessingResponse = exports.BlockProcessingRequest = exports.Block = exports.BlockQL = exports.BlockFieldsForUpsert = exports.BlockFields = exports.Person = exports.Organization = void 0;
|
6
6
|
exports.ArchiveFolderInputQL = exports.FindFoldersInputQL = exports.FindFolderInputQL = exports.UpsertFolderInputQL = exports.UpdateTaskInputQL = exports.DeleteSharingTagInputQL = exports.SetSharingTagInputQL = exports.MergeTagInputQL = exports.ArchiveTagOutputQL = exports.ArchiveTagInputQL = exports.FindTagsInputQL = exports.FindTagInputQL = exports.UpsertTagInputQL = exports.SharingTenantInputQL = exports.SharingDomainInputQL = exports.FindSyncInputQL = exports.FindProviderInputQL = exports.ArchiveRecommendationOutputQL = exports.ArchiveRecommendationInputQL = exports.UpdateRecommendationInputQL = exports.ArchiveBlockOutputQL = exports.ArchiveBlockInputQL = exports.FindBlocksInputQL = exports.FindBlockInputQL = exports.UpsertNoteInputQL = exports.FindDashboardInputQL = exports.UpsertDocumentInputQL = exports.FindDocumentInputQL = exports.FindEventInputQL = exports.FindCalendarInputQL = exports.FindDomainInputQL = exports.FindTenantsInputQL = exports.FindTenantInputQL = exports.UpsertRecordsInputQL = exports.FindRecordsInputQL = exports.FindRecordInputQL = exports.Table = exports.TableQL = exports.TableFields = exports.Record = exports.RecordQL = exports.RecordInputQL = exports.TableMetadata = exports.TableMetadataQL = exports.FieldValueQL = exports.FieldValueInputQL = exports.FieldQL = exports.OptionQL = exports.FieldVariation = exports.FieldType = void 0;
|
7
|
-
exports.GraphQLTypes = exports.UpdateTagSharingInputQL = exports.GraphSearchEventsInputQL = exports.GraphSearchInputQL = exports.GraphSearchInputFields = exports.SortOptionInputQL = exports.BusinessObjectFilterInputQL = exports.StringFilterInputQL = exports.NumberFilterInputQL = exports.ChildItemQL = exports.ChildItemInputQL = exports.ChildItemFields = exports.ParentItemQL = exports.ParentItemInputQL = exports.ParentItemFields = exports.RemoveReactionInputQL = exports.AddReactionInputQL = exports.FindReactionsInputQL = exports.ReactionQL = exports.FindTagsVisibilityInputQL = exports.OrderDirection = exports.OrderDirectionQL = exports.TaskStatusQL = exports.RecommendationTypeQL = exports.BlockTypeQL = exports.SearchInputQL = exports.SearchTagsInputQL = exports.ArchiveSearchOutputQL = exports.ArchiveSearchInputQL = exports.FindSearchesInputQL = exports.FindSearchInputQL = exports.UpsertSearchInputQL = exports.ArchiveFolderOutputQL = void 0;
|
7
|
+
exports.GraphQLTypes = exports.UpdateTagSharingInputQL = exports.GraphSearchEventsInputQL = exports.GraphSearchInputQL = exports.GraphSearchQL = exports.GraphSearchInputFields = exports.SortOptionInputQL = exports.BusinessObjectFilterInputQL = exports.StringFilterInputQL = exports.NumberFilterInputQL = exports.ChildItemQL = exports.ChildItemInputQL = exports.ChildItemFields = exports.ParentItemQL = exports.ParentItemInputQL = exports.ParentItemFields = exports.RemoveReactionInputQL = exports.AddReactionInputQL = exports.FindReactionsInputQL = exports.ReactionQL = exports.FindTagsVisibilityInputQL = exports.OrderDirection = exports.OrderDirectionQL = exports.TaskStatusQL = exports.RecommendationTypeQL = exports.BlockTypeQL = exports.SearchInputQL = exports.SearchTagsInputQL = exports.ArchiveSearchOutputQL = exports.ArchiveSearchInputQL = exports.FindSearchesInputQL = exports.FindSearchInputQL = exports.UpsertSearchInputQL = exports.ArchiveFolderOutputQL = void 0;
|
8
8
|
const uuid_1 = require("uuid");
|
9
9
|
/*
|
10
10
|
These are the core primitives of our model. These represent the entities that show
|
@@ -1189,6 +1189,7 @@ type BlockData {
|
|
1189
1189
|
htmlContent: String
|
1190
1190
|
metadataType: String
|
1191
1191
|
tagType: String
|
1192
|
+
search: GraphSearchInput
|
1192
1193
|
}`;
|
1193
1194
|
class BlockData extends Primitive {
|
1194
1195
|
constructor(name) {
|
@@ -1214,6 +1215,7 @@ class Dashboard extends BusinessObject {
|
|
1214
1215
|
block.blockType = blockDescription.blockType;
|
1215
1216
|
block.title = blockDescription.title;
|
1216
1217
|
block.metadataType = blockDescription.metadataType;
|
1218
|
+
block.tagType = blockDescription.tagType;
|
1217
1219
|
this.blockData.push(block);
|
1218
1220
|
}
|
1219
1221
|
this.metadata = dashboardMetadata;
|
@@ -1396,7 +1398,6 @@ input FindRecordInput {
|
|
1396
1398
|
exports.FindRecordsInputQL = `
|
1397
1399
|
input FindRecordsInput {
|
1398
1400
|
_ids: [String]
|
1399
|
-
dashboardIds: [String]
|
1400
1401
|
archived: Boolean
|
1401
1402
|
}`;
|
1402
1403
|
exports.UpsertRecordsInputQL = `
|
@@ -1837,6 +1838,9 @@ exports.GraphSearchInputFields = `
|
|
1837
1838
|
page: Int
|
1838
1839
|
size: Int
|
1839
1840
|
`;
|
1841
|
+
exports.GraphSearchQL = `
|
1842
|
+
type GraphSearch {${exports.GraphSearchInputFields}
|
1843
|
+
}`;
|
1840
1844
|
exports.GraphSearchInputQL = `
|
1841
1845
|
input GraphSearchInput {${exports.GraphSearchInputFields}
|
1842
1846
|
}`;
|
@@ -1998,5 +2002,6 @@ ${exports.NumberFilterInputQL}
|
|
1998
2002
|
${exports.StringFilterInputQL}
|
1999
2003
|
${exports.BusinessObjectFilterInputQL}
|
2000
2004
|
${exports.SortOptionInputQL}
|
2005
|
+
${exports.GraphSearchQL}
|
2001
2006
|
${exports.GraphSearchInputQL}
|
2002
2007
|
${exports.GraphSearchEventsInputQL}`;
|
package/model.ts
CHANGED
@@ -2051,15 +2051,18 @@ type BlockData {
|
|
2051
2051
|
htmlContent: String
|
2052
2052
|
metadataType: String
|
2053
2053
|
tagType: String
|
2054
|
+
search: GraphSearchInput
|
2054
2055
|
}`;
|
2055
2056
|
export class BlockData extends Primitive {
|
2056
2057
|
name: string;
|
2058
|
+
blockId?: string;
|
2057
2059
|
blockType?: BlockType;
|
2058
2060
|
title?: string;
|
2059
2061
|
document?: string;
|
2060
2062
|
htmlContent?: string;
|
2061
2063
|
metadataType?: string;
|
2062
2064
|
tagType?: TagType;
|
2065
|
+
search?: GraphSearchInput;
|
2063
2066
|
|
2064
2067
|
constructor(name: string) {
|
2065
2068
|
super();
|
@@ -2110,6 +2113,7 @@ export class Dashboard extends BusinessObject {
|
|
2110
2113
|
block.blockType = blockDescription.blockType;
|
2111
2114
|
block.title = blockDescription.title;
|
2112
2115
|
block.metadataType = blockDescription.metadataType;
|
2116
|
+
block.tagType = blockDescription.tagType;
|
2113
2117
|
|
2114
2118
|
this.blockData.push(block);
|
2115
2119
|
}
|
@@ -2469,12 +2473,10 @@ export interface FindRecordInput {
|
|
2469
2473
|
export const FindRecordsInputQL = `
|
2470
2474
|
input FindRecordsInput {
|
2471
2475
|
_ids: [String]
|
2472
|
-
dashboardIds: [String]
|
2473
2476
|
archived: Boolean
|
2474
2477
|
}`;
|
2475
2478
|
export interface FindRecordsInput {
|
2476
2479
|
_ids?: string[];
|
2477
|
-
dashboardIds?: string[];
|
2478
2480
|
archived: boolean;
|
2479
2481
|
}
|
2480
2482
|
|
@@ -3252,6 +3254,9 @@ export const GraphSearchInputFields = `
|
|
3252
3254
|
page: Int
|
3253
3255
|
size: Int
|
3254
3256
|
`;
|
3257
|
+
export const GraphSearchQL = `
|
3258
|
+
type GraphSearch {${GraphSearchInputFields}
|
3259
|
+
}`;
|
3255
3260
|
export const GraphSearchInputQL = `
|
3256
3261
|
input GraphSearchInput {${GraphSearchInputFields}
|
3257
3262
|
}`;
|
@@ -3457,5 +3462,6 @@ ${NumberFilterInputQL}
|
|
3457
3462
|
${StringFilterInputQL}
|
3458
3463
|
${BusinessObjectFilterInputQL}
|
3459
3464
|
${SortOptionInputQL}
|
3465
|
+
${GraphSearchQL}
|
3460
3466
|
${GraphSearchInputQL}
|
3461
3467
|
${GraphSearchEventsInputQL}`;
|