@bigfootai/bigfoot-types 5.4.93 → 5.4.95
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/dist/metadata/dashboards/record_update.d.ts.map +1 -1
- package/dist/metadata/dashboards/record_update.js.map +1 -1
- package/dist/metadata/providers/generate.js +1 -0
- package/dist/metadata/providers/generate.js.map +1 -1
- package/dist/metadata/providers/noded.js +1 -1
- package/dist/metadata/providers/noded.js.map +1 -1
- package/dist/types.d.ts +66 -68
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +40 -42
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
- package/dist/metadata/documents/customer_meeting_summary_email.d.ts +0 -3
- package/dist/metadata/documents/customer_meeting_summary_email.d.ts.map +0 -1
- package/dist/metadata/documents/customer_meeting_summary_email.js +0 -27
- package/dist/metadata/documents/customer_meeting_summary_email.js.map +0 -1
package/dist/types.d.ts
CHANGED
@@ -74,13 +74,10 @@ export declare enum TaskStatus {
|
|
74
74
|
InProgress = "in_progress",
|
75
75
|
Completed = "completed"
|
76
76
|
}
|
77
|
-
export declare enum StepStatus {
|
78
|
-
NotStarted = "not_started",
|
79
|
-
Completed = "completed"
|
80
|
-
}
|
81
77
|
export declare enum SharingApproach {
|
82
|
-
Inline = 0,//
|
83
|
-
Explicit = 1
|
78
|
+
Inline = 0,// The user has used this tag in the note
|
79
|
+
Explicit = 1,// The user explicitly shared the tag without it being in the note
|
80
|
+
System = 2
|
84
81
|
}
|
85
82
|
export declare enum OrderByDirection {
|
86
83
|
Ascending = "asc",
|
@@ -223,33 +220,29 @@ export declare enum RelationType {
|
|
223
220
|
SubsidiaryOf = "subsidiaryOf"
|
224
221
|
}
|
225
222
|
export declare enum PubSubType {
|
226
|
-
BlockChanged = "blockChanged",
|
227
223
|
BlockCreated = "blockCreated",
|
228
224
|
BlockUpdated = "blockUpdated",
|
229
225
|
BlockArchived = "blockArchived",
|
230
|
-
RecommendationChanged = "recommendationChanged",
|
231
226
|
RecommendationCreated = "recommendationCreated",
|
232
227
|
RecommendationUpdated = "recommendationUpdated",
|
233
228
|
RecommendationArchived = "recommendationArchived",
|
234
229
|
ReactionChangedForBlock = "reactionChangedForBlock",
|
235
|
-
ReactionAddedToBlock = "reactionAddedToBlock",
|
236
|
-
ReactionRemovedFromBlock = "reactionRemovedFromBlock",
|
237
|
-
MessageChangedForBlock = "messageChangedForBlock",
|
238
230
|
MessageCreatedForBlock = "messageCreatedForBlock",
|
239
231
|
MessageUpdatedForBlock = "messageUpdatedForBlock",
|
240
232
|
MessageArchivedForBlock = "messageArchivedForBlock",
|
241
|
-
MessageChangedForTag = "messageChangedForTag",
|
242
233
|
MessageCreatedForTag = "messageCreatedForTag",
|
243
234
|
MessageUpdatedForTag = "messageUpdatedForTag",
|
244
235
|
MessageArchivedForTag = "messageArchivedForTag",
|
245
236
|
NavigationUpdated = "navigationUpdated",
|
246
237
|
ProviderConnectionChanged = "providerConnectionChanged",
|
247
238
|
SearchArchived = "searchArchived",
|
248
|
-
SearchChanged = "searchChanged",
|
249
239
|
SearchCreated = "searchCreated",
|
250
240
|
SearchUpdated = "searchUpdated",
|
251
241
|
SyncUpdated = "syncUpdated",
|
252
242
|
RecentTagsUpdated = "recentTagsUpdated",
|
243
|
+
TagArchived = "tagArchived",
|
244
|
+
TagCreated = "tagCreated",
|
245
|
+
TagUpdated = "tagUpdated",
|
253
246
|
TenantUpdated = "tenantUpdated"
|
254
247
|
}
|
255
248
|
export interface PaginatedInput {
|
@@ -336,12 +329,6 @@ export interface ExternalIdLink {
|
|
336
329
|
connectionId: string;
|
337
330
|
tagSubType?: string;
|
338
331
|
}
|
339
|
-
export declare const TaskStepInputQL = "\ninput TaskStepInput {\n content: String!\n status: String!\n}";
|
340
|
-
export declare const TaskStepQL = "\ntype TaskStep {\n content: String!\n status: String!\n}";
|
341
|
-
export interface TaskStep {
|
342
|
-
content: string;
|
343
|
-
status: StepStatus;
|
344
|
-
}
|
345
332
|
export declare const EntityReferenceQL = "\ntype EntityReference {\n name: String!\n type: String!\n}";
|
346
333
|
export interface EntityReference {
|
347
334
|
name: string;
|
@@ -434,7 +421,7 @@ export interface ConnectedProviderRegistration {
|
|
434
421
|
connectionId: string;
|
435
422
|
credential: Credential;
|
436
423
|
}
|
437
|
-
export declare const ConnectedProviderQL = "\ntype ConnectedProvider {\n connectionId: String!\n provider: String!\n application: String!\n credential: Credential\n dateCreated: Float\n dateUpdated: Float\n}";
|
424
|
+
export declare const ConnectedProviderQL = "\ntype ConnectedProvider {\n connectionId: String!\n provider: String!\n application: String!\n credential: Credential\n dateCreated: Float\n dateUpdated: Float\n refreshFailureCount: Float\n lastRefreshFailureAt: Float\n lastRefreshFailureReason: String\n}";
|
438
425
|
export interface ConnectedProvider {
|
439
426
|
connectionId: string;
|
440
427
|
provider: string;
|
@@ -442,6 +429,9 @@ export interface ConnectedProvider {
|
|
442
429
|
credential?: Credential;
|
443
430
|
dateCreated: number;
|
444
431
|
dateUpdated: number;
|
432
|
+
refreshFailureCount?: number;
|
433
|
+
lastRefreshFailureAt?: number;
|
434
|
+
lastRefreshFailureReason?: string;
|
445
435
|
}
|
446
436
|
export declare const RemoveConnectedProviderInputQL = "\ninput RemoveConnectedProviderInput {\n\tconnectionId: String!\n}";
|
447
437
|
export interface RemoveConnectedProviderInput {
|
@@ -497,7 +487,7 @@ export declare class SharedPrimitive extends Primitive {
|
|
497
487
|
subscriptionPubSubType?: PubSubType;
|
498
488
|
constructor(sharingTags: SharingTag[]);
|
499
489
|
}
|
500
|
-
export declare function replaceSharingTags(sharedPrimitive:
|
490
|
+
export declare function replaceSharingTags<T extends SharedPrimitive>(sharedPrimitive: T, sharingTags: SharingTag[]): T;
|
501
491
|
export declare const MetadataFields = "\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n label: String!\n description: String!\n\tmetadataType: String!\n\treferences: [String]\n\tclassifiers: [String]!\n\tthreshold: Float!\n\tprovider: String\n\tapplication: String";
|
502
492
|
export declare const MetadataQL = "\n type Metadata {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n label: String!\n description: String!\n\tmetadataType: String!\n\treferences: [String]\n\tclassifiers: [String]!\n\tthreshold: Float!\n\tprovider: String\n\tapplication: String\n}";
|
503
493
|
export declare class Metadata extends Primitive {
|
@@ -544,7 +534,7 @@ export declare class Folder extends SharedPrimitive {
|
|
544
534
|
_order?: number;
|
545
535
|
constructor(tenantIdCreated: string, sharingTags: SharingTag[], label: string);
|
546
536
|
}
|
547
|
-
export declare const SearchQL = "\ntype Search {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n\tlabel: String\n search: String\n\tblockType: String\n\t_ids: [String]\n tagIds: [String]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n\torderByDateUpdated: String\n\torderByDateCreated: String\n\torderByDateDue: String\n\torderByAlias: String\n\tdateDueFrom: Float\n\tdateDueTo: Float\n\tstatus:
|
537
|
+
export declare const SearchQL = "\ntype Search {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n\tlabel: String\n search: String\n\tblockType: String\n\t_ids: [String]\n tagIds: [String]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n\torderByDateUpdated: String\n\torderByDateCreated: String\n\torderByDateDue: String\n\torderByAlias: String\n\tdateDueFrom: Float\n\tdateDueTo: Float\n\tstatus: TaskStatus\n\toriginNoteId: String\n\teditorId: String\n\teditorGroupId: String\n\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\n\tsize: Int\n\tarchived: Boolean!\n\tfavoriteTagId: String\n}";
|
548
538
|
export declare class Search extends SharedPrimitive {
|
549
539
|
blockType?: BlockType;
|
550
540
|
label?: string;
|
@@ -666,7 +656,6 @@ export declare class Provider extends Primitive {
|
|
666
656
|
tableMetadata?: TableMetadata[];
|
667
657
|
documentMetadata?: DocumentMetadata[];
|
668
658
|
dashboardMetadata?: DashboardMetadata[];
|
669
|
-
subscriptionPubSubType?: PubSubType.ProviderConnectionChanged;
|
670
659
|
_tenantId?: string;
|
671
660
|
constructor(name: string, label: string, description: string, instanceUrl: string, applications: ProviderApplication[]);
|
672
661
|
}
|
@@ -819,7 +808,7 @@ export interface ReactionRecommendation {
|
|
819
808
|
reaction: Reaction;
|
820
809
|
tenant: TenantLight;
|
821
810
|
}
|
822
|
-
export declare const ChangeRecommendationQL = "\ntype ChangeRecommendation {\n status:
|
811
|
+
export declare const ChangeRecommendationQL = "\ntype ChangeRecommendation {\n status: TaskStatus\n\ttenant: TenantLight!\n}";
|
823
812
|
export interface ChangeRecommendation {
|
824
813
|
status?: TaskStatus;
|
825
814
|
tenant: TenantLight;
|
@@ -862,7 +851,7 @@ export interface BaseTask {
|
|
862
851
|
snoozed: boolean;
|
863
852
|
status?: TaskStatus;
|
864
853
|
}
|
865
|
-
export declare const RecommendationQL = "\ntype Recommendation {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n\treferenceBlock: ReferenceBlock\n\trecommendationType: String!\n\tconnectRecommendation: ConnectRecommendation\n\tupsertRecommendation: UpsertRecommendation\n\tshareRecommendation: ShareRecommendation\n\tmessageRecommendation: MessageRecommendation\n\tnotificationRecommendation: NotificationRecommendation\n\treactionRecommendation: ReactionRecommendation\n\tchangeRecommendation: ChangeRecommendation\n\tingestionRecommendation: IngestionRecommendation\n\trangeId: String\n\tparentId: String\n\tdateDue: Float\n\tdateRemindMe: Float\n\tarchived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tthumbs: String\n\tcomment: String\n\tstatus:
|
854
|
+
export declare const RecommendationQL = "\ntype Recommendation {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n\treferenceBlock: ReferenceBlock\n\trecommendationType: String!\n\tconnectRecommendation: ConnectRecommendation\n\tupsertRecommendation: UpsertRecommendation\n\tshareRecommendation: ShareRecommendation\n\tmessageRecommendation: MessageRecommendation\n\tnotificationRecommendation: NotificationRecommendation\n\treactionRecommendation: ReactionRecommendation\n\tchangeRecommendation: ChangeRecommendation\n\tingestionRecommendation: IngestionRecommendation\n\trangeId: String\n\tparentId: String\n\tdateDue: Float\n\tdateRemindMe: Float\n\tarchived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tthumbs: String\n\tcomment: String\n\tstatus: TaskStatus\n}";
|
866
855
|
export declare class Recommendation extends SharedPrimitive implements BaseTask {
|
867
856
|
referenceBlock: ReferenceBlock;
|
868
857
|
recommendationType: RecommendationType;
|
@@ -947,9 +936,9 @@ export declare class Organization extends Tag {
|
|
947
936
|
export declare class Person extends Tag {
|
948
937
|
constructor(tenantIdCreated: string, alias: string);
|
949
938
|
}
|
950
|
-
export declare const BlockFields = "\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
951
|
-
export declare const BlockFieldsForUpsert = "\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status:
|
952
|
-
export declare const BlockQL = "\ninterface Block {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
939
|
+
export declare const BlockFields = "\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String";
|
940
|
+
export declare const BlockFieldsForUpsert = "\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: TaskStatus\n dateDue: Float\n dateRemindMe: Float\n\tdateAssociated: Float\n archived: Boolean\n\tfavorite: Boolean\n snoozed: Boolean\n\tparentId: String\n document: String\n summary: String\n generated: Boolean\n title: String";
|
941
|
+
export declare const BlockQL = "\ninterface Block {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n}";
|
953
942
|
export declare class Block extends SharedPrimitive {
|
954
943
|
editors: Editor[];
|
955
944
|
blockType: BlockType;
|
@@ -991,6 +980,8 @@ export declare class Block extends SharedPrimitive {
|
|
991
980
|
_feedbackPositive: string[];
|
992
981
|
feedback: BlockFeedbackState;
|
993
982
|
generated: boolean;
|
983
|
+
_title?: string;
|
984
|
+
title?: string;
|
994
985
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], blockType: BlockType);
|
995
986
|
}
|
996
987
|
export declare function isBlock(sharedPrimitive: SharedPrimitive): sharedPrimitive is Block;
|
@@ -1039,9 +1030,9 @@ export declare class BusinessObjectIngestionRequest extends Primitive {
|
|
1039
1030
|
businessObject?: BusinessObject;
|
1040
1031
|
constructor(tenantIdCreated: string, originReferenceBlock: ReferenceBlock, uri: string);
|
1041
1032
|
}
|
1042
|
-
export declare const BusinessObjectFields = "\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1043
|
-
export declare const BusinessObjectFieldsForUpsert = "\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status:
|
1044
|
-
export declare const BusinessObjectQL = "\ninterface BusinessObject implements Block {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1033
|
+
export declare const BusinessObjectFields = "\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n provider: String\n application: String\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String";
|
1034
|
+
export declare const BusinessObjectFieldsForUpsert = "\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: TaskStatus\n dateDue: Float\n dateRemindMe: Float\n\tdateAssociated: Float\n archived: Boolean\n\tfavorite: Boolean\n snoozed: Boolean\n\tparentId: String\n document: String\n summary: String\n generated: Boolean\n title: String\n provider: String\n application: String\n externalId: String\n uri: String\n\texternalResponse: String";
|
1035
|
+
export declare const BusinessObjectQL = "\ninterface BusinessObject implements Block {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n provider: String\n application: String\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n}";
|
1045
1036
|
export declare class BusinessObject extends Block {
|
1046
1037
|
provider: string;
|
1047
1038
|
application: string;
|
@@ -1055,12 +1046,12 @@ export declare function isBusinessObject(block: Block): block is BusinessObject;
|
|
1055
1046
|
export declare class Section extends Block {
|
1056
1047
|
constructor(id: string);
|
1057
1048
|
}
|
1058
|
-
export declare const NoteQL = "\ntype Note implements Block {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1049
|
+
export declare const NoteQL = "\ntype Note implements Block {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n}";
|
1059
1050
|
export declare class Note extends Block {
|
1060
1051
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[]);
|
1061
1052
|
}
|
1062
1053
|
export declare function isNote(block: Block): block is Note;
|
1063
|
-
export declare const TaskQL = "\ntype Task implements Block {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1054
|
+
export declare const TaskQL = "\ntype Task implements Block {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n}";
|
1064
1055
|
export declare class Task extends Block implements BaseTask {
|
1065
1056
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[]);
|
1066
1057
|
}
|
@@ -1084,10 +1075,9 @@ export interface TranscriptionSection {
|
|
1084
1075
|
summaryDocument?: string;
|
1085
1076
|
timedEntries?: TimedEntry[];
|
1086
1077
|
}
|
1087
|
-
export declare const IngestTranscriptionInputQL = "\ninput IngestTranscriptionInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status:
|
1088
|
-
export declare const TranscriptionQL = "\ntype Transcription implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1078
|
+
export declare const IngestTranscriptionInputQL = "\ninput IngestTranscriptionInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: TaskStatus\n dateDue: Float\n dateRemindMe: Float\n\tdateAssociated: Float\n archived: Boolean\n\tfavorite: Boolean\n snoozed: Boolean\n\tparentId: String\n document: String\n summary: String\n generated: Boolean\n title: String\n provider: String\n application: String\n externalId: String\n uri: String\n\texternalResponse: String\n\tdateStart: Float\n\tduration: Float\n\tmeetingUrl: String\n\trecordingUrl: String\n\ttranscriptionUrl: String\n\tattendees: [PersonReferenceInput]\n\ttasks: [IngestTodoInput]\n\ttopics: [UpsertTagInput]\n\ttranscript: TranscriptionSectionInput\n\thighlights: [TranscriptionSectionInput]\n\toutline: [TranscriptionSectionInput]\n\tprocessingStage: String!\n}";
|
1079
|
+
export declare const TranscriptionQL = "\ntype Transcription implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n provider: String\n application: String\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n\tdateStart: Float\n\tduration: Float\n\tmeetingUrl: String\n\trecordingUrl: String\n\ttranscriptionUrl: String\n\tattendees: [PersonAcceptance]\n\ttranscript: TranscriptionSection\n\thighlights: [TranscriptionSection]\n\toutline: [TranscriptionSection]\n}";
|
1089
1080
|
export declare class Transcription extends BusinessObject {
|
1090
|
-
title?: string;
|
1091
1081
|
dateStart?: number;
|
1092
1082
|
duration?: number;
|
1093
1083
|
meetingUrl?: string;
|
@@ -1126,6 +1116,7 @@ export declare enum ResponseStatus {
|
|
1126
1116
|
Tentative = "tentative",
|
1127
1117
|
Accepted = "accepted"
|
1128
1118
|
}
|
1119
|
+
export declare const ResponseStatusQL: string;
|
1129
1120
|
export declare const PersonAcceptanceQL = "\ntype PersonAcceptance {\n email: String\n\tfriendlyName: String\n\ttagId: String\n\texternalId: String\n\tspeakerId: String\n\n responseStatus: String!\n}";
|
1130
1121
|
export interface PersonAcceptance extends PersonReference {
|
1131
1122
|
responseStatus: ResponseStatus;
|
@@ -1205,7 +1196,7 @@ export interface AuthRefreshProviderRequest {
|
|
1205
1196
|
export interface AuthRefreshProviderResponse {
|
1206
1197
|
credential: Credential;
|
1207
1198
|
}
|
1208
|
-
export declare const EventQL = "\ntype Event implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1199
|
+
export declare const EventQL = "\ntype Event implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n provider: String\n application: String\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n calendarId: String!\n eventStatus: String!\n dateStart: Float!\n organizedBy: PersonReference!\n location: String\n dateStartOriginal: Float\n recurrence: [String]\n series: String\n dateEnd: Float\n subject: String\n description: String\n attendees: [PersonAcceptance]\n conference: Conference\n}";
|
1209
1200
|
export declare class Event extends BusinessObject {
|
1210
1201
|
calendarId: string;
|
1211
1202
|
eventStatus: EventStatus;
|
@@ -1221,10 +1212,11 @@ export declare class Event extends BusinessObject {
|
|
1221
1212
|
attendees?: PersonAcceptance[] | null;
|
1222
1213
|
conference?: Conference | null;
|
1223
1214
|
attachments?: Attachment[] | null;
|
1215
|
+
agendaDocument?: string | null;
|
1224
1216
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, calendarId: string, eventStatus: EventStatus, dateStart: number, organizedBy: PersonReference);
|
1225
1217
|
}
|
1226
1218
|
export declare function isEvent(block: Block): block is Event;
|
1227
|
-
export declare const CalendarQL = "\ntype Calendar implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1219
|
+
export declare const CalendarQL = "\ntype Calendar implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n provider: String\n application: String\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n timeZone: String!\n description: String\n location: String\n events: [Event]\n}";
|
1228
1220
|
export declare class Calendar extends BusinessObject {
|
1229
1221
|
timeZone: string;
|
1230
1222
|
description?: string | null;
|
@@ -1233,8 +1225,8 @@ export declare class Calendar extends BusinessObject {
|
|
1233
1225
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, timeZone: string);
|
1234
1226
|
}
|
1235
1227
|
export declare function isCalendar(block: Block): block is Calendar;
|
1236
|
-
export declare const IngestTodoInputQL = "\ninput IngestTodoInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status:
|
1237
|
-
export declare const TodoQL = "\ntype Todo implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1228
|
+
export declare const IngestTodoInputQL = "\ninput IngestTodoInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: TaskStatus\n dateDue: Float\n dateRemindMe: Float\n\tdateAssociated: Float\n archived: Boolean\n\tfavorite: Boolean\n snoozed: Boolean\n\tparentId: String\n document: String\n summary: String\n generated: Boolean\n title: String\n\thtmlContent: String\n\ttimeStart: Float\n\tduration: Float\n\tspeaker: PersonReferenceInput\n}";
|
1229
|
+
export declare const TodoQL = "\ntype Todo implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n provider: String\n application: String\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n\thtmlContent: String\n\ttimeStart: Float\n\tduration: Float\n\tspeaker: PersonReference\n}";
|
1238
1230
|
export declare class Todo extends BusinessObject implements BaseTask, TimedEntry {
|
1239
1231
|
htmlContent?: string;
|
1240
1232
|
timeStart?: number;
|
@@ -1245,8 +1237,8 @@ export declare class Todo extends BusinessObject implements BaseTask, TimedEntry
|
|
1245
1237
|
export declare function isTodo(block: Block): block is Todo;
|
1246
1238
|
export interface IngestTodoInput extends Todo {
|
1247
1239
|
}
|
1248
|
-
export declare const IngestEmailInputQL = "\ninput IngestEmailInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status:
|
1249
|
-
export declare const EmailQL = "\ntype Email implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1240
|
+
export declare const IngestEmailInputQL = "\ninput IngestEmailInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: TaskStatus\n dateDue: Float\n dateRemindMe: Float\n\tdateAssociated: Float\n archived: Boolean\n\tfavorite: Boolean\n snoozed: Boolean\n\tparentId: String\n document: String\n summary: String\n generated: Boolean\n title: String\n provider: String\n application: String\n externalId: String\n uri: String\n\texternalResponse: String\n to: [PersonReferenceInput]\n cc: [PersonReferenceInput]\n bcc: [PersonReferenceInput]\n\tfrom: PersonReferenceInput\n subject: String\n\tattachments: [AttachmentInput]\n\tbodyHtml: String\n\tbodyText: String\n\tcleanBodyHtml: String\n}";
|
1241
|
+
export declare const EmailQL = "\ntype Email implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n provider: String\n application: String\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n to: [PersonReference]\n cc: [PersonReference]\n bcc: [PersonReference]\n\tfrom: PersonReference\n subject: String\n\tattachments: [Attachment]\n\tbodyHtml: String\n\tbodyText: String\n\tcleanBodyHtml: String\n\tcleanBodyDocument: String\n}";
|
1250
1242
|
export declare class Email extends BusinessObject {
|
1251
1243
|
to?: PersonReference[];
|
1252
1244
|
cc?: PersonReference[];
|
@@ -1270,8 +1262,8 @@ export declare enum MessageRole {
|
|
1270
1262
|
User = "USER"
|
1271
1263
|
}
|
1272
1264
|
export declare const MessageRoleQL = "\nenum MessageRole {\n ASSISTANT\n TOOL\n UNKNOWN\n USER\n}";
|
1273
|
-
export declare const UpsertMessageInputQL = "\ninput UpsertMessageInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status:
|
1274
|
-
export declare const MessageQL = "\ntype Message implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1265
|
+
export declare const UpsertMessageInputQL = "\ninput UpsertMessageInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: TaskStatus\n dateDue: Float\n dateRemindMe: Float\n\tdateAssociated: Float\n archived: Boolean\n\tfavorite: Boolean\n snoozed: Boolean\n\tparentId: String\n document: String\n summary: String\n generated: Boolean\n title: String\n\thtmlContent: String\n originReferenceTagId: String\n\toriginReferenceBlock: ReferenceBlockInput\n\tthreadId: String\n\tagentName: String\n\trole: MessageRole\n\tfrom: PersonReferenceInput\n\tbodyHtml: String\n\tbodyDocument: String\n}";
|
1266
|
+
export declare const MessageQL = "\ntype Message implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n provider: String\n application: String\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n\thtmlContent: String\n\toriginReferenceTagId: String\n\tthreadId: String\n\tagentName: String\n\trole: MessageRole\n\tfrom: PersonReference\n\tbodyHtml: String\n\tbodyDocument: String\n\ttoolInvocation: String\n}";
|
1275
1267
|
export declare class Message extends BusinessObject {
|
1276
1268
|
htmlContent?: string;
|
1277
1269
|
originReferenceTagId?: string;
|
@@ -1287,11 +1279,11 @@ export declare class Message extends BusinessObject {
|
|
1287
1279
|
export declare function isMessage(block: Block): block is Message;
|
1288
1280
|
export interface UpsertMessageInput extends Message {
|
1289
1281
|
}
|
1290
|
-
export declare const IngestMessagesInputQL = "\ninput IngestMessagesInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status:
|
1282
|
+
export declare const IngestMessagesInputQL = "\ninput IngestMessagesInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: TaskStatus\n dateDue: Float\n dateRemindMe: Float\n\tdateAssociated: Float\n archived: Boolean\n\tfavorite: Boolean\n snoozed: Boolean\n\tparentId: String\n document: String\n summary: String\n generated: Boolean\n title: String\n\tmessages: [UpsertMessageInput]\n}";
|
1291
1283
|
export interface IngestMessagesInput {
|
1292
1284
|
messages: Message[];
|
1293
1285
|
}
|
1294
|
-
export declare const StatementQL = "\ntype Statement implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1286
|
+
export declare const StatementQL = "\ntype Statement implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n provider: String\n application: String\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n\tmetadataType: String!\n\ttagId: String\n}";
|
1295
1287
|
export declare class Statement extends BusinessObject {
|
1296
1288
|
metadataType: string;
|
1297
1289
|
tagId?: string;
|
@@ -1304,7 +1296,7 @@ export declare enum ThreadReadStatus {
|
|
1304
1296
|
Unread = "UNREAD"
|
1305
1297
|
}
|
1306
1298
|
export declare const ThreadReadStatusQL = "\nenum ThreadReadStatus {\n READ\n UNKNOWN\n UNREAD\n}";
|
1307
|
-
export declare const ThreadQL = "\ntype Thread implements Block & BusinessObject {\n \n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1299
|
+
export declare const ThreadQL = "\ntype Thread implements Block & BusinessObject {\n \n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n provider: String\n application: String\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n agentTaskName: String\n messageCount: Int!\n readStatus: ThreadReadStatus!\n subject: String\n}";
|
1308
1300
|
export declare class Thread extends BusinessObject {
|
1309
1301
|
agentTaskName?: string;
|
1310
1302
|
messageCount: number;
|
@@ -1313,13 +1305,12 @@ export declare class Thread extends BusinessObject {
|
|
1313
1305
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
|
1314
1306
|
}
|
1315
1307
|
export declare function isThread(block: Block): block is Thread;
|
1316
|
-
export declare const UpsertThreadInputQL = "\ninput UpsertThreadInput {\n\t\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status:
|
1308
|
+
export declare const UpsertThreadInputQL = "\ninput UpsertThreadInput {\n\t\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: TaskStatus\n dateDue: Float\n dateRemindMe: Float\n\tdateAssociated: Float\n archived: Boolean\n\tfavorite: Boolean\n snoozed: Boolean\n\tparentId: String\n document: String\n summary: String\n generated: Boolean\n title: String\n\treadStatus: ThreadReadStatus\n}";
|
1317
1309
|
export interface UpsertThreadInput extends Thread {
|
1318
1310
|
}
|
1319
|
-
export declare const DocumentFields = "\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1320
|
-
export declare const DocumentQL = "\ntype Document implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1311
|
+
export declare const DocumentFields = "\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n provider: String\n application: String\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n description: String\n previewImage: String\n htmlContent: String\n\tmetadataType: String";
|
1312
|
+
export declare const DocumentQL = "\ntype Document implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n provider: String\n application: String\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n description: String\n previewImage: String\n htmlContent: String\n\tmetadataType: String\n}";
|
1321
1313
|
export declare class Document extends BusinessObject {
|
1322
|
-
title?: string;
|
1323
1314
|
description?: string;
|
1324
1315
|
previewImage?: string;
|
1325
1316
|
htmlContent?: string;
|
@@ -1340,7 +1331,7 @@ export declare class BlockData extends Primitive {
|
|
1340
1331
|
search?: GraphSearchInput;
|
1341
1332
|
constructor(name: string);
|
1342
1333
|
}
|
1343
|
-
export declare const DashboardQL = "\ntype Dashboard implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1334
|
+
export declare const DashboardQL = "\ntype Dashboard implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n provider: String\n application: String\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n metadata: DashboardMetadata\n blockData: [BlockData]\n\ttagId: String\n}";
|
1344
1335
|
export declare class Dashboard extends BusinessObject {
|
1345
1336
|
metadata: DashboardMetadata;
|
1346
1337
|
blockData: BlockData[];
|
@@ -1348,9 +1339,8 @@ export declare class Dashboard extends BusinessObject {
|
|
1348
1339
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, dashboardMetadata: DashboardMetadata, tagId: string);
|
1349
1340
|
}
|
1350
1341
|
export declare function isDashboard(block: Block): block is Dashboard;
|
1351
|
-
export declare const WebsiteQL = "\ntype Website implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1342
|
+
export declare const WebsiteQL = "\ntype Website implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n provider: String\n application: String\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n description: String\n bannerImage: String\n htmlContent: String\n}";
|
1352
1343
|
export declare class Website extends BusinessObject {
|
1353
|
-
title?: string;
|
1354
1344
|
description?: string;
|
1355
1345
|
bannerImage?: string;
|
1356
1346
|
htmlContent?: string;
|
@@ -1379,7 +1369,7 @@ export declare class DashboardMetadata extends Metadata {
|
|
1379
1369
|
notificationMetadataTypes: string[];
|
1380
1370
|
constructor(label: string, description: string, metadataType: string, classifiers: string[], threshold: number, blockDescriptions: BlockDescription[]);
|
1381
1371
|
}
|
1382
|
-
export declare const TemplateQL = "\ntype Template implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1372
|
+
export declare const TemplateQL = "\ntype Template implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n provider: String\n application: String\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n metadata: DocumentMetadata\n}";
|
1383
1373
|
export declare class Template extends BusinessObject {
|
1384
1374
|
metadata?: DocumentMetadata;
|
1385
1375
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
|
@@ -1401,7 +1391,7 @@ export declare enum FieldVariation {
|
|
1401
1391
|
Phone = "phone",
|
1402
1392
|
Url = "url"
|
1403
1393
|
}
|
1404
|
-
export declare const OptionQL = "\ntype Option {\n label: String!\n\tvalue: String!\n\tstatus:
|
1394
|
+
export declare const OptionQL = "\ntype Option {\n label: String!\n\tvalue: String!\n\tstatus: TaskStatus\n\tpriority: String\n}";
|
1405
1395
|
export interface Option {
|
1406
1396
|
label: string;
|
1407
1397
|
value: string;
|
@@ -1440,7 +1430,7 @@ export declare class TableMetadata extends Metadata {
|
|
1440
1430
|
constructor(label: string, description: string, metadataType: string, fields: Field[], classifiers: string[], threshold: number);
|
1441
1431
|
}
|
1442
1432
|
export declare const RecordInputQL = "\ninput RecordInput {\n _id: String!\n values: [FieldValueInput]!\n}";
|
1443
|
-
export declare const RecordQL = "\ntype Record implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1433
|
+
export declare const RecordQL = "\ntype Record implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n provider: String\n application: String\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n values: [FieldValue]!\n}";
|
1444
1434
|
export interface RecordInput {
|
1445
1435
|
_id: string;
|
1446
1436
|
values: FieldValue[];
|
@@ -1458,8 +1448,8 @@ declare class BigfootRecord extends BusinessObject {
|
|
1458
1448
|
}
|
1459
1449
|
export { BigfootRecord as Record };
|
1460
1450
|
export declare function isRecord(block: Block): block is BigfootRecord;
|
1461
|
-
export declare const TableFields = "\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1462
|
-
export declare const TableQL = "\ntype Table implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus:
|
1451
|
+
export declare const TableFields = "\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n provider: String\n application: String\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n records: [Record]\n metadata: TableMetadata\n\tconnectionId: String\n\trequestHash: String";
|
1452
|
+
export declare const TableQL = "\ntype Table implements Block & BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: TaskStatus\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n\ttitle: String\n provider: String\n application: String\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n records: [Record]\n metadata: TableMetadata\n\tconnectionId: String\n\trequestHash: String\n}";
|
1463
1453
|
export declare class Table extends BusinessObject {
|
1464
1454
|
metadata: TableMetadata;
|
1465
1455
|
records?: BigfootRecord[];
|
@@ -1553,7 +1543,7 @@ export declare const FindDashboardBlockInputQL = "\ninput FindDashboardBlockInpu
|
|
1553
1543
|
export interface FindDashboardBlockInput {
|
1554
1544
|
_id: string;
|
1555
1545
|
}
|
1556
|
-
export declare const UpsertNoteInputQL = "\ninput UpsertNoteInput {\n _id: String\n document: String\n editor: EditorInput!\n\tsharingTags: [SharingTagInput]\n\tfavorite: Boolean\n\tdateAssociated: Float\n\ttemplateReferenceBlock: ReferenceBlockInput\n}";
|
1546
|
+
export declare const UpsertNoteInputQL = "\ninput UpsertNoteInput {\n _id: String\n document: String\n editor: EditorInput!\n\tsharingTags: [SharingTagInput]\n\tfavorite: Boolean\n\tdateAssociated: Float\n\ttemplateReferenceBlock: ReferenceBlockInput\n title: String\n}";
|
1557
1547
|
export interface UpsertNoteInput {
|
1558
1548
|
_id?: string;
|
1559
1549
|
document?: string;
|
@@ -1562,6 +1552,7 @@ export interface UpsertNoteInput {
|
|
1562
1552
|
favorite?: boolean;
|
1563
1553
|
dateAssociated?: number;
|
1564
1554
|
templateReferenceBlock?: ReferenceBlock;
|
1555
|
+
title?: string;
|
1565
1556
|
}
|
1566
1557
|
export declare const FindBlockInputQL = "\ninput FindBlockInput {\n _id: String!\n archived: Boolean\n}";
|
1567
1558
|
export interface FindBlockInput {
|
@@ -1601,6 +1592,12 @@ export declare const FindMessagesInputQL = "\ninput FindMessagesInput {\n \n\n
|
|
1601
1592
|
export interface FindMessagesInput extends FindBlocksInput {
|
1602
1593
|
threadId?: string | null;
|
1603
1594
|
}
|
1595
|
+
export declare const UpdateBlockInputQL = "\ninput UpdateBlockInput {\n _id: String\n\tblockType: String\n\tsharingTags: [SharingTagInput]\n}";
|
1596
|
+
export interface UpdateBlockInput {
|
1597
|
+
_id: string;
|
1598
|
+
blockType: BlockType;
|
1599
|
+
sharingTags: SharingTag[];
|
1600
|
+
}
|
1604
1601
|
export declare const ArchiveBlockInputQL = "\ninput ArchiveBlockInput {\n _id: String!\n\tblockType: String\n archive: Boolean\n}";
|
1605
1602
|
export interface ArchiveBlockInput {
|
1606
1603
|
_id: string;
|
@@ -1704,7 +1701,7 @@ export interface DeleteSharingTagInput {
|
|
1704
1701
|
referenceBlock: ReferenceBlock;
|
1705
1702
|
tagId: string;
|
1706
1703
|
}
|
1707
|
-
export declare const UpdateTaskInputQL = "\ninput UpsertTaskInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status:
|
1704
|
+
export declare const UpdateTaskInputQL = "\ninput UpsertTaskInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: TaskStatus\n dateDue: Float\n dateRemindMe: Float\n\tdateAssociated: Float\n archived: Boolean\n\tfavorite: Boolean\n snoozed: Boolean\n\tparentId: String\n document: String\n summary: String\n generated: Boolean\n title: String\n editor: EditorInput!\n}";
|
1708
1705
|
export interface UpsertTaskInput extends Task {
|
1709
1706
|
editor: Editor;
|
1710
1707
|
}
|
@@ -1736,7 +1733,7 @@ export interface ArchiveFolderOutput {
|
|
1736
1733
|
_id: string;
|
1737
1734
|
archived: boolean;
|
1738
1735
|
}
|
1739
|
-
export declare const UpsertSearchInputQL = "\ninput UpsertSearchInput {\n _id: String\n\tblockType: String\n\tlabel: String\n search: String\n\t_ids: [String]\n tagIds: [String]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLinkInput]\n\tsharingTags: [SharingTagInput]\n\torderByDateUpdated: String\n\torderByDateCreated: String\n\torderByDateDue: String\n\torderByAlias: String\n\tdateDueFrom: Float\n\tdateDueTo: Float\n\tstatus:
|
1736
|
+
export declare const UpsertSearchInputQL = "\ninput UpsertSearchInput {\n _id: String\n\tblockType: String\n\tlabel: String\n search: String\n\t_ids: [String]\n tagIds: [String]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLinkInput]\n\tsharingTags: [SharingTagInput]\n\torderByDateUpdated: String\n\torderByDateCreated: String\n\torderByDateDue: String\n\torderByAlias: String\n\tdateDueFrom: Float\n\tdateDueTo: Float\n\tstatus: TaskStatus\n\teditorId: String\n\teditorGroupId: String\n\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\n\tsize: Int\n}";
|
1740
1737
|
export interface UpsertSearchInput {
|
1741
1738
|
_id?: string;
|
1742
1739
|
blockType?: string;
|
@@ -1804,7 +1801,7 @@ export interface SearchTagsInput extends PaginatedInput {
|
|
1804
1801
|
page?: number;
|
1805
1802
|
generateDashboard?: boolean;
|
1806
1803
|
}
|
1807
|
-
export declare const SearchInputQL = "\ninput SearchInput {\n \n size: Int\n\tapplication: String\n\tprovider: String\n\tblockType: String\n\trecommendationType: String\n\tlabel: String\n\tsearch: String\n\t_ids: [String] = []\n\ttagIds: [String] = []\n\temails: [String] = []\n\tbusinessObjects: [BusinessObjectLinkInput] = []\n\torderByDateUpdated: String\n\torderByDateCreated: String\n\torderByDateDue: String\n\torderByAlias: String\n\tdateDueFrom: Float\n\tdateDueTo: Float\n\tstatus:
|
1804
|
+
export declare const SearchInputQL = "\ninput SearchInput {\n \n size: Int\n\tapplication: String\n\tprovider: String\n\tblockType: String\n\trecommendationType: String\n\tlabel: String\n\tsearch: String\n\t_ids: [String] = []\n\ttagIds: [String] = []\n\temails: [String] = []\n\tbusinessObjects: [BusinessObjectLinkInput] = []\n\torderByDateUpdated: String\n\torderByDateCreated: String\n\torderByDateDue: String\n\torderByAlias: String\n\tdateDueFrom: Float\n\tdateDueTo: Float\n\tstatus: TaskStatus\n\treferenceBlock: ReferenceBlockInput\n\toriginReferenceBlock: ReferenceBlockInput\n\toriginReferenceTagId: String\n\teditorId: String\n\teditorGroupId: String\n\tgenerated: Boolean\n\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\n\tpage: Int\n}";
|
1808
1805
|
export interface SearchInput extends PaginatedInput {
|
1809
1806
|
application?: string;
|
1810
1807
|
provider?: string;
|
@@ -1925,10 +1922,10 @@ export interface SortOptionInput {
|
|
1925
1922
|
field: string;
|
1926
1923
|
order: OrderDirection;
|
1927
1924
|
}
|
1928
|
-
export declare const GraphSearchInputFields = "\n\tapplication: String\n\tprovider: String\n\tsearch: String\n\t_ids: [String]\n\ttenantIdCreateds: [String]\n\ttagIds: [String]\n\trecommendationTypes: [RecommendationType]\n\tblockTypes: [BlockType]\n\tstatuses: [TaskStatus]\n\tbusinessObjects: [BusinessObjectFilterInput]\n\toriginReferenceBlock: ReferenceBlockInput\n\toriginReferenceTagId: String\n\teditorId: String\n\teditorGroupId: String\n\tgenerated: Boolean\n\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\n\tseries: String\n\tdateMatch: NumberFilterInput\n\tdateDue: NumberFilterInput\n\tdateCreated: NumberFilterInput\n\tdateUpdated: NumberFilterInput\n\tdateAssociated: NumberFilterInput\n\temails: [StringFilterInput]\n\tsort: [SortOptionInput]\n\tpage: Int\n\tthreadIds: [String]\n";
|
1925
|
+
export declare const GraphSearchInputFields = "\n\tapplication: String\n\tprovider: String\n\tsearch: String\n\t_ids: [String]\n\ttenantIdCreateds: [String]\n\ttagIds: [String]\n\trecommendationTypes: [RecommendationType]\n\tblockTypes: [BlockType]\n\tstatuses: [TaskStatus]\n\tbusinessObjects: [BusinessObjectFilterInput]\n\toriginReferenceBlock: ReferenceBlockInput\n\toriginReferenceTagId: String\n\teditorId: String\n\teditorGroupId: String\n\tgenerated: Boolean\n\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\n\tseries: String\n\tresponseStatuses: [ResponseStatus]\n\tdateMatch: NumberFilterInput\n\tdateDue: NumberFilterInput\n\tdateCreated: NumberFilterInput\n\tdateUpdated: NumberFilterInput\n\tdateAssociated: NumberFilterInput\n\temails: [StringFilterInput]\n\tsort: [SortOptionInput]\n\tpage: Int\n\tthreadIds: [String]\n";
|
1929
1926
|
export declare const GraphSearchFields = "\n\tsearch: String\n\t_ids: [String]\n\ttenantIdCreateds: [String]\n\ttagIds: [String]\n\trecommendationTypes: [RecommendationType]\n\tblockTypes: [BlockType]\n\tstatuses: [TaskStatus]\n\tbusinessObjects: [BusinessObjectFilter]\n\toriginReferenceBlock: ReferenceBlock\n\toriginReferenceTagId: String\n\teditorId: String\n\teditorGroupId: String\n\tgenerated: Boolean\n\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\n\tdateMatch: NumberFilter\n\tdateDue: NumberFilter\n\tdateCreated: NumberFilter\n\tdateUpdated: NumberFilter\n\tdateAssociated: NumberFilter\n\temails: [StringFilter]\n\tsort: [SortOption]\n\tpage: Int\n";
|
1930
1927
|
export declare const GraphSearchQL = "\ntype GraphSearch {\n\tsearch: String\n\t_ids: [String]\n\ttenantIdCreateds: [String]\n\ttagIds: [String]\n\trecommendationTypes: [RecommendationType]\n\tblockTypes: [BlockType]\n\tstatuses: [TaskStatus]\n\tbusinessObjects: [BusinessObjectFilter]\n\toriginReferenceBlock: ReferenceBlock\n\toriginReferenceTagId: String\n\teditorId: String\n\teditorGroupId: String\n\tgenerated: Boolean\n\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\n\tdateMatch: NumberFilter\n\tdateDue: NumberFilter\n\tdateCreated: NumberFilter\n\tdateUpdated: NumberFilter\n\tdateAssociated: NumberFilter\n\temails: [StringFilter]\n\tsort: [SortOption]\n\tpage: Int\n\n}";
|
1931
|
-
export declare const GraphSearchInputQL = "\ninput GraphSearchInput {\n \n size: Int\n \n\tapplication: String\n\tprovider: String\n\tsearch: String\n\t_ids: [String]\n\ttenantIdCreateds: [String]\n\ttagIds: [String]\n\trecommendationTypes: [RecommendationType]\n\tblockTypes: [BlockType]\n\tstatuses: [TaskStatus]\n\tbusinessObjects: [BusinessObjectFilterInput]\n\toriginReferenceBlock: ReferenceBlockInput\n\toriginReferenceTagId: String\n\teditorId: String\n\teditorGroupId: String\n\tgenerated: Boolean\n\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\n\tseries: String\n\tdateMatch: NumberFilterInput\n\tdateDue: NumberFilterInput\n\tdateCreated: NumberFilterInput\n\tdateUpdated: NumberFilterInput\n\tdateAssociated: NumberFilterInput\n\temails: [StringFilterInput]\n\tsort: [SortOptionInput]\n\tpage: Int\n\tthreadIds: [String]\n\n}";
|
1928
|
+
export declare const GraphSearchInputQL = "\ninput GraphSearchInput {\n \n size: Int\n \n\tapplication: String\n\tprovider: String\n\tsearch: String\n\t_ids: [String]\n\ttenantIdCreateds: [String]\n\ttagIds: [String]\n\trecommendationTypes: [RecommendationType]\n\tblockTypes: [BlockType]\n\tstatuses: [TaskStatus]\n\tbusinessObjects: [BusinessObjectFilterInput]\n\toriginReferenceBlock: ReferenceBlockInput\n\toriginReferenceTagId: String\n\teditorId: String\n\teditorGroupId: String\n\tgenerated: Boolean\n\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\n\tseries: String\n\tresponseStatuses: [ResponseStatus]\n\tdateMatch: NumberFilterInput\n\tdateDue: NumberFilterInput\n\tdateCreated: NumberFilterInput\n\tdateUpdated: NumberFilterInput\n\tdateAssociated: NumberFilterInput\n\temails: [StringFilterInput]\n\tsort: [SortOptionInput]\n\tpage: Int\n\tthreadIds: [String]\n\n}";
|
1932
1929
|
export interface GraphSearchInput extends PaginatedInput {
|
1933
1930
|
application?: string;
|
1934
1931
|
provider?: string;
|
@@ -1949,6 +1946,7 @@ export interface GraphSearchInput extends PaginatedInput {
|
|
1949
1946
|
favorite?: boolean;
|
1950
1947
|
snoozed?: boolean;
|
1951
1948
|
series?: string;
|
1949
|
+
responseStatuses?: ResponseStatus[];
|
1952
1950
|
dateMatch?: NumberFilterInput;
|
1953
1951
|
dateDue?: NumberFilterInput;
|
1954
1952
|
dateCreated?: NumberFilterInput;
|
@@ -1960,7 +1958,7 @@ export interface GraphSearchInput extends PaginatedInput {
|
|
1960
1958
|
threadIds?: string[];
|
1961
1959
|
}
|
1962
1960
|
export declare const GraphSearchTagsQL = "\ntype GraphSearchTags {\n\tsearch: String\n\t_ids: [String]\n\ttenantIdCreateds: [String]\n\ttagIds: [String]\n\trecommendationTypes: [RecommendationType]\n\tblockTypes: [BlockType]\n\tstatuses: [TaskStatus]\n\tbusinessObjects: [BusinessObjectFilter]\n\toriginReferenceBlock: ReferenceBlock\n\toriginReferenceTagId: String\n\teditorId: String\n\teditorGroupId: String\n\tgenerated: Boolean\n\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\n\tdateMatch: NumberFilter\n\tdateDue: NumberFilter\n\tdateCreated: NumberFilter\n\tdateUpdated: NumberFilter\n\tdateAssociated: NumberFilter\n\temails: [StringFilter]\n\tsort: [SortOption]\n\tpage: Int\n\n\tfolderIds: [String]\n tagTypes: [TagType]\n\ttagSubTypes: [String]\n\tminCoOccurrencePercentage: Int\n\tminOccurrenceCount: Int\n}";
|
1963
|
-
export declare const GraphSearchTagsInputQL = "\ninput GraphSearchTagsInput {\n \n size: Int\n \n\tapplication: String\n\tprovider: String\n\tsearch: String\n\t_ids: [String]\n\ttenantIdCreateds: [String]\n\ttagIds: [String]\n\trecommendationTypes: [RecommendationType]\n\tblockTypes: [BlockType]\n\tstatuses: [TaskStatus]\n\tbusinessObjects: [BusinessObjectFilterInput]\n\toriginReferenceBlock: ReferenceBlockInput\n\toriginReferenceTagId: String\n\teditorId: String\n\teditorGroupId: String\n\tgenerated: Boolean\n\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\n\tseries: String\n\tdateMatch: NumberFilterInput\n\tdateDue: NumberFilterInput\n\tdateCreated: NumberFilterInput\n\tdateUpdated: NumberFilterInput\n\tdateAssociated: NumberFilterInput\n\temails: [StringFilterInput]\n\tsort: [SortOptionInput]\n\tpage: Int\n\tthreadIds: [String]\n\n\tfolderIds: [String]\n tagTypes: [TagType]\n\ttagSubTypes: [String]\n\tminCoOccurrencePercentage: Int\n\tminOccurrenceCount: Int\n}";
|
1961
|
+
export declare const GraphSearchTagsInputQL = "\ninput GraphSearchTagsInput {\n \n size: Int\n \n\tapplication: String\n\tprovider: String\n\tsearch: String\n\t_ids: [String]\n\ttenantIdCreateds: [String]\n\ttagIds: [String]\n\trecommendationTypes: [RecommendationType]\n\tblockTypes: [BlockType]\n\tstatuses: [TaskStatus]\n\tbusinessObjects: [BusinessObjectFilterInput]\n\toriginReferenceBlock: ReferenceBlockInput\n\toriginReferenceTagId: String\n\teditorId: String\n\teditorGroupId: String\n\tgenerated: Boolean\n\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\n\tseries: String\n\tresponseStatuses: [ResponseStatus]\n\tdateMatch: NumberFilterInput\n\tdateDue: NumberFilterInput\n\tdateCreated: NumberFilterInput\n\tdateUpdated: NumberFilterInput\n\tdateAssociated: NumberFilterInput\n\temails: [StringFilterInput]\n\tsort: [SortOptionInput]\n\tpage: Int\n\tthreadIds: [String]\n\n\tfolderIds: [String]\n tagTypes: [TagType]\n\ttagSubTypes: [String]\n\tminCoOccurrencePercentage: Int\n\tminOccurrenceCount: Int\n}";
|
1964
1962
|
export interface GraphSearchTagsInput extends GraphSearchInput {
|
1965
1963
|
folderIds?: string[];
|
1966
1964
|
tagTypes?: TagType[];
|
@@ -1968,7 +1966,7 @@ export interface GraphSearchTagsInput extends GraphSearchInput {
|
|
1968
1966
|
minCoOccurrencePercentage?: number;
|
1969
1967
|
minOccurrenceCount?: number;
|
1970
1968
|
}
|
1971
|
-
export declare const GraphSearchEventsInputQL = "\ninput GraphSearchEventsInput {\n \n size: Int\n \n\tapplication: String\n\tprovider: String\n\tsearch: String\n\t_ids: [String]\n\ttenantIdCreateds: [String]\n\ttagIds: [String]\n\trecommendationTypes: [RecommendationType]\n\tblockTypes: [BlockType]\n\tstatuses: [TaskStatus]\n\tbusinessObjects: [BusinessObjectFilterInput]\n\toriginReferenceBlock: ReferenceBlockInput\n\toriginReferenceTagId: String\n\teditorId: String\n\teditorGroupId: String\n\tgenerated: Boolean\n\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\n\tseries: String\n\tdateMatch: NumberFilterInput\n\tdateDue: NumberFilterInput\n\tdateCreated: NumberFilterInput\n\tdateUpdated: NumberFilterInput\n\tdateAssociated: NumberFilterInput\n\temails: [StringFilterInput]\n\tsort: [SortOptionInput]\n\tpage: Int\n\tthreadIds: [String]\n\n calendarId: String\n\tdateStart: NumberFilterInput\n\tdateEnd: NumberFilterInput\n\tsubject: StringFilterInput\n}";
|
1969
|
+
export declare const GraphSearchEventsInputQL = "\ninput GraphSearchEventsInput {\n \n size: Int\n \n\tapplication: String\n\tprovider: String\n\tsearch: String\n\t_ids: [String]\n\ttenantIdCreateds: [String]\n\ttagIds: [String]\n\trecommendationTypes: [RecommendationType]\n\tblockTypes: [BlockType]\n\tstatuses: [TaskStatus]\n\tbusinessObjects: [BusinessObjectFilterInput]\n\toriginReferenceBlock: ReferenceBlockInput\n\toriginReferenceTagId: String\n\teditorId: String\n\teditorGroupId: String\n\tgenerated: Boolean\n\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\n\tseries: String\n\tresponseStatuses: [ResponseStatus]\n\tdateMatch: NumberFilterInput\n\tdateDue: NumberFilterInput\n\tdateCreated: NumberFilterInput\n\tdateUpdated: NumberFilterInput\n\tdateAssociated: NumberFilterInput\n\temails: [StringFilterInput]\n\tsort: [SortOptionInput]\n\tpage: Int\n\tthreadIds: [String]\n\n calendarId: String\n\tdateStart: NumberFilterInput\n\tdateEnd: NumberFilterInput\n\tsubject: StringFilterInput\n}";
|
1972
1970
|
export interface GraphSearchEventsInput extends GraphSearchInput, PaginatedInput {
|
1973
1971
|
calendarId?: string;
|
1974
1972
|
dateStart?: NumberFilterInput;
|
@@ -2030,7 +2028,7 @@ export declare enum TimeUnit {
|
|
2030
2028
|
Month = "MONTH",
|
2031
2029
|
Year = "YEAR"
|
2032
2030
|
}
|
2033
|
-
export declare const FindBlockActivityInputQL = "\ninput FindBlockActivityInput {\n\t\n\tapplication: String\n\tprovider: String\n\tsearch: String\n\t_ids: [String]\n\ttenantIdCreateds: [String]\n\ttagIds: [String]\n\trecommendationTypes: [RecommendationType]\n\tblockTypes: [BlockType]\n\tstatuses: [TaskStatus]\n\tbusinessObjects: [BusinessObjectFilterInput]\n\toriginReferenceBlock: ReferenceBlockInput\n\toriginReferenceTagId: String\n\teditorId: String\n\teditorGroupId: String\n\tgenerated: Boolean\n\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\n\tseries: String\n\tdateMatch: NumberFilterInput\n\tdateDue: NumberFilterInput\n\tdateCreated: NumberFilterInput\n\tdateUpdated: NumberFilterInput\n\tdateAssociated: NumberFilterInput\n\temails: [StringFilterInput]\n\tsort: [SortOptionInput]\n\tpage: Int\n\tthreadIds: [String]\n\n\tgt: Float!\n\tlt: Float!\n\tperiod: TimeUnit! = DAY\n}";
|
2031
|
+
export declare const FindBlockActivityInputQL = "\ninput FindBlockActivityInput {\n\t\n\tapplication: String\n\tprovider: String\n\tsearch: String\n\t_ids: [String]\n\ttenantIdCreateds: [String]\n\ttagIds: [String]\n\trecommendationTypes: [RecommendationType]\n\tblockTypes: [BlockType]\n\tstatuses: [TaskStatus]\n\tbusinessObjects: [BusinessObjectFilterInput]\n\toriginReferenceBlock: ReferenceBlockInput\n\toriginReferenceTagId: String\n\teditorId: String\n\teditorGroupId: String\n\tgenerated: Boolean\n\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\n\tseries: String\n\tresponseStatuses: [ResponseStatus]\n\tdateMatch: NumberFilterInput\n\tdateDue: NumberFilterInput\n\tdateCreated: NumberFilterInput\n\tdateUpdated: NumberFilterInput\n\tdateAssociated: NumberFilterInput\n\temails: [StringFilterInput]\n\tsort: [SortOptionInput]\n\tpage: Int\n\tthreadIds: [String]\n\n\tgt: Float!\n\tlt: Float!\n\tperiod: TimeUnit! = DAY\n}";
|
2034
2032
|
export interface FindBlockActivityInput extends GraphSearchInput {
|
2035
2033
|
gt: number;
|
2036
2034
|
lt: number;
|