You need to sign in or sign up before continuing.
@bigfootai/bigfoot-types 5.4.90 → 5.4.92
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/providers/noded.d.ts +7 -1
- package/dist/metadata/providers/noded.d.ts.map +1 -1
- package/dist/metadata/providers/noded.js +145 -4
- package/dist/metadata/providers/noded.js.map +1 -1
- package/dist/metadata/tables/case.d.ts.map +1 -1
- package/dist/metadata/tables/case.js +7 -0
- package/dist/metadata/tables/case.js.map +1 -1
- package/dist/metadata/tables/issue.d.ts.map +1 -1
- package/dist/metadata/tables/issue.js +9 -1
- package/dist/metadata/tables/issue.js.map +1 -1
- package/dist/metadata/tables/opportunity.d.ts.map +1 -1
- package/dist/metadata/tables/opportunity.js +8 -0
- package/dist/metadata/tables/opportunity.js.map +1 -1
- package/dist/metadata/tables/organization.d.ts.map +1 -1
- package/dist/metadata/tables/organization.js +3 -0
- package/dist/metadata/tables/organization.js.map +1 -1
- package/dist/types.d.ts +60 -40
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +31 -4
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
@@ -37,6 +37,7 @@ export declare enum UpsertType {
|
|
37
37
|
Update = "update"
|
38
38
|
}
|
39
39
|
export declare const ORGANIZATION = "organization";
|
40
|
+
export declare const METADATA_TYPE_GENERATED = "generated";
|
40
41
|
export declare enum TagType {
|
41
42
|
Person = "person",
|
42
43
|
Topic = "topic",
|
@@ -585,6 +586,13 @@ export interface UpdateOneSyncInput {
|
|
585
586
|
_id: string;
|
586
587
|
enabled: boolean;
|
587
588
|
}
|
589
|
+
export declare const TagInsightsQL = "\ntype TagInsights {\n\ttagType: TagType!\n\ttagSubType: String\n\tfieldSubscriptions: [String]\n\tpromptSubscriptions: [String]\n}";
|
590
|
+
export interface TagInsights {
|
591
|
+
tagType: TagType;
|
592
|
+
tagSubType?: string;
|
593
|
+
fieldSubscriptions?: string[];
|
594
|
+
promptSubscriptions?: string[];
|
595
|
+
}
|
588
596
|
export declare const DashboardTagSubscriptionQL = "\ntype DashboardTagSubscription {\n\tdashboardSubscriptions: [String]!\n\ttagType: String!\n\ttagSubType: String\n}";
|
589
597
|
export interface DashboardTagSubscription {
|
590
598
|
dashboardSubscriptions: string[];
|
@@ -622,7 +630,7 @@ export interface ExternalId {
|
|
622
630
|
tagSubType?: string;
|
623
631
|
blockType: BlockType;
|
624
632
|
}
|
625
|
-
export declare const ProviderApplicationQL = "\ntype ProviderApplication {\n name: String!\n label: String!\n description: String!\n\ticonUrl: String\n\tsobjects: StandardObjects!\n\tagentMetadata: AgentMetadata\n\tlinkSubscriptions: [String]\n\tlinkToExternalIdRegex: String\n\temailComposerLink: String\n\tpromptTypeSubscriptions: [String]\n\trecordTypeSubscriptions: [String]\n\tdocumentTypeSubscriptions: [String]\n\tdashboardTypeSubscriptions: [String]\n\tdashboardTagSubscriptions: [DashboardTagSubscription]\n\texternalIds: [ExternalId]\n\tauthentication: Boolean!\n\tinstalled: Boolean\n}";
|
633
|
+
export declare const ProviderApplicationQL = "\ntype ProviderApplication {\n name: String!\n label: String!\n description: String!\n\ticonUrl: String\n\tsobjects: StandardObjects!\n\tagentMetadata: AgentMetadata\n\tlinkSubscriptions: [String]\n\tlinkToExternalIdRegex: String\n\temailComposerLink: String\n\tfieldNameSubscriptions: [String]\n\tpromptTypeSubscriptions: [String]\n\trecordTypeSubscriptions: [String]\n\tdocumentTypeSubscriptions: [String]\n\tdashboardTypeSubscriptions: [String]\n\tdashboardTagSubscriptions: [DashboardTagSubscription]\n\ttagInsightDefaults: [TagInsights]\n\texternalIds: [ExternalId]\n\tauthentication: Boolean!\n\tinstalled: Boolean\n}";
|
626
634
|
export interface ProviderApplication {
|
627
635
|
name: string;
|
628
636
|
label: string;
|
@@ -633,17 +641,19 @@ export interface ProviderApplication {
|
|
633
641
|
linkSubscriptions?: string[];
|
634
642
|
linkToExternalIdRegex?: string;
|
635
643
|
emailComposerLink?: string;
|
644
|
+
fieldNameSubscriptions?: string[];
|
636
645
|
promptTypeSubscriptions?: string[];
|
637
646
|
recordTypeSubscriptions?: string[];
|
638
647
|
documentTypeSubscriptions?: string[];
|
639
648
|
dashboardTypeSubscriptions?: string[];
|
640
649
|
dashboardTagSubscriptions?: DashboardTagSubscription[];
|
650
|
+
tagInsightDefaults?: TagInsights[];
|
641
651
|
externalIds?: ExternalId[];
|
642
652
|
externalStorage: boolean;
|
643
653
|
authentication: boolean;
|
644
654
|
installed?: boolean;
|
645
655
|
}
|
646
|
-
export declare const ProviderQL = "\ntype Provider {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n name: String!\n label: String!\n description: String!\n\ticonUrl: String\n instanceUrl: String!\n applications: [ProviderApplication]!\n\tpromptMetadata: [PromptMetadata]!\n\ttableMetadata: [TableMetadata]\n\tdocumentMetadata: [DocumentMetadata]\n\tdashboardMetadata: [DashboardMetadata]\n\tsubscriptionPubSubType: String\n}";
|
656
|
+
export declare const ProviderQL = "\ntype Provider {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n name: String!\n label: String!\n description: String!\n\ticonUrl: String\n instanceUrl: String!\n applications: [ProviderApplication]!\n\tfieldMetadata: [Field]\n\tpromptMetadata: [PromptMetadata]!\n\ttableMetadata: [TableMetadata]\n\tdocumentMetadata: [DocumentMetadata]\n\tdashboardMetadata: [DashboardMetadata]\n\tsubscriptionPubSubType: String\n}";
|
647
657
|
export declare class Provider extends Primitive {
|
648
658
|
name: string;
|
649
659
|
label: string;
|
@@ -651,6 +661,7 @@ export declare class Provider extends Primitive {
|
|
651
661
|
iconUrl?: string;
|
652
662
|
instanceUrl: string;
|
653
663
|
applications: ProviderApplication[];
|
664
|
+
fieldMetadata?: Field[];
|
654
665
|
promptMetadata: PromptMetadata[];
|
655
666
|
tableMetadata?: TableMetadata[];
|
656
667
|
documentMetadata?: DocumentMetadata[];
|
@@ -937,7 +948,7 @@ export declare class Person extends Tag {
|
|
937
948
|
constructor(tenantIdCreated: string, alias: string);
|
938
949
|
}
|
939
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!";
|
940
|
-
export declare const BlockFieldsForUpsert = "\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: String\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";
|
951
|
+
export declare const BlockFieldsForUpsert = "\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: String\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";
|
941
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n}";
|
942
953
|
export declare class Block extends SharedPrimitive {
|
943
954
|
editors: Editor[];
|
@@ -979,6 +990,7 @@ export declare class Block extends SharedPrimitive {
|
|
979
990
|
_feedbackNegative: string[];
|
980
991
|
_feedbackPositive: string[];
|
981
992
|
feedback: BlockFeedbackState;
|
993
|
+
generated: boolean;
|
982
994
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], blockType: BlockType);
|
983
995
|
}
|
984
996
|
export declare function isBlock(sharedPrimitive: SharedPrimitive): sharedPrimitive is Block;
|
@@ -994,12 +1006,13 @@ export declare const FindSubscribingProviderApplicationInputQL = "\ninput FindSu
|
|
994
1006
|
export interface FindSubscribingProviderApplicationInput {
|
995
1007
|
_id: string;
|
996
1008
|
}
|
997
|
-
export declare const SubscribingProviderApplicationQL = "\ntype SubscribingProviderApplication {\n\t_id: String!\n\tprovider: Provider!\n\tapplication: ProviderApplication!\n\tconnectedProvider: ConnectedProvider!\n\tpromptMetadata: [PromptMetadata]\n\ttableMetadata: [TableMetadata]\n\tdocumentMetadata: [DocumentMetadata]\n}";
|
1009
|
+
export declare const SubscribingProviderApplicationQL = "\ntype SubscribingProviderApplication {\n\t_id: String!\n\tprovider: Provider!\n\tapplication: ProviderApplication!\n\tconnectedProvider: ConnectedProvider!\n\tfieldMetadata: [Field]\n\tpromptMetadata: [PromptMetadata]\n\ttableMetadata: [TableMetadata]\n\tdocumentMetadata: [DocumentMetadata]\n}";
|
998
1010
|
export interface SubscribingProviderApplication {
|
999
1011
|
_id?: string;
|
1000
1012
|
provider: Provider;
|
1001
1013
|
application: ProviderApplication;
|
1002
1014
|
connectedProvider?: ConnectedProvider;
|
1015
|
+
fieldMetadata?: Field[];
|
1003
1016
|
promptMetadata?: PromptMetadata[];
|
1004
1017
|
tableMetadata?: TableMetadata[];
|
1005
1018
|
documentMetadata?: DocumentMetadata[];
|
@@ -1026,9 +1039,9 @@ export declare class BusinessObjectIngestionRequest extends Primitive {
|
|
1026
1039
|
businessObject?: BusinessObject;
|
1027
1040
|
constructor(tenantIdCreated: string, originReferenceBlock: ReferenceBlock, uri: string);
|
1028
1041
|
}
|
1029
|
-
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
1030
|
-
export declare const BusinessObjectFieldsForUpsert = "\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: String\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 provider: String\n application: String\n externalId: String\n uri: String\n\texternalResponse: String";
|
1031
|
-
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\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";
|
1043
|
+
export declare const BusinessObjectFieldsForUpsert = "\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: String\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 provider: String\n application: String\n externalId: String\n uri: String\n\texternalResponse: String";
|
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\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}";
|
1032
1045
|
export declare class BusinessObject extends Block {
|
1033
1046
|
provider: string;
|
1034
1047
|
application: string;
|
@@ -1071,8 +1084,8 @@ export interface TranscriptionSection {
|
|
1071
1084
|
summaryDocument?: string;
|
1072
1085
|
timedEntries?: TimedEntry[];
|
1073
1086
|
}
|
1074
|
-
export declare const IngestTranscriptionInputQL = "\ninput IngestTranscriptionInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: String\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 provider: String\n application: String\n externalId: String\n uri: String\n\texternalResponse: String\n\ttitle: 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}";
|
1075
|
-
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
1087
|
+
export declare const IngestTranscriptionInputQL = "\ninput IngestTranscriptionInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: String\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 provider: String\n application: String\n externalId: String\n uri: String\n\texternalResponse: String\n\ttitle: 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}";
|
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\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\ttitle: 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}";
|
1076
1089
|
export declare class Transcription extends BusinessObject {
|
1077
1090
|
title?: string;
|
1078
1091
|
dateStart?: number;
|
@@ -1192,7 +1205,7 @@ export interface AuthRefreshProviderRequest {
|
|
1192
1205
|
export interface AuthRefreshProviderResponse {
|
1193
1206
|
credential: Credential;
|
1194
1207
|
}
|
1195
|
-
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\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}";
|
1196
1209
|
export declare class Event extends BusinessObject {
|
1197
1210
|
calendarId: string;
|
1198
1211
|
eventStatus: EventStatus;
|
@@ -1201,6 +1214,7 @@ export declare class Event extends BusinessObject {
|
|
1201
1214
|
location?: string | null;
|
1202
1215
|
dateStartOriginal?: number | null;
|
1203
1216
|
recurrence?: RecurrenceRFC[] | null;
|
1217
|
+
series?: string | null;
|
1204
1218
|
dateEnd?: number | null;
|
1205
1219
|
subject?: string | null;
|
1206
1220
|
description?: string | null;
|
@@ -1210,7 +1224,7 @@ export declare class Event extends BusinessObject {
|
|
1210
1224
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, calendarId: string, eventStatus: EventStatus, dateStart: number, organizedBy: PersonReference);
|
1211
1225
|
}
|
1212
1226
|
export declare function isEvent(block: Block): block is Event;
|
1213
|
-
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\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}";
|
1214
1228
|
export declare class Calendar extends BusinessObject {
|
1215
1229
|
timeZone: string;
|
1216
1230
|
description?: string | null;
|
@@ -1219,8 +1233,8 @@ export declare class Calendar extends BusinessObject {
|
|
1219
1233
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, timeZone: string);
|
1220
1234
|
}
|
1221
1235
|
export declare function isCalendar(block: Block): block is Calendar;
|
1222
|
-
export declare const IngestTodoInputQL = "\ninput IngestTodoInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: String\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\thtmlContent: String\n\ttimeStart: Float\n\tduration: Float\n\tspeaker: PersonReferenceInput\n}";
|
1223
|
-
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
1236
|
+
export declare const IngestTodoInputQL = "\ninput IngestTodoInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: String\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\thtmlContent: String\n\ttimeStart: Float\n\tduration: Float\n\tspeaker: PersonReferenceInput\n}";
|
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\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}";
|
1224
1238
|
export declare class Todo extends BusinessObject implements BaseTask, TimedEntry {
|
1225
1239
|
htmlContent?: string;
|
1226
1240
|
timeStart?: number;
|
@@ -1231,8 +1245,8 @@ export declare class Todo extends BusinessObject implements BaseTask, TimedEntry
|
|
1231
1245
|
export declare function isTodo(block: Block): block is Todo;
|
1232
1246
|
export interface IngestTodoInput extends Todo {
|
1233
1247
|
}
|
1234
|
-
export declare const IngestEmailInputQL = "\ninput IngestEmailInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: String\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 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}";
|
1235
|
-
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
1248
|
+
export declare const IngestEmailInputQL = "\ninput IngestEmailInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: String\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 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}";
|
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\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}";
|
1236
1250
|
export declare class Email extends BusinessObject {
|
1237
1251
|
to?: PersonReference[];
|
1238
1252
|
cc?: PersonReference[];
|
@@ -1256,8 +1270,8 @@ export declare enum MessageRole {
|
|
1256
1270
|
User = "USER"
|
1257
1271
|
}
|
1258
1272
|
export declare const MessageRoleQL = "\nenum MessageRole {\n ASSISTANT\n TOOL\n UNKNOWN\n USER\n}";
|
1259
|
-
export declare const UpsertMessageInputQL = "\ninput UpsertMessageInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: String\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\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}";
|
1260
|
-
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
1273
|
+
export declare const UpsertMessageInputQL = "\ninput UpsertMessageInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: String\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\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}";
|
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\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}";
|
1261
1275
|
export declare class Message extends BusinessObject {
|
1262
1276
|
htmlContent?: string;
|
1263
1277
|
originReferenceTagId?: string;
|
@@ -1273,11 +1287,11 @@ export declare class Message extends BusinessObject {
|
|
1273
1287
|
export declare function isMessage(block: Block): block is Message;
|
1274
1288
|
export interface UpsertMessageInput extends Message {
|
1275
1289
|
}
|
1276
|
-
export declare const IngestMessagesInputQL = "\ninput IngestMessagesInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: String\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\tmessages: [UpsertMessageInput]\n}";
|
1290
|
+
export declare const IngestMessagesInputQL = "\ninput IngestMessagesInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: String\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\tmessages: [UpsertMessageInput]\n}";
|
1277
1291
|
export interface IngestMessagesInput {
|
1278
1292
|
messages: Message[];
|
1279
1293
|
}
|
1280
|
-
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\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}";
|
1281
1295
|
export declare class Statement extends BusinessObject {
|
1282
1296
|
metadataType: string;
|
1283
1297
|
tagId?: string;
|
@@ -1290,7 +1304,7 @@ export declare enum ThreadReadStatus {
|
|
1290
1304
|
Unread = "UNREAD"
|
1291
1305
|
}
|
1292
1306
|
export declare const ThreadReadStatusQL = "\nenum ThreadReadStatus {\n READ\n UNKNOWN\n UNREAD\n}";
|
1293
|
-
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\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}";
|
1294
1308
|
export declare class Thread extends BusinessObject {
|
1295
1309
|
agentTaskName?: string;
|
1296
1310
|
messageCount: number;
|
@@ -1299,11 +1313,11 @@ export declare class Thread extends BusinessObject {
|
|
1299
1313
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
|
1300
1314
|
}
|
1301
1315
|
export declare function isThread(block: Block): block is Thread;
|
1302
|
-
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: String\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\treadStatus: ThreadReadStatus\n}";
|
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: String\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\treadStatus: ThreadReadStatus\n}";
|
1303
1317
|
export interface UpsertThreadInput extends Thread {
|
1304
1318
|
}
|
1305
|
-
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
1306
|
-
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\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 title: String\n description: String\n previewImage: String\n htmlContent: String\n\tmetadataType: String";
|
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\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 title: String\n description: String\n previewImage: String\n htmlContent: String\n\tmetadataType: String\n}";
|
1307
1321
|
export declare class Document extends BusinessObject {
|
1308
1322
|
title?: string;
|
1309
1323
|
description?: string;
|
@@ -1326,7 +1340,7 @@ export declare class BlockData extends Primitive {
|
|
1326
1340
|
search?: GraphSearchInput;
|
1327
1341
|
constructor(name: string);
|
1328
1342
|
}
|
1329
|
-
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\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}";
|
1330
1344
|
export declare class Dashboard extends BusinessObject {
|
1331
1345
|
metadata: DashboardMetadata;
|
1332
1346
|
blockData: BlockData[];
|
@@ -1334,7 +1348,7 @@ export declare class Dashboard extends BusinessObject {
|
|
1334
1348
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, dashboardMetadata: DashboardMetadata, tagId: string);
|
1335
1349
|
}
|
1336
1350
|
export declare function isDashboard(block: Block): block is Dashboard;
|
1337
|
-
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\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 title: String\n description: String\n bannerImage: String\n htmlContent: String\n}";
|
1338
1352
|
export declare class Website extends BusinessObject {
|
1339
1353
|
title?: string;
|
1340
1354
|
description?: string;
|
@@ -1365,7 +1379,7 @@ export declare class DashboardMetadata extends Metadata {
|
|
1365
1379
|
notificationMetadataTypes: string[];
|
1366
1380
|
constructor(label: string, description: string, metadataType: string, classifiers: string[], threshold: number, blockDescriptions: BlockDescription[]);
|
1367
1381
|
}
|
1368
|
-
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\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}";
|
1369
1383
|
export declare class Template extends BusinessObject {
|
1370
1384
|
metadata?: DocumentMetadata;
|
1371
1385
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
|
@@ -1394,11 +1408,12 @@ export interface Option {
|
|
1394
1408
|
status?: TaskStatus;
|
1395
1409
|
priority?: TaskPriority;
|
1396
1410
|
}
|
1397
|
-
export declare const FieldQL = "\ntype Field {\n label: String!\n\tname: String!\n\tdescription: String!\n\timportant: Boolean\n\tstatus: Boolean\n\tpriority: Boolean\n\ttagType: TagType\n\ttagSubType: String\n\tfieldType: String!\n\tfieldVariation: String\n\tmaximumCharacters: Int\n\treadOnly: Boolean!\n options: [Option]\n}";
|
1411
|
+
export declare const FieldQL = "\ntype Field {\n label: String!\n\tname: String!\n\tdescription: String!\n\tprompt: String!\n\timportant: Boolean\n\tstatus: Boolean\n\tpriority: Boolean\n\ttagType: TagType\n\ttagSubType: String\n\tfieldType: String!\n\tfieldVariation: String\n\tmaximumCharacters: Int\n\treadOnly: Boolean!\n options: [Option]\n}";
|
1398
1412
|
export interface Field {
|
1399
1413
|
label: string;
|
1400
1414
|
name: string;
|
1401
1415
|
description: string;
|
1416
|
+
prompt: string;
|
1402
1417
|
important?: boolean;
|
1403
1418
|
status?: boolean;
|
1404
1419
|
priority?: boolean;
|
@@ -1425,28 +1440,31 @@ export declare class TableMetadata extends Metadata {
|
|
1425
1440
|
constructor(label: string, description: string, metadataType: string, fields: Field[], classifiers: string[], threshold: number);
|
1426
1441
|
}
|
1427
1442
|
export declare const RecordInputQL = "\ninput RecordInput {\n _id: String!\n values: [FieldValueInput]!\n}";
|
1428
|
-
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\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}";
|
1429
1444
|
export interface RecordInput {
|
1430
1445
|
_id: string;
|
1431
1446
|
values: FieldValue[];
|
1432
1447
|
}
|
1433
1448
|
declare class BigfootRecord extends BusinessObject {
|
1449
|
+
metadataType: string | null;
|
1434
1450
|
values: FieldValue[];
|
1435
1451
|
enabled: boolean;
|
1436
1452
|
processingStage?: ProcessingStage;
|
1437
1453
|
processingReason?: string;
|
1438
1454
|
dashboardId?: string;
|
1455
|
+
tagId?: string;
|
1439
1456
|
blockDescriptionName?: string;
|
1440
1457
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, values: FieldValue[]);
|
1441
1458
|
}
|
1442
1459
|
export { BigfootRecord as Record };
|
1443
1460
|
export declare function isRecord(block: Block): block is BigfootRecord;
|
1444
|
-
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
1445
|
-
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\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";
|
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: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\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}";
|
1446
1463
|
export declare class Table extends BusinessObject {
|
1447
1464
|
metadata: TableMetadata;
|
1448
1465
|
records?: BigfootRecord[];
|
1449
1466
|
connectionId?: string;
|
1467
|
+
requestHash?: string;
|
1450
1468
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, metadata: TableMetadata);
|
1451
1469
|
}
|
1452
1470
|
export declare function isTable(block: Block): block is Table;
|
@@ -1686,7 +1704,7 @@ export interface DeleteSharingTagInput {
|
|
1686
1704
|
referenceBlock: ReferenceBlock;
|
1687
1705
|
tagId: string;
|
1688
1706
|
}
|
1689
|
-
export declare const UpdateTaskInputQL = "\ninput UpsertTaskInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: String\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 editor: EditorInput!\n}";
|
1707
|
+
export declare const UpdateTaskInputQL = "\ninput UpsertTaskInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: String\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 editor: EditorInput!\n}";
|
1690
1708
|
export interface UpsertTaskInput extends Task {
|
1691
1709
|
editor: Editor;
|
1692
1710
|
}
|
@@ -1786,7 +1804,7 @@ export interface SearchTagsInput extends PaginatedInput {
|
|
1786
1804
|
page?: number;
|
1787
1805
|
generateDashboard?: boolean;
|
1788
1806
|
}
|
1789
|
-
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: String\n\treferenceBlock: ReferenceBlockInput\n\toriginReferenceBlock: ReferenceBlockInput\n\toriginReferenceTagId: String\n\teditorId: String\n\teditorGroupId: String\n\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\n\tpage: Int\n}";
|
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: String\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}";
|
1790
1808
|
export interface SearchInput extends PaginatedInput {
|
1791
1809
|
application?: string;
|
1792
1810
|
provider?: string;
|
@@ -1810,6 +1828,7 @@ export interface SearchInput extends PaginatedInput {
|
|
1810
1828
|
originReferenceTagId?: string;
|
1811
1829
|
editorId?: string;
|
1812
1830
|
editorGroupId?: string;
|
1831
|
+
generated?: boolean;
|
1813
1832
|
parentId?: string;
|
1814
1833
|
favorite?: boolean;
|
1815
1834
|
snoozed?: boolean;
|
@@ -1906,10 +1925,10 @@ export interface SortOptionInput {
|
|
1906
1925
|
field: string;
|
1907
1926
|
order: OrderDirection;
|
1908
1927
|
}
|
1909
|
-
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\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\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";
|
1910
|
-
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\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";
|
1911
|
-
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\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}";
|
1912
|
-
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\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\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 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\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
|
+
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
|
+
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\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}";
|
1913
1932
|
export interface GraphSearchInput extends PaginatedInput {
|
1914
1933
|
application?: string;
|
1915
1934
|
provider?: string;
|
@@ -1925,6 +1944,7 @@ export interface GraphSearchInput extends PaginatedInput {
|
|
1925
1944
|
originReferenceTagId?: string;
|
1926
1945
|
editorId?: string;
|
1927
1946
|
editorGroupId?: string;
|
1947
|
+
generated?: boolean;
|
1928
1948
|
parentId?: string;
|
1929
1949
|
favorite?: boolean;
|
1930
1950
|
snoozed?: boolean;
|
@@ -1938,8 +1958,8 @@ export interface GraphSearchInput extends PaginatedInput {
|
|
1938
1958
|
page?: number;
|
1939
1959
|
threadIds?: string[];
|
1940
1960
|
}
|
1941
|
-
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\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}";
|
1942
|
-
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\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\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 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}";
|
1962
|
+
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\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}";
|
1943
1963
|
export interface GraphSearchTagsInput extends GraphSearchInput {
|
1944
1964
|
folderIds?: string[];
|
1945
1965
|
tagTypes?: TagType[];
|
@@ -1947,7 +1967,7 @@ export interface GraphSearchTagsInput extends GraphSearchInput {
|
|
1947
1967
|
minCoOccurrencePercentage?: number;
|
1948
1968
|
minOccurrenceCount?: number;
|
1949
1969
|
}
|
1950
|
-
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\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\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}";
|
1970
|
+
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\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}";
|
1951
1971
|
export interface GraphSearchEventsInput extends GraphSearchInput, PaginatedInput {
|
1952
1972
|
calendarId?: string;
|
1953
1973
|
dateStart?: NumberFilterInput;
|
@@ -2009,7 +2029,7 @@ export declare enum TimeUnit {
|
|
2009
2029
|
Month = "MONTH",
|
2010
2030
|
Year = "YEAR"
|
2011
2031
|
}
|
2012
|
-
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\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\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}";
|
2032
|
+
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\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}";
|
2013
2033
|
export interface FindBlockActivityInput extends GraphSearchInput {
|
2014
2034
|
gt: number;
|
2015
2035
|
lt: number;
|