graphlit-client 1.0.20240519001 → 1.0.20240609001
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.
@@ -53,10 +53,6 @@ export type Scalars = {
|
|
53
53
|
input: any;
|
54
54
|
output: any;
|
55
55
|
};
|
56
|
-
JSON: {
|
57
|
-
input: any;
|
58
|
-
output: any;
|
59
|
-
};
|
60
56
|
Long: {
|
61
57
|
input: any;
|
62
58
|
output: any;
|
@@ -987,7 +983,7 @@ export type Content = {
|
|
987
983
|
/** The audio mezzanine rendition URI of the content. For audio and video files, this will reference an intermediate MP3 rendition of the content. */
|
988
984
|
audioUri?: Maybe<Scalars['URL']['output']>;
|
989
985
|
/** The geo-boundary of the content, as GeoJSON Feature with Polygon geometry. */
|
990
|
-
boundary?: Maybe<Scalars['
|
986
|
+
boundary?: Maybe<Scalars['String']['output']>;
|
991
987
|
/** The summarized content bullet points. */
|
992
988
|
bullets?: Maybe<Array<Scalars['String']['output']>>;
|
993
989
|
/** The C4ID hash of the content. */
|
@@ -1120,6 +1116,8 @@ export type Content = {
|
|
1120
1116
|
/** Represents a content filter. */
|
1121
1117
|
export type ContentCriteria = {
|
1122
1118
|
__typename?: 'ContentCriteria';
|
1119
|
+
/** List of additional content filters using conjunctive conditions, i.e. 'and' semantics between each filter in list. */
|
1120
|
+
and?: Maybe<Array<ContentCriteriaLevel>>;
|
1123
1121
|
/** Filter by collections. */
|
1124
1122
|
collections?: Maybe<Array<EntityReference>>;
|
1125
1123
|
/** Filter by similar contents. */
|
@@ -1134,6 +1132,8 @@ export type ContentCriteria = {
|
|
1134
1132
|
fileTypes?: Maybe<Array<Maybe<FileTypes>>>;
|
1135
1133
|
/** Filter by observations. */
|
1136
1134
|
observations?: Maybe<Array<ObservationCriteria>>;
|
1135
|
+
/** List of additional content filters using disjunctive conditions, i.e. 'or' semantics between each filter in list. */
|
1136
|
+
or?: Maybe<Array<ContentCriteriaLevel>>;
|
1137
1137
|
/** Filter by content types. */
|
1138
1138
|
types?: Maybe<Array<ContentTypes>>;
|
1139
1139
|
/** Filter by workflows. */
|
@@ -1141,6 +1141,8 @@ export type ContentCriteria = {
|
|
1141
1141
|
};
|
1142
1142
|
/** Represents a content filter. */
|
1143
1143
|
export type ContentCriteriaInput = {
|
1144
|
+
/** List of additional content filters using conjunctive conditions, i.e. 'and' semantics between each filter in list. */
|
1145
|
+
and?: InputMaybe<Array<ContentCriteriaLevelInput>>;
|
1144
1146
|
/** Filter by collections. */
|
1145
1147
|
collections?: InputMaybe<Array<EntityReferenceInput>>;
|
1146
1148
|
/** Filter by similar contents. */
|
@@ -1155,11 +1157,36 @@ export type ContentCriteriaInput = {
|
|
1155
1157
|
fileTypes?: InputMaybe<Array<FileTypes>>;
|
1156
1158
|
/** Filter by observations. */
|
1157
1159
|
observations?: InputMaybe<Array<ObservationCriteriaInput>>;
|
1160
|
+
/** List of additional content filters using disjunctive conditions, i.e. 'or' semantics between each filter in list. */
|
1161
|
+
or?: InputMaybe<Array<ContentCriteriaLevelInput>>;
|
1158
1162
|
/** Filter by content types. */
|
1159
1163
|
types?: InputMaybe<Array<ContentTypes>>;
|
1160
1164
|
/** Filter by workflows. */
|
1161
1165
|
workflows?: InputMaybe<Array<EntityReferenceInput>>;
|
1162
1166
|
};
|
1167
|
+
/** Represents a filter level for contents. */
|
1168
|
+
export type ContentCriteriaLevel = {
|
1169
|
+
__typename?: 'ContentCriteriaLevel';
|
1170
|
+
/** Filter by collections. */
|
1171
|
+
collections?: Maybe<Array<EntityReference>>;
|
1172
|
+
/** Filter by feeds. */
|
1173
|
+
feeds?: Maybe<Array<EntityReference>>;
|
1174
|
+
/** Filter by observations. */
|
1175
|
+
observations?: Maybe<Array<ObservationCriteria>>;
|
1176
|
+
/** Filter by workflows. */
|
1177
|
+
workflows?: Maybe<Array<EntityReference>>;
|
1178
|
+
};
|
1179
|
+
/** Represents a filter level for contents. */
|
1180
|
+
export type ContentCriteriaLevelInput = {
|
1181
|
+
/** Filter by collections. */
|
1182
|
+
collections?: InputMaybe<Array<EntityReferenceInput>>;
|
1183
|
+
/** Filter by feeds. */
|
1184
|
+
feeds?: InputMaybe<Array<EntityReferenceInput>>;
|
1185
|
+
/** Filter by observations. */
|
1186
|
+
observations?: InputMaybe<Array<ObservationCriteriaInput>>;
|
1187
|
+
/** Filter by workflows. */
|
1188
|
+
workflows?: InputMaybe<Array<EntityReferenceInput>>;
|
1189
|
+
};
|
1163
1190
|
/** Represents a content facet. */
|
1164
1191
|
export type ContentFacet = {
|
1165
1192
|
__typename?: 'ContentFacet';
|
@@ -1250,10 +1277,10 @@ export declare enum ContentFacetTypes {
|
|
1250
1277
|
}
|
1251
1278
|
/** Represents a filter for contents. */
|
1252
1279
|
export type ContentFilter = {
|
1253
|
-
/** List of additional content filters using conjunctive conditions, i.e. 'and' semantics. */
|
1280
|
+
/** List of additional content filters using conjunctive conditions, i.e. 'and' semantics between each filter in list. */
|
1254
1281
|
and?: InputMaybe<Array<InputMaybe<ContentFilterLevel>>>;
|
1255
1282
|
/** Filter by geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
1256
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
1283
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
1257
1284
|
/** Filter by collections. */
|
1258
1285
|
collections?: InputMaybe<Array<EntityReferenceFilter>>;
|
1259
1286
|
/** Filter by similar contents. */
|
@@ -1288,7 +1315,7 @@ export type ContentFilter = {
|
|
1288
1315
|
observations?: InputMaybe<Array<ObservationReferenceFilter>>;
|
1289
1316
|
/** Skip the specified number of content(s) from the beginning of the result set. */
|
1290
1317
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
1291
|
-
/** List of additional content filters using disjunctive conditions, i.e. 'or' semantics. */
|
1318
|
+
/** List of additional content filters using disjunctive conditions, i.e. 'or' semantics between each filter in list. */
|
1292
1319
|
or?: InputMaybe<Array<InputMaybe<ContentFilterLevel>>>;
|
1293
1320
|
/** The sort order for query results. */
|
1294
1321
|
orderBy?: InputMaybe<OrderByTypes>;
|
@@ -1735,6 +1762,67 @@ export declare enum DeepgramModels {
|
|
1735
1762
|
/** Whisper (Tiny) */
|
1736
1763
|
WhisperTiny = "WHISPER_TINY"
|
1737
1764
|
}
|
1765
|
+
/** Represents Deepseek model properties. */
|
1766
|
+
export type DeepseekModelProperties = {
|
1767
|
+
__typename?: 'DeepseekModelProperties';
|
1768
|
+
/** The limit of tokens generated by prompt completion. */
|
1769
|
+
completionTokenLimit?: Maybe<Scalars['Int']['output']>;
|
1770
|
+
/** The Deepseek API key, if using developer's own account. */
|
1771
|
+
key?: Maybe<Scalars['String']['output']>;
|
1772
|
+
/** The Deepseek model, or custom, when using developer's own account. */
|
1773
|
+
model: DeepseekModels;
|
1774
|
+
/** The Deepseek model name, if using developer's own account. */
|
1775
|
+
modelName?: Maybe<Scalars['String']['output']>;
|
1776
|
+
/** The model token probability. */
|
1777
|
+
probability?: Maybe<Scalars['Float']['output']>;
|
1778
|
+
/** The model temperature. */
|
1779
|
+
temperature?: Maybe<Scalars['Float']['output']>;
|
1780
|
+
/** The number of tokens which can provided to the Deepseek model, if using developer's own account. */
|
1781
|
+
tokenLimit?: Maybe<Scalars['Int']['output']>;
|
1782
|
+
};
|
1783
|
+
/** Represents Deepseek model properties. */
|
1784
|
+
export type DeepseekModelPropertiesInput = {
|
1785
|
+
/** The limit of tokens generated by prompt completion. */
|
1786
|
+
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
1787
|
+
/** The Deepseek API key, if using developer's own account. */
|
1788
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
1789
|
+
/** The Deepseek model, or custom, when using developer's own account. */
|
1790
|
+
model: DeepseekModels;
|
1791
|
+
/** The Deepseek model name, if using developer's own account. */
|
1792
|
+
modelName?: InputMaybe<Scalars['String']['input']>;
|
1793
|
+
/** The model token probability. */
|
1794
|
+
probability?: InputMaybe<Scalars['Float']['input']>;
|
1795
|
+
/** The model temperature. */
|
1796
|
+
temperature?: InputMaybe<Scalars['Float']['input']>;
|
1797
|
+
/** The number of tokens which can provided to the Deepseek model, if using developer's own account. */
|
1798
|
+
tokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
1799
|
+
};
|
1800
|
+
/** Represents Deepseek model properties. */
|
1801
|
+
export type DeepseekModelPropertiesUpdateInput = {
|
1802
|
+
/** The limit of tokens generated by prompt completion. */
|
1803
|
+
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
1804
|
+
/** The Deepseek API key, if using developer's own account. */
|
1805
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
1806
|
+
/** The Deepseek model, or custom, when using developer's own account. */
|
1807
|
+
model: DeepseekModels;
|
1808
|
+
/** The Deepseek model name, if using developer's own account. */
|
1809
|
+
modelName?: InputMaybe<Scalars['String']['input']>;
|
1810
|
+
/** The model token probability. */
|
1811
|
+
probability?: InputMaybe<Scalars['Float']['input']>;
|
1812
|
+
/** The model temperature. */
|
1813
|
+
temperature?: InputMaybe<Scalars['Float']['input']>;
|
1814
|
+
/** The number of tokens which can provided to the Deepseek model, if using developer's own account. */
|
1815
|
+
tokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
1816
|
+
};
|
1817
|
+
/** Deepseek model type */
|
1818
|
+
export declare enum DeepseekModels {
|
1819
|
+
/** Deepseek Chat */
|
1820
|
+
Chat = "CHAT",
|
1821
|
+
/** Deepseek Coder */
|
1822
|
+
Coder = "CODER",
|
1823
|
+
/** Developer-specified model */
|
1824
|
+
Custom = "CUSTOM"
|
1825
|
+
}
|
1738
1826
|
/** Capture device type */
|
1739
1827
|
export declare enum DeviceTypes {
|
1740
1828
|
/** Digital Camera */
|
@@ -2155,7 +2243,7 @@ export type EntityExtractionConnector = {
|
|
2155
2243
|
azureText?: Maybe<AzureTextExtractionProperties>;
|
2156
2244
|
/** The content types to allow for entity extraction. */
|
2157
2245
|
contentTypes?: Maybe<Array<ContentTypes>>;
|
2158
|
-
/** The maximum number of observable entities to be extracted, per entity type. Defaults to
|
2246
|
+
/** The maximum number of observable entities to be extracted, per entity type. Defaults to 100. */
|
2159
2247
|
extractedCount?: Maybe<Scalars['Int']['output']>;
|
2160
2248
|
/** The observable entity types to be extracted, defaults to all observables. */
|
2161
2249
|
extractedTypes?: Maybe<Array<ObservableTypes>>;
|
@@ -2176,7 +2264,7 @@ export type EntityExtractionConnectorInput = {
|
|
2176
2264
|
azureText?: InputMaybe<AzureTextExtractionPropertiesInput>;
|
2177
2265
|
/** The content types to allow for entity extraction. */
|
2178
2266
|
contentTypes?: InputMaybe<Array<ContentTypes>>;
|
2179
|
-
/** The maximum number of observable entities to be extracted, per entity type. Defaults to
|
2267
|
+
/** The maximum number of observable entities to be extracted, per entity type. Defaults to 100. */
|
2180
2268
|
extractedCount?: InputMaybe<Scalars['Int']['input']>;
|
2181
2269
|
/** The observable entity types to be extracted, defaults to all observables. */
|
2182
2270
|
extractedTypes?: InputMaybe<Array<ObservableTypes>>;
|
@@ -2341,7 +2429,7 @@ export type Event = {
|
|
2341
2429
|
/** The event availability start date. */
|
2342
2430
|
availabilityStartDate?: Maybe<Scalars['DateTime']['output']>;
|
2343
2431
|
/** The geo-boundary of the event, as GeoJSON Feature with Polygon geometry. */
|
2344
|
-
boundary?: Maybe<Scalars['
|
2432
|
+
boundary?: Maybe<Scalars['String']['output']>;
|
2345
2433
|
/** The creation date of the event. */
|
2346
2434
|
creationDate: Scalars['DateTime']['output'];
|
2347
2435
|
/** The event description. */
|
@@ -2378,6 +2466,8 @@ export type Event = {
|
|
2378
2466
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
2379
2467
|
/** The state of the event (i.e. created, enabled). */
|
2380
2468
|
state: EntityState;
|
2469
|
+
/** The JSON-LD value of the event. */
|
2470
|
+
thing?: Maybe<Scalars['String']['output']>;
|
2381
2471
|
/** The event typical age range. */
|
2382
2472
|
typicalAgeRange?: Maybe<Scalars['String']['output']>;
|
2383
2473
|
/** The event URI. */
|
@@ -2420,7 +2510,7 @@ export type EventFilter = {
|
|
2420
2510
|
/** Filter by event availability start date range. */
|
2421
2511
|
availabilityStartDateRange?: InputMaybe<DateRangeFilter>;
|
2422
2512
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
2423
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
2513
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
2424
2514
|
/** Filter event(s) by their creation date range. */
|
2425
2515
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
2426
2516
|
/** The sort direction for query results. */
|
@@ -2469,7 +2559,7 @@ export type EventInput = {
|
|
2469
2559
|
/** The event availability start date. */
|
2470
2560
|
availabilityStartDate?: InputMaybe<Scalars['DateTime']['input']>;
|
2471
2561
|
/** The event geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
2472
|
-
boundary?: InputMaybe<Scalars['
|
2562
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
2473
2563
|
/** The event description. */
|
2474
2564
|
description?: InputMaybe<Scalars['String']['input']>;
|
2475
2565
|
/** The event end date. */
|
@@ -2516,7 +2606,7 @@ export type EventUpdateInput = {
|
|
2516
2606
|
/** The event availability start date. */
|
2517
2607
|
availabilityStartDate?: InputMaybe<Scalars['DateTime']['input']>;
|
2518
2608
|
/** The event geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
2519
|
-
boundary?: InputMaybe<Scalars['
|
2609
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
2520
2610
|
/** The event description. */
|
2521
2611
|
description?: InputMaybe<Scalars['String']['input']>;
|
2522
2612
|
/** The event end date. */
|
@@ -3093,25 +3183,37 @@ export type GraphNode = {
|
|
3093
3183
|
/** Represents a GraphRAG strategy. */
|
3094
3184
|
export type GraphStrategy = {
|
3095
3185
|
__typename?: 'GraphStrategy';
|
3186
|
+
/** Whether to generate the knowledge graph nodes and edges with the conversation response, defaults to False. */
|
3187
|
+
generateGraph?: Maybe<Scalars['Boolean']['output']>;
|
3188
|
+
/** The maximum number of observed entities to provide with prompt context, defaults to 1000. */
|
3189
|
+
observableLimit?: Maybe<Scalars['Int']['output']>;
|
3096
3190
|
/** The GraphRAG strategy type. */
|
3097
3191
|
type: GraphStrategyTypes;
|
3098
3192
|
};
|
3099
3193
|
/** Represents a GraphRAG strategy. */
|
3100
3194
|
export type GraphStrategyInput = {
|
3195
|
+
/** Whether to generate the knowledge graph nodes and edges with the conversation response, defaults to False. */
|
3196
|
+
generateGraph?: InputMaybe<Scalars['Boolean']['input']>;
|
3197
|
+
/** The maximum number of observed entities to provide with prompt context, defaults to 1000. */
|
3198
|
+
observableLimit?: InputMaybe<Scalars['Int']['input']>;
|
3101
3199
|
/** The GraphRAG strategy type. */
|
3102
3200
|
type?: InputMaybe<GraphStrategyTypes>;
|
3103
3201
|
};
|
3104
3202
|
/** GraphRAG strategies */
|
3105
3203
|
export declare enum GraphStrategyTypes {
|
3106
|
-
/** Extract named entities from prompt,
|
3204
|
+
/** Use GraphRAG. Extract named entities from prompt, assign as observations filter */
|
3107
3205
|
ExtractEntitiesFilter = "EXTRACT_ENTITIES_FILTER",
|
3108
|
-
/** Extract named entities from prompt,
|
3206
|
+
/** Use GraphRAG. Extract named entities from prompt, aggregate vector search and graph query results */
|
3109
3207
|
ExtractEntitiesGraph = "EXTRACT_ENTITIES_GRAPH",
|
3110
3208
|
/** Use standard RAG */
|
3111
3209
|
None = "NONE"
|
3112
3210
|
}
|
3113
3211
|
/** Represents a GraphRAG strategy. */
|
3114
3212
|
export type GraphStrategyUpdateInput = {
|
3213
|
+
/** Whether to generate the knowledge graph nodes and edges with the conversation response, defaults to False. */
|
3214
|
+
generateGraph?: InputMaybe<Scalars['Boolean']['input']>;
|
3215
|
+
/** The maximum number of observed entities to provide with prompt context, defaults to 1000. */
|
3216
|
+
observableLimit?: InputMaybe<Scalars['Int']['input']>;
|
3115
3217
|
/** The GraphRAG strategy type. */
|
3116
3218
|
type?: InputMaybe<GraphStrategyTypes>;
|
3117
3219
|
};
|
@@ -3400,17 +3502,25 @@ export declare enum ImageProjectionTypes {
|
|
3400
3502
|
/** Represents an ingestion content filter. */
|
3401
3503
|
export type IngestionContentFilter = {
|
3402
3504
|
__typename?: 'IngestionContentFilter';
|
3505
|
+
/** The list of regular expressions for allowed URL paths, i.e. "^/public/blogs/.*". */
|
3506
|
+
allowedPaths?: Maybe<Array<Scalars['String']['output']>>;
|
3507
|
+
/** The list of regular expressions for excluded URL paths, i.e. "^/internal/private/.*". */
|
3508
|
+
excludedPaths?: Maybe<Array<Scalars['String']['output']>>;
|
3403
3509
|
/** Filter by file types. */
|
3404
|
-
fileTypes?: Maybe<Array<
|
3510
|
+
fileTypes?: Maybe<Array<FileTypes>>;
|
3405
3511
|
/** Filter by content types. */
|
3406
|
-
types?: Maybe<Array<
|
3512
|
+
types?: Maybe<Array<ContentTypes>>;
|
3407
3513
|
};
|
3408
3514
|
/** Represents an ingestion content filter. */
|
3409
3515
|
export type IngestionContentFilterInput = {
|
3516
|
+
/** The list of regular expressions for allowed URL paths, i.e. "^/public/blogs/.*". */
|
3517
|
+
allowedPaths?: InputMaybe<Array<Scalars['String']['input']>>;
|
3518
|
+
/** The list of regular expressions for excluded URL paths, i.e. "^/internal/private/.*". */
|
3519
|
+
excludedPaths?: InputMaybe<Array<Scalars['String']['input']>>;
|
3410
3520
|
/** Filter by file types. */
|
3411
|
-
fileTypes?: InputMaybe<Array<
|
3521
|
+
fileTypes?: InputMaybe<Array<FileTypes>>;
|
3412
3522
|
/** Filter by content types. */
|
3413
|
-
types?: InputMaybe<Array<
|
3523
|
+
types?: InputMaybe<Array<ContentTypes>>;
|
3414
3524
|
};
|
3415
3525
|
/** Represents the ingestion workflow stage. */
|
3416
3526
|
export type IngestionWorkflowStage = {
|
@@ -3698,6 +3808,8 @@ export type LinkStrategy = {
|
|
3698
3808
|
allowedFiles?: Maybe<Array<FileTypes>>;
|
3699
3809
|
/** The allowed link types. */
|
3700
3810
|
allowedLinks?: Maybe<Array<LinkTypes>>;
|
3811
|
+
/** The list of regular expressions for URL paths to be crawled, i.e. "^/public/blogs/.*". */
|
3812
|
+
allowedPaths?: Maybe<Array<Scalars['String']['output']>>;
|
3701
3813
|
/** Whether link crawling is enabled. */
|
3702
3814
|
enableCrawling?: Maybe<Scalars['Boolean']['output']>;
|
3703
3815
|
/** The list of DNS domains to not be crawled, i.e. example.com. */
|
@@ -3706,6 +3818,8 @@ export type LinkStrategy = {
|
|
3706
3818
|
excludedFiles?: Maybe<Array<FileTypes>>;
|
3707
3819
|
/** The excluded link types. */
|
3708
3820
|
excludedLinks?: Maybe<Array<LinkTypes>>;
|
3821
|
+
/** The list of regular expressions for URL paths to not be crawled, i.e. "^/internal/private/.*". */
|
3822
|
+
excludedPaths?: Maybe<Array<Scalars['String']['output']>>;
|
3709
3823
|
/** The maximum number of links to be crawled. */
|
3710
3824
|
maximumLinks?: Maybe<Scalars['Int']['output']>;
|
3711
3825
|
};
|
@@ -3719,6 +3833,8 @@ export type LinkStrategyInput = {
|
|
3719
3833
|
allowedFiles?: InputMaybe<Array<FileTypes>>;
|
3720
3834
|
/** The allowed link types. */
|
3721
3835
|
allowedLinks?: InputMaybe<Array<LinkTypes>>;
|
3836
|
+
/** The list of regular expressions for URL paths to be crawled, i.e. "^/public/blogs/.*". */
|
3837
|
+
allowedPaths?: InputMaybe<Array<Scalars['String']['input']>>;
|
3722
3838
|
/** Whether link crawling is enabled. */
|
3723
3839
|
enableCrawling?: InputMaybe<Scalars['Boolean']['input']>;
|
3724
3840
|
/** The list of DNS domains to not be crawled, i.e. example.com. */
|
@@ -3727,6 +3843,8 @@ export type LinkStrategyInput = {
|
|
3727
3843
|
excludedFiles?: InputMaybe<Array<FileTypes>>;
|
3728
3844
|
/** The excluded link types. */
|
3729
3845
|
excludedLinks?: InputMaybe<Array<LinkTypes>>;
|
3846
|
+
/** The list of regular expressions for URL paths to not be crawled, i.e. "^/internal/private/.*". */
|
3847
|
+
excludedPaths?: InputMaybe<Array<Scalars['String']['input']>>;
|
3730
3848
|
/** The maximum number of links to be crawled. */
|
3731
3849
|
maximumLinks?: InputMaybe<Scalars['Int']['input']>;
|
3732
3850
|
};
|
@@ -4123,6 +4241,8 @@ export declare enum ModelServiceTypes {
|
|
4123
4241
|
AzureOpenAi = "AZURE_OPEN_AI",
|
4124
4242
|
/** Cohere */
|
4125
4243
|
Cohere = "COHERE",
|
4244
|
+
/** Deepseek */
|
4245
|
+
Deepseek = "DEEPSEEK",
|
4126
4246
|
/** Groq */
|
4127
4247
|
Groq = "GROQ",
|
4128
4248
|
/** Mistral */
|
@@ -4130,9 +4250,7 @@ export declare enum ModelServiceTypes {
|
|
4130
4250
|
/** OpenAI */
|
4131
4251
|
OpenAi = "OPEN_AI",
|
4132
4252
|
/** Replicate */
|
4133
|
-
Replicate = "REPLICATE"
|
4134
|
-
/** TogetherAI */
|
4135
|
-
TogetherAi = "TOGETHER_AI"
|
4253
|
+
Replicate = "REPLICATE"
|
4136
4254
|
}
|
4137
4255
|
/** Represents an LLM text entity extraction connector. */
|
4138
4256
|
export type ModelTextExtractionProperties = {
|
@@ -4777,6 +4895,7 @@ export type MutationSuggestConversationArgs = {
|
|
4777
4895
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4778
4896
|
count?: InputMaybe<Scalars['Int']['input']>;
|
4779
4897
|
id: Scalars['ID']['input'];
|
4898
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
4780
4899
|
};
|
4781
4900
|
export type MutationSummarizeContentsArgs = {
|
4782
4901
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -5254,7 +5373,7 @@ export type Organization = {
|
|
5254
5373
|
/** The alternate names of the organization. */
|
5255
5374
|
alternateNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
5256
5375
|
/** The geo-boundary of the organization, as GeoJSON Feature with Polygon geometry. */
|
5257
|
-
boundary?: Maybe<Scalars['
|
5376
|
+
boundary?: Maybe<Scalars['String']['output']>;
|
5258
5377
|
/** The creation date of the organization. */
|
5259
5378
|
creationDate: Scalars['DateTime']['output'];
|
5260
5379
|
/** The organization description. */
|
@@ -5289,6 +5408,8 @@ export type Organization = {
|
|
5289
5408
|
revenueCurrency?: Maybe<Scalars['String']['output']>;
|
5290
5409
|
/** The state of the organization (i.e. created, enabled). */
|
5291
5410
|
state: EntityState;
|
5411
|
+
/** The JSON-LD value of the organization. */
|
5412
|
+
thing?: Maybe<Scalars['String']['output']>;
|
5292
5413
|
/** The organization URI. */
|
5293
5414
|
uri?: Maybe<Scalars['URL']['output']>;
|
5294
5415
|
};
|
@@ -5325,7 +5446,7 @@ export type OrganizationFilter = {
|
|
5325
5446
|
/** Filter by observable physical address. */
|
5326
5447
|
address?: InputMaybe<AddressFilter>;
|
5327
5448
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
5328
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
5449
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
5329
5450
|
/** Filter organization(s) by their creation date range. */
|
5330
5451
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
5331
5452
|
/** The sort direction for query results. */
|
@@ -5354,7 +5475,7 @@ export type OrganizationInput = {
|
|
5354
5475
|
/** The physical address of the organization. */
|
5355
5476
|
address?: InputMaybe<AddressInput>;
|
5356
5477
|
/** The organization geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
5357
|
-
boundary?: InputMaybe<Scalars['
|
5478
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
5358
5479
|
/** The organization description. */
|
5359
5480
|
description?: InputMaybe<Scalars['String']['input']>;
|
5360
5481
|
/** The founding date of the organization. */
|
@@ -5393,7 +5514,7 @@ export type OrganizationUpdateInput = {
|
|
5393
5514
|
/** The physical address of the organization. */
|
5394
5515
|
address?: InputMaybe<AddressInput>;
|
5395
5516
|
/** The organization geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
5396
|
-
boundary?: InputMaybe<Scalars['
|
5517
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
5397
5518
|
/** The organization description. */
|
5398
5519
|
description?: InputMaybe<Scalars['String']['input']>;
|
5399
5520
|
/** The founding date of the organization. */
|
@@ -5477,7 +5598,7 @@ export type Person = {
|
|
5477
5598
|
/** The birth date of the person. */
|
5478
5599
|
birthDate?: Maybe<Scalars['Date']['output']>;
|
5479
5600
|
/** The geo-boundary of the person, as GeoJSON Feature with Polygon geometry. */
|
5480
|
-
boundary?: Maybe<Scalars['
|
5601
|
+
boundary?: Maybe<Scalars['String']['output']>;
|
5481
5602
|
/** The creation date of the person. */
|
5482
5603
|
creationDate: Scalars['DateTime']['output'];
|
5483
5604
|
/** The person description. */
|
@@ -5512,6 +5633,8 @@ export type Person = {
|
|
5512
5633
|
phoneNumber?: Maybe<Scalars['String']['output']>;
|
5513
5634
|
/** The state of the person (i.e. created, enabled). */
|
5514
5635
|
state: EntityState;
|
5636
|
+
/** The JSON-LD value of the person. */
|
5637
|
+
thing?: Maybe<Scalars['String']['output']>;
|
5515
5638
|
/** The job title of the person. */
|
5516
5639
|
title?: Maybe<Scalars['String']['output']>;
|
5517
5640
|
/** The person URI. */
|
@@ -5550,7 +5673,7 @@ export type PersonFilter = {
|
|
5550
5673
|
/** Filter by observable physical address. */
|
5551
5674
|
address?: InputMaybe<AddressFilter>;
|
5552
5675
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
5553
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
5676
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
5554
5677
|
/** Filter person(s) by their creation date range. */
|
5555
5678
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
5556
5679
|
/** The sort direction for query results. */
|
@@ -5589,7 +5712,7 @@ export type PersonInput = {
|
|
5589
5712
|
/** The birth date of the person. */
|
5590
5713
|
birthDate?: InputMaybe<Scalars['Date']['input']>;
|
5591
5714
|
/** The person geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
5592
|
-
boundary?: InputMaybe<Scalars['
|
5715
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
5593
5716
|
/** The person description. */
|
5594
5717
|
description?: InputMaybe<Scalars['String']['input']>;
|
5595
5718
|
/** The education of the person. */
|
@@ -5644,7 +5767,7 @@ export type PersonUpdateInput = {
|
|
5644
5767
|
/** The birth date of the person. */
|
5645
5768
|
birthDate?: InputMaybe<Scalars['Date']['input']>;
|
5646
5769
|
/** The person geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
5647
|
-
boundary?: InputMaybe<Scalars['
|
5770
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
5648
5771
|
/** The person description. */
|
5649
5772
|
description?: InputMaybe<Scalars['String']['input']>;
|
5650
5773
|
/** The education of the person. */
|
@@ -5680,7 +5803,7 @@ export type Place = {
|
|
5680
5803
|
/** The alternate names of the place. */
|
5681
5804
|
alternateNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
5682
5805
|
/** The geo-boundary of the place, as GeoJSON Feature with Polygon geometry. */
|
5683
|
-
boundary?: Maybe<Scalars['
|
5806
|
+
boundary?: Maybe<Scalars['String']['output']>;
|
5684
5807
|
/** The creation date of the place. */
|
5685
5808
|
creationDate: Scalars['DateTime']['output'];
|
5686
5809
|
/** The place description. */
|
@@ -5703,6 +5826,8 @@ export type Place = {
|
|
5703
5826
|
name: Scalars['String']['output'];
|
5704
5827
|
/** The state of the place (i.e. created, enabled). */
|
5705
5828
|
state: EntityState;
|
5829
|
+
/** The JSON-LD value of the place. */
|
5830
|
+
thing?: Maybe<Scalars['String']['output']>;
|
5706
5831
|
/** The place URI. */
|
5707
5832
|
uri?: Maybe<Scalars['URL']['output']>;
|
5708
5833
|
};
|
@@ -5739,7 +5864,7 @@ export type PlaceFilter = {
|
|
5739
5864
|
/** Filter by observable physical address. */
|
5740
5865
|
address?: InputMaybe<AddressFilter>;
|
5741
5866
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
5742
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
5867
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
5743
5868
|
/** Filter place(s) by their creation date range. */
|
5744
5869
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
5745
5870
|
/** The sort direction for query results. */
|
@@ -5768,7 +5893,7 @@ export type PlaceInput = {
|
|
5768
5893
|
/** The physical address of the place. */
|
5769
5894
|
address?: InputMaybe<AddressInput>;
|
5770
5895
|
/** The place geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
5771
|
-
boundary?: InputMaybe<Scalars['
|
5896
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
5772
5897
|
/** The place description. */
|
5773
5898
|
description?: InputMaybe<Scalars['String']['input']>;
|
5774
5899
|
/** The place external identifier. */
|
@@ -5795,7 +5920,7 @@ export type PlaceUpdateInput = {
|
|
5795
5920
|
/** The physical address of the place. */
|
5796
5921
|
address?: InputMaybe<AddressInput>;
|
5797
5922
|
/** The place geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
5798
|
-
boundary?: InputMaybe<Scalars['
|
5923
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
5799
5924
|
/** The place description. */
|
5800
5925
|
description?: InputMaybe<Scalars['String']['input']>;
|
5801
5926
|
/** The ID of the place to update. */
|
@@ -5909,7 +6034,7 @@ export type Product = {
|
|
5909
6034
|
/** The alternate names of the product. */
|
5910
6035
|
alternateNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
5911
6036
|
/** The geo-boundary of the product, as GeoJSON Feature with Polygon geometry. */
|
5912
|
-
boundary?: Maybe<Scalars['
|
6037
|
+
boundary?: Maybe<Scalars['String']['output']>;
|
5913
6038
|
/** The product brand. */
|
5914
6039
|
brand?: Maybe<Scalars['String']['output']>;
|
5915
6040
|
/** The creation date of the product. */
|
@@ -5944,6 +6069,8 @@ export type Product = {
|
|
5944
6069
|
sku?: Maybe<Scalars['String']['output']>;
|
5945
6070
|
/** The state of the product (i.e. created, enabled). */
|
5946
6071
|
state: EntityState;
|
6072
|
+
/** The JSON-LD value of the product. */
|
6073
|
+
thing?: Maybe<Scalars['String']['output']>;
|
5947
6074
|
/** The product UPC. */
|
5948
6075
|
upc?: Maybe<Scalars['String']['output']>;
|
5949
6076
|
/** The product URI. */
|
@@ -5982,7 +6109,7 @@ export type ProductFilter = {
|
|
5982
6109
|
/** Filter by observable physical address. */
|
5983
6110
|
address?: InputMaybe<AddressFilter>;
|
5984
6111
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
5985
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
6112
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
5986
6113
|
/** Filter by product brand. */
|
5987
6114
|
brand?: InputMaybe<Scalars['String']['input']>;
|
5988
6115
|
/** Filter product(s) by their creation date range. */
|
@@ -6025,7 +6152,7 @@ export type ProductInput = {
|
|
6025
6152
|
/** The physical address of the product. */
|
6026
6153
|
address?: InputMaybe<AddressInput>;
|
6027
6154
|
/** The product geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
6028
|
-
boundary?: InputMaybe<Scalars['
|
6155
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
6029
6156
|
/** The product brand. */
|
6030
6157
|
brand?: InputMaybe<Scalars['String']['input']>;
|
6031
6158
|
/** The product description. */
|
@@ -6064,7 +6191,7 @@ export type ProductUpdateInput = {
|
|
6064
6191
|
/** The physical address of the product. */
|
6065
6192
|
address?: InputMaybe<AddressInput>;
|
6066
6193
|
/** The product geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
6067
|
-
boundary?: InputMaybe<Scalars['
|
6194
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
6068
6195
|
/** The product brand. */
|
6069
6196
|
brand?: InputMaybe<Scalars['String']['input']>;
|
6070
6197
|
/** The product description. */
|
@@ -6444,11 +6571,7 @@ export declare enum PromptStrategyTypes {
|
|
6444
6571
|
/** Convert prompt to keywords to optimize semantic search */
|
6445
6572
|
OptimizeSearch = "OPTIMIZE_SEARCH",
|
6446
6573
|
/** Rewrite prompt */
|
6447
|
-
Rewrite = "REWRITE"
|
6448
|
-
/** Rewrite prompt as multiple sub-prompts */
|
6449
|
-
RewriteMultiple = "REWRITE_MULTIPLE",
|
6450
|
-
/** Rewrite prompt as question requiring detailed response with example */
|
6451
|
-
RewriteQuestion = "REWRITE_QUESTION"
|
6574
|
+
Rewrite = "REWRITE"
|
6452
6575
|
}
|
6453
6576
|
/** Represents a prompt strategy. */
|
6454
6577
|
export type PromptStrategyUpdateInput = {
|
@@ -7057,6 +7180,8 @@ export type Repo = {
|
|
7057
7180
|
name: Scalars['String']['output'];
|
7058
7181
|
/** The state of the repo (i.e. created, enabled). */
|
7059
7182
|
state: EntityState;
|
7183
|
+
/** The JSON-LD value of the repo. */
|
7184
|
+
thing?: Maybe<Scalars['String']['output']>;
|
7060
7185
|
/** The repo URI. */
|
7061
7186
|
uri?: Maybe<Scalars['URL']['output']>;
|
7062
7187
|
};
|
@@ -7093,7 +7218,7 @@ export type RepoFilter = {
|
|
7093
7218
|
/** Filter by observable physical address. */
|
7094
7219
|
address?: InputMaybe<AddressFilter>;
|
7095
7220
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
7096
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
7221
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
7097
7222
|
/** Filter repo(s) by their creation date range. */
|
7098
7223
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
7099
7224
|
/** The sort direction for query results. */
|
@@ -7555,6 +7680,8 @@ export type Software = {
|
|
7555
7680
|
releaseDate?: Maybe<Scalars['DateTime']['output']>;
|
7556
7681
|
/** The state of the software (i.e. created, enabled). */
|
7557
7682
|
state: EntityState;
|
7683
|
+
/** The JSON-LD value of the software. */
|
7684
|
+
thing?: Maybe<Scalars['String']['output']>;
|
7558
7685
|
/** The software URI. */
|
7559
7686
|
uri?: Maybe<Scalars['URL']['output']>;
|
7560
7687
|
};
|
@@ -7591,7 +7718,7 @@ export type SoftwareFilter = {
|
|
7591
7718
|
/** Filter by observable physical address. */
|
7592
7719
|
address?: InputMaybe<AddressFilter>;
|
7593
7720
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
7594
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
7721
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
7595
7722
|
/** Filter software(s) by their creation date range. */
|
7596
7723
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
7597
7724
|
/** The sort direction for query results. */
|
@@ -7670,6 +7797,8 @@ export type Specification = {
|
|
7670
7797
|
customGuidance?: Maybe<Scalars['String']['output']>;
|
7671
7798
|
/** Custom instructions which are injected into the LLM conversation prompt. */
|
7672
7799
|
customInstructions?: Maybe<Scalars['String']['output']>;
|
7800
|
+
/** The Deepseek model properties. */
|
7801
|
+
deepseek?: Maybe<DeepseekModelProperties>;
|
7673
7802
|
/** The strategy for GraphRAG retrieval. */
|
7674
7803
|
graphStrategy?: Maybe<GraphStrategy>;
|
7675
7804
|
/** The Groq model properties. */
|
@@ -7750,6 +7879,8 @@ export type SpecificationInput = {
|
|
7750
7879
|
customGuidance?: InputMaybe<Scalars['String']['input']>;
|
7751
7880
|
/** Custom instructions which are injected into the LLM conversation prompt. */
|
7752
7881
|
customInstructions?: InputMaybe<Scalars['String']['input']>;
|
7882
|
+
/** The Deepseek model properties. */
|
7883
|
+
deepseek?: InputMaybe<DeepseekModelPropertiesInput>;
|
7753
7884
|
/** The strategy for GraphRAG retrieval. */
|
7754
7885
|
graphStrategy?: InputMaybe<GraphStrategyInput>;
|
7755
7886
|
/** The Groq model properties. */
|
@@ -7810,6 +7941,8 @@ export type SpecificationUpdateInput = {
|
|
7810
7941
|
customGuidance?: InputMaybe<Scalars['String']['input']>;
|
7811
7942
|
/** Custom instructions which are injected into the LLM conversation prompt. */
|
7812
7943
|
customInstructions?: InputMaybe<Scalars['String']['input']>;
|
7944
|
+
/** The Deepseek model properties. */
|
7945
|
+
deepseek?: InputMaybe<DeepseekModelPropertiesUpdateInput>;
|
7813
7946
|
/** The strategy for GraphRAG retrieval. */
|
7814
7947
|
graphStrategy?: InputMaybe<GraphStrategyUpdateInput>;
|
7815
7948
|
/** The Groq model properties. */
|
@@ -7954,6 +8087,8 @@ export type TextPage = {
|
|
7954
8087
|
chunks?: Maybe<Array<Maybe<TextChunk>>>;
|
7955
8088
|
/** The text page index. */
|
7956
8089
|
index?: Maybe<Scalars['Int']['output']>;
|
8090
|
+
/** The text page hyperlinks. */
|
8091
|
+
links?: Maybe<Array<Maybe<LinkReferenceType>>>;
|
7957
8092
|
/** The relevance score of the text page. */
|
7958
8093
|
relevance?: Maybe<Scalars['Float']['output']>;
|
7959
8094
|
/** The text page. */
|
@@ -8186,6 +8321,10 @@ export type VideoMetadataInput = {
|
|
8186
8321
|
/** Represents web feed properties. */
|
8187
8322
|
export type WebFeedProperties = {
|
8188
8323
|
__typename?: 'WebFeedProperties';
|
8324
|
+
/** The list of regular expressions for URL paths to be crawled, i.e. "^/public/blogs/.*". */
|
8325
|
+
allowedPaths?: Maybe<Array<Scalars['String']['output']>>;
|
8326
|
+
/** The list of regular expressions for URL paths to not be crawled, i.e. "^/internal/private/.*". */
|
8327
|
+
excludedPaths?: Maybe<Array<Scalars['String']['output']>>;
|
8189
8328
|
/** Whether to include files referenced by the web sitemap, defaults to false. */
|
8190
8329
|
includeFiles?: Maybe<Scalars['Boolean']['output']>;
|
8191
8330
|
/** The limit of items to be read from feed, defaults to 100. */
|
@@ -8195,6 +8334,10 @@ export type WebFeedProperties = {
|
|
8195
8334
|
};
|
8196
8335
|
/** Represents web feed properties. */
|
8197
8336
|
export type WebFeedPropertiesInput = {
|
8337
|
+
/** The list of regular expressions for URL paths to be crawled, i.e. "^/public/blogs/.*". */
|
8338
|
+
allowedPaths?: InputMaybe<Array<Scalars['String']['input']>>;
|
8339
|
+
/** The list of regular expressions for URL paths to not be crawled, i.e. "^/internal/private/.*". */
|
8340
|
+
excludedPaths?: InputMaybe<Array<Scalars['String']['input']>>;
|
8198
8341
|
/** Whether to include files referenced by the web sitemap, defaults to false. */
|
8199
8342
|
includeFiles?: InputMaybe<Scalars['Boolean']['input']>;
|
8200
8343
|
/** The limit of items to be read from feed, defaults to 100. */
|
@@ -8204,6 +8347,10 @@ export type WebFeedPropertiesInput = {
|
|
8204
8347
|
};
|
8205
8348
|
/** Represents web feed properties. */
|
8206
8349
|
export type WebFeedPropertiesUpdateInput = {
|
8350
|
+
/** The list of regular expressions for URL paths to be crawled, i.e. "^/public/blogs/.*". */
|
8351
|
+
allowedPaths?: InputMaybe<Array<Scalars['String']['input']>>;
|
8352
|
+
/** The list of regular expressions for URL paths to not be crawled, i.e. "^/internal/private/.*". */
|
8353
|
+
excludedPaths?: InputMaybe<Array<Scalars['String']['input']>>;
|
8207
8354
|
/** Whether to include files referenced by the web sitemap, defaults to false. */
|
8208
8355
|
includeFiles?: InputMaybe<Scalars['Boolean']['input']>;
|
8209
8356
|
/** The limit of items to be read from feed, defaults to 100. */
|
@@ -8504,6 +8651,54 @@ export type GetAlertQuery = {
|
|
8504
8651
|
id: string;
|
8505
8652
|
};
|
8506
8653
|
}> | null;
|
8654
|
+
or?: Array<{
|
8655
|
+
__typename?: 'ContentCriteriaLevel';
|
8656
|
+
feeds?: Array<{
|
8657
|
+
__typename?: 'EntityReference';
|
8658
|
+
id: string;
|
8659
|
+
}> | null;
|
8660
|
+
workflows?: Array<{
|
8661
|
+
__typename?: 'EntityReference';
|
8662
|
+
id: string;
|
8663
|
+
}> | null;
|
8664
|
+
collections?: Array<{
|
8665
|
+
__typename?: 'EntityReference';
|
8666
|
+
id: string;
|
8667
|
+
}> | null;
|
8668
|
+
observations?: Array<{
|
8669
|
+
__typename?: 'ObservationCriteria';
|
8670
|
+
type: ObservableTypes;
|
8671
|
+
states?: Array<EntityState | null> | null;
|
8672
|
+
observable: {
|
8673
|
+
__typename?: 'EntityReference';
|
8674
|
+
id: string;
|
8675
|
+
};
|
8676
|
+
}> | null;
|
8677
|
+
}> | null;
|
8678
|
+
and?: Array<{
|
8679
|
+
__typename?: 'ContentCriteriaLevel';
|
8680
|
+
feeds?: Array<{
|
8681
|
+
__typename?: 'EntityReference';
|
8682
|
+
id: string;
|
8683
|
+
}> | null;
|
8684
|
+
workflows?: Array<{
|
8685
|
+
__typename?: 'EntityReference';
|
8686
|
+
id: string;
|
8687
|
+
}> | null;
|
8688
|
+
collections?: Array<{
|
8689
|
+
__typename?: 'EntityReference';
|
8690
|
+
id: string;
|
8691
|
+
}> | null;
|
8692
|
+
observations?: Array<{
|
8693
|
+
__typename?: 'ObservationCriteria';
|
8694
|
+
type: ObservableTypes;
|
8695
|
+
states?: Array<EntityState | null> | null;
|
8696
|
+
observable: {
|
8697
|
+
__typename?: 'EntityReference';
|
8698
|
+
id: string;
|
8699
|
+
};
|
8700
|
+
}> | null;
|
8701
|
+
}> | null;
|
8507
8702
|
} | null;
|
8508
8703
|
integration: {
|
8509
8704
|
__typename?: 'IntegrationConnector';
|
@@ -8595,6 +8790,54 @@ export type QueryAlertsQuery = {
|
|
8595
8790
|
id: string;
|
8596
8791
|
};
|
8597
8792
|
}> | null;
|
8793
|
+
or?: Array<{
|
8794
|
+
__typename?: 'ContentCriteriaLevel';
|
8795
|
+
feeds?: Array<{
|
8796
|
+
__typename?: 'EntityReference';
|
8797
|
+
id: string;
|
8798
|
+
}> | null;
|
8799
|
+
workflows?: Array<{
|
8800
|
+
__typename?: 'EntityReference';
|
8801
|
+
id: string;
|
8802
|
+
}> | null;
|
8803
|
+
collections?: Array<{
|
8804
|
+
__typename?: 'EntityReference';
|
8805
|
+
id: string;
|
8806
|
+
}> | null;
|
8807
|
+
observations?: Array<{
|
8808
|
+
__typename?: 'ObservationCriteria';
|
8809
|
+
type: ObservableTypes;
|
8810
|
+
states?: Array<EntityState | null> | null;
|
8811
|
+
observable: {
|
8812
|
+
__typename?: 'EntityReference';
|
8813
|
+
id: string;
|
8814
|
+
};
|
8815
|
+
}> | null;
|
8816
|
+
}> | null;
|
8817
|
+
and?: Array<{
|
8818
|
+
__typename?: 'ContentCriteriaLevel';
|
8819
|
+
feeds?: Array<{
|
8820
|
+
__typename?: 'EntityReference';
|
8821
|
+
id: string;
|
8822
|
+
}> | null;
|
8823
|
+
workflows?: Array<{
|
8824
|
+
__typename?: 'EntityReference';
|
8825
|
+
id: string;
|
8826
|
+
}> | null;
|
8827
|
+
collections?: Array<{
|
8828
|
+
__typename?: 'EntityReference';
|
8829
|
+
id: string;
|
8830
|
+
}> | null;
|
8831
|
+
observations?: Array<{
|
8832
|
+
__typename?: 'ObservationCriteria';
|
8833
|
+
type: ObservableTypes;
|
8834
|
+
states?: Array<EntityState | null> | null;
|
8835
|
+
observable: {
|
8836
|
+
__typename?: 'EntityReference';
|
8837
|
+
id: string;
|
8838
|
+
};
|
8839
|
+
}> | null;
|
8840
|
+
}> | null;
|
8598
8841
|
} | null;
|
8599
8842
|
integration: {
|
8600
8843
|
__typename?: 'IntegrationConnector';
|
@@ -10181,6 +10424,54 @@ export type GetConversationQuery = {
|
|
10181
10424
|
id: string;
|
10182
10425
|
};
|
10183
10426
|
}> | null;
|
10427
|
+
or?: Array<{
|
10428
|
+
__typename?: 'ContentCriteriaLevel';
|
10429
|
+
feeds?: Array<{
|
10430
|
+
__typename?: 'EntityReference';
|
10431
|
+
id: string;
|
10432
|
+
}> | null;
|
10433
|
+
workflows?: Array<{
|
10434
|
+
__typename?: 'EntityReference';
|
10435
|
+
id: string;
|
10436
|
+
}> | null;
|
10437
|
+
collections?: Array<{
|
10438
|
+
__typename?: 'EntityReference';
|
10439
|
+
id: string;
|
10440
|
+
}> | null;
|
10441
|
+
observations?: Array<{
|
10442
|
+
__typename?: 'ObservationCriteria';
|
10443
|
+
type: ObservableTypes;
|
10444
|
+
states?: Array<EntityState | null> | null;
|
10445
|
+
observable: {
|
10446
|
+
__typename?: 'EntityReference';
|
10447
|
+
id: string;
|
10448
|
+
};
|
10449
|
+
}> | null;
|
10450
|
+
}> | null;
|
10451
|
+
and?: Array<{
|
10452
|
+
__typename?: 'ContentCriteriaLevel';
|
10453
|
+
feeds?: Array<{
|
10454
|
+
__typename?: 'EntityReference';
|
10455
|
+
id: string;
|
10456
|
+
}> | null;
|
10457
|
+
workflows?: Array<{
|
10458
|
+
__typename?: 'EntityReference';
|
10459
|
+
id: string;
|
10460
|
+
}> | null;
|
10461
|
+
collections?: Array<{
|
10462
|
+
__typename?: 'EntityReference';
|
10463
|
+
id: string;
|
10464
|
+
}> | null;
|
10465
|
+
observations?: Array<{
|
10466
|
+
__typename?: 'ObservationCriteria';
|
10467
|
+
type: ObservableTypes;
|
10468
|
+
states?: Array<EntityState | null> | null;
|
10469
|
+
observable: {
|
10470
|
+
__typename?: 'EntityReference';
|
10471
|
+
id: string;
|
10472
|
+
};
|
10473
|
+
}> | null;
|
10474
|
+
}> | null;
|
10184
10475
|
} | null;
|
10185
10476
|
} | null;
|
10186
10477
|
};
|
@@ -10393,6 +10684,54 @@ export type QueryConversationsQuery = {
|
|
10393
10684
|
id: string;
|
10394
10685
|
};
|
10395
10686
|
}> | null;
|
10687
|
+
or?: Array<{
|
10688
|
+
__typename?: 'ContentCriteriaLevel';
|
10689
|
+
feeds?: Array<{
|
10690
|
+
__typename?: 'EntityReference';
|
10691
|
+
id: string;
|
10692
|
+
}> | null;
|
10693
|
+
workflows?: Array<{
|
10694
|
+
__typename?: 'EntityReference';
|
10695
|
+
id: string;
|
10696
|
+
}> | null;
|
10697
|
+
collections?: Array<{
|
10698
|
+
__typename?: 'EntityReference';
|
10699
|
+
id: string;
|
10700
|
+
}> | null;
|
10701
|
+
observations?: Array<{
|
10702
|
+
__typename?: 'ObservationCriteria';
|
10703
|
+
type: ObservableTypes;
|
10704
|
+
states?: Array<EntityState | null> | null;
|
10705
|
+
observable: {
|
10706
|
+
__typename?: 'EntityReference';
|
10707
|
+
id: string;
|
10708
|
+
};
|
10709
|
+
}> | null;
|
10710
|
+
}> | null;
|
10711
|
+
and?: Array<{
|
10712
|
+
__typename?: 'ContentCriteriaLevel';
|
10713
|
+
feeds?: Array<{
|
10714
|
+
__typename?: 'EntityReference';
|
10715
|
+
id: string;
|
10716
|
+
}> | null;
|
10717
|
+
workflows?: Array<{
|
10718
|
+
__typename?: 'EntityReference';
|
10719
|
+
id: string;
|
10720
|
+
}> | null;
|
10721
|
+
collections?: Array<{
|
10722
|
+
__typename?: 'EntityReference';
|
10723
|
+
id: string;
|
10724
|
+
}> | null;
|
10725
|
+
observations?: Array<{
|
10726
|
+
__typename?: 'ObservationCriteria';
|
10727
|
+
type: ObservableTypes;
|
10728
|
+
states?: Array<EntityState | null> | null;
|
10729
|
+
observable: {
|
10730
|
+
__typename?: 'EntityReference';
|
10731
|
+
id: string;
|
10732
|
+
};
|
10733
|
+
}> | null;
|
10734
|
+
}> | null;
|
10396
10735
|
} | null;
|
10397
10736
|
} | null> | null;
|
10398
10737
|
} | null;
|
@@ -10400,6 +10739,7 @@ export type QueryConversationsQuery = {
|
|
10400
10739
|
export type SuggestConversationMutationVariables = Exact<{
|
10401
10740
|
id: Scalars['ID']['input'];
|
10402
10741
|
count?: InputMaybe<Scalars['Int']['input']>;
|
10742
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
10403
10743
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10404
10744
|
}>;
|
10405
10745
|
export type SuggestConversationMutation = {
|
@@ -10490,6 +10830,7 @@ export type GetEventQuery = {
|
|
10490
10830
|
name: string;
|
10491
10831
|
alternateNames?: Array<string | null> | null;
|
10492
10832
|
creationDate: any;
|
10833
|
+
thing?: string | null;
|
10493
10834
|
startDate?: any | null;
|
10494
10835
|
endDate?: any | null;
|
10495
10836
|
availabilityStartDate?: any | null;
|
@@ -10523,6 +10864,7 @@ export type QueryEventsQuery = {
|
|
10523
10864
|
name: string;
|
10524
10865
|
alternateNames?: Array<string | null> | null;
|
10525
10866
|
creationDate: any;
|
10867
|
+
thing?: string | null;
|
10526
10868
|
startDate?: any | null;
|
10527
10869
|
endDate?: any | null;
|
10528
10870
|
availabilityStartDate?: any | null;
|
@@ -10761,6 +11103,8 @@ export type GetFeedQuery = {
|
|
10761
11103
|
readLimit?: number | null;
|
10762
11104
|
uri: any;
|
10763
11105
|
includeFiles?: boolean | null;
|
11106
|
+
allowedPaths?: Array<string> | null;
|
11107
|
+
excludedPaths?: Array<string> | null;
|
10764
11108
|
} | null;
|
10765
11109
|
reddit?: {
|
10766
11110
|
__typename?: 'RedditFeedProperties';
|
@@ -10957,6 +11301,8 @@ export type QueryFeedsQuery = {
|
|
10957
11301
|
readLimit?: number | null;
|
10958
11302
|
uri: any;
|
10959
11303
|
includeFiles?: boolean | null;
|
11304
|
+
allowedPaths?: Array<string> | null;
|
11305
|
+
excludedPaths?: Array<string> | null;
|
10960
11306
|
} | null;
|
10961
11307
|
reddit?: {
|
10962
11308
|
__typename?: 'RedditFeedProperties';
|
@@ -11297,6 +11643,7 @@ export type GetOrganizationQuery = {
|
|
11297
11643
|
name: string;
|
11298
11644
|
alternateNames?: Array<string | null> | null;
|
11299
11645
|
creationDate: any;
|
11646
|
+
thing?: string | null;
|
11300
11647
|
foundingDate?: any | null;
|
11301
11648
|
industries?: Array<string | null> | null;
|
11302
11649
|
revenue?: any | null;
|
@@ -11326,6 +11673,7 @@ export type QueryOrganizationsQuery = {
|
|
11326
11673
|
name: string;
|
11327
11674
|
alternateNames?: Array<string | null> | null;
|
11328
11675
|
creationDate: any;
|
11676
|
+
thing?: string | null;
|
11329
11677
|
foundingDate?: any | null;
|
11330
11678
|
industries?: Array<string | null> | null;
|
11331
11679
|
revenue?: any | null;
|
@@ -11422,6 +11770,7 @@ export type GetPersonQuery = {
|
|
11422
11770
|
name: string;
|
11423
11771
|
alternateNames?: Array<string | null> | null;
|
11424
11772
|
creationDate: any;
|
11773
|
+
thing?: string | null;
|
11425
11774
|
email?: string | null;
|
11426
11775
|
givenName?: string | null;
|
11427
11776
|
familyName?: string | null;
|
@@ -11453,6 +11802,7 @@ export type QueryPersonsQuery = {
|
|
11453
11802
|
name: string;
|
11454
11803
|
alternateNames?: Array<string | null> | null;
|
11455
11804
|
creationDate: any;
|
11805
|
+
thing?: string | null;
|
11456
11806
|
email?: string | null;
|
11457
11807
|
givenName?: string | null;
|
11458
11808
|
familyName?: string | null;
|
@@ -11551,6 +11901,7 @@ export type GetPlaceQuery = {
|
|
11551
11901
|
name: string;
|
11552
11902
|
alternateNames?: Array<string | null> | null;
|
11553
11903
|
creationDate: any;
|
11904
|
+
thing?: string | null;
|
11554
11905
|
address?: {
|
11555
11906
|
__typename?: 'Address';
|
11556
11907
|
streetAddress?: string | null;
|
@@ -11574,6 +11925,7 @@ export type QueryPlacesQuery = {
|
|
11574
11925
|
name: string;
|
11575
11926
|
alternateNames?: Array<string | null> | null;
|
11576
11927
|
creationDate: any;
|
11928
|
+
thing?: string | null;
|
11577
11929
|
address?: {
|
11578
11930
|
__typename?: 'Address';
|
11579
11931
|
streetAddress?: string | null;
|
@@ -11664,6 +12016,7 @@ export type GetProductQuery = {
|
|
11664
12016
|
name: string;
|
11665
12017
|
alternateNames?: Array<string | null> | null;
|
11666
12018
|
creationDate: any;
|
12019
|
+
thing?: string | null;
|
11667
12020
|
manufacturer?: string | null;
|
11668
12021
|
model?: string | null;
|
11669
12022
|
brand?: string | null;
|
@@ -11694,6 +12047,7 @@ export type QueryProductsQuery = {
|
|
11694
12047
|
name: string;
|
11695
12048
|
alternateNames?: Array<string | null> | null;
|
11696
12049
|
creationDate: any;
|
12050
|
+
thing?: string | null;
|
11697
12051
|
manufacturer?: string | null;
|
11698
12052
|
model?: string | null;
|
11699
12053
|
brand?: string | null;
|
@@ -11958,6 +12312,7 @@ export type GetRepoQuery = {
|
|
11958
12312
|
name: string;
|
11959
12313
|
alternateNames?: Array<string | null> | null;
|
11960
12314
|
creationDate: any;
|
12315
|
+
thing?: string | null;
|
11961
12316
|
} | null;
|
11962
12317
|
};
|
11963
12318
|
export type QueryReposQueryVariables = Exact<{
|
@@ -11973,6 +12328,7 @@ export type QueryReposQuery = {
|
|
11973
12328
|
name: string;
|
11974
12329
|
alternateNames?: Array<string | null> | null;
|
11975
12330
|
creationDate: any;
|
12331
|
+
thing?: string | null;
|
11976
12332
|
} | null> | null;
|
11977
12333
|
} | null;
|
11978
12334
|
};
|
@@ -12055,6 +12411,7 @@ export type GetSoftwareQuery = {
|
|
12055
12411
|
name: string;
|
12056
12412
|
alternateNames?: Array<string | null> | null;
|
12057
12413
|
creationDate: any;
|
12414
|
+
thing?: string | null;
|
12058
12415
|
releaseDate?: any | null;
|
12059
12416
|
developer?: string | null;
|
12060
12417
|
} | null;
|
@@ -12072,6 +12429,7 @@ export type QuerySoftwaresQuery = {
|
|
12072
12429
|
name: string;
|
12073
12430
|
alternateNames?: Array<string | null> | null;
|
12074
12431
|
creationDate: any;
|
12432
|
+
thing?: string | null;
|
12075
12433
|
releaseDate?: any | null;
|
12076
12434
|
developer?: string | null;
|
12077
12435
|
} | null> | null;
|
@@ -12195,6 +12553,8 @@ export type GetSpecificationQuery = {
|
|
12195
12553
|
graphStrategy?: {
|
12196
12554
|
__typename?: 'GraphStrategy';
|
12197
12555
|
type: GraphStrategyTypes;
|
12556
|
+
generateGraph?: boolean | null;
|
12557
|
+
observableLimit?: number | null;
|
12198
12558
|
} | null;
|
12199
12559
|
revisionStrategy?: {
|
12200
12560
|
__typename?: 'RevisionStrategy';
|
@@ -12358,6 +12718,8 @@ export type QuerySpecificationsQuery = {
|
|
12358
12718
|
graphStrategy?: {
|
12359
12719
|
__typename?: 'GraphStrategy';
|
12360
12720
|
type: GraphStrategyTypes;
|
12721
|
+
generateGraph?: boolean | null;
|
12722
|
+
observableLimit?: number | null;
|
12361
12723
|
} | null;
|
12362
12724
|
revisionStrategy?: {
|
12363
12725
|
__typename?: 'RevisionStrategy';
|
@@ -12464,8 +12826,10 @@ export type CreateWorkflowMutation = {
|
|
12464
12826
|
__typename?: 'IngestionWorkflowStage';
|
12465
12827
|
if?: {
|
12466
12828
|
__typename?: 'IngestionContentFilter';
|
12467
|
-
types?: Array<ContentTypes
|
12468
|
-
fileTypes?: Array<FileTypes
|
12829
|
+
types?: Array<ContentTypes> | null;
|
12830
|
+
fileTypes?: Array<FileTypes> | null;
|
12831
|
+
allowedPaths?: Array<string> | null;
|
12832
|
+
excludedPaths?: Array<string> | null;
|
12469
12833
|
} | null;
|
12470
12834
|
collections?: Array<{
|
12471
12835
|
__typename?: 'EntityReference';
|
@@ -12556,6 +12920,8 @@ export type CreateWorkflowMutation = {
|
|
12556
12920
|
enableCrawling?: boolean | null;
|
12557
12921
|
allowedDomains?: Array<string> | null;
|
12558
12922
|
excludedDomains?: Array<string> | null;
|
12923
|
+
allowedPaths?: Array<string> | null;
|
12924
|
+
excludedPaths?: Array<string> | null;
|
12559
12925
|
allowedLinks?: Array<LinkTypes> | null;
|
12560
12926
|
excludedLinks?: Array<LinkTypes> | null;
|
12561
12927
|
allowedFiles?: Array<FileTypes> | null;
|
@@ -12642,8 +13008,10 @@ export type GetWorkflowQuery = {
|
|
12642
13008
|
__typename?: 'IngestionWorkflowStage';
|
12643
13009
|
if?: {
|
12644
13010
|
__typename?: 'IngestionContentFilter';
|
12645
|
-
types?: Array<ContentTypes
|
12646
|
-
fileTypes?: Array<FileTypes
|
13011
|
+
types?: Array<ContentTypes> | null;
|
13012
|
+
fileTypes?: Array<FileTypes> | null;
|
13013
|
+
allowedPaths?: Array<string> | null;
|
13014
|
+
excludedPaths?: Array<string> | null;
|
12647
13015
|
} | null;
|
12648
13016
|
collections?: Array<{
|
12649
13017
|
__typename?: 'EntityReference';
|
@@ -12734,6 +13102,8 @@ export type GetWorkflowQuery = {
|
|
12734
13102
|
enableCrawling?: boolean | null;
|
12735
13103
|
allowedDomains?: Array<string> | null;
|
12736
13104
|
excludedDomains?: Array<string> | null;
|
13105
|
+
allowedPaths?: Array<string> | null;
|
13106
|
+
excludedPaths?: Array<string> | null;
|
12737
13107
|
allowedLinks?: Array<LinkTypes> | null;
|
12738
13108
|
excludedLinks?: Array<LinkTypes> | null;
|
12739
13109
|
allowedFiles?: Array<FileTypes> | null;
|
@@ -12786,8 +13156,10 @@ export type QueryWorkflowsQuery = {
|
|
12786
13156
|
__typename?: 'IngestionWorkflowStage';
|
12787
13157
|
if?: {
|
12788
13158
|
__typename?: 'IngestionContentFilter';
|
12789
|
-
types?: Array<ContentTypes
|
12790
|
-
fileTypes?: Array<FileTypes
|
13159
|
+
types?: Array<ContentTypes> | null;
|
13160
|
+
fileTypes?: Array<FileTypes> | null;
|
13161
|
+
allowedPaths?: Array<string> | null;
|
13162
|
+
excludedPaths?: Array<string> | null;
|
12791
13163
|
} | null;
|
12792
13164
|
collections?: Array<{
|
12793
13165
|
__typename?: 'EntityReference';
|
@@ -12878,6 +13250,8 @@ export type QueryWorkflowsQuery = {
|
|
12878
13250
|
enableCrawling?: boolean | null;
|
12879
13251
|
allowedDomains?: Array<string> | null;
|
12880
13252
|
excludedDomains?: Array<string> | null;
|
13253
|
+
allowedPaths?: Array<string> | null;
|
13254
|
+
excludedPaths?: Array<string> | null;
|
12881
13255
|
allowedLinks?: Array<LinkTypes> | null;
|
12882
13256
|
excludedLinks?: Array<LinkTypes> | null;
|
12883
13257
|
allowedFiles?: Array<FileTypes> | null;
|
@@ -12924,8 +13298,10 @@ export type UpdateWorkflowMutation = {
|
|
12924
13298
|
__typename?: 'IngestionWorkflowStage';
|
12925
13299
|
if?: {
|
12926
13300
|
__typename?: 'IngestionContentFilter';
|
12927
|
-
types?: Array<ContentTypes
|
12928
|
-
fileTypes?: Array<FileTypes
|
13301
|
+
types?: Array<ContentTypes> | null;
|
13302
|
+
fileTypes?: Array<FileTypes> | null;
|
13303
|
+
allowedPaths?: Array<string> | null;
|
13304
|
+
excludedPaths?: Array<string> | null;
|
12929
13305
|
} | null;
|
12930
13306
|
collections?: Array<{
|
12931
13307
|
__typename?: 'EntityReference';
|
@@ -13016,6 +13392,8 @@ export type UpdateWorkflowMutation = {
|
|
13016
13392
|
enableCrawling?: boolean | null;
|
13017
13393
|
allowedDomains?: Array<string> | null;
|
13018
13394
|
excludedDomains?: Array<string> | null;
|
13395
|
+
allowedPaths?: Array<string> | null;
|
13396
|
+
excludedPaths?: Array<string> | null;
|
13019
13397
|
allowedLinks?: Array<LinkTypes> | null;
|
13020
13398
|
excludedLinks?: Array<LinkTypes> | null;
|
13021
13399
|
allowedFiles?: Array<FileTypes> | null;
|