graphlit-client 1.0.20250105001 → 1.0.20250110001
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.
@@ -528,6 +528,36 @@ export type AudioMetadataInput = {
|
|
528
528
|
/** The audio title. */
|
529
529
|
title?: InputMaybe<Scalars['String']['input']>;
|
530
530
|
};
|
531
|
+
/** Represents an authentication connector. */
|
532
|
+
export type AuthenticationConnector = {
|
533
|
+
__typename?: 'AuthenticationConnector';
|
534
|
+
/** Google authentication properties. */
|
535
|
+
google?: Maybe<GoogleAuthenticationProperties>;
|
536
|
+
/** Microsoft authentication properties. */
|
537
|
+
microsoft?: Maybe<MicrosoftAuthenticationProperties>;
|
538
|
+
/** Authentication service type. */
|
539
|
+
type: AuthenticationServiceTypes;
|
540
|
+
};
|
541
|
+
/** Represents an authentication connector. */
|
542
|
+
export type AuthenticationConnectorInput = {
|
543
|
+
/** Google authentication properties. */
|
544
|
+
google?: InputMaybe<GoogleAuthenticationPropertiesInput>;
|
545
|
+
/** Microsoft authentication properties. */
|
546
|
+
microsoft?: InputMaybe<MicrosoftAuthenticationPropertiesInput>;
|
547
|
+
/** Authentication service type. */
|
548
|
+
type: AuthenticationServiceTypes;
|
549
|
+
};
|
550
|
+
/** Authentication service type */
|
551
|
+
export declare enum AuthenticationServiceTypes {
|
552
|
+
/** Auth0 authentication service */
|
553
|
+
Auth0 = "AUTH0",
|
554
|
+
/** Clerk authentication service */
|
555
|
+
Clerk = "CLERK",
|
556
|
+
/** Google authentication service */
|
557
|
+
Google = "GOOGLE",
|
558
|
+
/** Microsoft Graph authentication service */
|
559
|
+
MicrosoftGraph = "MICROSOFT_GRAPH"
|
560
|
+
}
|
531
561
|
/** Represents Azure AI model properties. */
|
532
562
|
export type AzureAiModelProperties = {
|
533
563
|
__typename?: 'AzureAIModelProperties';
|
@@ -1177,6 +1207,8 @@ export type CollectionFilter = {
|
|
1177
1207
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
1178
1208
|
/** The sort direction for query results. */
|
1179
1209
|
direction?: InputMaybe<OrderDirectionTypes>;
|
1210
|
+
/** Whether to disable inheritance from project to tenant, upon collection retrieval. Defaults to False. */
|
1211
|
+
disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
|
1180
1212
|
/** Filter collection(s) by their unique ID. */
|
1181
1213
|
id?: InputMaybe<Scalars['ID']['input']>;
|
1182
1214
|
/** Limit the number of collection(s) to be returned. */
|
@@ -1229,6 +1261,84 @@ export type CollectionUpdateInput = {
|
|
1229
1261
|
/** The collection type. */
|
1230
1262
|
type?: InputMaybe<CollectionTypes>;
|
1231
1263
|
};
|
1264
|
+
/** Represents a connector. */
|
1265
|
+
export type Connector = {
|
1266
|
+
__typename?: 'Connector';
|
1267
|
+
authentication?: Maybe<AuthenticationConnector>;
|
1268
|
+
/** The creation date of the connector. */
|
1269
|
+
creationDate: Scalars['DateTime']['output'];
|
1270
|
+
/** The ID of the connector. */
|
1271
|
+
id: Scalars['ID']['output'];
|
1272
|
+
integration?: Maybe<IntegrationConnector>;
|
1273
|
+
/** The modified date of the connector. */
|
1274
|
+
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
1275
|
+
/** The name of the connector. */
|
1276
|
+
name: Scalars['String']['output'];
|
1277
|
+
/** The owner of the connector. */
|
1278
|
+
owner: Owner;
|
1279
|
+
/** The relevance score of the connector. */
|
1280
|
+
relevance?: Maybe<Scalars['Float']['output']>;
|
1281
|
+
/** The state of the connector (i.e. created, finished). */
|
1282
|
+
state: EntityState;
|
1283
|
+
/** The connector type. */
|
1284
|
+
type?: Maybe<ConnectorTypes>;
|
1285
|
+
};
|
1286
|
+
/** Represents a filter for connectors. */
|
1287
|
+
export type ConnectorFilter = {
|
1288
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return connector(s) created in the last 24 hours. */
|
1289
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
1290
|
+
/** Filter connector(s) by their creation date range. */
|
1291
|
+
creationDateRange?: InputMaybe<DateRangeFilter>;
|
1292
|
+
/** The sort direction for query results. */
|
1293
|
+
direction?: InputMaybe<OrderDirectionTypes>;
|
1294
|
+
/** Filter connector(s) by their unique ID. */
|
1295
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
1296
|
+
/** Limit the number of connector(s) to be returned. */
|
1297
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
1298
|
+
/** Filter connector(s) by their name. */
|
1299
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
1300
|
+
/** Skip the specified number of connector(s) from the beginning of the result set. Only supported on keyword search. */
|
1301
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
1302
|
+
/** The sort order for query results. */
|
1303
|
+
orderBy?: InputMaybe<OrderByTypes>;
|
1304
|
+
/** Filter connector(s) by searching for specific text. */
|
1305
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
1306
|
+
/** Filter connector(s) by their states. */
|
1307
|
+
states?: InputMaybe<Array<EntityState>>;
|
1308
|
+
/** Filter by connector types. */
|
1309
|
+
types?: InputMaybe<Array<ConnectorTypes>>;
|
1310
|
+
};
|
1311
|
+
/** Represents a connector. */
|
1312
|
+
export type ConnectorInput = {
|
1313
|
+
authentication?: InputMaybe<AuthenticationConnectorInput>;
|
1314
|
+
integration?: InputMaybe<IntegrationConnectorInput>;
|
1315
|
+
/** The name of the connector. */
|
1316
|
+
name: Scalars['String']['input'];
|
1317
|
+
/** The connector type. */
|
1318
|
+
type: ConnectorTypes;
|
1319
|
+
};
|
1320
|
+
/** Represents connector query results. */
|
1321
|
+
export type ConnectorResults = {
|
1322
|
+
__typename?: 'ConnectorResults';
|
1323
|
+
/** The list of connector query results. */
|
1324
|
+
results?: Maybe<Array<Maybe<Connector>>>;
|
1325
|
+
};
|
1326
|
+
/** Connector type */
|
1327
|
+
export declare enum ConnectorTypes {
|
1328
|
+
/** Authentication connector */
|
1329
|
+
Authentication = "AUTHENTICATION",
|
1330
|
+
/** Integration connector */
|
1331
|
+
Integration = "INTEGRATION"
|
1332
|
+
}
|
1333
|
+
/** Represents a connector. */
|
1334
|
+
export type ConnectorUpdateInput = {
|
1335
|
+
authentication?: InputMaybe<AuthenticationConnectorInput>;
|
1336
|
+
/** The ID of the connector to update. */
|
1337
|
+
id: Scalars['ID']['input'];
|
1338
|
+
integration?: InputMaybe<IntegrationConnectorInput>;
|
1339
|
+
/** The name of the connector. */
|
1340
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
1341
|
+
};
|
1232
1342
|
/** Represents content. */
|
1233
1343
|
export type Content = {
|
1234
1344
|
__typename?: 'Content';
|
@@ -1565,6 +1675,8 @@ export type ContentFilter = {
|
|
1565
1675
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
1566
1676
|
/** The sort direction for query results. */
|
1567
1677
|
direction?: InputMaybe<OrderDirectionTypes>;
|
1678
|
+
/** Whether to disable inheritance from project to tenant, upon content retrieval. Defaults to False. */
|
1679
|
+
disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
|
1568
1680
|
/** Filter by feeds. */
|
1569
1681
|
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
1570
1682
|
/** Filter by file extensions. */
|
@@ -1956,8 +2068,12 @@ export type ConversationMessage = {
|
|
1956
2068
|
citations?: Maybe<Array<Maybe<ConversationCitation>>>;
|
1957
2069
|
/** The elapsed time for the model to complete the prompt, only provided with assistant role. */
|
1958
2070
|
completionTime?: Maybe<Scalars['TimeSpan']['output']>;
|
2071
|
+
/** The Base64-encoded image which will be supplied to the LLM with the conversation message, optional. */
|
2072
|
+
data?: Maybe<Scalars['String']['output']>;
|
1959
2073
|
/** The conversation message. */
|
1960
2074
|
message?: Maybe<Scalars['String']['output']>;
|
2075
|
+
/** The MIME type of the Base64-encoded image, optional. */
|
2076
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
1961
2077
|
/** The LLM model description, only provided with assistant role. */
|
1962
2078
|
model?: Maybe<Scalars['String']['output']>;
|
1963
2079
|
/** The LLM service type, only provided with assistant role. */
|
@@ -1977,8 +2093,12 @@ export type ConversationMessage = {
|
|
1977
2093
|
export type ConversationMessageInput = {
|
1978
2094
|
/** The conversation message author. */
|
1979
2095
|
author?: InputMaybe<Scalars['String']['input']>;
|
2096
|
+
/** The Base64-encoded image which will be supplied to the LLM with the conversation message, optional. */
|
2097
|
+
data?: InputMaybe<Scalars['String']['input']>;
|
1980
2098
|
/** The conversation message. */
|
1981
2099
|
message: Scalars['String']['input'];
|
2100
|
+
/** The MIME type of the Base64-encoded image, optional. */
|
2101
|
+
mimeType?: InputMaybe<Scalars['String']['input']>;
|
1982
2102
|
/** The conversation message role. */
|
1983
2103
|
role: ConversationRoleTypes;
|
1984
2104
|
};
|
@@ -2274,6 +2394,17 @@ export declare enum DeviceTypes {
|
|
2274
2394
|
/** Unknown */
|
2275
2395
|
Unknown = "UNKNOWN"
|
2276
2396
|
}
|
2397
|
+
/** Represents an Diffbot entity enrichment connector. */
|
2398
|
+
export type DiffbotEnrichmentProperties = {
|
2399
|
+
__typename?: 'DiffbotEnrichmentProperties';
|
2400
|
+
/** The Diffbot API key. */
|
2401
|
+
key?: Maybe<Scalars['URL']['output']>;
|
2402
|
+
};
|
2403
|
+
/** Represents an Diffbot entity enrichment connector. */
|
2404
|
+
export type DiffbotEnrichmentPropertiesInput = {
|
2405
|
+
/** The Diffbot API key. */
|
2406
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
2407
|
+
};
|
2277
2408
|
/** Represents Discord feed properties. */
|
2278
2409
|
export type DiscordFeedProperties = {
|
2279
2410
|
__typename?: 'DiscordFeedProperties';
|
@@ -2704,6 +2835,8 @@ export type EnrichmentWorkflowStageInput = {
|
|
2704
2835
|
/** Represents an entity enrichment connector. */
|
2705
2836
|
export type EntityEnrichmentConnector = {
|
2706
2837
|
__typename?: 'EntityEnrichmentConnector';
|
2838
|
+
/** The specific properties for Diffbot entity enrichment. */
|
2839
|
+
diffbot?: Maybe<DiffbotEnrichmentProperties>;
|
2707
2840
|
/** The observable entity types to be enriched. */
|
2708
2841
|
enrichedTypes?: Maybe<Array<Maybe<ObservableTypes>>>;
|
2709
2842
|
/** The specific properties for FHIR medical entity enrichment. */
|
@@ -2713,6 +2846,8 @@ export type EntityEnrichmentConnector = {
|
|
2713
2846
|
};
|
2714
2847
|
/** Represents an entity enrichment connector. */
|
2715
2848
|
export type EntityEnrichmentConnectorInput = {
|
2849
|
+
/** The specific properties for Diffbot entity enrichment. */
|
2850
|
+
diffbot?: InputMaybe<DiffbotEnrichmentPropertiesInput>;
|
2716
2851
|
/** The observable entity types to be enriched. */
|
2717
2852
|
enrichedTypes?: InputMaybe<Array<InputMaybe<ObservableTypes>>>;
|
2718
2853
|
/** The specific properties for FHIR medical entity enrichment. */
|
@@ -2933,6 +3068,8 @@ export declare enum EntityTypes {
|
|
2933
3068
|
Software = "SOFTWARE",
|
2934
3069
|
/** Model specification */
|
2935
3070
|
Specification = "SPECIFICATION",
|
3071
|
+
/** User */
|
3072
|
+
User = "USER",
|
2936
3073
|
/** Workflow */
|
2937
3074
|
Workflow = "WORKFLOW"
|
2938
3075
|
}
|
@@ -3721,6 +3858,21 @@ export type GitHubIssuesFeedPropertiesUpdateInput = {
|
|
3721
3858
|
/** GitHub Enterprise URI, optional. */
|
3722
3859
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
3723
3860
|
};
|
3861
|
+
/** Represents Google authentication properties. */
|
3862
|
+
export type GoogleAuthenticationProperties = {
|
3863
|
+
__typename?: 'GoogleAuthenticationProperties';
|
3864
|
+
/** Google client ID. */
|
3865
|
+
clientId: Scalars['String']['output'];
|
3866
|
+
/** Google client secret. */
|
3867
|
+
clientSecret: Scalars['String']['output'];
|
3868
|
+
};
|
3869
|
+
/** Represents Google authentication properties. */
|
3870
|
+
export type GoogleAuthenticationPropertiesInput = {
|
3871
|
+
/** Google client ID. */
|
3872
|
+
clientId: Scalars['String']['input'];
|
3873
|
+
/** Google client secret. */
|
3874
|
+
clientSecret: Scalars['String']['input'];
|
3875
|
+
};
|
3724
3876
|
/** Represents Google Drive properties. */
|
3725
3877
|
export type GoogleDriveFeedProperties = {
|
3726
3878
|
__typename?: 'GoogleDriveFeedProperties';
|
@@ -3768,6 +3920,14 @@ export type GoogleEmailFeedProperties = {
|
|
3768
3920
|
clientId: Scalars['String']['output'];
|
3769
3921
|
/** Google Email client secret. */
|
3770
3922
|
clientSecret: Scalars['String']['output'];
|
3923
|
+
/** Whether to exclude Sent messages in email listing. Default is False. */
|
3924
|
+
excludeSentItems?: Maybe<Scalars['Boolean']['output']>;
|
3925
|
+
/** Whether to only read past emails from Inbox. Default is False. */
|
3926
|
+
inboxOnly?: Maybe<Scalars['Boolean']['output']>;
|
3927
|
+
/** Whether to include Deleted messages in email listing. Default is False. */
|
3928
|
+
includeDeletedItems?: Maybe<Scalars['Boolean']['output']>;
|
3929
|
+
/** Whether to include Spam messages in email listing. Default is False. */
|
3930
|
+
includeSpam?: Maybe<Scalars['Boolean']['output']>;
|
3771
3931
|
/** Google Email refresh token. */
|
3772
3932
|
refreshToken?: Maybe<Scalars['String']['output']>;
|
3773
3933
|
/** Email listing type, i.e. past or new emails. */
|
@@ -3779,6 +3939,14 @@ export type GoogleEmailFeedPropertiesInput = {
|
|
3779
3939
|
clientId: Scalars['String']['input'];
|
3780
3940
|
/** Google client secret. */
|
3781
3941
|
clientSecret: Scalars['String']['input'];
|
3942
|
+
/** Whether to exclude Sent messages in email listing. Default is False. */
|
3943
|
+
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
3944
|
+
/** Whether to only read past emails from Inbox. Default is False. */
|
3945
|
+
inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
3946
|
+
/** Whether to include Deleted messages in email listing. Default is False. */
|
3947
|
+
includeDeletedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
3948
|
+
/** Whether to include Spam messages in email listing. Default is False. */
|
3949
|
+
includeSpam?: InputMaybe<Scalars['Boolean']['input']>;
|
3782
3950
|
/** Google refresh token. */
|
3783
3951
|
refreshToken: Scalars['String']['input'];
|
3784
3952
|
/** Email listing type, i.e. past or new emails. */
|
@@ -3790,6 +3958,14 @@ export type GoogleEmailFeedPropertiesUpdateInput = {
|
|
3790
3958
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
3791
3959
|
/** Google client secret. */
|
3792
3960
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
3961
|
+
/** Whether to exclude Sent messages in email listing. Default is False. */
|
3962
|
+
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
3963
|
+
/** Whether to only read past emails from Inbox. Default is False. */
|
3964
|
+
inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
3965
|
+
/** Whether to include Deleted messages in email listing. Default is False. */
|
3966
|
+
includeDeletedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
3967
|
+
/** Whether to include Spam messages in email listing. Default is False. */
|
3968
|
+
includeSpam?: InputMaybe<Scalars['Boolean']['input']>;
|
3793
3969
|
/** Google refresh token. */
|
3794
3970
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
3795
3971
|
/** Email listing type, i.e. past or new emails. */
|
@@ -6548,6 +6724,25 @@ export type MetadataUpdateInput = {
|
|
6548
6724
|
/** The metadata value. */
|
6549
6725
|
value?: InputMaybe<Scalars['String']['input']>;
|
6550
6726
|
};
|
6727
|
+
/** Represents Microsoft authentication properties. */
|
6728
|
+
export type MicrosoftAuthenticationProperties = {
|
6729
|
+
__typename?: 'MicrosoftAuthenticationProperties';
|
6730
|
+
/** Microsoft Entra ID client ID. */
|
6731
|
+
clientId: Scalars['String']['output'];
|
6732
|
+
/** Microsoft Entra ID client secret. */
|
6733
|
+
clientSecret: Scalars['String']['output'];
|
6734
|
+
/** Microsoft Entra ID tenant ID. */
|
6735
|
+
tenantId: Scalars['ID']['output'];
|
6736
|
+
};
|
6737
|
+
/** Represents Microsoft authentication properties. */
|
6738
|
+
export type MicrosoftAuthenticationPropertiesInput = {
|
6739
|
+
/** Microsoft Entra ID client ID. */
|
6740
|
+
clientId: Scalars['String']['input'];
|
6741
|
+
/** Microsoft Entra ID client secret. */
|
6742
|
+
clientSecret: Scalars['String']['input'];
|
6743
|
+
/** Microsoft Entra ID tenant ID. */
|
6744
|
+
tenantId: Scalars['ID']['input'];
|
6745
|
+
};
|
6551
6746
|
/** Represents Microsoft Email feed properties. */
|
6552
6747
|
export type MicrosoftEmailFeedProperties = {
|
6553
6748
|
__typename?: 'MicrosoftEmailFeedProperties';
|
@@ -6555,6 +6750,14 @@ export type MicrosoftEmailFeedProperties = {
|
|
6555
6750
|
clientId: Scalars['String']['output'];
|
6556
6751
|
/** Microsoft Email client secret. */
|
6557
6752
|
clientSecret: Scalars['String']['output'];
|
6753
|
+
/** Whether to exclude Sent messages in email listing. Default is False. */
|
6754
|
+
excludeSentItems?: Maybe<Scalars['Boolean']['output']>;
|
6755
|
+
/** Whether to only read past emails from Inbox. Default is False. */
|
6756
|
+
inboxOnly?: Maybe<Scalars['Boolean']['output']>;
|
6757
|
+
/** Whether to include Deleted messages in email listing. Default is False. */
|
6758
|
+
includeDeletedItems?: Maybe<Scalars['Boolean']['output']>;
|
6759
|
+
/** Whether to include Spam messages in email listing. Default is False. */
|
6760
|
+
includeSpam?: Maybe<Scalars['Boolean']['output']>;
|
6558
6761
|
/** Microsoft Email refresh token. */
|
6559
6762
|
refreshToken: Scalars['String']['output'];
|
6560
6763
|
/** Email listing type, i.e. past or new emails. */
|
@@ -6566,6 +6769,14 @@ export type MicrosoftEmailFeedPropertiesInput = {
|
|
6566
6769
|
clientId: Scalars['String']['input'];
|
6567
6770
|
/** Microsoft Email client secret. */
|
6568
6771
|
clientSecret: Scalars['String']['input'];
|
6772
|
+
/** Whether to exclude Sent messages in email listing. Default is False. */
|
6773
|
+
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
6774
|
+
/** Whether to only read past emails from Inbox. Default is False. */
|
6775
|
+
inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
6776
|
+
/** Whether to include Deleted messages in email listing. Default is False. */
|
6777
|
+
includeDeletedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
6778
|
+
/** Whether to include Spam messages in email listing. Default is False. */
|
6779
|
+
includeSpam?: InputMaybe<Scalars['Boolean']['input']>;
|
6569
6780
|
/** Microsoft Email refresh token. */
|
6570
6781
|
refreshToken: Scalars['String']['input'];
|
6571
6782
|
/** Email listing type, i.e. past or new emails. */
|
@@ -6577,6 +6788,14 @@ export type MicrosoftEmailFeedPropertiesUpdateInput = {
|
|
6577
6788
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
6578
6789
|
/** Microsoft Email client secret. */
|
6579
6790
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
6791
|
+
/** Whether to exclude Sent messages in email listing. Default is False. */
|
6792
|
+
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
6793
|
+
/** Whether to only read past emails from Inbox. Default is False. */
|
6794
|
+
inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
6795
|
+
/** Whether to include Deleted messages in email listing. Default is False. */
|
6796
|
+
includeDeletedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
6797
|
+
/** Whether to include Spam messages in email listing. Default is False. */
|
6798
|
+
includeSpam?: InputMaybe<Scalars['Boolean']['input']>;
|
6580
6799
|
/** Microsoft Email refresh token. */
|
6581
6800
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
6582
6801
|
/** Email listing type, i.e. past or new emails. */
|
@@ -6928,6 +7147,8 @@ export type Mutation = {
|
|
6928
7147
|
createCategory?: Maybe<Category>;
|
6929
7148
|
/** Creates a new collection. */
|
6930
7149
|
createCollection?: Maybe<Collection>;
|
7150
|
+
/** Creates a new connector. */
|
7151
|
+
createConnector?: Maybe<Connector>;
|
6931
7152
|
/** Creates a new conversation. */
|
6932
7153
|
createConversation?: Maybe<Conversation>;
|
6933
7154
|
/** Creates a new event. */
|
@@ -6974,6 +7195,8 @@ export type Mutation = {
|
|
6974
7195
|
createSoftware?: Maybe<Software>;
|
6975
7196
|
/** Creates a new LLM specification. */
|
6976
7197
|
createSpecification?: Maybe<Specification>;
|
7198
|
+
/** Creates a new user. */
|
7199
|
+
createUser?: Maybe<User>;
|
6977
7200
|
/** Creates a new content workflow. */
|
6978
7201
|
createWorkflow?: Maybe<Workflow>;
|
6979
7202
|
/** Deletes an alert. */
|
@@ -7042,6 +7265,8 @@ export type Mutation = {
|
|
7042
7265
|
deleteCollection?: Maybe<Collection>;
|
7043
7266
|
/** Bulk deletes collections. */
|
7044
7267
|
deleteCollections?: Maybe<Array<Maybe<Collection>>>;
|
7268
|
+
/** Deletes a connector. */
|
7269
|
+
deleteConnector?: Maybe<Connector>;
|
7045
7270
|
/** Deletes content. */
|
7046
7271
|
deleteContent?: Maybe<Content>;
|
7047
7272
|
/** Deletes multiple contents given their IDs. */
|
@@ -7136,6 +7361,8 @@ export type Mutation = {
|
|
7136
7361
|
deleteSpecification?: Maybe<Specification>;
|
7137
7362
|
/** Deletes multiple specifications given their IDs. */
|
7138
7363
|
deleteSpecifications?: Maybe<Array<Maybe<Specification>>>;
|
7364
|
+
/** Deletes a user. */
|
7365
|
+
deleteUser?: Maybe<User>;
|
7139
7366
|
/** Deletes a content workflow. */
|
7140
7367
|
deleteWorkflow?: Maybe<Workflow>;
|
7141
7368
|
/** Deletes multiple workflows given their IDs. */
|
@@ -7148,10 +7375,14 @@ export type Mutation = {
|
|
7148
7375
|
disableAlert?: Maybe<Alert>;
|
7149
7376
|
/** Disables a feed. */
|
7150
7377
|
disableFeed?: Maybe<Feed>;
|
7378
|
+
/** Disables a user. */
|
7379
|
+
disableUser?: Maybe<User>;
|
7151
7380
|
/** Enables an alert. */
|
7152
7381
|
enableAlert?: Maybe<Alert>;
|
7153
7382
|
/** Enables a feed. */
|
7154
7383
|
enableFeed?: Maybe<Feed>;
|
7384
|
+
/** Enables a user. */
|
7385
|
+
enableUser?: Maybe<User>;
|
7155
7386
|
/** Extracts data using tool calling, from contents resulting from the provided filter criteria. */
|
7156
7387
|
extractContents?: Maybe<Array<Maybe<ExtractCompletion>>>;
|
7157
7388
|
/** Extracts data using tool calling, from text. */
|
@@ -7181,7 +7412,7 @@ export type Mutation = {
|
|
7181
7412
|
openCollection?: Maybe<Collection>;
|
7182
7413
|
/** Opens an existing conversation. */
|
7183
7414
|
openConversation?: Maybe<Conversation>;
|
7184
|
-
/** Prompts LLM without content retrieval.
|
7415
|
+
/** Prompts LLM without content retrieval. You can provide a list of conversation messages to be completed, an LLM user prompt and optional Base64-encoded image, or both. If both are provided, the LLM prompt (and optional image) will be appended as an additional User message to the conversation. */
|
7185
7416
|
prompt?: Maybe<PromptCompletion>;
|
7186
7417
|
/** Prompts a conversation. */
|
7187
7418
|
promptConversation?: Maybe<PromptConversation>;
|
@@ -7228,6 +7459,8 @@ export type Mutation = {
|
|
7228
7459
|
updateCategory?: Maybe<Category>;
|
7229
7460
|
/** Updates an existing collection. */
|
7230
7461
|
updateCollection?: Maybe<Collection>;
|
7462
|
+
/** Updates an existing connector. */
|
7463
|
+
updateConnector?: Maybe<Connector>;
|
7231
7464
|
/** Updates existing content. */
|
7232
7465
|
updateContent?: Maybe<Content>;
|
7233
7466
|
/** Updates an existing conversation. */
|
@@ -7278,6 +7511,8 @@ export type Mutation = {
|
|
7278
7511
|
updateSoftware?: Maybe<Software>;
|
7279
7512
|
/** Updates an existing LLM specification. */
|
7280
7513
|
updateSpecification?: Maybe<Specification>;
|
7514
|
+
/** Updates an existing user. */
|
7515
|
+
updateUser?: Maybe<User>;
|
7281
7516
|
/** Updates an existing content workflow. */
|
7282
7517
|
updateWorkflow?: Maybe<Workflow>;
|
7283
7518
|
};
|
@@ -7326,6 +7561,9 @@ export type MutationCreateCategoryArgs = {
|
|
7326
7561
|
export type MutationCreateCollectionArgs = {
|
7327
7562
|
collection: CollectionInput;
|
7328
7563
|
};
|
7564
|
+
export type MutationCreateConnectorArgs = {
|
7565
|
+
connector: ConnectorInput;
|
7566
|
+
};
|
7329
7567
|
export type MutationCreateConversationArgs = {
|
7330
7568
|
conversation: ConversationInput;
|
7331
7569
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -7397,6 +7635,9 @@ export type MutationCreateSoftwareArgs = {
|
|
7397
7635
|
export type MutationCreateSpecificationArgs = {
|
7398
7636
|
specification: SpecificationInput;
|
7399
7637
|
};
|
7638
|
+
export type MutationCreateUserArgs = {
|
7639
|
+
user: UserInput;
|
7640
|
+
};
|
7400
7641
|
export type MutationCreateWorkflowArgs = {
|
7401
7642
|
workflow: WorkflowInput;
|
7402
7643
|
};
|
@@ -7556,6 +7797,9 @@ export type MutationDeleteCollectionsArgs = {
|
|
7556
7797
|
ids: Array<Scalars['ID']['input']>;
|
7557
7798
|
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
7558
7799
|
};
|
7800
|
+
export type MutationDeleteConnectorArgs = {
|
7801
|
+
id: Scalars['ID']['input'];
|
7802
|
+
};
|
7559
7803
|
export type MutationDeleteContentArgs = {
|
7560
7804
|
id: Scalars['ID']['input'];
|
7561
7805
|
};
|
@@ -7720,6 +7964,9 @@ export type MutationDeleteSpecificationsArgs = {
|
|
7720
7964
|
ids: Array<Scalars['ID']['input']>;
|
7721
7965
|
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
7722
7966
|
};
|
7967
|
+
export type MutationDeleteUserArgs = {
|
7968
|
+
id: Scalars['ID']['input'];
|
7969
|
+
};
|
7723
7970
|
export type MutationDeleteWorkflowArgs = {
|
7724
7971
|
id: Scalars['ID']['input'];
|
7725
7972
|
};
|
@@ -7746,12 +7993,18 @@ export type MutationDisableAlertArgs = {
|
|
7746
7993
|
export type MutationDisableFeedArgs = {
|
7747
7994
|
id: Scalars['ID']['input'];
|
7748
7995
|
};
|
7996
|
+
export type MutationDisableUserArgs = {
|
7997
|
+
id: Scalars['ID']['input'];
|
7998
|
+
};
|
7749
7999
|
export type MutationEnableAlertArgs = {
|
7750
8000
|
id: Scalars['ID']['input'];
|
7751
8001
|
};
|
7752
8002
|
export type MutationEnableFeedArgs = {
|
7753
8003
|
id: Scalars['ID']['input'];
|
7754
8004
|
};
|
8005
|
+
export type MutationEnableUserArgs = {
|
8006
|
+
id: Scalars['ID']['input'];
|
8007
|
+
};
|
7755
8008
|
export type MutationExtractContentsArgs = {
|
7756
8009
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7757
8010
|
filter?: InputMaybe<ContentFilter>;
|
@@ -7848,8 +8101,10 @@ export type MutationOpenConversationArgs = {
|
|
7848
8101
|
};
|
7849
8102
|
export type MutationPromptArgs = {
|
7850
8103
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7851
|
-
|
7852
|
-
|
8104
|
+
data?: InputMaybe<Scalars['String']['input']>;
|
8105
|
+
messages?: InputMaybe<Array<ConversationMessageInput>>;
|
8106
|
+
mimeType?: InputMaybe<Scalars['String']['input']>;
|
8107
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
7853
8108
|
specification?: InputMaybe<EntityReferenceInput>;
|
7854
8109
|
};
|
7855
8110
|
export type MutationPromptConversationArgs = {
|
@@ -7931,7 +8186,7 @@ export type MutationReviseImageArgs = {
|
|
7931
8186
|
id?: InputMaybe<Scalars['ID']['input']>;
|
7932
8187
|
prompt: Scalars['String']['input'];
|
7933
8188
|
specification?: InputMaybe<EntityReferenceInput>;
|
7934
|
-
uri
|
8189
|
+
uri?: InputMaybe<Scalars['URL']['input']>;
|
7935
8190
|
};
|
7936
8191
|
export type MutationReviseTextArgs = {
|
7937
8192
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -7977,6 +8232,9 @@ export type MutationUpdateCategoryArgs = {
|
|
7977
8232
|
export type MutationUpdateCollectionArgs = {
|
7978
8233
|
collection: CollectionUpdateInput;
|
7979
8234
|
};
|
8235
|
+
export type MutationUpdateConnectorArgs = {
|
8236
|
+
connector: ConnectorUpdateInput;
|
8237
|
+
};
|
7980
8238
|
export type MutationUpdateContentArgs = {
|
7981
8239
|
content: ContentUpdateInput;
|
7982
8240
|
};
|
@@ -8052,6 +8310,9 @@ export type MutationUpdateSoftwareArgs = {
|
|
8052
8310
|
export type MutationUpdateSpecificationArgs = {
|
8053
8311
|
specification: SpecificationUpdateInput;
|
8054
8312
|
};
|
8313
|
+
export type MutationUpdateUserArgs = {
|
8314
|
+
user: UserUpdateInput;
|
8315
|
+
};
|
8055
8316
|
export type MutationUpdateWorkflowArgs = {
|
8056
8317
|
workflow: WorkflowUpdateInput;
|
8057
8318
|
};
|
@@ -9938,6 +10199,10 @@ export type Query = {
|
|
9938
10199
|
collection?: Maybe<Collection>;
|
9939
10200
|
/** Retrieves collections based on the provided filter criteria. */
|
9940
10201
|
collections?: Maybe<CollectionResults>;
|
10202
|
+
/** Lookup a connector given its ID. */
|
10203
|
+
connector?: Maybe<Connector>;
|
10204
|
+
/** Retrieves connectors based on the provided filter criteria. */
|
10205
|
+
connectors?: Maybe<ConnectorResults>;
|
9941
10206
|
/** Lookup content given its ID. */
|
9942
10207
|
content?: Maybe<Content>;
|
9943
10208
|
/** Retrieves contents based on the provided filter criteria. */
|
@@ -9998,6 +10263,8 @@ export type Query = {
|
|
9998
10263
|
countSoftwares?: Maybe<CountResult>;
|
9999
10264
|
/** Counts specifications based on the provided filter criteria. */
|
10000
10265
|
countSpecifications?: Maybe<CountResult>;
|
10266
|
+
/** Counts users based on the provided filter criteria. */
|
10267
|
+
countUsers?: Maybe<CountResult>;
|
10001
10268
|
/** Counts workflows based on the provided filter criteria. */
|
10002
10269
|
countWorkflows?: Maybe<CountResult>;
|
10003
10270
|
/** Retrieves project credits. */
|
@@ -10124,6 +10391,12 @@ export type Query = {
|
|
10124
10391
|
specifications?: Maybe<SpecificationResults>;
|
10125
10392
|
/** Retrieves project usage. */
|
10126
10393
|
usage?: Maybe<Array<Maybe<ProjectUsageRecord>>>;
|
10394
|
+
/** Fetch current user. */
|
10395
|
+
user?: Maybe<User>;
|
10396
|
+
/** Lookup a user given its external identifier. */
|
10397
|
+
userByIdentifier?: Maybe<User>;
|
10398
|
+
/** Retrieves users based on the provided filter criteria. */
|
10399
|
+
users?: Maybe<UserResults>;
|
10127
10400
|
/** Lookup a workflow given its ID. */
|
10128
10401
|
workflow?: Maybe<Workflow>;
|
10129
10402
|
/** Retrieves workflows based on the provided filter criteria. */
|
@@ -10154,6 +10427,14 @@ export type QueryCollectionsArgs = {
|
|
10154
10427
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10155
10428
|
filter?: InputMaybe<CollectionFilter>;
|
10156
10429
|
};
|
10430
|
+
export type QueryConnectorArgs = {
|
10431
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10432
|
+
id: Scalars['ID']['input'];
|
10433
|
+
};
|
10434
|
+
export type QueryConnectorsArgs = {
|
10435
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10436
|
+
filter?: InputMaybe<ConnectorFilter>;
|
10437
|
+
};
|
10157
10438
|
export type QueryContentArgs = {
|
10158
10439
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10159
10440
|
id: Scalars['ID']['input'];
|
@@ -10276,6 +10557,10 @@ export type QueryCountSpecificationsArgs = {
|
|
10276
10557
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10277
10558
|
filter?: InputMaybe<SpecificationFilter>;
|
10278
10559
|
};
|
10560
|
+
export type QueryCountUsersArgs = {
|
10561
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10562
|
+
filter?: InputMaybe<UserFilter>;
|
10563
|
+
};
|
10279
10564
|
export type QueryCountWorkflowsArgs = {
|
10280
10565
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10281
10566
|
filter?: InputMaybe<WorkflowFilter>;
|
@@ -10547,6 +10832,17 @@ export type QueryUsageArgs = {
|
|
10547
10832
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
10548
10833
|
startDate: Scalars['DateTime']['input'];
|
10549
10834
|
};
|
10835
|
+
export type QueryUserArgs = {
|
10836
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10837
|
+
};
|
10838
|
+
export type QueryUserByIdentifierArgs = {
|
10839
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10840
|
+
identifier: Scalars['String']['input'];
|
10841
|
+
};
|
10842
|
+
export type QueryUsersArgs = {
|
10843
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10844
|
+
filter?: InputMaybe<UserFilter>;
|
10845
|
+
};
|
10550
10846
|
export type QueryWorkflowArgs = {
|
10551
10847
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10552
10848
|
id: Scalars['ID']['input'];
|
@@ -12055,6 +12351,94 @@ export type UriResults = {
|
|
12055
12351
|
/** The URI results. */
|
12056
12352
|
results?: Maybe<Array<Maybe<Scalars['URL']['output']>>>;
|
12057
12353
|
};
|
12354
|
+
/** Represents a user. */
|
12355
|
+
export type User = {
|
12356
|
+
__typename?: 'User';
|
12357
|
+
/** The reference to the connectors that the user has created. */
|
12358
|
+
connectors?: Maybe<Array<Maybe<Connector>>>;
|
12359
|
+
/** The creation date of the user. */
|
12360
|
+
creationDate: Scalars['DateTime']['output'];
|
12361
|
+
/** The description of the user. */
|
12362
|
+
description?: Maybe<Scalars['String']['output']>;
|
12363
|
+
/** The ID of the user. */
|
12364
|
+
id: Scalars['ID']['output'];
|
12365
|
+
/** The external identifier of the user. */
|
12366
|
+
identifier: Scalars['String']['output'];
|
12367
|
+
/** The modified date of the user. */
|
12368
|
+
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
12369
|
+
/** The name of the user. */
|
12370
|
+
name: Scalars['String']['output'];
|
12371
|
+
/** The owner of the user. */
|
12372
|
+
owner: Owner;
|
12373
|
+
/** The relevance score of the user. */
|
12374
|
+
relevance?: Maybe<Scalars['Float']['output']>;
|
12375
|
+
/** The state of the user (i.e. created, finished). */
|
12376
|
+
state: EntityState;
|
12377
|
+
/** The user type, i.e. human or agent. */
|
12378
|
+
type?: Maybe<UserTypes>;
|
12379
|
+
};
|
12380
|
+
/** Represents a filter for users. */
|
12381
|
+
export type UserFilter = {
|
12382
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return user(s) created in the last 24 hours. */
|
12383
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
12384
|
+
/** Filter user(s) by their creation date range. */
|
12385
|
+
creationDateRange?: InputMaybe<DateRangeFilter>;
|
12386
|
+
/** The sort direction for query results. */
|
12387
|
+
direction?: InputMaybe<OrderDirectionTypes>;
|
12388
|
+
/** Filter user(s) by their unique ID. */
|
12389
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
12390
|
+
/** Filter users by their external identifier. */
|
12391
|
+
identifier?: InputMaybe<Scalars['String']['input']>;
|
12392
|
+
/** Limit the number of user(s) to be returned. */
|
12393
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
12394
|
+
/** Filter user(s) by their name. */
|
12395
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
12396
|
+
/** Skip the specified number of user(s) from the beginning of the result set. Only supported on keyword search. */
|
12397
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
12398
|
+
/** The sort order for query results. */
|
12399
|
+
orderBy?: InputMaybe<OrderByTypes>;
|
12400
|
+
/** Filter user(s) by searching for specific text. */
|
12401
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
12402
|
+
/** Filter user(s) by their states. */
|
12403
|
+
states?: InputMaybe<Array<EntityState>>;
|
12404
|
+
};
|
12405
|
+
/** Represents a user. */
|
12406
|
+
export type UserInput = {
|
12407
|
+
/** The description of the user. */
|
12408
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
12409
|
+
/** The external identifier of the user. */
|
12410
|
+
identifier: Scalars['String']['input'];
|
12411
|
+
/** The name of the user. */
|
12412
|
+
name: Scalars['String']['input'];
|
12413
|
+
/** The user type, i.e. human or agent. */
|
12414
|
+
type?: InputMaybe<UserTypes>;
|
12415
|
+
};
|
12416
|
+
/** Represents user query results. */
|
12417
|
+
export type UserResults = {
|
12418
|
+
__typename?: 'UserResults';
|
12419
|
+
/** The list of user query results. */
|
12420
|
+
results?: Maybe<Array<Maybe<User>>>;
|
12421
|
+
};
|
12422
|
+
/** User type */
|
12423
|
+
export declare enum UserTypes {
|
12424
|
+
/** Agent user */
|
12425
|
+
Agent = "AGENT",
|
12426
|
+
/** Human user */
|
12427
|
+
Human = "HUMAN"
|
12428
|
+
}
|
12429
|
+
/** Represents a user. */
|
12430
|
+
export type UserUpdateInput = {
|
12431
|
+
/** The description of the user. */
|
12432
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
12433
|
+
/** The ID of the user to update. */
|
12434
|
+
id: Scalars['ID']['input'];
|
12435
|
+
/** The external identifier of the user. */
|
12436
|
+
identifier?: InputMaybe<Scalars['String']['input']>;
|
12437
|
+
/** The name of the user. */
|
12438
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
12439
|
+
/** The user type, i.e. human or agent. */
|
12440
|
+
type?: InputMaybe<UserTypes>;
|
12441
|
+
};
|
12058
12442
|
/** Represents video metadata. */
|
12059
12443
|
export type VideoMetadata = {
|
12060
12444
|
__typename?: 'VideoMetadata';
|
@@ -13128,6 +13512,8 @@ export type DescribeEncodedImageMutation = {
|
|
13128
13512
|
timestamp?: any | null;
|
13129
13513
|
modelService?: ModelServiceTypes | null;
|
13130
13514
|
model?: string | null;
|
13515
|
+
data?: string | null;
|
13516
|
+
mimeType?: string | null;
|
13131
13517
|
citations?: Array<{
|
13132
13518
|
__typename?: 'ConversationCitation';
|
13133
13519
|
index?: number | null;
|
@@ -13266,6 +13652,8 @@ export type DescribeImageMutation = {
|
|
13266
13652
|
timestamp?: any | null;
|
13267
13653
|
modelService?: ModelServiceTypes | null;
|
13268
13654
|
model?: string | null;
|
13655
|
+
data?: string | null;
|
13656
|
+
mimeType?: string | null;
|
13269
13657
|
citations?: Array<{
|
13270
13658
|
__typename?: 'ConversationCitation';
|
13271
13659
|
index?: number | null;
|
@@ -15096,6 +15484,8 @@ export type AskGraphlitMutation = {
|
|
15096
15484
|
timestamp?: any | null;
|
15097
15485
|
modelService?: ModelServiceTypes | null;
|
15098
15486
|
model?: string | null;
|
15487
|
+
data?: string | null;
|
15488
|
+
mimeType?: string | null;
|
15099
15489
|
citations?: Array<{
|
15100
15490
|
__typename?: 'ConversationCitation';
|
15101
15491
|
index?: number | null;
|
@@ -15267,6 +15657,8 @@ export type CompleteConversationMutation = {
|
|
15267
15657
|
timestamp?: any | null;
|
15268
15658
|
modelService?: ModelServiceTypes | null;
|
15269
15659
|
model?: string | null;
|
15660
|
+
data?: string | null;
|
15661
|
+
mimeType?: string | null;
|
15270
15662
|
citations?: Array<{
|
15271
15663
|
__typename?: 'ConversationCitation';
|
15272
15664
|
index?: number | null;
|
@@ -15455,6 +15847,8 @@ export type CompleteConversationMutation = {
|
|
15455
15847
|
timestamp?: any | null;
|
15456
15848
|
modelService?: ModelServiceTypes | null;
|
15457
15849
|
model?: string | null;
|
15850
|
+
data?: string | null;
|
15851
|
+
mimeType?: string | null;
|
15458
15852
|
citations?: Array<{
|
15459
15853
|
__typename?: 'ConversationCitation';
|
15460
15854
|
index?: number | null;
|
@@ -15601,6 +15995,8 @@ export type ContinueConversationMutation = {
|
|
15601
15995
|
timestamp?: any | null;
|
15602
15996
|
modelService?: ModelServiceTypes | null;
|
15603
15997
|
model?: string | null;
|
15998
|
+
data?: string | null;
|
15999
|
+
mimeType?: string | null;
|
15604
16000
|
citations?: Array<{
|
15605
16001
|
__typename?: 'ConversationCitation';
|
15606
16002
|
index?: number | null;
|
@@ -15789,6 +16185,8 @@ export type ContinueConversationMutation = {
|
|
15789
16185
|
timestamp?: any | null;
|
15790
16186
|
modelService?: ModelServiceTypes | null;
|
15791
16187
|
model?: string | null;
|
16188
|
+
data?: string | null;
|
16189
|
+
mimeType?: string | null;
|
15792
16190
|
citations?: Array<{
|
15793
16191
|
__typename?: 'ConversationCitation';
|
15794
16192
|
index?: number | null;
|
@@ -15997,6 +16395,8 @@ export type FormatConversationMutation = {
|
|
15997
16395
|
timestamp?: any | null;
|
15998
16396
|
modelService?: ModelServiceTypes | null;
|
15999
16397
|
model?: string | null;
|
16398
|
+
data?: string | null;
|
16399
|
+
mimeType?: string | null;
|
16000
16400
|
citations?: Array<{
|
16001
16401
|
__typename?: 'ConversationCitation';
|
16002
16402
|
index?: number | null;
|
@@ -16185,6 +16585,8 @@ export type FormatConversationMutation = {
|
|
16185
16585
|
timestamp?: any | null;
|
16186
16586
|
modelService?: ModelServiceTypes | null;
|
16187
16587
|
model?: string | null;
|
16588
|
+
data?: string | null;
|
16589
|
+
mimeType?: string | null;
|
16188
16590
|
citations?: Array<{
|
16189
16591
|
__typename?: 'ConversationCitation';
|
16190
16592
|
index?: number | null;
|
@@ -16335,6 +16737,8 @@ export type GetConversationQuery = {
|
|
16335
16737
|
timestamp?: any | null;
|
16336
16738
|
modelService?: ModelServiceTypes | null;
|
16337
16739
|
model?: string | null;
|
16740
|
+
data?: string | null;
|
16741
|
+
mimeType?: string | null;
|
16338
16742
|
citations?: Array<{
|
16339
16743
|
__typename?: 'ConversationCitation';
|
16340
16744
|
index?: number | null;
|
@@ -16647,6 +17051,8 @@ export type GetConversationQuery = {
|
|
16647
17051
|
};
|
16648
17052
|
export type PromptMutationVariables = Exact<{
|
16649
17053
|
prompt: Scalars['String']['input'];
|
17054
|
+
mimeType?: InputMaybe<Scalars['String']['input']>;
|
17055
|
+
data?: InputMaybe<Scalars['String']['input']>;
|
16650
17056
|
specification?: InputMaybe<EntityReferenceInput>;
|
16651
17057
|
messages?: InputMaybe<Array<ConversationMessageInput> | ConversationMessageInput>;
|
16652
17058
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -16671,6 +17077,8 @@ export type PromptMutation = {
|
|
16671
17077
|
timestamp?: any | null;
|
16672
17078
|
modelService?: ModelServiceTypes | null;
|
16673
17079
|
model?: string | null;
|
17080
|
+
data?: string | null;
|
17081
|
+
mimeType?: string | null;
|
16674
17082
|
citations?: Array<{
|
16675
17083
|
__typename?: 'ConversationCitation';
|
16676
17084
|
index?: number | null;
|
@@ -16820,6 +17228,8 @@ export type PromptConversationMutation = {
|
|
16820
17228
|
timestamp?: any | null;
|
16821
17229
|
modelService?: ModelServiceTypes | null;
|
16822
17230
|
model?: string | null;
|
17231
|
+
data?: string | null;
|
17232
|
+
mimeType?: string | null;
|
16823
17233
|
citations?: Array<{
|
16824
17234
|
__typename?: 'ConversationCitation';
|
16825
17235
|
index?: number | null;
|
@@ -17008,6 +17418,8 @@ export type PromptConversationMutation = {
|
|
17008
17418
|
timestamp?: any | null;
|
17009
17419
|
modelService?: ModelServiceTypes | null;
|
17010
17420
|
model?: string | null;
|
17421
|
+
data?: string | null;
|
17422
|
+
mimeType?: string | null;
|
17011
17423
|
citations?: Array<{
|
17012
17424
|
__typename?: 'ConversationCitation';
|
17013
17425
|
index?: number | null;
|
@@ -17274,6 +17686,8 @@ export type QueryConversationsQuery = {
|
|
17274
17686
|
timestamp?: any | null;
|
17275
17687
|
modelService?: ModelServiceTypes | null;
|
17276
17688
|
model?: string | null;
|
17689
|
+
data?: string | null;
|
17690
|
+
mimeType?: string | null;
|
17277
17691
|
citations?: Array<{
|
17278
17692
|
__typename?: 'ConversationCitation';
|
17279
17693
|
index?: number | null;
|
@@ -17612,6 +18026,8 @@ export type ReviseContentMutation = {
|
|
17612
18026
|
timestamp?: any | null;
|
17613
18027
|
modelService?: ModelServiceTypes | null;
|
17614
18028
|
model?: string | null;
|
18029
|
+
data?: string | null;
|
18030
|
+
mimeType?: string | null;
|
17615
18031
|
citations?: Array<{
|
17616
18032
|
__typename?: 'ConversationCitation';
|
17617
18033
|
index?: number | null;
|
@@ -17760,6 +18176,8 @@ export type ReviseEncodedImageMutation = {
|
|
17760
18176
|
timestamp?: any | null;
|
17761
18177
|
modelService?: ModelServiceTypes | null;
|
17762
18178
|
model?: string | null;
|
18179
|
+
data?: string | null;
|
18180
|
+
mimeType?: string | null;
|
17763
18181
|
citations?: Array<{
|
17764
18182
|
__typename?: 'ConversationCitation';
|
17765
18183
|
index?: number | null;
|
@@ -17907,6 +18325,8 @@ export type ReviseImageMutation = {
|
|
17907
18325
|
timestamp?: any | null;
|
17908
18326
|
modelService?: ModelServiceTypes | null;
|
17909
18327
|
model?: string | null;
|
18328
|
+
data?: string | null;
|
18329
|
+
mimeType?: string | null;
|
17910
18330
|
citations?: Array<{
|
17911
18331
|
__typename?: 'ConversationCitation';
|
17912
18332
|
index?: number | null;
|
@@ -18054,6 +18474,8 @@ export type ReviseTextMutation = {
|
|
18054
18474
|
timestamp?: any | null;
|
18055
18475
|
modelService?: ModelServiceTypes | null;
|
18056
18476
|
model?: string | null;
|
18477
|
+
data?: string | null;
|
18478
|
+
mimeType?: string | null;
|
18057
18479
|
citations?: Array<{
|
18058
18480
|
__typename?: 'ConversationCitation';
|
18059
18481
|
index?: number | null;
|
@@ -18541,6 +18963,10 @@ export type GetFeedQuery = {
|
|
18541
18963
|
google?: {
|
18542
18964
|
__typename?: 'GoogleEmailFeedProperties';
|
18543
18965
|
type?: EmailListingTypes | null;
|
18966
|
+
includeSpam?: boolean | null;
|
18967
|
+
excludeSentItems?: boolean | null;
|
18968
|
+
includeDeletedItems?: boolean | null;
|
18969
|
+
inboxOnly?: boolean | null;
|
18544
18970
|
refreshToken?: string | null;
|
18545
18971
|
clientId: string;
|
18546
18972
|
clientSecret: string;
|
@@ -18548,6 +18974,10 @@ export type GetFeedQuery = {
|
|
18548
18974
|
microsoft?: {
|
18549
18975
|
__typename?: 'MicrosoftEmailFeedProperties';
|
18550
18976
|
type?: EmailListingTypes | null;
|
18977
|
+
includeSpam?: boolean | null;
|
18978
|
+
excludeSentItems?: boolean | null;
|
18979
|
+
includeDeletedItems?: boolean | null;
|
18980
|
+
inboxOnly?: boolean | null;
|
18551
18981
|
refreshToken: string;
|
18552
18982
|
clientId: string;
|
18553
18983
|
clientSecret: string;
|
@@ -18816,6 +19246,10 @@ export type QueryFeedsQuery = {
|
|
18816
19246
|
google?: {
|
18817
19247
|
__typename?: 'GoogleEmailFeedProperties';
|
18818
19248
|
type?: EmailListingTypes | null;
|
19249
|
+
includeSpam?: boolean | null;
|
19250
|
+
excludeSentItems?: boolean | null;
|
19251
|
+
includeDeletedItems?: boolean | null;
|
19252
|
+
inboxOnly?: boolean | null;
|
18819
19253
|
refreshToken?: string | null;
|
18820
19254
|
clientId: string;
|
18821
19255
|
clientSecret: string;
|
@@ -18823,6 +19257,10 @@ export type QueryFeedsQuery = {
|
|
18823
19257
|
microsoft?: {
|
18824
19258
|
__typename?: 'MicrosoftEmailFeedProperties';
|
18825
19259
|
type?: EmailListingTypes | null;
|
19260
|
+
includeSpam?: boolean | null;
|
19261
|
+
excludeSentItems?: boolean | null;
|
19262
|
+
includeDeletedItems?: boolean | null;
|
19263
|
+
inboxOnly?: boolean | null;
|
18826
19264
|
refreshToken: string;
|
18827
19265
|
clientId: string;
|
18828
19266
|
clientSecret: string;
|
@@ -21626,6 +22064,8 @@ export type PromptSpecificationsMutation = {
|
|
21626
22064
|
timestamp?: any | null;
|
21627
22065
|
modelService?: ModelServiceTypes | null;
|
21628
22066
|
model?: string | null;
|
22067
|
+
data?: string | null;
|
22068
|
+
mimeType?: string | null;
|
21629
22069
|
citations?: Array<{
|
21630
22070
|
__typename?: 'ConversationCitation';
|
21631
22071
|
index?: number | null;
|
@@ -21997,6 +22437,184 @@ export type UpdateSpecificationMutation = {
|
|
21997
22437
|
serviceType?: ModelServiceTypes | null;
|
21998
22438
|
} | null;
|
21999
22439
|
};
|
22440
|
+
export type CountUsersQueryVariables = Exact<{
|
22441
|
+
filter?: InputMaybe<UserFilter>;
|
22442
|
+
}>;
|
22443
|
+
export type CountUsersQuery = {
|
22444
|
+
__typename?: 'Query';
|
22445
|
+
countUsers?: {
|
22446
|
+
__typename?: 'CountResult';
|
22447
|
+
count?: any | null;
|
22448
|
+
} | null;
|
22449
|
+
};
|
22450
|
+
export type CreateUserMutationVariables = Exact<{
|
22451
|
+
user: UserInput;
|
22452
|
+
}>;
|
22453
|
+
export type CreateUserMutation = {
|
22454
|
+
__typename?: 'Mutation';
|
22455
|
+
createUser?: {
|
22456
|
+
__typename?: 'User';
|
22457
|
+
id: string;
|
22458
|
+
name: string;
|
22459
|
+
state: EntityState;
|
22460
|
+
type?: UserTypes | null;
|
22461
|
+
identifier: string;
|
22462
|
+
} | null;
|
22463
|
+
};
|
22464
|
+
export type DeleteUserMutationVariables = Exact<{
|
22465
|
+
id: Scalars['ID']['input'];
|
22466
|
+
}>;
|
22467
|
+
export type DeleteUserMutation = {
|
22468
|
+
__typename?: 'Mutation';
|
22469
|
+
deleteUser?: {
|
22470
|
+
__typename?: 'User';
|
22471
|
+
id: string;
|
22472
|
+
state: EntityState;
|
22473
|
+
} | null;
|
22474
|
+
};
|
22475
|
+
export type DisableUserMutationVariables = Exact<{
|
22476
|
+
id: Scalars['ID']['input'];
|
22477
|
+
}>;
|
22478
|
+
export type DisableUserMutation = {
|
22479
|
+
__typename?: 'Mutation';
|
22480
|
+
disableUser?: {
|
22481
|
+
__typename?: 'User';
|
22482
|
+
id: string;
|
22483
|
+
state: EntityState;
|
22484
|
+
} | null;
|
22485
|
+
};
|
22486
|
+
export type EnableUserMutationVariables = Exact<{
|
22487
|
+
id: Scalars['ID']['input'];
|
22488
|
+
}>;
|
22489
|
+
export type EnableUserMutation = {
|
22490
|
+
__typename?: 'Mutation';
|
22491
|
+
enableUser?: {
|
22492
|
+
__typename?: 'User';
|
22493
|
+
id: string;
|
22494
|
+
state: EntityState;
|
22495
|
+
} | null;
|
22496
|
+
};
|
22497
|
+
export type GetUserQueryVariables = Exact<{
|
22498
|
+
[key: string]: never;
|
22499
|
+
}>;
|
22500
|
+
export type GetUserQuery = {
|
22501
|
+
__typename?: 'Query';
|
22502
|
+
user?: {
|
22503
|
+
__typename?: 'User';
|
22504
|
+
id: string;
|
22505
|
+
name: string;
|
22506
|
+
creationDate: any;
|
22507
|
+
relevance?: number | null;
|
22508
|
+
state: EntityState;
|
22509
|
+
type?: UserTypes | null;
|
22510
|
+
identifier: string;
|
22511
|
+
owner: {
|
22512
|
+
__typename?: 'Owner';
|
22513
|
+
id: string;
|
22514
|
+
};
|
22515
|
+
connectors?: Array<{
|
22516
|
+
__typename?: 'Connector';
|
22517
|
+
id: string;
|
22518
|
+
name: string;
|
22519
|
+
state: EntityState;
|
22520
|
+
type?: ConnectorTypes | null;
|
22521
|
+
authentication?: {
|
22522
|
+
__typename?: 'AuthenticationConnector';
|
22523
|
+
type: AuthenticationServiceTypes;
|
22524
|
+
microsoft?: {
|
22525
|
+
__typename?: 'MicrosoftAuthenticationProperties';
|
22526
|
+
tenantId: string;
|
22527
|
+
clientId: string;
|
22528
|
+
clientSecret: string;
|
22529
|
+
} | null;
|
22530
|
+
google?: {
|
22531
|
+
__typename?: 'GoogleAuthenticationProperties';
|
22532
|
+
clientId: string;
|
22533
|
+
clientSecret: string;
|
22534
|
+
} | null;
|
22535
|
+
} | null;
|
22536
|
+
integration?: {
|
22537
|
+
__typename?: 'IntegrationConnector';
|
22538
|
+
type: IntegrationServiceTypes;
|
22539
|
+
uri?: string | null;
|
22540
|
+
slack?: {
|
22541
|
+
__typename?: 'SlackIntegrationProperties';
|
22542
|
+
token: string;
|
22543
|
+
channel: string;
|
22544
|
+
} | null;
|
22545
|
+
} | null;
|
22546
|
+
} | null> | null;
|
22547
|
+
} | null;
|
22548
|
+
};
|
22549
|
+
export type QueryUsersQueryVariables = Exact<{
|
22550
|
+
filter?: InputMaybe<UserFilter>;
|
22551
|
+
}>;
|
22552
|
+
export type QueryUsersQuery = {
|
22553
|
+
__typename?: 'Query';
|
22554
|
+
users?: {
|
22555
|
+
__typename?: 'UserResults';
|
22556
|
+
results?: Array<{
|
22557
|
+
__typename?: 'User';
|
22558
|
+
id: string;
|
22559
|
+
name: string;
|
22560
|
+
creationDate: any;
|
22561
|
+
relevance?: number | null;
|
22562
|
+
state: EntityState;
|
22563
|
+
type?: UserTypes | null;
|
22564
|
+
identifier: string;
|
22565
|
+
owner: {
|
22566
|
+
__typename?: 'Owner';
|
22567
|
+
id: string;
|
22568
|
+
};
|
22569
|
+
connectors?: Array<{
|
22570
|
+
__typename?: 'Connector';
|
22571
|
+
id: string;
|
22572
|
+
name: string;
|
22573
|
+
state: EntityState;
|
22574
|
+
type?: ConnectorTypes | null;
|
22575
|
+
authentication?: {
|
22576
|
+
__typename?: 'AuthenticationConnector';
|
22577
|
+
type: AuthenticationServiceTypes;
|
22578
|
+
microsoft?: {
|
22579
|
+
__typename?: 'MicrosoftAuthenticationProperties';
|
22580
|
+
tenantId: string;
|
22581
|
+
clientId: string;
|
22582
|
+
clientSecret: string;
|
22583
|
+
} | null;
|
22584
|
+
google?: {
|
22585
|
+
__typename?: 'GoogleAuthenticationProperties';
|
22586
|
+
clientId: string;
|
22587
|
+
clientSecret: string;
|
22588
|
+
} | null;
|
22589
|
+
} | null;
|
22590
|
+
integration?: {
|
22591
|
+
__typename?: 'IntegrationConnector';
|
22592
|
+
type: IntegrationServiceTypes;
|
22593
|
+
uri?: string | null;
|
22594
|
+
slack?: {
|
22595
|
+
__typename?: 'SlackIntegrationProperties';
|
22596
|
+
token: string;
|
22597
|
+
channel: string;
|
22598
|
+
} | null;
|
22599
|
+
} | null;
|
22600
|
+
} | null> | null;
|
22601
|
+
} | null> | null;
|
22602
|
+
} | null;
|
22603
|
+
};
|
22604
|
+
export type UpdateUserMutationVariables = Exact<{
|
22605
|
+
user: UserUpdateInput;
|
22606
|
+
}>;
|
22607
|
+
export type UpdateUserMutation = {
|
22608
|
+
__typename?: 'Mutation';
|
22609
|
+
updateUser?: {
|
22610
|
+
__typename?: 'User';
|
22611
|
+
id: string;
|
22612
|
+
name: string;
|
22613
|
+
state: EntityState;
|
22614
|
+
type?: UserTypes | null;
|
22615
|
+
identifier: string;
|
22616
|
+
} | null;
|
22617
|
+
};
|
22000
22618
|
export type CountWorkflowsQueryVariables = Exact<{
|
22001
22619
|
filter?: InputMaybe<WorkflowFilter>;
|
22002
22620
|
}>;
|
@@ -22170,6 +22788,10 @@ export type CreateWorkflowMutation = {
|
|
22170
22788
|
__typename?: 'FHIREnrichmentProperties';
|
22171
22789
|
endpoint?: any | null;
|
22172
22790
|
} | null;
|
22791
|
+
diffbot?: {
|
22792
|
+
__typename?: 'DiffbotEnrichmentProperties';
|
22793
|
+
key?: any | null;
|
22794
|
+
} | null;
|
22173
22795
|
} | null;
|
22174
22796
|
} | null> | null;
|
22175
22797
|
} | null;
|
@@ -22401,6 +23023,10 @@ export type GetWorkflowQuery = {
|
|
22401
23023
|
__typename?: 'FHIREnrichmentProperties';
|
22402
23024
|
endpoint?: any | null;
|
22403
23025
|
} | null;
|
23026
|
+
diffbot?: {
|
23027
|
+
__typename?: 'DiffbotEnrichmentProperties';
|
23028
|
+
key?: any | null;
|
23029
|
+
} | null;
|
22404
23030
|
} | null;
|
22405
23031
|
} | null> | null;
|
22406
23032
|
} | null;
|
@@ -22598,6 +23224,10 @@ export type QueryWorkflowsQuery = {
|
|
22598
23224
|
__typename?: 'FHIREnrichmentProperties';
|
22599
23225
|
endpoint?: any | null;
|
22600
23226
|
} | null;
|
23227
|
+
diffbot?: {
|
23228
|
+
__typename?: 'DiffbotEnrichmentProperties';
|
23229
|
+
key?: any | null;
|
23230
|
+
} | null;
|
22601
23231
|
} | null;
|
22602
23232
|
} | null> | null;
|
22603
23233
|
} | null;
|
@@ -22788,6 +23418,10 @@ export type UpdateWorkflowMutation = {
|
|
22788
23418
|
__typename?: 'FHIREnrichmentProperties';
|
22789
23419
|
endpoint?: any | null;
|
22790
23420
|
} | null;
|
23421
|
+
diffbot?: {
|
23422
|
+
__typename?: 'DiffbotEnrichmentProperties';
|
23423
|
+
key?: any | null;
|
23424
|
+
} | null;
|
22791
23425
|
} | null;
|
22792
23426
|
} | null> | null;
|
22793
23427
|
} | null;
|