@bigfootai/bigfoot-types 4.4.25 → 4.4.27
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 +19 -4
- package/model.ts +25 -1
- 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
3
|
exports.PersonReferenceQL = exports.PersonReferenceFields = exports.ChangesQL = exports.ChangesInputQL = exports.ReferenceBlockQL = exports.ReferenceBlockInputQL = exports.ConnectedProviderQL = exports.CredentialQL = exports.StandardObjectsQL = 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.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.BlockType = void 0;
|
4
|
-
exports.
|
5
|
-
exports.
|
6
|
-
exports.GraphQLTypes = exports.SearchInputQL = exports.SearchTagsInputQL = exports.ArchiveSearchOutputQL = exports.ArchiveSearchInputQL = exports.FindSearchesInputQL = void 0;
|
4
|
+
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.BusinessObjectIngestionRequest = 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.TagRecommendationQL = exports.Tag = exports.TagQL = exports.TagFieldsJustSharing = exports.TagFieldsWithoutSharing = exports.Provider = exports.ProviderQL = exports.ProviderApplicationQL = exports.Sync = exports.SyncQL = exports.Search = exports.SearchQL = exports.Metadata = exports.MetadataFields = exports.SharedPrimitive = exports.SharedPrimitiveFields = exports.Primitive = exports.PrimitiveFields = void 0;
|
5
|
+
exports.ArchiveTaskInputQL = exports.FindTasksInputQL = exports.FindTaskInputQL = exports.UpdateTaskInputQL = exports.DeleteSharingTagInputQL = exports.SetSharingTagInputQL = 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 = 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 = void 0;
|
6
|
+
exports.GraphQLTypes = exports.SearchInputQL = exports.SearchTagsInputQL = exports.ArchiveSearchOutputQL = exports.ArchiveSearchInputQL = exports.FindSearchesInputQL = exports.FindSearchInputQL = exports.UpsertSearchInputQL = exports.ArchiveTaskOutputQL = 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
|
@@ -545,7 +545,6 @@ exports.TenantQL = `
|
|
545
545
|
type Tenant {${exports.PrimitiveFields}
|
546
546
|
domainMemberships: [String]!
|
547
547
|
email: String!
|
548
|
-
domainIdEmail: String!
|
549
548
|
tagId: String!
|
550
549
|
picture: String
|
551
550
|
familyName: String
|
@@ -562,6 +561,10 @@ class Tenant extends Primitive {
|
|
562
561
|
}
|
563
562
|
}
|
564
563
|
exports.Tenant = Tenant;
|
564
|
+
exports.DomainQL = `
|
565
|
+
type Domain {${exports.PrimitiveFields}
|
566
|
+
domain: String!
|
567
|
+
}`;
|
565
568
|
class Domain extends Primitive {
|
566
569
|
constructor(domain, isPublic) {
|
567
570
|
super();
|
@@ -997,6 +1000,14 @@ exports.Table = Table;
|
|
997
1000
|
//// FOR RECORDS END
|
998
1001
|
// METADATA OBJECTS END
|
999
1002
|
// API OBJECTS START
|
1003
|
+
exports.FindTenantInputQL = `
|
1004
|
+
input FindTenantInput {
|
1005
|
+
_id: String!
|
1006
|
+
}`;
|
1007
|
+
exports.FindDomainInputQL = `
|
1008
|
+
input FindDomainInput {
|
1009
|
+
_id: String!
|
1010
|
+
}`;
|
1000
1011
|
exports.FindArticleInputQL = `
|
1001
1012
|
input FindArticleInput {
|
1002
1013
|
originBlockId: String!
|
@@ -1184,6 +1195,7 @@ type ArchiveSearchOutput {
|
|
1184
1195
|
exports.SearchTagsInputQL = `
|
1185
1196
|
input SearchTagsInput {
|
1186
1197
|
tagType: String
|
1198
|
+
parentTagId: String
|
1187
1199
|
tagIds: [String]
|
1188
1200
|
search: String
|
1189
1201
|
email: String
|
@@ -1257,6 +1269,7 @@ ${exports.ConnectedProviderQL}
|
|
1257
1269
|
${exports.ReferenceBlockInputQL}
|
1258
1270
|
${exports.ReferenceBlockQL}
|
1259
1271
|
${exports.ArticleQL}
|
1272
|
+
${exports.DomainQL}
|
1260
1273
|
${exports.TenantQL}
|
1261
1274
|
${exports.BusinessObjectQL}
|
1262
1275
|
${exports.NoteQL}
|
@@ -1279,6 +1292,8 @@ ${exports.FieldValueQL}
|
|
1279
1292
|
${exports.TableMetadataQL}
|
1280
1293
|
${exports.RecordQL}
|
1281
1294
|
${exports.TableQL}
|
1295
|
+
${exports.FindTenantInputQL}
|
1296
|
+
${exports.FindDomainInputQL}
|
1282
1297
|
${exports.FindArticleInputQL}
|
1283
1298
|
${exports.FindArticlesInputQL}
|
1284
1299
|
${exports.FindCalendarInputQL}
|
package/model.ts
CHANGED
@@ -813,7 +813,6 @@ export const TenantQL = `
|
|
813
813
|
type Tenant {${PrimitiveFields}
|
814
814
|
domainMemberships: [String]!
|
815
815
|
email: String!
|
816
|
-
domainIdEmail: String!
|
817
816
|
tagId: String!
|
818
817
|
picture: String
|
819
818
|
familyName: String
|
@@ -848,6 +847,10 @@ export class Tenant extends Primitive {
|
|
848
847
|
}
|
849
848
|
}
|
850
849
|
|
850
|
+
export const DomainQL = `
|
851
|
+
type Domain {${PrimitiveFields}
|
852
|
+
domain: String!
|
853
|
+
}`;
|
851
854
|
export class Domain extends Primitive {
|
852
855
|
domain: string;
|
853
856
|
isPublic: boolean;
|
@@ -1810,6 +1813,22 @@ export class Table extends BusinessObject {
|
|
1810
1813
|
// METADATA OBJECTS END
|
1811
1814
|
|
1812
1815
|
// API OBJECTS START
|
1816
|
+
export const FindTenantInputQL = `
|
1817
|
+
input FindTenantInput {
|
1818
|
+
_id: String!
|
1819
|
+
}`;
|
1820
|
+
export interface FindTenantInput {
|
1821
|
+
_id: string;
|
1822
|
+
}
|
1823
|
+
|
1824
|
+
export const FindDomainInputQL = `
|
1825
|
+
input FindDomainInput {
|
1826
|
+
_id: String!
|
1827
|
+
}`;
|
1828
|
+
export interface FindDomainInput {
|
1829
|
+
_id: string;
|
1830
|
+
}
|
1831
|
+
|
1813
1832
|
export const FindArticleInputQL = `
|
1814
1833
|
input FindArticleInput {
|
1815
1834
|
originBlockId: String!
|
@@ -2154,6 +2173,7 @@ export interface ArchiveSearchOutput {
|
|
2154
2173
|
export const SearchTagsInputQL = `
|
2155
2174
|
input SearchTagsInput {
|
2156
2175
|
tagType: String
|
2176
|
+
parentTagId: String
|
2157
2177
|
tagIds: [String]
|
2158
2178
|
search: String
|
2159
2179
|
email: String
|
@@ -2170,6 +2190,7 @@ input SearchTagsInput {
|
|
2170
2190
|
}`;
|
2171
2191
|
export interface SearchTagsInput {
|
2172
2192
|
tagType?: TagType;
|
2193
|
+
parentTagId?: string;
|
2173
2194
|
tagIds?: string[];
|
2174
2195
|
search?: string;
|
2175
2196
|
email?: string;
|
@@ -2266,6 +2287,7 @@ ${ConnectedProviderQL}
|
|
2266
2287
|
${ReferenceBlockInputQL}
|
2267
2288
|
${ReferenceBlockQL}
|
2268
2289
|
${ArticleQL}
|
2290
|
+
${DomainQL}
|
2269
2291
|
${TenantQL}
|
2270
2292
|
${BusinessObjectQL}
|
2271
2293
|
${NoteQL}
|
@@ -2288,6 +2310,8 @@ ${FieldValueQL}
|
|
2288
2310
|
${TableMetadataQL}
|
2289
2311
|
${RecordQL}
|
2290
2312
|
${TableQL}
|
2313
|
+
${FindTenantInputQL}
|
2314
|
+
${FindDomainInputQL}
|
2291
2315
|
${FindArticleInputQL}
|
2292
2316
|
${FindArticlesInputQL}
|
2293
2317
|
${FindCalendarInputQL}
|