@bigfootai/bigfoot-types 5.4.48 → 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.d.ts.map +1 -1
- package/dist/metadata/providers/linear.js +7 -0
- 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 +5 -3
- 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 +2 -2
- 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 +73 -36
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +60 -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",
|
@@ -152,7 +158,8 @@ export declare enum ThumbsDirection {
|
|
152
158
|
}
|
153
159
|
export declare enum RecordType {
|
154
160
|
Opportunity = "opportunity",
|
155
|
-
Case = "case"
|
161
|
+
Case = "case",
|
162
|
+
Issue = "issue"
|
156
163
|
}
|
157
164
|
export declare enum EntityType {
|
158
165
|
Date = "Date",
|
@@ -219,6 +226,10 @@ export declare enum PubSubType {
|
|
219
226
|
TaskCreated = "taskCreated",
|
220
227
|
TaskUpdated = "taskUpdated",
|
221
228
|
TaskArchived = "taskArchived",
|
229
|
+
RecordChanged = "recordChanged",
|
230
|
+
RecordCreated = "recordCreated",
|
231
|
+
RecordUpdated = "recordUpdated",
|
232
|
+
RecordArchived = "recordArchived",
|
222
233
|
RecommendationChanged = "recommendationChanged",
|
223
234
|
RecommendationCreated = "recommendationCreated",
|
224
235
|
RecommendationUpdated = "recommendationUpdated",
|
@@ -407,7 +418,7 @@ export interface UserTokenRequest {
|
|
407
418
|
export interface UserTokenResponse {
|
408
419
|
token: string;
|
409
420
|
}
|
410
|
-
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}";
|
411
422
|
export interface Credential {
|
412
423
|
email: string;
|
413
424
|
profile: any;
|
@@ -430,6 +441,10 @@ export interface ConnectedProvider {
|
|
430
441
|
dateCreated: number;
|
431
442
|
dateUpdated: number;
|
432
443
|
}
|
444
|
+
export declare const RemoveConnectedProviderInputQL = "\ninput RemoveConnectedProviderInput {\n\tconnectionId: String!\n}";
|
445
|
+
export interface RemoveConnectedProviderInput {
|
446
|
+
connectionId: string;
|
447
|
+
}
|
433
448
|
export declare const ReferenceBlockInputQL = "\ninput ReferenceBlockInput {\n id: String!\n blockType: String!\n}";
|
434
449
|
export declare const ReferenceBlockQL = "\ntype ReferenceBlock {\n id: String!\n blockType: String!\n\tarchived: Boolean\n}";
|
435
450
|
export interface ReferenceBlock {
|
@@ -522,7 +537,6 @@ export declare class Folder extends SharedPrimitive {
|
|
522
537
|
searchIds?: string[];
|
523
538
|
archived: boolean;
|
524
539
|
_order?: number;
|
525
|
-
_tagType?: TagType;
|
526
540
|
constructor(tenantIdCreated: string, sharingTags: SharingTag[], label: string);
|
527
541
|
}
|
528
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}";
|
@@ -562,15 +576,16 @@ export declare class Sync extends Primitive {
|
|
562
576
|
lastSyncedAt?: number;
|
563
577
|
constructor(tenantIdCreated: string, providerRequest: ProviderRequest);
|
564
578
|
}
|
565
|
-
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}";
|
566
580
|
export interface UpdateOneSyncInput {
|
567
581
|
_id: string;
|
568
582
|
enabled: boolean;
|
569
583
|
}
|
570
|
-
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}";
|
571
585
|
export interface DashboardTagSubscription {
|
572
586
|
dashboardSubscriptions: string[];
|
573
587
|
tagType: TagType;
|
588
|
+
tagSubType?: string;
|
574
589
|
}
|
575
590
|
export declare const ExternalIdQL = "\ntype ExternalId {\n\tlabel: String!\n tagType: TagType!\n\ttagSubType: String\n blockType: BlockType!\n}";
|
576
591
|
export interface ExternalId {
|
@@ -614,10 +629,11 @@ export declare class Provider extends Primitive {
|
|
614
629
|
constructor(name: string, label: string, description: string, instanceUrl: string, applications: ProviderApplication[]);
|
615
630
|
}
|
616
631
|
export declare const TagTypeQL: string;
|
617
|
-
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}";
|
618
633
|
export interface GraphTag {
|
619
634
|
_id: string;
|
620
635
|
tagType: TagType;
|
636
|
+
tagSubType?: string;
|
621
637
|
alias: string;
|
622
638
|
count: number;
|
623
639
|
}
|
@@ -665,13 +681,14 @@ export declare class Tag extends Primitive {
|
|
665
681
|
merged?: boolean;
|
666
682
|
mergedWithTagId?: string;
|
667
683
|
member?: boolean;
|
668
|
-
constructor(tenantIdCreated: string, alias: string, tagType: TagType);
|
684
|
+
constructor(tenantIdCreated: string, alias: string, tagType: TagType, tagSubType?: string);
|
669
685
|
}
|
670
|
-
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}";
|
671
687
|
export interface TagRecommendation {
|
672
688
|
id: string;
|
673
689
|
type: TagRecommendationType;
|
674
690
|
tagType: TagType;
|
691
|
+
tagSubType?: string;
|
675
692
|
tags: Tag[];
|
676
693
|
entity: EntityEntry;
|
677
694
|
}
|
@@ -740,9 +757,9 @@ export declare const MessageRecommendationQL = "\ntype MessageRecommendation {\n
|
|
740
757
|
export interface MessageRecommendation {
|
741
758
|
tenant: TenantLight;
|
742
759
|
}
|
743
|
-
export declare const NotificationRecommendationQL = "\ntype NotificationRecommendation {\n\
|
760
|
+
export declare const NotificationRecommendationQL = "\ntype NotificationRecommendation {\n\tdashboardId: String\n}";
|
744
761
|
export interface NotificationRecommendation {
|
745
|
-
|
762
|
+
dashboardId: string;
|
746
763
|
}
|
747
764
|
export interface BaseTask {
|
748
765
|
dateDue?: number;
|
@@ -787,13 +804,22 @@ export interface RecentTag {
|
|
787
804
|
dateAccessed: number;
|
788
805
|
score: number;
|
789
806
|
}
|
790
|
-
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}";
|
791
816
|
export declare class Tenant extends Primitive {
|
792
817
|
domainMemberships: string[];
|
793
818
|
email: string;
|
794
819
|
emailVerified: boolean;
|
795
820
|
domainIdEmail: string;
|
796
821
|
tagId: string;
|
822
|
+
taggingOptions: TaggingOption[];
|
797
823
|
familyName?: string;
|
798
824
|
givenName?: string;
|
799
825
|
connectedProviders?: ConnectedProvider[];
|
@@ -819,9 +845,9 @@ export declare class Organization extends Tag {
|
|
819
845
|
export declare class Person extends Tag {
|
820
846
|
constructor(tenantIdCreated: string, alias: string);
|
821
847
|
}
|
822
|
-
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]";
|
823
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";
|
824
|
-
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}";
|
825
851
|
export declare class Block extends SharedPrimitive {
|
826
852
|
editors: Editor[];
|
827
853
|
blockType: BlockType;
|
@@ -899,9 +925,9 @@ export declare class BusinessObjectIngestionRequest extends Primitive {
|
|
899
925
|
businessObject?: BusinessObject;
|
900
926
|
constructor(tenantIdCreated: string, originReferenceBlock: ReferenceBlock, uri: string);
|
901
927
|
}
|
902
|
-
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";
|
903
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";
|
904
|
-
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}";
|
905
931
|
export declare class BusinessObject extends Block {
|
906
932
|
provider: string;
|
907
933
|
application: string;
|
@@ -914,16 +940,16 @@ export declare class BusinessObject extends Block {
|
|
914
940
|
export declare class Section extends Block {
|
915
941
|
constructor(id: string);
|
916
942
|
}
|
917
|
-
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}";
|
918
944
|
export declare class Note extends Block {
|
919
945
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[]);
|
920
946
|
}
|
921
|
-
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}";
|
922
948
|
export declare class Task extends Block implements BaseTask {
|
923
949
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[]);
|
924
950
|
}
|
925
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}";
|
926
|
-
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}";
|
927
953
|
export declare class Transcription extends BusinessObject {
|
928
954
|
title?: string;
|
929
955
|
dateStart?: number;
|
@@ -993,6 +1019,7 @@ export interface NormalizedImportantField {
|
|
993
1019
|
name: string;
|
994
1020
|
value?: string;
|
995
1021
|
tagType?: TagType;
|
1022
|
+
tagSubType?: string;
|
996
1023
|
}
|
997
1024
|
export interface NormalizedBusinessObject {
|
998
1025
|
businessObject: BusinessObject;
|
@@ -1054,7 +1081,7 @@ export interface AuthRefreshProviderRequest {
|
|
1054
1081
|
export interface AuthRefreshProviderResponse {
|
1055
1082
|
credential: Credential;
|
1056
1083
|
}
|
1057
|
-
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}";
|
1058
1085
|
export declare class Event extends BusinessObject {
|
1059
1086
|
calendarId: string;
|
1060
1087
|
eventStatus: EventStatus;
|
@@ -1071,7 +1098,7 @@ export declare class Event extends BusinessObject {
|
|
1071
1098
|
attachments?: Attachment[] | null;
|
1072
1099
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, calendarId: string, eventStatus: EventStatus, dateStart: number, organizedBy: PersonReference);
|
1073
1100
|
}
|
1074
|
-
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}";
|
1075
1102
|
export declare class Calendar extends BusinessObject {
|
1076
1103
|
timeZone: string;
|
1077
1104
|
description?: string | null;
|
@@ -1080,7 +1107,7 @@ export declare class Calendar extends BusinessObject {
|
|
1080
1107
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, timeZone: string);
|
1081
1108
|
}
|
1082
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}";
|
1083
|
-
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}";
|
1084
1111
|
export declare class Todo extends BusinessObject implements BaseTask {
|
1085
1112
|
htmlContent?: string;
|
1086
1113
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, status: TaskStatus, dateDue: number);
|
@@ -1088,7 +1115,7 @@ export declare class Todo extends BusinessObject implements BaseTask {
|
|
1088
1115
|
export interface IngestTodoInput extends Todo {
|
1089
1116
|
}
|
1090
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}";
|
1091
|
-
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}";
|
1092
1119
|
export declare class Email extends BusinessObject {
|
1093
1120
|
to?: PersonReference[];
|
1094
1121
|
cc?: PersonReference[];
|
@@ -1104,7 +1131,7 @@ export declare class Email extends BusinessObject {
|
|
1104
1131
|
export interface IngestEmailInput extends Email {
|
1105
1132
|
}
|
1106
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}";
|
1107
|
-
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}";
|
1108
1135
|
export declare class Message extends BusinessObject {
|
1109
1136
|
htmlContent?: string;
|
1110
1137
|
originReferenceTagId?: string;
|
@@ -1112,8 +1139,8 @@ export declare class Message extends BusinessObject {
|
|
1112
1139
|
}
|
1113
1140
|
export interface UpsertMessageInput extends Message {
|
1114
1141
|
}
|
1115
|
-
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";
|
1116
|
-
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}";
|
1117
1144
|
export declare class Document extends BusinessObject {
|
1118
1145
|
title?: string;
|
1119
1146
|
description?: string;
|
@@ -1122,7 +1149,7 @@ export declare class Document extends BusinessObject {
|
|
1122
1149
|
metadataType?: string;
|
1123
1150
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
|
1124
1151
|
}
|
1125
|
-
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}";
|
1126
1153
|
export declare class BlockData extends Primitive {
|
1127
1154
|
name: string;
|
1128
1155
|
blockType?: BlockType;
|
@@ -1131,17 +1158,18 @@ export declare class BlockData extends Primitive {
|
|
1131
1158
|
htmlContent?: string;
|
1132
1159
|
metadataType?: string;
|
1133
1160
|
tagType?: TagType;
|
1161
|
+
tagSubType?: string;
|
1134
1162
|
search?: GraphSearchInput;
|
1135
1163
|
constructor(name: string);
|
1136
1164
|
}
|
1137
|
-
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}";
|
1138
1166
|
export declare class Dashboard extends BusinessObject {
|
1139
1167
|
metadata: DashboardMetadata;
|
1140
1168
|
blockData: BlockData[];
|
1141
1169
|
tagId: string;
|
1142
1170
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, dashboardMetadata: DashboardMetadata, tagId: string);
|
1143
1171
|
}
|
1144
|
-
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}";
|
1145
1173
|
export declare class Website extends BusinessObject {
|
1146
1174
|
title?: string;
|
1147
1175
|
description?: string;
|
@@ -1149,7 +1177,7 @@ export declare class Website extends BusinessObject {
|
|
1149
1177
|
htmlContent?: string;
|
1150
1178
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
|
1151
1179
|
}
|
1152
|
-
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}";
|
1153
1181
|
export interface BlockDescription {
|
1154
1182
|
title?: string;
|
1155
1183
|
name: string;
|
@@ -1157,6 +1185,7 @@ export interface BlockDescription {
|
|
1157
1185
|
blockType?: BlockType;
|
1158
1186
|
metadataType?: string;
|
1159
1187
|
tagType?: TagType;
|
1188
|
+
tagSubType?: string;
|
1160
1189
|
}
|
1161
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}";
|
1162
1191
|
export declare class DocumentMetadata extends Metadata {
|
@@ -1170,7 +1199,7 @@ export declare class DashboardMetadata extends Metadata {
|
|
1170
1199
|
notificationMetadataTypes: string[];
|
1171
1200
|
constructor(label: string, description: string, metadataType: string, classifiers: string[], threshold: number, blockDescriptions: BlockDescription[]);
|
1172
1201
|
}
|
1173
|
-
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}";
|
1174
1203
|
export declare class Template extends BusinessObject {
|
1175
1204
|
metadata?: DocumentMetadata;
|
1176
1205
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
|
@@ -1229,7 +1258,7 @@ export declare class TableMetadata extends Metadata {
|
|
1229
1258
|
constructor(label: string, description: string, metadataType: string, fields: Field[], classifiers: string[], threshold: number);
|
1230
1259
|
}
|
1231
1260
|
export declare const RecordInputQL = "\ninput RecordInput {\n _id: String!\n values: [FieldValueInput]!\n}";
|
1232
|
-
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}";
|
1233
1262
|
export interface RecordInput {
|
1234
1263
|
_id: string;
|
1235
1264
|
values: FieldValue[];
|
@@ -1243,8 +1272,8 @@ export declare class Record extends BusinessObject {
|
|
1243
1272
|
blockDescriptionName?: string;
|
1244
1273
|
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, values: FieldValue[]);
|
1245
1274
|
}
|
1246
|
-
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";
|
1247
|
-
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}";
|
1248
1277
|
export declare class Table extends BusinessObject {
|
1249
1278
|
metadata: TableMetadata;
|
1250
1279
|
records?: Record[];
|
@@ -1378,6 +1407,15 @@ export interface ArchiveRecommendationOutput {
|
|
1378
1407
|
_id: string;
|
1379
1408
|
archived: boolean;
|
1380
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
|
+
}
|
1381
1419
|
export declare const FindProviderInputQL = "\ninput FindProviderInput {\n _id: String\n provider: String\n}";
|
1382
1420
|
export interface FindProviderInput {
|
1383
1421
|
_id?: string;
|
@@ -1401,7 +1439,7 @@ export interface FindSyncsInput extends PaginatedInput {
|
|
1401
1439
|
}
|
1402
1440
|
export declare const SharingDomainInputQL = "\ninput SharingDomainInput {\n domainId: String!\n\tsharingLevel: Int!\n}";
|
1403
1441
|
export declare const SharingTenantInputQL = "\ninput SharingTenantInput {\n tenantId: String!\n\tsharingLevel: Int!\n}";
|
1404
|
-
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}";
|
1405
1443
|
export interface UpsertTagInput extends Tag {
|
1406
1444
|
}
|
1407
1445
|
export declare const FindTagInputQL = "\ninput FindTagInput {\n _id: String!\n archived: Boolean\n\tconnectionId: String\n\ttagType: String\n\ttagSubType: String\n}";
|
@@ -1456,7 +1494,6 @@ export interface UpsertFolderInput {
|
|
1456
1494
|
label?: string;
|
1457
1495
|
description?: string;
|
1458
1496
|
searchIds?: string[];
|
1459
|
-
_tagType?: TagType;
|
1460
1497
|
}
|
1461
1498
|
export declare const FindFolderInputQL = "\ninput FindFolderInput {\n _id: String!\n archived: Boolean\n}";
|
1462
1499
|
export interface FindFolderInput {
|