@bigfootai/bigfoot-types 5.4.90 → 5.4.91
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 +5 -1
- package/dist/metadata/providers/noded.d.ts.map +1 -1
- package/dist/metadata/providers/noded.js +114 -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 +58 -40
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +26 -3
- 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
@@ -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 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;
|
@@ -1210,7 +1223,7 @@ export declare class Event extends BusinessObject {
|
|
1210
1223
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, calendarId: string, eventStatus: EventStatus, dateStart: number, organizedBy: PersonReference);
|
1211
1224
|
}
|
1212
1225
|
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
|
1226
|
+
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
1227
|
export declare class Calendar extends BusinessObject {
|
1215
1228
|
timeZone: string;
|
1216
1229
|
description?: string | null;
|
@@ -1219,8 +1232,8 @@ export declare class Calendar extends BusinessObject {
|
|
1219
1232
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, timeZone: string);
|
1220
1233
|
}
|
1221
1234
|
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
|
1235
|
+
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}";
|
1236
|
+
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
1237
|
export declare class Todo extends BusinessObject implements BaseTask, TimedEntry {
|
1225
1238
|
htmlContent?: string;
|
1226
1239
|
timeStart?: number;
|
@@ -1231,8 +1244,8 @@ export declare class Todo extends BusinessObject implements BaseTask, TimedEntry
|
|
1231
1244
|
export declare function isTodo(block: Block): block is Todo;
|
1232
1245
|
export interface IngestTodoInput extends Todo {
|
1233
1246
|
}
|
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
|
1247
|
+
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}";
|
1248
|
+
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
1249
|
export declare class Email extends BusinessObject {
|
1237
1250
|
to?: PersonReference[];
|
1238
1251
|
cc?: PersonReference[];
|
@@ -1256,8 +1269,8 @@ export declare enum MessageRole {
|
|
1256
1269
|
User = "USER"
|
1257
1270
|
}
|
1258
1271
|
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
|
1272
|
+
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}";
|
1273
|
+
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
1274
|
export declare class Message extends BusinessObject {
|
1262
1275
|
htmlContent?: string;
|
1263
1276
|
originReferenceTagId?: string;
|
@@ -1273,11 +1286,11 @@ export declare class Message extends BusinessObject {
|
|
1273
1286
|
export declare function isMessage(block: Block): block is Message;
|
1274
1287
|
export interface UpsertMessageInput extends Message {
|
1275
1288
|
}
|
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}";
|
1289
|
+
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
1290
|
export interface IngestMessagesInput {
|
1278
1291
|
messages: Message[];
|
1279
1292
|
}
|
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
|
1293
|
+
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
1294
|
export declare class Statement extends BusinessObject {
|
1282
1295
|
metadataType: string;
|
1283
1296
|
tagId?: string;
|
@@ -1290,7 +1303,7 @@ export declare enum ThreadReadStatus {
|
|
1290
1303
|
Unread = "UNREAD"
|
1291
1304
|
}
|
1292
1305
|
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
|
1306
|
+
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
1307
|
export declare class Thread extends BusinessObject {
|
1295
1308
|
agentTaskName?: string;
|
1296
1309
|
messageCount: number;
|
@@ -1299,11 +1312,11 @@ export declare class Thread extends BusinessObject {
|
|
1299
1312
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
|
1300
1313
|
}
|
1301
1314
|
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}";
|
1315
|
+
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
1316
|
export interface UpsertThreadInput extends Thread {
|
1304
1317
|
}
|
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
|
1318
|
+
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";
|
1319
|
+
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
1320
|
export declare class Document extends BusinessObject {
|
1308
1321
|
title?: string;
|
1309
1322
|
description?: string;
|
@@ -1326,7 +1339,7 @@ export declare class BlockData extends Primitive {
|
|
1326
1339
|
search?: GraphSearchInput;
|
1327
1340
|
constructor(name: string);
|
1328
1341
|
}
|
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
|
1342
|
+
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
1343
|
export declare class Dashboard extends BusinessObject {
|
1331
1344
|
metadata: DashboardMetadata;
|
1332
1345
|
blockData: BlockData[];
|
@@ -1334,7 +1347,7 @@ export declare class Dashboard extends BusinessObject {
|
|
1334
1347
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, dashboardMetadata: DashboardMetadata, tagId: string);
|
1335
1348
|
}
|
1336
1349
|
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
|
1350
|
+
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
1351
|
export declare class Website extends BusinessObject {
|
1339
1352
|
title?: string;
|
1340
1353
|
description?: string;
|
@@ -1365,7 +1378,7 @@ export declare class DashboardMetadata extends Metadata {
|
|
1365
1378
|
notificationMetadataTypes: string[];
|
1366
1379
|
constructor(label: string, description: string, metadataType: string, classifiers: string[], threshold: number, blockDescriptions: BlockDescription[]);
|
1367
1380
|
}
|
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
|
1381
|
+
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
1382
|
export declare class Template extends BusinessObject {
|
1370
1383
|
metadata?: DocumentMetadata;
|
1371
1384
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
|
@@ -1394,11 +1407,12 @@ export interface Option {
|
|
1394
1407
|
status?: TaskStatus;
|
1395
1408
|
priority?: TaskPriority;
|
1396
1409
|
}
|
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}";
|
1410
|
+
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
1411
|
export interface Field {
|
1399
1412
|
label: string;
|
1400
1413
|
name: string;
|
1401
1414
|
description: string;
|
1415
|
+
prompt: string;
|
1402
1416
|
important?: boolean;
|
1403
1417
|
status?: boolean;
|
1404
1418
|
priority?: boolean;
|
@@ -1425,24 +1439,26 @@ export declare class TableMetadata extends Metadata {
|
|
1425
1439
|
constructor(label: string, description: string, metadataType: string, fields: Field[], classifiers: string[], threshold: number);
|
1426
1440
|
}
|
1427
1441
|
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
|
1442
|
+
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
1443
|
export interface RecordInput {
|
1430
1444
|
_id: string;
|
1431
1445
|
values: FieldValue[];
|
1432
1446
|
}
|
1433
1447
|
declare class BigfootRecord extends BusinessObject {
|
1448
|
+
metadataType: string | null;
|
1434
1449
|
values: FieldValue[];
|
1435
1450
|
enabled: boolean;
|
1436
1451
|
processingStage?: ProcessingStage;
|
1437
1452
|
processingReason?: string;
|
1438
1453
|
dashboardId?: string;
|
1454
|
+
tagId?: string;
|
1439
1455
|
blockDescriptionName?: string;
|
1440
1456
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, values: FieldValue[]);
|
1441
1457
|
}
|
1442
1458
|
export { BigfootRecord as Record };
|
1443
1459
|
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
|
1460
|
+
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";
|
1461
|
+
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}";
|
1446
1462
|
export declare class Table extends BusinessObject {
|
1447
1463
|
metadata: TableMetadata;
|
1448
1464
|
records?: BigfootRecord[];
|
@@ -1686,7 +1702,7 @@ export interface DeleteSharingTagInput {
|
|
1686
1702
|
referenceBlock: ReferenceBlock;
|
1687
1703
|
tagId: string;
|
1688
1704
|
}
|
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}";
|
1705
|
+
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
1706
|
export interface UpsertTaskInput extends Task {
|
1691
1707
|
editor: Editor;
|
1692
1708
|
}
|
@@ -1786,7 +1802,7 @@ export interface SearchTagsInput extends PaginatedInput {
|
|
1786
1802
|
page?: number;
|
1787
1803
|
generateDashboard?: boolean;
|
1788
1804
|
}
|
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}";
|
1805
|
+
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
1806
|
export interface SearchInput extends PaginatedInput {
|
1791
1807
|
application?: string;
|
1792
1808
|
provider?: string;
|
@@ -1810,6 +1826,7 @@ export interface SearchInput extends PaginatedInput {
|
|
1810
1826
|
originReferenceTagId?: string;
|
1811
1827
|
editorId?: string;
|
1812
1828
|
editorGroupId?: string;
|
1829
|
+
generated?: boolean;
|
1813
1830
|
parentId?: string;
|
1814
1831
|
favorite?: boolean;
|
1815
1832
|
snoozed?: boolean;
|
@@ -1906,10 +1923,10 @@ export interface SortOptionInput {
|
|
1906
1923
|
field: string;
|
1907
1924
|
order: OrderDirection;
|
1908
1925
|
}
|
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}";
|
1926
|
+
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";
|
1927
|
+
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";
|
1928
|
+
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}";
|
1929
|
+
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
1930
|
export interface GraphSearchInput extends PaginatedInput {
|
1914
1931
|
application?: string;
|
1915
1932
|
provider?: string;
|
@@ -1925,6 +1942,7 @@ export interface GraphSearchInput extends PaginatedInput {
|
|
1925
1942
|
originReferenceTagId?: string;
|
1926
1943
|
editorId?: string;
|
1927
1944
|
editorGroupId?: string;
|
1945
|
+
generated?: boolean;
|
1928
1946
|
parentId?: string;
|
1929
1947
|
favorite?: boolean;
|
1930
1948
|
snoozed?: boolean;
|
@@ -1938,8 +1956,8 @@ export interface GraphSearchInput extends PaginatedInput {
|
|
1938
1956
|
page?: number;
|
1939
1957
|
threadIds?: string[];
|
1940
1958
|
}
|
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}";
|
1959
|
+
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}";
|
1960
|
+
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
1961
|
export interface GraphSearchTagsInput extends GraphSearchInput {
|
1944
1962
|
folderIds?: string[];
|
1945
1963
|
tagTypes?: TagType[];
|
@@ -1947,7 +1965,7 @@ export interface GraphSearchTagsInput extends GraphSearchInput {
|
|
1947
1965
|
minCoOccurrencePercentage?: number;
|
1948
1966
|
minOccurrenceCount?: number;
|
1949
1967
|
}
|
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}";
|
1968
|
+
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
1969
|
export interface GraphSearchEventsInput extends GraphSearchInput, PaginatedInput {
|
1952
1970
|
calendarId?: string;
|
1953
1971
|
dateStart?: NumberFilterInput;
|
@@ -2009,7 +2027,7 @@ export declare enum TimeUnit {
|
|
2009
2027
|
Month = "MONTH",
|
2010
2028
|
Year = "YEAR"
|
2011
2029
|
}
|
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}";
|
2030
|
+
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
2031
|
export interface FindBlockActivityInput extends GraphSearchInput {
|
2014
2032
|
gt: number;
|
2015
2033
|
lt: number;
|