@bigfootai/bigfoot-types 5.4.89 → 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 +115 -5
- 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 +87 -51
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +67 -5
- 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[];
|
@@ -762,14 +773,15 @@ export interface TagRecommendation {
|
|
762
773
|
tags: Tag[];
|
763
774
|
entity: EntityEntry;
|
764
775
|
}
|
765
|
-
export declare const TenantLightInputQL = "\ninput TenantLightInput {\n\t_id: String!\n\tfamilyName: String\n\tgivenName: String\n\tallowed: Boolean\n}";
|
776
|
+
export declare const TenantLightInputQL = "\ninput TenantLightInput {\n\t_id: String!\n\tfamilyName: String\n\tgivenName: String\n\tallowed: Boolean\n\tclientSettings: JSONObject\n}";
|
766
777
|
export declare class TenantLightInput {
|
767
778
|
_id: string;
|
768
779
|
familyName?: string;
|
769
780
|
givenName?: string;
|
770
781
|
allowed?: boolean;
|
782
|
+
clientSettings?: Record<string, unknown>;
|
771
783
|
}
|
772
|
-
export declare const TenantLightQL = "\ntype TenantLight {\n _id: String!\n\tdateAllowed: Float\n\tdateCreated: Float!\n\tdomainMemberships: [String]!\n\temail: String!\n\temailVerified: Boolean!\n\ttagId: String!\n\tfamilyName: String\n\tgivenName: String\n\tallowed: Boolean\n\taccess: String\n\tpicture: String\n}";
|
784
|
+
export declare const TenantLightQL = "\ntype TenantLight {\n _id: String!\n\tdateAllowed: Float\n\tdateCreated: Float!\n\tdomainMemberships: [String]!\n\temail: String!\n\temailVerified: Boolean!\n\ttagId: String!\n\tfamilyName: String\n\tgivenName: String\n\tallowed: Boolean\n\taccess: String\n\tpicture: String\n\tclientSettings: JSONObject\n}";
|
773
785
|
export declare class TenantLight {
|
774
786
|
_id: string;
|
775
787
|
dateAllowed: number | null;
|
@@ -783,6 +795,7 @@ export declare class TenantLight {
|
|
783
795
|
allowed?: boolean;
|
784
796
|
access?: string;
|
785
797
|
picture?: string | null;
|
798
|
+
clientSettings?: Record<string, unknown>;
|
786
799
|
constructor(tenant: Tenant);
|
787
800
|
}
|
788
801
|
export declare const TenantInfoQL = "\ntype TenantInfo {\n _id: String!\n\tdateAllowed: Float\n\tdateCreated: Float!\n\tdomainMemberships: [String]!\n\temail: String!\n\temailVerified: Boolean!\n\ttagId: String!\n\tfamilyName: String\n\tgivenName: String\n\tallowed: Boolean\n\taccess: String\n\tpicture: String\n\tcalendar: String\n\tcalendarOther: String\n\ttranscription: String\n\ttranscriptionOther: String\n}";
|
@@ -849,7 +862,7 @@ export interface BaseTask {
|
|
849
862
|
snoozed: boolean;
|
850
863
|
status?: TaskStatus;
|
851
864
|
}
|
852
|
-
export declare const RecommendationQL = "\ntype Recommendation {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n\treferenceBlock: ReferenceBlock\n\trecommendationType: String!\n\tconnectRecommendation: ConnectRecommendation\n\tupsertRecommendation: UpsertRecommendation\n\tshareRecommendation: ShareRecommendation\n\tmessageRecommendation: MessageRecommendation\n\tnotificationRecommendation: NotificationRecommendation\n\treactionRecommendation: ReactionRecommendation\n\tchangeRecommendation: ChangeRecommendation\n\tingestionRecommendation: IngestionRecommendation\n\tparentId: String\n\tdateDue: Float\n\tdateRemindMe: Float\n\tarchived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tthumbs: String\n\tcomment: String\n\tstatus: String\n}";
|
865
|
+
export declare const RecommendationQL = "\ntype Recommendation {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n\treferenceBlock: ReferenceBlock\n\trecommendationType: String!\n\tconnectRecommendation: ConnectRecommendation\n\tupsertRecommendation: UpsertRecommendation\n\tshareRecommendation: ShareRecommendation\n\tmessageRecommendation: MessageRecommendation\n\tnotificationRecommendation: NotificationRecommendation\n\treactionRecommendation: ReactionRecommendation\n\tchangeRecommendation: ChangeRecommendation\n\tingestionRecommendation: IngestionRecommendation\n\trangeId: String\n\tparentId: String\n\tdateDue: Float\n\tdateRemindMe: Float\n\tarchived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tthumbs: String\n\tcomment: String\n\tstatus: String\n}";
|
853
866
|
export declare class Recommendation extends SharedPrimitive implements BaseTask {
|
854
867
|
referenceBlock: ReferenceBlock;
|
855
868
|
recommendationType: RecommendationType;
|
@@ -861,6 +874,7 @@ export declare class Recommendation extends SharedPrimitive implements BaseTask
|
|
861
874
|
reactionRecommendation?: ReactionRecommendation;
|
862
875
|
changeRecommendation?: ChangeRecommendation;
|
863
876
|
ingestionRecommendation?: IngestionRecommendation;
|
877
|
+
rangeId?: string;
|
864
878
|
parentId?: string;
|
865
879
|
dateDue?: number;
|
866
880
|
dateRemindMe?: number;
|
@@ -917,6 +931,7 @@ export declare class Tenant extends Primitive {
|
|
917
931
|
_nextGenerationBy?: number;
|
918
932
|
_waitlistData?: Record<string, string>;
|
919
933
|
_organizationTagIds: string[];
|
934
|
+
clientSettings?: Record<string, unknown>;
|
920
935
|
constructor(domainMemberships: string[], email: string, emailVerified: boolean, domainIdEmail: string, tagId: string);
|
921
936
|
}
|
922
937
|
export declare const DomainQL = "\ntype Domain {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n domain: String!\n\tmember: Boolean!\n}";
|
@@ -932,9 +947,9 @@ export declare class Organization extends Tag {
|
|
932
947
|
export declare class Person extends Tag {
|
933
948
|
constructor(tenantIdCreated: string, alias: string);
|
934
949
|
}
|
935
|
-
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\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!";
|
936
|
-
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";
|
937
|
-
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\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n}";
|
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!";
|
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";
|
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}";
|
938
953
|
export declare class Block extends SharedPrimitive {
|
939
954
|
editors: Editor[];
|
940
955
|
blockType: BlockType;
|
@@ -958,6 +973,7 @@ export declare class Block extends SharedPrimitive {
|
|
958
973
|
dateMatched?: number;
|
959
974
|
editorId?: string;
|
960
975
|
editorGroupId?: string;
|
976
|
+
rangeId?: string;
|
961
977
|
parentId?: string;
|
962
978
|
originReferenceBlock?: ReferenceBlock;
|
963
979
|
generatedReferenceBlock?: ReferenceBlock;
|
@@ -974,6 +990,7 @@ export declare class Block extends SharedPrimitive {
|
|
974
990
|
_feedbackNegative: string[];
|
975
991
|
_feedbackPositive: string[];
|
976
992
|
feedback: BlockFeedbackState;
|
993
|
+
generated: boolean;
|
977
994
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], blockType: BlockType);
|
978
995
|
}
|
979
996
|
export declare function isBlock(sharedPrimitive: SharedPrimitive): sharedPrimitive is Block;
|
@@ -989,12 +1006,13 @@ export declare const FindSubscribingProviderApplicationInputQL = "\ninput FindSu
|
|
989
1006
|
export interface FindSubscribingProviderApplicationInput {
|
990
1007
|
_id: string;
|
991
1008
|
}
|
992
|
-
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}";
|
993
1010
|
export interface SubscribingProviderApplication {
|
994
1011
|
_id?: string;
|
995
1012
|
provider: Provider;
|
996
1013
|
application: ProviderApplication;
|
997
1014
|
connectedProvider?: ConnectedProvider;
|
1015
|
+
fieldMetadata?: Field[];
|
998
1016
|
promptMetadata?: PromptMetadata[];
|
999
1017
|
tableMetadata?: TableMetadata[];
|
1000
1018
|
documentMetadata?: DocumentMetadata[];
|
@@ -1021,9 +1039,9 @@ export declare class BusinessObjectIngestionRequest extends Primitive {
|
|
1021
1039
|
businessObject?: BusinessObject;
|
1022
1040
|
constructor(tenantIdCreated: string, originReferenceBlock: ReferenceBlock, uri: string);
|
1023
1041
|
}
|
1024
|
-
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\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
1025
|
-
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";
|
1026
|
-
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\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}";
|
1027
1045
|
export declare class BusinessObject extends Block {
|
1028
1046
|
provider: string;
|
1029
1047
|
application: string;
|
@@ -1037,12 +1055,12 @@ export declare function isBusinessObject(block: Block): block is BusinessObject;
|
|
1037
1055
|
export declare class Section extends Block {
|
1038
1056
|
constructor(id: string);
|
1039
1057
|
}
|
1040
|
-
export declare const NoteQL = "\ntype Note implements Block {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n}";
|
1058
|
+
export declare const NoteQL = "\ntype Note implements Block {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n}";
|
1041
1059
|
export declare class Note extends Block {
|
1042
1060
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[]);
|
1043
1061
|
}
|
1044
1062
|
export declare function isNote(block: Block): block is Note;
|
1045
|
-
export declare const TaskQL = "\ntype Task implements Block {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n}";
|
1063
|
+
export declare const TaskQL = "\ntype Task implements Block {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n text: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: String\n\trangeId: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n}";
|
1046
1064
|
export declare class Task extends Block implements BaseTask {
|
1047
1065
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[]);
|
1048
1066
|
}
|
@@ -1066,8 +1084,8 @@ export interface TranscriptionSection {
|
|
1066
1084
|
summaryDocument?: string;
|
1067
1085
|
timedEntries?: TimedEntry[];
|
1068
1086
|
}
|
1069
|
-
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}";
|
1070
|
-
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\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}";
|
1071
1089
|
export declare class Transcription extends BusinessObject {
|
1072
1090
|
title?: string;
|
1073
1091
|
dateStart?: number;
|
@@ -1187,7 +1205,7 @@ export interface AuthRefreshProviderRequest {
|
|
1187
1205
|
export interface AuthRefreshProviderResponse {
|
1188
1206
|
credential: Credential;
|
1189
1207
|
}
|
1190
|
-
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\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}";
|
1191
1209
|
export declare class Event extends BusinessObject {
|
1192
1210
|
calendarId: string;
|
1193
1211
|
eventStatus: EventStatus;
|
@@ -1205,7 +1223,7 @@ export declare class Event extends BusinessObject {
|
|
1205
1223
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, calendarId: string, eventStatus: EventStatus, dateStart: number, organizedBy: PersonReference);
|
1206
1224
|
}
|
1207
1225
|
export declare function isEvent(block: Block): block is Event;
|
1208
|
-
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\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}";
|
1209
1227
|
export declare class Calendar extends BusinessObject {
|
1210
1228
|
timeZone: string;
|
1211
1229
|
description?: string | null;
|
@@ -1214,8 +1232,8 @@ export declare class Calendar extends BusinessObject {
|
|
1214
1232
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, timeZone: string);
|
1215
1233
|
}
|
1216
1234
|
export declare function isCalendar(block: Block): block is Calendar;
|
1217
|
-
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}";
|
1218
|
-
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\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}";
|
1219
1237
|
export declare class Todo extends BusinessObject implements BaseTask, TimedEntry {
|
1220
1238
|
htmlContent?: string;
|
1221
1239
|
timeStart?: number;
|
@@ -1226,8 +1244,8 @@ export declare class Todo extends BusinessObject implements BaseTask, TimedEntry
|
|
1226
1244
|
export declare function isTodo(block: Block): block is Todo;
|
1227
1245
|
export interface IngestTodoInput extends Todo {
|
1228
1246
|
}
|
1229
|
-
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}";
|
1230
|
-
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\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}";
|
1231
1249
|
export declare class Email extends BusinessObject {
|
1232
1250
|
to?: PersonReference[];
|
1233
1251
|
cc?: PersonReference[];
|
@@ -1251,8 +1269,8 @@ export declare enum MessageRole {
|
|
1251
1269
|
User = "USER"
|
1252
1270
|
}
|
1253
1271
|
export declare const MessageRoleQL = "\nenum MessageRole {\n ASSISTANT\n TOOL\n UNKNOWN\n USER\n}";
|
1254
|
-
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}";
|
1255
|
-
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\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}";
|
1256
1274
|
export declare class Message extends BusinessObject {
|
1257
1275
|
htmlContent?: string;
|
1258
1276
|
originReferenceTagId?: string;
|
@@ -1268,11 +1286,11 @@ export declare class Message extends BusinessObject {
|
|
1268
1286
|
export declare function isMessage(block: Block): block is Message;
|
1269
1287
|
export interface UpsertMessageInput extends Message {
|
1270
1288
|
}
|
1271
|
-
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}";
|
1272
1290
|
export interface IngestMessagesInput {
|
1273
1291
|
messages: Message[];
|
1274
1292
|
}
|
1275
|
-
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\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}";
|
1276
1294
|
export declare class Statement extends BusinessObject {
|
1277
1295
|
metadataType: string;
|
1278
1296
|
tagId?: string;
|
@@ -1285,7 +1303,7 @@ export declare enum ThreadReadStatus {
|
|
1285
1303
|
Unread = "UNREAD"
|
1286
1304
|
}
|
1287
1305
|
export declare const ThreadReadStatusQL = "\nenum ThreadReadStatus {\n READ\n UNKNOWN\n UNREAD\n}";
|
1288
|
-
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\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}";
|
1289
1307
|
export declare class Thread extends BusinessObject {
|
1290
1308
|
agentTaskName?: string;
|
1291
1309
|
messageCount: number;
|
@@ -1294,11 +1312,11 @@ export declare class Thread extends BusinessObject {
|
|
1294
1312
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
|
1295
1313
|
}
|
1296
1314
|
export declare function isThread(block: Block): block is Thread;
|
1297
|
-
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}";
|
1298
1316
|
export interface UpsertThreadInput extends Thread {
|
1299
1317
|
}
|
1300
|
-
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\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
1301
|
-
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\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}";
|
1302
1320
|
export declare class Document extends BusinessObject {
|
1303
1321
|
title?: string;
|
1304
1322
|
description?: string;
|
@@ -1321,7 +1339,7 @@ export declare class BlockData extends Primitive {
|
|
1321
1339
|
search?: GraphSearchInput;
|
1322
1340
|
constructor(name: string);
|
1323
1341
|
}
|
1324
|
-
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\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}";
|
1325
1343
|
export declare class Dashboard extends BusinessObject {
|
1326
1344
|
metadata: DashboardMetadata;
|
1327
1345
|
blockData: BlockData[];
|
@@ -1329,7 +1347,7 @@ export declare class Dashboard extends BusinessObject {
|
|
1329
1347
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, dashboardMetadata: DashboardMetadata, tagId: string);
|
1330
1348
|
}
|
1331
1349
|
export declare function isDashboard(block: Block): block is Dashboard;
|
1332
|
-
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\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}";
|
1333
1351
|
export declare class Website extends BusinessObject {
|
1334
1352
|
title?: string;
|
1335
1353
|
description?: string;
|
@@ -1360,7 +1378,7 @@ export declare class DashboardMetadata extends Metadata {
|
|
1360
1378
|
notificationMetadataTypes: string[];
|
1361
1379
|
constructor(label: string, description: string, metadataType: string, classifiers: string[], threshold: number, blockDescriptions: BlockDescription[]);
|
1362
1380
|
}
|
1363
|
-
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\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}";
|
1364
1382
|
export declare class Template extends BusinessObject {
|
1365
1383
|
metadata?: DocumentMetadata;
|
1366
1384
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
|
@@ -1389,11 +1407,12 @@ export interface Option {
|
|
1389
1407
|
status?: TaskStatus;
|
1390
1408
|
priority?: TaskPriority;
|
1391
1409
|
}
|
1392
|
-
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}";
|
1393
1411
|
export interface Field {
|
1394
1412
|
label: string;
|
1395
1413
|
name: string;
|
1396
1414
|
description: string;
|
1415
|
+
prompt: string;
|
1397
1416
|
important?: boolean;
|
1398
1417
|
status?: boolean;
|
1399
1418
|
priority?: boolean;
|
@@ -1420,24 +1439,26 @@ export declare class TableMetadata extends Metadata {
|
|
1420
1439
|
constructor(label: string, description: string, metadataType: string, fields: Field[], classifiers: string[], threshold: number);
|
1421
1440
|
}
|
1422
1441
|
export declare const RecordInputQL = "\ninput RecordInput {\n _id: String!\n values: [FieldValueInput]!\n}";
|
1423
|
-
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\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}";
|
1424
1443
|
export interface RecordInput {
|
1425
1444
|
_id: string;
|
1426
1445
|
values: FieldValue[];
|
1427
1446
|
}
|
1428
1447
|
declare class BigfootRecord extends BusinessObject {
|
1448
|
+
metadataType: string | null;
|
1429
1449
|
values: FieldValue[];
|
1430
1450
|
enabled: boolean;
|
1431
1451
|
processingStage?: ProcessingStage;
|
1432
1452
|
processingReason?: string;
|
1433
1453
|
dashboardId?: string;
|
1454
|
+
tagId?: string;
|
1434
1455
|
blockDescriptionName?: string;
|
1435
1456
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, values: FieldValue[]);
|
1436
1457
|
}
|
1437
1458
|
export { BigfootRecord as Record };
|
1438
1459
|
export declare function isRecord(block: Block): block is BigfootRecord;
|
1439
|
-
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\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\tgeneratedReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n\tfeedback: BlockFeedbackState!\n provider: String
|
1440
|
-
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\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}";
|
1441
1462
|
export declare class Table extends BusinessObject {
|
1442
1463
|
metadata: TableMetadata;
|
1443
1464
|
records?: BigfootRecord[];
|
@@ -1640,13 +1661,14 @@ export declare const SharingTenantInputQL = "\ninput SharingTenantInput {\n ten
|
|
1640
1661
|
export declare const UpsertTagInputQL = "\ninput UpsertTagInput {\n\t_id: ID\n\talias: String\n\tfriendlyName: String\n\ttagType: String\n\ttagSubType: String\n\turl: String\n\texternalId: String\n\tfavicon: String\n\tdbpedia: String\n\temail: String\n\tavatar: String\n\tinviteStatus: String\n\toriginNoteId: String\n\tfavorite: Boolean\n\tsharingDomains: [SharingDomainInput]\n\tsharingTenants: [SharingTenantInput]\n\tbusinessObjects: [BusinessObjectLinkInput]\n\texternalIdLinks: [ExternalIdLinkInput]\n\tautoTag: Boolean\n\thasAutoShareNotesOn: Boolean\n\thasAutoShareTasksOn: Boolean\n\tsharingLevel: Int\n}";
|
1641
1662
|
export interface UpsertTagInput extends Tag {
|
1642
1663
|
}
|
1643
|
-
export declare const FindTagInputQL = "\ninput FindTagInput {\n _id: String
|
1664
|
+
export declare const FindTagInputQL = "\ninput FindTagInput {\n _id: String\n archived: Boolean\n\tconnectionId: String\n\ttagType: String\n\ttagSubType: String\n\ttenantIdVerified: String\n}";
|
1644
1665
|
export interface FindTagInput {
|
1645
|
-
_id
|
1666
|
+
_id?: string;
|
1646
1667
|
archived?: boolean;
|
1647
1668
|
connectionId?: string;
|
1648
1669
|
tagType?: TagType;
|
1649
1670
|
tagSubType?: string;
|
1671
|
+
tenantIdVerified?: string;
|
1650
1672
|
}
|
1651
1673
|
export declare const FindTagsInputQL = "\ninput FindTagsInput {\n \n size: Int\n\talias: String\n\tfriendlyName: String\n archived: Boolean! = false\n\tfavorite: Boolean\n}";
|
1652
1674
|
export interface FindTagsInput extends PaginatedInput {
|
@@ -1680,7 +1702,7 @@ export interface DeleteSharingTagInput {
|
|
1680
1702
|
referenceBlock: ReferenceBlock;
|
1681
1703
|
tagId: string;
|
1682
1704
|
}
|
1683
|
-
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}";
|
1684
1706
|
export interface UpsertTaskInput extends Task {
|
1685
1707
|
editor: Editor;
|
1686
1708
|
}
|
@@ -1780,7 +1802,7 @@ export interface SearchTagsInput extends PaginatedInput {
|
|
1780
1802
|
page?: number;
|
1781
1803
|
generateDashboard?: boolean;
|
1782
1804
|
}
|
1783
|
-
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}";
|
1784
1806
|
export interface SearchInput extends PaginatedInput {
|
1785
1807
|
application?: string;
|
1786
1808
|
provider?: string;
|
@@ -1804,6 +1826,7 @@ export interface SearchInput extends PaginatedInput {
|
|
1804
1826
|
originReferenceTagId?: string;
|
1805
1827
|
editorId?: string;
|
1806
1828
|
editorGroupId?: string;
|
1829
|
+
generated?: boolean;
|
1807
1830
|
parentId?: string;
|
1808
1831
|
favorite?: boolean;
|
1809
1832
|
snoozed?: boolean;
|
@@ -1812,10 +1835,12 @@ export interface SearchInput extends PaginatedInput {
|
|
1812
1835
|
export declare const BlockTypeQL: string;
|
1813
1836
|
export declare const RecommendationTypeQL: string;
|
1814
1837
|
export declare const TaskStatusQL: string;
|
1815
|
-
export declare const OrderDirectionQL = "\nenum OrderDirection {\n ASC\n asc\n DESC\n desc\n}";
|
1838
|
+
export declare const OrderDirectionQL = "\nenum OrderDirection {\n ASC\n asc\n ASCENDING\n ascending\n DESC\n desc\n DESCENDING\n descending\n}";
|
1816
1839
|
export declare enum OrderDirection {
|
1817
1840
|
Asc = "asc",
|
1818
|
-
|
1841
|
+
Ascending = "asc",
|
1842
|
+
Desc = "desc",
|
1843
|
+
Descending = "desc"
|
1819
1844
|
}
|
1820
1845
|
export declare const FindTagsVisibilityInputQL = "\ninput FindTagsVisibilityInput {\n tagIds: [String]\n\tsharingTags: [SharingTagInput]\n}";
|
1821
1846
|
export interface FindTagsVisibilityInput {
|
@@ -1898,10 +1923,10 @@ export interface SortOptionInput {
|
|
1898
1923
|
field: string;
|
1899
1924
|
order: OrderDirection;
|
1900
1925
|
}
|
1901
|
-
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";
|
1902
|
-
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";
|
1903
|
-
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}";
|
1904
|
-
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}";
|
1905
1930
|
export interface GraphSearchInput extends PaginatedInput {
|
1906
1931
|
application?: string;
|
1907
1932
|
provider?: string;
|
@@ -1917,6 +1942,7 @@ export interface GraphSearchInput extends PaginatedInput {
|
|
1917
1942
|
originReferenceTagId?: string;
|
1918
1943
|
editorId?: string;
|
1919
1944
|
editorGroupId?: string;
|
1945
|
+
generated?: boolean;
|
1920
1946
|
parentId?: string;
|
1921
1947
|
favorite?: boolean;
|
1922
1948
|
snoozed?: boolean;
|
@@ -1930,8 +1956,8 @@ export interface GraphSearchInput extends PaginatedInput {
|
|
1930
1956
|
page?: number;
|
1931
1957
|
threadIds?: string[];
|
1932
1958
|
}
|
1933
|
-
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}";
|
1934
|
-
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}";
|
1935
1961
|
export interface GraphSearchTagsInput extends GraphSearchInput {
|
1936
1962
|
folderIds?: string[];
|
1937
1963
|
tagTypes?: TagType[];
|
@@ -1939,7 +1965,7 @@ export interface GraphSearchTagsInput extends GraphSearchInput {
|
|
1939
1965
|
minCoOccurrencePercentage?: number;
|
1940
1966
|
minOccurrenceCount?: number;
|
1941
1967
|
}
|
1942
|
-
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}";
|
1943
1969
|
export interface GraphSearchEventsInput extends GraphSearchInput, PaginatedInput {
|
1944
1970
|
calendarId?: string;
|
1945
1971
|
dateStart?: NumberFilterInput;
|
@@ -1953,9 +1979,19 @@ export interface UpdateTagSharingInput {
|
|
1953
1979
|
sharingTenants?: SharingTenant[];
|
1954
1980
|
sharingDomains?: SharingDomain[];
|
1955
1981
|
}
|
1982
|
+
export interface BlockMajorChange {
|
1983
|
+
id: string;
|
1984
|
+
}
|
1985
|
+
export declare const LinkedRangeRequestInputQL = "\ninput LinkedRangeRequestInput {\n\trangeId: String!\n referenceBlock: ReferenceBlockInput!\n\tdocument: String!\n\tprovider: String!\n\tapplication: String!\n\tmetadata: String!\n\tmetadataType: String!\n}";
|
1986
|
+
export declare const LinkedRangeRequestQL = "\ntype LinkedRangeRequest {\n\trangeId: String!\n referenceBlock: ReferenceBlock!\n\tdocument: String!\n\tprovider: String!\n\tapplication: String!\n\tmetadata: String!\n\tmetadataType: String!\n}";
|
1956
1987
|
export interface LinkedRangeRequest {
|
1957
1988
|
rangeId: string;
|
1958
1989
|
referenceBlock: ReferenceBlock;
|
1990
|
+
document: string;
|
1991
|
+
provider: string;
|
1992
|
+
application: string;
|
1993
|
+
metadata: string;
|
1994
|
+
metadataType: string;
|
1959
1995
|
}
|
1960
1996
|
export declare const GenerateAvatarUploadUriInputQL = "\ninput GenerateAvatarUploadUriInput {\n\t_id: String!\n}";
|
1961
1997
|
export interface GenerateAvatarUploadUriInput {
|
@@ -1991,7 +2027,7 @@ export declare enum TimeUnit {
|
|
1991
2027
|
Month = "MONTH",
|
1992
2028
|
Year = "YEAR"
|
1993
2029
|
}
|
1994
|
-
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}";
|
1995
2031
|
export interface FindBlockActivityInput extends GraphSearchInput {
|
1996
2032
|
gt: number;
|
1997
2033
|
lt: number;
|