graphlit-client 1.0.20250306002 → 1.0.20250315001
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.
@@ -156,7 +156,7 @@ export type AlertFilter = {
|
|
156
156
|
direction?: InputMaybe<OrderDirectionTypes>;
|
157
157
|
/** Filter alert(s) by their unique ID. */
|
158
158
|
id?: InputMaybe<Scalars['ID']['input']>;
|
159
|
-
/** Limit the number of alert(s) to be returned. */
|
159
|
+
/** Limit the number of alert(s) to be returned. Defaults to 100. */
|
160
160
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
161
161
|
/** Filter alert(s) by their name. */
|
162
162
|
name?: InputMaybe<Scalars['String']['input']>;
|
@@ -164,7 +164,7 @@ export type AlertFilter = {
|
|
164
164
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
165
165
|
/** The sort order for query results. */
|
166
166
|
orderBy?: InputMaybe<OrderByTypes>;
|
167
|
-
/** Filter alert(s) by searching for
|
167
|
+
/** Filter alert(s) by searching for similar text. */
|
168
168
|
search?: InputMaybe<Scalars['String']['input']>;
|
169
169
|
/** Filter alert(s) by their states. */
|
170
170
|
states?: InputMaybe<Array<EntityState>>;
|
@@ -1050,7 +1050,7 @@ export type CategoryFilter = {
|
|
1050
1050
|
direction?: InputMaybe<OrderDirectionTypes>;
|
1051
1051
|
/** Filter category(s) by their unique ID. */
|
1052
1052
|
id?: InputMaybe<Scalars['ID']['input']>;
|
1053
|
-
/** Limit the number of category(s) to be returned. */
|
1053
|
+
/** Limit the number of category(s) to be returned. Defaults to 100. */
|
1054
1054
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
1055
1055
|
/** Filter category(s) by their name. */
|
1056
1056
|
name?: InputMaybe<Scalars['String']['input']>;
|
@@ -1058,7 +1058,7 @@ export type CategoryFilter = {
|
|
1058
1058
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
1059
1059
|
/** The sort order for query results. */
|
1060
1060
|
orderBy?: InputMaybe<OrderByTypes>;
|
1061
|
-
/** Filter category(s) by searching for
|
1061
|
+
/** Filter category(s) by searching for similar text. */
|
1062
1062
|
search?: InputMaybe<Scalars['String']['input']>;
|
1063
1063
|
/** Filter category(s) by their states. */
|
1064
1064
|
states?: InputMaybe<Array<EntityState>>;
|
@@ -1154,6 +1154,28 @@ export declare enum CerebrasModels {
|
|
1154
1154
|
/** LLaMA 3.3 70b */
|
1155
1155
|
Llama_3_3_70B = "LLAMA_3_3_70B"
|
1156
1156
|
}
|
1157
|
+
/** Represents a classification workflow job. */
|
1158
|
+
export type ClassificationWorkflowJob = {
|
1159
|
+
__typename?: 'ClassificationWorkflowJob';
|
1160
|
+
/** The content classification connector. */
|
1161
|
+
connector?: Maybe<ContentClassificationConnector>;
|
1162
|
+
};
|
1163
|
+
/** Represents a classification workflow job. */
|
1164
|
+
export type ClassificationWorkflowJobInput = {
|
1165
|
+
/** The content classification connector. */
|
1166
|
+
connector?: InputMaybe<ContentClassificationConnectorInput>;
|
1167
|
+
};
|
1168
|
+
/** Represents the classification workflow stage. */
|
1169
|
+
export type ClassificationWorkflowStage = {
|
1170
|
+
__typename?: 'ClassificationWorkflowStage';
|
1171
|
+
/** The jobs for the classification workflow stage. */
|
1172
|
+
jobs?: Maybe<Array<Maybe<ClassificationWorkflowJob>>>;
|
1173
|
+
};
|
1174
|
+
/** Represents the classification workflow stage. */
|
1175
|
+
export type ClassificationWorkflowStageInput = {
|
1176
|
+
/** The jobs for the classification workflow stage. */
|
1177
|
+
jobs?: InputMaybe<Array<InputMaybe<ClassificationWorkflowJobInput>>>;
|
1178
|
+
};
|
1157
1179
|
/** Represents Cohere model properties. */
|
1158
1180
|
export type CohereModelProperties = {
|
1159
1181
|
__typename?: 'CohereModelProperties';
|
@@ -1214,6 +1236,10 @@ export type CohereModelPropertiesUpdateInput = {
|
|
1214
1236
|
};
|
1215
1237
|
/** Cohere model type */
|
1216
1238
|
export declare enum CohereModels {
|
1239
|
+
/** Command A (Latest) */
|
1240
|
+
CommandA = "COMMAND_A",
|
1241
|
+
/** Command A (2025-03 version) */
|
1242
|
+
CommandA_202503 = "COMMAND_A_202503",
|
1217
1243
|
/** Command R (Latest) */
|
1218
1244
|
CommandR = "COMMAND_R",
|
1219
1245
|
/** Command R7B (2024-12 version) */
|
@@ -1273,7 +1299,7 @@ export type CollectionFilter = {
|
|
1273
1299
|
disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
|
1274
1300
|
/** Filter collection(s) by their unique ID. */
|
1275
1301
|
id?: InputMaybe<Scalars['ID']['input']>;
|
1276
|
-
/** Limit the number of collection(s) to be returned. */
|
1302
|
+
/** Limit the number of collection(s) to be returned. Defaults to 100. */
|
1277
1303
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
1278
1304
|
/** Filter collection(s) by their name. */
|
1279
1305
|
name?: InputMaybe<Scalars['String']['input']>;
|
@@ -1281,7 +1307,7 @@ export type CollectionFilter = {
|
|
1281
1307
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
1282
1308
|
/** The sort order for query results. */
|
1283
1309
|
orderBy?: InputMaybe<OrderByTypes>;
|
1284
|
-
/** Filter collection(s) by searching for
|
1310
|
+
/** Filter collection(s) by searching for similar text. */
|
1285
1311
|
search?: InputMaybe<Scalars['String']['input']>;
|
1286
1312
|
/** Filter collection(s) by their states. */
|
1287
1313
|
states?: InputMaybe<Array<EntityState>>;
|
@@ -1355,7 +1381,7 @@ export type ConnectorFilter = {
|
|
1355
1381
|
direction?: InputMaybe<OrderDirectionTypes>;
|
1356
1382
|
/** Filter connector(s) by their unique ID. */
|
1357
1383
|
id?: InputMaybe<Scalars['ID']['input']>;
|
1358
|
-
/** Limit the number of connector(s) to be returned. */
|
1384
|
+
/** Limit the number of connector(s) to be returned. Defaults to 100. */
|
1359
1385
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
1360
1386
|
/** Filter connector(s) by their name. */
|
1361
1387
|
name?: InputMaybe<Scalars['String']['input']>;
|
@@ -1363,7 +1389,7 @@ export type ConnectorFilter = {
|
|
1363
1389
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
1364
1390
|
/** The sort order for query results. */
|
1365
1391
|
orderBy?: InputMaybe<OrderByTypes>;
|
1366
|
-
/** Filter connector(s) by searching for
|
1392
|
+
/** Filter connector(s) by searching for similar text. */
|
1367
1393
|
search?: InputMaybe<Scalars['String']['input']>;
|
1368
1394
|
/** Filter connector(s) by their states. */
|
1369
1395
|
states?: InputMaybe<Array<EntityState>>;
|
@@ -1551,6 +1577,40 @@ export type Content = {
|
|
1551
1577
|
/** The workflow duration of the content. */
|
1552
1578
|
workflowDuration?: Maybe<Scalars['TimeSpan']['output']>;
|
1553
1579
|
};
|
1580
|
+
/** Represents a content classification connector. */
|
1581
|
+
export type ContentClassificationConnector = {
|
1582
|
+
__typename?: 'ContentClassificationConnector';
|
1583
|
+
/** The content type for filtering content classification services. */
|
1584
|
+
contentType?: Maybe<ContentTypes>;
|
1585
|
+
/** The file type for filtering content classification services. */
|
1586
|
+
fileType?: Maybe<FileTypes>;
|
1587
|
+
/** The specific properties for LLM content classification. */
|
1588
|
+
model?: Maybe<ModelContentClassificationProperties>;
|
1589
|
+
/** The specific properties for regex content classification. */
|
1590
|
+
regex?: Maybe<RegexContentClassificationProperties>;
|
1591
|
+
/** The content classification service type. */
|
1592
|
+
type: ContentClassificationServiceTypes;
|
1593
|
+
};
|
1594
|
+
/** Represents a content classification connector. */
|
1595
|
+
export type ContentClassificationConnectorInput = {
|
1596
|
+
/** The content type for filtering content classification services. */
|
1597
|
+
contentType?: InputMaybe<ContentTypes>;
|
1598
|
+
/** The file type for filtering content classification services. */
|
1599
|
+
fileType?: InputMaybe<FileTypes>;
|
1600
|
+
/** The specific properties for LLM content classification. */
|
1601
|
+
model?: InputMaybe<ModelContentClassificationPropertiesInput>;
|
1602
|
+
/** The specific properties for regex content classification. */
|
1603
|
+
regex?: InputMaybe<RegexContentClassificationPropertiesInput>;
|
1604
|
+
/** The entity enrichment service type. */
|
1605
|
+
type?: InputMaybe<ContentClassificationServiceTypes>;
|
1606
|
+
};
|
1607
|
+
/** Content classification service type */
|
1608
|
+
export declare enum ContentClassificationServiceTypes {
|
1609
|
+
/** LLM-based Classification */
|
1610
|
+
Model = "MODEL",
|
1611
|
+
/** Regex-based Classification */
|
1612
|
+
Regex = "REGEX"
|
1613
|
+
}
|
1554
1614
|
/** Represents a content filter. */
|
1555
1615
|
export type ContentCriteria = {
|
1556
1616
|
__typename?: 'ContentCriteria';
|
@@ -1759,15 +1819,17 @@ export type ContentFilter = {
|
|
1759
1819
|
id?: InputMaybe<Scalars['ID']['input']>;
|
1760
1820
|
/** Filter contents by their external identifier. */
|
1761
1821
|
identifier?: InputMaybe<Scalars['String']['input']>;
|
1822
|
+
/** Filter content(s) by searching for similar image. Accepts Base64-encoded image, which is used to generate image embeddings for similarity search. */
|
1823
|
+
image?: InputMaybe<Scalars['String']['input']>;
|
1762
1824
|
/** Filter by original date recent timespan. For example, a timespan of one day will return content authored in the last 24 hours. */
|
1763
1825
|
inLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
1764
|
-
/** Limit the number of content(s) to be returned. */
|
1826
|
+
/** Limit the number of content(s) to be returned. Defaults to 100. */
|
1765
1827
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
1766
1828
|
/** Filter by geo-location. */
|
1767
1829
|
location?: InputMaybe<PointFilter>;
|
1768
1830
|
/** Filter content(s) by their name. */
|
1769
1831
|
name?: InputMaybe<Scalars['String']['input']>;
|
1770
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
1832
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
1771
1833
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
1772
1834
|
/** Filter by observations. */
|
1773
1835
|
observations?: InputMaybe<Array<ObservationReferenceFilter>>;
|
@@ -1781,7 +1843,7 @@ export type ContentFilter = {
|
|
1781
1843
|
originalDateRange?: InputMaybe<DateRangeFilter>;
|
1782
1844
|
/** The query syntax for the search text. Defaults to Simple. */
|
1783
1845
|
queryType?: InputMaybe<SearchQueryTypes>;
|
1784
|
-
/** Filter content(s) by searching for
|
1846
|
+
/** Filter content(s) by searching for similar text. */
|
1785
1847
|
search?: InputMaybe<Scalars['String']['input']>;
|
1786
1848
|
/** The type of search to be used. Defaults to Vector. */
|
1787
1849
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -2125,11 +2187,11 @@ export type ConversationFilter = {
|
|
2125
2187
|
direction?: InputMaybe<OrderDirectionTypes>;
|
2126
2188
|
/** Filter conversation(s) by their unique ID. */
|
2127
2189
|
id?: InputMaybe<Scalars['ID']['input']>;
|
2128
|
-
/** Limit the number of conversation(s) to be returned. */
|
2190
|
+
/** Limit the number of conversation(s) to be returned. Defaults to 100. */
|
2129
2191
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
2130
2192
|
/** Filter conversation(s) by their name. */
|
2131
2193
|
name?: InputMaybe<Scalars['String']['input']>;
|
2132
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
2194
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
2133
2195
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
2134
2196
|
/** Skip the specified number of conversation(s) from the beginning of the result set. Only supported on keyword search. */
|
2135
2197
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
@@ -2137,7 +2199,7 @@ export type ConversationFilter = {
|
|
2137
2199
|
orderBy?: InputMaybe<OrderByTypes>;
|
2138
2200
|
/** The query syntax for the search text. Defaults to Simple. */
|
2139
2201
|
queryType?: InputMaybe<SearchQueryTypes>;
|
2140
|
-
/** Filter conversation(s) by searching for
|
2202
|
+
/** Filter conversation(s) by searching for similar text. */
|
2141
2203
|
search?: InputMaybe<Scalars['String']['input']>;
|
2142
2204
|
/** The type of search to be used. Defaults to Vector. */
|
2143
2205
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -2769,13 +2831,23 @@ export type DropboxFeedPropertiesUpdateInput = {
|
|
2769
2831
|
export declare enum ElevenLabsModels {
|
2770
2832
|
/** Eleven English v1 */
|
2771
2833
|
EnglishV1 = "ENGLISH_V1",
|
2834
|
+
/** Eleven Flash v2 */
|
2835
|
+
FlashV2 = "FLASH_V2",
|
2836
|
+
/** Eleven Flash v2.5 */
|
2837
|
+
FlashV2_5 = "FLASH_V2_5",
|
2772
2838
|
/** Eleven Multilingual v1 */
|
2773
2839
|
MultilingualV1 = "MULTILINGUAL_V1",
|
2774
2840
|
/** Eleven Multilingual v2 */
|
2775
2841
|
MultilingualV2 = "MULTILINGUAL_V2",
|
2776
|
-
/**
|
2842
|
+
/**
|
2843
|
+
* Eleven Turbo v2
|
2844
|
+
* @deprecated Use Flash_V2 instead.
|
2845
|
+
*/
|
2777
2846
|
TurboV2 = "TURBO_V2",
|
2778
|
-
/**
|
2847
|
+
/**
|
2848
|
+
* Eleven Turbo v2.5
|
2849
|
+
* @deprecated Use Flash_V2_5 instead.
|
2850
|
+
*/
|
2779
2851
|
TurboV2_5 = "TURBO_V2_5"
|
2780
2852
|
}
|
2781
2853
|
/** Represents the ElevenLabs publishing properties. */
|
@@ -2833,6 +2905,25 @@ export type EmailFeedPropertiesUpdateInput = {
|
|
2833
2905
|
/** The limit of items to be read from feed, defaults to 100. */
|
2834
2906
|
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
2835
2907
|
};
|
2908
|
+
/** Represents email integration properties. */
|
2909
|
+
export type EmailIntegrationProperties = {
|
2910
|
+
__typename?: 'EmailIntegrationProperties';
|
2911
|
+
/** Reply-to Email address. */
|
2912
|
+
from: Scalars['String']['output'];
|
2913
|
+
/** Email subject. */
|
2914
|
+
subject: Scalars['String']['output'];
|
2915
|
+
/** Email addresses. */
|
2916
|
+
to: Array<Scalars['String']['output']>;
|
2917
|
+
};
|
2918
|
+
/** Represents email integration properties. */
|
2919
|
+
export type EmailIntegrationPropertiesInput = {
|
2920
|
+
/** Reply-to Email address. */
|
2921
|
+
from: Scalars['String']['input'];
|
2922
|
+
/** Email subject. */
|
2923
|
+
subject: Scalars['String']['input'];
|
2924
|
+
/** Email addresses. */
|
2925
|
+
to: Array<Scalars['String']['input']>;
|
2926
|
+
};
|
2836
2927
|
/** Email list type */
|
2837
2928
|
export declare enum EmailListingTypes {
|
2838
2929
|
/** Read new emails */
|
@@ -3036,9 +3127,7 @@ export declare enum EntityExtractionServiceTypes {
|
|
3036
3127
|
* OpenAI Image
|
3037
3128
|
* @deprecated Use MODEL_IMAGE instead.
|
3038
3129
|
*/
|
3039
|
-
OpenAiImage = "OPEN_AI_IMAGE"
|
3040
|
-
/** Roboflow Image */
|
3041
|
-
RoboflowImage = "ROBOFLOW_IMAGE"
|
3130
|
+
OpenAiImage = "OPEN_AI_IMAGE"
|
3042
3131
|
}
|
3043
3132
|
/** Represents an entity reference. */
|
3044
3133
|
export type EntityReference = {
|
@@ -3064,6 +3153,8 @@ export declare enum EntityState {
|
|
3064
3153
|
Archived = "ARCHIVED",
|
3065
3154
|
/** Changed */
|
3066
3155
|
Changed = "CHANGED",
|
3156
|
+
/** Classified */
|
3157
|
+
Classified = "CLASSIFIED",
|
3067
3158
|
/** Closed */
|
3068
3159
|
Closed = "CLOSED",
|
3069
3160
|
/** Created */
|
@@ -3303,7 +3394,7 @@ export type EventFilter = {
|
|
3303
3394
|
id?: InputMaybe<Scalars['ID']['input']>;
|
3304
3395
|
/** Filter by if the event is accessible for free. */
|
3305
3396
|
isAccessibleForFree?: InputMaybe<Scalars['Boolean']['input']>;
|
3306
|
-
/** Limit the number of event(s) to be returned. */
|
3397
|
+
/** Limit the number of event(s) to be returned. Defaults to 100. */
|
3307
3398
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
3308
3399
|
/** Filter by observable geo-location. */
|
3309
3400
|
location?: InputMaybe<PointFilter>;
|
@@ -3313,7 +3404,7 @@ export type EventFilter = {
|
|
3313
3404
|
minPrice?: InputMaybe<Scalars['Decimal']['input']>;
|
3314
3405
|
/** Filter event(s) by their name. */
|
3315
3406
|
name?: InputMaybe<Scalars['String']['input']>;
|
3316
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
3407
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
3317
3408
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
3318
3409
|
/** Skip the specified number of event(s) from the beginning of the result set. Only supported on keyword search. */
|
3319
3410
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
@@ -3325,7 +3416,7 @@ export type EventFilter = {
|
|
3325
3416
|
priceCurrency?: InputMaybe<Scalars['String']['input']>;
|
3326
3417
|
/** The query syntax for the search text. Defaults to Simple. */
|
3327
3418
|
queryType?: InputMaybe<SearchQueryTypes>;
|
3328
|
-
/** Filter event(s) by searching for
|
3419
|
+
/** Filter event(s) by searching for similar text. */
|
3329
3420
|
search?: InputMaybe<Scalars['String']['input']>;
|
3330
3421
|
/** The type of search to be used. Defaults to Vector. */
|
3331
3422
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -3592,7 +3683,7 @@ export type FeedFilter = {
|
|
3592
3683
|
direction?: InputMaybe<OrderDirectionTypes>;
|
3593
3684
|
/** Filter feed(s) by their unique ID. */
|
3594
3685
|
id?: InputMaybe<Scalars['ID']['input']>;
|
3595
|
-
/** Limit the number of feed(s) to be returned. */
|
3686
|
+
/** Limit the number of feed(s) to be returned. Defaults to 100. */
|
3596
3687
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
3597
3688
|
/** Filter feed(s) by their name. */
|
3598
3689
|
name?: InputMaybe<Scalars['String']['input']>;
|
@@ -3600,7 +3691,7 @@ export type FeedFilter = {
|
|
3600
3691
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
3601
3692
|
/** The sort order for query results. */
|
3602
3693
|
orderBy?: InputMaybe<OrderByTypes>;
|
3603
|
-
/** Filter feed(s) by searching for
|
3694
|
+
/** Filter feed(s) by searching for similar text. */
|
3604
3695
|
search?: InputMaybe<Scalars['String']['input']>;
|
3605
3696
|
/** Filter feed(s) by their states. */
|
3606
3697
|
states?: InputMaybe<Array<EntityState>>;
|
@@ -4680,6 +4771,8 @@ export type IntResult = {
|
|
4680
4771
|
/** Represents an integration connector. */
|
4681
4772
|
export type IntegrationConnector = {
|
4682
4773
|
__typename?: 'IntegrationConnector';
|
4774
|
+
/** Email integration properties. */
|
4775
|
+
email?: Maybe<EmailIntegrationProperties>;
|
4683
4776
|
/** Slack integration properties. */
|
4684
4777
|
slack?: Maybe<SlackIntegrationProperties>;
|
4685
4778
|
/** Integration service type. */
|
@@ -4689,6 +4782,8 @@ export type IntegrationConnector = {
|
|
4689
4782
|
};
|
4690
4783
|
/** Represents an integration connector. */
|
4691
4784
|
export type IntegrationConnectorInput = {
|
4785
|
+
/** Email integration properties. */
|
4786
|
+
email?: InputMaybe<EmailIntegrationPropertiesInput>;
|
4692
4787
|
/** Slack integration properties. */
|
4693
4788
|
slack?: InputMaybe<SlackIntegrationPropertiesInput>;
|
4694
4789
|
/** Integration service type. */
|
@@ -4698,6 +4793,8 @@ export type IntegrationConnectorInput = {
|
|
4698
4793
|
};
|
4699
4794
|
/** Represents an integration connector. */
|
4700
4795
|
export type IntegrationConnectorUpdateInput = {
|
4796
|
+
/** Email integration properties. */
|
4797
|
+
email?: InputMaybe<EmailIntegrationPropertiesInput>;
|
4701
4798
|
/** Slack integration properties. */
|
4702
4799
|
slack?: InputMaybe<SlackIntegrationPropertiesInput>;
|
4703
4800
|
/** The URI for the integration, i.e. webhook URI. */
|
@@ -4705,6 +4802,8 @@ export type IntegrationConnectorUpdateInput = {
|
|
4705
4802
|
};
|
4706
4803
|
/** Integration service type */
|
4707
4804
|
export declare enum IntegrationServiceTypes {
|
4805
|
+
/** Email */
|
4806
|
+
Email = "EMAIL",
|
4708
4807
|
/** Slack */
|
4709
4808
|
Slack = "SLACK",
|
4710
4809
|
/** HTTP WebHook integration service */
|
@@ -4962,7 +5061,7 @@ export type LabelFilter = {
|
|
4962
5061
|
direction?: InputMaybe<OrderDirectionTypes>;
|
4963
5062
|
/** Filter label(s) by their unique ID. */
|
4964
5063
|
id?: InputMaybe<Scalars['ID']['input']>;
|
4965
|
-
/** Limit the number of label(s) to be returned. */
|
5064
|
+
/** Limit the number of label(s) to be returned. Defaults to 100. */
|
4966
5065
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
4967
5066
|
/** Filter label(s) by their name. */
|
4968
5067
|
name?: InputMaybe<Scalars['String']['input']>;
|
@@ -4970,7 +5069,7 @@ export type LabelFilter = {
|
|
4970
5069
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
4971
5070
|
/** The sort order for query results. */
|
4972
5071
|
orderBy?: InputMaybe<OrderByTypes>;
|
4973
|
-
/** Filter label(s) by searching for
|
5072
|
+
/** Filter label(s) by searching for similar text. */
|
4974
5073
|
search?: InputMaybe<Scalars['String']['input']>;
|
4975
5074
|
/** Filter label(s) by their states. */
|
4976
5075
|
states?: InputMaybe<Array<EntityState>>;
|
@@ -5312,13 +5411,13 @@ export type MedicalConditionFilter = {
|
|
5312
5411
|
h3?: InputMaybe<H3Filter>;
|
5313
5412
|
/** Filter medicalcondition(s) by their unique ID. */
|
5314
5413
|
id?: InputMaybe<Scalars['ID']['input']>;
|
5315
|
-
/** Limit the number of medicalcondition(s) to be returned. */
|
5414
|
+
/** Limit the number of medicalcondition(s) to be returned. Defaults to 100. */
|
5316
5415
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
5317
5416
|
/** Filter by observable geo-location. */
|
5318
5417
|
location?: InputMaybe<PointFilter>;
|
5319
5418
|
/** Filter medicalcondition(s) by their name. */
|
5320
5419
|
name?: InputMaybe<Scalars['String']['input']>;
|
5321
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
5420
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
5322
5421
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
5323
5422
|
/** Skip the specified number of medicalcondition(s) from the beginning of the result set. Only supported on keyword search. */
|
5324
5423
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
@@ -5326,7 +5425,7 @@ export type MedicalConditionFilter = {
|
|
5326
5425
|
orderBy?: InputMaybe<OrderByTypes>;
|
5327
5426
|
/** The query syntax for the search text. Defaults to Simple. */
|
5328
5427
|
queryType?: InputMaybe<SearchQueryTypes>;
|
5329
|
-
/** Filter medicalcondition(s) by searching for
|
5428
|
+
/** Filter medicalcondition(s) by searching for similar text. */
|
5330
5429
|
search?: InputMaybe<Scalars['String']['input']>;
|
5331
5430
|
/** The type of search to be used. Defaults to Vector. */
|
5332
5431
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -5455,13 +5554,13 @@ export type MedicalContraindicationFilter = {
|
|
5455
5554
|
h3?: InputMaybe<H3Filter>;
|
5456
5555
|
/** Filter medicalcontraindication(s) by their unique ID. */
|
5457
5556
|
id?: InputMaybe<Scalars['ID']['input']>;
|
5458
|
-
/** Limit the number of medicalcontraindication(s) to be returned. */
|
5557
|
+
/** Limit the number of medicalcontraindication(s) to be returned. Defaults to 100. */
|
5459
5558
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
5460
5559
|
/** Filter by observable geo-location. */
|
5461
5560
|
location?: InputMaybe<PointFilter>;
|
5462
5561
|
/** Filter medicalcontraindication(s) by their name. */
|
5463
5562
|
name?: InputMaybe<Scalars['String']['input']>;
|
5464
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
5563
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
5465
5564
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
5466
5565
|
/** Skip the specified number of medicalcontraindication(s) from the beginning of the result set. Only supported on keyword search. */
|
5467
5566
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
@@ -5469,7 +5568,7 @@ export type MedicalContraindicationFilter = {
|
|
5469
5568
|
orderBy?: InputMaybe<OrderByTypes>;
|
5470
5569
|
/** The query syntax for the search text. Defaults to Simple. */
|
5471
5570
|
queryType?: InputMaybe<SearchQueryTypes>;
|
5472
|
-
/** Filter medicalcontraindication(s) by searching for
|
5571
|
+
/** Filter medicalcontraindication(s) by searching for similar text. */
|
5473
5572
|
search?: InputMaybe<Scalars['String']['input']>;
|
5474
5573
|
/** The type of search to be used. Defaults to Vector. */
|
5475
5574
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -5598,13 +5697,13 @@ export type MedicalDeviceFilter = {
|
|
5598
5697
|
h3?: InputMaybe<H3Filter>;
|
5599
5698
|
/** Filter medicaldevice(s) by their unique ID. */
|
5600
5699
|
id?: InputMaybe<Scalars['ID']['input']>;
|
5601
|
-
/** Limit the number of medicaldevice(s) to be returned. */
|
5700
|
+
/** Limit the number of medicaldevice(s) to be returned. Defaults to 100. */
|
5602
5701
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
5603
5702
|
/** Filter by observable geo-location. */
|
5604
5703
|
location?: InputMaybe<PointFilter>;
|
5605
5704
|
/** Filter medicaldevice(s) by their name. */
|
5606
5705
|
name?: InputMaybe<Scalars['String']['input']>;
|
5607
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
5706
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
5608
5707
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
5609
5708
|
/** Skip the specified number of medicaldevice(s) from the beginning of the result set. Only supported on keyword search. */
|
5610
5709
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
@@ -5612,7 +5711,7 @@ export type MedicalDeviceFilter = {
|
|
5612
5711
|
orderBy?: InputMaybe<OrderByTypes>;
|
5613
5712
|
/** The query syntax for the search text. Defaults to Simple. */
|
5614
5713
|
queryType?: InputMaybe<SearchQueryTypes>;
|
5615
|
-
/** Filter medicaldevice(s) by searching for
|
5714
|
+
/** Filter medicaldevice(s) by searching for similar text. */
|
5616
5715
|
search?: InputMaybe<Scalars['String']['input']>;
|
5617
5716
|
/** The type of search to be used. Defaults to Vector. */
|
5618
5717
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -5777,13 +5876,13 @@ export type MedicalDrugClassFilter = {
|
|
5777
5876
|
h3?: InputMaybe<H3Filter>;
|
5778
5877
|
/** Filter medicaldrugclass(s) by their unique ID. */
|
5779
5878
|
id?: InputMaybe<Scalars['ID']['input']>;
|
5780
|
-
/** Limit the number of medicaldrugclass(s) to be returned. */
|
5879
|
+
/** Limit the number of medicaldrugclass(s) to be returned. Defaults to 100. */
|
5781
5880
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
5782
5881
|
/** Filter by observable geo-location. */
|
5783
5882
|
location?: InputMaybe<PointFilter>;
|
5784
5883
|
/** Filter medicaldrugclass(s) by their name. */
|
5785
5884
|
name?: InputMaybe<Scalars['String']['input']>;
|
5786
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
5885
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
5787
5886
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
5788
5887
|
/** Skip the specified number of medicaldrugclass(s) from the beginning of the result set. Only supported on keyword search. */
|
5789
5888
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
@@ -5791,7 +5890,7 @@ export type MedicalDrugClassFilter = {
|
|
5791
5890
|
orderBy?: InputMaybe<OrderByTypes>;
|
5792
5891
|
/** The query syntax for the search text. Defaults to Simple. */
|
5793
5892
|
queryType?: InputMaybe<SearchQueryTypes>;
|
5794
|
-
/** Filter medicaldrugclass(s) by searching for
|
5893
|
+
/** Filter medicaldrugclass(s) by searching for similar text. */
|
5795
5894
|
search?: InputMaybe<Scalars['String']['input']>;
|
5796
5895
|
/** The type of search to be used. Defaults to Vector. */
|
5797
5896
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -5884,13 +5983,13 @@ export type MedicalDrugFilter = {
|
|
5884
5983
|
h3?: InputMaybe<H3Filter>;
|
5885
5984
|
/** Filter medicaldrug(s) by their unique ID. */
|
5886
5985
|
id?: InputMaybe<Scalars['ID']['input']>;
|
5887
|
-
/** Limit the number of medicaldrug(s) to be returned. */
|
5986
|
+
/** Limit the number of medicaldrug(s) to be returned. Defaults to 100. */
|
5888
5987
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
5889
5988
|
/** Filter by observable geo-location. */
|
5890
5989
|
location?: InputMaybe<PointFilter>;
|
5891
5990
|
/** Filter medicaldrug(s) by their name. */
|
5892
5991
|
name?: InputMaybe<Scalars['String']['input']>;
|
5893
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
5992
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
5894
5993
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
5895
5994
|
/** Skip the specified number of medicaldrug(s) from the beginning of the result set. Only supported on keyword search. */
|
5896
5995
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
@@ -5898,7 +5997,7 @@ export type MedicalDrugFilter = {
|
|
5898
5997
|
orderBy?: InputMaybe<OrderByTypes>;
|
5899
5998
|
/** The query syntax for the search text. Defaults to Simple. */
|
5900
5999
|
queryType?: InputMaybe<SearchQueryTypes>;
|
5901
|
-
/** Filter medicaldrug(s) by searching for
|
6000
|
+
/** Filter medicaldrug(s) by searching for similar text. */
|
5902
6001
|
search?: InputMaybe<Scalars['String']['input']>;
|
5903
6002
|
/** The type of search to be used. Defaults to Vector. */
|
5904
6003
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -6027,13 +6126,13 @@ export type MedicalGuidelineFilter = {
|
|
6027
6126
|
h3?: InputMaybe<H3Filter>;
|
6028
6127
|
/** Filter medicalguideline(s) by their unique ID. */
|
6029
6128
|
id?: InputMaybe<Scalars['ID']['input']>;
|
6030
|
-
/** Limit the number of medicalguideline(s) to be returned. */
|
6129
|
+
/** Limit the number of medicalguideline(s) to be returned. Defaults to 100. */
|
6031
6130
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
6032
6131
|
/** Filter by observable geo-location. */
|
6033
6132
|
location?: InputMaybe<PointFilter>;
|
6034
6133
|
/** Filter medicalguideline(s) by their name. */
|
6035
6134
|
name?: InputMaybe<Scalars['String']['input']>;
|
6036
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
6135
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
6037
6136
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
6038
6137
|
/** Skip the specified number of medicalguideline(s) from the beginning of the result set. Only supported on keyword search. */
|
6039
6138
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
@@ -6041,7 +6140,7 @@ export type MedicalGuidelineFilter = {
|
|
6041
6140
|
orderBy?: InputMaybe<OrderByTypes>;
|
6042
6141
|
/** The query syntax for the search text. Defaults to Simple. */
|
6043
6142
|
queryType?: InputMaybe<SearchQueryTypes>;
|
6044
|
-
/** Filter medicalguideline(s) by searching for
|
6143
|
+
/** Filter medicalguideline(s) by searching for similar text. */
|
6045
6144
|
search?: InputMaybe<Scalars['String']['input']>;
|
6046
6145
|
/** The type of search to be used. Defaults to Vector. */
|
6047
6146
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -6170,13 +6269,13 @@ export type MedicalIndicationFilter = {
|
|
6170
6269
|
id?: InputMaybe<Scalars['ID']['input']>;
|
6171
6270
|
/** Filter by similar medical indications. */
|
6172
6271
|
indications?: InputMaybe<Array<EntityReferenceFilter>>;
|
6173
|
-
/** Limit the number of medicalindication(s) to be returned. */
|
6272
|
+
/** Limit the number of medicalindication(s) to be returned. Defaults to 100. */
|
6174
6273
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
6175
6274
|
/** Filter by observable geo-location. */
|
6176
6275
|
location?: InputMaybe<PointFilter>;
|
6177
6276
|
/** Filter medicalindication(s) by their name. */
|
6178
6277
|
name?: InputMaybe<Scalars['String']['input']>;
|
6179
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
6278
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
6180
6279
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
6181
6280
|
/** Skip the specified number of medicalindication(s) from the beginning of the result set. Only supported on keyword search. */
|
6182
6281
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
@@ -6184,7 +6283,7 @@ export type MedicalIndicationFilter = {
|
|
6184
6283
|
orderBy?: InputMaybe<OrderByTypes>;
|
6185
6284
|
/** The query syntax for the search text. Defaults to Simple. */
|
6186
6285
|
queryType?: InputMaybe<SearchQueryTypes>;
|
6187
|
-
/** Filter medicalindication(s) by searching for
|
6286
|
+
/** Filter medicalindication(s) by searching for similar text. */
|
6188
6287
|
search?: InputMaybe<Scalars['String']['input']>;
|
6189
6288
|
/** The type of search to be used. Defaults to Vector. */
|
6190
6289
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -6311,13 +6410,13 @@ export type MedicalProcedureFilter = {
|
|
6311
6410
|
h3?: InputMaybe<H3Filter>;
|
6312
6411
|
/** Filter medicalprocedure(s) by their unique ID. */
|
6313
6412
|
id?: InputMaybe<Scalars['ID']['input']>;
|
6314
|
-
/** Limit the number of medicalprocedure(s) to be returned. */
|
6413
|
+
/** Limit the number of medicalprocedure(s) to be returned. Defaults to 100. */
|
6315
6414
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
6316
6415
|
/** Filter by observable geo-location. */
|
6317
6416
|
location?: InputMaybe<PointFilter>;
|
6318
6417
|
/** Filter medicalprocedure(s) by their name. */
|
6319
6418
|
name?: InputMaybe<Scalars['String']['input']>;
|
6320
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
6419
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
6321
6420
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
6322
6421
|
/** Skip the specified number of medicalprocedure(s) from the beginning of the result set. Only supported on keyword search. */
|
6323
6422
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
@@ -6327,7 +6426,7 @@ export type MedicalProcedureFilter = {
|
|
6327
6426
|
procedures?: InputMaybe<Array<EntityReferenceFilter>>;
|
6328
6427
|
/** The query syntax for the search text. Defaults to Simple. */
|
6329
6428
|
queryType?: InputMaybe<SearchQueryTypes>;
|
6330
|
-
/** Filter medicalprocedure(s) by searching for
|
6429
|
+
/** Filter medicalprocedure(s) by searching for similar text. */
|
6331
6430
|
search?: InputMaybe<Scalars['String']['input']>;
|
6332
6431
|
/** The type of search to be used. Defaults to Vector. */
|
6333
6432
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -6456,13 +6555,13 @@ export type MedicalStudyFilter = {
|
|
6456
6555
|
h3?: InputMaybe<H3Filter>;
|
6457
6556
|
/** Filter medicalstudy(s) by their unique ID. */
|
6458
6557
|
id?: InputMaybe<Scalars['ID']['input']>;
|
6459
|
-
/** Limit the number of medicalstudy(s) to be returned. */
|
6558
|
+
/** Limit the number of medicalstudy(s) to be returned. Defaults to 100. */
|
6460
6559
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
6461
6560
|
/** Filter by observable geo-location. */
|
6462
6561
|
location?: InputMaybe<PointFilter>;
|
6463
6562
|
/** Filter medicalstudy(s) by their name. */
|
6464
6563
|
name?: InputMaybe<Scalars['String']['input']>;
|
6465
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
6564
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
6466
6565
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
6467
6566
|
/** Skip the specified number of medicalstudy(s) from the beginning of the result set. Only supported on keyword search. */
|
6468
6567
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
@@ -6470,7 +6569,7 @@ export type MedicalStudyFilter = {
|
|
6470
6569
|
orderBy?: InputMaybe<OrderByTypes>;
|
6471
6570
|
/** The query syntax for the search text. Defaults to Simple. */
|
6472
6571
|
queryType?: InputMaybe<SearchQueryTypes>;
|
6473
|
-
/** Filter medicalstudy(s) by searching for
|
6572
|
+
/** Filter medicalstudy(s) by searching for similar text. */
|
6474
6573
|
search?: InputMaybe<Scalars['String']['input']>;
|
6475
6574
|
/** The type of search to be used. Defaults to Vector. */
|
6476
6575
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -6605,13 +6704,13 @@ export type MedicalTestFilter = {
|
|
6605
6704
|
h3?: InputMaybe<H3Filter>;
|
6606
6705
|
/** Filter medicaltest(s) by their unique ID. */
|
6607
6706
|
id?: InputMaybe<Scalars['ID']['input']>;
|
6608
|
-
/** Limit the number of medicaltest(s) to be returned. */
|
6707
|
+
/** Limit the number of medicaltest(s) to be returned. Defaults to 100. */
|
6609
6708
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
6610
6709
|
/** Filter by observable geo-location. */
|
6611
6710
|
location?: InputMaybe<PointFilter>;
|
6612
6711
|
/** Filter medicaltest(s) by their name. */
|
6613
6712
|
name?: InputMaybe<Scalars['String']['input']>;
|
6614
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
6713
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
6615
6714
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
6616
6715
|
/** Skip the specified number of medicaltest(s) from the beginning of the result set. Only supported on keyword search. */
|
6617
6716
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
@@ -6619,7 +6718,7 @@ export type MedicalTestFilter = {
|
|
6619
6718
|
orderBy?: InputMaybe<OrderByTypes>;
|
6620
6719
|
/** The query syntax for the search text. Defaults to Simple. */
|
6621
6720
|
queryType?: InputMaybe<SearchQueryTypes>;
|
6622
|
-
/** Filter medicaltest(s) by searching for
|
6721
|
+
/** Filter medicaltest(s) by searching for similar text. */
|
6623
6722
|
search?: InputMaybe<Scalars['String']['input']>;
|
6624
6723
|
/** The type of search to be used. Defaults to Vector. */
|
6625
6724
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -6748,13 +6847,13 @@ export type MedicalTherapyFilter = {
|
|
6748
6847
|
h3?: InputMaybe<H3Filter>;
|
6749
6848
|
/** Filter medicaltherapy(s) by their unique ID. */
|
6750
6849
|
id?: InputMaybe<Scalars['ID']['input']>;
|
6751
|
-
/** Limit the number of medicaltherapy(s) to be returned. */
|
6850
|
+
/** Limit the number of medicaltherapy(s) to be returned. Defaults to 100. */
|
6752
6851
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
6753
6852
|
/** Filter by observable geo-location. */
|
6754
6853
|
location?: InputMaybe<PointFilter>;
|
6755
6854
|
/** Filter medicaltherapy(s) by their name. */
|
6756
6855
|
name?: InputMaybe<Scalars['String']['input']>;
|
6757
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
6856
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
6758
6857
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
6759
6858
|
/** Skip the specified number of medicaltherapy(s) from the beginning of the result set. Only supported on keyword search. */
|
6760
6859
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
@@ -6762,7 +6861,7 @@ export type MedicalTherapyFilter = {
|
|
6762
6861
|
orderBy?: InputMaybe<OrderByTypes>;
|
6763
6862
|
/** The query syntax for the search text. Defaults to Simple. */
|
6764
6863
|
queryType?: InputMaybe<SearchQueryTypes>;
|
6765
|
-
/** Filter medicaltherapy(s) by searching for
|
6864
|
+
/** Filter medicaltherapy(s) by searching for similar text. */
|
6766
6865
|
search?: InputMaybe<Scalars['String']['input']>;
|
6767
6866
|
/** The type of search to be used. Defaults to Vector. */
|
6768
6867
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -6853,7 +6952,7 @@ export type MetadataFilter = {
|
|
6853
6952
|
direction?: InputMaybe<OrderDirectionTypes>;
|
6854
6953
|
/** Filter metadata(s) by their unique ID. */
|
6855
6954
|
id?: InputMaybe<Scalars['ID']['input']>;
|
6856
|
-
/** Limit the number of metadata(s) to be returned. */
|
6955
|
+
/** Limit the number of metadata(s) to be returned. Defaults to 100. */
|
6857
6956
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
6858
6957
|
/** Filter by metadata types. */
|
6859
6958
|
metadataTypes?: InputMaybe<Array<InputMaybe<MetadataTypes>>>;
|
@@ -6863,7 +6962,7 @@ export type MetadataFilter = {
|
|
6863
6962
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
6864
6963
|
/** The sort order for query results. */
|
6865
6964
|
orderBy?: InputMaybe<OrderByTypes>;
|
6866
|
-
/** Filter metadata(s) by searching for
|
6965
|
+
/** Filter metadata(s) by searching for similar text. */
|
6867
6966
|
search?: InputMaybe<Scalars['String']['input']>;
|
6868
6967
|
/** Filter metadata(s) by their states. */
|
6869
6968
|
states?: InputMaybe<Array<EntityState>>;
|
@@ -7190,6 +7289,21 @@ export type ModelCardResults = {
|
|
7190
7289
|
/** The list of model cards. */
|
7191
7290
|
results?: Maybe<Array<ModelCard>>;
|
7192
7291
|
};
|
7292
|
+
/** Represents the model content classification properties. */
|
7293
|
+
export type ModelContentClassificationProperties = {
|
7294
|
+
__typename?: 'ModelContentClassificationProperties';
|
7295
|
+
/** The LLM prompt content classification rules. */
|
7296
|
+
rules?: Maybe<Array<Maybe<PromptClassificationRule>>>;
|
7297
|
+
/** The LLM specification used for content classification. */
|
7298
|
+
specification?: Maybe<EntityReference>;
|
7299
|
+
};
|
7300
|
+
/** Represents the model content classification properties. */
|
7301
|
+
export type ModelContentClassificationPropertiesInput = {
|
7302
|
+
/** The LLM prompt content classification rules. */
|
7303
|
+
rules?: InputMaybe<Array<InputMaybe<PromptClassificationRuleInput>>>;
|
7304
|
+
/** The LLM specification used for content classification. */
|
7305
|
+
specification?: InputMaybe<EntityReferenceInput>;
|
7306
|
+
};
|
7193
7307
|
/** Represents the LLM document preparation properties. */
|
7194
7308
|
export type ModelDocumentPreparationProperties = {
|
7195
7309
|
__typename?: 'ModelDocumentPreparationProperties';
|
@@ -7631,6 +7745,8 @@ export type Mutation = {
|
|
7631
7745
|
reviseText?: Maybe<ReviseContent>;
|
7632
7746
|
/** Screenshot web page by URI. */
|
7633
7747
|
screenshotPage?: Maybe<Content>;
|
7748
|
+
/** Sends a notification. */
|
7749
|
+
sendNotification?: Maybe<BooleanResult>;
|
7634
7750
|
/** Suggest prompts for a conversation. */
|
7635
7751
|
suggestConversation?: Maybe<PromptSuggestion>;
|
7636
7752
|
/** Summarizes contents based on the provided filter criteria. */
|
@@ -7701,6 +7817,14 @@ export type Mutation = {
|
|
7701
7817
|
updateUser?: Maybe<User>;
|
7702
7818
|
/** Updates an existing content workflow. */
|
7703
7819
|
updateWorkflow?: Maybe<Workflow>;
|
7820
|
+
/** Upserts a category. */
|
7821
|
+
upsertCategory?: Maybe<Category>;
|
7822
|
+
/** Upserts a label. */
|
7823
|
+
upsertLabel?: Maybe<Label>;
|
7824
|
+
/** Upserts an LLM specification. */
|
7825
|
+
upsertSpecification?: Maybe<Specification>;
|
7826
|
+
/** Upserts a content workflow. */
|
7827
|
+
upsertWorkflow?: Maybe<Workflow>;
|
7704
7828
|
};
|
7705
7829
|
export type MutationAddCollectionContentsArgs = {
|
7706
7830
|
contents: Array<EntityReferenceInput>;
|
@@ -8399,6 +8523,11 @@ export type MutationScreenshotPageArgs = {
|
|
8399
8523
|
uri: Scalars['URL']['input'];
|
8400
8524
|
workflow?: InputMaybe<EntityReferenceInput>;
|
8401
8525
|
};
|
8526
|
+
export type MutationSendNotificationArgs = {
|
8527
|
+
connector: IntegrationConnectorInput;
|
8528
|
+
text: Scalars['String']['input'];
|
8529
|
+
textType?: InputMaybe<TextTypes>;
|
8530
|
+
};
|
8402
8531
|
export type MutationSuggestConversationArgs = {
|
8403
8532
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8404
8533
|
count?: InputMaybe<Scalars['Int']['input']>;
|
@@ -8512,6 +8641,18 @@ export type MutationUpdateUserArgs = {
|
|
8512
8641
|
export type MutationUpdateWorkflowArgs = {
|
8513
8642
|
workflow: WorkflowUpdateInput;
|
8514
8643
|
};
|
8644
|
+
export type MutationUpsertCategoryArgs = {
|
8645
|
+
category: CategoryInput;
|
8646
|
+
};
|
8647
|
+
export type MutationUpsertLabelArgs = {
|
8648
|
+
label: LabelInput;
|
8649
|
+
};
|
8650
|
+
export type MutationUpsertSpecificationArgs = {
|
8651
|
+
specification: SpecificationInput;
|
8652
|
+
};
|
8653
|
+
export type MutationUpsertWorkflowArgs = {
|
8654
|
+
workflow: WorkflowInput;
|
8655
|
+
};
|
8515
8656
|
/** Represents a named entity reference. */
|
8516
8657
|
export type NamedEntityReference = {
|
8517
8658
|
__typename?: 'NamedEntityReference';
|
@@ -9159,13 +9300,13 @@ export type OrganizationFilter = {
|
|
9159
9300
|
h3?: InputMaybe<H3Filter>;
|
9160
9301
|
/** Filter organization(s) by their unique ID. */
|
9161
9302
|
id?: InputMaybe<Scalars['ID']['input']>;
|
9162
|
-
/** Limit the number of organization(s) to be returned. */
|
9303
|
+
/** Limit the number of organization(s) to be returned. Defaults to 100. */
|
9163
9304
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
9164
9305
|
/** Filter by observable geo-location. */
|
9165
9306
|
location?: InputMaybe<PointFilter>;
|
9166
9307
|
/** Filter organization(s) by their name. */
|
9167
9308
|
name?: InputMaybe<Scalars['String']['input']>;
|
9168
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
9309
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
9169
9310
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
9170
9311
|
/** Skip the specified number of organization(s) from the beginning of the result set. Only supported on keyword search. */
|
9171
9312
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
@@ -9175,7 +9316,7 @@ export type OrganizationFilter = {
|
|
9175
9316
|
organizations?: InputMaybe<Array<EntityReferenceFilter>>;
|
9176
9317
|
/** The query syntax for the search text. Defaults to Simple. */
|
9177
9318
|
queryType?: InputMaybe<SearchQueryTypes>;
|
9178
|
-
/** Filter organization(s) by searching for
|
9319
|
+
/** Filter organization(s) by searching for similar text. */
|
9179
9320
|
search?: InputMaybe<Scalars['String']['input']>;
|
9180
9321
|
/** The type of search to be used. Defaults to Vector. */
|
9181
9322
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -9406,13 +9547,13 @@ export type PersonFilter = {
|
|
9406
9547
|
h3?: InputMaybe<H3Filter>;
|
9407
9548
|
/** Filter person(s) by their unique ID. */
|
9408
9549
|
id?: InputMaybe<Scalars['ID']['input']>;
|
9409
|
-
/** Limit the number of person(s) to be returned. */
|
9550
|
+
/** Limit the number of person(s) to be returned. Defaults to 100. */
|
9410
9551
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
9411
9552
|
/** Filter by observable geo-location. */
|
9412
9553
|
location?: InputMaybe<PointFilter>;
|
9413
9554
|
/** Filter person(s) by their name. */
|
9414
9555
|
name?: InputMaybe<Scalars['String']['input']>;
|
9415
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
9556
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
9416
9557
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
9417
9558
|
/** Skip the specified number of person(s) from the beginning of the result set. Only supported on keyword search. */
|
9418
9559
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
@@ -9424,7 +9565,7 @@ export type PersonFilter = {
|
|
9424
9565
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
9425
9566
|
/** The query syntax for the search text. Defaults to Simple. */
|
9426
9567
|
queryType?: InputMaybe<SearchQueryTypes>;
|
9427
|
-
/** Filter person(s) by searching for
|
9568
|
+
/** Filter person(s) by searching for similar text. */
|
9428
9569
|
search?: InputMaybe<Scalars['String']['input']>;
|
9429
9570
|
/** The type of search to be used. Defaults to Vector. */
|
9430
9571
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -9605,13 +9746,13 @@ export type PlaceFilter = {
|
|
9605
9746
|
h3?: InputMaybe<H3Filter>;
|
9606
9747
|
/** Filter place(s) by their unique ID. */
|
9607
9748
|
id?: InputMaybe<Scalars['ID']['input']>;
|
9608
|
-
/** Limit the number of place(s) to be returned. */
|
9749
|
+
/** Limit the number of place(s) to be returned. Defaults to 100. */
|
9609
9750
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
9610
9751
|
/** Filter by observable geo-location. */
|
9611
9752
|
location?: InputMaybe<PointFilter>;
|
9612
9753
|
/** Filter place(s) by their name. */
|
9613
9754
|
name?: InputMaybe<Scalars['String']['input']>;
|
9614
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
9755
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
9615
9756
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
9616
9757
|
/** Skip the specified number of place(s) from the beginning of the result set. Only supported on keyword search. */
|
9617
9758
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
@@ -9621,7 +9762,7 @@ export type PlaceFilter = {
|
|
9621
9762
|
places?: InputMaybe<Array<EntityReferenceFilter>>;
|
9622
9763
|
/** The query syntax for the search text. Defaults to Simple. */
|
9623
9764
|
queryType?: InputMaybe<SearchQueryTypes>;
|
9624
|
-
/** Filter place(s) by searching for
|
9765
|
+
/** Filter place(s) by searching for similar text. */
|
9625
9766
|
search?: InputMaybe<Scalars['String']['input']>;
|
9626
9767
|
/** The type of search to be used. Defaults to Vector. */
|
9627
9768
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -9868,7 +10009,7 @@ export type ProductFilter = {
|
|
9868
10009
|
h3?: InputMaybe<H3Filter>;
|
9869
10010
|
/** Filter product(s) by their unique ID. */
|
9870
10011
|
id?: InputMaybe<Scalars['ID']['input']>;
|
9871
|
-
/** Limit the number of product(s) to be returned. */
|
10012
|
+
/** Limit the number of product(s) to be returned. Defaults to 100. */
|
9872
10013
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
9873
10014
|
/** Filter by observable geo-location. */
|
9874
10015
|
location?: InputMaybe<PointFilter>;
|
@@ -9878,7 +10019,7 @@ export type ProductFilter = {
|
|
9878
10019
|
model?: InputMaybe<Scalars['String']['input']>;
|
9879
10020
|
/** Filter product(s) by their name. */
|
9880
10021
|
name?: InputMaybe<Scalars['String']['input']>;
|
9881
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
10022
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
9882
10023
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
9883
10024
|
/** Skip the specified number of product(s) from the beginning of the result set. Only supported on keyword search. */
|
9884
10025
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
@@ -9892,7 +10033,7 @@ export type ProductFilter = {
|
|
9892
10033
|
queryType?: InputMaybe<SearchQueryTypes>;
|
9893
10034
|
/** Filter by release date range. */
|
9894
10035
|
releaseDateRange?: InputMaybe<DateRangeFilter>;
|
9895
|
-
/** Filter product(s) by searching for
|
10036
|
+
/** Filter product(s) by searching for similar text. */
|
9896
10037
|
search?: InputMaybe<Scalars['String']['input']>;
|
9897
10038
|
/** The type of search to be used. Defaults to Vector. */
|
9898
10039
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -10020,6 +10161,8 @@ export type Project = {
|
|
10020
10161
|
/** Represents correlated project credits. */
|
10021
10162
|
export type ProjectCredits = {
|
10022
10163
|
__typename?: 'ProjectCredits';
|
10164
|
+
/** The content classification ratio of credits. */
|
10165
|
+
classificationRatio?: Maybe<Scalars['Decimal']['output']>;
|
10023
10166
|
/** The LLM completion ratio of credits. */
|
10024
10167
|
completionRatio?: Maybe<Scalars['Decimal']['output']>;
|
10025
10168
|
/** The compute ratio of credits. */
|
@@ -10061,7 +10204,7 @@ export type ProjectFilter = {
|
|
10061
10204
|
direction?: InputMaybe<OrderDirectionTypes>;
|
10062
10205
|
/** Filter project(s) by their unique ID. */
|
10063
10206
|
id?: InputMaybe<Scalars['ID']['input']>;
|
10064
|
-
/** Limit the number of project(s) to be returned. */
|
10207
|
+
/** Limit the number of project(s) to be returned. Defaults to 100. */
|
10065
10208
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
10066
10209
|
/** Filter project(s) by their name. */
|
10067
10210
|
name?: InputMaybe<Scalars['String']['input']>;
|
@@ -10069,7 +10212,7 @@ export type ProjectFilter = {
|
|
10069
10212
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
10070
10213
|
/** The sort order for query results. */
|
10071
10214
|
orderBy?: InputMaybe<OrderByTypes>;
|
10072
|
-
/** Filter project(s) by searching for
|
10215
|
+
/** Filter project(s) by searching for similar text. */
|
10073
10216
|
search?: InputMaybe<Scalars['String']['input']>;
|
10074
10217
|
/** Filter project(s) by their states. */
|
10075
10218
|
states?: InputMaybe<Array<EntityState>>;
|
@@ -10305,6 +10448,21 @@ export type ProjectUsageRecord = {
|
|
10305
10448
|
/** The workflow stage associated with the usage record, i.e. 'Preparation' or 'Enrichment'. */
|
10306
10449
|
workflow?: Maybe<Scalars['String']['output']>;
|
10307
10450
|
};
|
10451
|
+
/** Represents the LLM prompt content classification rule. */
|
10452
|
+
export type PromptClassificationRule = {
|
10453
|
+
__typename?: 'PromptClassificationRule';
|
10454
|
+
/** The LLM prompt for content classification. Treat as 'If content ...'. */
|
10455
|
+
if?: Maybe<Scalars['String']['output']>;
|
10456
|
+
/** The label name to be assigned upon content classification. Treat as 'Then label as ...'. */
|
10457
|
+
then?: Maybe<Scalars['String']['output']>;
|
10458
|
+
};
|
10459
|
+
/** Represents the LLM prompt content classification rule. */
|
10460
|
+
export type PromptClassificationRuleInput = {
|
10461
|
+
/** The LLM prompt for content classification. Treat as 'If content ...'. */
|
10462
|
+
if?: InputMaybe<Scalars['String']['input']>;
|
10463
|
+
/** The label name to be assigned upon content classification. Treat as 'Then label as ...'. */
|
10464
|
+
then?: InputMaybe<Scalars['String']['input']>;
|
10465
|
+
};
|
10308
10466
|
/** Represents a prompted LLM completion. */
|
10309
10467
|
export type PromptCompletion = {
|
10310
10468
|
__typename?: 'PromptCompletion';
|
@@ -10494,6 +10652,8 @@ export type Query = {
|
|
10494
10652
|
events?: Maybe<EventResults>;
|
10495
10653
|
/** Lookup a feed given its ID. */
|
10496
10654
|
feed?: Maybe<Feed>;
|
10655
|
+
/** Returns whether any feed exists based on the provided filter criteria. */
|
10656
|
+
feedExists?: Maybe<BooleanResult>;
|
10497
10657
|
/** Retrieves feeds based on the provided filter criteria. */
|
10498
10658
|
feeds?: Maybe<FeedResults>;
|
10499
10659
|
/** Returns if ingested content has finished (or errored). */
|
@@ -10608,6 +10768,8 @@ export type Query = {
|
|
10608
10768
|
softwares?: Maybe<SoftwareResults>;
|
10609
10769
|
/** Lookup a specification given its ID. */
|
10610
10770
|
specification?: Maybe<Specification>;
|
10771
|
+
/** Returns whether any specification exists based on the provided filter criteria. */
|
10772
|
+
specificationExists?: Maybe<BooleanResult>;
|
10611
10773
|
/** Retrieves specifications based on the provided filter criteria. */
|
10612
10774
|
specifications?: Maybe<SpecificationResults>;
|
10613
10775
|
/** Retrieves project usage. */
|
@@ -10620,6 +10782,8 @@ export type Query = {
|
|
10620
10782
|
users?: Maybe<UserResults>;
|
10621
10783
|
/** Lookup a workflow given its ID. */
|
10622
10784
|
workflow?: Maybe<Workflow>;
|
10785
|
+
/** Returns whether any workflow exists based on the provided filter criteria. */
|
10786
|
+
workflowExists?: Maybe<BooleanResult>;
|
10623
10787
|
/** Retrieves workflows based on the provided filter criteria. */
|
10624
10788
|
workflows?: Maybe<WorkflowResults>;
|
10625
10789
|
};
|
@@ -10803,6 +10967,10 @@ export type QueryFeedArgs = {
|
|
10803
10967
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10804
10968
|
id: Scalars['ID']['input'];
|
10805
10969
|
};
|
10970
|
+
export type QueryFeedExistsArgs = {
|
10971
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10972
|
+
filter?: InputMaybe<FeedFilter>;
|
10973
|
+
};
|
10806
10974
|
export type QueryFeedsArgs = {
|
10807
10975
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10808
10976
|
filter?: InputMaybe<FeedFilter>;
|
@@ -11045,6 +11213,10 @@ export type QuerySpecificationArgs = {
|
|
11045
11213
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11046
11214
|
id: Scalars['ID']['input'];
|
11047
11215
|
};
|
11216
|
+
export type QuerySpecificationExistsArgs = {
|
11217
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11218
|
+
filter?: InputMaybe<SpecificationFilter>;
|
11219
|
+
};
|
11048
11220
|
export type QuerySpecificationsArgs = {
|
11049
11221
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11050
11222
|
filter?: InputMaybe<SpecificationFilter>;
|
@@ -11071,6 +11243,10 @@ export type QueryWorkflowArgs = {
|
|
11071
11243
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11072
11244
|
id: Scalars['ID']['input'];
|
11073
11245
|
};
|
11246
|
+
export type QueryWorkflowExistsArgs = {
|
11247
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11248
|
+
filter?: InputMaybe<WorkflowFilter>;
|
11249
|
+
};
|
11074
11250
|
export type QueryWorkflowsArgs = {
|
11075
11251
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11076
11252
|
filter?: InputMaybe<WorkflowFilter>;
|
@@ -11115,6 +11291,47 @@ export type RedditFeedPropertiesUpdateInput = {
|
|
11115
11291
|
/** The limit of items to be read from feed, defaults to 100. */
|
11116
11292
|
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
11117
11293
|
};
|
11294
|
+
/** Represents the regex prompt content classification rule. */
|
11295
|
+
export type RegexClassificationRule = {
|
11296
|
+
__typename?: 'RegexClassificationRule';
|
11297
|
+
/** The regex pattern for content classification. Treat as 'If property at path matches ...'. */
|
11298
|
+
matches?: Maybe<Scalars['String']['output']>;
|
11299
|
+
/** The JSONPath of the JSON property to match with regex pattern. Used only with metadata sources. Treat as 'If property at ... matches regex pattern'. */
|
11300
|
+
path?: Maybe<Scalars['String']['output']>;
|
11301
|
+
/** The label name to be assigned upon content classification. Treat as 'Then label as ...'. */
|
11302
|
+
then?: Maybe<Scalars['String']['output']>;
|
11303
|
+
/** The content classification source type. */
|
11304
|
+
type?: Maybe<RegexSourceTypes>;
|
11305
|
+
};
|
11306
|
+
/** Represents the regex prompt content classification rule. */
|
11307
|
+
export type RegexClassificationRuleInput = {
|
11308
|
+
/** The regex pattern for content classification. Treat as 'If property at path matches ...'. */
|
11309
|
+
matches?: InputMaybe<Scalars['String']['input']>;
|
11310
|
+
/** The JSONPath of the JSON property to match with regex pattern. Used only with metadata sources. Treat as 'If property at ... matches regex pattern'. */
|
11311
|
+
path?: InputMaybe<Scalars['String']['input']>;
|
11312
|
+
/** The label name to be assigned upon content classification. Treat as 'Then label as ...'. */
|
11313
|
+
then?: InputMaybe<Scalars['String']['input']>;
|
11314
|
+
/** The content classification source type. */
|
11315
|
+
type?: InputMaybe<RegexSourceTypes>;
|
11316
|
+
};
|
11317
|
+
/** Represents the regex content classification properties. */
|
11318
|
+
export type RegexContentClassificationProperties = {
|
11319
|
+
__typename?: 'RegexContentClassificationProperties';
|
11320
|
+
/** The regex content classification rules. */
|
11321
|
+
rules?: Maybe<Array<Maybe<RegexClassificationRule>>>;
|
11322
|
+
};
|
11323
|
+
/** Represents the regex content classification properties. */
|
11324
|
+
export type RegexContentClassificationPropertiesInput = {
|
11325
|
+
/** The regex content classification rules. */
|
11326
|
+
rules?: InputMaybe<Array<InputMaybe<RegexClassificationRuleInput>>>;
|
11327
|
+
};
|
11328
|
+
/** Regex classification source type */
|
11329
|
+
export declare enum RegexSourceTypes {
|
11330
|
+
/** Content markdown text */
|
11331
|
+
Markdown = "MARKDOWN",
|
11332
|
+
/** Content metadata */
|
11333
|
+
Metadata = "METADATA"
|
11334
|
+
}
|
11118
11335
|
/** Represents a rendition. */
|
11119
11336
|
export type Rendition = {
|
11120
11337
|
__typename?: 'Rendition';
|
@@ -11313,13 +11530,13 @@ export type RepoFilter = {
|
|
11313
11530
|
h3?: InputMaybe<H3Filter>;
|
11314
11531
|
/** Filter repo(s) by their unique ID. */
|
11315
11532
|
id?: InputMaybe<Scalars['ID']['input']>;
|
11316
|
-
/** Limit the number of repo(s) to be returned. */
|
11533
|
+
/** Limit the number of repo(s) to be returned. Defaults to 100. */
|
11317
11534
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
11318
11535
|
/** Filter by observable geo-location. */
|
11319
11536
|
location?: InputMaybe<PointFilter>;
|
11320
11537
|
/** Filter repo(s) by their name. */
|
11321
11538
|
name?: InputMaybe<Scalars['String']['input']>;
|
11322
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
11539
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
11323
11540
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
11324
11541
|
/** Skip the specified number of repo(s) from the beginning of the result set. Only supported on keyword search. */
|
11325
11542
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
@@ -11329,7 +11546,7 @@ export type RepoFilter = {
|
|
11329
11546
|
queryType?: InputMaybe<SearchQueryTypes>;
|
11330
11547
|
/** Filter by similar code repositories. */
|
11331
11548
|
repos?: InputMaybe<Array<EntityReferenceFilter>>;
|
11332
|
-
/** Filter repo(s) by searching for
|
11549
|
+
/** Filter repo(s) by searching for similar text. */
|
11333
11550
|
search?: InputMaybe<Scalars['String']['input']>;
|
11334
11551
|
/** The type of search to be used. Defaults to Vector. */
|
11335
11552
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -11538,6 +11755,8 @@ export declare enum SearchQueryTypes {
|
|
11538
11755
|
export declare enum SearchServiceTypes {
|
11539
11756
|
/** Exa search feed service */
|
11540
11757
|
Exa = "EXA",
|
11758
|
+
/** Podscan search feed service */
|
11759
|
+
Podscan = "PODSCAN",
|
11541
11760
|
/** Tavily search feed service */
|
11542
11761
|
Tavily = "TAVILY"
|
11543
11762
|
}
|
@@ -11928,13 +12147,13 @@ export type SoftwareFilter = {
|
|
11928
12147
|
h3?: InputMaybe<H3Filter>;
|
11929
12148
|
/** Filter software(s) by their unique ID. */
|
11930
12149
|
id?: InputMaybe<Scalars['ID']['input']>;
|
11931
|
-
/** Limit the number of software(s) to be returned. */
|
12150
|
+
/** Limit the number of software(s) to be returned. Defaults to 100. */
|
11932
12151
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
11933
12152
|
/** Filter by observable geo-location. */
|
11934
12153
|
location?: InputMaybe<PointFilter>;
|
11935
12154
|
/** Filter software(s) by their name. */
|
11936
12155
|
name?: InputMaybe<Scalars['String']['input']>;
|
11937
|
-
/** When using similarity search, the number of similar items to be returned. Defaults to
|
12156
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
11938
12157
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
11939
12158
|
/** Skip the specified number of software(s) from the beginning of the result set. Only supported on keyword search. */
|
11940
12159
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
@@ -11942,7 +12161,7 @@ export type SoftwareFilter = {
|
|
11942
12161
|
orderBy?: InputMaybe<OrderByTypes>;
|
11943
12162
|
/** The query syntax for the search text. Defaults to Simple. */
|
11944
12163
|
queryType?: InputMaybe<SearchQueryTypes>;
|
11945
|
-
/** Filter software(s) by searching for
|
12164
|
+
/** Filter software(s) by searching for similar text. */
|
11946
12165
|
search?: InputMaybe<Scalars['String']['input']>;
|
11947
12166
|
/** The type of search to be used. Defaults to Vector. */
|
11948
12167
|
searchType?: InputMaybe<SearchTypes>;
|
@@ -12028,7 +12247,7 @@ export type Specification = {
|
|
12028
12247
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
12029
12248
|
/** The name of the specification. */
|
12030
12249
|
name: Scalars['String']['output'];
|
12031
|
-
/** The number of similar items to be returned from content search. Defaults to
|
12250
|
+
/** The number of similar items to be returned from content search. Defaults to 100. */
|
12032
12251
|
numberSimilar?: Maybe<Scalars['Int']['output']>;
|
12033
12252
|
/** The OpenAI model properties. */
|
12034
12253
|
openAI?: Maybe<OpenAiModelProperties>;
|
@@ -12073,7 +12292,7 @@ export type SpecificationFilter = {
|
|
12073
12292
|
direction?: InputMaybe<OrderDirectionTypes>;
|
12074
12293
|
/** Filter specification(s) by their unique ID. */
|
12075
12294
|
id?: InputMaybe<Scalars['ID']['input']>;
|
12076
|
-
/** Limit the number of specification(s) to be returned. */
|
12295
|
+
/** Limit the number of specification(s) to be returned. Defaults to 100. */
|
12077
12296
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
12078
12297
|
/** Filter specification(s) by their name. */
|
12079
12298
|
name?: InputMaybe<Scalars['String']['input']>;
|
@@ -12081,7 +12300,7 @@ export type SpecificationFilter = {
|
|
12081
12300
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
12082
12301
|
/** The sort order for query results. */
|
12083
12302
|
orderBy?: InputMaybe<OrderByTypes>;
|
12084
|
-
/** Filter specification(s) by searching for
|
12303
|
+
/** Filter specification(s) by searching for similar text. */
|
12085
12304
|
search?: InputMaybe<Scalars['String']['input']>;
|
12086
12305
|
/** Filter by LLM service types. */
|
12087
12306
|
serviceTypes?: InputMaybe<Array<InputMaybe<ModelServiceTypes>>>;
|
@@ -12120,7 +12339,7 @@ export type SpecificationInput = {
|
|
12120
12339
|
mistral?: InputMaybe<MistralModelPropertiesInput>;
|
12121
12340
|
/** The name of the specification. */
|
12122
12341
|
name: Scalars['String']['input'];
|
12123
|
-
/** The number of similar items to be returned from content search. Defaults to
|
12342
|
+
/** The number of similar items to be returned from content search. Defaults to 100. */
|
12124
12343
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
12125
12344
|
/** The OpenAI model properties. */
|
12126
12345
|
openAI?: InputMaybe<OpenAiModelPropertiesInput>;
|
@@ -12155,6 +12374,8 @@ export type SpecificationResults = {
|
|
12155
12374
|
};
|
12156
12375
|
/** Specification type */
|
12157
12376
|
export declare enum SpecificationTypes {
|
12377
|
+
/** Content classification */
|
12378
|
+
Classification = "CLASSIFICATION",
|
12158
12379
|
/** Prompt completion */
|
12159
12380
|
Completion = "COMPLETION",
|
12160
12381
|
/** Data extraction */
|
@@ -12198,7 +12419,7 @@ export type SpecificationUpdateInput = {
|
|
12198
12419
|
mistral?: InputMaybe<MistralModelPropertiesUpdateInput>;
|
12199
12420
|
/** The name of the specification. */
|
12200
12421
|
name?: InputMaybe<Scalars['String']['input']>;
|
12201
|
-
/** The number of similar items to be returned from content search. Defaults to
|
12422
|
+
/** The number of similar items to be returned from content search. Defaults to 100. */
|
12202
12423
|
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
12203
12424
|
/** The OpenAI model properties. */
|
12204
12425
|
openAI?: InputMaybe<OpenAiModelPropertiesUpdateInput>;
|
@@ -12661,7 +12882,7 @@ export type UserFilter = {
|
|
12661
12882
|
id?: InputMaybe<Scalars['ID']['input']>;
|
12662
12883
|
/** Filter users by their external identifier. */
|
12663
12884
|
identifier?: InputMaybe<Scalars['String']['input']>;
|
12664
|
-
/** Limit the number of user(s) to be returned. */
|
12885
|
+
/** Limit the number of user(s) to be returned. Defaults to 100. */
|
12665
12886
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
12666
12887
|
/** Filter user(s) by their name. */
|
12667
12888
|
name?: InputMaybe<Scalars['String']['input']>;
|
@@ -12669,7 +12890,7 @@ export type UserFilter = {
|
|
12669
12890
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
12670
12891
|
/** The sort order for query results. */
|
12671
12892
|
orderBy?: InputMaybe<OrderByTypes>;
|
12672
|
-
/** Filter user(s) by searching for
|
12893
|
+
/** Filter user(s) by searching for similar text. */
|
12673
12894
|
search?: InputMaybe<Scalars['String']['input']>;
|
12674
12895
|
/** Filter user(s) by their states. */
|
12675
12896
|
states?: InputMaybe<Array<EntityState>>;
|
@@ -12860,9 +13081,9 @@ export type WebSearchResult = {
|
|
12860
13081
|
score?: Maybe<Scalars['Float']['output']>;
|
12861
13082
|
/** The relevant web page text. */
|
12862
13083
|
text?: Maybe<Scalars['String']['output']>;
|
12863
|
-
/** The
|
13084
|
+
/** The content title. */
|
12864
13085
|
title?: Maybe<Scalars['String']['output']>;
|
12865
|
-
/** The web page
|
13086
|
+
/** The web search result URI, may be a web page or podcast episode. */
|
12866
13087
|
uri: Scalars['URL']['output'];
|
12867
13088
|
};
|
12868
13089
|
/** Represents web search results. */
|
@@ -12876,6 +13097,8 @@ export type Workflow = {
|
|
12876
13097
|
__typename?: 'Workflow';
|
12877
13098
|
/** The workflow actions. */
|
12878
13099
|
actions?: Maybe<Array<Maybe<WorkflowAction>>>;
|
13100
|
+
/** The classification stage of the content workflow. */
|
13101
|
+
classification?: Maybe<ClassificationWorkflowStage>;
|
12879
13102
|
/** The creation date of the workflow. */
|
12880
13103
|
creationDate: Scalars['DateTime']['output'];
|
12881
13104
|
/** The enrichment stage of the content workflow. */
|
@@ -12924,7 +13147,7 @@ export type WorkflowFilter = {
|
|
12924
13147
|
direction?: InputMaybe<OrderDirectionTypes>;
|
12925
13148
|
/** Filter workflow(s) by their unique ID. */
|
12926
13149
|
id?: InputMaybe<Scalars['ID']['input']>;
|
12927
|
-
/** Limit the number of workflow(s) to be returned. */
|
13150
|
+
/** Limit the number of workflow(s) to be returned. Defaults to 100. */
|
12928
13151
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
12929
13152
|
/** Filter workflow(s) by their name. */
|
12930
13153
|
name?: InputMaybe<Scalars['String']['input']>;
|
@@ -12932,7 +13155,7 @@ export type WorkflowFilter = {
|
|
12932
13155
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
12933
13156
|
/** The sort order for query results. */
|
12934
13157
|
orderBy?: InputMaybe<OrderByTypes>;
|
12935
|
-
/** Filter workflow(s) by searching for
|
13158
|
+
/** Filter workflow(s) by searching for similar text. */
|
12936
13159
|
search?: InputMaybe<Scalars['String']['input']>;
|
12937
13160
|
/** Filter workflow(s) by their states. */
|
12938
13161
|
states?: InputMaybe<Array<EntityState>>;
|
@@ -12941,6 +13164,8 @@ export type WorkflowFilter = {
|
|
12941
13164
|
export type WorkflowInput = {
|
12942
13165
|
/** The workflow actions. */
|
12943
13166
|
actions?: InputMaybe<Array<InputMaybe<WorkflowActionInput>>>;
|
13167
|
+
/** The classification stage of the content workflow. */
|
13168
|
+
classification?: InputMaybe<ClassificationWorkflowStageInput>;
|
12944
13169
|
/** The enrichment stage of the content workflow. */
|
12945
13170
|
enrichment?: InputMaybe<EnrichmentWorkflowStageInput>;
|
12946
13171
|
/** The extraction stage of the content workflow. */
|
@@ -12966,6 +13191,8 @@ export type WorkflowResults = {
|
|
12966
13191
|
export type WorkflowUpdateInput = {
|
12967
13192
|
/** The workflow actions. */
|
12968
13193
|
actions?: InputMaybe<Array<InputMaybe<WorkflowActionInput>>>;
|
13194
|
+
/** The classification stage of the content workflow. */
|
13195
|
+
classification?: InputMaybe<ClassificationWorkflowStageInput>;
|
12969
13196
|
/** The enrichment stage of the content workflow. */
|
12970
13197
|
enrichment?: InputMaybe<EnrichmentWorkflowStageInput>;
|
12971
13198
|
/** The extraction stage of the content workflow. */
|
@@ -13305,6 +13532,12 @@ export type GetAlertQuery = {
|
|
13305
13532
|
token: string;
|
13306
13533
|
channel: string;
|
13307
13534
|
} | null;
|
13535
|
+
email?: {
|
13536
|
+
__typename?: 'EmailIntegrationProperties';
|
13537
|
+
from: string;
|
13538
|
+
subject: string;
|
13539
|
+
to: Array<string>;
|
13540
|
+
} | null;
|
13308
13541
|
};
|
13309
13542
|
publishing: {
|
13310
13543
|
__typename?: 'ContentPublishingConnector';
|
@@ -13460,6 +13693,12 @@ export type QueryAlertsQuery = {
|
|
13460
13693
|
token: string;
|
13461
13694
|
channel: string;
|
13462
13695
|
} | null;
|
13696
|
+
email?: {
|
13697
|
+
__typename?: 'EmailIntegrationProperties';
|
13698
|
+
from: string;
|
13699
|
+
subject: string;
|
13700
|
+
to: Array<string>;
|
13701
|
+
} | null;
|
13463
13702
|
};
|
13464
13703
|
publishing: {
|
13465
13704
|
__typename?: 'ContentPublishingConnector';
|
@@ -13596,6 +13835,17 @@ export type UpdateCategoryMutation = {
|
|
13596
13835
|
name: string;
|
13597
13836
|
} | null;
|
13598
13837
|
};
|
13838
|
+
export type UpsertCategoryMutationVariables = Exact<{
|
13839
|
+
category: CategoryInput;
|
13840
|
+
}>;
|
13841
|
+
export type UpsertCategoryMutation = {
|
13842
|
+
__typename?: 'Mutation';
|
13843
|
+
upsertCategory?: {
|
13844
|
+
__typename?: 'Category';
|
13845
|
+
id: string;
|
13846
|
+
name: string;
|
13847
|
+
} | null;
|
13848
|
+
};
|
13599
13849
|
export type AddContentsToCollectionsMutationVariables = Exact<{
|
13600
13850
|
contents: Array<EntityReferenceInput> | EntityReferenceInput;
|
13601
13851
|
collections: Array<EntityReferenceInput> | EntityReferenceInput;
|
@@ -14154,7 +14404,6 @@ export type GetContentQuery = {
|
|
14154
14404
|
id: string;
|
14155
14405
|
name: string;
|
14156
14406
|
creationDate: any;
|
14157
|
-
relevance?: number | null;
|
14158
14407
|
state: EntityState;
|
14159
14408
|
originalDate?: any | null;
|
14160
14409
|
finishedDate?: any | null;
|
@@ -15021,7 +15270,6 @@ export type QueryContentsQuery = {
|
|
15021
15270
|
uri?: any | null;
|
15022
15271
|
description?: string | null;
|
15023
15272
|
identifier?: string | null;
|
15024
|
-
markdown?: string | null;
|
15025
15273
|
type?: ContentTypes | null;
|
15026
15274
|
fileType?: FileTypes | null;
|
15027
15275
|
mimeType?: string | null;
|
@@ -15188,16 +15436,6 @@ export type QueryContentsQuery = {
|
|
15188
15436
|
__typename?: 'LanguageMetadata';
|
15189
15437
|
languages?: Array<string | null> | null;
|
15190
15438
|
} | null;
|
15191
|
-
parent?: {
|
15192
|
-
__typename?: 'Content';
|
15193
|
-
id: string;
|
15194
|
-
name: string;
|
15195
|
-
} | null;
|
15196
|
-
children?: Array<{
|
15197
|
-
__typename?: 'Content';
|
15198
|
-
id: string;
|
15199
|
-
name: string;
|
15200
|
-
} | null> | null;
|
15201
15439
|
feed?: {
|
15202
15440
|
__typename?: 'Feed';
|
15203
15441
|
id: string;
|
@@ -15305,382 +15543,96 @@ export type QueryContentsFacetsQuery = {
|
|
15305
15543
|
__typename?: 'Query';
|
15306
15544
|
contents?: {
|
15307
15545
|
__typename?: 'ContentResults';
|
15308
|
-
|
15309
|
-
__typename?: '
|
15546
|
+
facets?: Array<{
|
15547
|
+
__typename?: 'ContentFacet';
|
15548
|
+
facet?: ContentFacetTypes | null;
|
15549
|
+
count?: any | null;
|
15550
|
+
type?: FacetValueTypes | null;
|
15551
|
+
value?: string | null;
|
15552
|
+
range?: {
|
15553
|
+
__typename?: 'StringRange';
|
15554
|
+
from?: string | null;
|
15555
|
+
to?: string | null;
|
15556
|
+
} | null;
|
15557
|
+
observable?: {
|
15558
|
+
__typename?: 'ObservableFacet';
|
15559
|
+
type?: ObservableTypes | null;
|
15560
|
+
observable?: {
|
15561
|
+
__typename?: 'NamedEntityReference';
|
15562
|
+
id: string;
|
15563
|
+
name?: string | null;
|
15564
|
+
} | null;
|
15565
|
+
} | null;
|
15566
|
+
} | null> | null;
|
15567
|
+
} | null;
|
15568
|
+
};
|
15569
|
+
export type QueryContentsGraphQueryVariables = Exact<{
|
15570
|
+
filter?: InputMaybe<ContentFilter>;
|
15571
|
+
graph?: InputMaybe<ContentGraphInput>;
|
15572
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
15573
|
+
}>;
|
15574
|
+
export type QueryContentsGraphQuery = {
|
15575
|
+
__typename?: 'Query';
|
15576
|
+
contents?: {
|
15577
|
+
__typename?: 'ContentResults';
|
15578
|
+
graph?: {
|
15579
|
+
__typename?: 'Graph';
|
15580
|
+
nodes?: Array<{
|
15581
|
+
__typename?: 'GraphNode';
|
15582
|
+
id: string;
|
15583
|
+
name: string;
|
15584
|
+
type: EntityTypes;
|
15585
|
+
metadata?: string | null;
|
15586
|
+
} | null> | null;
|
15587
|
+
edges?: Array<{
|
15588
|
+
__typename?: 'GraphEdge';
|
15589
|
+
from: string;
|
15590
|
+
to: string;
|
15591
|
+
relation?: string | null;
|
15592
|
+
} | null> | null;
|
15593
|
+
} | null;
|
15594
|
+
} | null;
|
15595
|
+
};
|
15596
|
+
export type ScreenshotPageMutationVariables = Exact<{
|
15597
|
+
uri: Scalars['URL']['input'];
|
15598
|
+
maximumHeight?: InputMaybe<Scalars['Int']['input']>;
|
15599
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
15600
|
+
workflow?: InputMaybe<EntityReferenceInput>;
|
15601
|
+
collections?: InputMaybe<Array<EntityReferenceInput> | EntityReferenceInput>;
|
15602
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
15603
|
+
}>;
|
15604
|
+
export type ScreenshotPageMutation = {
|
15605
|
+
__typename?: 'Mutation';
|
15606
|
+
screenshotPage?: {
|
15607
|
+
__typename?: 'Content';
|
15608
|
+
id: string;
|
15609
|
+
name: string;
|
15610
|
+
state: EntityState;
|
15611
|
+
type?: ContentTypes | null;
|
15612
|
+
fileType?: FileTypes | null;
|
15613
|
+
mimeType?: string | null;
|
15614
|
+
uri?: any | null;
|
15615
|
+
collections?: Array<{
|
15616
|
+
__typename?: 'Collection';
|
15310
15617
|
id: string;
|
15311
15618
|
name: string;
|
15312
|
-
|
15313
|
-
|
15619
|
+
} | null> | null;
|
15620
|
+
observations?: Array<{
|
15621
|
+
__typename?: 'Observation';
|
15622
|
+
id: string;
|
15623
|
+
type: ObservableTypes;
|
15624
|
+
relatedType?: ObservableTypes | null;
|
15625
|
+
relation?: string | null;
|
15314
15626
|
state: EntityState;
|
15315
|
-
|
15316
|
-
|
15317
|
-
workflowDuration?: any | null;
|
15318
|
-
uri?: any | null;
|
15319
|
-
description?: string | null;
|
15320
|
-
identifier?: string | null;
|
15321
|
-
markdown?: string | null;
|
15322
|
-
type?: ContentTypes | null;
|
15323
|
-
fileType?: FileTypes | null;
|
15324
|
-
mimeType?: string | null;
|
15325
|
-
fileName?: string | null;
|
15326
|
-
fileSize?: any | null;
|
15327
|
-
masterUri?: any | null;
|
15328
|
-
imageUri?: any | null;
|
15329
|
-
textUri?: any | null;
|
15330
|
-
audioUri?: any | null;
|
15331
|
-
transcriptUri?: any | null;
|
15332
|
-
summary?: string | null;
|
15333
|
-
customSummary?: string | null;
|
15334
|
-
keywords?: Array<string> | null;
|
15335
|
-
bullets?: Array<string> | null;
|
15336
|
-
headlines?: Array<string> | null;
|
15337
|
-
posts?: Array<string> | null;
|
15338
|
-
chapters?: Array<string> | null;
|
15339
|
-
questions?: Array<string> | null;
|
15340
|
-
error?: string | null;
|
15341
|
-
owner: {
|
15342
|
-
__typename?: 'Owner';
|
15627
|
+
observable: {
|
15628
|
+
__typename?: 'NamedEntityReference';
|
15343
15629
|
id: string;
|
15630
|
+
name?: string | null;
|
15344
15631
|
};
|
15345
|
-
|
15346
|
-
__typename?: '
|
15347
|
-
|
15348
|
-
|
15349
|
-
region?: string | null;
|
15350
|
-
country?: string | null;
|
15351
|
-
postalCode?: string | null;
|
15352
|
-
} | null;
|
15353
|
-
location?: {
|
15354
|
-
__typename?: 'Point';
|
15355
|
-
latitude?: number | null;
|
15356
|
-
longitude?: number | null;
|
15357
|
-
} | null;
|
15358
|
-
video?: {
|
15359
|
-
__typename?: 'VideoMetadata';
|
15360
|
-
width?: number | null;
|
15361
|
-
height?: number | null;
|
15362
|
-
duration?: any | null;
|
15363
|
-
make?: string | null;
|
15364
|
-
model?: string | null;
|
15365
|
-
software?: string | null;
|
15366
|
-
title?: string | null;
|
15367
|
-
description?: string | null;
|
15368
|
-
keywords?: Array<string | null> | null;
|
15369
|
-
author?: string | null;
|
15370
|
-
} | null;
|
15371
|
-
audio?: {
|
15372
|
-
__typename?: 'AudioMetadata';
|
15373
|
-
keywords?: Array<string | null> | null;
|
15374
|
-
author?: string | null;
|
15375
|
-
series?: string | null;
|
15376
|
-
episode?: string | null;
|
15377
|
-
episodeType?: string | null;
|
15378
|
-
season?: string | null;
|
15379
|
-
publisher?: string | null;
|
15380
|
-
copyright?: string | null;
|
15381
|
-
genre?: string | null;
|
15382
|
-
title?: string | null;
|
15383
|
-
description?: string | null;
|
15384
|
-
bitrate?: number | null;
|
15385
|
-
channels?: number | null;
|
15386
|
-
sampleRate?: number | null;
|
15387
|
-
bitsPerSample?: number | null;
|
15388
|
-
duration?: any | null;
|
15389
|
-
} | null;
|
15390
|
-
image?: {
|
15391
|
-
__typename?: 'ImageMetadata';
|
15392
|
-
width?: number | null;
|
15393
|
-
height?: number | null;
|
15394
|
-
resolutionX?: number | null;
|
15395
|
-
resolutionY?: number | null;
|
15396
|
-
bitsPerComponent?: number | null;
|
15397
|
-
components?: number | null;
|
15398
|
-
projectionType?: ImageProjectionTypes | null;
|
15399
|
-
orientation?: OrientationTypes | null;
|
15400
|
-
description?: string | null;
|
15401
|
-
make?: string | null;
|
15402
|
-
model?: string | null;
|
15403
|
-
software?: string | null;
|
15404
|
-
lens?: string | null;
|
15405
|
-
focalLength?: number | null;
|
15406
|
-
exposureTime?: string | null;
|
15407
|
-
fNumber?: string | null;
|
15408
|
-
iso?: string | null;
|
15409
|
-
heading?: number | null;
|
15410
|
-
pitch?: number | null;
|
15411
|
-
} | null;
|
15412
|
-
document?: {
|
15413
|
-
__typename?: 'DocumentMetadata';
|
15414
|
-
title?: string | null;
|
15415
|
-
subject?: string | null;
|
15416
|
-
summary?: string | null;
|
15417
|
-
author?: string | null;
|
15418
|
-
publisher?: string | null;
|
15419
|
-
description?: string | null;
|
15420
|
-
keywords?: Array<string | null> | null;
|
15421
|
-
pageCount?: number | null;
|
15422
|
-
worksheetCount?: number | null;
|
15423
|
-
slideCount?: number | null;
|
15424
|
-
wordCount?: number | null;
|
15425
|
-
lineCount?: number | null;
|
15426
|
-
paragraphCount?: number | null;
|
15427
|
-
isEncrypted?: boolean | null;
|
15428
|
-
hasDigitalSignature?: boolean | null;
|
15429
|
-
} | null;
|
15430
|
-
email?: {
|
15431
|
-
__typename?: 'EmailMetadata';
|
15432
|
-
identifier?: string | null;
|
15433
|
-
subject?: string | null;
|
15434
|
-
labels?: Array<string | null> | null;
|
15435
|
-
sensitivity?: MailSensitivity | null;
|
15436
|
-
priority?: MailPriority | null;
|
15437
|
-
importance?: MailImportance | null;
|
15438
|
-
from?: Array<{
|
15439
|
-
__typename?: 'PersonReference';
|
15440
|
-
name?: string | null;
|
15441
|
-
email?: string | null;
|
15442
|
-
givenName?: string | null;
|
15443
|
-
familyName?: string | null;
|
15444
|
-
} | null> | null;
|
15445
|
-
to?: Array<{
|
15446
|
-
__typename?: 'PersonReference';
|
15447
|
-
name?: string | null;
|
15448
|
-
email?: string | null;
|
15449
|
-
givenName?: string | null;
|
15450
|
-
familyName?: string | null;
|
15451
|
-
} | null> | null;
|
15452
|
-
cc?: Array<{
|
15453
|
-
__typename?: 'PersonReference';
|
15454
|
-
name?: string | null;
|
15455
|
-
email?: string | null;
|
15456
|
-
givenName?: string | null;
|
15457
|
-
familyName?: string | null;
|
15458
|
-
} | null> | null;
|
15459
|
-
bcc?: Array<{
|
15460
|
-
__typename?: 'PersonReference';
|
15461
|
-
name?: string | null;
|
15462
|
-
email?: string | null;
|
15463
|
-
givenName?: string | null;
|
15464
|
-
familyName?: string | null;
|
15465
|
-
} | null> | null;
|
15466
|
-
} | null;
|
15467
|
-
issue?: {
|
15468
|
-
__typename?: 'IssueMetadata';
|
15469
|
-
identifier?: string | null;
|
15470
|
-
title?: string | null;
|
15471
|
-
project?: string | null;
|
15472
|
-
team?: string | null;
|
15473
|
-
status?: string | null;
|
15474
|
-
priority?: string | null;
|
15475
|
-
type?: string | null;
|
15476
|
-
labels?: Array<string | null> | null;
|
15477
|
-
} | null;
|
15478
|
-
package?: {
|
15479
|
-
__typename?: 'PackageMetadata';
|
15480
|
-
fileCount?: number | null;
|
15481
|
-
folderCount?: number | null;
|
15482
|
-
isEncrypted?: boolean | null;
|
15483
|
-
} | null;
|
15484
|
-
language?: {
|
15485
|
-
__typename?: 'LanguageMetadata';
|
15486
|
-
languages?: Array<string | null> | null;
|
15487
|
-
} | null;
|
15488
|
-
parent?: {
|
15489
|
-
__typename?: 'Content';
|
15490
|
-
id: string;
|
15491
|
-
name: string;
|
15492
|
-
} | null;
|
15493
|
-
children?: Array<{
|
15494
|
-
__typename?: 'Content';
|
15495
|
-
id: string;
|
15496
|
-
name: string;
|
15497
|
-
} | null> | null;
|
15498
|
-
feed?: {
|
15499
|
-
__typename?: 'Feed';
|
15500
|
-
id: string;
|
15501
|
-
name: string;
|
15502
|
-
} | null;
|
15503
|
-
collections?: Array<{
|
15504
|
-
__typename?: 'Collection';
|
15505
|
-
id: string;
|
15506
|
-
name: string;
|
15507
|
-
} | null> | null;
|
15508
|
-
links?: Array<{
|
15509
|
-
__typename?: 'LinkReference';
|
15510
|
-
uri?: any | null;
|
15511
|
-
linkType?: LinkTypes | null;
|
15512
|
-
}> | null;
|
15513
|
-
observations?: Array<{
|
15514
|
-
__typename?: 'Observation';
|
15515
|
-
id: string;
|
15516
|
-
type: ObservableTypes;
|
15517
|
-
relatedType?: ObservableTypes | null;
|
15518
|
-
relation?: string | null;
|
15519
|
-
state: EntityState;
|
15520
|
-
observable: {
|
15521
|
-
__typename?: 'NamedEntityReference';
|
15522
|
-
id: string;
|
15523
|
-
name?: string | null;
|
15524
|
-
};
|
15525
|
-
related?: {
|
15526
|
-
__typename?: 'NamedEntityReference';
|
15527
|
-
id: string;
|
15528
|
-
name?: string | null;
|
15529
|
-
} | null;
|
15530
|
-
occurrences?: Array<{
|
15531
|
-
__typename?: 'ObservationOccurrence';
|
15532
|
-
type?: OccurrenceTypes | null;
|
15533
|
-
confidence?: number | null;
|
15534
|
-
startTime?: any | null;
|
15535
|
-
endTime?: any | null;
|
15536
|
-
pageIndex?: number | null;
|
15537
|
-
boundingBox?: {
|
15538
|
-
__typename?: 'BoundingBox';
|
15539
|
-
left?: number | null;
|
15540
|
-
top?: number | null;
|
15541
|
-
width?: number | null;
|
15542
|
-
height?: number | null;
|
15543
|
-
} | null;
|
15544
|
-
} | null> | null;
|
15545
|
-
} | null> | null;
|
15546
|
-
workflow?: {
|
15547
|
-
__typename?: 'Workflow';
|
15548
|
-
id: string;
|
15549
|
-
name: string;
|
15550
|
-
} | null;
|
15551
|
-
pages?: Array<{
|
15552
|
-
__typename?: 'TextPage';
|
15553
|
-
index?: number | null;
|
15554
|
-
text?: string | null;
|
15555
|
-
relevance?: number | null;
|
15556
|
-
images?: Array<{
|
15557
|
-
__typename?: 'ImageChunk';
|
15558
|
-
id?: string | null;
|
15559
|
-
mimeType?: string | null;
|
15560
|
-
data?: string | null;
|
15561
|
-
left?: number | null;
|
15562
|
-
right?: number | null;
|
15563
|
-
top?: number | null;
|
15564
|
-
bottom?: number | null;
|
15565
|
-
} | null> | null;
|
15566
|
-
chunks?: Array<{
|
15567
|
-
__typename?: 'TextChunk';
|
15568
|
-
index?: number | null;
|
15569
|
-
pageIndex?: number | null;
|
15570
|
-
rowIndex?: number | null;
|
15571
|
-
columnIndex?: number | null;
|
15572
|
-
confidence?: number | null;
|
15573
|
-
text?: string | null;
|
15574
|
-
role?: TextRoles | null;
|
15575
|
-
language?: string | null;
|
15576
|
-
relevance?: number | null;
|
15577
|
-
} | null> | null;
|
15578
|
-
}> | null;
|
15579
|
-
segments?: Array<{
|
15580
|
-
__typename?: 'TextSegment';
|
15581
|
-
startTime?: any | null;
|
15582
|
-
endTime?: any | null;
|
15583
|
-
text?: string | null;
|
15584
|
-
relevance?: number | null;
|
15585
|
-
}> | null;
|
15586
|
-
frames?: Array<{
|
15587
|
-
__typename?: 'TextFrame';
|
15588
|
-
index?: number | null;
|
15589
|
-
description?: string | null;
|
15590
|
-
text?: string | null;
|
15591
|
-
relevance?: number | null;
|
15592
|
-
}> | null;
|
15593
|
-
} | null> | null;
|
15594
|
-
facets?: Array<{
|
15595
|
-
__typename?: 'ContentFacet';
|
15596
|
-
facet?: ContentFacetTypes | null;
|
15597
|
-
count?: any | null;
|
15598
|
-
type?: FacetValueTypes | null;
|
15599
|
-
value?: string | null;
|
15600
|
-
range?: {
|
15601
|
-
__typename?: 'StringRange';
|
15602
|
-
from?: string | null;
|
15603
|
-
to?: string | null;
|
15604
|
-
} | null;
|
15605
|
-
observable?: {
|
15606
|
-
__typename?: 'ObservableFacet';
|
15607
|
-
type?: ObservableTypes | null;
|
15608
|
-
observable?: {
|
15609
|
-
__typename?: 'NamedEntityReference';
|
15610
|
-
id: string;
|
15611
|
-
name?: string | null;
|
15612
|
-
} | null;
|
15613
|
-
} | null;
|
15614
|
-
} | null> | null;
|
15615
|
-
} | null;
|
15616
|
-
};
|
15617
|
-
export type QueryContentsGraphQueryVariables = Exact<{
|
15618
|
-
filter?: InputMaybe<ContentFilter>;
|
15619
|
-
graph?: InputMaybe<ContentGraphInput>;
|
15620
|
-
correlationId?: InputMaybe<Scalars['String']['input']>;
|
15621
|
-
}>;
|
15622
|
-
export type QueryContentsGraphQuery = {
|
15623
|
-
__typename?: 'Query';
|
15624
|
-
contents?: {
|
15625
|
-
__typename?: 'ContentResults';
|
15626
|
-
graph?: {
|
15627
|
-
__typename?: 'Graph';
|
15628
|
-
nodes?: Array<{
|
15629
|
-
__typename?: 'GraphNode';
|
15630
|
-
id: string;
|
15631
|
-
name: string;
|
15632
|
-
type: EntityTypes;
|
15633
|
-
metadata?: string | null;
|
15634
|
-
} | null> | null;
|
15635
|
-
edges?: Array<{
|
15636
|
-
__typename?: 'GraphEdge';
|
15637
|
-
from: string;
|
15638
|
-
to: string;
|
15639
|
-
relation?: string | null;
|
15640
|
-
} | null> | null;
|
15641
|
-
} | null;
|
15642
|
-
} | null;
|
15643
|
-
};
|
15644
|
-
export type ScreenshotPageMutationVariables = Exact<{
|
15645
|
-
uri: Scalars['URL']['input'];
|
15646
|
-
maximumHeight?: InputMaybe<Scalars['Int']['input']>;
|
15647
|
-
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
15648
|
-
workflow?: InputMaybe<EntityReferenceInput>;
|
15649
|
-
collections?: InputMaybe<Array<EntityReferenceInput> | EntityReferenceInput>;
|
15650
|
-
correlationId?: InputMaybe<Scalars['String']['input']>;
|
15651
|
-
}>;
|
15652
|
-
export type ScreenshotPageMutation = {
|
15653
|
-
__typename?: 'Mutation';
|
15654
|
-
screenshotPage?: {
|
15655
|
-
__typename?: 'Content';
|
15656
|
-
id: string;
|
15657
|
-
name: string;
|
15658
|
-
state: EntityState;
|
15659
|
-
type?: ContentTypes | null;
|
15660
|
-
fileType?: FileTypes | null;
|
15661
|
-
mimeType?: string | null;
|
15662
|
-
uri?: any | null;
|
15663
|
-
collections?: Array<{
|
15664
|
-
__typename?: 'Collection';
|
15665
|
-
id: string;
|
15666
|
-
name: string;
|
15667
|
-
} | null> | null;
|
15668
|
-
observations?: Array<{
|
15669
|
-
__typename?: 'Observation';
|
15670
|
-
id: string;
|
15671
|
-
type: ObservableTypes;
|
15672
|
-
relatedType?: ObservableTypes | null;
|
15673
|
-
relation?: string | null;
|
15674
|
-
state: EntityState;
|
15675
|
-
observable: {
|
15676
|
-
__typename?: 'NamedEntityReference';
|
15677
|
-
id: string;
|
15678
|
-
name?: string | null;
|
15679
|
-
};
|
15680
|
-
related?: {
|
15681
|
-
__typename?: 'NamedEntityReference';
|
15682
|
-
id: string;
|
15683
|
-
name?: string | null;
|
15632
|
+
related?: {
|
15633
|
+
__typename?: 'NamedEntityReference';
|
15634
|
+
id: string;
|
15635
|
+
name?: string | null;
|
15684
15636
|
} | null;
|
15685
15637
|
occurrences?: Array<{
|
15686
15638
|
__typename?: 'ObservationOccurrence';
|
@@ -19283,6 +19235,17 @@ export type EnableFeedMutation = {
|
|
19283
19235
|
state: EntityState;
|
19284
19236
|
} | null;
|
19285
19237
|
};
|
19238
|
+
export type FeedExistsQueryVariables = Exact<{
|
19239
|
+
filter?: InputMaybe<FeedFilter>;
|
19240
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
19241
|
+
}>;
|
19242
|
+
export type FeedExistsQuery = {
|
19243
|
+
__typename?: 'Query';
|
19244
|
+
feedExists?: {
|
19245
|
+
__typename?: 'BooleanResult';
|
19246
|
+
result?: boolean | null;
|
19247
|
+
} | null;
|
19248
|
+
};
|
19286
19249
|
export type GetFeedQueryVariables = Exact<{
|
19287
19250
|
id: Scalars['ID']['input'];
|
19288
19251
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -20057,6 +20020,17 @@ export type UpdateLabelMutation = {
|
|
20057
20020
|
name: string;
|
20058
20021
|
} | null;
|
20059
20022
|
};
|
20023
|
+
export type UpsertLabelMutationVariables = Exact<{
|
20024
|
+
label: LabelInput;
|
20025
|
+
}>;
|
20026
|
+
export type UpsertLabelMutation = {
|
20027
|
+
__typename?: 'Mutation';
|
20028
|
+
upsertLabel?: {
|
20029
|
+
__typename?: 'Label';
|
20030
|
+
id: string;
|
20031
|
+
name: string;
|
20032
|
+
} | null;
|
20033
|
+
};
|
20060
20034
|
export type CountMedicalConditionsQueryVariables = Exact<{
|
20061
20035
|
filter?: InputMaybe<MedicalConditionFilter>;
|
20062
20036
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -21282,6 +21256,18 @@ export type UpdateMedicalTherapyMutation = {
|
|
21282
21256
|
name: string;
|
21283
21257
|
} | null;
|
21284
21258
|
};
|
21259
|
+
export type SendNotificationMutationVariables = Exact<{
|
21260
|
+
connector: IntegrationConnectorInput;
|
21261
|
+
text: Scalars['String']['input'];
|
21262
|
+
textType?: InputMaybe<TextTypes>;
|
21263
|
+
}>;
|
21264
|
+
export type SendNotificationMutation = {
|
21265
|
+
__typename?: 'Mutation';
|
21266
|
+
sendNotification?: {
|
21267
|
+
__typename?: 'BooleanResult';
|
21268
|
+
result?: boolean | null;
|
21269
|
+
} | null;
|
21270
|
+
};
|
21285
21271
|
export type CreateObservationMutationVariables = Exact<{
|
21286
21272
|
observation: ObservationInput;
|
21287
21273
|
}>;
|
@@ -21929,6 +21915,7 @@ export type LookupCreditsQuery = {
|
|
21929
21915
|
indexingRatio?: any | null;
|
21930
21916
|
preparationRatio?: any | null;
|
21931
21917
|
extractionRatio?: any | null;
|
21918
|
+
classificationRatio?: any | null;
|
21932
21919
|
enrichmentRatio?: any | null;
|
21933
21920
|
publishingRatio?: any | null;
|
21934
21921
|
searchRatio?: any | null;
|
@@ -21993,6 +21980,7 @@ export type QueryCreditsQuery = {
|
|
21993
21980
|
indexingRatio?: any | null;
|
21994
21981
|
preparationRatio?: any | null;
|
21995
21982
|
extractionRatio?: any | null;
|
21983
|
+
classificationRatio?: any | null;
|
21996
21984
|
enrichmentRatio?: any | null;
|
21997
21985
|
publishingRatio?: any | null;
|
21998
21986
|
searchRatio?: any | null;
|
@@ -22959,6 +22947,17 @@ export type QuerySpecificationsQuery = {
|
|
22959
22947
|
} | null> | null;
|
22960
22948
|
} | null;
|
22961
22949
|
};
|
22950
|
+
export type SpecificationExistsQueryVariables = Exact<{
|
22951
|
+
filter?: InputMaybe<SpecificationFilter>;
|
22952
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
22953
|
+
}>;
|
22954
|
+
export type SpecificationExistsQuery = {
|
22955
|
+
__typename?: 'Query';
|
22956
|
+
specificationExists?: {
|
22957
|
+
__typename?: 'BooleanResult';
|
22958
|
+
result?: boolean | null;
|
22959
|
+
} | null;
|
22960
|
+
};
|
22962
22961
|
export type UpdateSpecificationMutationVariables = Exact<{
|
22963
22962
|
specification: SpecificationUpdateInput;
|
22964
22963
|
}>;
|
@@ -22973,6 +22972,20 @@ export type UpdateSpecificationMutation = {
|
|
22973
22972
|
serviceType?: ModelServiceTypes | null;
|
22974
22973
|
} | null;
|
22975
22974
|
};
|
22975
|
+
export type UpsertSpecificationMutationVariables = Exact<{
|
22976
|
+
specification: SpecificationInput;
|
22977
|
+
}>;
|
22978
|
+
export type UpsertSpecificationMutation = {
|
22979
|
+
__typename?: 'Mutation';
|
22980
|
+
upsertSpecification?: {
|
22981
|
+
__typename?: 'Specification';
|
22982
|
+
id: string;
|
22983
|
+
name: string;
|
22984
|
+
state: EntityState;
|
22985
|
+
type?: SpecificationTypes | null;
|
22986
|
+
serviceType?: ModelServiceTypes | null;
|
22987
|
+
} | null;
|
22988
|
+
};
|
22976
22989
|
export type CountUsersQueryVariables = Exact<{
|
22977
22990
|
filter?: InputMaybe<UserFilter>;
|
22978
22991
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -23079,6 +23092,12 @@ export type GetUserQuery = {
|
|
23079
23092
|
token: string;
|
23080
23093
|
channel: string;
|
23081
23094
|
} | null;
|
23095
|
+
email?: {
|
23096
|
+
__typename?: 'EmailIntegrationProperties';
|
23097
|
+
from: string;
|
23098
|
+
subject: string;
|
23099
|
+
to: Array<string>;
|
23100
|
+
} | null;
|
23082
23101
|
} | null;
|
23083
23102
|
} | null> | null;
|
23084
23103
|
} | null;
|
@@ -23134,6 +23153,12 @@ export type QueryUsersQuery = {
|
|
23134
23153
|
token: string;
|
23135
23154
|
channel: string;
|
23136
23155
|
} | null;
|
23156
|
+
email?: {
|
23157
|
+
__typename?: 'EmailIntegrationProperties';
|
23158
|
+
from: string;
|
23159
|
+
subject: string;
|
23160
|
+
to: Array<string>;
|
23161
|
+
} | null;
|
23137
23162
|
} | null;
|
23138
23163
|
} | null> | null;
|
23139
23164
|
} | null> | null;
|
@@ -23314,6 +23339,40 @@ export type CreateWorkflowMutation = {
|
|
23314
23339
|
} | null;
|
23315
23340
|
} | null> | null;
|
23316
23341
|
} | null;
|
23342
|
+
classification?: {
|
23343
|
+
__typename?: 'ClassificationWorkflowStage';
|
23344
|
+
jobs?: Array<{
|
23345
|
+
__typename?: 'ClassificationWorkflowJob';
|
23346
|
+
connector?: {
|
23347
|
+
__typename?: 'ContentClassificationConnector';
|
23348
|
+
type: ContentClassificationServiceTypes;
|
23349
|
+
contentType?: ContentTypes | null;
|
23350
|
+
fileType?: FileTypes | null;
|
23351
|
+
model?: {
|
23352
|
+
__typename?: 'ModelContentClassificationProperties';
|
23353
|
+
specification?: {
|
23354
|
+
__typename?: 'EntityReference';
|
23355
|
+
id: string;
|
23356
|
+
} | null;
|
23357
|
+
rules?: Array<{
|
23358
|
+
__typename?: 'PromptClassificationRule';
|
23359
|
+
then?: string | null;
|
23360
|
+
if?: string | null;
|
23361
|
+
} | null> | null;
|
23362
|
+
} | null;
|
23363
|
+
regex?: {
|
23364
|
+
__typename?: 'RegexContentClassificationProperties';
|
23365
|
+
rules?: Array<{
|
23366
|
+
__typename?: 'RegexClassificationRule';
|
23367
|
+
then?: string | null;
|
23368
|
+
type?: RegexSourceTypes | null;
|
23369
|
+
path?: string | null;
|
23370
|
+
matches?: string | null;
|
23371
|
+
} | null> | null;
|
23372
|
+
} | null;
|
23373
|
+
} | null;
|
23374
|
+
} | null> | null;
|
23375
|
+
} | null;
|
23317
23376
|
enrichment?: {
|
23318
23377
|
__typename?: 'EnrichmentWorkflowStage';
|
23319
23378
|
link?: {
|
@@ -23366,6 +23425,12 @@ export type CreateWorkflowMutation = {
|
|
23366
23425
|
token: string;
|
23367
23426
|
channel: string;
|
23368
23427
|
} | null;
|
23428
|
+
email?: {
|
23429
|
+
__typename?: 'EmailIntegrationProperties';
|
23430
|
+
from: string;
|
23431
|
+
subject: string;
|
23432
|
+
to: Array<string>;
|
23433
|
+
} | null;
|
23369
23434
|
} | null;
|
23370
23435
|
} | null> | null;
|
23371
23436
|
} | null;
|
@@ -23563,6 +23628,40 @@ export type GetWorkflowQuery = {
|
|
23563
23628
|
} | null;
|
23564
23629
|
} | null> | null;
|
23565
23630
|
} | null;
|
23631
|
+
classification?: {
|
23632
|
+
__typename?: 'ClassificationWorkflowStage';
|
23633
|
+
jobs?: Array<{
|
23634
|
+
__typename?: 'ClassificationWorkflowJob';
|
23635
|
+
connector?: {
|
23636
|
+
__typename?: 'ContentClassificationConnector';
|
23637
|
+
type: ContentClassificationServiceTypes;
|
23638
|
+
contentType?: ContentTypes | null;
|
23639
|
+
fileType?: FileTypes | null;
|
23640
|
+
model?: {
|
23641
|
+
__typename?: 'ModelContentClassificationProperties';
|
23642
|
+
specification?: {
|
23643
|
+
__typename?: 'EntityReference';
|
23644
|
+
id: string;
|
23645
|
+
} | null;
|
23646
|
+
rules?: Array<{
|
23647
|
+
__typename?: 'PromptClassificationRule';
|
23648
|
+
then?: string | null;
|
23649
|
+
if?: string | null;
|
23650
|
+
} | null> | null;
|
23651
|
+
} | null;
|
23652
|
+
regex?: {
|
23653
|
+
__typename?: 'RegexContentClassificationProperties';
|
23654
|
+
rules?: Array<{
|
23655
|
+
__typename?: 'RegexClassificationRule';
|
23656
|
+
then?: string | null;
|
23657
|
+
type?: RegexSourceTypes | null;
|
23658
|
+
path?: string | null;
|
23659
|
+
matches?: string | null;
|
23660
|
+
} | null> | null;
|
23661
|
+
} | null;
|
23662
|
+
} | null;
|
23663
|
+
} | null> | null;
|
23664
|
+
} | null;
|
23566
23665
|
enrichment?: {
|
23567
23666
|
__typename?: 'EnrichmentWorkflowStage';
|
23568
23667
|
link?: {
|
@@ -23615,6 +23714,12 @@ export type GetWorkflowQuery = {
|
|
23615
23714
|
token: string;
|
23616
23715
|
channel: string;
|
23617
23716
|
} | null;
|
23717
|
+
email?: {
|
23718
|
+
__typename?: 'EmailIntegrationProperties';
|
23719
|
+
from: string;
|
23720
|
+
subject: string;
|
23721
|
+
to: Array<string>;
|
23722
|
+
} | null;
|
23618
23723
|
} | null;
|
23619
23724
|
} | null> | null;
|
23620
23725
|
} | null;
|
@@ -23778,6 +23883,40 @@ export type QueryWorkflowsQuery = {
|
|
23778
23883
|
} | null;
|
23779
23884
|
} | null> | null;
|
23780
23885
|
} | null;
|
23886
|
+
classification?: {
|
23887
|
+
__typename?: 'ClassificationWorkflowStage';
|
23888
|
+
jobs?: Array<{
|
23889
|
+
__typename?: 'ClassificationWorkflowJob';
|
23890
|
+
connector?: {
|
23891
|
+
__typename?: 'ContentClassificationConnector';
|
23892
|
+
type: ContentClassificationServiceTypes;
|
23893
|
+
contentType?: ContentTypes | null;
|
23894
|
+
fileType?: FileTypes | null;
|
23895
|
+
model?: {
|
23896
|
+
__typename?: 'ModelContentClassificationProperties';
|
23897
|
+
specification?: {
|
23898
|
+
__typename?: 'EntityReference';
|
23899
|
+
id: string;
|
23900
|
+
} | null;
|
23901
|
+
rules?: Array<{
|
23902
|
+
__typename?: 'PromptClassificationRule';
|
23903
|
+
then?: string | null;
|
23904
|
+
if?: string | null;
|
23905
|
+
} | null> | null;
|
23906
|
+
} | null;
|
23907
|
+
regex?: {
|
23908
|
+
__typename?: 'RegexContentClassificationProperties';
|
23909
|
+
rules?: Array<{
|
23910
|
+
__typename?: 'RegexClassificationRule';
|
23911
|
+
then?: string | null;
|
23912
|
+
type?: RegexSourceTypes | null;
|
23913
|
+
path?: string | null;
|
23914
|
+
matches?: string | null;
|
23915
|
+
} | null> | null;
|
23916
|
+
} | null;
|
23917
|
+
} | null;
|
23918
|
+
} | null> | null;
|
23919
|
+
} | null;
|
23781
23920
|
enrichment?: {
|
23782
23921
|
__typename?: 'EnrichmentWorkflowStage';
|
23783
23922
|
link?: {
|
@@ -23830,6 +23969,12 @@ export type QueryWorkflowsQuery = {
|
|
23830
23969
|
token: string;
|
23831
23970
|
channel: string;
|
23832
23971
|
} | null;
|
23972
|
+
email?: {
|
23973
|
+
__typename?: 'EmailIntegrationProperties';
|
23974
|
+
from: string;
|
23975
|
+
subject: string;
|
23976
|
+
to: Array<string>;
|
23977
|
+
} | null;
|
23833
23978
|
} | null;
|
23834
23979
|
} | null> | null;
|
23835
23980
|
} | null> | null;
|
@@ -23985,6 +24130,286 @@ export type UpdateWorkflowMutation = {
|
|
23985
24130
|
} | null;
|
23986
24131
|
} | null> | null;
|
23987
24132
|
} | null;
|
24133
|
+
classification?: {
|
24134
|
+
__typename?: 'ClassificationWorkflowStage';
|
24135
|
+
jobs?: Array<{
|
24136
|
+
__typename?: 'ClassificationWorkflowJob';
|
24137
|
+
connector?: {
|
24138
|
+
__typename?: 'ContentClassificationConnector';
|
24139
|
+
type: ContentClassificationServiceTypes;
|
24140
|
+
contentType?: ContentTypes | null;
|
24141
|
+
fileType?: FileTypes | null;
|
24142
|
+
model?: {
|
24143
|
+
__typename?: 'ModelContentClassificationProperties';
|
24144
|
+
specification?: {
|
24145
|
+
__typename?: 'EntityReference';
|
24146
|
+
id: string;
|
24147
|
+
} | null;
|
24148
|
+
rules?: Array<{
|
24149
|
+
__typename?: 'PromptClassificationRule';
|
24150
|
+
then?: string | null;
|
24151
|
+
if?: string | null;
|
24152
|
+
} | null> | null;
|
24153
|
+
} | null;
|
24154
|
+
regex?: {
|
24155
|
+
__typename?: 'RegexContentClassificationProperties';
|
24156
|
+
rules?: Array<{
|
24157
|
+
__typename?: 'RegexClassificationRule';
|
24158
|
+
then?: string | null;
|
24159
|
+
type?: RegexSourceTypes | null;
|
24160
|
+
path?: string | null;
|
24161
|
+
matches?: string | null;
|
24162
|
+
} | null> | null;
|
24163
|
+
} | null;
|
24164
|
+
} | null;
|
24165
|
+
} | null> | null;
|
24166
|
+
} | null;
|
24167
|
+
enrichment?: {
|
24168
|
+
__typename?: 'EnrichmentWorkflowStage';
|
24169
|
+
link?: {
|
24170
|
+
__typename?: 'LinkStrategy';
|
24171
|
+
enableCrawling?: boolean | null;
|
24172
|
+
allowedDomains?: Array<string> | null;
|
24173
|
+
excludedDomains?: Array<string> | null;
|
24174
|
+
allowedPaths?: Array<string> | null;
|
24175
|
+
excludedPaths?: Array<string> | null;
|
24176
|
+
allowedLinks?: Array<LinkTypes> | null;
|
24177
|
+
excludedLinks?: Array<LinkTypes> | null;
|
24178
|
+
allowedFiles?: Array<FileTypes> | null;
|
24179
|
+
excludedFiles?: Array<FileTypes> | null;
|
24180
|
+
allowContentDomain?: boolean | null;
|
24181
|
+
maximumLinks?: number | null;
|
24182
|
+
} | null;
|
24183
|
+
jobs?: Array<{
|
24184
|
+
__typename?: 'EnrichmentWorkflowJob';
|
24185
|
+
connector?: {
|
24186
|
+
__typename?: 'EntityEnrichmentConnector';
|
24187
|
+
type?: EntityEnrichmentServiceTypes | null;
|
24188
|
+
enrichedTypes?: Array<ObservableTypes | null> | null;
|
24189
|
+
fhir?: {
|
24190
|
+
__typename?: 'FHIREnrichmentProperties';
|
24191
|
+
endpoint?: any | null;
|
24192
|
+
} | null;
|
24193
|
+
diffbot?: {
|
24194
|
+
__typename?: 'DiffbotEnrichmentProperties';
|
24195
|
+
key?: any | null;
|
24196
|
+
} | null;
|
24197
|
+
} | null;
|
24198
|
+
} | null> | null;
|
24199
|
+
} | null;
|
24200
|
+
storage?: {
|
24201
|
+
__typename?: 'StorageWorkflowStage';
|
24202
|
+
policy?: {
|
24203
|
+
__typename?: 'StoragePolicy';
|
24204
|
+
type?: StoragePolicyTypes | null;
|
24205
|
+
allowDuplicates?: boolean | null;
|
24206
|
+
} | null;
|
24207
|
+
} | null;
|
24208
|
+
actions?: Array<{
|
24209
|
+
__typename?: 'WorkflowAction';
|
24210
|
+
connector?: {
|
24211
|
+
__typename?: 'IntegrationConnector';
|
24212
|
+
type: IntegrationServiceTypes;
|
24213
|
+
uri?: string | null;
|
24214
|
+
slack?: {
|
24215
|
+
__typename?: 'SlackIntegrationProperties';
|
24216
|
+
token: string;
|
24217
|
+
channel: string;
|
24218
|
+
} | null;
|
24219
|
+
email?: {
|
24220
|
+
__typename?: 'EmailIntegrationProperties';
|
24221
|
+
from: string;
|
24222
|
+
subject: string;
|
24223
|
+
to: Array<string>;
|
24224
|
+
} | null;
|
24225
|
+
} | null;
|
24226
|
+
} | null> | null;
|
24227
|
+
} | null;
|
24228
|
+
};
|
24229
|
+
export type UpsertWorkflowMutationVariables = Exact<{
|
24230
|
+
workflow: WorkflowInput;
|
24231
|
+
}>;
|
24232
|
+
export type UpsertWorkflowMutation = {
|
24233
|
+
__typename?: 'Mutation';
|
24234
|
+
upsertWorkflow?: {
|
24235
|
+
__typename?: 'Workflow';
|
24236
|
+
id: string;
|
24237
|
+
name: string;
|
24238
|
+
state: EntityState;
|
24239
|
+
ingestion?: {
|
24240
|
+
__typename?: 'IngestionWorkflowStage';
|
24241
|
+
if?: {
|
24242
|
+
__typename?: 'IngestionContentFilter';
|
24243
|
+
types?: Array<ContentTypes> | null;
|
24244
|
+
fileTypes?: Array<FileTypes> | null;
|
24245
|
+
allowedPaths?: Array<string> | null;
|
24246
|
+
excludedPaths?: Array<string> | null;
|
24247
|
+
} | null;
|
24248
|
+
collections?: Array<{
|
24249
|
+
__typename?: 'EntityReference';
|
24250
|
+
id: string;
|
24251
|
+
} | null> | null;
|
24252
|
+
observations?: Array<{
|
24253
|
+
__typename?: 'ObservationReference';
|
24254
|
+
type: ObservableTypes;
|
24255
|
+
observable: {
|
24256
|
+
__typename?: 'NamedEntityReference';
|
24257
|
+
id: string;
|
24258
|
+
name?: string | null;
|
24259
|
+
};
|
24260
|
+
} | null> | null;
|
24261
|
+
} | null;
|
24262
|
+
indexing?: {
|
24263
|
+
__typename?: 'IndexingWorkflowStage';
|
24264
|
+
jobs?: Array<{
|
24265
|
+
__typename?: 'IndexingWorkflowJob';
|
24266
|
+
connector?: {
|
24267
|
+
__typename?: 'ContentIndexingConnector';
|
24268
|
+
type?: ContentIndexingServiceTypes | null;
|
24269
|
+
contentType?: ContentTypes | null;
|
24270
|
+
fileType?: FileTypes | null;
|
24271
|
+
} | null;
|
24272
|
+
} | null> | null;
|
24273
|
+
} | null;
|
24274
|
+
preparation?: {
|
24275
|
+
__typename?: 'PreparationWorkflowStage';
|
24276
|
+
enableUnblockedCapture?: boolean | null;
|
24277
|
+
disableSmartCapture?: boolean | null;
|
24278
|
+
summarizations?: Array<{
|
24279
|
+
__typename?: 'SummarizationStrategy';
|
24280
|
+
type: SummarizationTypes;
|
24281
|
+
tokens?: number | null;
|
24282
|
+
items?: number | null;
|
24283
|
+
prompt?: string | null;
|
24284
|
+
specification?: {
|
24285
|
+
__typename?: 'EntityReference';
|
24286
|
+
id: string;
|
24287
|
+
} | null;
|
24288
|
+
} | null> | null;
|
24289
|
+
jobs?: Array<{
|
24290
|
+
__typename?: 'PreparationWorkflowJob';
|
24291
|
+
connector?: {
|
24292
|
+
__typename?: 'FilePreparationConnector';
|
24293
|
+
type: FilePreparationServiceTypes;
|
24294
|
+
fileTypes?: Array<FileTypes> | null;
|
24295
|
+
azureDocument?: {
|
24296
|
+
__typename?: 'AzureDocumentPreparationProperties';
|
24297
|
+
version?: AzureDocumentIntelligenceVersions | null;
|
24298
|
+
model?: AzureDocumentIntelligenceModels | null;
|
24299
|
+
endpoint?: any | null;
|
24300
|
+
key?: string | null;
|
24301
|
+
} | null;
|
24302
|
+
deepgram?: {
|
24303
|
+
__typename?: 'DeepgramAudioPreparationProperties';
|
24304
|
+
model?: DeepgramModels | null;
|
24305
|
+
key?: string | null;
|
24306
|
+
enableRedaction?: boolean | null;
|
24307
|
+
enableSpeakerDiarization?: boolean | null;
|
24308
|
+
detectLanguage?: boolean | null;
|
24309
|
+
language?: string | null;
|
24310
|
+
} | null;
|
24311
|
+
assemblyAI?: {
|
24312
|
+
__typename?: 'AssemblyAIAudioPreparationProperties';
|
24313
|
+
model?: AssemblyAiModels | null;
|
24314
|
+
key?: string | null;
|
24315
|
+
enableRedaction?: boolean | null;
|
24316
|
+
enableSpeakerDiarization?: boolean | null;
|
24317
|
+
detectLanguage?: boolean | null;
|
24318
|
+
language?: string | null;
|
24319
|
+
} | null;
|
24320
|
+
document?: {
|
24321
|
+
__typename?: 'DocumentPreparationProperties';
|
24322
|
+
includeImages?: boolean | null;
|
24323
|
+
} | null;
|
24324
|
+
email?: {
|
24325
|
+
__typename?: 'EmailPreparationProperties';
|
24326
|
+
includeAttachments?: boolean | null;
|
24327
|
+
} | null;
|
24328
|
+
modelDocument?: {
|
24329
|
+
__typename?: 'ModelDocumentPreparationProperties';
|
24330
|
+
specification?: {
|
24331
|
+
__typename?: 'EntityReference';
|
24332
|
+
id: string;
|
24333
|
+
} | null;
|
24334
|
+
} | null;
|
24335
|
+
mistral?: {
|
24336
|
+
__typename?: 'MistralDocumentPreparationProperties';
|
24337
|
+
key?: string | null;
|
24338
|
+
} | null;
|
24339
|
+
} | null;
|
24340
|
+
} | null> | null;
|
24341
|
+
} | null;
|
24342
|
+
extraction?: {
|
24343
|
+
__typename?: 'ExtractionWorkflowStage';
|
24344
|
+
jobs?: Array<{
|
24345
|
+
__typename?: 'ExtractionWorkflowJob';
|
24346
|
+
connector?: {
|
24347
|
+
__typename?: 'EntityExtractionConnector';
|
24348
|
+
type: EntityExtractionServiceTypes;
|
24349
|
+
contentTypes?: Array<ContentTypes> | null;
|
24350
|
+
fileTypes?: Array<FileTypes> | null;
|
24351
|
+
extractedTypes?: Array<ObservableTypes> | null;
|
24352
|
+
extractedCount?: number | null;
|
24353
|
+
azureText?: {
|
24354
|
+
__typename?: 'AzureTextExtractionProperties';
|
24355
|
+
confidenceThreshold?: number | null;
|
24356
|
+
enablePII?: boolean | null;
|
24357
|
+
} | null;
|
24358
|
+
azureImage?: {
|
24359
|
+
__typename?: 'AzureImageExtractionProperties';
|
24360
|
+
confidenceThreshold?: number | null;
|
24361
|
+
} | null;
|
24362
|
+
modelImage?: {
|
24363
|
+
__typename?: 'ModelImageExtractionProperties';
|
24364
|
+
specification?: {
|
24365
|
+
__typename?: 'EntityReference';
|
24366
|
+
id: string;
|
24367
|
+
} | null;
|
24368
|
+
} | null;
|
24369
|
+
modelText?: {
|
24370
|
+
__typename?: 'ModelTextExtractionProperties';
|
24371
|
+
specification?: {
|
24372
|
+
__typename?: 'EntityReference';
|
24373
|
+
id: string;
|
24374
|
+
} | null;
|
24375
|
+
} | null;
|
24376
|
+
} | null;
|
24377
|
+
} | null> | null;
|
24378
|
+
} | null;
|
24379
|
+
classification?: {
|
24380
|
+
__typename?: 'ClassificationWorkflowStage';
|
24381
|
+
jobs?: Array<{
|
24382
|
+
__typename?: 'ClassificationWorkflowJob';
|
24383
|
+
connector?: {
|
24384
|
+
__typename?: 'ContentClassificationConnector';
|
24385
|
+
type: ContentClassificationServiceTypes;
|
24386
|
+
contentType?: ContentTypes | null;
|
24387
|
+
fileType?: FileTypes | null;
|
24388
|
+
model?: {
|
24389
|
+
__typename?: 'ModelContentClassificationProperties';
|
24390
|
+
specification?: {
|
24391
|
+
__typename?: 'EntityReference';
|
24392
|
+
id: string;
|
24393
|
+
} | null;
|
24394
|
+
rules?: Array<{
|
24395
|
+
__typename?: 'PromptClassificationRule';
|
24396
|
+
then?: string | null;
|
24397
|
+
if?: string | null;
|
24398
|
+
} | null> | null;
|
24399
|
+
} | null;
|
24400
|
+
regex?: {
|
24401
|
+
__typename?: 'RegexContentClassificationProperties';
|
24402
|
+
rules?: Array<{
|
24403
|
+
__typename?: 'RegexClassificationRule';
|
24404
|
+
then?: string | null;
|
24405
|
+
type?: RegexSourceTypes | null;
|
24406
|
+
path?: string | null;
|
24407
|
+
matches?: string | null;
|
24408
|
+
} | null> | null;
|
24409
|
+
} | null;
|
24410
|
+
} | null;
|
24411
|
+
} | null> | null;
|
24412
|
+
} | null;
|
23988
24413
|
enrichment?: {
|
23989
24414
|
__typename?: 'EnrichmentWorkflowStage';
|
23990
24415
|
link?: {
|
@@ -24037,7 +24462,24 @@ export type UpdateWorkflowMutation = {
|
|
24037
24462
|
token: string;
|
24038
24463
|
channel: string;
|
24039
24464
|
} | null;
|
24465
|
+
email?: {
|
24466
|
+
__typename?: 'EmailIntegrationProperties';
|
24467
|
+
from: string;
|
24468
|
+
subject: string;
|
24469
|
+
to: Array<string>;
|
24470
|
+
} | null;
|
24040
24471
|
} | null;
|
24041
24472
|
} | null> | null;
|
24042
24473
|
} | null;
|
24043
24474
|
};
|
24475
|
+
export type WorkflowExistsQueryVariables = Exact<{
|
24476
|
+
filter?: InputMaybe<WorkflowFilter>;
|
24477
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
24478
|
+
}>;
|
24479
|
+
export type WorkflowExistsQuery = {
|
24480
|
+
__typename?: 'Query';
|
24481
|
+
workflowExists?: {
|
24482
|
+
__typename?: 'BooleanResult';
|
24483
|
+
result?: boolean | null;
|
24484
|
+
} | null;
|
24485
|
+
};
|