graphlit-client 1.0.20250625001 → 1.0.20250627001
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +235 -5
- package/dist/client.d.ts +21 -1
- package/dist/client.js +265 -55
- package/dist/generated/graphql-documents.d.ts +16 -0
- package/dist/generated/graphql-documents.js +1116 -0
- package/dist/generated/graphql-types.d.ts +1884 -85
- package/dist/generated/graphql-types.js +51 -0
- package/dist/streaming/llm-formatters.js +68 -5
- package/dist/streaming/providers.d.ts +18 -13
- package/dist/streaming/providers.js +690 -167
- package/dist/streaming/ui-event-adapter.d.ts +7 -0
- package/dist/streaming/ui-event-adapter.js +55 -0
- package/dist/types/internal.d.ts +11 -0
- package/dist/types/ui-events.d.ts +9 -0
- package/package.json +1 -1
@@ -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
|
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
|
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
|
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
|
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
|
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
|
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
|
4652
|
-
/** Google OAuth2 client secret. */
|
4653
|
-
clientSecret
|
4654
|
-
/**
|
4655
|
-
|
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
|
4660
|
-
|
4661
|
-
/** Google OAuth2 client
|
4662
|
-
|
4663
|
-
/** Google OAuth2
|
4664
|
-
|
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
|
4777
|
-
|
4778
|
-
/** Google client
|
4779
|
-
|
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
|
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
|
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
|
7735
|
-
/** Microsoft Entra ID client secret. */
|
7736
|
-
clientSecret
|
7737
|
-
/**
|
7738
|
-
|
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
|
7743
|
-
|
7744
|
-
/** Microsoft Entra ID client
|
7745
|
-
|
7746
|
-
/** Microsoft Entra ID
|
7747
|
-
|
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
|
7781
|
-
|
7782
|
-
/** Microsoft Email client
|
7783
|
-
|
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
|
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
|
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
|
9750
|
-
|
9751
|
-
/** OneDrive client
|
9752
|
-
|
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
|
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
|
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
|
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
|
15185
|
-
filter?: InputMaybe<
|
15538
|
+
export type CountConnectorsQueryVariables = Exact<{
|
15539
|
+
filter?: InputMaybe<ConnectorFilter>;
|
15186
15540
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
15187
15541
|
}>;
|
15188
|
-
export type
|
15542
|
+
export type CountConnectorsQuery = {
|
15189
15543
|
__typename?: 'Query';
|
15190
|
-
|
15544
|
+
countConnectors?: {
|
15191
15545
|
__typename?: 'CountResult';
|
15192
15546
|
count?: any | null;
|
15193
15547
|
} | null;
|
15194
15548
|
};
|
15195
|
-
export type
|
15196
|
-
|
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
|
15552
|
+
export type CreateConnectorMutation = {
|
15201
15553
|
__typename?: 'Mutation';
|
15202
|
-
|
15203
|
-
__typename?: '
|
15554
|
+
createConnector?: {
|
15555
|
+
__typename?: 'Connector';
|
15204
15556
|
id: string;
|
15557
|
+
name: string;
|
15205
15558
|
state: EntityState;
|
15206
|
-
|
15559
|
+
type?: ConnectorTypes | null;
|
15560
|
+
} | null;
|
15207
15561
|
};
|
15208
|
-
export type
|
15562
|
+
export type DeleteConnectorMutationVariables = Exact<{
|
15209
15563
|
id: Scalars['ID']['input'];
|
15210
15564
|
}>;
|
15211
|
-
export type
|
15565
|
+
export type DeleteConnectorMutation = {
|
15212
15566
|
__typename?: 'Mutation';
|
15213
|
-
|
15214
|
-
__typename?: '
|
15567
|
+
deleteConnector?: {
|
15568
|
+
__typename?: 'Connector';
|
15215
15569
|
id: string;
|
15216
15570
|
state: EntityState;
|
15217
15571
|
} | null;
|
15218
15572
|
};
|
15219
|
-
export type
|
15220
|
-
|
15221
|
-
|
15573
|
+
export type GetConnectorQueryVariables = Exact<{
|
15574
|
+
id: Scalars['ID']['input'];
|
15575
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
15222
15576
|
}>;
|
15223
|
-
export type
|
15224
|
-
__typename?: '
|
15225
|
-
|
15226
|
-
__typename?: '
|
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
|
-
|
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
|
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'];
|
@@ -21552,7 +22081,7 @@ export type GetFeedQuery = {
|
|
21552
22081
|
} | null;
|
21553
22082
|
sharePoint?: {
|
21554
22083
|
__typename?: 'SharePointFeedProperties';
|
21555
|
-
authenticationType
|
22084
|
+
authenticationType?: SharePointAuthenticationTypes | null;
|
21556
22085
|
accountName: string;
|
21557
22086
|
libraryId: string;
|
21558
22087
|
folderId?: string | null;
|
@@ -21560,14 +22089,17 @@ export type GetFeedQuery = {
|
|
21560
22089
|
clientId?: string | null;
|
21561
22090
|
clientSecret?: string | null;
|
21562
22091
|
refreshToken?: string | null;
|
22092
|
+
connectorId?: string | null;
|
21563
22093
|
} | null;
|
21564
22094
|
oneDrive?: {
|
21565
22095
|
__typename?: 'OneDriveFeedProperties';
|
22096
|
+
authenticationType?: OneDriveAuthenticationTypes | null;
|
21566
22097
|
folderId?: string | null;
|
21567
22098
|
files?: Array<string | null> | null;
|
21568
22099
|
clientId: string;
|
21569
22100
|
clientSecret: string;
|
21570
22101
|
refreshToken: string;
|
22102
|
+
connectorId?: string | null;
|
21571
22103
|
} | null;
|
21572
22104
|
googleDrive?: {
|
21573
22105
|
__typename?: 'GoogleDriveFeedProperties';
|
@@ -21578,6 +22110,7 @@ export type GetFeedQuery = {
|
|
21578
22110
|
clientId?: string | null;
|
21579
22111
|
clientSecret?: string | null;
|
21580
22112
|
serviceAccountJson?: string | null;
|
22113
|
+
connectorId?: string | null;
|
21581
22114
|
} | null;
|
21582
22115
|
dropbox?: {
|
21583
22116
|
__typename?: 'DropboxFeedProperties';
|
@@ -21597,11 +22130,13 @@ export type GetFeedQuery = {
|
|
21597
22130
|
} | null;
|
21598
22131
|
github?: {
|
21599
22132
|
__typename?: 'GitHubFeedProperties';
|
22133
|
+
authenticationType?: OneDriveAuthenticationTypes | null;
|
21600
22134
|
uri?: any | null;
|
21601
22135
|
repositoryOwner: string;
|
21602
22136
|
repositoryName: string;
|
21603
22137
|
refreshToken?: string | null;
|
21604
22138
|
personalAccessToken?: string | null;
|
22139
|
+
connectorId?: string | null;
|
21605
22140
|
} | null;
|
21606
22141
|
} | null;
|
21607
22142
|
email?: {
|
@@ -21616,9 +22151,11 @@ export type GetFeedQuery = {
|
|
21616
22151
|
excludeSentItems?: boolean | null;
|
21617
22152
|
includeDeletedItems?: boolean | null;
|
21618
22153
|
inboxOnly?: boolean | null;
|
22154
|
+
authenticationType?: GoogleEmailAuthenticationTypes | null;
|
21619
22155
|
refreshToken?: string | null;
|
21620
22156
|
clientId: string;
|
21621
22157
|
clientSecret: string;
|
22158
|
+
connectorId?: string | null;
|
21622
22159
|
} | null;
|
21623
22160
|
microsoft?: {
|
21624
22161
|
__typename?: 'MicrosoftEmailFeedProperties';
|
@@ -21627,9 +22164,11 @@ export type GetFeedQuery = {
|
|
21627
22164
|
excludeSentItems?: boolean | null;
|
21628
22165
|
includeDeletedItems?: boolean | null;
|
21629
22166
|
inboxOnly?: boolean | null;
|
22167
|
+
authenticationType?: MicrosoftEmailAuthenticationTypes | null;
|
21630
22168
|
refreshToken: string;
|
21631
22169
|
clientId: string;
|
21632
22170
|
clientSecret: string;
|
22171
|
+
connectorId?: string | null;
|
21633
22172
|
} | null;
|
21634
22173
|
} | null;
|
21635
22174
|
issue?: {
|
@@ -21685,18 +22224,22 @@ export type GetFeedQuery = {
|
|
21685
22224
|
calendarId?: string | null;
|
21686
22225
|
beforeDate?: any | null;
|
21687
22226
|
afterDate?: any | null;
|
22227
|
+
authenticationType?: GoogleCalendarAuthenticationTypes | null;
|
21688
22228
|
refreshToken: string;
|
21689
22229
|
clientId: string;
|
21690
22230
|
clientSecret: string;
|
22231
|
+
connectorId?: string | null;
|
21691
22232
|
} | null;
|
21692
22233
|
microsoft?: {
|
21693
22234
|
__typename?: 'MicrosoftCalendarFeedProperties';
|
21694
22235
|
calendarId?: string | null;
|
21695
22236
|
beforeDate?: any | null;
|
21696
22237
|
afterDate?: any | null;
|
22238
|
+
authenticationType?: MicrosoftCalendarAuthenticationTypes | null;
|
21697
22239
|
refreshToken: string;
|
21698
22240
|
clientId: string;
|
21699
22241
|
clientSecret: string;
|
22242
|
+
connectorId?: string | null;
|
21700
22243
|
} | null;
|
21701
22244
|
} | null;
|
21702
22245
|
rss?: {
|
@@ -21908,7 +22451,7 @@ export type QueryFeedsQuery = {
|
|
21908
22451
|
} | null;
|
21909
22452
|
sharePoint?: {
|
21910
22453
|
__typename?: 'SharePointFeedProperties';
|
21911
|
-
authenticationType
|
22454
|
+
authenticationType?: SharePointAuthenticationTypes | null;
|
21912
22455
|
accountName: string;
|
21913
22456
|
libraryId: string;
|
21914
22457
|
folderId?: string | null;
|
@@ -21916,14 +22459,17 @@ export type QueryFeedsQuery = {
|
|
21916
22459
|
clientId?: string | null;
|
21917
22460
|
clientSecret?: string | null;
|
21918
22461
|
refreshToken?: string | null;
|
22462
|
+
connectorId?: string | null;
|
21919
22463
|
} | null;
|
21920
22464
|
oneDrive?: {
|
21921
22465
|
__typename?: 'OneDriveFeedProperties';
|
22466
|
+
authenticationType?: OneDriveAuthenticationTypes | null;
|
21922
22467
|
folderId?: string | null;
|
21923
22468
|
files?: Array<string | null> | null;
|
21924
22469
|
clientId: string;
|
21925
22470
|
clientSecret: string;
|
21926
22471
|
refreshToken: string;
|
22472
|
+
connectorId?: string | null;
|
21927
22473
|
} | null;
|
21928
22474
|
googleDrive?: {
|
21929
22475
|
__typename?: 'GoogleDriveFeedProperties';
|
@@ -21934,6 +22480,7 @@ export type QueryFeedsQuery = {
|
|
21934
22480
|
clientId?: string | null;
|
21935
22481
|
clientSecret?: string | null;
|
21936
22482
|
serviceAccountJson?: string | null;
|
22483
|
+
connectorId?: string | null;
|
21937
22484
|
} | null;
|
21938
22485
|
dropbox?: {
|
21939
22486
|
__typename?: 'DropboxFeedProperties';
|
@@ -21953,11 +22500,13 @@ export type QueryFeedsQuery = {
|
|
21953
22500
|
} | null;
|
21954
22501
|
github?: {
|
21955
22502
|
__typename?: 'GitHubFeedProperties';
|
22503
|
+
authenticationType?: OneDriveAuthenticationTypes | null;
|
21956
22504
|
uri?: any | null;
|
21957
22505
|
repositoryOwner: string;
|
21958
22506
|
repositoryName: string;
|
21959
22507
|
refreshToken?: string | null;
|
21960
22508
|
personalAccessToken?: string | null;
|
22509
|
+
connectorId?: string | null;
|
21961
22510
|
} | null;
|
21962
22511
|
} | null;
|
21963
22512
|
email?: {
|
@@ -21972,9 +22521,11 @@ export type QueryFeedsQuery = {
|
|
21972
22521
|
excludeSentItems?: boolean | null;
|
21973
22522
|
includeDeletedItems?: boolean | null;
|
21974
22523
|
inboxOnly?: boolean | null;
|
22524
|
+
authenticationType?: GoogleEmailAuthenticationTypes | null;
|
21975
22525
|
refreshToken?: string | null;
|
21976
22526
|
clientId: string;
|
21977
22527
|
clientSecret: string;
|
22528
|
+
connectorId?: string | null;
|
21978
22529
|
} | null;
|
21979
22530
|
microsoft?: {
|
21980
22531
|
__typename?: 'MicrosoftEmailFeedProperties';
|
@@ -21983,9 +22534,11 @@ export type QueryFeedsQuery = {
|
|
21983
22534
|
excludeSentItems?: boolean | null;
|
21984
22535
|
includeDeletedItems?: boolean | null;
|
21985
22536
|
inboxOnly?: boolean | null;
|
22537
|
+
authenticationType?: MicrosoftEmailAuthenticationTypes | null;
|
21986
22538
|
refreshToken: string;
|
21987
22539
|
clientId: string;
|
21988
22540
|
clientSecret: string;
|
22541
|
+
connectorId?: string | null;
|
21989
22542
|
} | null;
|
21990
22543
|
} | null;
|
21991
22544
|
issue?: {
|
@@ -22041,18 +22594,22 @@ export type QueryFeedsQuery = {
|
|
22041
22594
|
calendarId?: string | null;
|
22042
22595
|
beforeDate?: any | null;
|
22043
22596
|
afterDate?: any | null;
|
22597
|
+
authenticationType?: GoogleCalendarAuthenticationTypes | null;
|
22044
22598
|
refreshToken: string;
|
22045
22599
|
clientId: string;
|
22046
22600
|
clientSecret: string;
|
22601
|
+
connectorId?: string | null;
|
22047
22602
|
} | null;
|
22048
22603
|
microsoft?: {
|
22049
22604
|
__typename?: 'MicrosoftCalendarFeedProperties';
|
22050
22605
|
calendarId?: string | null;
|
22051
22606
|
beforeDate?: any | null;
|
22052
22607
|
afterDate?: any | null;
|
22608
|
+
authenticationType?: MicrosoftCalendarAuthenticationTypes | null;
|
22053
22609
|
refreshToken: string;
|
22054
22610
|
clientId: string;
|
22055
22611
|
clientSecret: string;
|
22612
|
+
connectorId?: string | null;
|
22056
22613
|
} | null;
|
22057
22614
|
} | null;
|
22058
22615
|
rss?: {
|
@@ -25567,6 +26124,10 @@ export type GetUserQuery = {
|
|
25567
26124
|
clientId: string;
|
25568
26125
|
clientSecret: string;
|
25569
26126
|
} | null;
|
26127
|
+
arcade?: {
|
26128
|
+
__typename?: 'ArcadeAuthenticationProperties';
|
26129
|
+
authorizationId: string;
|
26130
|
+
} | null;
|
25570
26131
|
} | null;
|
25571
26132
|
integration?: {
|
25572
26133
|
__typename?: 'IntegrationConnector';
|
@@ -25633,6 +26194,10 @@ export type GetUserByIdentifierQuery = {
|
|
25633
26194
|
clientId: string;
|
25634
26195
|
clientSecret: string;
|
25635
26196
|
} | null;
|
26197
|
+
arcade?: {
|
26198
|
+
__typename?: 'ArcadeAuthenticationProperties';
|
26199
|
+
authorizationId: string;
|
26200
|
+
} | null;
|
25636
26201
|
} | null;
|
25637
26202
|
integration?: {
|
25638
26203
|
__typename?: 'IntegrationConnector';
|
@@ -25702,6 +26267,10 @@ export type QueryUsersQuery = {
|
|
25702
26267
|
clientId: string;
|
25703
26268
|
clientSecret: string;
|
25704
26269
|
} | null;
|
26270
|
+
arcade?: {
|
26271
|
+
__typename?: 'ArcadeAuthenticationProperties';
|
26272
|
+
authorizationId: string;
|
26273
|
+
} | null;
|
25705
26274
|
} | null;
|
25706
26275
|
integration?: {
|
25707
26276
|
__typename?: 'IntegrationConnector';
|
@@ -25745,6 +26314,1226 @@ export type UpdateUserMutation = {
|
|
25745
26314
|
identifier: string;
|
25746
26315
|
} | null;
|
25747
26316
|
};
|
26317
|
+
export type CountViewsQueryVariables = Exact<{
|
26318
|
+
filter?: InputMaybe<ViewFilter>;
|
26319
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
26320
|
+
}>;
|
26321
|
+
export type CountViewsQuery = {
|
26322
|
+
__typename?: 'Query';
|
26323
|
+
countViews?: {
|
26324
|
+
__typename?: 'CountResult';
|
26325
|
+
count?: any | null;
|
26326
|
+
} | null;
|
26327
|
+
};
|
26328
|
+
export type CreateViewMutationVariables = Exact<{
|
26329
|
+
view: ViewInput;
|
26330
|
+
}>;
|
26331
|
+
export type CreateViewMutation = {
|
26332
|
+
__typename?: 'Mutation';
|
26333
|
+
createView?: {
|
26334
|
+
__typename?: 'View';
|
26335
|
+
id: string;
|
26336
|
+
name: string;
|
26337
|
+
state: EntityState;
|
26338
|
+
type?: ViewTypes | null;
|
26339
|
+
filter?: {
|
26340
|
+
__typename?: 'ContentCriteria';
|
26341
|
+
inLast?: any | null;
|
26342
|
+
createdInLast?: any | null;
|
26343
|
+
types?: Array<ContentTypes> | null;
|
26344
|
+
fileTypes?: Array<FileTypes | null> | null;
|
26345
|
+
formats?: Array<string | null> | null;
|
26346
|
+
fileExtensions?: Array<string> | null;
|
26347
|
+
dateRange?: {
|
26348
|
+
__typename?: 'DateRange';
|
26349
|
+
from?: any | null;
|
26350
|
+
to?: any | null;
|
26351
|
+
} | null;
|
26352
|
+
creationDateRange?: {
|
26353
|
+
__typename?: 'DateRange';
|
26354
|
+
from?: any | null;
|
26355
|
+
to?: any | null;
|
26356
|
+
} | null;
|
26357
|
+
similarContents?: Array<{
|
26358
|
+
__typename?: 'EntityReference';
|
26359
|
+
id: string;
|
26360
|
+
}> | null;
|
26361
|
+
contents?: Array<{
|
26362
|
+
__typename?: 'EntityReference';
|
26363
|
+
id: string;
|
26364
|
+
}> | null;
|
26365
|
+
feeds?: Array<{
|
26366
|
+
__typename?: 'EntityReference';
|
26367
|
+
id: string;
|
26368
|
+
}> | null;
|
26369
|
+
workflows?: Array<{
|
26370
|
+
__typename?: 'EntityReference';
|
26371
|
+
id: string;
|
26372
|
+
}> | null;
|
26373
|
+
collections?: Array<{
|
26374
|
+
__typename?: 'EntityReference';
|
26375
|
+
id: string;
|
26376
|
+
}> | null;
|
26377
|
+
users?: Array<{
|
26378
|
+
__typename?: 'EntityReference';
|
26379
|
+
id: string;
|
26380
|
+
}> | null;
|
26381
|
+
observations?: Array<{
|
26382
|
+
__typename?: 'ObservationCriteria';
|
26383
|
+
type: ObservableTypes;
|
26384
|
+
states?: Array<EntityState | null> | null;
|
26385
|
+
observable: {
|
26386
|
+
__typename?: 'EntityReference';
|
26387
|
+
id: string;
|
26388
|
+
};
|
26389
|
+
}> | null;
|
26390
|
+
or?: Array<{
|
26391
|
+
__typename?: 'ContentCriteriaLevel';
|
26392
|
+
feeds?: Array<{
|
26393
|
+
__typename?: 'EntityReference';
|
26394
|
+
id: string;
|
26395
|
+
}> | null;
|
26396
|
+
workflows?: Array<{
|
26397
|
+
__typename?: 'EntityReference';
|
26398
|
+
id: string;
|
26399
|
+
}> | null;
|
26400
|
+
collections?: Array<{
|
26401
|
+
__typename?: 'EntityReference';
|
26402
|
+
id: string;
|
26403
|
+
}> | null;
|
26404
|
+
users?: Array<{
|
26405
|
+
__typename?: 'EntityReference';
|
26406
|
+
id: string;
|
26407
|
+
}> | null;
|
26408
|
+
observations?: Array<{
|
26409
|
+
__typename?: 'ObservationCriteria';
|
26410
|
+
type: ObservableTypes;
|
26411
|
+
states?: Array<EntityState | null> | null;
|
26412
|
+
observable: {
|
26413
|
+
__typename?: 'EntityReference';
|
26414
|
+
id: string;
|
26415
|
+
};
|
26416
|
+
}> | null;
|
26417
|
+
}> | null;
|
26418
|
+
and?: Array<{
|
26419
|
+
__typename?: 'ContentCriteriaLevel';
|
26420
|
+
feeds?: Array<{
|
26421
|
+
__typename?: 'EntityReference';
|
26422
|
+
id: string;
|
26423
|
+
}> | null;
|
26424
|
+
workflows?: Array<{
|
26425
|
+
__typename?: 'EntityReference';
|
26426
|
+
id: string;
|
26427
|
+
}> | null;
|
26428
|
+
collections?: Array<{
|
26429
|
+
__typename?: 'EntityReference';
|
26430
|
+
id: string;
|
26431
|
+
}> | null;
|
26432
|
+
users?: Array<{
|
26433
|
+
__typename?: 'EntityReference';
|
26434
|
+
id: string;
|
26435
|
+
}> | null;
|
26436
|
+
observations?: Array<{
|
26437
|
+
__typename?: 'ObservationCriteria';
|
26438
|
+
type: ObservableTypes;
|
26439
|
+
states?: Array<EntityState | null> | null;
|
26440
|
+
observable: {
|
26441
|
+
__typename?: 'EntityReference';
|
26442
|
+
id: string;
|
26443
|
+
};
|
26444
|
+
}> | null;
|
26445
|
+
}> | null;
|
26446
|
+
} | null;
|
26447
|
+
augmentedFilter?: {
|
26448
|
+
__typename?: 'ContentCriteria';
|
26449
|
+
inLast?: any | null;
|
26450
|
+
createdInLast?: any | null;
|
26451
|
+
types?: Array<ContentTypes> | null;
|
26452
|
+
fileTypes?: Array<FileTypes | null> | null;
|
26453
|
+
formats?: Array<string | null> | null;
|
26454
|
+
fileExtensions?: Array<string> | null;
|
26455
|
+
dateRange?: {
|
26456
|
+
__typename?: 'DateRange';
|
26457
|
+
from?: any | null;
|
26458
|
+
to?: any | null;
|
26459
|
+
} | null;
|
26460
|
+
creationDateRange?: {
|
26461
|
+
__typename?: 'DateRange';
|
26462
|
+
from?: any | null;
|
26463
|
+
to?: any | null;
|
26464
|
+
} | null;
|
26465
|
+
similarContents?: Array<{
|
26466
|
+
__typename?: 'EntityReference';
|
26467
|
+
id: string;
|
26468
|
+
}> | null;
|
26469
|
+
contents?: Array<{
|
26470
|
+
__typename?: 'EntityReference';
|
26471
|
+
id: string;
|
26472
|
+
}> | null;
|
26473
|
+
feeds?: Array<{
|
26474
|
+
__typename?: 'EntityReference';
|
26475
|
+
id: string;
|
26476
|
+
}> | null;
|
26477
|
+
workflows?: Array<{
|
26478
|
+
__typename?: 'EntityReference';
|
26479
|
+
id: string;
|
26480
|
+
}> | null;
|
26481
|
+
collections?: Array<{
|
26482
|
+
__typename?: 'EntityReference';
|
26483
|
+
id: string;
|
26484
|
+
}> | null;
|
26485
|
+
users?: Array<{
|
26486
|
+
__typename?: 'EntityReference';
|
26487
|
+
id: string;
|
26488
|
+
}> | null;
|
26489
|
+
observations?: Array<{
|
26490
|
+
__typename?: 'ObservationCriteria';
|
26491
|
+
type: ObservableTypes;
|
26492
|
+
states?: Array<EntityState | null> | null;
|
26493
|
+
observable: {
|
26494
|
+
__typename?: 'EntityReference';
|
26495
|
+
id: string;
|
26496
|
+
};
|
26497
|
+
}> | null;
|
26498
|
+
or?: Array<{
|
26499
|
+
__typename?: 'ContentCriteriaLevel';
|
26500
|
+
feeds?: Array<{
|
26501
|
+
__typename?: 'EntityReference';
|
26502
|
+
id: string;
|
26503
|
+
}> | null;
|
26504
|
+
workflows?: Array<{
|
26505
|
+
__typename?: 'EntityReference';
|
26506
|
+
id: string;
|
26507
|
+
}> | null;
|
26508
|
+
collections?: Array<{
|
26509
|
+
__typename?: 'EntityReference';
|
26510
|
+
id: string;
|
26511
|
+
}> | null;
|
26512
|
+
users?: Array<{
|
26513
|
+
__typename?: 'EntityReference';
|
26514
|
+
id: string;
|
26515
|
+
}> | null;
|
26516
|
+
observations?: Array<{
|
26517
|
+
__typename?: 'ObservationCriteria';
|
26518
|
+
type: ObservableTypes;
|
26519
|
+
states?: Array<EntityState | null> | null;
|
26520
|
+
observable: {
|
26521
|
+
__typename?: 'EntityReference';
|
26522
|
+
id: string;
|
26523
|
+
};
|
26524
|
+
}> | null;
|
26525
|
+
}> | null;
|
26526
|
+
and?: Array<{
|
26527
|
+
__typename?: 'ContentCriteriaLevel';
|
26528
|
+
feeds?: Array<{
|
26529
|
+
__typename?: 'EntityReference';
|
26530
|
+
id: string;
|
26531
|
+
}> | null;
|
26532
|
+
workflows?: Array<{
|
26533
|
+
__typename?: 'EntityReference';
|
26534
|
+
id: string;
|
26535
|
+
}> | null;
|
26536
|
+
collections?: Array<{
|
26537
|
+
__typename?: 'EntityReference';
|
26538
|
+
id: string;
|
26539
|
+
}> | null;
|
26540
|
+
users?: Array<{
|
26541
|
+
__typename?: 'EntityReference';
|
26542
|
+
id: string;
|
26543
|
+
}> | null;
|
26544
|
+
observations?: Array<{
|
26545
|
+
__typename?: 'ObservationCriteria';
|
26546
|
+
type: ObservableTypes;
|
26547
|
+
states?: Array<EntityState | null> | null;
|
26548
|
+
observable: {
|
26549
|
+
__typename?: 'EntityReference';
|
26550
|
+
id: string;
|
26551
|
+
};
|
26552
|
+
}> | null;
|
26553
|
+
}> | null;
|
26554
|
+
} | null;
|
26555
|
+
} | null;
|
26556
|
+
};
|
26557
|
+
export type DeleteAllViewsMutationVariables = Exact<{
|
26558
|
+
filter?: InputMaybe<ViewFilter>;
|
26559
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
26560
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
26561
|
+
}>;
|
26562
|
+
export type DeleteAllViewsMutation = {
|
26563
|
+
__typename?: 'Mutation';
|
26564
|
+
deleteAllViews?: Array<{
|
26565
|
+
__typename?: 'View';
|
26566
|
+
id: string;
|
26567
|
+
state: EntityState;
|
26568
|
+
} | null> | null;
|
26569
|
+
};
|
26570
|
+
export type DeleteViewMutationVariables = Exact<{
|
26571
|
+
id: Scalars['ID']['input'];
|
26572
|
+
}>;
|
26573
|
+
export type DeleteViewMutation = {
|
26574
|
+
__typename?: 'Mutation';
|
26575
|
+
deleteView?: {
|
26576
|
+
__typename?: 'View';
|
26577
|
+
id: string;
|
26578
|
+
state: EntityState;
|
26579
|
+
} | null;
|
26580
|
+
};
|
26581
|
+
export type DeleteViewsMutationVariables = Exact<{
|
26582
|
+
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
26583
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
26584
|
+
}>;
|
26585
|
+
export type DeleteViewsMutation = {
|
26586
|
+
__typename?: 'Mutation';
|
26587
|
+
deleteViews?: Array<{
|
26588
|
+
__typename?: 'View';
|
26589
|
+
id: string;
|
26590
|
+
state: EntityState;
|
26591
|
+
} | null> | null;
|
26592
|
+
};
|
26593
|
+
export type GetViewQueryVariables = Exact<{
|
26594
|
+
id: Scalars['ID']['input'];
|
26595
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
26596
|
+
}>;
|
26597
|
+
export type GetViewQuery = {
|
26598
|
+
__typename?: 'Query';
|
26599
|
+
view?: {
|
26600
|
+
__typename?: 'View';
|
26601
|
+
id: string;
|
26602
|
+
name: string;
|
26603
|
+
creationDate: any;
|
26604
|
+
relevance?: number | null;
|
26605
|
+
state: EntityState;
|
26606
|
+
type?: ViewTypes | null;
|
26607
|
+
owner: {
|
26608
|
+
__typename?: 'Owner';
|
26609
|
+
id: string;
|
26610
|
+
};
|
26611
|
+
filter?: {
|
26612
|
+
__typename?: 'ContentCriteria';
|
26613
|
+
inLast?: any | null;
|
26614
|
+
createdInLast?: any | null;
|
26615
|
+
types?: Array<ContentTypes> | null;
|
26616
|
+
fileTypes?: Array<FileTypes | null> | null;
|
26617
|
+
formats?: Array<string | null> | null;
|
26618
|
+
fileExtensions?: Array<string> | null;
|
26619
|
+
dateRange?: {
|
26620
|
+
__typename?: 'DateRange';
|
26621
|
+
from?: any | null;
|
26622
|
+
to?: any | null;
|
26623
|
+
} | null;
|
26624
|
+
creationDateRange?: {
|
26625
|
+
__typename?: 'DateRange';
|
26626
|
+
from?: any | null;
|
26627
|
+
to?: any | null;
|
26628
|
+
} | null;
|
26629
|
+
similarContents?: Array<{
|
26630
|
+
__typename?: 'EntityReference';
|
26631
|
+
id: string;
|
26632
|
+
}> | null;
|
26633
|
+
contents?: Array<{
|
26634
|
+
__typename?: 'EntityReference';
|
26635
|
+
id: string;
|
26636
|
+
}> | null;
|
26637
|
+
feeds?: Array<{
|
26638
|
+
__typename?: 'EntityReference';
|
26639
|
+
id: string;
|
26640
|
+
}> | null;
|
26641
|
+
workflows?: Array<{
|
26642
|
+
__typename?: 'EntityReference';
|
26643
|
+
id: string;
|
26644
|
+
}> | null;
|
26645
|
+
collections?: Array<{
|
26646
|
+
__typename?: 'EntityReference';
|
26647
|
+
id: string;
|
26648
|
+
}> | null;
|
26649
|
+
users?: Array<{
|
26650
|
+
__typename?: 'EntityReference';
|
26651
|
+
id: string;
|
26652
|
+
}> | null;
|
26653
|
+
observations?: Array<{
|
26654
|
+
__typename?: 'ObservationCriteria';
|
26655
|
+
type: ObservableTypes;
|
26656
|
+
states?: Array<EntityState | null> | null;
|
26657
|
+
observable: {
|
26658
|
+
__typename?: 'EntityReference';
|
26659
|
+
id: string;
|
26660
|
+
};
|
26661
|
+
}> | null;
|
26662
|
+
or?: Array<{
|
26663
|
+
__typename?: 'ContentCriteriaLevel';
|
26664
|
+
feeds?: Array<{
|
26665
|
+
__typename?: 'EntityReference';
|
26666
|
+
id: string;
|
26667
|
+
}> | null;
|
26668
|
+
workflows?: Array<{
|
26669
|
+
__typename?: 'EntityReference';
|
26670
|
+
id: string;
|
26671
|
+
}> | null;
|
26672
|
+
collections?: Array<{
|
26673
|
+
__typename?: 'EntityReference';
|
26674
|
+
id: string;
|
26675
|
+
}> | null;
|
26676
|
+
users?: Array<{
|
26677
|
+
__typename?: 'EntityReference';
|
26678
|
+
id: string;
|
26679
|
+
}> | null;
|
26680
|
+
observations?: Array<{
|
26681
|
+
__typename?: 'ObservationCriteria';
|
26682
|
+
type: ObservableTypes;
|
26683
|
+
states?: Array<EntityState | null> | null;
|
26684
|
+
observable: {
|
26685
|
+
__typename?: 'EntityReference';
|
26686
|
+
id: string;
|
26687
|
+
};
|
26688
|
+
}> | null;
|
26689
|
+
}> | null;
|
26690
|
+
and?: Array<{
|
26691
|
+
__typename?: 'ContentCriteriaLevel';
|
26692
|
+
feeds?: Array<{
|
26693
|
+
__typename?: 'EntityReference';
|
26694
|
+
id: string;
|
26695
|
+
}> | null;
|
26696
|
+
workflows?: Array<{
|
26697
|
+
__typename?: 'EntityReference';
|
26698
|
+
id: string;
|
26699
|
+
}> | null;
|
26700
|
+
collections?: Array<{
|
26701
|
+
__typename?: 'EntityReference';
|
26702
|
+
id: string;
|
26703
|
+
}> | null;
|
26704
|
+
users?: Array<{
|
26705
|
+
__typename?: 'EntityReference';
|
26706
|
+
id: string;
|
26707
|
+
}> | null;
|
26708
|
+
observations?: Array<{
|
26709
|
+
__typename?: 'ObservationCriteria';
|
26710
|
+
type: ObservableTypes;
|
26711
|
+
states?: Array<EntityState | null> | null;
|
26712
|
+
observable: {
|
26713
|
+
__typename?: 'EntityReference';
|
26714
|
+
id: string;
|
26715
|
+
};
|
26716
|
+
}> | null;
|
26717
|
+
}> | null;
|
26718
|
+
} | null;
|
26719
|
+
augmentedFilter?: {
|
26720
|
+
__typename?: 'ContentCriteria';
|
26721
|
+
inLast?: any | null;
|
26722
|
+
createdInLast?: any | null;
|
26723
|
+
types?: Array<ContentTypes> | null;
|
26724
|
+
fileTypes?: Array<FileTypes | null> | null;
|
26725
|
+
formats?: Array<string | null> | null;
|
26726
|
+
fileExtensions?: Array<string> | null;
|
26727
|
+
dateRange?: {
|
26728
|
+
__typename?: 'DateRange';
|
26729
|
+
from?: any | null;
|
26730
|
+
to?: any | null;
|
26731
|
+
} | null;
|
26732
|
+
creationDateRange?: {
|
26733
|
+
__typename?: 'DateRange';
|
26734
|
+
from?: any | null;
|
26735
|
+
to?: any | null;
|
26736
|
+
} | null;
|
26737
|
+
similarContents?: Array<{
|
26738
|
+
__typename?: 'EntityReference';
|
26739
|
+
id: string;
|
26740
|
+
}> | null;
|
26741
|
+
contents?: Array<{
|
26742
|
+
__typename?: 'EntityReference';
|
26743
|
+
id: string;
|
26744
|
+
}> | null;
|
26745
|
+
feeds?: Array<{
|
26746
|
+
__typename?: 'EntityReference';
|
26747
|
+
id: string;
|
26748
|
+
}> | null;
|
26749
|
+
workflows?: Array<{
|
26750
|
+
__typename?: 'EntityReference';
|
26751
|
+
id: string;
|
26752
|
+
}> | null;
|
26753
|
+
collections?: Array<{
|
26754
|
+
__typename?: 'EntityReference';
|
26755
|
+
id: string;
|
26756
|
+
}> | null;
|
26757
|
+
users?: Array<{
|
26758
|
+
__typename?: 'EntityReference';
|
26759
|
+
id: string;
|
26760
|
+
}> | null;
|
26761
|
+
observations?: Array<{
|
26762
|
+
__typename?: 'ObservationCriteria';
|
26763
|
+
type: ObservableTypes;
|
26764
|
+
states?: Array<EntityState | null> | null;
|
26765
|
+
observable: {
|
26766
|
+
__typename?: 'EntityReference';
|
26767
|
+
id: string;
|
26768
|
+
};
|
26769
|
+
}> | null;
|
26770
|
+
or?: Array<{
|
26771
|
+
__typename?: 'ContentCriteriaLevel';
|
26772
|
+
feeds?: Array<{
|
26773
|
+
__typename?: 'EntityReference';
|
26774
|
+
id: string;
|
26775
|
+
}> | null;
|
26776
|
+
workflows?: Array<{
|
26777
|
+
__typename?: 'EntityReference';
|
26778
|
+
id: string;
|
26779
|
+
}> | null;
|
26780
|
+
collections?: Array<{
|
26781
|
+
__typename?: 'EntityReference';
|
26782
|
+
id: string;
|
26783
|
+
}> | null;
|
26784
|
+
users?: Array<{
|
26785
|
+
__typename?: 'EntityReference';
|
26786
|
+
id: string;
|
26787
|
+
}> | null;
|
26788
|
+
observations?: Array<{
|
26789
|
+
__typename?: 'ObservationCriteria';
|
26790
|
+
type: ObservableTypes;
|
26791
|
+
states?: Array<EntityState | null> | null;
|
26792
|
+
observable: {
|
26793
|
+
__typename?: 'EntityReference';
|
26794
|
+
id: string;
|
26795
|
+
};
|
26796
|
+
}> | null;
|
26797
|
+
}> | null;
|
26798
|
+
and?: Array<{
|
26799
|
+
__typename?: 'ContentCriteriaLevel';
|
26800
|
+
feeds?: Array<{
|
26801
|
+
__typename?: 'EntityReference';
|
26802
|
+
id: string;
|
26803
|
+
}> | null;
|
26804
|
+
workflows?: Array<{
|
26805
|
+
__typename?: 'EntityReference';
|
26806
|
+
id: string;
|
26807
|
+
}> | null;
|
26808
|
+
collections?: Array<{
|
26809
|
+
__typename?: 'EntityReference';
|
26810
|
+
id: string;
|
26811
|
+
}> | null;
|
26812
|
+
users?: Array<{
|
26813
|
+
__typename?: 'EntityReference';
|
26814
|
+
id: string;
|
26815
|
+
}> | null;
|
26816
|
+
observations?: Array<{
|
26817
|
+
__typename?: 'ObservationCriteria';
|
26818
|
+
type: ObservableTypes;
|
26819
|
+
states?: Array<EntityState | null> | null;
|
26820
|
+
observable: {
|
26821
|
+
__typename?: 'EntityReference';
|
26822
|
+
id: string;
|
26823
|
+
};
|
26824
|
+
}> | null;
|
26825
|
+
}> | null;
|
26826
|
+
} | null;
|
26827
|
+
} | null;
|
26828
|
+
};
|
26829
|
+
export type QueryViewsQueryVariables = Exact<{
|
26830
|
+
filter?: InputMaybe<ViewFilter>;
|
26831
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
26832
|
+
}>;
|
26833
|
+
export type QueryViewsQuery = {
|
26834
|
+
__typename?: 'Query';
|
26835
|
+
views?: {
|
26836
|
+
__typename?: 'QueryResults';
|
26837
|
+
results?: Array<{
|
26838
|
+
__typename?: 'View';
|
26839
|
+
id: string;
|
26840
|
+
name: string;
|
26841
|
+
creationDate: any;
|
26842
|
+
relevance?: number | null;
|
26843
|
+
state: EntityState;
|
26844
|
+
type?: ViewTypes | null;
|
26845
|
+
owner: {
|
26846
|
+
__typename?: 'Owner';
|
26847
|
+
id: string;
|
26848
|
+
};
|
26849
|
+
filter?: {
|
26850
|
+
__typename?: 'ContentCriteria';
|
26851
|
+
inLast?: any | null;
|
26852
|
+
createdInLast?: any | null;
|
26853
|
+
types?: Array<ContentTypes> | null;
|
26854
|
+
fileTypes?: Array<FileTypes | null> | null;
|
26855
|
+
formats?: Array<string | null> | null;
|
26856
|
+
fileExtensions?: Array<string> | null;
|
26857
|
+
dateRange?: {
|
26858
|
+
__typename?: 'DateRange';
|
26859
|
+
from?: any | null;
|
26860
|
+
to?: any | null;
|
26861
|
+
} | null;
|
26862
|
+
creationDateRange?: {
|
26863
|
+
__typename?: 'DateRange';
|
26864
|
+
from?: any | null;
|
26865
|
+
to?: any | null;
|
26866
|
+
} | null;
|
26867
|
+
similarContents?: Array<{
|
26868
|
+
__typename?: 'EntityReference';
|
26869
|
+
id: string;
|
26870
|
+
}> | null;
|
26871
|
+
contents?: Array<{
|
26872
|
+
__typename?: 'EntityReference';
|
26873
|
+
id: string;
|
26874
|
+
}> | null;
|
26875
|
+
feeds?: Array<{
|
26876
|
+
__typename?: 'EntityReference';
|
26877
|
+
id: string;
|
26878
|
+
}> | null;
|
26879
|
+
workflows?: Array<{
|
26880
|
+
__typename?: 'EntityReference';
|
26881
|
+
id: string;
|
26882
|
+
}> | null;
|
26883
|
+
collections?: Array<{
|
26884
|
+
__typename?: 'EntityReference';
|
26885
|
+
id: string;
|
26886
|
+
}> | null;
|
26887
|
+
users?: Array<{
|
26888
|
+
__typename?: 'EntityReference';
|
26889
|
+
id: string;
|
26890
|
+
}> | null;
|
26891
|
+
observations?: Array<{
|
26892
|
+
__typename?: 'ObservationCriteria';
|
26893
|
+
type: ObservableTypes;
|
26894
|
+
states?: Array<EntityState | null> | null;
|
26895
|
+
observable: {
|
26896
|
+
__typename?: 'EntityReference';
|
26897
|
+
id: string;
|
26898
|
+
};
|
26899
|
+
}> | null;
|
26900
|
+
or?: Array<{
|
26901
|
+
__typename?: 'ContentCriteriaLevel';
|
26902
|
+
feeds?: Array<{
|
26903
|
+
__typename?: 'EntityReference';
|
26904
|
+
id: string;
|
26905
|
+
}> | null;
|
26906
|
+
workflows?: Array<{
|
26907
|
+
__typename?: 'EntityReference';
|
26908
|
+
id: string;
|
26909
|
+
}> | null;
|
26910
|
+
collections?: Array<{
|
26911
|
+
__typename?: 'EntityReference';
|
26912
|
+
id: string;
|
26913
|
+
}> | null;
|
26914
|
+
users?: Array<{
|
26915
|
+
__typename?: 'EntityReference';
|
26916
|
+
id: string;
|
26917
|
+
}> | null;
|
26918
|
+
observations?: Array<{
|
26919
|
+
__typename?: 'ObservationCriteria';
|
26920
|
+
type: ObservableTypes;
|
26921
|
+
states?: Array<EntityState | null> | null;
|
26922
|
+
observable: {
|
26923
|
+
__typename?: 'EntityReference';
|
26924
|
+
id: string;
|
26925
|
+
};
|
26926
|
+
}> | null;
|
26927
|
+
}> | null;
|
26928
|
+
and?: Array<{
|
26929
|
+
__typename?: 'ContentCriteriaLevel';
|
26930
|
+
feeds?: Array<{
|
26931
|
+
__typename?: 'EntityReference';
|
26932
|
+
id: string;
|
26933
|
+
}> | null;
|
26934
|
+
workflows?: Array<{
|
26935
|
+
__typename?: 'EntityReference';
|
26936
|
+
id: string;
|
26937
|
+
}> | null;
|
26938
|
+
collections?: Array<{
|
26939
|
+
__typename?: 'EntityReference';
|
26940
|
+
id: string;
|
26941
|
+
}> | null;
|
26942
|
+
users?: Array<{
|
26943
|
+
__typename?: 'EntityReference';
|
26944
|
+
id: string;
|
26945
|
+
}> | null;
|
26946
|
+
observations?: Array<{
|
26947
|
+
__typename?: 'ObservationCriteria';
|
26948
|
+
type: ObservableTypes;
|
26949
|
+
states?: Array<EntityState | null> | null;
|
26950
|
+
observable: {
|
26951
|
+
__typename?: 'EntityReference';
|
26952
|
+
id: string;
|
26953
|
+
};
|
26954
|
+
}> | null;
|
26955
|
+
}> | null;
|
26956
|
+
} | null;
|
26957
|
+
augmentedFilter?: {
|
26958
|
+
__typename?: 'ContentCriteria';
|
26959
|
+
inLast?: any | null;
|
26960
|
+
createdInLast?: any | null;
|
26961
|
+
types?: Array<ContentTypes> | null;
|
26962
|
+
fileTypes?: Array<FileTypes | null> | null;
|
26963
|
+
formats?: Array<string | null> | null;
|
26964
|
+
fileExtensions?: Array<string> | null;
|
26965
|
+
dateRange?: {
|
26966
|
+
__typename?: 'DateRange';
|
26967
|
+
from?: any | null;
|
26968
|
+
to?: any | null;
|
26969
|
+
} | null;
|
26970
|
+
creationDateRange?: {
|
26971
|
+
__typename?: 'DateRange';
|
26972
|
+
from?: any | null;
|
26973
|
+
to?: any | null;
|
26974
|
+
} | null;
|
26975
|
+
similarContents?: Array<{
|
26976
|
+
__typename?: 'EntityReference';
|
26977
|
+
id: string;
|
26978
|
+
}> | null;
|
26979
|
+
contents?: Array<{
|
26980
|
+
__typename?: 'EntityReference';
|
26981
|
+
id: string;
|
26982
|
+
}> | null;
|
26983
|
+
feeds?: Array<{
|
26984
|
+
__typename?: 'EntityReference';
|
26985
|
+
id: string;
|
26986
|
+
}> | null;
|
26987
|
+
workflows?: Array<{
|
26988
|
+
__typename?: 'EntityReference';
|
26989
|
+
id: string;
|
26990
|
+
}> | null;
|
26991
|
+
collections?: Array<{
|
26992
|
+
__typename?: 'EntityReference';
|
26993
|
+
id: string;
|
26994
|
+
}> | null;
|
26995
|
+
users?: Array<{
|
26996
|
+
__typename?: 'EntityReference';
|
26997
|
+
id: string;
|
26998
|
+
}> | null;
|
26999
|
+
observations?: Array<{
|
27000
|
+
__typename?: 'ObservationCriteria';
|
27001
|
+
type: ObservableTypes;
|
27002
|
+
states?: Array<EntityState | null> | null;
|
27003
|
+
observable: {
|
27004
|
+
__typename?: 'EntityReference';
|
27005
|
+
id: string;
|
27006
|
+
};
|
27007
|
+
}> | null;
|
27008
|
+
or?: Array<{
|
27009
|
+
__typename?: 'ContentCriteriaLevel';
|
27010
|
+
feeds?: Array<{
|
27011
|
+
__typename?: 'EntityReference';
|
27012
|
+
id: string;
|
27013
|
+
}> | null;
|
27014
|
+
workflows?: Array<{
|
27015
|
+
__typename?: 'EntityReference';
|
27016
|
+
id: string;
|
27017
|
+
}> | null;
|
27018
|
+
collections?: Array<{
|
27019
|
+
__typename?: 'EntityReference';
|
27020
|
+
id: string;
|
27021
|
+
}> | null;
|
27022
|
+
users?: Array<{
|
27023
|
+
__typename?: 'EntityReference';
|
27024
|
+
id: string;
|
27025
|
+
}> | null;
|
27026
|
+
observations?: Array<{
|
27027
|
+
__typename?: 'ObservationCriteria';
|
27028
|
+
type: ObservableTypes;
|
27029
|
+
states?: Array<EntityState | null> | null;
|
27030
|
+
observable: {
|
27031
|
+
__typename?: 'EntityReference';
|
27032
|
+
id: string;
|
27033
|
+
};
|
27034
|
+
}> | null;
|
27035
|
+
}> | null;
|
27036
|
+
and?: Array<{
|
27037
|
+
__typename?: 'ContentCriteriaLevel';
|
27038
|
+
feeds?: Array<{
|
27039
|
+
__typename?: 'EntityReference';
|
27040
|
+
id: string;
|
27041
|
+
}> | null;
|
27042
|
+
workflows?: Array<{
|
27043
|
+
__typename?: 'EntityReference';
|
27044
|
+
id: string;
|
27045
|
+
}> | null;
|
27046
|
+
collections?: Array<{
|
27047
|
+
__typename?: 'EntityReference';
|
27048
|
+
id: string;
|
27049
|
+
}> | null;
|
27050
|
+
users?: Array<{
|
27051
|
+
__typename?: 'EntityReference';
|
27052
|
+
id: string;
|
27053
|
+
}> | null;
|
27054
|
+
observations?: Array<{
|
27055
|
+
__typename?: 'ObservationCriteria';
|
27056
|
+
type: ObservableTypes;
|
27057
|
+
states?: Array<EntityState | null> | null;
|
27058
|
+
observable: {
|
27059
|
+
__typename?: 'EntityReference';
|
27060
|
+
id: string;
|
27061
|
+
};
|
27062
|
+
}> | null;
|
27063
|
+
}> | null;
|
27064
|
+
} | null;
|
27065
|
+
}> | null;
|
27066
|
+
} | null;
|
27067
|
+
};
|
27068
|
+
export type UpdateViewMutationVariables = Exact<{
|
27069
|
+
view: ViewUpdateInput;
|
27070
|
+
}>;
|
27071
|
+
export type UpdateViewMutation = {
|
27072
|
+
__typename?: 'Mutation';
|
27073
|
+
updateView?: {
|
27074
|
+
__typename?: 'View';
|
27075
|
+
id: string;
|
27076
|
+
name: string;
|
27077
|
+
state: EntityState;
|
27078
|
+
type?: ViewTypes | null;
|
27079
|
+
filter?: {
|
27080
|
+
__typename?: 'ContentCriteria';
|
27081
|
+
inLast?: any | null;
|
27082
|
+
createdInLast?: any | null;
|
27083
|
+
types?: Array<ContentTypes> | null;
|
27084
|
+
fileTypes?: Array<FileTypes | null> | null;
|
27085
|
+
formats?: Array<string | null> | null;
|
27086
|
+
fileExtensions?: Array<string> | null;
|
27087
|
+
dateRange?: {
|
27088
|
+
__typename?: 'DateRange';
|
27089
|
+
from?: any | null;
|
27090
|
+
to?: any | null;
|
27091
|
+
} | null;
|
27092
|
+
creationDateRange?: {
|
27093
|
+
__typename?: 'DateRange';
|
27094
|
+
from?: any | null;
|
27095
|
+
to?: any | null;
|
27096
|
+
} | null;
|
27097
|
+
similarContents?: Array<{
|
27098
|
+
__typename?: 'EntityReference';
|
27099
|
+
id: string;
|
27100
|
+
}> | null;
|
27101
|
+
contents?: Array<{
|
27102
|
+
__typename?: 'EntityReference';
|
27103
|
+
id: string;
|
27104
|
+
}> | null;
|
27105
|
+
feeds?: Array<{
|
27106
|
+
__typename?: 'EntityReference';
|
27107
|
+
id: string;
|
27108
|
+
}> | null;
|
27109
|
+
workflows?: Array<{
|
27110
|
+
__typename?: 'EntityReference';
|
27111
|
+
id: string;
|
27112
|
+
}> | null;
|
27113
|
+
collections?: Array<{
|
27114
|
+
__typename?: 'EntityReference';
|
27115
|
+
id: string;
|
27116
|
+
}> | null;
|
27117
|
+
users?: Array<{
|
27118
|
+
__typename?: 'EntityReference';
|
27119
|
+
id: string;
|
27120
|
+
}> | null;
|
27121
|
+
observations?: Array<{
|
27122
|
+
__typename?: 'ObservationCriteria';
|
27123
|
+
type: ObservableTypes;
|
27124
|
+
states?: Array<EntityState | null> | null;
|
27125
|
+
observable: {
|
27126
|
+
__typename?: 'EntityReference';
|
27127
|
+
id: string;
|
27128
|
+
};
|
27129
|
+
}> | null;
|
27130
|
+
or?: Array<{
|
27131
|
+
__typename?: 'ContentCriteriaLevel';
|
27132
|
+
feeds?: Array<{
|
27133
|
+
__typename?: 'EntityReference';
|
27134
|
+
id: string;
|
27135
|
+
}> | null;
|
27136
|
+
workflows?: Array<{
|
27137
|
+
__typename?: 'EntityReference';
|
27138
|
+
id: string;
|
27139
|
+
}> | null;
|
27140
|
+
collections?: Array<{
|
27141
|
+
__typename?: 'EntityReference';
|
27142
|
+
id: string;
|
27143
|
+
}> | null;
|
27144
|
+
users?: Array<{
|
27145
|
+
__typename?: 'EntityReference';
|
27146
|
+
id: string;
|
27147
|
+
}> | null;
|
27148
|
+
observations?: Array<{
|
27149
|
+
__typename?: 'ObservationCriteria';
|
27150
|
+
type: ObservableTypes;
|
27151
|
+
states?: Array<EntityState | null> | null;
|
27152
|
+
observable: {
|
27153
|
+
__typename?: 'EntityReference';
|
27154
|
+
id: string;
|
27155
|
+
};
|
27156
|
+
}> | null;
|
27157
|
+
}> | null;
|
27158
|
+
and?: Array<{
|
27159
|
+
__typename?: 'ContentCriteriaLevel';
|
27160
|
+
feeds?: Array<{
|
27161
|
+
__typename?: 'EntityReference';
|
27162
|
+
id: string;
|
27163
|
+
}> | null;
|
27164
|
+
workflows?: Array<{
|
27165
|
+
__typename?: 'EntityReference';
|
27166
|
+
id: string;
|
27167
|
+
}> | null;
|
27168
|
+
collections?: Array<{
|
27169
|
+
__typename?: 'EntityReference';
|
27170
|
+
id: string;
|
27171
|
+
}> | null;
|
27172
|
+
users?: Array<{
|
27173
|
+
__typename?: 'EntityReference';
|
27174
|
+
id: string;
|
27175
|
+
}> | null;
|
27176
|
+
observations?: Array<{
|
27177
|
+
__typename?: 'ObservationCriteria';
|
27178
|
+
type: ObservableTypes;
|
27179
|
+
states?: Array<EntityState | null> | null;
|
27180
|
+
observable: {
|
27181
|
+
__typename?: 'EntityReference';
|
27182
|
+
id: string;
|
27183
|
+
};
|
27184
|
+
}> | null;
|
27185
|
+
}> | null;
|
27186
|
+
} | null;
|
27187
|
+
augmentedFilter?: {
|
27188
|
+
__typename?: 'ContentCriteria';
|
27189
|
+
inLast?: any | null;
|
27190
|
+
createdInLast?: any | null;
|
27191
|
+
types?: Array<ContentTypes> | null;
|
27192
|
+
fileTypes?: Array<FileTypes | null> | null;
|
27193
|
+
formats?: Array<string | null> | null;
|
27194
|
+
fileExtensions?: Array<string> | null;
|
27195
|
+
dateRange?: {
|
27196
|
+
__typename?: 'DateRange';
|
27197
|
+
from?: any | null;
|
27198
|
+
to?: any | null;
|
27199
|
+
} | null;
|
27200
|
+
creationDateRange?: {
|
27201
|
+
__typename?: 'DateRange';
|
27202
|
+
from?: any | null;
|
27203
|
+
to?: any | null;
|
27204
|
+
} | null;
|
27205
|
+
similarContents?: Array<{
|
27206
|
+
__typename?: 'EntityReference';
|
27207
|
+
id: string;
|
27208
|
+
}> | null;
|
27209
|
+
contents?: Array<{
|
27210
|
+
__typename?: 'EntityReference';
|
27211
|
+
id: string;
|
27212
|
+
}> | null;
|
27213
|
+
feeds?: Array<{
|
27214
|
+
__typename?: 'EntityReference';
|
27215
|
+
id: string;
|
27216
|
+
}> | null;
|
27217
|
+
workflows?: Array<{
|
27218
|
+
__typename?: 'EntityReference';
|
27219
|
+
id: string;
|
27220
|
+
}> | null;
|
27221
|
+
collections?: Array<{
|
27222
|
+
__typename?: 'EntityReference';
|
27223
|
+
id: string;
|
27224
|
+
}> | null;
|
27225
|
+
users?: Array<{
|
27226
|
+
__typename?: 'EntityReference';
|
27227
|
+
id: string;
|
27228
|
+
}> | null;
|
27229
|
+
observations?: Array<{
|
27230
|
+
__typename?: 'ObservationCriteria';
|
27231
|
+
type: ObservableTypes;
|
27232
|
+
states?: Array<EntityState | null> | null;
|
27233
|
+
observable: {
|
27234
|
+
__typename?: 'EntityReference';
|
27235
|
+
id: string;
|
27236
|
+
};
|
27237
|
+
}> | null;
|
27238
|
+
or?: Array<{
|
27239
|
+
__typename?: 'ContentCriteriaLevel';
|
27240
|
+
feeds?: Array<{
|
27241
|
+
__typename?: 'EntityReference';
|
27242
|
+
id: string;
|
27243
|
+
}> | null;
|
27244
|
+
workflows?: Array<{
|
27245
|
+
__typename?: 'EntityReference';
|
27246
|
+
id: string;
|
27247
|
+
}> | null;
|
27248
|
+
collections?: Array<{
|
27249
|
+
__typename?: 'EntityReference';
|
27250
|
+
id: string;
|
27251
|
+
}> | null;
|
27252
|
+
users?: Array<{
|
27253
|
+
__typename?: 'EntityReference';
|
27254
|
+
id: string;
|
27255
|
+
}> | null;
|
27256
|
+
observations?: Array<{
|
27257
|
+
__typename?: 'ObservationCriteria';
|
27258
|
+
type: ObservableTypes;
|
27259
|
+
states?: Array<EntityState | null> | null;
|
27260
|
+
observable: {
|
27261
|
+
__typename?: 'EntityReference';
|
27262
|
+
id: string;
|
27263
|
+
};
|
27264
|
+
}> | null;
|
27265
|
+
}> | null;
|
27266
|
+
and?: Array<{
|
27267
|
+
__typename?: 'ContentCriteriaLevel';
|
27268
|
+
feeds?: Array<{
|
27269
|
+
__typename?: 'EntityReference';
|
27270
|
+
id: string;
|
27271
|
+
}> | null;
|
27272
|
+
workflows?: Array<{
|
27273
|
+
__typename?: 'EntityReference';
|
27274
|
+
id: string;
|
27275
|
+
}> | null;
|
27276
|
+
collections?: Array<{
|
27277
|
+
__typename?: 'EntityReference';
|
27278
|
+
id: string;
|
27279
|
+
}> | null;
|
27280
|
+
users?: Array<{
|
27281
|
+
__typename?: 'EntityReference';
|
27282
|
+
id: string;
|
27283
|
+
}> | null;
|
27284
|
+
observations?: Array<{
|
27285
|
+
__typename?: 'ObservationCriteria';
|
27286
|
+
type: ObservableTypes;
|
27287
|
+
states?: Array<EntityState | null> | null;
|
27288
|
+
observable: {
|
27289
|
+
__typename?: 'EntityReference';
|
27290
|
+
id: string;
|
27291
|
+
};
|
27292
|
+
}> | null;
|
27293
|
+
}> | null;
|
27294
|
+
} | null;
|
27295
|
+
} | null;
|
27296
|
+
};
|
27297
|
+
export type UpsertViewMutationVariables = Exact<{
|
27298
|
+
view: ViewInput;
|
27299
|
+
}>;
|
27300
|
+
export type UpsertViewMutation = {
|
27301
|
+
__typename?: 'Mutation';
|
27302
|
+
upsertView?: {
|
27303
|
+
__typename?: 'View';
|
27304
|
+
id: string;
|
27305
|
+
name: string;
|
27306
|
+
state: EntityState;
|
27307
|
+
type?: ViewTypes | null;
|
27308
|
+
filter?: {
|
27309
|
+
__typename?: 'ContentCriteria';
|
27310
|
+
inLast?: any | null;
|
27311
|
+
createdInLast?: any | null;
|
27312
|
+
types?: Array<ContentTypes> | null;
|
27313
|
+
fileTypes?: Array<FileTypes | null> | null;
|
27314
|
+
formats?: Array<string | null> | null;
|
27315
|
+
fileExtensions?: Array<string> | null;
|
27316
|
+
dateRange?: {
|
27317
|
+
__typename?: 'DateRange';
|
27318
|
+
from?: any | null;
|
27319
|
+
to?: any | null;
|
27320
|
+
} | null;
|
27321
|
+
creationDateRange?: {
|
27322
|
+
__typename?: 'DateRange';
|
27323
|
+
from?: any | null;
|
27324
|
+
to?: any | null;
|
27325
|
+
} | null;
|
27326
|
+
similarContents?: Array<{
|
27327
|
+
__typename?: 'EntityReference';
|
27328
|
+
id: string;
|
27329
|
+
}> | null;
|
27330
|
+
contents?: Array<{
|
27331
|
+
__typename?: 'EntityReference';
|
27332
|
+
id: string;
|
27333
|
+
}> | null;
|
27334
|
+
feeds?: Array<{
|
27335
|
+
__typename?: 'EntityReference';
|
27336
|
+
id: string;
|
27337
|
+
}> | null;
|
27338
|
+
workflows?: Array<{
|
27339
|
+
__typename?: 'EntityReference';
|
27340
|
+
id: string;
|
27341
|
+
}> | null;
|
27342
|
+
collections?: Array<{
|
27343
|
+
__typename?: 'EntityReference';
|
27344
|
+
id: string;
|
27345
|
+
}> | null;
|
27346
|
+
users?: Array<{
|
27347
|
+
__typename?: 'EntityReference';
|
27348
|
+
id: string;
|
27349
|
+
}> | null;
|
27350
|
+
observations?: Array<{
|
27351
|
+
__typename?: 'ObservationCriteria';
|
27352
|
+
type: ObservableTypes;
|
27353
|
+
states?: Array<EntityState | null> | null;
|
27354
|
+
observable: {
|
27355
|
+
__typename?: 'EntityReference';
|
27356
|
+
id: string;
|
27357
|
+
};
|
27358
|
+
}> | null;
|
27359
|
+
or?: Array<{
|
27360
|
+
__typename?: 'ContentCriteriaLevel';
|
27361
|
+
feeds?: Array<{
|
27362
|
+
__typename?: 'EntityReference';
|
27363
|
+
id: string;
|
27364
|
+
}> | null;
|
27365
|
+
workflows?: Array<{
|
27366
|
+
__typename?: 'EntityReference';
|
27367
|
+
id: string;
|
27368
|
+
}> | null;
|
27369
|
+
collections?: Array<{
|
27370
|
+
__typename?: 'EntityReference';
|
27371
|
+
id: string;
|
27372
|
+
}> | null;
|
27373
|
+
users?: Array<{
|
27374
|
+
__typename?: 'EntityReference';
|
27375
|
+
id: string;
|
27376
|
+
}> | null;
|
27377
|
+
observations?: Array<{
|
27378
|
+
__typename?: 'ObservationCriteria';
|
27379
|
+
type: ObservableTypes;
|
27380
|
+
states?: Array<EntityState | null> | null;
|
27381
|
+
observable: {
|
27382
|
+
__typename?: 'EntityReference';
|
27383
|
+
id: string;
|
27384
|
+
};
|
27385
|
+
}> | null;
|
27386
|
+
}> | null;
|
27387
|
+
and?: Array<{
|
27388
|
+
__typename?: 'ContentCriteriaLevel';
|
27389
|
+
feeds?: Array<{
|
27390
|
+
__typename?: 'EntityReference';
|
27391
|
+
id: string;
|
27392
|
+
}> | null;
|
27393
|
+
workflows?: Array<{
|
27394
|
+
__typename?: 'EntityReference';
|
27395
|
+
id: string;
|
27396
|
+
}> | null;
|
27397
|
+
collections?: Array<{
|
27398
|
+
__typename?: 'EntityReference';
|
27399
|
+
id: string;
|
27400
|
+
}> | null;
|
27401
|
+
users?: Array<{
|
27402
|
+
__typename?: 'EntityReference';
|
27403
|
+
id: string;
|
27404
|
+
}> | null;
|
27405
|
+
observations?: Array<{
|
27406
|
+
__typename?: 'ObservationCriteria';
|
27407
|
+
type: ObservableTypes;
|
27408
|
+
states?: Array<EntityState | null> | null;
|
27409
|
+
observable: {
|
27410
|
+
__typename?: 'EntityReference';
|
27411
|
+
id: string;
|
27412
|
+
};
|
27413
|
+
}> | null;
|
27414
|
+
}> | null;
|
27415
|
+
} | null;
|
27416
|
+
augmentedFilter?: {
|
27417
|
+
__typename?: 'ContentCriteria';
|
27418
|
+
inLast?: any | null;
|
27419
|
+
createdInLast?: any | null;
|
27420
|
+
types?: Array<ContentTypes> | null;
|
27421
|
+
fileTypes?: Array<FileTypes | null> | null;
|
27422
|
+
formats?: Array<string | null> | null;
|
27423
|
+
fileExtensions?: Array<string> | null;
|
27424
|
+
dateRange?: {
|
27425
|
+
__typename?: 'DateRange';
|
27426
|
+
from?: any | null;
|
27427
|
+
to?: any | null;
|
27428
|
+
} | null;
|
27429
|
+
creationDateRange?: {
|
27430
|
+
__typename?: 'DateRange';
|
27431
|
+
from?: any | null;
|
27432
|
+
to?: any | null;
|
27433
|
+
} | null;
|
27434
|
+
similarContents?: Array<{
|
27435
|
+
__typename?: 'EntityReference';
|
27436
|
+
id: string;
|
27437
|
+
}> | null;
|
27438
|
+
contents?: Array<{
|
27439
|
+
__typename?: 'EntityReference';
|
27440
|
+
id: string;
|
27441
|
+
}> | null;
|
27442
|
+
feeds?: Array<{
|
27443
|
+
__typename?: 'EntityReference';
|
27444
|
+
id: string;
|
27445
|
+
}> | null;
|
27446
|
+
workflows?: Array<{
|
27447
|
+
__typename?: 'EntityReference';
|
27448
|
+
id: string;
|
27449
|
+
}> | null;
|
27450
|
+
collections?: Array<{
|
27451
|
+
__typename?: 'EntityReference';
|
27452
|
+
id: string;
|
27453
|
+
}> | null;
|
27454
|
+
users?: Array<{
|
27455
|
+
__typename?: 'EntityReference';
|
27456
|
+
id: string;
|
27457
|
+
}> | null;
|
27458
|
+
observations?: Array<{
|
27459
|
+
__typename?: 'ObservationCriteria';
|
27460
|
+
type: ObservableTypes;
|
27461
|
+
states?: Array<EntityState | null> | null;
|
27462
|
+
observable: {
|
27463
|
+
__typename?: 'EntityReference';
|
27464
|
+
id: string;
|
27465
|
+
};
|
27466
|
+
}> | null;
|
27467
|
+
or?: Array<{
|
27468
|
+
__typename?: 'ContentCriteriaLevel';
|
27469
|
+
feeds?: Array<{
|
27470
|
+
__typename?: 'EntityReference';
|
27471
|
+
id: string;
|
27472
|
+
}> | null;
|
27473
|
+
workflows?: Array<{
|
27474
|
+
__typename?: 'EntityReference';
|
27475
|
+
id: string;
|
27476
|
+
}> | null;
|
27477
|
+
collections?: Array<{
|
27478
|
+
__typename?: 'EntityReference';
|
27479
|
+
id: string;
|
27480
|
+
}> | null;
|
27481
|
+
users?: Array<{
|
27482
|
+
__typename?: 'EntityReference';
|
27483
|
+
id: string;
|
27484
|
+
}> | null;
|
27485
|
+
observations?: Array<{
|
27486
|
+
__typename?: 'ObservationCriteria';
|
27487
|
+
type: ObservableTypes;
|
27488
|
+
states?: Array<EntityState | null> | null;
|
27489
|
+
observable: {
|
27490
|
+
__typename?: 'EntityReference';
|
27491
|
+
id: string;
|
27492
|
+
};
|
27493
|
+
}> | null;
|
27494
|
+
}> | null;
|
27495
|
+
and?: Array<{
|
27496
|
+
__typename?: 'ContentCriteriaLevel';
|
27497
|
+
feeds?: Array<{
|
27498
|
+
__typename?: 'EntityReference';
|
27499
|
+
id: string;
|
27500
|
+
}> | null;
|
27501
|
+
workflows?: Array<{
|
27502
|
+
__typename?: 'EntityReference';
|
27503
|
+
id: string;
|
27504
|
+
}> | null;
|
27505
|
+
collections?: Array<{
|
27506
|
+
__typename?: 'EntityReference';
|
27507
|
+
id: string;
|
27508
|
+
}> | null;
|
27509
|
+
users?: Array<{
|
27510
|
+
__typename?: 'EntityReference';
|
27511
|
+
id: string;
|
27512
|
+
}> | null;
|
27513
|
+
observations?: Array<{
|
27514
|
+
__typename?: 'ObservationCriteria';
|
27515
|
+
type: ObservableTypes;
|
27516
|
+
states?: Array<EntityState | null> | null;
|
27517
|
+
observable: {
|
27518
|
+
__typename?: 'EntityReference';
|
27519
|
+
id: string;
|
27520
|
+
};
|
27521
|
+
}> | null;
|
27522
|
+
}> | null;
|
27523
|
+
} | null;
|
27524
|
+
} | null;
|
27525
|
+
};
|
27526
|
+
export type ViewExistsQueryVariables = Exact<{
|
27527
|
+
filter?: InputMaybe<ViewFilter>;
|
27528
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
27529
|
+
}>;
|
27530
|
+
export type ViewExistsQuery = {
|
27531
|
+
__typename?: 'Query';
|
27532
|
+
viewExists?: {
|
27533
|
+
__typename?: 'BooleanResult';
|
27534
|
+
result?: boolean | null;
|
27535
|
+
} | null;
|
27536
|
+
};
|
25748
27537
|
export type CountWorkflowsQueryVariables = Exact<{
|
25749
27538
|
filter?: InputMaybe<WorkflowFilter>;
|
25750
27539
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -25969,6 +27758,8 @@ export type CreateWorkflowMutation = {
|
|
25969
27758
|
excludedLinks?: Array<LinkTypes> | null;
|
25970
27759
|
allowedFiles?: Array<FileTypes> | null;
|
25971
27760
|
excludedFiles?: Array<FileTypes> | null;
|
27761
|
+
allowedContentTypes?: Array<ContentTypes> | null;
|
27762
|
+
excludedContentTypes?: Array<ContentTypes> | null;
|
25972
27763
|
allowContentDomain?: boolean | null;
|
25973
27764
|
maximumLinks?: number | null;
|
25974
27765
|
} | null;
|
@@ -26281,6 +28072,8 @@ export type GetWorkflowQuery = {
|
|
26281
28072
|
excludedLinks?: Array<LinkTypes> | null;
|
26282
28073
|
allowedFiles?: Array<FileTypes> | null;
|
26283
28074
|
excludedFiles?: Array<FileTypes> | null;
|
28075
|
+
allowedContentTypes?: Array<ContentTypes> | null;
|
28076
|
+
excludedContentTypes?: Array<ContentTypes> | null;
|
26284
28077
|
allowContentDomain?: boolean | null;
|
26285
28078
|
maximumLinks?: number | null;
|
26286
28079
|
} | null;
|
@@ -26559,6 +28352,8 @@ export type QueryWorkflowsQuery = {
|
|
26559
28352
|
excludedLinks?: Array<LinkTypes> | null;
|
26560
28353
|
allowedFiles?: Array<FileTypes> | null;
|
26561
28354
|
excludedFiles?: Array<FileTypes> | null;
|
28355
|
+
allowedContentTypes?: Array<ContentTypes> | null;
|
28356
|
+
excludedContentTypes?: Array<ContentTypes> | null;
|
26562
28357
|
allowContentDomain?: boolean | null;
|
26563
28358
|
maximumLinks?: number | null;
|
26564
28359
|
} | null;
|
@@ -26829,6 +28624,8 @@ export type UpdateWorkflowMutation = {
|
|
26829
28624
|
excludedLinks?: Array<LinkTypes> | null;
|
26830
28625
|
allowedFiles?: Array<FileTypes> | null;
|
26831
28626
|
excludedFiles?: Array<FileTypes> | null;
|
28627
|
+
allowedContentTypes?: Array<ContentTypes> | null;
|
28628
|
+
excludedContentTypes?: Array<ContentTypes> | null;
|
26832
28629
|
allowContentDomain?: boolean | null;
|
26833
28630
|
maximumLinks?: number | null;
|
26834
28631
|
} | null;
|
@@ -27098,6 +28895,8 @@ export type UpsertWorkflowMutation = {
|
|
27098
28895
|
excludedLinks?: Array<LinkTypes> | null;
|
27099
28896
|
allowedFiles?: Array<FileTypes> | null;
|
27100
28897
|
excludedFiles?: Array<FileTypes> | null;
|
28898
|
+
allowedContentTypes?: Array<ContentTypes> | null;
|
28899
|
+
excludedContentTypes?: Array<ContentTypes> | null;
|
27101
28900
|
allowContentDomain?: boolean | null;
|
27102
28901
|
maximumLinks?: number | null;
|
27103
28902
|
} | null;
|