@bigfootai/bigfoot-types 5.4.49 → 5.4.50
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/documents/customer_meeting_summary_email.js.map +1 -1
- package/dist/metadata/providers/google.d.ts.map +1 -1
- package/dist/metadata/providers/google.js +1 -1
- package/dist/metadata/providers/google.js.map +1 -1
- package/dist/metadata/providers/hubspot.d.ts.map +1 -1
- package/dist/metadata/providers/hubspot.js +3 -2
- package/dist/metadata/providers/hubspot.js.map +1 -1
- package/dist/metadata/providers/linear.js.map +1 -1
- package/dist/metadata/providers/noded.d.ts.map +1 -1
- package/dist/metadata/providers/noded.js +3 -2
- package/dist/metadata/providers/noded.js.map +1 -1
- package/dist/metadata/providers/salesforce.d.ts.map +1 -1
- package/dist/metadata/providers/salesforce.js +3 -2
- package/dist/metadata/providers/salesforce.js.map +1 -1
- package/dist/metadata/providers/slack.d.ts.map +1 -1
- package/dist/metadata/providers/slack.js +0 -5
- package/dist/metadata/providers/slack.js.map +1 -1
- package/dist/metadata/tables/case.d.ts.map +1 -1
- package/dist/metadata/tables/case.js +3 -2
- 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 +1 -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 +3 -2
- package/dist/metadata/tables/opportunity.js.map +1 -1
- package/dist/types.d.ts +66 -34
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +55 -13
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
@@ -32,9 +32,9 @@ export declare enum UpsertType {
|
|
32
32
|
Insert = "insert",
|
33
33
|
Update = "update"
|
34
34
|
}
|
35
|
+
export declare const ORGANIZATION = "organization";
|
35
36
|
export declare enum TagType {
|
36
37
|
Person = "person",
|
37
|
-
Organization = "organization",
|
38
38
|
Topic = "topic",
|
39
39
|
Location = "location",
|
40
40
|
Date = "date",
|
@@ -87,8 +87,14 @@ export declare enum InviteStatus {
|
|
87
87
|
InviteSent = "invite_sent",
|
88
88
|
InviteAccepted = "invite_accepted"
|
89
89
|
}
|
90
|
+
export declare enum TaggingOption {
|
91
|
+
Off = "off",// Turn everything off
|
92
|
+
Date = "date",// Turn everything off except dates
|
93
|
+
Create = "create"
|
94
|
+
}
|
90
95
|
export declare enum TagRecommendationType {
|
91
96
|
TagMissing = "missing",
|
97
|
+
CreateTag = "create",
|
92
98
|
TagCreated = "created",
|
93
99
|
TagFound = "found",
|
94
100
|
TagNotFound = "not_found",
|
@@ -412,7 +418,7 @@ export interface UserTokenRequest {
|
|
412
418
|
export interface UserTokenResponse {
|
413
419
|
token: string;
|
414
420
|
}
|
415
|
-
export declare const CredentialQL = "\ntype Credential {\n email: String!\n
|
421
|
+
export declare const CredentialQL = "\ntype Credential {\n email: String!\n instanceUrl: String\n instanceId: String\n}";
|
416
422
|
export interface Credential {
|
417
423
|
email: string;
|
418
424
|
profile: any;
|
@@ -435,6 +441,10 @@ export interface ConnectedProvider {
|
|
435
441
|
dateCreated: number;
|
436
442
|
dateUpdated: number;
|
437
443
|
}
|
444
|
+
export declare const RemoveConnectedProviderInputQL = "\ninput RemoveConnectedProviderInput {\n\tconnectionId: String!\n}";
|
445
|
+
export interface RemoveConnectedProviderInput {
|
446
|
+
connectionId: string;
|
447
|
+
}
|
438
448
|
export declare const ReferenceBlockInputQL = "\ninput ReferenceBlockInput {\n id: String!\n blockType: String!\n}";
|
439
449
|
export declare const ReferenceBlockQL = "\ntype ReferenceBlock {\n id: String!\n blockType: String!\n\tarchived: Boolean\n}";
|
440
450
|
export interface ReferenceBlock {
|
@@ -527,7 +537,6 @@ export declare class Folder extends SharedPrimitive {
|
|
527
537
|
searchIds?: string[];
|
528
538
|
archived: boolean;
|
529
539
|
_order?: number;
|
530
|
-
_tagType?: TagType;
|
531
540
|
constructor(tenantIdCreated: string, sharingTags: SharingTag[], label: string);
|
532
541
|
}
|
533
542
|
export declare const SearchQL = "\ntype Search {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n\tlabel: String\n search: String\n\tblockType: String\n\t_ids: [String]\n tagIds: [String]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n\torderByDateUpdated: String\n\torderByDateCreated: String\n\torderByDateDue: String\n\torderByAlias: String\n\tdateDueFrom: Float\n\tdateDueTo: Float\n\tstatus: String\n\toriginNoteId: String\n\teditorId: String\n\teditorGroupId: String\n\tparentId: String\n\tfavorite: Boolean\n\tsnoozed: Boolean\n\tsize: Int\n\tarchived: Boolean!\n\tfavoriteTagId: String\n}";
|
@@ -567,15 +576,16 @@ export declare class Sync extends Primitive {
|
|
567
576
|
lastSyncedAt?: number;
|
568
577
|
constructor(tenantIdCreated: string, providerRequest: ProviderRequest);
|
569
578
|
}
|
570
|
-
export declare const UpdateOneSyncInputQL = "\ninput UpdateOneSyncInput {\n\t_id: ID!\n\tenabled: Boolean
|
579
|
+
export declare const UpdateOneSyncInputQL = "\ninput UpdateOneSyncInput {\n\t_id: ID!\n\tenabled: Boolean\n}";
|
571
580
|
export interface UpdateOneSyncInput {
|
572
581
|
_id: string;
|
573
582
|
enabled: boolean;
|
574
583
|
}
|
575
|
-
export declare const DashboardTagSubscriptionQL = "\ntype DashboardTagSubscription {\n\tdashboardSubscriptions: [String]!\n\ttagType: String!\n}";
|
584
|
+
export declare const DashboardTagSubscriptionQL = "\ntype DashboardTagSubscription {\n\tdashboardSubscriptions: [String]!\n\ttagType: String!\n\ttagSubType: String\n}";
|
576
585
|
export interface DashboardTagSubscription {
|
577
586
|
dashboardSubscriptions: string[];
|
578
587
|
tagType: TagType;
|
588
|
+
tagSubType?: string;
|
579
589
|
}
|
580
590
|
export declare const ExternalIdQL = "\ntype ExternalId {\n\tlabel: String!\n tagType: TagType!\n\ttagSubType: String\n blockType: BlockType!\n}";
|
581
591
|
export interface ExternalId {
|
@@ -619,10 +629,11 @@ export declare class Provider extends Primitive {
|
|
619
629
|
constructor(name: string, label: string, description: string, instanceUrl: string, applications: ProviderApplication[]);
|
620
630
|
}
|
621
631
|
export declare const TagTypeQL: string;
|
622
|
-
export declare const GraphTagQL = "\ntype GraphTag {\n\t_id: String\n\ttagType: TagType\n\talias: String\n\tcount: Int\n}";
|
632
|
+
export declare const GraphTagQL = "\ntype GraphTag {\n\t_id: String\n\ttagType: TagType\n\ttagSubType: String\n\talias: String\n\tcount: Int\n}";
|
623
633
|
export interface GraphTag {
|
624
634
|
_id: string;
|
625
635
|
tagType: TagType;
|
636
|
+
tagSubType?: string;
|
626
637
|
alias: string;
|
627
638
|
count: number;
|
628
639
|
}
|
@@ -670,13 +681,14 @@ export declare class Tag extends Primitive {
|
|
670
681
|
merged?: boolean;
|
671
682
|
mergedWithTagId?: string;
|
672
683
|
member?: boolean;
|
673
|
-
constructor(tenantIdCreated: string, alias: string, tagType: TagType);
|
684
|
+
constructor(tenantIdCreated: string, alias: string, tagType: TagType, tagSubType?: string);
|
674
685
|
}
|
675
|
-
export declare const TagRecommendationQL = "\ntype TagRecommendation {\n\tid: String!\n type: String!\n\ttagType: String!\n tags: [Tag]!\n\tentity: EntityEntry!\n}";
|
686
|
+
export declare const TagRecommendationQL = "\ntype TagRecommendation {\n\tid: String!\n type: String!\n\ttagType: String!\n\ttagSubType: String\n tags: [Tag]!\n\tentity: EntityEntry!\n}";
|
676
687
|
export interface TagRecommendation {
|
677
688
|
id: string;
|
678
689
|
type: TagRecommendationType;
|
679
690
|
tagType: TagType;
|
691
|
+
tagSubType?: string;
|
680
692
|
tags: Tag[];
|
681
693
|
entity: EntityEntry;
|
682
694
|
}
|
@@ -745,7 +757,7 @@ export declare const MessageRecommendationQL = "\ntype MessageRecommendation {\n
|
|
745
757
|
export interface MessageRecommendation {
|
746
758
|
tenant: TenantLight;
|
747
759
|
}
|
748
|
-
export declare const NotificationRecommendationQL = "\ntype NotificationRecommendation {\n\tdashboardId: String
|
760
|
+
export declare const NotificationRecommendationQL = "\ntype NotificationRecommendation {\n\tdashboardId: String\n}";
|
749
761
|
export interface NotificationRecommendation {
|
750
762
|
dashboardId: string;
|
751
763
|
}
|
@@ -792,13 +804,22 @@ export interface RecentTag {
|
|
792
804
|
dateAccessed: number;
|
793
805
|
score: number;
|
794
806
|
}
|
795
|
-
export declare const
|
807
|
+
export declare const DismissedTagRecommendationInputQL = "\ninput DismissedTagRecommendationInput {\n\ttext: String!\n\ttagType: TagType!\n\ttagSubType: String\n}";
|
808
|
+
export declare const DismissedTagRecommendationQL = "\ntype DismissedTagRecommendation {\n\ttext: String!\n\ttagType: TagType!\n\ttagSubType: String\n}";
|
809
|
+
export interface DismissedTagRecommendation {
|
810
|
+
text: string;
|
811
|
+
tagType: TagType;
|
812
|
+
tagSubType?: string;
|
813
|
+
tenantId: string;
|
814
|
+
}
|
815
|
+
export declare const TenantQL = "\ntype Tenant {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n domainMemberships: [String]!\n email: String!\n emailVerified: Boolean!\n tagId: String!\n\ttaggingOptions: [String]\n familyName: String\n givenName: String\n allowed: Boolean!\n picture: String\n}";
|
796
816
|
export declare class Tenant extends Primitive {
|
797
817
|
domainMemberships: string[];
|
798
818
|
email: string;
|
799
819
|
emailVerified: boolean;
|
800
820
|
domainIdEmail: string;
|
801
821
|
tagId: string;
|
822
|
+
taggingOptions: TaggingOption[];
|
802
823
|
familyName?: string;
|
803
824
|
givenName?: string;
|
804
825
|
connectedProviders?: ConnectedProvider[];
|
@@ -824,9 +845,9 @@ export declare class Organization extends Tag {
|
|
824
845
|
export declare class Person extends Tag {
|
825
846
|
constructor(tenantIdCreated: string, alias: string);
|
826
847
|
}
|
827
|
-
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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]";
|
848
|
+
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\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\treactions: [Reaction]";
|
828
849
|
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";
|
829
|
-
export declare const BlockQL = "\ntype 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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n}";
|
850
|
+
export declare const BlockQL = "\ntype 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\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\treactions: [Reaction]\n}";
|
830
851
|
export declare class Block extends SharedPrimitive {
|
831
852
|
editors: Editor[];
|
832
853
|
blockType: BlockType;
|
@@ -904,9 +925,9 @@ export declare class BusinessObjectIngestionRequest extends Primitive {
|
|
904
925
|
businessObject?: BusinessObject;
|
905
926
|
constructor(tenantIdCreated: string, originReferenceBlock: ReferenceBlock, uri: string);
|
906
927
|
}
|
907
|
-
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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\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";
|
928
|
+
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\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\treactions: [Reaction]\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";
|
908
929
|
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 provider: String!\n application: String!\n externalId: String\n uri: String\n\texternalResponse: String";
|
909
|
-
export declare const BusinessObjectQL = "\ntype 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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\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}";
|
930
|
+
export declare const BusinessObjectQL = "\ntype 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\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\treactions: [Reaction]\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}";
|
910
931
|
export declare class BusinessObject extends Block {
|
911
932
|
provider: string;
|
912
933
|
application: string;
|
@@ -919,16 +940,16 @@ export declare class BusinessObject extends Block {
|
|
919
940
|
export declare class Section extends Block {
|
920
941
|
constructor(id: string);
|
921
942
|
}
|
922
|
-
export declare const NoteQL = "\ntype Note {\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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n}";
|
943
|
+
export declare const NoteQL = "\ntype Note {\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\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\treactions: [Reaction]\n}";
|
923
944
|
export declare class Note extends Block {
|
924
945
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[]);
|
925
946
|
}
|
926
|
-
export declare const TaskQL = "\ntype Task {\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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n}";
|
947
|
+
export declare const TaskQL = "\ntype Task {\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\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\treactions: [Reaction]\n}";
|
927
948
|
export declare class Task extends Block implements BaseTask {
|
928
949
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[]);
|
929
950
|
}
|
930
951
|
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 provider: String!\n application: String!\n externalId: String\n uri: String\n\texternalResponse: String\n\ttitle: String\n\tdateStart: Float\n\tduration: Float\n htmlSummary: String\n\tmeetingUrl: String\n\trecordingUrl: String\n\ttranscriptionUrl: String\n\tattendees: [PersonReferenceInput]! = []\n\ttasks: [IngestTodoInput]! = []\n\ttranscript: [TranscriptPartInput]! = []\n\tprocessingStage: String!\n}";
|
931
|
-
export declare const TranscriptionQL = "\ntype Transcription {\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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\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\thtmlSummary: String\n\tmeetingUrl: String\n\trecordingUrl: String\n\ttranscriptionUrl: String\n\tattendees: [PersonReference]!\n\ttranscript: [TranscriptPart]!\n}";
|
952
|
+
export declare const TranscriptionQL = "\ntype Transcription {\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\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\treactions: [Reaction]\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\thtmlSummary: String\n\tmeetingUrl: String\n\trecordingUrl: String\n\ttranscriptionUrl: String\n\tattendees: [PersonReference]!\n\ttranscript: [TranscriptPart]!\n}";
|
932
953
|
export declare class Transcription extends BusinessObject {
|
933
954
|
title?: string;
|
934
955
|
dateStart?: number;
|
@@ -998,6 +1019,7 @@ export interface NormalizedImportantField {
|
|
998
1019
|
name: string;
|
999
1020
|
value?: string;
|
1000
1021
|
tagType?: TagType;
|
1022
|
+
tagSubType?: string;
|
1001
1023
|
}
|
1002
1024
|
export interface NormalizedBusinessObject {
|
1003
1025
|
businessObject: BusinessObject;
|
@@ -1059,7 +1081,7 @@ export interface AuthRefreshProviderRequest {
|
|
1059
1081
|
export interface AuthRefreshProviderResponse {
|
1060
1082
|
credential: Credential;
|
1061
1083
|
}
|
1062
|
-
export declare const EventQL = "\ntype Event {\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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\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}";
|
1084
|
+
export declare const EventQL = "\ntype Event {\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\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\treactions: [Reaction]\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}";
|
1063
1085
|
export declare class Event extends BusinessObject {
|
1064
1086
|
calendarId: string;
|
1065
1087
|
eventStatus: EventStatus;
|
@@ -1076,7 +1098,7 @@ export declare class Event extends BusinessObject {
|
|
1076
1098
|
attachments?: Attachment[] | null;
|
1077
1099
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, calendarId: string, eventStatus: EventStatus, dateStart: number, organizedBy: PersonReference);
|
1078
1100
|
}
|
1079
|
-
export declare const CalendarQL = "\ntype Calendar {\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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\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}";
|
1101
|
+
export declare const CalendarQL = "\ntype Calendar {\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\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\treactions: [Reaction]\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}";
|
1080
1102
|
export declare class Calendar extends BusinessObject {
|
1081
1103
|
timeZone: string;
|
1082
1104
|
description?: string | null;
|
@@ -1085,7 +1107,7 @@ export declare class Calendar extends BusinessObject {
|
|
1085
1107
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, timeZone: string);
|
1086
1108
|
}
|
1087
1109
|
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\thtmlContent: String\n}";
|
1088
|
-
export declare const TodoQL = "\ntype Todo {\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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\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}";
|
1110
|
+
export declare const TodoQL = "\ntype Todo {\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\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\treactions: [Reaction]\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}";
|
1089
1111
|
export declare class Todo extends BusinessObject implements BaseTask {
|
1090
1112
|
htmlContent?: string;
|
1091
1113
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, status: TaskStatus, dateDue: number);
|
@@ -1093,7 +1115,7 @@ export declare class Todo extends BusinessObject implements BaseTask {
|
|
1093
1115
|
export interface IngestTodoInput extends Todo {
|
1094
1116
|
}
|
1095
1117
|
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 to: [PersonReferenceInput]\n cc: [PersonReferenceInput]\n bcc: [PersonReferenceInput]\n\tfrom: PersonReferenceInput\n subject: String\n\tattachments: [AttachmentInput]\n\thtmlContent: String\n\ttextContent: String\n\tcreateBlockType: String\n}";
|
1096
|
-
export declare const EmailQL = "\ntype Email {\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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\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\thtmlContent: String\n\ttextContent: String\n}";
|
1118
|
+
export declare const EmailQL = "\ntype Email {\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\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\treactions: [Reaction]\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\thtmlContent: String\n\ttextContent: String\n}";
|
1097
1119
|
export declare class Email extends BusinessObject {
|
1098
1120
|
to?: PersonReference[];
|
1099
1121
|
cc?: PersonReference[];
|
@@ -1109,7 +1131,7 @@ export declare class Email extends BusinessObject {
|
|
1109
1131
|
export interface IngestEmailInput extends Email {
|
1110
1132
|
}
|
1111
1133
|
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\thtmlContent: String\n originReferenceTagId: String\n\toriginReferenceBlock: ReferenceBlockInput\n}";
|
1112
|
-
export declare const MessageQL = "\ntype Message {\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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\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}";
|
1134
|
+
export declare const MessageQL = "\ntype Message {\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\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\treactions: [Reaction]\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}";
|
1113
1135
|
export declare class Message extends BusinessObject {
|
1114
1136
|
htmlContent?: string;
|
1115
1137
|
originReferenceTagId?: string;
|
@@ -1117,8 +1139,8 @@ export declare class Message extends BusinessObject {
|
|
1117
1139
|
}
|
1118
1140
|
export interface UpsertMessageInput extends Message {
|
1119
1141
|
}
|
1120
|
-
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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\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";
|
1121
|
-
export declare const DocumentQL = "\ntype Document {\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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\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}";
|
1142
|
+
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\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\treactions: [Reaction]\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";
|
1143
|
+
export declare const DocumentQL = "\ntype Document {\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\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\treactions: [Reaction]\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}";
|
1122
1144
|
export declare class Document extends BusinessObject {
|
1123
1145
|
title?: string;
|
1124
1146
|
description?: string;
|
@@ -1127,7 +1149,7 @@ export declare class Document extends BusinessObject {
|
|
1127
1149
|
metadataType?: string;
|
1128
1150
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
|
1129
1151
|
}
|
1130
|
-
export declare const BlockDataQL = "\ntype BlockData {\n _id: String!\n\tdateCreated: Float\n dateUpdated: Float\n\tname: String!\n\tblockType: String\n title: String\n\tdocument: String\n\thtmlContent: String\n\tmetadataType: String\n\ttagType: String\n\tsearch: GraphSearch\n}";
|
1152
|
+
export declare const BlockDataQL = "\ntype BlockData {\n _id: String!\n\tdateCreated: Float\n dateUpdated: Float\n\tname: String!\n\tblockType: String\n title: String\n\tdocument: String\n\thtmlContent: String\n\tmetadataType: String\n\ttagType: String\n\ttagSubType: String\n\tsearch: GraphSearch\n}";
|
1131
1153
|
export declare class BlockData extends Primitive {
|
1132
1154
|
name: string;
|
1133
1155
|
blockType?: BlockType;
|
@@ -1136,17 +1158,18 @@ export declare class BlockData extends Primitive {
|
|
1136
1158
|
htmlContent?: string;
|
1137
1159
|
metadataType?: string;
|
1138
1160
|
tagType?: TagType;
|
1161
|
+
tagSubType?: string;
|
1139
1162
|
search?: GraphSearchInput;
|
1140
1163
|
constructor(name: string);
|
1141
1164
|
}
|
1142
|
-
export declare const DashboardQL = "\ntype Dashboard {\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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\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}";
|
1165
|
+
export declare const DashboardQL = "\ntype Dashboard {\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\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\treactions: [Reaction]\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}";
|
1143
1166
|
export declare class Dashboard extends BusinessObject {
|
1144
1167
|
metadata: DashboardMetadata;
|
1145
1168
|
blockData: BlockData[];
|
1146
1169
|
tagId: string;
|
1147
1170
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, dashboardMetadata: DashboardMetadata, tagId: string);
|
1148
1171
|
}
|
1149
|
-
export declare const WebsiteQL = "\ntype Website {\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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\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}";
|
1172
|
+
export declare const WebsiteQL = "\ntype Website {\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\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\treactions: [Reaction]\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}";
|
1150
1173
|
export declare class Website extends BusinessObject {
|
1151
1174
|
title?: string;
|
1152
1175
|
description?: string;
|
@@ -1154,7 +1177,7 @@ export declare class Website extends BusinessObject {
|
|
1154
1177
|
htmlContent?: string;
|
1155
1178
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
|
1156
1179
|
}
|
1157
|
-
export declare const BlockDescriptionQL = "\ntype BlockDescription {\n title: String\n\tname: String!\n\tdescription: String!\n\tblockType: String\n\tmetadataType: String\n\ttagType: String\n}";
|
1180
|
+
export declare const BlockDescriptionQL = "\ntype BlockDescription {\n title: String\n\tname: String!\n\tdescription: String!\n\tblockType: String\n\tmetadataType: String\n\ttagType: String\n\ttagSubType: String\n}";
|
1158
1181
|
export interface BlockDescription {
|
1159
1182
|
title?: string;
|
1160
1183
|
name: string;
|
@@ -1162,6 +1185,7 @@ export interface BlockDescription {
|
|
1162
1185
|
blockType?: BlockType;
|
1163
1186
|
metadataType?: string;
|
1164
1187
|
tagType?: TagType;
|
1188
|
+
tagSubType?: string;
|
1165
1189
|
}
|
1166
1190
|
export declare const DocumentMetadataQL = "\ntype DocumentMetadata {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n label: String!\n description: String!\n\tmetadataType: String!\n\treferences: [String]\n\tclassifiers: [String]!\n\tthreshold: Float!\n\tprovider: String\n\tapplication: String\n blockDescriptions: [BlockDescription]!\n\texportTypes: [String]\n}";
|
1167
1191
|
export declare class DocumentMetadata extends Metadata {
|
@@ -1175,7 +1199,7 @@ export declare class DashboardMetadata extends Metadata {
|
|
1175
1199
|
notificationMetadataTypes: string[];
|
1176
1200
|
constructor(label: string, description: string, metadataType: string, classifiers: string[], threshold: number, blockDescriptions: BlockDescription[]);
|
1177
1201
|
}
|
1178
|
-
export declare const TemplateQL = "\ntype Template {\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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\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}";
|
1202
|
+
export declare const TemplateQL = "\ntype Template {\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\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\treactions: [Reaction]\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}";
|
1179
1203
|
export declare class Template extends BusinessObject {
|
1180
1204
|
metadata?: DocumentMetadata;
|
1181
1205
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
|
@@ -1234,7 +1258,7 @@ export declare class TableMetadata extends Metadata {
|
|
1234
1258
|
constructor(label: string, description: string, metadataType: string, fields: Field[], classifiers: string[], threshold: number);
|
1235
1259
|
}
|
1236
1260
|
export declare const RecordInputQL = "\ninput RecordInput {\n _id: String!\n values: [FieldValueInput]!\n}";
|
1237
|
-
export declare const RecordQL = "\ntype Record {\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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\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}";
|
1261
|
+
export declare const RecordQL = "\ntype Record {\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\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\treactions: [Reaction]\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}";
|
1238
1262
|
export interface RecordInput {
|
1239
1263
|
_id: string;
|
1240
1264
|
values: FieldValue[];
|
@@ -1248,8 +1272,8 @@ export declare class Record extends BusinessObject {
|
|
1248
1272
|
blockDescriptionName?: string;
|
1249
1273
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, values: FieldValue[]);
|
1250
1274
|
}
|
1251
|
-
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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\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";
|
1252
|
-
export declare const TableQL = "\ntype Table {\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\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\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\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}";
|
1275
|
+
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\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\treactions: [Reaction]\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";
|
1276
|
+
export declare const TableQL = "\ntype Table {\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\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\treactions: [Reaction]\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}";
|
1253
1277
|
export declare class Table extends BusinessObject {
|
1254
1278
|
metadata: TableMetadata;
|
1255
1279
|
records?: Record[];
|
@@ -1383,6 +1407,15 @@ export interface ArchiveRecommendationOutput {
|
|
1383
1407
|
_id: string;
|
1384
1408
|
archived: boolean;
|
1385
1409
|
}
|
1410
|
+
export declare const FindConnectedProviderInputQL = "\ninput FindConnectedProviderInput {\n provider: String!\n}";
|
1411
|
+
export interface FindConnectedProviderInput {
|
1412
|
+
provider: string;
|
1413
|
+
}
|
1414
|
+
export declare const FindConnectedProvidersInputQL = "\ninput FindConnectedProvidersInput {\n application: String\n provider: String\n}";
|
1415
|
+
export interface FindConnectedProvidersInput {
|
1416
|
+
application?: string;
|
1417
|
+
provider?: string;
|
1418
|
+
}
|
1386
1419
|
export declare const FindProviderInputQL = "\ninput FindProviderInput {\n _id: String\n provider: String\n}";
|
1387
1420
|
export interface FindProviderInput {
|
1388
1421
|
_id?: string;
|
@@ -1406,7 +1439,7 @@ export interface FindSyncsInput extends PaginatedInput {
|
|
1406
1439
|
}
|
1407
1440
|
export declare const SharingDomainInputQL = "\ninput SharingDomainInput {\n domainId: String!\n\tsharingLevel: Int!\n}";
|
1408
1441
|
export declare const SharingTenantInputQL = "\ninput SharingTenantInput {\n tenantId: String!\n\tsharingLevel: Int!\n}";
|
1409
|
-
export declare const UpsertTagInputQL = "\ninput UpsertTagInput {\n\t_id: ID\n\talias: String\n\tfriendlyName: String\n\ttagType: String\n\turl: 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\thasAutoShareNotesOn: Boolean\n\thasAutoShareTasksOn: Boolean\n\tsharingLevel: Int\n}";
|
1442
|
+
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\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\thasAutoShareNotesOn: Boolean\n\thasAutoShareTasksOn: Boolean\n\tsharingLevel: Int\n}";
|
1410
1443
|
export interface UpsertTagInput extends Tag {
|
1411
1444
|
}
|
1412
1445
|
export declare const FindTagInputQL = "\ninput FindTagInput {\n _id: String!\n archived: Boolean\n\tconnectionId: String\n\ttagType: String\n\ttagSubType: String\n}";
|
@@ -1461,7 +1494,6 @@ export interface UpsertFolderInput {
|
|
1461
1494
|
label?: string;
|
1462
1495
|
description?: string;
|
1463
1496
|
searchIds?: string[];
|
1464
|
-
_tagType?: TagType;
|
1465
1497
|
}
|
1466
1498
|
export declare const FindFolderInputQL = "\ninput FindFolderInput {\n _id: String!\n archived: Boolean\n}";
|
1467
1499
|
export interface FindFolderInput {
|