@bigfootai/bigfoot-types 5.4.49 → 5.4.51

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.
Files changed (35) hide show
  1. package/dist/metadata/documents/customer_meeting_summary_email.js.map +1 -1
  2. package/dist/metadata/providers/generate.d.ts +2 -0
  3. package/dist/metadata/providers/generate.d.ts.map +1 -0
  4. package/dist/metadata/providers/generate.js +9 -0
  5. package/dist/metadata/providers/generate.js.map +1 -0
  6. package/dist/metadata/providers/google.d.ts.map +1 -1
  7. package/dist/metadata/providers/google.js +1 -1
  8. package/dist/metadata/providers/google.js.map +1 -1
  9. package/dist/metadata/providers/hubspot.d.ts.map +1 -1
  10. package/dist/metadata/providers/hubspot.js +3 -2
  11. package/dist/metadata/providers/hubspot.js.map +1 -1
  12. package/dist/metadata/providers/linear.js.map +1 -1
  13. package/dist/metadata/providers/noded.d.ts.map +1 -1
  14. package/dist/metadata/providers/noded.js +3 -2
  15. package/dist/metadata/providers/noded.js.map +1 -1
  16. package/dist/metadata/providers/salesforce.d.ts.map +1 -1
  17. package/dist/metadata/providers/salesforce.js +3 -2
  18. package/dist/metadata/providers/salesforce.js.map +1 -1
  19. package/dist/metadata/providers/slack.d.ts.map +1 -1
  20. package/dist/metadata/providers/slack.js +0 -5
  21. package/dist/metadata/providers/slack.js.map +1 -1
  22. package/dist/metadata/tables/case.d.ts.map +1 -1
  23. package/dist/metadata/tables/case.js +3 -2
  24. package/dist/metadata/tables/case.js.map +1 -1
  25. package/dist/metadata/tables/issue.d.ts.map +1 -1
  26. package/dist/metadata/tables/issue.js +1 -1
  27. package/dist/metadata/tables/issue.js.map +1 -1
  28. package/dist/metadata/tables/opportunity.d.ts.map +1 -1
  29. package/dist/metadata/tables/opportunity.js +3 -2
  30. package/dist/metadata/tables/opportunity.js.map +1 -1
  31. package/dist/types.d.ts +99 -59
  32. package/dist/types.d.ts.map +1 -1
  33. package/dist/types.js +140 -73
  34. package/dist/types.js.map +1 -1
  35. 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 profile: String!\n accessToken: String!\n refreshToken: String\n instanceUrl: String\n\tinstanceId: String\n dateExpiry: Float\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!\n}";
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!\n}";
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 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 familyName: String\n givenName: String\n allowed: Boolean!\n picture: String\n}";
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;
@@ -915,48 +936,55 @@ export declare class BusinessObject extends Block {
915
936
  iconUrl?: string | null;
916
937
  externalResponse?: string;
917
938
  constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], blockType: BlockType, provider: string, application: string, uri: string, externalId: string);
939
+ toGraph(): BusinessObject;
918
940
  }
919
941
  export declare class Section extends Block {
920
942
  constructor(id: string);
921
943
  }
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}";
944
+ 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
945
  export declare class Note extends Block {
924
946
  constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[]);
925
947
  }
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}";
948
+ 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
949
  export declare class Task extends Block implements BaseTask {
928
950
  constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[]);
929
951
  }
930
- 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 TimedEntryInputQL = "\ninput TimedEntryInput {\n\tid: String!\n\tdateStart: Float!\n\tduration: Float\n entryHtml: String\n\tentryDocument: String\n\tspeaker: PersonReferenceInput\n}";
953
+ export declare const TimedEntryQL = "\ntype TimedEntry {\n\turl: String\n\tdateStart: Float!\n\tduration: Float\n entryHtml: String!\n\tentryDocument: String\n\tspeaker: PersonReference\n}";
954
+ export interface TimedEntry {
955
+ url?: string;
956
+ dateStart: number;
957
+ duration?: number;
958
+ entryHtml: string;
959
+ entryDocument?: any;
960
+ speaker?: PersonReference;
961
+ }
962
+ export declare const TranscriptionSectionInputQL = "\ninput TranscriptionSectionInput {\n\tname: String!\n\tlabel: String\n\tsummaryHtml: String\n summaryDocument: String\n\ttimedEntries: [TimedEntryInput]\n}";
963
+ export declare const TranscriptionSectionQL = "\ntype TranscriptionSection {\n\tname: String!\n\tlabel: String\n\tsummaryHtml: String\n summaryDocument: String\n\ttimedEntries: [TimedEntry]\n}";
964
+ export interface TranscriptionSection {
965
+ name: string;
966
+ label?: string;
967
+ summaryHtml?: string;
968
+ summaryDocument?: string;
969
+ timedEntries?: TimedEntry[];
970
+ }
971
+ 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\tmeetingUrl: String\n\trecordingUrl: String\n\ttranscriptionUrl: String\n\tattendees: [PersonReferenceInput]\n\ttasks: [IngestTodoInput]\n\ttopics: [UpsertTagInput]\n\ttranscript: TranscriptionSectionInput\n\thighlights: [TranscriptionSectionInput]\n\toutline: [TranscriptionSectionInput]\n\tprocessingStage: String!\n}";
972
+ 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\tmeetingUrl: String\n\trecordingUrl: String\n\ttranscriptionUrl: String\n\tattendees: [PersonReference]!\n\ttranscript: TranscriptionSection\n\thighlights: [TranscriptionSection]\n\toutline: [TranscriptionSection]\n}";
932
973
  export declare class Transcription extends BusinessObject {
933
974
  title?: string;
934
975
  dateStart?: number;
935
976
  duration?: number;
936
- htmlSummary?: string;
937
977
  meetingUrl?: string;
938
978
  recordingUrl?: string;
939
979
  transcriptionUrl?: string;
940
- attendees: PersonReference[];
941
- tasks: Todo[];
942
- transcript: TranscriptPart[];
980
+ attendees?: PersonReference[];
981
+ tasks?: Todo[];
982
+ topics?: Tag[];
943
983
  processingStage: ProcessingStage;
984
+ highlights?: TranscriptionSection[];
985
+ outline?: TranscriptionSection[];
986
+ transcript?: TranscriptionSection;
944
987
  constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, processingStage: ProcessingStage);
945
- toGraph(): Transcription;
946
- }
947
- export declare const TranscriptPartBaseFields = "\n dateStart: Float!\n dateEnd: Float!\n text: String!";
948
- export interface TranscriptPartBase {
949
- dateStart: number;
950
- dateEnd: number;
951
- text: string;
952
- }
953
- export declare const TranscriptPartQL = "\ntype TranscriptPart {\n \n dateStart: Float!\n dateEnd: Float!\n text: String!\n id: String!\n parts: [TranscriptPart]\n speaker: PersonReference\n}";
954
- export interface TranscriptPart extends TranscriptPartBase {
955
- id: string;
956
- speaker?: PersonReference;
957
- }
958
- export declare const TranscriptPartInputQL = "\ninput TranscriptPartInput {\n \n dateStart: Float!\n dateEnd: Float!\n text: String!\n id: String!\n parts: [TranscriptPartInput] = []\n speaker: PersonReferenceInput\n}";
959
- export interface TranscriptPartInput extends TranscriptPart {
960
988
  }
961
989
  export declare const ConferenceEntrypointQL = "\ntype ConferenceEntrypoint {\n url: String\n meetingCode: String\n}";
962
990
  export interface ConferenceEntrypoint {
@@ -998,6 +1026,7 @@ export interface NormalizedImportantField {
998
1026
  name: string;
999
1027
  value?: string;
1000
1028
  tagType?: TagType;
1029
+ tagSubType?: string;
1001
1030
  }
1002
1031
  export interface NormalizedBusinessObject {
1003
1032
  businessObject: BusinessObject;
@@ -1059,7 +1088,7 @@ export interface AuthRefreshProviderRequest {
1059
1088
  export interface AuthRefreshProviderResponse {
1060
1089
  credential: Credential;
1061
1090
  }
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}";
1091
+ 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
1092
  export declare class Event extends BusinessObject {
1064
1093
  calendarId: string;
1065
1094
  eventStatus: EventStatus;
@@ -1076,7 +1105,7 @@ export declare class Event extends BusinessObject {
1076
1105
  attachments?: Attachment[] | null;
1077
1106
  constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, calendarId: string, eventStatus: EventStatus, dateStart: number, organizedBy: PersonReference);
1078
1107
  }
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}";
1108
+ 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
1109
  export declare class Calendar extends BusinessObject {
1081
1110
  timeZone: string;
1082
1111
  description?: string | null;
@@ -1085,15 +1114,15 @@ export declare class Calendar extends BusinessObject {
1085
1114
  constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, timeZone: string);
1086
1115
  }
1087
1116
  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}";
1117
+ 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
1118
  export declare class Todo extends BusinessObject implements BaseTask {
1090
1119
  htmlContent?: string;
1091
1120
  constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, status: TaskStatus, dateDue: number);
1092
1121
  }
1093
1122
  export interface IngestTodoInput extends Todo {
1094
1123
  }
1095
- 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}";
1124
+ 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\tbodyHtml: String\n\tbodyText: String\n\tcleanBodyHtml: String\n}";
1125
+ 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\tbodyHtml: String\n\tbodyText: String\n\tcleanBodyHtml: String\n}";
1097
1126
  export declare class Email extends BusinessObject {
1098
1127
  to?: PersonReference[];
1099
1128
  cc?: PersonReference[];
@@ -1101,15 +1130,15 @@ export declare class Email extends BusinessObject {
1101
1130
  from?: PersonReference;
1102
1131
  subject?: string | null;
1103
1132
  attachments?: Attachment[] | null;
1104
- htmlContent?: string;
1105
- textContent?: string;
1106
- createBlockType?: string;
1133
+ bodyHtml?: string;
1134
+ bodyText?: string;
1135
+ cleanBodyHtml?: string;
1107
1136
  constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
1108
1137
  }
1109
1138
  export interface IngestEmailInput extends Email {
1110
1139
  }
1111
1140
  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}";
1141
+ 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
1142
  export declare class Message extends BusinessObject {
1114
1143
  htmlContent?: string;
1115
1144
  originReferenceTagId?: string;
@@ -1117,8 +1146,8 @@ export declare class Message extends BusinessObject {
1117
1146
  }
1118
1147
  export interface UpsertMessageInput extends Message {
1119
1148
  }
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}";
1149
+ 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";
1150
+ 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
1151
  export declare class Document extends BusinessObject {
1123
1152
  title?: string;
1124
1153
  description?: string;
@@ -1127,7 +1156,7 @@ export declare class Document extends BusinessObject {
1127
1156
  metadataType?: string;
1128
1157
  constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
1129
1158
  }
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}";
1159
+ 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
1160
  export declare class BlockData extends Primitive {
1132
1161
  name: string;
1133
1162
  blockType?: BlockType;
@@ -1136,17 +1165,18 @@ export declare class BlockData extends Primitive {
1136
1165
  htmlContent?: string;
1137
1166
  metadataType?: string;
1138
1167
  tagType?: TagType;
1168
+ tagSubType?: string;
1139
1169
  search?: GraphSearchInput;
1140
1170
  constructor(name: string);
1141
1171
  }
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}";
1172
+ 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
1173
  export declare class Dashboard extends BusinessObject {
1144
1174
  metadata: DashboardMetadata;
1145
1175
  blockData: BlockData[];
1146
1176
  tagId: string;
1147
1177
  constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, dashboardMetadata: DashboardMetadata, tagId: string);
1148
1178
  }
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}";
1179
+ 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
1180
  export declare class Website extends BusinessObject {
1151
1181
  title?: string;
1152
1182
  description?: string;
@@ -1154,7 +1184,7 @@ export declare class Website extends BusinessObject {
1154
1184
  htmlContent?: string;
1155
1185
  constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
1156
1186
  }
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}";
1187
+ 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
1188
  export interface BlockDescription {
1159
1189
  title?: string;
1160
1190
  name: string;
@@ -1162,6 +1192,7 @@ export interface BlockDescription {
1162
1192
  blockType?: BlockType;
1163
1193
  metadataType?: string;
1164
1194
  tagType?: TagType;
1195
+ tagSubType?: string;
1165
1196
  }
1166
1197
  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
1198
  export declare class DocumentMetadata extends Metadata {
@@ -1175,7 +1206,7 @@ export declare class DashboardMetadata extends Metadata {
1175
1206
  notificationMetadataTypes: string[];
1176
1207
  constructor(label: string, description: string, metadataType: string, classifiers: string[], threshold: number, blockDescriptions: BlockDescription[]);
1177
1208
  }
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}";
1209
+ 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
1210
  export declare class Template extends BusinessObject {
1180
1211
  metadata?: DocumentMetadata;
1181
1212
  constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
@@ -1234,7 +1265,7 @@ export declare class TableMetadata extends Metadata {
1234
1265
  constructor(label: string, description: string, metadataType: string, fields: Field[], classifiers: string[], threshold: number);
1235
1266
  }
1236
1267
  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}";
1268
+ 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
1269
  export interface RecordInput {
1239
1270
  _id: string;
1240
1271
  values: FieldValue[];
@@ -1248,8 +1279,8 @@ export declare class Record extends BusinessObject {
1248
1279
  blockDescriptionName?: string;
1249
1280
  constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string, values: FieldValue[]);
1250
1281
  }
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}";
1282
+ 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";
1283
+ 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
1284
  export declare class Table extends BusinessObject {
1254
1285
  metadata: TableMetadata;
1255
1286
  records?: Record[];
@@ -1334,7 +1365,7 @@ export declare const FindDashboardBlockInputQL = "\ninput FindDashboardBlockInpu
1334
1365
  export interface FindDashboardBlockInput {
1335
1366
  _id: string;
1336
1367
  }
1337
- export declare const UpsertNoteInputQL = "\ninput UpsertNoteInput {\n _id: String\n document: String\n editor: EditorInput!\n\tsharingTags: [SharingTagInput]\n\tfavorite: Boolean\n\tdateAssociated: Float\n}";
1368
+ export declare const UpsertNoteInputQL = "\ninput UpsertNoteInput {\n _id: String\n document: String\n editor: EditorInput!\n\tsharingTags: [SharingTagInput]\n\tfavorite: Boolean\n\tdateAssociated: Float\n\ttemplateReferenceBlock: ReferenceBlockInput\n}";
1338
1369
  export interface UpsertNoteInput {
1339
1370
  _id?: string;
1340
1371
  document?: string;
@@ -1342,6 +1373,7 @@ export interface UpsertNoteInput {
1342
1373
  sharingTags?: SharingTag[];
1343
1374
  favorite?: boolean;
1344
1375
  dateAssociated?: number;
1376
+ templateReferenceBlock?: ReferenceBlock;
1345
1377
  }
1346
1378
  export declare const FindBlockInputQL = "\ninput FindBlockInput {\n _id: String!\n\tblockType: String\n archived: Boolean\n}";
1347
1379
  export interface FindBlockInput {
@@ -1383,6 +1415,15 @@ export interface ArchiveRecommendationOutput {
1383
1415
  _id: string;
1384
1416
  archived: boolean;
1385
1417
  }
1418
+ export declare const FindConnectedProviderInputQL = "\ninput FindConnectedProviderInput {\n provider: String!\n}";
1419
+ export interface FindConnectedProviderInput {
1420
+ provider: string;
1421
+ }
1422
+ export declare const FindConnectedProvidersInputQL = "\ninput FindConnectedProvidersInput {\n application: String\n provider: String\n}";
1423
+ export interface FindConnectedProvidersInput {
1424
+ application?: string;
1425
+ provider?: string;
1426
+ }
1386
1427
  export declare const FindProviderInputQL = "\ninput FindProviderInput {\n _id: String\n provider: String\n}";
1387
1428
  export interface FindProviderInput {
1388
1429
  _id?: string;
@@ -1406,7 +1447,7 @@ export interface FindSyncsInput extends PaginatedInput {
1406
1447
  }
1407
1448
  export declare const SharingDomainInputQL = "\ninput SharingDomainInput {\n domainId: String!\n\tsharingLevel: Int!\n}";
1408
1449
  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}";
1450
+ 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
1451
  export interface UpsertTagInput extends Tag {
1411
1452
  }
1412
1453
  export declare const FindTagInputQL = "\ninput FindTagInput {\n _id: String!\n archived: Boolean\n\tconnectionId: String\n\ttagType: String\n\ttagSubType: String\n}";
@@ -1461,7 +1502,6 @@ export interface UpsertFolderInput {
1461
1502
  label?: string;
1462
1503
  description?: string;
1463
1504
  searchIds?: string[];
1464
- _tagType?: TagType;
1465
1505
  }
1466
1506
  export declare const FindFolderInputQL = "\ninput FindFolderInput {\n _id: String!\n archived: Boolean\n}";
1467
1507
  export interface FindFolderInput {