graphlit-client 1.0.20250625001 → 1.0.20250627002

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.
@@ -431,6 +431,17 @@ export declare enum ApplyPolicy {
431
431
  /** The policy is applied in the validation step before the execution. */
432
432
  Validation = "VALIDATION"
433
433
  }
434
+ /** Represents Arcade authentication properties. */
435
+ export type ArcadeAuthenticationProperties = {
436
+ __typename?: 'ArcadeAuthenticationProperties';
437
+ /** Arcade authorization ID. */
438
+ authorizationId: Scalars['String']['output'];
439
+ };
440
+ /** Represents Arcade authentication properties. */
441
+ export type ArcadeAuthenticationPropertiesInput = {
442
+ /** Arcade authorization ID. */
443
+ authorizationId: Scalars['String']['input'];
444
+ };
434
445
  /** Represents a prompted question about Graphlit. */
435
446
  export type AskGraphlit = {
436
447
  __typename?: 'AskGraphlit';
@@ -597,6 +608,8 @@ export type AudioMetadataInput = {
597
608
  /** Represents an authentication connector. */
598
609
  export type AuthenticationConnector = {
599
610
  __typename?: 'AuthenticationConnector';
611
+ /** Arcade authentication properties. */
612
+ arcade?: Maybe<ArcadeAuthenticationProperties>;
600
613
  /** Google authentication properties. */
601
614
  google?: Maybe<GoogleAuthenticationProperties>;
602
615
  /** Microsoft authentication properties. */
@@ -606,6 +619,8 @@ export type AuthenticationConnector = {
606
619
  };
607
620
  /** Represents an authentication connector. */
608
621
  export type AuthenticationConnectorInput = {
622
+ /** Arcade authentication properties. */
623
+ arcade?: InputMaybe<ArcadeAuthenticationPropertiesInput>;
609
624
  /** Google authentication properties. */
610
625
  google?: InputMaybe<GoogleAuthenticationPropertiesInput>;
611
626
  /** Microsoft authentication properties. */
@@ -615,6 +630,8 @@ export type AuthenticationConnectorInput = {
615
630
  };
616
631
  /** Authentication service type */
617
632
  export declare enum AuthenticationServiceTypes {
633
+ /** Arcade authentication service */
634
+ Arcade = "ARCADE",
618
635
  /** Auth0 authentication service */
619
636
  Auth0 = "AUTH0",
620
637
  /** Clerk authentication service */
@@ -2850,6 +2867,8 @@ export declare enum DeepgramModels {
2850
2867
  Nova2Voicemail = "NOVA2_VOICEMAIL",
2851
2868
  /** Nova 3 (General) */
2852
2869
  Nova3 = "NOVA3",
2870
+ /** Nova 3 (Medical) */
2871
+ Nova3Medical = "NOVA3_MEDICAL",
2853
2872
  /** Whisper (Base) */
2854
2873
  WhisperBase = "WHISPER_BASE",
2855
2874
  /** Whisper (Large) */
@@ -2957,6 +2976,27 @@ export type DiffbotEnrichmentPropertiesInput = {
2957
2976
  /** The Diffbot API key. */
2958
2977
  key?: InputMaybe<Scalars['String']['input']>;
2959
2978
  };
2979
+ /** Represents a Discord channel. */
2980
+ export type DiscordChannelResult = {
2981
+ __typename?: 'DiscordChannelResult';
2982
+ /** The Discord channel identifier. */
2983
+ channelId?: Maybe<Scalars['ID']['output']>;
2984
+ /** The Discord channel name. */
2985
+ channelName?: Maybe<Scalars['String']['output']>;
2986
+ };
2987
+ /** Represents Discord channels. */
2988
+ export type DiscordChannelResults = {
2989
+ __typename?: 'DiscordChannelResults';
2990
+ /** The Discord channels. */
2991
+ results?: Maybe<Array<Maybe<DiscordChannelResult>>>;
2992
+ };
2993
+ /** Represents Discord channels properties. */
2994
+ export type DiscordChannelsInput = {
2995
+ /** Discord guild identifier. */
2996
+ guildId: Scalars['String']['input'];
2997
+ /** Discord bot token. */
2998
+ token: Scalars['String']['input'];
2999
+ };
2960
3000
  /** Represents Discord feed properties. */
2961
3001
  export type DiscordFeedProperties = {
2962
3002
  __typename?: 'DiscordFeedProperties';
@@ -2997,6 +3037,25 @@ export type DiscordFeedPropertiesUpdateInput = {
2997
3037
  /** Feed listing type, i.e. past or new messages. */
2998
3038
  type?: InputMaybe<FeedListingTypes>;
2999
3039
  };
3040
+ /** Represents a Discord guild. */
3041
+ export type DiscordGuildResult = {
3042
+ __typename?: 'DiscordGuildResult';
3043
+ /** The Discord guild identifier. */
3044
+ guildId?: Maybe<Scalars['ID']['output']>;
3045
+ /** The Discord guild name. */
3046
+ guildName?: Maybe<Scalars['String']['output']>;
3047
+ };
3048
+ /** Represents Discord guilds. */
3049
+ export type DiscordGuildResults = {
3050
+ __typename?: 'DiscordGuildResults';
3051
+ /** The Discord guilds. */
3052
+ results?: Maybe<Array<Maybe<DiscordGuildResult>>>;
3053
+ };
3054
+ /** Represents Discord guilds properties. */
3055
+ export type DiscordGuildsInput = {
3056
+ /** Discord bot token. */
3057
+ token: Scalars['String']['input'];
3058
+ };
3000
3059
  /** Represents document metadata. */
3001
3060
  export type DocumentMetadata = {
3002
3061
  __typename?: 'DocumentMetadata';
@@ -3678,6 +3737,8 @@ export declare enum EntityTypes {
3678
3737
  Specification = "SPECIFICATION",
3679
3738
  /** User */
3680
3739
  User = "USER",
3740
+ /** View */
3741
+ View = "VIEW",
3681
3742
  /** Workflow */
3682
3743
  Workflow = "WORKFLOW"
3683
3744
  }
@@ -4528,9 +4589,18 @@ export type GeometryMetadataInput = {
4528
4589
  /** The geometry vertex count. */
4529
4590
  vertexCount?: InputMaybe<Scalars['Long']['input']>;
4530
4591
  };
4592
+ export declare enum GitHubAuthenticationTypes {
4593
+ Connector = "CONNECTOR",
4594
+ OAuth = "O_AUTH",
4595
+ PersonalAccessToken = "PERSONAL_ACCESS_TOKEN"
4596
+ }
4531
4597
  /** Represents GitHub properties. */
4532
4598
  export type GitHubFeedProperties = {
4533
4599
  __typename?: 'GitHubFeedProperties';
4600
+ /** OneDrive authentication type, defaults to User. */
4601
+ authenticationType?: Maybe<OneDriveAuthenticationTypes>;
4602
+ /** Connector identifier. */
4603
+ connectorId?: Maybe<Scalars['String']['output']>;
4534
4604
  /** GitHub personal access token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
4535
4605
  personalAccessToken?: Maybe<Scalars['String']['output']>;
4536
4606
  /** GitHub refresh token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
@@ -4544,9 +4614,13 @@ export type GitHubFeedProperties = {
4544
4614
  };
4545
4615
  /** Represents GitHub properties. */
4546
4616
  export type GitHubFeedPropertiesInput = {
4547
- /** GitHub personal access token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
4617
+ /** GitHub authentication type, defaults to PersonalAccessToken. */
4618
+ authenticationType?: InputMaybe<GitHubAuthenticationTypes>;
4619
+ /** Connector identifier, for Connector authentication type. */
4620
+ connectorId?: InputMaybe<Scalars['String']['input']>;
4621
+ /** GitHub personal access token, requires PersonalAccessToken authentication type. */
4548
4622
  personalAccessToken?: InputMaybe<Scalars['String']['input']>;
4549
- /** GitHub refresh token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
4623
+ /** GitHub refresh token, requires OAuth authentication type. */
4550
4624
  refreshToken?: InputMaybe<Scalars['String']['input']>;
4551
4625
  /** GitHub repository name. */
4552
4626
  repositoryName: Scalars['String']['input'];
@@ -4557,9 +4631,13 @@ export type GitHubFeedPropertiesInput = {
4557
4631
  };
4558
4632
  /** Represents GitHub properties. */
4559
4633
  export type GitHubFeedPropertiesUpdateInput = {
4560
- /** GitHub personal access token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
4634
+ /** GitHub authentication type, defaults to PersonalAccessToken. */
4635
+ authenticationType?: InputMaybe<GitHubAuthenticationTypes>;
4636
+ /** Connector identifier, for Connector authentication type. */
4637
+ connectorId?: InputMaybe<Scalars['String']['input']>;
4638
+ /** GitHub personal access token, requires PersonalAccessToken authentication type. */
4561
4639
  personalAccessToken?: InputMaybe<Scalars['String']['input']>;
4562
- /** GitHub refresh token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
4640
+ /** GitHub refresh token, requires OAuth authentication type. */
4563
4641
  refreshToken?: InputMaybe<Scalars['String']['input']>;
4564
4642
  /** GitHub repository name. */
4565
4643
  repositoryName?: InputMaybe<Scalars['String']['input']>;
@@ -4568,6 +4646,11 @@ export type GitHubFeedPropertiesUpdateInput = {
4568
4646
  /** GitHub Enterprise URI, optional. */
4569
4647
  uri?: InputMaybe<Scalars['URL']['input']>;
4570
4648
  };
4649
+ export declare enum GitHubIssueAuthenticationTypes {
4650
+ Connector = "CONNECTOR",
4651
+ OAuth = "O_AUTH",
4652
+ PersonalAccessToken = "PERSONAL_ACCESS_TOKEN"
4653
+ }
4571
4654
  /** Represents GitHub Issues feed properties. */
4572
4655
  export type GitHubIssuesFeedProperties = {
4573
4656
  __typename?: 'GitHubIssuesFeedProperties';
@@ -4584,9 +4667,13 @@ export type GitHubIssuesFeedProperties = {
4584
4667
  };
4585
4668
  /** Represents GitHub Issues feed properties. */
4586
4669
  export type GitHubIssuesFeedPropertiesInput = {
4587
- /** GitHub personal access token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
4670
+ /** GitHub Issues authentication type, defaults to PersonalAccessToken. */
4671
+ authenticationType?: InputMaybe<GitHubIssueAuthenticationTypes>;
4672
+ /** Connector identifier, for Connector authentication type. */
4673
+ connectorId?: InputMaybe<Scalars['String']['input']>;
4674
+ /** GitHub personal access token, requires PersonalAccessToken authentication type. */
4588
4675
  personalAccessToken?: InputMaybe<Scalars['String']['input']>;
4589
- /** GitHub refresh token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
4676
+ /** GitHub refresh token, requires OAuth authentication type. */
4590
4677
  refreshToken?: InputMaybe<Scalars['String']['input']>;
4591
4678
  /** GitHub repository name. */
4592
4679
  repositoryName: Scalars['String']['input'];
@@ -4623,11 +4710,17 @@ export type GoogleAuthenticationPropertiesInput = {
4623
4710
  /** Google client secret. */
4624
4711
  clientSecret: Scalars['String']['input'];
4625
4712
  };
4713
+ export declare enum GoogleCalendarAuthenticationTypes {
4714
+ Connector = "CONNECTOR",
4715
+ User = "USER"
4716
+ }
4626
4717
  /** Represents Google Calendar feed properties. */
4627
4718
  export type GoogleCalendarFeedProperties = {
4628
4719
  __typename?: 'GoogleCalendarFeedProperties';
4629
4720
  /** Read calendar events after this date (inclusive), optional. */
4630
4721
  afterDate?: Maybe<Scalars['DateTime']['output']>;
4722
+ /** Google Calendar authentication type. */
4723
+ authenticationType?: Maybe<GoogleCalendarAuthenticationTypes>;
4631
4724
  /** Read calendar events before this date (inclusive), optional. */
4632
4725
  beforeDate?: Maybe<Scalars['DateTime']['output']>;
4633
4726
  /** Google Email calendar identifier, optional. */
@@ -4636,6 +4729,8 @@ export type GoogleCalendarFeedProperties = {
4636
4729
  clientId: Scalars['String']['output'];
4637
4730
  /** Google OAuth2 client secret. */
4638
4731
  clientSecret: Scalars['String']['output'];
4732
+ /** Connector identifier. */
4733
+ connectorId?: Maybe<Scalars['String']['output']>;
4639
4734
  /** Google OAuth2 refresh token. */
4640
4735
  refreshToken: Scalars['String']['output'];
4641
4736
  };
@@ -4643,25 +4738,33 @@ export type GoogleCalendarFeedProperties = {
4643
4738
  export type GoogleCalendarFeedPropertiesInput = {
4644
4739
  /** Read calendar events after this date (inclusive), optional. */
4645
4740
  afterDate?: InputMaybe<Scalars['DateTime']['input']>;
4741
+ /** Google Calendar authentication type, defaults to User. */
4742
+ authenticationType?: InputMaybe<GoogleCalendarAuthenticationTypes>;
4646
4743
  /** Read calendar events before this date (inclusive), optional. */
4647
4744
  beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
4648
4745
  /** Google Email calendar identifier, optional. */
4649
4746
  calendarId?: InputMaybe<Scalars['String']['input']>;
4650
- /** Google OAuth2 client identifier. */
4651
- clientId: Scalars['String']['input'];
4652
- /** Google OAuth2 client secret. */
4653
- clientSecret: Scalars['String']['input'];
4654
- /** Google OAuth2 refresh token. */
4655
- refreshToken: Scalars['String']['input'];
4747
+ /** Google OAuth2 client identifier, requires User authentication type. */
4748
+ clientId?: InputMaybe<Scalars['String']['input']>;
4749
+ /** Google OAuth2 client secret, requires User authentication type. */
4750
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
4751
+ /** Connector identifier, for Connector authentication type. */
4752
+ connectorId?: InputMaybe<Scalars['String']['input']>;
4753
+ /** Google OAuth2 refresh token, requires User authentication type. */
4754
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
4656
4755
  };
4657
4756
  /** Represents Google Calendar properties. */
4658
4757
  export type GoogleCalendarFeedPropertiesUpdateInput = {
4659
- /** Google OAuth2 client identifier. */
4660
- clientId: Scalars['String']['input'];
4661
- /** Google OAuth2 client secret. */
4662
- clientSecret: Scalars['String']['input'];
4663
- /** Google OAuth2 refresh token. */
4664
- refreshToken: Scalars['String']['input'];
4758
+ /** Google Calendar authentication type, defaults to User. */
4759
+ authenticationType?: InputMaybe<GoogleCalendarAuthenticationTypes>;
4760
+ /** Google OAuth2 client identifier, requires User authentication type. */
4761
+ clientId?: InputMaybe<Scalars['String']['input']>;
4762
+ /** Google OAuth2 client secret, requires User authentication type. */
4763
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
4764
+ /** Connector identifier, for Connector authentication type. */
4765
+ connectorId?: InputMaybe<Scalars['String']['input']>;
4766
+ /** Google OAuth2 refresh token, requires User authentication type. */
4767
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
4665
4768
  };
4666
4769
  /** Represents Google Calendar properties. */
4667
4770
  export type GoogleCalendarsInput = {
@@ -4673,6 +4776,7 @@ export type GoogleCalendarsInput = {
4673
4776
  refreshToken: Scalars['String']['input'];
4674
4777
  };
4675
4778
  export declare enum GoogleDriveAuthenticationTypes {
4779
+ Connector = "CONNECTOR",
4676
4780
  ServiceAccount = "SERVICE_ACCOUNT",
4677
4781
  User = "USER"
4678
4782
  }
@@ -4685,6 +4789,8 @@ export type GoogleDriveFeedProperties = {
4685
4789
  clientId?: Maybe<Scalars['String']['output']>;
4686
4790
  /** Google client secret, requires User authentication type. */
4687
4791
  clientSecret?: Maybe<Scalars['String']['output']>;
4792
+ /** Connector identifier. */
4793
+ connectorId?: Maybe<Scalars['String']['output']>;
4688
4794
  /** Google Drive file identifiers. Takes precedence over folder identifier. */
4689
4795
  files?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
4690
4796
  /** Google Drive folder identifier. */
@@ -4702,6 +4808,8 @@ export type GoogleDriveFeedPropertiesInput = {
4702
4808
  clientId?: InputMaybe<Scalars['String']['input']>;
4703
4809
  /** Google client secret, requires User authentication type. */
4704
4810
  clientSecret?: InputMaybe<Scalars['String']['input']>;
4811
+ /** Connector identifier, for Connector authentication type. */
4812
+ connectorId?: InputMaybe<Scalars['String']['input']>;
4705
4813
  /** Google Drive file identifiers. Takes precedence over folder identifier. */
4706
4814
  files?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
4707
4815
  /** Google Drive folder identifier. */
@@ -4719,6 +4827,8 @@ export type GoogleDriveFeedPropertiesUpdateInput = {
4719
4827
  clientId?: InputMaybe<Scalars['String']['input']>;
4720
4828
  /** Google client secret, requires User authentication type. */
4721
4829
  clientSecret?: InputMaybe<Scalars['String']['input']>;
4830
+ /** Connector identifier, for Connector authentication type. */
4831
+ connectorId?: InputMaybe<Scalars['String']['input']>;
4722
4832
  /** Google Drive file identifiers. Takes precedence over folder identifier. */
4723
4833
  files?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
4724
4834
  /** Google Drive folder identifier. */
@@ -4751,13 +4861,21 @@ export type GoogleDriveFoldersInput = {
4751
4861
  /** Google OAuth2 refresh token. */
4752
4862
  refreshToken: Scalars['String']['input'];
4753
4863
  };
4864
+ export declare enum GoogleEmailAuthenticationTypes {
4865
+ Connector = "CONNECTOR",
4866
+ User = "USER"
4867
+ }
4754
4868
  /** Represents Google Email feed properties. */
4755
4869
  export type GoogleEmailFeedProperties = {
4756
4870
  __typename?: 'GoogleEmailFeedProperties';
4871
+ /** Google Email authentication type. */
4872
+ authenticationType?: Maybe<GoogleEmailAuthenticationTypes>;
4757
4873
  /** Google Email client identifier. */
4758
4874
  clientId: Scalars['String']['output'];
4759
4875
  /** Google Email client secret. */
4760
4876
  clientSecret: Scalars['String']['output'];
4877
+ /** Connector identifier. */
4878
+ connectorId?: Maybe<Scalars['String']['output']>;
4761
4879
  /** Whether to exclude Sent messages in email listing. Default is False. */
4762
4880
  excludeSentItems?: Maybe<Scalars['Boolean']['output']>;
4763
4881
  /** Whether to only read past emails from Inbox. Default is False. */
@@ -4773,10 +4891,14 @@ export type GoogleEmailFeedProperties = {
4773
4891
  };
4774
4892
  /** Represents Google Email feed properties. */
4775
4893
  export type GoogleEmailFeedPropertiesInput = {
4776
- /** Google client identifier. */
4777
- clientId: Scalars['String']['input'];
4778
- /** Google client secret. */
4779
- clientSecret: Scalars['String']['input'];
4894
+ /** Google Email authentication type, defaults to User. */
4895
+ authenticationType?: InputMaybe<GoogleEmailAuthenticationTypes>;
4896
+ /** Google client identifier, requires User authentication type. */
4897
+ clientId?: InputMaybe<Scalars['String']['input']>;
4898
+ /** Google client secret, requires User authentication type. */
4899
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
4900
+ /** Connector identifier, for Connector authentication type. */
4901
+ connectorId?: InputMaybe<Scalars['String']['input']>;
4780
4902
  /** Whether to exclude Sent messages in email listing. Default is False. */
4781
4903
  excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
4782
4904
  /** Whether to only read past emails from Inbox. Default is False. */
@@ -4785,17 +4907,21 @@ export type GoogleEmailFeedPropertiesInput = {
4785
4907
  includeDeletedItems?: InputMaybe<Scalars['Boolean']['input']>;
4786
4908
  /** Whether to include Spam messages in email listing. Default is False. */
4787
4909
  includeSpam?: InputMaybe<Scalars['Boolean']['input']>;
4788
- /** Google refresh token. */
4789
- refreshToken: Scalars['String']['input'];
4910
+ /** Google refresh token, requires User authentication type. */
4911
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
4790
4912
  /** Email listing type, i.e. past or new emails. */
4791
4913
  type?: InputMaybe<EmailListingTypes>;
4792
4914
  };
4793
4915
  /** Represents Google Email feed properties. */
4794
4916
  export type GoogleEmailFeedPropertiesUpdateInput = {
4795
- /** Google client identifier. */
4917
+ /** Google Email authentication type, defaults to User. */
4918
+ authenticationType?: InputMaybe<GoogleEmailAuthenticationTypes>;
4919
+ /** Google client identifier, requires User authentication type. */
4796
4920
  clientId?: InputMaybe<Scalars['String']['input']>;
4797
- /** Google client secret. */
4921
+ /** Google client secret, requires User authentication type. */
4798
4922
  clientSecret?: InputMaybe<Scalars['String']['input']>;
4923
+ /** Connector identifier, for Connector authentication type. */
4924
+ connectorId?: InputMaybe<Scalars['String']['input']>;
4799
4925
  /** Whether to exclude Sent messages in email listing. Default is False. */
4800
4926
  excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
4801
4927
  /** Whether to only read past emails from Inbox. Default is False. */
@@ -4804,7 +4930,7 @@ export type GoogleEmailFeedPropertiesUpdateInput = {
4804
4930
  includeDeletedItems?: InputMaybe<Scalars['Boolean']['input']>;
4805
4931
  /** Whether to include Spam messages in email listing. Default is False. */
4806
4932
  includeSpam?: InputMaybe<Scalars['Boolean']['input']>;
4807
- /** Google refresh token. */
4933
+ /** Google refresh token, requires User authentication type. */
4808
4934
  refreshToken?: InputMaybe<Scalars['String']['input']>;
4809
4935
  /** Email listing type, i.e. past or new emails. */
4810
4936
  type?: InputMaybe<EmailListingTypes>;
@@ -5840,6 +5966,8 @@ export type LinkStrategy = {
5840
5966
  __typename?: 'LinkStrategy';
5841
5967
  /** Whether to crawl the content DNS domain, i.e. hyperlinks to same domain as content page. */
5842
5968
  allowContentDomain?: Maybe<Scalars['Boolean']['output']>;
5969
+ /** The allowed content types for link crawling. */
5970
+ allowedContentTypes?: Maybe<Array<ContentTypes>>;
5843
5971
  /** The list of DNS domains to be crawled, i.e. example.com. */
5844
5972
  allowedDomains?: Maybe<Array<Scalars['String']['output']>>;
5845
5973
  /** The allowed file types. */
@@ -5850,6 +5978,8 @@ export type LinkStrategy = {
5850
5978
  allowedPaths?: Maybe<Array<Scalars['String']['output']>>;
5851
5979
  /** Whether link crawling is enabled. */
5852
5980
  enableCrawling?: Maybe<Scalars['Boolean']['output']>;
5981
+ /** The excluded content types for link crawling. */
5982
+ excludedContentTypes?: Maybe<Array<ContentTypes>>;
5853
5983
  /** The list of DNS domains to not be crawled, i.e. example.com. */
5854
5984
  excludedDomains?: Maybe<Array<Scalars['String']['output']>>;
5855
5985
  /** The excluded link types. */
@@ -5865,6 +5995,8 @@ export type LinkStrategy = {
5865
5995
  export type LinkStrategyInput = {
5866
5996
  /** Whether to crawl the content DNS domain, i.e. hyperlinks to same domain as content page. */
5867
5997
  allowContentDomain?: InputMaybe<Scalars['Boolean']['input']>;
5998
+ /** The allowed content types for link crawling. */
5999
+ allowedContentTypes?: InputMaybe<Array<ContentTypes>>;
5868
6000
  /** The list of DNS domains to be crawled, i.e. example.com. */
5869
6001
  allowedDomains?: InputMaybe<Array<Scalars['String']['input']>>;
5870
6002
  /** The allowed file types. */
@@ -5875,6 +6007,8 @@ export type LinkStrategyInput = {
5875
6007
  allowedPaths?: InputMaybe<Array<Scalars['String']['input']>>;
5876
6008
  /** Whether link crawling is enabled. */
5877
6009
  enableCrawling?: InputMaybe<Scalars['Boolean']['input']>;
6010
+ /** The excluded content types for link crawling. */
6011
+ excludedContentTypes?: InputMaybe<Array<ContentTypes>>;
5878
6012
  /** The list of DNS domains to not be crawled, i.e. example.com. */
5879
6013
  excludedDomains?: InputMaybe<Array<Scalars['String']['input']>>;
5880
6014
  /** The excluded link types. */
@@ -7706,11 +7840,17 @@ export type MicrosoftAuthenticationPropertiesInput = {
7706
7840
  /** Microsoft Entra ID tenant ID. */
7707
7841
  tenantId: Scalars['ID']['input'];
7708
7842
  };
7843
+ export declare enum MicrosoftCalendarAuthenticationTypes {
7844
+ Connector = "CONNECTOR",
7845
+ User = "USER"
7846
+ }
7709
7847
  /** Represents Microsoft Calendar feed properties. */
7710
7848
  export type MicrosoftCalendarFeedProperties = {
7711
7849
  __typename?: 'MicrosoftCalendarFeedProperties';
7712
7850
  /** Read calendar events after this date (inclusive), optional. */
7713
7851
  afterDate?: Maybe<Scalars['DateTime']['output']>;
7852
+ /** Microsoft Calendar authentication type. */
7853
+ authenticationType?: Maybe<MicrosoftCalendarAuthenticationTypes>;
7714
7854
  /** Read calendar events before this date (inclusive), optional. */
7715
7855
  beforeDate?: Maybe<Scalars['DateTime']['output']>;
7716
7856
  /** Microsoft Email calendar identifier, optional. */
@@ -7719,6 +7859,8 @@ export type MicrosoftCalendarFeedProperties = {
7719
7859
  clientId: Scalars['String']['output'];
7720
7860
  /** Microsoft Entra ID client secret. */
7721
7861
  clientSecret: Scalars['String']['output'];
7862
+ /** Connector identifier. */
7863
+ connectorId?: Maybe<Scalars['String']['output']>;
7722
7864
  /** Microsoft Entra ID refresh token. */
7723
7865
  refreshToken: Scalars['String']['output'];
7724
7866
  };
@@ -7726,25 +7868,33 @@ export type MicrosoftCalendarFeedProperties = {
7726
7868
  export type MicrosoftCalendarFeedPropertiesInput = {
7727
7869
  /** Read calendar events after this date (inclusive), optional. */
7728
7870
  afterDate?: InputMaybe<Scalars['DateTime']['input']>;
7871
+ /** Microsoft Calendar authentication type, defaults to User. */
7872
+ authenticationType?: InputMaybe<MicrosoftCalendarAuthenticationTypes>;
7729
7873
  /** Read calendar events before this date (inclusive), optional. */
7730
7874
  beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
7731
7875
  /** Microsoft Email calendar identifier, optional. */
7732
7876
  calendarId?: InputMaybe<Scalars['String']['input']>;
7733
- /** Microsoft Entra ID client identifier. */
7734
- clientId: Scalars['String']['input'];
7735
- /** Microsoft Entra ID client secret. */
7736
- clientSecret: Scalars['String']['input'];
7737
- /** Microsoft Entra ID refresh token. */
7738
- refreshToken: Scalars['String']['input'];
7877
+ /** Microsoft Entra ID client identifier, requires User authentication type. */
7878
+ clientId?: InputMaybe<Scalars['String']['input']>;
7879
+ /** Microsoft Entra ID client secret, requires User authentication type. */
7880
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
7881
+ /** Connector identifier, for Connector authentication type. */
7882
+ connectorId?: InputMaybe<Scalars['String']['input']>;
7883
+ /** Microsoft Entra ID refresh token, requires User authentication type. */
7884
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
7739
7885
  };
7740
7886
  /** Represents Microsoft Calendar properties. */
7741
7887
  export type MicrosoftCalendarFeedPropertiesUpdateInput = {
7742
- /** Microsoft Entra ID client identifier. */
7743
- clientId: Scalars['String']['input'];
7744
- /** Microsoft Entra ID client secret. */
7745
- clientSecret: Scalars['String']['input'];
7746
- /** Microsoft Entra ID refresh token. */
7747
- refreshToken: Scalars['String']['input'];
7888
+ /** Microsoft Calendar authentication type, defaults to User. */
7889
+ authenticationType?: InputMaybe<MicrosoftCalendarAuthenticationTypes>;
7890
+ /** Microsoft Entra ID client identifier, requires User authentication type. */
7891
+ clientId?: InputMaybe<Scalars['String']['input']>;
7892
+ /** Microsoft Entra ID client secret, requires User authentication type. */
7893
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
7894
+ /** Connector identifier, for Connector authentication type. */
7895
+ connectorId?: InputMaybe<Scalars['String']['input']>;
7896
+ /** Microsoft Entra ID refresh token, requires User authentication type. */
7897
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
7748
7898
  };
7749
7899
  /** Represents Microsoft Calendar properties. */
7750
7900
  export type MicrosoftCalendarsInput = {
@@ -7755,13 +7905,21 @@ export type MicrosoftCalendarsInput = {
7755
7905
  /** Microsoft Entra ID refresh token. */
7756
7906
  refreshToken: Scalars['String']['input'];
7757
7907
  };
7908
+ export declare enum MicrosoftEmailAuthenticationTypes {
7909
+ Connector = "CONNECTOR",
7910
+ User = "USER"
7911
+ }
7758
7912
  /** Represents Microsoft Email feed properties. */
7759
7913
  export type MicrosoftEmailFeedProperties = {
7760
7914
  __typename?: 'MicrosoftEmailFeedProperties';
7915
+ /** Microsoft Email authentication type. */
7916
+ authenticationType?: Maybe<MicrosoftEmailAuthenticationTypes>;
7761
7917
  /** Microsoft Email client identifier. */
7762
7918
  clientId: Scalars['String']['output'];
7763
7919
  /** Microsoft Email client secret. */
7764
7920
  clientSecret: Scalars['String']['output'];
7921
+ /** Connector identifier. */
7922
+ connectorId?: Maybe<Scalars['String']['output']>;
7765
7923
  /** Whether to exclude Sent messages in email listing. Default is False. */
7766
7924
  excludeSentItems?: Maybe<Scalars['Boolean']['output']>;
7767
7925
  /** Whether to only read past emails from Inbox. Default is False. */
@@ -7777,10 +7935,14 @@ export type MicrosoftEmailFeedProperties = {
7777
7935
  };
7778
7936
  /** Represents Microsoft Email feed properties. */
7779
7937
  export type MicrosoftEmailFeedPropertiesInput = {
7780
- /** Microsoft Email client identifier. */
7781
- clientId: Scalars['String']['input'];
7782
- /** Microsoft Email client secret. */
7783
- clientSecret: Scalars['String']['input'];
7938
+ /** Microsoft Email authentication type, defaults to User. */
7939
+ authenticationType?: InputMaybe<MicrosoftEmailAuthenticationTypes>;
7940
+ /** Microsoft Email client identifier, requires User authentication type. */
7941
+ clientId?: InputMaybe<Scalars['String']['input']>;
7942
+ /** Microsoft Email client secret, requires User authentication type. */
7943
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
7944
+ /** Connector identifier, for Connector authentication type. */
7945
+ connectorId?: InputMaybe<Scalars['String']['input']>;
7784
7946
  /** Whether to exclude Sent messages in email listing. Default is False. */
7785
7947
  excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
7786
7948
  /** Whether to only read past emails from Inbox. Default is False. */
@@ -7789,17 +7951,21 @@ export type MicrosoftEmailFeedPropertiesInput = {
7789
7951
  includeDeletedItems?: InputMaybe<Scalars['Boolean']['input']>;
7790
7952
  /** Whether to include Spam messages in email listing. Default is False. */
7791
7953
  includeSpam?: InputMaybe<Scalars['Boolean']['input']>;
7792
- /** Microsoft Email refresh token. */
7793
- refreshToken: Scalars['String']['input'];
7954
+ /** Microsoft Email refresh token, requires User authentication type. */
7955
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
7794
7956
  /** Email listing type, i.e. past or new emails. */
7795
7957
  type?: InputMaybe<EmailListingTypes>;
7796
7958
  };
7797
7959
  /** Represents Microsoft Email feed properties. */
7798
7960
  export type MicrosoftEmailFeedPropertiesUpdateInput = {
7799
- /** Microsoft Email client identifier. */
7961
+ /** Microsoft Email authentication type, defaults to User. */
7962
+ authenticationType?: InputMaybe<MicrosoftEmailAuthenticationTypes>;
7963
+ /** Microsoft Email client identifier, requires User authentication type. */
7800
7964
  clientId?: InputMaybe<Scalars['String']['input']>;
7801
- /** Microsoft Email client secret. */
7965
+ /** Microsoft Email client secret, requires User authentication type. */
7802
7966
  clientSecret?: InputMaybe<Scalars['String']['input']>;
7967
+ /** Connector identifier, for Connector authentication type. */
7968
+ connectorId?: InputMaybe<Scalars['String']['input']>;
7803
7969
  /** Whether to exclude Sent messages in email listing. Default is False. */
7804
7970
  excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
7805
7971
  /** Whether to only read past emails from Inbox. Default is False. */
@@ -7808,7 +7974,7 @@ export type MicrosoftEmailFeedPropertiesUpdateInput = {
7808
7974
  includeDeletedItems?: InputMaybe<Scalars['Boolean']['input']>;
7809
7975
  /** Whether to include Spam messages in email listing. Default is False. */
7810
7976
  includeSpam?: InputMaybe<Scalars['Boolean']['input']>;
7811
- /** Microsoft Email refresh token. */
7977
+ /** Microsoft Email refresh token, requires User authentication type. */
7812
7978
  refreshToken?: InputMaybe<Scalars['String']['input']>;
7813
7979
  /** Email listing type, i.e. past or new emails. */
7814
7980
  type?: InputMaybe<EmailListingTypes>;
@@ -8241,6 +8407,8 @@ export type Mutation = {
8241
8407
  createSpecification?: Maybe<Specification>;
8242
8408
  /** Creates a new user. */
8243
8409
  createUser?: Maybe<User>;
8410
+ /** Creates a new view. */
8411
+ createView?: Maybe<View>;
8244
8412
  /** Creates a new content workflow. */
8245
8413
  createWorkflow?: Maybe<Workflow>;
8246
8414
  /** Deletes an alert. */
@@ -8299,6 +8467,8 @@ export type Mutation = {
8299
8467
  deleteAllSoftwares?: Maybe<Array<Maybe<Software>>>;
8300
8468
  /** Bulk deletes specifications based on the provided filter criteria. */
8301
8469
  deleteAllSpecifications?: Maybe<Array<Maybe<Specification>>>;
8470
+ /** Bulk deletes views based on the provided filter criteria. */
8471
+ deleteAllViews?: Maybe<Array<Maybe<View>>>;
8302
8472
  /** Bulk deletes workflows based on the provided filter criteria. */
8303
8473
  deleteAllWorkflows?: Maybe<Array<Maybe<Workflow>>>;
8304
8474
  /** Bulk deletes categories. */
@@ -8407,6 +8577,10 @@ export type Mutation = {
8407
8577
  deleteSpecifications?: Maybe<Array<Maybe<Specification>>>;
8408
8578
  /** Deletes a user. */
8409
8579
  deleteUser?: Maybe<User>;
8580
+ /** Deletes a view. */
8581
+ deleteView?: Maybe<View>;
8582
+ /** Bulk deletes views. */
8583
+ deleteViews?: Maybe<Array<Maybe<View>>>;
8410
8584
  /** Deletes a content workflow. */
8411
8585
  deleteWorkflow?: Maybe<Workflow>;
8412
8586
  /** Deletes multiple workflows given their IDs. */
@@ -8485,6 +8659,8 @@ export type Mutation = {
8485
8659
  restartContent?: Maybe<Content>;
8486
8660
  /** Retrieve content sources. */
8487
8661
  retrieveSources?: Maybe<ContentSourceResults>;
8662
+ /** Retrieve content sources using a saved view. */
8663
+ retrieveView?: Maybe<ContentSourceResults>;
8488
8664
  /** Revise content via prompted conversation. */
8489
8665
  reviseContent?: Maybe<ReviseContent>;
8490
8666
  /** Revise encoded image via prompted conversation. */
@@ -8565,6 +8741,8 @@ export type Mutation = {
8565
8741
  updateSpecification?: Maybe<Specification>;
8566
8742
  /** Updates an existing user. */
8567
8743
  updateUser?: Maybe<User>;
8744
+ /** Updates an existing view. */
8745
+ updateView?: Maybe<View>;
8568
8746
  /** Updates an existing content workflow. */
8569
8747
  updateWorkflow?: Maybe<Workflow>;
8570
8748
  /** Upserts a category. */
@@ -8573,6 +8751,8 @@ export type Mutation = {
8573
8751
  upsertLabel?: Maybe<Label>;
8574
8752
  /** Upserts an LLM specification. */
8575
8753
  upsertSpecification?: Maybe<Specification>;
8754
+ /** Upserts a view. */
8755
+ upsertView?: Maybe<View>;
8576
8756
  /** Upserts a content workflow. */
8577
8757
  upsertWorkflow?: Maybe<Workflow>;
8578
8758
  };
@@ -8705,6 +8885,9 @@ export type MutationCreateSpecificationArgs = {
8705
8885
  export type MutationCreateUserArgs = {
8706
8886
  user: UserInput;
8707
8887
  };
8888
+ export type MutationCreateViewArgs = {
8889
+ view: ViewInput;
8890
+ };
8708
8891
  export type MutationCreateWorkflowArgs = {
8709
8892
  workflow: WorkflowInput;
8710
8893
  };
@@ -8845,6 +9028,11 @@ export type MutationDeleteAllSpecificationsArgs = {
8845
9028
  filter?: InputMaybe<SpecificationFilter>;
8846
9029
  isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
8847
9030
  };
9031
+ export type MutationDeleteAllViewsArgs = {
9032
+ correlationId?: InputMaybe<Scalars['String']['input']>;
9033
+ filter?: InputMaybe<ViewFilter>;
9034
+ isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
9035
+ };
8848
9036
  export type MutationDeleteAllWorkflowsArgs = {
8849
9037
  correlationId?: InputMaybe<Scalars['String']['input']>;
8850
9038
  filter?: InputMaybe<WorkflowFilter>;
@@ -9034,6 +9222,13 @@ export type MutationDeleteSpecificationsArgs = {
9034
9222
  export type MutationDeleteUserArgs = {
9035
9223
  id: Scalars['ID']['input'];
9036
9224
  };
9225
+ export type MutationDeleteViewArgs = {
9226
+ id: Scalars['ID']['input'];
9227
+ };
9228
+ export type MutationDeleteViewsArgs = {
9229
+ ids: Array<Scalars['ID']['input']>;
9230
+ isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
9231
+ };
9037
9232
  export type MutationDeleteWorkflowArgs = {
9038
9233
  id: Scalars['ID']['input'];
9039
9234
  };
@@ -9270,6 +9465,13 @@ export type MutationRetrieveSourcesArgs = {
9270
9465
  rerankingStrategy?: InputMaybe<RerankingStrategyInput>;
9271
9466
  retrievalStrategy?: InputMaybe<RetrievalStrategyInput>;
9272
9467
  };
9468
+ export type MutationRetrieveViewArgs = {
9469
+ correlationId?: InputMaybe<Scalars['String']['input']>;
9470
+ id: Scalars['ID']['input'];
9471
+ prompt: Scalars['String']['input'];
9472
+ rerankingStrategy?: InputMaybe<RerankingStrategyInput>;
9473
+ retrievalStrategy?: InputMaybe<RetrievalStrategyInput>;
9474
+ };
9273
9475
  export type MutationReviseContentArgs = {
9274
9476
  content: EntityReferenceInput;
9275
9477
  correlationId?: InputMaybe<Scalars['String']['input']>;
@@ -9422,6 +9624,9 @@ export type MutationUpdateSpecificationArgs = {
9422
9624
  export type MutationUpdateUserArgs = {
9423
9625
  user: UserUpdateInput;
9424
9626
  };
9627
+ export type MutationUpdateViewArgs = {
9628
+ view: ViewUpdateInput;
9629
+ };
9425
9630
  export type MutationUpdateWorkflowArgs = {
9426
9631
  workflow: WorkflowUpdateInput;
9427
9632
  };
@@ -9434,6 +9639,9 @@ export type MutationUpsertLabelArgs = {
9434
9639
  export type MutationUpsertSpecificationArgs = {
9435
9640
  specification: SpecificationInput;
9436
9641
  };
9642
+ export type MutationUpsertViewArgs = {
9643
+ view: ViewInput;
9644
+ };
9437
9645
  export type MutationUpsertWorkflowArgs = {
9438
9646
  workflow: WorkflowInput;
9439
9647
  };
@@ -9730,13 +9938,21 @@ export declare enum OccurrenceTypes {
9730
9938
  Text = "TEXT",
9731
9939
  Time = "TIME"
9732
9940
  }
9941
+ export declare enum OneDriveAuthenticationTypes {
9942
+ Connector = "CONNECTOR",
9943
+ User = "USER"
9944
+ }
9733
9945
  /** Represents OneDrive properties. */
9734
9946
  export type OneDriveFeedProperties = {
9735
9947
  __typename?: 'OneDriveFeedProperties';
9948
+ /** OneDrive authentication type, defaults to User. */
9949
+ authenticationType?: Maybe<OneDriveAuthenticationTypes>;
9736
9950
  /** OneDrive client identifier. */
9737
9951
  clientId: Scalars['String']['output'];
9738
9952
  /** OneDrive client secret. */
9739
9953
  clientSecret: Scalars['String']['output'];
9954
+ /** Connector identifier. */
9955
+ connectorId?: Maybe<Scalars['String']['output']>;
9740
9956
  /** OneDrive file identifiers. Takes precedence over folder identifier. */
9741
9957
  files?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
9742
9958
  /** OneDrive folder identifier. */
@@ -9746,28 +9962,36 @@ export type OneDriveFeedProperties = {
9746
9962
  };
9747
9963
  /** Represents OneDrive properties. */
9748
9964
  export type OneDriveFeedPropertiesInput = {
9749
- /** OneDrive client identifier. */
9750
- clientId: Scalars['String']['input'];
9751
- /** OneDrive client secret. */
9752
- clientSecret: Scalars['String']['input'];
9965
+ /** OneDrive authentication type, defaults to User. */
9966
+ authenticationType?: InputMaybe<OneDriveAuthenticationTypes>;
9967
+ /** OneDrive client identifier, requires User authentication type. */
9968
+ clientId?: InputMaybe<Scalars['String']['input']>;
9969
+ /** OneDrive client secret, requires User authentication type. */
9970
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
9971
+ /** Connector identifier, for Connector authentication type. */
9972
+ connectorId?: InputMaybe<Scalars['String']['input']>;
9753
9973
  /** OneDrive file identifiers. Takes precedence over folder identifier. */
9754
9974
  files?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
9755
9975
  /** OneDrive folder identifier. */
9756
9976
  folderId?: InputMaybe<Scalars['ID']['input']>;
9757
- /** OneDrive refresh token. */
9758
- refreshToken: Scalars['String']['input'];
9977
+ /** OneDrive refresh token, requires User authentication type. */
9978
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
9759
9979
  };
9760
9980
  /** Represents OneDrive properties. */
9761
9981
  export type OneDriveFeedPropertiesUpdateInput = {
9762
- /** OneDrive client identifier. */
9982
+ /** OneDrive authentication type, defaults to User. */
9983
+ authenticationType?: InputMaybe<OneDriveAuthenticationTypes>;
9984
+ /** OneDrive client identifier, requires User authentication type. */
9763
9985
  clientId?: InputMaybe<Scalars['String']['input']>;
9764
- /** OneDrive client secret. */
9986
+ /** OneDrive client secret, requires User authentication type. */
9765
9987
  clientSecret?: InputMaybe<Scalars['String']['input']>;
9988
+ /** Connector identifier, for Connector authentication type. */
9989
+ connectorId?: InputMaybe<Scalars['String']['input']>;
9766
9990
  /** OneDrive file identifiers. Takes precedence over folder identifier. */
9767
9991
  files?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
9768
9992
  /** OneDrive folder identifier. */
9769
9993
  folderId?: InputMaybe<Scalars['ID']['input']>;
9770
- /** OneDrive refresh token. */
9994
+ /** OneDrive refresh token, requires User authentication type. */
9771
9995
  refreshToken?: InputMaybe<Scalars['String']['input']>;
9772
9996
  };
9773
9997
  /** Represents a OneDrive folder. */
@@ -11530,6 +11754,8 @@ export type Query = {
11530
11754
  countCategories?: Maybe<CountResult>;
11531
11755
  /** Counts collections based on the provided filter criteria. */
11532
11756
  countCollections?: Maybe<CountResult>;
11757
+ /** Counts connectors based on the provided filter criteria. */
11758
+ countConnectors?: Maybe<CountResult>;
11533
11759
  /** Counts contents based on the provided filter criteria. */
11534
11760
  countContents?: Maybe<CountResult>;
11535
11761
  /** Counts conversations based on the provided filter criteria. */
@@ -11578,10 +11804,16 @@ export type Query = {
11578
11804
  countSpecifications?: Maybe<CountResult>;
11579
11805
  /** Counts users based on the provided filter criteria. */
11580
11806
  countUsers?: Maybe<CountResult>;
11807
+ /** Counts views based on the provided filter criteria. */
11808
+ countViews?: Maybe<CountResult>;
11581
11809
  /** Counts workflows based on the provided filter criteria. */
11582
11810
  countWorkflows?: Maybe<CountResult>;
11583
11811
  /** Retrieves project credits. */
11584
11812
  credits?: Maybe<ProjectCredits>;
11813
+ /** Retrieves available Discord channels for a guild. */
11814
+ discordChannels?: Maybe<DiscordChannelResults>;
11815
+ /** Retrieves available Discord guilds. */
11816
+ discordGuilds?: Maybe<DiscordGuildResults>;
11585
11817
  /** Retrieves available Dropbox folders. */
11586
11818
  dropboxFolders?: Maybe<DropboxFolderResults>;
11587
11819
  /** Lookup an event given its ID. */
@@ -11730,6 +11962,12 @@ export type Query = {
11730
11962
  userByIdentifier?: Maybe<User>;
11731
11963
  /** Retrieves users based on the provided filter criteria. */
11732
11964
  users?: Maybe<UserResults>;
11965
+ /** Lookup a view given its ID. */
11966
+ view?: Maybe<View>;
11967
+ /** Returns whether any view exists based on the provided filter criteria. */
11968
+ viewExists?: Maybe<BooleanResult>;
11969
+ /** Retrieves views based on the provided filter criteria. */
11970
+ views?: Maybe<QueryResults>;
11733
11971
  /** Lookup a workflow given its ID. */
11734
11972
  workflow?: Maybe<Workflow>;
11735
11973
  /** Returns whether any workflow exists based on the provided filter criteria. */
@@ -11804,6 +12042,10 @@ export type QueryCountCollectionsArgs = {
11804
12042
  correlationId?: InputMaybe<Scalars['String']['input']>;
11805
12043
  filter?: InputMaybe<CollectionFilter>;
11806
12044
  };
12045
+ export type QueryCountConnectorsArgs = {
12046
+ correlationId?: InputMaybe<Scalars['String']['input']>;
12047
+ filter?: InputMaybe<ConnectorFilter>;
12048
+ };
11807
12049
  export type QueryCountContentsArgs = {
11808
12050
  correlationId?: InputMaybe<Scalars['String']['input']>;
11809
12051
  filter?: InputMaybe<ContentFilter>;
@@ -11900,6 +12142,10 @@ export type QueryCountUsersArgs = {
11900
12142
  correlationId?: InputMaybe<Scalars['String']['input']>;
11901
12143
  filter?: InputMaybe<UserFilter>;
11902
12144
  };
12145
+ export type QueryCountViewsArgs = {
12146
+ correlationId?: InputMaybe<Scalars['String']['input']>;
12147
+ filter?: InputMaybe<ViewFilter>;
12148
+ };
11903
12149
  export type QueryCountWorkflowsArgs = {
11904
12150
  correlationId?: InputMaybe<Scalars['String']['input']>;
11905
12151
  filter?: InputMaybe<WorkflowFilter>;
@@ -11908,6 +12154,12 @@ export type QueryCreditsArgs = {
11908
12154
  duration: Scalars['TimeSpan']['input'];
11909
12155
  startDate: Scalars['DateTime']['input'];
11910
12156
  };
12157
+ export type QueryDiscordChannelsArgs = {
12158
+ properties: DiscordChannelsInput;
12159
+ };
12160
+ export type QueryDiscordGuildsArgs = {
12161
+ properties: DiscordGuildsInput;
12162
+ };
11911
12163
  export type QueryDropboxFoldersArgs = {
11912
12164
  folderPath?: InputMaybe<Scalars['String']['input']>;
11913
12165
  properties: DropboxFoldersInput;
@@ -12225,6 +12477,18 @@ export type QueryUsersArgs = {
12225
12477
  correlationId?: InputMaybe<Scalars['String']['input']>;
12226
12478
  filter?: InputMaybe<UserFilter>;
12227
12479
  };
12480
+ export type QueryViewArgs = {
12481
+ correlationId?: InputMaybe<Scalars['String']['input']>;
12482
+ id: Scalars['ID']['input'];
12483
+ };
12484
+ export type QueryViewExistsArgs = {
12485
+ correlationId?: InputMaybe<Scalars['String']['input']>;
12486
+ filter?: InputMaybe<ViewFilter>;
12487
+ };
12488
+ export type QueryViewsArgs = {
12489
+ correlationId?: InputMaybe<Scalars['String']['input']>;
12490
+ filter?: InputMaybe<ViewFilter>;
12491
+ };
12228
12492
  export type QueryWorkflowArgs = {
12229
12493
  correlationId?: InputMaybe<Scalars['String']['input']>;
12230
12494
  id: Scalars['ID']['input'];
@@ -12237,6 +12501,11 @@ export type QueryWorkflowsArgs = {
12237
12501
  correlationId?: InputMaybe<Scalars['String']['input']>;
12238
12502
  filter?: InputMaybe<WorkflowFilter>;
12239
12503
  };
12504
+ export type QueryResults = {
12505
+ __typename?: 'QueryResults';
12506
+ /** The list of view query results. */
12507
+ results?: Maybe<Array<View>>;
12508
+ };
12240
12509
  /** Represents RSS feed properties. */
12241
12510
  export type RssFeedProperties = {
12242
12511
  __typename?: 'RSSFeedProperties';
@@ -12843,6 +13112,7 @@ export type ShapeMetadataInput = {
12843
13112
  };
12844
13113
  export declare enum SharePointAuthenticationTypes {
12845
13114
  Application = "APPLICATION",
13115
+ Connector = "CONNECTOR",
12846
13116
  User = "USER"
12847
13117
  }
12848
13118
  /** Represents SharePoint properties. */
@@ -12851,11 +13121,13 @@ export type SharePointFeedProperties = {
12851
13121
  /** SharePoint account name. */
12852
13122
  accountName: Scalars['String']['output'];
12853
13123
  /** SharePoint authentication type. */
12854
- authenticationType: SharePointAuthenticationTypes;
13124
+ authenticationType?: Maybe<SharePointAuthenticationTypes>;
12855
13125
  /** Microsoft Entra ID client identifier, requires User authentication type. */
12856
13126
  clientId?: Maybe<Scalars['String']['output']>;
12857
13127
  /** Microsoft Entra ID client secret, requires User authentication type. */
12858
13128
  clientSecret?: Maybe<Scalars['String']['output']>;
13129
+ /** Connector identifier. */
13130
+ connectorId?: Maybe<Scalars['String']['output']>;
12859
13131
  /** SharePoint folder identifier. */
12860
13132
  folderId?: Maybe<Scalars['ID']['output']>;
12861
13133
  /** SharePoint library identifier. */
@@ -12875,6 +13147,8 @@ export type SharePointFeedPropertiesInput = {
12875
13147
  clientId?: InputMaybe<Scalars['String']['input']>;
12876
13148
  /** Microsoft Entra ID client secret, requires user authentication type. */
12877
13149
  clientSecret?: InputMaybe<Scalars['String']['input']>;
13150
+ /** Connector identifier, for Connector authentication type. */
13151
+ connectorId?: InputMaybe<Scalars['String']['input']>;
12878
13152
  /** SharePoint folder identifier. */
12879
13153
  folderId?: InputMaybe<Scalars['ID']['input']>;
12880
13154
  /** SharePoint library identifier. */
@@ -12890,6 +13164,8 @@ export type SharePointFeedPropertiesUpdateInput = {
12890
13164
  accountName?: InputMaybe<Scalars['String']['input']>;
12891
13165
  /** SharePoint authentication type. */
12892
13166
  authenticationType?: InputMaybe<SharePointAuthenticationTypes>;
13167
+ /** Connector identifier, for Connector authentication type. */
13168
+ connectorId?: InputMaybe<Scalars['String']['input']>;
12893
13169
  /** SharePoint folder identifier. */
12894
13170
  folderId?: InputMaybe<Scalars['ID']['input']>;
12895
13171
  /** SharePoint library identifier. */
@@ -14110,6 +14386,84 @@ export type VideoMetadataInput = {
14110
14386
  /** The video width. */
14111
14387
  width?: InputMaybe<Scalars['Int']['input']>;
14112
14388
  };
14389
+ /** Represents a view. */
14390
+ export type View = {
14391
+ __typename?: 'View';
14392
+ /** Augmented filter for view. */
14393
+ augmentedFilter?: Maybe<ContentCriteria>;
14394
+ /** The creation date of the view. */
14395
+ creationDate: Scalars['DateTime']['output'];
14396
+ /** Filter for view. */
14397
+ filter?: Maybe<ContentCriteria>;
14398
+ /** The ID of the view. */
14399
+ id: Scalars['ID']['output'];
14400
+ /** The modified date of the view. */
14401
+ modifiedDate?: Maybe<Scalars['DateTime']['output']>;
14402
+ /** The name of the view. */
14403
+ name: Scalars['String']['output'];
14404
+ /** The owner of the view. */
14405
+ owner: Owner;
14406
+ /** The relevance score of the view. */
14407
+ relevance?: Maybe<Scalars['Float']['output']>;
14408
+ /** The state of the view (i.e. created, finished). */
14409
+ state: EntityState;
14410
+ /** Type of view. */
14411
+ type?: Maybe<ViewTypes>;
14412
+ };
14413
+ /** Represents a filter for views. */
14414
+ export type ViewFilter = {
14415
+ /** Filter by creation date recent timespan. For example, a timespan of one day will return view(s) created in the last 24 hours. */
14416
+ createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
14417
+ /** Filter view(s) by their creation date range. */
14418
+ creationDateRange?: InputMaybe<DateRangeFilter>;
14419
+ /** The sort direction for query results. */
14420
+ direction?: InputMaybe<OrderDirectionTypes>;
14421
+ /** Filter view(s) by their unique ID. */
14422
+ id?: InputMaybe<Scalars['ID']['input']>;
14423
+ /** Limit the number of view(s) to be returned. Defaults to 100. */
14424
+ limit?: InputMaybe<Scalars['Int']['input']>;
14425
+ /** Filter view(s) by their name. */
14426
+ name?: InputMaybe<Scalars['String']['input']>;
14427
+ /** Skip the specified number of view(s) from the beginning of the result set. Only supported on keyword search. */
14428
+ offset?: InputMaybe<Scalars['Int']['input']>;
14429
+ /** The sort order for query results. */
14430
+ orderBy?: InputMaybe<OrderByTypes>;
14431
+ /** Filter view(s) by searching for similar text. */
14432
+ search?: InputMaybe<Scalars['String']['input']>;
14433
+ /** Filter view(s) by their states. */
14434
+ states?: InputMaybe<Array<EntityState>>;
14435
+ /** Filter by view types. */
14436
+ types?: InputMaybe<Array<InputMaybe<ViewTypes>>>;
14437
+ };
14438
+ /** Represents a view. */
14439
+ export type ViewInput = {
14440
+ /** Augmented filter for view. */
14441
+ augmentedFilter?: InputMaybe<ContentCriteriaInput>;
14442
+ /** Filter for view. */
14443
+ filter?: InputMaybe<ContentCriteriaInput>;
14444
+ /** The name of the view. */
14445
+ name: Scalars['String']['input'];
14446
+ /** Type of view. */
14447
+ type?: InputMaybe<ViewTypes>;
14448
+ };
14449
+ /** View type */
14450
+ export declare enum ViewTypes {
14451
+ /** Content view */
14452
+ Content = "CONTENT"
14453
+ }
14454
+ /** Represents a view. */
14455
+ export type ViewUpdateInput = {
14456
+ /** Augmented filter for view. */
14457
+ augmentedFilter?: InputMaybe<ContentCriteriaInput>;
14458
+ /** Filter for view. */
14459
+ filter?: InputMaybe<ContentCriteriaInput>;
14460
+ /** The ID of the view to update. */
14461
+ id: Scalars['ID']['input'];
14462
+ /** The name of the view. */
14463
+ name?: InputMaybe<Scalars['String']['input']>;
14464
+ /** Type of view. */
14465
+ type?: InputMaybe<ViewTypes>;
14466
+ };
14113
14467
  /** Represents Voyage model properties. */
14114
14468
  export type VoyageModelProperties = {
14115
14469
  __typename?: 'VoyageModelProperties';
@@ -15181,54 +15535,229 @@ export type UpdateCollectionMutation = {
15181
15535
  type?: CollectionTypes | null;
15182
15536
  } | null;
15183
15537
  };
15184
- export type CountContentsQueryVariables = Exact<{
15185
- filter?: InputMaybe<ContentFilter>;
15538
+ export type CountConnectorsQueryVariables = Exact<{
15539
+ filter?: InputMaybe<ConnectorFilter>;
15186
15540
  correlationId?: InputMaybe<Scalars['String']['input']>;
15187
15541
  }>;
15188
- export type CountContentsQuery = {
15542
+ export type CountConnectorsQuery = {
15189
15543
  __typename?: 'Query';
15190
- countContents?: {
15544
+ countConnectors?: {
15191
15545
  __typename?: 'CountResult';
15192
15546
  count?: any | null;
15193
15547
  } | null;
15194
15548
  };
15195
- export type DeleteAllContentsMutationVariables = Exact<{
15196
- filter?: InputMaybe<ContentFilter>;
15197
- isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
15198
- correlationId?: InputMaybe<Scalars['String']['input']>;
15549
+ export type CreateConnectorMutationVariables = Exact<{
15550
+ connector: ConnectorInput;
15199
15551
  }>;
15200
- export type DeleteAllContentsMutation = {
15552
+ export type CreateConnectorMutation = {
15201
15553
  __typename?: 'Mutation';
15202
- deleteAllContents?: Array<{
15203
- __typename?: 'Content';
15554
+ createConnector?: {
15555
+ __typename?: 'Connector';
15204
15556
  id: string;
15557
+ name: string;
15205
15558
  state: EntityState;
15206
- } | null> | null;
15559
+ type?: ConnectorTypes | null;
15560
+ } | null;
15207
15561
  };
15208
- export type DeleteContentMutationVariables = Exact<{
15562
+ export type DeleteConnectorMutationVariables = Exact<{
15209
15563
  id: Scalars['ID']['input'];
15210
15564
  }>;
15211
- export type DeleteContentMutation = {
15565
+ export type DeleteConnectorMutation = {
15212
15566
  __typename?: 'Mutation';
15213
- deleteContent?: {
15214
- __typename?: 'Content';
15567
+ deleteConnector?: {
15568
+ __typename?: 'Connector';
15215
15569
  id: string;
15216
15570
  state: EntityState;
15217
15571
  } | null;
15218
15572
  };
15219
- export type DeleteContentsMutationVariables = Exact<{
15220
- ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
15221
- isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
15573
+ export type GetConnectorQueryVariables = Exact<{
15574
+ id: Scalars['ID']['input'];
15575
+ correlationId?: InputMaybe<Scalars['String']['input']>;
15222
15576
  }>;
15223
- export type DeleteContentsMutation = {
15224
- __typename?: 'Mutation';
15225
- deleteContents?: Array<{
15226
- __typename?: 'Content';
15577
+ export type GetConnectorQuery = {
15578
+ __typename?: 'Query';
15579
+ connector?: {
15580
+ __typename?: 'Connector';
15227
15581
  id: string;
15582
+ name: string;
15583
+ creationDate: any;
15584
+ relevance?: number | null;
15228
15585
  state: EntityState;
15229
- } | null> | null;
15586
+ type?: ConnectorTypes | null;
15587
+ owner: {
15588
+ __typename?: 'Owner';
15589
+ id: string;
15590
+ };
15591
+ authentication?: {
15592
+ __typename?: 'AuthenticationConnector';
15593
+ type: AuthenticationServiceTypes;
15594
+ microsoft?: {
15595
+ __typename?: 'MicrosoftAuthenticationProperties';
15596
+ tenantId: string;
15597
+ clientId: string;
15598
+ clientSecret: string;
15599
+ } | null;
15600
+ google?: {
15601
+ __typename?: 'GoogleAuthenticationProperties';
15602
+ clientId: string;
15603
+ clientSecret: string;
15604
+ } | null;
15605
+ arcade?: {
15606
+ __typename?: 'ArcadeAuthenticationProperties';
15607
+ authorizationId: string;
15608
+ } | null;
15609
+ } | null;
15610
+ integration?: {
15611
+ __typename?: 'IntegrationConnector';
15612
+ type: IntegrationServiceTypes;
15613
+ uri?: string | null;
15614
+ slack?: {
15615
+ __typename?: 'SlackIntegrationProperties';
15616
+ token: string;
15617
+ channel: string;
15618
+ } | null;
15619
+ email?: {
15620
+ __typename?: 'EmailIntegrationProperties';
15621
+ from: string;
15622
+ subject: string;
15623
+ to: Array<string>;
15624
+ } | null;
15625
+ twitter?: {
15626
+ __typename?: 'TwitterIntegrationProperties';
15627
+ consumerKey: string;
15628
+ consumerSecret: string;
15629
+ accessTokenKey: string;
15630
+ accessTokenSecret: string;
15631
+ } | null;
15632
+ } | null;
15633
+ } | null;
15230
15634
  };
15231
- export type DescribeEncodedImageMutationVariables = Exact<{
15635
+ export type QueryConnectorsQueryVariables = Exact<{
15636
+ filter?: InputMaybe<ConnectorFilter>;
15637
+ correlationId?: InputMaybe<Scalars['String']['input']>;
15638
+ }>;
15639
+ export type QueryConnectorsQuery = {
15640
+ __typename?: 'Query';
15641
+ connectors?: {
15642
+ __typename?: 'ConnectorResults';
15643
+ results?: Array<{
15644
+ __typename?: 'Connector';
15645
+ id: string;
15646
+ name: string;
15647
+ creationDate: any;
15648
+ relevance?: number | null;
15649
+ state: EntityState;
15650
+ type?: ConnectorTypes | null;
15651
+ owner: {
15652
+ __typename?: 'Owner';
15653
+ id: string;
15654
+ };
15655
+ authentication?: {
15656
+ __typename?: 'AuthenticationConnector';
15657
+ type: AuthenticationServiceTypes;
15658
+ microsoft?: {
15659
+ __typename?: 'MicrosoftAuthenticationProperties';
15660
+ tenantId: string;
15661
+ clientId: string;
15662
+ clientSecret: string;
15663
+ } | null;
15664
+ google?: {
15665
+ __typename?: 'GoogleAuthenticationProperties';
15666
+ clientId: string;
15667
+ clientSecret: string;
15668
+ } | null;
15669
+ arcade?: {
15670
+ __typename?: 'ArcadeAuthenticationProperties';
15671
+ authorizationId: string;
15672
+ } | null;
15673
+ } | null;
15674
+ integration?: {
15675
+ __typename?: 'IntegrationConnector';
15676
+ type: IntegrationServiceTypes;
15677
+ uri?: string | null;
15678
+ slack?: {
15679
+ __typename?: 'SlackIntegrationProperties';
15680
+ token: string;
15681
+ channel: string;
15682
+ } | null;
15683
+ email?: {
15684
+ __typename?: 'EmailIntegrationProperties';
15685
+ from: string;
15686
+ subject: string;
15687
+ to: Array<string>;
15688
+ } | null;
15689
+ twitter?: {
15690
+ __typename?: 'TwitterIntegrationProperties';
15691
+ consumerKey: string;
15692
+ consumerSecret: string;
15693
+ accessTokenKey: string;
15694
+ accessTokenSecret: string;
15695
+ } | null;
15696
+ } | null;
15697
+ }> | null;
15698
+ } | null;
15699
+ };
15700
+ export type UpdateConnectorMutationVariables = Exact<{
15701
+ connector: ConnectorUpdateInput;
15702
+ }>;
15703
+ export type UpdateConnectorMutation = {
15704
+ __typename?: 'Mutation';
15705
+ updateConnector?: {
15706
+ __typename?: 'Connector';
15707
+ id: string;
15708
+ name: string;
15709
+ state: EntityState;
15710
+ type?: ConnectorTypes | null;
15711
+ } | null;
15712
+ };
15713
+ export type CountContentsQueryVariables = Exact<{
15714
+ filter?: InputMaybe<ContentFilter>;
15715
+ correlationId?: InputMaybe<Scalars['String']['input']>;
15716
+ }>;
15717
+ export type CountContentsQuery = {
15718
+ __typename?: 'Query';
15719
+ countContents?: {
15720
+ __typename?: 'CountResult';
15721
+ count?: any | null;
15722
+ } | null;
15723
+ };
15724
+ export type DeleteAllContentsMutationVariables = Exact<{
15725
+ filter?: InputMaybe<ContentFilter>;
15726
+ isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
15727
+ correlationId?: InputMaybe<Scalars['String']['input']>;
15728
+ }>;
15729
+ export type DeleteAllContentsMutation = {
15730
+ __typename?: 'Mutation';
15731
+ deleteAllContents?: Array<{
15732
+ __typename?: 'Content';
15733
+ id: string;
15734
+ state: EntityState;
15735
+ } | null> | null;
15736
+ };
15737
+ export type DeleteContentMutationVariables = Exact<{
15738
+ id: Scalars['ID']['input'];
15739
+ }>;
15740
+ export type DeleteContentMutation = {
15741
+ __typename?: 'Mutation';
15742
+ deleteContent?: {
15743
+ __typename?: 'Content';
15744
+ id: string;
15745
+ state: EntityState;
15746
+ } | null;
15747
+ };
15748
+ export type DeleteContentsMutationVariables = Exact<{
15749
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
15750
+ isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
15751
+ }>;
15752
+ export type DeleteContentsMutation = {
15753
+ __typename?: 'Mutation';
15754
+ deleteContents?: Array<{
15755
+ __typename?: 'Content';
15756
+ id: string;
15757
+ state: EntityState;
15758
+ } | null> | null;
15759
+ };
15760
+ export type DescribeEncodedImageMutationVariables = Exact<{
15232
15761
  prompt: Scalars['String']['input'];
15233
15762
  mimeType: Scalars['String']['input'];
15234
15763
  data: Scalars['String']['input'];
@@ -20614,6 +21143,34 @@ export type RetrieveSourcesMutation = {
20614
21143
  } | null> | null;
20615
21144
  } | null;
20616
21145
  };
21146
+ export type RetrieveViewMutationVariables = Exact<{
21147
+ prompt: Scalars['String']['input'];
21148
+ id: Scalars['ID']['input'];
21149
+ retrievalStrategy?: InputMaybe<RetrievalStrategyInput>;
21150
+ rerankingStrategy?: InputMaybe<RerankingStrategyInput>;
21151
+ correlationId?: InputMaybe<Scalars['String']['input']>;
21152
+ }>;
21153
+ export type RetrieveViewMutation = {
21154
+ __typename?: 'Mutation';
21155
+ retrieveView?: {
21156
+ __typename?: 'ContentSourceResults';
21157
+ results?: Array<{
21158
+ __typename?: 'ContentSource';
21159
+ type?: ContentSourceTypes | null;
21160
+ text: string;
21161
+ metadata?: string | null;
21162
+ relevance: number;
21163
+ startTime?: any | null;
21164
+ endTime?: any | null;
21165
+ pageNumber?: number | null;
21166
+ frameNumber?: number | null;
21167
+ content: {
21168
+ __typename?: 'EntityReference';
21169
+ id: string;
21170
+ };
21171
+ } | null> | null;
21172
+ } | null;
21173
+ };
20617
21174
  export type ReviseContentMutationVariables = Exact<{
20618
21175
  prompt: Scalars['String']['input'];
20619
21176
  content: EntityReferenceInput;
@@ -21552,7 +22109,7 @@ export type GetFeedQuery = {
21552
22109
  } | null;
21553
22110
  sharePoint?: {
21554
22111
  __typename?: 'SharePointFeedProperties';
21555
- authenticationType: SharePointAuthenticationTypes;
22112
+ authenticationType?: SharePointAuthenticationTypes | null;
21556
22113
  accountName: string;
21557
22114
  libraryId: string;
21558
22115
  folderId?: string | null;
@@ -21560,14 +22117,17 @@ export type GetFeedQuery = {
21560
22117
  clientId?: string | null;
21561
22118
  clientSecret?: string | null;
21562
22119
  refreshToken?: string | null;
22120
+ connectorId?: string | null;
21563
22121
  } | null;
21564
22122
  oneDrive?: {
21565
22123
  __typename?: 'OneDriveFeedProperties';
22124
+ authenticationType?: OneDriveAuthenticationTypes | null;
21566
22125
  folderId?: string | null;
21567
22126
  files?: Array<string | null> | null;
21568
22127
  clientId: string;
21569
22128
  clientSecret: string;
21570
22129
  refreshToken: string;
22130
+ connectorId?: string | null;
21571
22131
  } | null;
21572
22132
  googleDrive?: {
21573
22133
  __typename?: 'GoogleDriveFeedProperties';
@@ -21578,6 +22138,7 @@ export type GetFeedQuery = {
21578
22138
  clientId?: string | null;
21579
22139
  clientSecret?: string | null;
21580
22140
  serviceAccountJson?: string | null;
22141
+ connectorId?: string | null;
21581
22142
  } | null;
21582
22143
  dropbox?: {
21583
22144
  __typename?: 'DropboxFeedProperties';
@@ -21597,11 +22158,13 @@ export type GetFeedQuery = {
21597
22158
  } | null;
21598
22159
  github?: {
21599
22160
  __typename?: 'GitHubFeedProperties';
22161
+ authenticationType?: OneDriveAuthenticationTypes | null;
21600
22162
  uri?: any | null;
21601
22163
  repositoryOwner: string;
21602
22164
  repositoryName: string;
21603
22165
  refreshToken?: string | null;
21604
22166
  personalAccessToken?: string | null;
22167
+ connectorId?: string | null;
21605
22168
  } | null;
21606
22169
  } | null;
21607
22170
  email?: {
@@ -21616,9 +22179,11 @@ export type GetFeedQuery = {
21616
22179
  excludeSentItems?: boolean | null;
21617
22180
  includeDeletedItems?: boolean | null;
21618
22181
  inboxOnly?: boolean | null;
22182
+ authenticationType?: GoogleEmailAuthenticationTypes | null;
21619
22183
  refreshToken?: string | null;
21620
22184
  clientId: string;
21621
22185
  clientSecret: string;
22186
+ connectorId?: string | null;
21622
22187
  } | null;
21623
22188
  microsoft?: {
21624
22189
  __typename?: 'MicrosoftEmailFeedProperties';
@@ -21627,9 +22192,11 @@ export type GetFeedQuery = {
21627
22192
  excludeSentItems?: boolean | null;
21628
22193
  includeDeletedItems?: boolean | null;
21629
22194
  inboxOnly?: boolean | null;
22195
+ authenticationType?: MicrosoftEmailAuthenticationTypes | null;
21630
22196
  refreshToken: string;
21631
22197
  clientId: string;
21632
22198
  clientSecret: string;
22199
+ connectorId?: string | null;
21633
22200
  } | null;
21634
22201
  } | null;
21635
22202
  issue?: {
@@ -21685,18 +22252,22 @@ export type GetFeedQuery = {
21685
22252
  calendarId?: string | null;
21686
22253
  beforeDate?: any | null;
21687
22254
  afterDate?: any | null;
22255
+ authenticationType?: GoogleCalendarAuthenticationTypes | null;
21688
22256
  refreshToken: string;
21689
22257
  clientId: string;
21690
22258
  clientSecret: string;
22259
+ connectorId?: string | null;
21691
22260
  } | null;
21692
22261
  microsoft?: {
21693
22262
  __typename?: 'MicrosoftCalendarFeedProperties';
21694
22263
  calendarId?: string | null;
21695
22264
  beforeDate?: any | null;
21696
22265
  afterDate?: any | null;
22266
+ authenticationType?: MicrosoftCalendarAuthenticationTypes | null;
21697
22267
  refreshToken: string;
21698
22268
  clientId: string;
21699
22269
  clientSecret: string;
22270
+ connectorId?: string | null;
21700
22271
  } | null;
21701
22272
  } | null;
21702
22273
  rss?: {
@@ -21832,6 +22403,34 @@ export type QueryBoxFoldersQuery = {
21832
22403
  } | null> | null;
21833
22404
  } | null;
21834
22405
  };
22406
+ export type QueryDiscordChannelsQueryVariables = Exact<{
22407
+ properties: DiscordChannelsInput;
22408
+ }>;
22409
+ export type QueryDiscordChannelsQuery = {
22410
+ __typename?: 'Query';
22411
+ discordChannels?: {
22412
+ __typename?: 'DiscordChannelResults';
22413
+ results?: Array<{
22414
+ __typename?: 'DiscordChannelResult';
22415
+ channelName?: string | null;
22416
+ channelId?: string | null;
22417
+ } | null> | null;
22418
+ } | null;
22419
+ };
22420
+ export type QueryDiscordGuildsQueryVariables = Exact<{
22421
+ properties: DiscordGuildsInput;
22422
+ }>;
22423
+ export type QueryDiscordGuildsQuery = {
22424
+ __typename?: 'Query';
22425
+ discordGuilds?: {
22426
+ __typename?: 'DiscordGuildResults';
22427
+ results?: Array<{
22428
+ __typename?: 'DiscordGuildResult';
22429
+ guildName?: string | null;
22430
+ guildId?: string | null;
22431
+ } | null> | null;
22432
+ } | null;
22433
+ };
21835
22434
  export type QueryDropboxFoldersQueryVariables = Exact<{
21836
22435
  properties: DropboxFoldersInput;
21837
22436
  folderPath?: InputMaybe<Scalars['String']['input']>;
@@ -21908,7 +22507,7 @@ export type QueryFeedsQuery = {
21908
22507
  } | null;
21909
22508
  sharePoint?: {
21910
22509
  __typename?: 'SharePointFeedProperties';
21911
- authenticationType: SharePointAuthenticationTypes;
22510
+ authenticationType?: SharePointAuthenticationTypes | null;
21912
22511
  accountName: string;
21913
22512
  libraryId: string;
21914
22513
  folderId?: string | null;
@@ -21916,14 +22515,17 @@ export type QueryFeedsQuery = {
21916
22515
  clientId?: string | null;
21917
22516
  clientSecret?: string | null;
21918
22517
  refreshToken?: string | null;
22518
+ connectorId?: string | null;
21919
22519
  } | null;
21920
22520
  oneDrive?: {
21921
22521
  __typename?: 'OneDriveFeedProperties';
22522
+ authenticationType?: OneDriveAuthenticationTypes | null;
21922
22523
  folderId?: string | null;
21923
22524
  files?: Array<string | null> | null;
21924
22525
  clientId: string;
21925
22526
  clientSecret: string;
21926
22527
  refreshToken: string;
22528
+ connectorId?: string | null;
21927
22529
  } | null;
21928
22530
  googleDrive?: {
21929
22531
  __typename?: 'GoogleDriveFeedProperties';
@@ -21934,6 +22536,7 @@ export type QueryFeedsQuery = {
21934
22536
  clientId?: string | null;
21935
22537
  clientSecret?: string | null;
21936
22538
  serviceAccountJson?: string | null;
22539
+ connectorId?: string | null;
21937
22540
  } | null;
21938
22541
  dropbox?: {
21939
22542
  __typename?: 'DropboxFeedProperties';
@@ -21953,11 +22556,13 @@ export type QueryFeedsQuery = {
21953
22556
  } | null;
21954
22557
  github?: {
21955
22558
  __typename?: 'GitHubFeedProperties';
22559
+ authenticationType?: OneDriveAuthenticationTypes | null;
21956
22560
  uri?: any | null;
21957
22561
  repositoryOwner: string;
21958
22562
  repositoryName: string;
21959
22563
  refreshToken?: string | null;
21960
22564
  personalAccessToken?: string | null;
22565
+ connectorId?: string | null;
21961
22566
  } | null;
21962
22567
  } | null;
21963
22568
  email?: {
@@ -21972,9 +22577,11 @@ export type QueryFeedsQuery = {
21972
22577
  excludeSentItems?: boolean | null;
21973
22578
  includeDeletedItems?: boolean | null;
21974
22579
  inboxOnly?: boolean | null;
22580
+ authenticationType?: GoogleEmailAuthenticationTypes | null;
21975
22581
  refreshToken?: string | null;
21976
22582
  clientId: string;
21977
22583
  clientSecret: string;
22584
+ connectorId?: string | null;
21978
22585
  } | null;
21979
22586
  microsoft?: {
21980
22587
  __typename?: 'MicrosoftEmailFeedProperties';
@@ -21983,9 +22590,11 @@ export type QueryFeedsQuery = {
21983
22590
  excludeSentItems?: boolean | null;
21984
22591
  includeDeletedItems?: boolean | null;
21985
22592
  inboxOnly?: boolean | null;
22593
+ authenticationType?: MicrosoftEmailAuthenticationTypes | null;
21986
22594
  refreshToken: string;
21987
22595
  clientId: string;
21988
22596
  clientSecret: string;
22597
+ connectorId?: string | null;
21989
22598
  } | null;
21990
22599
  } | null;
21991
22600
  issue?: {
@@ -22041,18 +22650,22 @@ export type QueryFeedsQuery = {
22041
22650
  calendarId?: string | null;
22042
22651
  beforeDate?: any | null;
22043
22652
  afterDate?: any | null;
22653
+ authenticationType?: GoogleCalendarAuthenticationTypes | null;
22044
22654
  refreshToken: string;
22045
22655
  clientId: string;
22046
22656
  clientSecret: string;
22657
+ connectorId?: string | null;
22047
22658
  } | null;
22048
22659
  microsoft?: {
22049
22660
  __typename?: 'MicrosoftCalendarFeedProperties';
22050
22661
  calendarId?: string | null;
22051
22662
  beforeDate?: any | null;
22052
22663
  afterDate?: any | null;
22664
+ authenticationType?: MicrosoftCalendarAuthenticationTypes | null;
22053
22665
  refreshToken: string;
22054
22666
  clientId: string;
22055
22667
  clientSecret: string;
22668
+ connectorId?: string | null;
22056
22669
  } | null;
22057
22670
  } | null;
22058
22671
  rss?: {
@@ -25567,6 +26180,10 @@ export type GetUserQuery = {
25567
26180
  clientId: string;
25568
26181
  clientSecret: string;
25569
26182
  } | null;
26183
+ arcade?: {
26184
+ __typename?: 'ArcadeAuthenticationProperties';
26185
+ authorizationId: string;
26186
+ } | null;
25570
26187
  } | null;
25571
26188
  integration?: {
25572
26189
  __typename?: 'IntegrationConnector';
@@ -25633,6 +26250,10 @@ export type GetUserByIdentifierQuery = {
25633
26250
  clientId: string;
25634
26251
  clientSecret: string;
25635
26252
  } | null;
26253
+ arcade?: {
26254
+ __typename?: 'ArcadeAuthenticationProperties';
26255
+ authorizationId: string;
26256
+ } | null;
25636
26257
  } | null;
25637
26258
  integration?: {
25638
26259
  __typename?: 'IntegrationConnector';
@@ -25702,6 +26323,10 @@ export type QueryUsersQuery = {
25702
26323
  clientId: string;
25703
26324
  clientSecret: string;
25704
26325
  } | null;
26326
+ arcade?: {
26327
+ __typename?: 'ArcadeAuthenticationProperties';
26328
+ authorizationId: string;
26329
+ } | null;
25705
26330
  } | null;
25706
26331
  integration?: {
25707
26332
  __typename?: 'IntegrationConnector';
@@ -25745,6 +26370,1226 @@ export type UpdateUserMutation = {
25745
26370
  identifier: string;
25746
26371
  } | null;
25747
26372
  };
26373
+ export type CountViewsQueryVariables = Exact<{
26374
+ filter?: InputMaybe<ViewFilter>;
26375
+ correlationId?: InputMaybe<Scalars['String']['input']>;
26376
+ }>;
26377
+ export type CountViewsQuery = {
26378
+ __typename?: 'Query';
26379
+ countViews?: {
26380
+ __typename?: 'CountResult';
26381
+ count?: any | null;
26382
+ } | null;
26383
+ };
26384
+ export type CreateViewMutationVariables = Exact<{
26385
+ view: ViewInput;
26386
+ }>;
26387
+ export type CreateViewMutation = {
26388
+ __typename?: 'Mutation';
26389
+ createView?: {
26390
+ __typename?: 'View';
26391
+ id: string;
26392
+ name: string;
26393
+ state: EntityState;
26394
+ type?: ViewTypes | null;
26395
+ filter?: {
26396
+ __typename?: 'ContentCriteria';
26397
+ inLast?: any | null;
26398
+ createdInLast?: any | null;
26399
+ types?: Array<ContentTypes> | null;
26400
+ fileTypes?: Array<FileTypes | null> | null;
26401
+ formats?: Array<string | null> | null;
26402
+ fileExtensions?: Array<string> | null;
26403
+ dateRange?: {
26404
+ __typename?: 'DateRange';
26405
+ from?: any | null;
26406
+ to?: any | null;
26407
+ } | null;
26408
+ creationDateRange?: {
26409
+ __typename?: 'DateRange';
26410
+ from?: any | null;
26411
+ to?: any | null;
26412
+ } | null;
26413
+ similarContents?: Array<{
26414
+ __typename?: 'EntityReference';
26415
+ id: string;
26416
+ }> | null;
26417
+ contents?: Array<{
26418
+ __typename?: 'EntityReference';
26419
+ id: string;
26420
+ }> | null;
26421
+ feeds?: Array<{
26422
+ __typename?: 'EntityReference';
26423
+ id: string;
26424
+ }> | null;
26425
+ workflows?: Array<{
26426
+ __typename?: 'EntityReference';
26427
+ id: string;
26428
+ }> | null;
26429
+ collections?: Array<{
26430
+ __typename?: 'EntityReference';
26431
+ id: string;
26432
+ }> | null;
26433
+ users?: Array<{
26434
+ __typename?: 'EntityReference';
26435
+ id: string;
26436
+ }> | null;
26437
+ observations?: Array<{
26438
+ __typename?: 'ObservationCriteria';
26439
+ type: ObservableTypes;
26440
+ states?: Array<EntityState | null> | null;
26441
+ observable: {
26442
+ __typename?: 'EntityReference';
26443
+ id: string;
26444
+ };
26445
+ }> | null;
26446
+ or?: Array<{
26447
+ __typename?: 'ContentCriteriaLevel';
26448
+ feeds?: Array<{
26449
+ __typename?: 'EntityReference';
26450
+ id: string;
26451
+ }> | null;
26452
+ workflows?: Array<{
26453
+ __typename?: 'EntityReference';
26454
+ id: string;
26455
+ }> | null;
26456
+ collections?: Array<{
26457
+ __typename?: 'EntityReference';
26458
+ id: string;
26459
+ }> | null;
26460
+ users?: Array<{
26461
+ __typename?: 'EntityReference';
26462
+ id: string;
26463
+ }> | null;
26464
+ observations?: Array<{
26465
+ __typename?: 'ObservationCriteria';
26466
+ type: ObservableTypes;
26467
+ states?: Array<EntityState | null> | null;
26468
+ observable: {
26469
+ __typename?: 'EntityReference';
26470
+ id: string;
26471
+ };
26472
+ }> | null;
26473
+ }> | null;
26474
+ and?: Array<{
26475
+ __typename?: 'ContentCriteriaLevel';
26476
+ feeds?: Array<{
26477
+ __typename?: 'EntityReference';
26478
+ id: string;
26479
+ }> | null;
26480
+ workflows?: Array<{
26481
+ __typename?: 'EntityReference';
26482
+ id: string;
26483
+ }> | null;
26484
+ collections?: Array<{
26485
+ __typename?: 'EntityReference';
26486
+ id: string;
26487
+ }> | null;
26488
+ users?: Array<{
26489
+ __typename?: 'EntityReference';
26490
+ id: string;
26491
+ }> | null;
26492
+ observations?: Array<{
26493
+ __typename?: 'ObservationCriteria';
26494
+ type: ObservableTypes;
26495
+ states?: Array<EntityState | null> | null;
26496
+ observable: {
26497
+ __typename?: 'EntityReference';
26498
+ id: string;
26499
+ };
26500
+ }> | null;
26501
+ }> | null;
26502
+ } | null;
26503
+ augmentedFilter?: {
26504
+ __typename?: 'ContentCriteria';
26505
+ inLast?: any | null;
26506
+ createdInLast?: any | null;
26507
+ types?: Array<ContentTypes> | null;
26508
+ fileTypes?: Array<FileTypes | null> | null;
26509
+ formats?: Array<string | null> | null;
26510
+ fileExtensions?: Array<string> | null;
26511
+ dateRange?: {
26512
+ __typename?: 'DateRange';
26513
+ from?: any | null;
26514
+ to?: any | null;
26515
+ } | null;
26516
+ creationDateRange?: {
26517
+ __typename?: 'DateRange';
26518
+ from?: any | null;
26519
+ to?: any | null;
26520
+ } | null;
26521
+ similarContents?: Array<{
26522
+ __typename?: 'EntityReference';
26523
+ id: string;
26524
+ }> | null;
26525
+ contents?: Array<{
26526
+ __typename?: 'EntityReference';
26527
+ id: string;
26528
+ }> | null;
26529
+ feeds?: Array<{
26530
+ __typename?: 'EntityReference';
26531
+ id: string;
26532
+ }> | null;
26533
+ workflows?: Array<{
26534
+ __typename?: 'EntityReference';
26535
+ id: string;
26536
+ }> | null;
26537
+ collections?: Array<{
26538
+ __typename?: 'EntityReference';
26539
+ id: string;
26540
+ }> | null;
26541
+ users?: Array<{
26542
+ __typename?: 'EntityReference';
26543
+ id: string;
26544
+ }> | null;
26545
+ observations?: Array<{
26546
+ __typename?: 'ObservationCriteria';
26547
+ type: ObservableTypes;
26548
+ states?: Array<EntityState | null> | null;
26549
+ observable: {
26550
+ __typename?: 'EntityReference';
26551
+ id: string;
26552
+ };
26553
+ }> | null;
26554
+ or?: Array<{
26555
+ __typename?: 'ContentCriteriaLevel';
26556
+ feeds?: Array<{
26557
+ __typename?: 'EntityReference';
26558
+ id: string;
26559
+ }> | null;
26560
+ workflows?: Array<{
26561
+ __typename?: 'EntityReference';
26562
+ id: string;
26563
+ }> | null;
26564
+ collections?: Array<{
26565
+ __typename?: 'EntityReference';
26566
+ id: string;
26567
+ }> | null;
26568
+ users?: Array<{
26569
+ __typename?: 'EntityReference';
26570
+ id: string;
26571
+ }> | null;
26572
+ observations?: Array<{
26573
+ __typename?: 'ObservationCriteria';
26574
+ type: ObservableTypes;
26575
+ states?: Array<EntityState | null> | null;
26576
+ observable: {
26577
+ __typename?: 'EntityReference';
26578
+ id: string;
26579
+ };
26580
+ }> | null;
26581
+ }> | null;
26582
+ and?: Array<{
26583
+ __typename?: 'ContentCriteriaLevel';
26584
+ feeds?: Array<{
26585
+ __typename?: 'EntityReference';
26586
+ id: string;
26587
+ }> | null;
26588
+ workflows?: Array<{
26589
+ __typename?: 'EntityReference';
26590
+ id: string;
26591
+ }> | null;
26592
+ collections?: Array<{
26593
+ __typename?: 'EntityReference';
26594
+ id: string;
26595
+ }> | null;
26596
+ users?: Array<{
26597
+ __typename?: 'EntityReference';
26598
+ id: string;
26599
+ }> | null;
26600
+ observations?: Array<{
26601
+ __typename?: 'ObservationCriteria';
26602
+ type: ObservableTypes;
26603
+ states?: Array<EntityState | null> | null;
26604
+ observable: {
26605
+ __typename?: 'EntityReference';
26606
+ id: string;
26607
+ };
26608
+ }> | null;
26609
+ }> | null;
26610
+ } | null;
26611
+ } | null;
26612
+ };
26613
+ export type DeleteAllViewsMutationVariables = Exact<{
26614
+ filter?: InputMaybe<ViewFilter>;
26615
+ isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
26616
+ correlationId?: InputMaybe<Scalars['String']['input']>;
26617
+ }>;
26618
+ export type DeleteAllViewsMutation = {
26619
+ __typename?: 'Mutation';
26620
+ deleteAllViews?: Array<{
26621
+ __typename?: 'View';
26622
+ id: string;
26623
+ state: EntityState;
26624
+ } | null> | null;
26625
+ };
26626
+ export type DeleteViewMutationVariables = Exact<{
26627
+ id: Scalars['ID']['input'];
26628
+ }>;
26629
+ export type DeleteViewMutation = {
26630
+ __typename?: 'Mutation';
26631
+ deleteView?: {
26632
+ __typename?: 'View';
26633
+ id: string;
26634
+ state: EntityState;
26635
+ } | null;
26636
+ };
26637
+ export type DeleteViewsMutationVariables = Exact<{
26638
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
26639
+ isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
26640
+ }>;
26641
+ export type DeleteViewsMutation = {
26642
+ __typename?: 'Mutation';
26643
+ deleteViews?: Array<{
26644
+ __typename?: 'View';
26645
+ id: string;
26646
+ state: EntityState;
26647
+ } | null> | null;
26648
+ };
26649
+ export type GetViewQueryVariables = Exact<{
26650
+ id: Scalars['ID']['input'];
26651
+ correlationId?: InputMaybe<Scalars['String']['input']>;
26652
+ }>;
26653
+ export type GetViewQuery = {
26654
+ __typename?: 'Query';
26655
+ view?: {
26656
+ __typename?: 'View';
26657
+ id: string;
26658
+ name: string;
26659
+ creationDate: any;
26660
+ relevance?: number | null;
26661
+ state: EntityState;
26662
+ type?: ViewTypes | null;
26663
+ owner: {
26664
+ __typename?: 'Owner';
26665
+ id: string;
26666
+ };
26667
+ filter?: {
26668
+ __typename?: 'ContentCriteria';
26669
+ inLast?: any | null;
26670
+ createdInLast?: any | null;
26671
+ types?: Array<ContentTypes> | null;
26672
+ fileTypes?: Array<FileTypes | null> | null;
26673
+ formats?: Array<string | null> | null;
26674
+ fileExtensions?: Array<string> | null;
26675
+ dateRange?: {
26676
+ __typename?: 'DateRange';
26677
+ from?: any | null;
26678
+ to?: any | null;
26679
+ } | null;
26680
+ creationDateRange?: {
26681
+ __typename?: 'DateRange';
26682
+ from?: any | null;
26683
+ to?: any | null;
26684
+ } | null;
26685
+ similarContents?: Array<{
26686
+ __typename?: 'EntityReference';
26687
+ id: string;
26688
+ }> | null;
26689
+ contents?: Array<{
26690
+ __typename?: 'EntityReference';
26691
+ id: string;
26692
+ }> | null;
26693
+ feeds?: Array<{
26694
+ __typename?: 'EntityReference';
26695
+ id: string;
26696
+ }> | null;
26697
+ workflows?: Array<{
26698
+ __typename?: 'EntityReference';
26699
+ id: string;
26700
+ }> | null;
26701
+ collections?: Array<{
26702
+ __typename?: 'EntityReference';
26703
+ id: string;
26704
+ }> | null;
26705
+ users?: Array<{
26706
+ __typename?: 'EntityReference';
26707
+ id: string;
26708
+ }> | null;
26709
+ observations?: Array<{
26710
+ __typename?: 'ObservationCriteria';
26711
+ type: ObservableTypes;
26712
+ states?: Array<EntityState | null> | null;
26713
+ observable: {
26714
+ __typename?: 'EntityReference';
26715
+ id: string;
26716
+ };
26717
+ }> | null;
26718
+ or?: Array<{
26719
+ __typename?: 'ContentCriteriaLevel';
26720
+ feeds?: Array<{
26721
+ __typename?: 'EntityReference';
26722
+ id: string;
26723
+ }> | null;
26724
+ workflows?: Array<{
26725
+ __typename?: 'EntityReference';
26726
+ id: string;
26727
+ }> | null;
26728
+ collections?: Array<{
26729
+ __typename?: 'EntityReference';
26730
+ id: string;
26731
+ }> | null;
26732
+ users?: Array<{
26733
+ __typename?: 'EntityReference';
26734
+ id: string;
26735
+ }> | null;
26736
+ observations?: Array<{
26737
+ __typename?: 'ObservationCriteria';
26738
+ type: ObservableTypes;
26739
+ states?: Array<EntityState | null> | null;
26740
+ observable: {
26741
+ __typename?: 'EntityReference';
26742
+ id: string;
26743
+ };
26744
+ }> | null;
26745
+ }> | null;
26746
+ and?: Array<{
26747
+ __typename?: 'ContentCriteriaLevel';
26748
+ feeds?: Array<{
26749
+ __typename?: 'EntityReference';
26750
+ id: string;
26751
+ }> | null;
26752
+ workflows?: Array<{
26753
+ __typename?: 'EntityReference';
26754
+ id: string;
26755
+ }> | null;
26756
+ collections?: Array<{
26757
+ __typename?: 'EntityReference';
26758
+ id: string;
26759
+ }> | null;
26760
+ users?: Array<{
26761
+ __typename?: 'EntityReference';
26762
+ id: string;
26763
+ }> | null;
26764
+ observations?: Array<{
26765
+ __typename?: 'ObservationCriteria';
26766
+ type: ObservableTypes;
26767
+ states?: Array<EntityState | null> | null;
26768
+ observable: {
26769
+ __typename?: 'EntityReference';
26770
+ id: string;
26771
+ };
26772
+ }> | null;
26773
+ }> | null;
26774
+ } | null;
26775
+ augmentedFilter?: {
26776
+ __typename?: 'ContentCriteria';
26777
+ inLast?: any | null;
26778
+ createdInLast?: any | null;
26779
+ types?: Array<ContentTypes> | null;
26780
+ fileTypes?: Array<FileTypes | null> | null;
26781
+ formats?: Array<string | null> | null;
26782
+ fileExtensions?: Array<string> | null;
26783
+ dateRange?: {
26784
+ __typename?: 'DateRange';
26785
+ from?: any | null;
26786
+ to?: any | null;
26787
+ } | null;
26788
+ creationDateRange?: {
26789
+ __typename?: 'DateRange';
26790
+ from?: any | null;
26791
+ to?: any | null;
26792
+ } | null;
26793
+ similarContents?: Array<{
26794
+ __typename?: 'EntityReference';
26795
+ id: string;
26796
+ }> | null;
26797
+ contents?: Array<{
26798
+ __typename?: 'EntityReference';
26799
+ id: string;
26800
+ }> | null;
26801
+ feeds?: Array<{
26802
+ __typename?: 'EntityReference';
26803
+ id: string;
26804
+ }> | null;
26805
+ workflows?: Array<{
26806
+ __typename?: 'EntityReference';
26807
+ id: string;
26808
+ }> | null;
26809
+ collections?: Array<{
26810
+ __typename?: 'EntityReference';
26811
+ id: string;
26812
+ }> | null;
26813
+ users?: Array<{
26814
+ __typename?: 'EntityReference';
26815
+ id: string;
26816
+ }> | null;
26817
+ observations?: Array<{
26818
+ __typename?: 'ObservationCriteria';
26819
+ type: ObservableTypes;
26820
+ states?: Array<EntityState | null> | null;
26821
+ observable: {
26822
+ __typename?: 'EntityReference';
26823
+ id: string;
26824
+ };
26825
+ }> | null;
26826
+ or?: Array<{
26827
+ __typename?: 'ContentCriteriaLevel';
26828
+ feeds?: Array<{
26829
+ __typename?: 'EntityReference';
26830
+ id: string;
26831
+ }> | null;
26832
+ workflows?: Array<{
26833
+ __typename?: 'EntityReference';
26834
+ id: string;
26835
+ }> | null;
26836
+ collections?: Array<{
26837
+ __typename?: 'EntityReference';
26838
+ id: string;
26839
+ }> | null;
26840
+ users?: Array<{
26841
+ __typename?: 'EntityReference';
26842
+ id: string;
26843
+ }> | null;
26844
+ observations?: Array<{
26845
+ __typename?: 'ObservationCriteria';
26846
+ type: ObservableTypes;
26847
+ states?: Array<EntityState | null> | null;
26848
+ observable: {
26849
+ __typename?: 'EntityReference';
26850
+ id: string;
26851
+ };
26852
+ }> | null;
26853
+ }> | null;
26854
+ and?: Array<{
26855
+ __typename?: 'ContentCriteriaLevel';
26856
+ feeds?: Array<{
26857
+ __typename?: 'EntityReference';
26858
+ id: string;
26859
+ }> | null;
26860
+ workflows?: Array<{
26861
+ __typename?: 'EntityReference';
26862
+ id: string;
26863
+ }> | null;
26864
+ collections?: Array<{
26865
+ __typename?: 'EntityReference';
26866
+ id: string;
26867
+ }> | null;
26868
+ users?: Array<{
26869
+ __typename?: 'EntityReference';
26870
+ id: string;
26871
+ }> | null;
26872
+ observations?: Array<{
26873
+ __typename?: 'ObservationCriteria';
26874
+ type: ObservableTypes;
26875
+ states?: Array<EntityState | null> | null;
26876
+ observable: {
26877
+ __typename?: 'EntityReference';
26878
+ id: string;
26879
+ };
26880
+ }> | null;
26881
+ }> | null;
26882
+ } | null;
26883
+ } | null;
26884
+ };
26885
+ export type QueryViewsQueryVariables = Exact<{
26886
+ filter?: InputMaybe<ViewFilter>;
26887
+ correlationId?: InputMaybe<Scalars['String']['input']>;
26888
+ }>;
26889
+ export type QueryViewsQuery = {
26890
+ __typename?: 'Query';
26891
+ views?: {
26892
+ __typename?: 'QueryResults';
26893
+ results?: Array<{
26894
+ __typename?: 'View';
26895
+ id: string;
26896
+ name: string;
26897
+ creationDate: any;
26898
+ relevance?: number | null;
26899
+ state: EntityState;
26900
+ type?: ViewTypes | null;
26901
+ owner: {
26902
+ __typename?: 'Owner';
26903
+ id: string;
26904
+ };
26905
+ filter?: {
26906
+ __typename?: 'ContentCriteria';
26907
+ inLast?: any | null;
26908
+ createdInLast?: any | null;
26909
+ types?: Array<ContentTypes> | null;
26910
+ fileTypes?: Array<FileTypes | null> | null;
26911
+ formats?: Array<string | null> | null;
26912
+ fileExtensions?: Array<string> | null;
26913
+ dateRange?: {
26914
+ __typename?: 'DateRange';
26915
+ from?: any | null;
26916
+ to?: any | null;
26917
+ } | null;
26918
+ creationDateRange?: {
26919
+ __typename?: 'DateRange';
26920
+ from?: any | null;
26921
+ to?: any | null;
26922
+ } | null;
26923
+ similarContents?: Array<{
26924
+ __typename?: 'EntityReference';
26925
+ id: string;
26926
+ }> | null;
26927
+ contents?: Array<{
26928
+ __typename?: 'EntityReference';
26929
+ id: string;
26930
+ }> | null;
26931
+ feeds?: Array<{
26932
+ __typename?: 'EntityReference';
26933
+ id: string;
26934
+ }> | null;
26935
+ workflows?: Array<{
26936
+ __typename?: 'EntityReference';
26937
+ id: string;
26938
+ }> | null;
26939
+ collections?: Array<{
26940
+ __typename?: 'EntityReference';
26941
+ id: string;
26942
+ }> | null;
26943
+ users?: Array<{
26944
+ __typename?: 'EntityReference';
26945
+ id: string;
26946
+ }> | null;
26947
+ observations?: Array<{
26948
+ __typename?: 'ObservationCriteria';
26949
+ type: ObservableTypes;
26950
+ states?: Array<EntityState | null> | null;
26951
+ observable: {
26952
+ __typename?: 'EntityReference';
26953
+ id: string;
26954
+ };
26955
+ }> | null;
26956
+ or?: Array<{
26957
+ __typename?: 'ContentCriteriaLevel';
26958
+ feeds?: Array<{
26959
+ __typename?: 'EntityReference';
26960
+ id: string;
26961
+ }> | null;
26962
+ workflows?: Array<{
26963
+ __typename?: 'EntityReference';
26964
+ id: string;
26965
+ }> | null;
26966
+ collections?: Array<{
26967
+ __typename?: 'EntityReference';
26968
+ id: string;
26969
+ }> | null;
26970
+ users?: Array<{
26971
+ __typename?: 'EntityReference';
26972
+ id: string;
26973
+ }> | null;
26974
+ observations?: Array<{
26975
+ __typename?: 'ObservationCriteria';
26976
+ type: ObservableTypes;
26977
+ states?: Array<EntityState | null> | null;
26978
+ observable: {
26979
+ __typename?: 'EntityReference';
26980
+ id: string;
26981
+ };
26982
+ }> | null;
26983
+ }> | null;
26984
+ and?: Array<{
26985
+ __typename?: 'ContentCriteriaLevel';
26986
+ feeds?: Array<{
26987
+ __typename?: 'EntityReference';
26988
+ id: string;
26989
+ }> | null;
26990
+ workflows?: Array<{
26991
+ __typename?: 'EntityReference';
26992
+ id: string;
26993
+ }> | null;
26994
+ collections?: Array<{
26995
+ __typename?: 'EntityReference';
26996
+ id: string;
26997
+ }> | null;
26998
+ users?: Array<{
26999
+ __typename?: 'EntityReference';
27000
+ id: string;
27001
+ }> | null;
27002
+ observations?: Array<{
27003
+ __typename?: 'ObservationCriteria';
27004
+ type: ObservableTypes;
27005
+ states?: Array<EntityState | null> | null;
27006
+ observable: {
27007
+ __typename?: 'EntityReference';
27008
+ id: string;
27009
+ };
27010
+ }> | null;
27011
+ }> | null;
27012
+ } | null;
27013
+ augmentedFilter?: {
27014
+ __typename?: 'ContentCriteria';
27015
+ inLast?: any | null;
27016
+ createdInLast?: any | null;
27017
+ types?: Array<ContentTypes> | null;
27018
+ fileTypes?: Array<FileTypes | null> | null;
27019
+ formats?: Array<string | null> | null;
27020
+ fileExtensions?: Array<string> | null;
27021
+ dateRange?: {
27022
+ __typename?: 'DateRange';
27023
+ from?: any | null;
27024
+ to?: any | null;
27025
+ } | null;
27026
+ creationDateRange?: {
27027
+ __typename?: 'DateRange';
27028
+ from?: any | null;
27029
+ to?: any | null;
27030
+ } | null;
27031
+ similarContents?: Array<{
27032
+ __typename?: 'EntityReference';
27033
+ id: string;
27034
+ }> | null;
27035
+ contents?: Array<{
27036
+ __typename?: 'EntityReference';
27037
+ id: string;
27038
+ }> | null;
27039
+ feeds?: Array<{
27040
+ __typename?: 'EntityReference';
27041
+ id: string;
27042
+ }> | null;
27043
+ workflows?: Array<{
27044
+ __typename?: 'EntityReference';
27045
+ id: string;
27046
+ }> | null;
27047
+ collections?: Array<{
27048
+ __typename?: 'EntityReference';
27049
+ id: string;
27050
+ }> | null;
27051
+ users?: Array<{
27052
+ __typename?: 'EntityReference';
27053
+ id: string;
27054
+ }> | null;
27055
+ observations?: Array<{
27056
+ __typename?: 'ObservationCriteria';
27057
+ type: ObservableTypes;
27058
+ states?: Array<EntityState | null> | null;
27059
+ observable: {
27060
+ __typename?: 'EntityReference';
27061
+ id: string;
27062
+ };
27063
+ }> | null;
27064
+ or?: Array<{
27065
+ __typename?: 'ContentCriteriaLevel';
27066
+ feeds?: Array<{
27067
+ __typename?: 'EntityReference';
27068
+ id: string;
27069
+ }> | null;
27070
+ workflows?: Array<{
27071
+ __typename?: 'EntityReference';
27072
+ id: string;
27073
+ }> | null;
27074
+ collections?: Array<{
27075
+ __typename?: 'EntityReference';
27076
+ id: string;
27077
+ }> | null;
27078
+ users?: Array<{
27079
+ __typename?: 'EntityReference';
27080
+ id: string;
27081
+ }> | null;
27082
+ observations?: Array<{
27083
+ __typename?: 'ObservationCriteria';
27084
+ type: ObservableTypes;
27085
+ states?: Array<EntityState | null> | null;
27086
+ observable: {
27087
+ __typename?: 'EntityReference';
27088
+ id: string;
27089
+ };
27090
+ }> | null;
27091
+ }> | null;
27092
+ and?: Array<{
27093
+ __typename?: 'ContentCriteriaLevel';
27094
+ feeds?: Array<{
27095
+ __typename?: 'EntityReference';
27096
+ id: string;
27097
+ }> | null;
27098
+ workflows?: Array<{
27099
+ __typename?: 'EntityReference';
27100
+ id: string;
27101
+ }> | null;
27102
+ collections?: Array<{
27103
+ __typename?: 'EntityReference';
27104
+ id: string;
27105
+ }> | null;
27106
+ users?: Array<{
27107
+ __typename?: 'EntityReference';
27108
+ id: string;
27109
+ }> | null;
27110
+ observations?: Array<{
27111
+ __typename?: 'ObservationCriteria';
27112
+ type: ObservableTypes;
27113
+ states?: Array<EntityState | null> | null;
27114
+ observable: {
27115
+ __typename?: 'EntityReference';
27116
+ id: string;
27117
+ };
27118
+ }> | null;
27119
+ }> | null;
27120
+ } | null;
27121
+ }> | null;
27122
+ } | null;
27123
+ };
27124
+ export type UpdateViewMutationVariables = Exact<{
27125
+ view: ViewUpdateInput;
27126
+ }>;
27127
+ export type UpdateViewMutation = {
27128
+ __typename?: 'Mutation';
27129
+ updateView?: {
27130
+ __typename?: 'View';
27131
+ id: string;
27132
+ name: string;
27133
+ state: EntityState;
27134
+ type?: ViewTypes | null;
27135
+ filter?: {
27136
+ __typename?: 'ContentCriteria';
27137
+ inLast?: any | null;
27138
+ createdInLast?: any | null;
27139
+ types?: Array<ContentTypes> | null;
27140
+ fileTypes?: Array<FileTypes | null> | null;
27141
+ formats?: Array<string | null> | null;
27142
+ fileExtensions?: Array<string> | null;
27143
+ dateRange?: {
27144
+ __typename?: 'DateRange';
27145
+ from?: any | null;
27146
+ to?: any | null;
27147
+ } | null;
27148
+ creationDateRange?: {
27149
+ __typename?: 'DateRange';
27150
+ from?: any | null;
27151
+ to?: any | null;
27152
+ } | null;
27153
+ similarContents?: Array<{
27154
+ __typename?: 'EntityReference';
27155
+ id: string;
27156
+ }> | null;
27157
+ contents?: Array<{
27158
+ __typename?: 'EntityReference';
27159
+ id: string;
27160
+ }> | null;
27161
+ feeds?: Array<{
27162
+ __typename?: 'EntityReference';
27163
+ id: string;
27164
+ }> | null;
27165
+ workflows?: Array<{
27166
+ __typename?: 'EntityReference';
27167
+ id: string;
27168
+ }> | null;
27169
+ collections?: Array<{
27170
+ __typename?: 'EntityReference';
27171
+ id: string;
27172
+ }> | null;
27173
+ users?: Array<{
27174
+ __typename?: 'EntityReference';
27175
+ id: string;
27176
+ }> | null;
27177
+ observations?: Array<{
27178
+ __typename?: 'ObservationCriteria';
27179
+ type: ObservableTypes;
27180
+ states?: Array<EntityState | null> | null;
27181
+ observable: {
27182
+ __typename?: 'EntityReference';
27183
+ id: string;
27184
+ };
27185
+ }> | null;
27186
+ or?: Array<{
27187
+ __typename?: 'ContentCriteriaLevel';
27188
+ feeds?: Array<{
27189
+ __typename?: 'EntityReference';
27190
+ id: string;
27191
+ }> | null;
27192
+ workflows?: Array<{
27193
+ __typename?: 'EntityReference';
27194
+ id: string;
27195
+ }> | null;
27196
+ collections?: Array<{
27197
+ __typename?: 'EntityReference';
27198
+ id: string;
27199
+ }> | null;
27200
+ users?: Array<{
27201
+ __typename?: 'EntityReference';
27202
+ id: string;
27203
+ }> | null;
27204
+ observations?: Array<{
27205
+ __typename?: 'ObservationCriteria';
27206
+ type: ObservableTypes;
27207
+ states?: Array<EntityState | null> | null;
27208
+ observable: {
27209
+ __typename?: 'EntityReference';
27210
+ id: string;
27211
+ };
27212
+ }> | null;
27213
+ }> | null;
27214
+ and?: Array<{
27215
+ __typename?: 'ContentCriteriaLevel';
27216
+ feeds?: Array<{
27217
+ __typename?: 'EntityReference';
27218
+ id: string;
27219
+ }> | null;
27220
+ workflows?: Array<{
27221
+ __typename?: 'EntityReference';
27222
+ id: string;
27223
+ }> | null;
27224
+ collections?: Array<{
27225
+ __typename?: 'EntityReference';
27226
+ id: string;
27227
+ }> | null;
27228
+ users?: Array<{
27229
+ __typename?: 'EntityReference';
27230
+ id: string;
27231
+ }> | null;
27232
+ observations?: Array<{
27233
+ __typename?: 'ObservationCriteria';
27234
+ type: ObservableTypes;
27235
+ states?: Array<EntityState | null> | null;
27236
+ observable: {
27237
+ __typename?: 'EntityReference';
27238
+ id: string;
27239
+ };
27240
+ }> | null;
27241
+ }> | null;
27242
+ } | null;
27243
+ augmentedFilter?: {
27244
+ __typename?: 'ContentCriteria';
27245
+ inLast?: any | null;
27246
+ createdInLast?: any | null;
27247
+ types?: Array<ContentTypes> | null;
27248
+ fileTypes?: Array<FileTypes | null> | null;
27249
+ formats?: Array<string | null> | null;
27250
+ fileExtensions?: Array<string> | null;
27251
+ dateRange?: {
27252
+ __typename?: 'DateRange';
27253
+ from?: any | null;
27254
+ to?: any | null;
27255
+ } | null;
27256
+ creationDateRange?: {
27257
+ __typename?: 'DateRange';
27258
+ from?: any | null;
27259
+ to?: any | null;
27260
+ } | null;
27261
+ similarContents?: Array<{
27262
+ __typename?: 'EntityReference';
27263
+ id: string;
27264
+ }> | null;
27265
+ contents?: Array<{
27266
+ __typename?: 'EntityReference';
27267
+ id: string;
27268
+ }> | null;
27269
+ feeds?: Array<{
27270
+ __typename?: 'EntityReference';
27271
+ id: string;
27272
+ }> | null;
27273
+ workflows?: Array<{
27274
+ __typename?: 'EntityReference';
27275
+ id: string;
27276
+ }> | null;
27277
+ collections?: Array<{
27278
+ __typename?: 'EntityReference';
27279
+ id: string;
27280
+ }> | null;
27281
+ users?: Array<{
27282
+ __typename?: 'EntityReference';
27283
+ id: string;
27284
+ }> | null;
27285
+ observations?: Array<{
27286
+ __typename?: 'ObservationCriteria';
27287
+ type: ObservableTypes;
27288
+ states?: Array<EntityState | null> | null;
27289
+ observable: {
27290
+ __typename?: 'EntityReference';
27291
+ id: string;
27292
+ };
27293
+ }> | null;
27294
+ or?: Array<{
27295
+ __typename?: 'ContentCriteriaLevel';
27296
+ feeds?: Array<{
27297
+ __typename?: 'EntityReference';
27298
+ id: string;
27299
+ }> | null;
27300
+ workflows?: Array<{
27301
+ __typename?: 'EntityReference';
27302
+ id: string;
27303
+ }> | null;
27304
+ collections?: Array<{
27305
+ __typename?: 'EntityReference';
27306
+ id: string;
27307
+ }> | null;
27308
+ users?: Array<{
27309
+ __typename?: 'EntityReference';
27310
+ id: string;
27311
+ }> | null;
27312
+ observations?: Array<{
27313
+ __typename?: 'ObservationCriteria';
27314
+ type: ObservableTypes;
27315
+ states?: Array<EntityState | null> | null;
27316
+ observable: {
27317
+ __typename?: 'EntityReference';
27318
+ id: string;
27319
+ };
27320
+ }> | null;
27321
+ }> | null;
27322
+ and?: Array<{
27323
+ __typename?: 'ContentCriteriaLevel';
27324
+ feeds?: Array<{
27325
+ __typename?: 'EntityReference';
27326
+ id: string;
27327
+ }> | null;
27328
+ workflows?: Array<{
27329
+ __typename?: 'EntityReference';
27330
+ id: string;
27331
+ }> | null;
27332
+ collections?: Array<{
27333
+ __typename?: 'EntityReference';
27334
+ id: string;
27335
+ }> | null;
27336
+ users?: Array<{
27337
+ __typename?: 'EntityReference';
27338
+ id: string;
27339
+ }> | null;
27340
+ observations?: Array<{
27341
+ __typename?: 'ObservationCriteria';
27342
+ type: ObservableTypes;
27343
+ states?: Array<EntityState | null> | null;
27344
+ observable: {
27345
+ __typename?: 'EntityReference';
27346
+ id: string;
27347
+ };
27348
+ }> | null;
27349
+ }> | null;
27350
+ } | null;
27351
+ } | null;
27352
+ };
27353
+ export type UpsertViewMutationVariables = Exact<{
27354
+ view: ViewInput;
27355
+ }>;
27356
+ export type UpsertViewMutation = {
27357
+ __typename?: 'Mutation';
27358
+ upsertView?: {
27359
+ __typename?: 'View';
27360
+ id: string;
27361
+ name: string;
27362
+ state: EntityState;
27363
+ type?: ViewTypes | null;
27364
+ filter?: {
27365
+ __typename?: 'ContentCriteria';
27366
+ inLast?: any | null;
27367
+ createdInLast?: any | null;
27368
+ types?: Array<ContentTypes> | null;
27369
+ fileTypes?: Array<FileTypes | null> | null;
27370
+ formats?: Array<string | null> | null;
27371
+ fileExtensions?: Array<string> | null;
27372
+ dateRange?: {
27373
+ __typename?: 'DateRange';
27374
+ from?: any | null;
27375
+ to?: any | null;
27376
+ } | null;
27377
+ creationDateRange?: {
27378
+ __typename?: 'DateRange';
27379
+ from?: any | null;
27380
+ to?: any | null;
27381
+ } | null;
27382
+ similarContents?: Array<{
27383
+ __typename?: 'EntityReference';
27384
+ id: string;
27385
+ }> | null;
27386
+ contents?: Array<{
27387
+ __typename?: 'EntityReference';
27388
+ id: string;
27389
+ }> | null;
27390
+ feeds?: Array<{
27391
+ __typename?: 'EntityReference';
27392
+ id: string;
27393
+ }> | null;
27394
+ workflows?: Array<{
27395
+ __typename?: 'EntityReference';
27396
+ id: string;
27397
+ }> | null;
27398
+ collections?: Array<{
27399
+ __typename?: 'EntityReference';
27400
+ id: string;
27401
+ }> | null;
27402
+ users?: Array<{
27403
+ __typename?: 'EntityReference';
27404
+ id: string;
27405
+ }> | null;
27406
+ observations?: Array<{
27407
+ __typename?: 'ObservationCriteria';
27408
+ type: ObservableTypes;
27409
+ states?: Array<EntityState | null> | null;
27410
+ observable: {
27411
+ __typename?: 'EntityReference';
27412
+ id: string;
27413
+ };
27414
+ }> | null;
27415
+ or?: Array<{
27416
+ __typename?: 'ContentCriteriaLevel';
27417
+ feeds?: Array<{
27418
+ __typename?: 'EntityReference';
27419
+ id: string;
27420
+ }> | null;
27421
+ workflows?: Array<{
27422
+ __typename?: 'EntityReference';
27423
+ id: string;
27424
+ }> | null;
27425
+ collections?: Array<{
27426
+ __typename?: 'EntityReference';
27427
+ id: string;
27428
+ }> | null;
27429
+ users?: Array<{
27430
+ __typename?: 'EntityReference';
27431
+ id: string;
27432
+ }> | null;
27433
+ observations?: Array<{
27434
+ __typename?: 'ObservationCriteria';
27435
+ type: ObservableTypes;
27436
+ states?: Array<EntityState | null> | null;
27437
+ observable: {
27438
+ __typename?: 'EntityReference';
27439
+ id: string;
27440
+ };
27441
+ }> | null;
27442
+ }> | null;
27443
+ and?: Array<{
27444
+ __typename?: 'ContentCriteriaLevel';
27445
+ feeds?: Array<{
27446
+ __typename?: 'EntityReference';
27447
+ id: string;
27448
+ }> | null;
27449
+ workflows?: Array<{
27450
+ __typename?: 'EntityReference';
27451
+ id: string;
27452
+ }> | null;
27453
+ collections?: Array<{
27454
+ __typename?: 'EntityReference';
27455
+ id: string;
27456
+ }> | null;
27457
+ users?: Array<{
27458
+ __typename?: 'EntityReference';
27459
+ id: string;
27460
+ }> | null;
27461
+ observations?: Array<{
27462
+ __typename?: 'ObservationCriteria';
27463
+ type: ObservableTypes;
27464
+ states?: Array<EntityState | null> | null;
27465
+ observable: {
27466
+ __typename?: 'EntityReference';
27467
+ id: string;
27468
+ };
27469
+ }> | null;
27470
+ }> | null;
27471
+ } | null;
27472
+ augmentedFilter?: {
27473
+ __typename?: 'ContentCriteria';
27474
+ inLast?: any | null;
27475
+ createdInLast?: any | null;
27476
+ types?: Array<ContentTypes> | null;
27477
+ fileTypes?: Array<FileTypes | null> | null;
27478
+ formats?: Array<string | null> | null;
27479
+ fileExtensions?: Array<string> | null;
27480
+ dateRange?: {
27481
+ __typename?: 'DateRange';
27482
+ from?: any | null;
27483
+ to?: any | null;
27484
+ } | null;
27485
+ creationDateRange?: {
27486
+ __typename?: 'DateRange';
27487
+ from?: any | null;
27488
+ to?: any | null;
27489
+ } | null;
27490
+ similarContents?: Array<{
27491
+ __typename?: 'EntityReference';
27492
+ id: string;
27493
+ }> | null;
27494
+ contents?: Array<{
27495
+ __typename?: 'EntityReference';
27496
+ id: string;
27497
+ }> | null;
27498
+ feeds?: Array<{
27499
+ __typename?: 'EntityReference';
27500
+ id: string;
27501
+ }> | null;
27502
+ workflows?: Array<{
27503
+ __typename?: 'EntityReference';
27504
+ id: string;
27505
+ }> | null;
27506
+ collections?: Array<{
27507
+ __typename?: 'EntityReference';
27508
+ id: string;
27509
+ }> | null;
27510
+ users?: Array<{
27511
+ __typename?: 'EntityReference';
27512
+ id: string;
27513
+ }> | null;
27514
+ observations?: Array<{
27515
+ __typename?: 'ObservationCriteria';
27516
+ type: ObservableTypes;
27517
+ states?: Array<EntityState | null> | null;
27518
+ observable: {
27519
+ __typename?: 'EntityReference';
27520
+ id: string;
27521
+ };
27522
+ }> | null;
27523
+ or?: Array<{
27524
+ __typename?: 'ContentCriteriaLevel';
27525
+ feeds?: Array<{
27526
+ __typename?: 'EntityReference';
27527
+ id: string;
27528
+ }> | null;
27529
+ workflows?: Array<{
27530
+ __typename?: 'EntityReference';
27531
+ id: string;
27532
+ }> | null;
27533
+ collections?: Array<{
27534
+ __typename?: 'EntityReference';
27535
+ id: string;
27536
+ }> | null;
27537
+ users?: Array<{
27538
+ __typename?: 'EntityReference';
27539
+ id: string;
27540
+ }> | null;
27541
+ observations?: Array<{
27542
+ __typename?: 'ObservationCriteria';
27543
+ type: ObservableTypes;
27544
+ states?: Array<EntityState | null> | null;
27545
+ observable: {
27546
+ __typename?: 'EntityReference';
27547
+ id: string;
27548
+ };
27549
+ }> | null;
27550
+ }> | null;
27551
+ and?: Array<{
27552
+ __typename?: 'ContentCriteriaLevel';
27553
+ feeds?: Array<{
27554
+ __typename?: 'EntityReference';
27555
+ id: string;
27556
+ }> | null;
27557
+ workflows?: Array<{
27558
+ __typename?: 'EntityReference';
27559
+ id: string;
27560
+ }> | null;
27561
+ collections?: Array<{
27562
+ __typename?: 'EntityReference';
27563
+ id: string;
27564
+ }> | null;
27565
+ users?: Array<{
27566
+ __typename?: 'EntityReference';
27567
+ id: string;
27568
+ }> | null;
27569
+ observations?: Array<{
27570
+ __typename?: 'ObservationCriteria';
27571
+ type: ObservableTypes;
27572
+ states?: Array<EntityState | null> | null;
27573
+ observable: {
27574
+ __typename?: 'EntityReference';
27575
+ id: string;
27576
+ };
27577
+ }> | null;
27578
+ }> | null;
27579
+ } | null;
27580
+ } | null;
27581
+ };
27582
+ export type ViewExistsQueryVariables = Exact<{
27583
+ filter?: InputMaybe<ViewFilter>;
27584
+ correlationId?: InputMaybe<Scalars['String']['input']>;
27585
+ }>;
27586
+ export type ViewExistsQuery = {
27587
+ __typename?: 'Query';
27588
+ viewExists?: {
27589
+ __typename?: 'BooleanResult';
27590
+ result?: boolean | null;
27591
+ } | null;
27592
+ };
25748
27593
  export type CountWorkflowsQueryVariables = Exact<{
25749
27594
  filter?: InputMaybe<WorkflowFilter>;
25750
27595
  correlationId?: InputMaybe<Scalars['String']['input']>;
@@ -25969,6 +27814,8 @@ export type CreateWorkflowMutation = {
25969
27814
  excludedLinks?: Array<LinkTypes> | null;
25970
27815
  allowedFiles?: Array<FileTypes> | null;
25971
27816
  excludedFiles?: Array<FileTypes> | null;
27817
+ allowedContentTypes?: Array<ContentTypes> | null;
27818
+ excludedContentTypes?: Array<ContentTypes> | null;
25972
27819
  allowContentDomain?: boolean | null;
25973
27820
  maximumLinks?: number | null;
25974
27821
  } | null;
@@ -26281,6 +28128,8 @@ export type GetWorkflowQuery = {
26281
28128
  excludedLinks?: Array<LinkTypes> | null;
26282
28129
  allowedFiles?: Array<FileTypes> | null;
26283
28130
  excludedFiles?: Array<FileTypes> | null;
28131
+ allowedContentTypes?: Array<ContentTypes> | null;
28132
+ excludedContentTypes?: Array<ContentTypes> | null;
26284
28133
  allowContentDomain?: boolean | null;
26285
28134
  maximumLinks?: number | null;
26286
28135
  } | null;
@@ -26559,6 +28408,8 @@ export type QueryWorkflowsQuery = {
26559
28408
  excludedLinks?: Array<LinkTypes> | null;
26560
28409
  allowedFiles?: Array<FileTypes> | null;
26561
28410
  excludedFiles?: Array<FileTypes> | null;
28411
+ allowedContentTypes?: Array<ContentTypes> | null;
28412
+ excludedContentTypes?: Array<ContentTypes> | null;
26562
28413
  allowContentDomain?: boolean | null;
26563
28414
  maximumLinks?: number | null;
26564
28415
  } | null;
@@ -26829,6 +28680,8 @@ export type UpdateWorkflowMutation = {
26829
28680
  excludedLinks?: Array<LinkTypes> | null;
26830
28681
  allowedFiles?: Array<FileTypes> | null;
26831
28682
  excludedFiles?: Array<FileTypes> | null;
28683
+ allowedContentTypes?: Array<ContentTypes> | null;
28684
+ excludedContentTypes?: Array<ContentTypes> | null;
26832
28685
  allowContentDomain?: boolean | null;
26833
28686
  maximumLinks?: number | null;
26834
28687
  } | null;
@@ -27098,6 +28951,8 @@ export type UpsertWorkflowMutation = {
27098
28951
  excludedLinks?: Array<LinkTypes> | null;
27099
28952
  allowedFiles?: Array<FileTypes> | null;
27100
28953
  excludedFiles?: Array<FileTypes> | null;
28954
+ allowedContentTypes?: Array<ContentTypes> | null;
28955
+ excludedContentTypes?: Array<ContentTypes> | null;
27101
28956
  allowContentDomain?: boolean | null;
27102
28957
  maximumLinks?: number | null;
27103
28958
  } | null;