@bigfootai/bigfoot-types 5.2.15 → 5.2.16
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 -1
- package/model.ts +7 -0
- 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;
|
@@ -1837,6 +1839,9 @@ exports.GraphSearchInputFields = `
|
|
1837
1839
|
page: Int
|
1838
1840
|
size: Int
|
1839
1841
|
`;
|
1842
|
+
exports.GraphSearchQL = `
|
1843
|
+
type GraphSearch {${exports.GraphSearchInputFields}
|
1844
|
+
}`;
|
1840
1845
|
exports.GraphSearchInputQL = `
|
1841
1846
|
input GraphSearchInput {${exports.GraphSearchInputFields}
|
1842
1847
|
}`;
|
@@ -1998,5 +2003,6 @@ ${exports.NumberFilterInputQL}
|
|
1998
2003
|
${exports.StringFilterInputQL}
|
1999
2004
|
${exports.BusinessObjectFilterInputQL}
|
2000
2005
|
${exports.SortOptionInputQL}
|
2006
|
+
${exports.GraphSearchQL}
|
2001
2007
|
${exports.GraphSearchInputQL}
|
2002
2008
|
${exports.GraphSearchEventsInputQL}`;
|
package/model.ts
CHANGED
@@ -2051,6 +2051,7 @@ 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;
|
@@ -2060,6 +2061,7 @@ export class BlockData extends Primitive {
|
|
2060
2061
|
htmlContent?: string;
|
2061
2062
|
metadataType?: string;
|
2062
2063
|
tagType?: TagType;
|
2064
|
+
search?: GraphSearchInput;
|
2063
2065
|
|
2064
2066
|
constructor(name: string) {
|
2065
2067
|
super();
|
@@ -2110,6 +2112,7 @@ export class Dashboard extends BusinessObject {
|
|
2110
2112
|
block.blockType = blockDescription.blockType;
|
2111
2113
|
block.title = blockDescription.title;
|
2112
2114
|
block.metadataType = blockDescription.metadataType;
|
2115
|
+
block.tagType = blockDescription.tagType;
|
2113
2116
|
|
2114
2117
|
this.blockData.push(block);
|
2115
2118
|
}
|
@@ -3252,6 +3255,9 @@ export const GraphSearchInputFields = `
|
|
3252
3255
|
page: Int
|
3253
3256
|
size: Int
|
3254
3257
|
`;
|
3258
|
+
export const GraphSearchQL = `
|
3259
|
+
type GraphSearch {${GraphSearchInputFields}
|
3260
|
+
}`;
|
3255
3261
|
export const GraphSearchInputQL = `
|
3256
3262
|
input GraphSearchInput {${GraphSearchInputFields}
|
3257
3263
|
}`;
|
@@ -3457,5 +3463,6 @@ ${NumberFilterInputQL}
|
|
3457
3463
|
${StringFilterInputQL}
|
3458
3464
|
${BusinessObjectFilterInputQL}
|
3459
3465
|
${SortOptionInputQL}
|
3466
|
+
${GraphSearchQL}
|
3460
3467
|
${GraphSearchInputQL}
|
3461
3468
|
${GraphSearchEventsInputQL}`;
|