graphlit-client 1.0.20240528001 → 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. */
|
@@ -1284,7 +1280,7 @@ export type ContentFilter = {
|
|
1284
1280
|
/** List of additional content filters using conjunctive conditions, i.e. 'and' semantics between each filter in list. */
|
1285
1281
|
and?: InputMaybe<Array<InputMaybe<ContentFilterLevel>>>;
|
1286
1282
|
/** Filter by geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
1287
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
1283
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
1288
1284
|
/** Filter by collections. */
|
1289
1285
|
collections?: InputMaybe<Array<EntityReferenceFilter>>;
|
1290
1286
|
/** Filter by similar contents. */
|
@@ -1766,6 +1762,67 @@ export declare enum DeepgramModels {
|
|
1766
1762
|
/** Whisper (Tiny) */
|
1767
1763
|
WhisperTiny = "WHISPER_TINY"
|
1768
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
|
+
}
|
1769
1826
|
/** Capture device type */
|
1770
1827
|
export declare enum DeviceTypes {
|
1771
1828
|
/** Digital Camera */
|
@@ -2186,7 +2243,7 @@ export type EntityExtractionConnector = {
|
|
2186
2243
|
azureText?: Maybe<AzureTextExtractionProperties>;
|
2187
2244
|
/** The content types to allow for entity extraction. */
|
2188
2245
|
contentTypes?: Maybe<Array<ContentTypes>>;
|
2189
|
-
/** 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. */
|
2190
2247
|
extractedCount?: Maybe<Scalars['Int']['output']>;
|
2191
2248
|
/** The observable entity types to be extracted, defaults to all observables. */
|
2192
2249
|
extractedTypes?: Maybe<Array<ObservableTypes>>;
|
@@ -2207,7 +2264,7 @@ export type EntityExtractionConnectorInput = {
|
|
2207
2264
|
azureText?: InputMaybe<AzureTextExtractionPropertiesInput>;
|
2208
2265
|
/** The content types to allow for entity extraction. */
|
2209
2266
|
contentTypes?: InputMaybe<Array<ContentTypes>>;
|
2210
|
-
/** 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. */
|
2211
2268
|
extractedCount?: InputMaybe<Scalars['Int']['input']>;
|
2212
2269
|
/** The observable entity types to be extracted, defaults to all observables. */
|
2213
2270
|
extractedTypes?: InputMaybe<Array<ObservableTypes>>;
|
@@ -2372,7 +2429,7 @@ export type Event = {
|
|
2372
2429
|
/** The event availability start date. */
|
2373
2430
|
availabilityStartDate?: Maybe<Scalars['DateTime']['output']>;
|
2374
2431
|
/** The geo-boundary of the event, as GeoJSON Feature with Polygon geometry. */
|
2375
|
-
boundary?: Maybe<Scalars['
|
2432
|
+
boundary?: Maybe<Scalars['String']['output']>;
|
2376
2433
|
/** The creation date of the event. */
|
2377
2434
|
creationDate: Scalars['DateTime']['output'];
|
2378
2435
|
/** The event description. */
|
@@ -2409,6 +2466,8 @@ export type Event = {
|
|
2409
2466
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
2410
2467
|
/** The state of the event (i.e. created, enabled). */
|
2411
2468
|
state: EntityState;
|
2469
|
+
/** The JSON-LD value of the event. */
|
2470
|
+
thing?: Maybe<Scalars['String']['output']>;
|
2412
2471
|
/** The event typical age range. */
|
2413
2472
|
typicalAgeRange?: Maybe<Scalars['String']['output']>;
|
2414
2473
|
/** The event URI. */
|
@@ -2451,7 +2510,7 @@ export type EventFilter = {
|
|
2451
2510
|
/** Filter by event availability start date range. */
|
2452
2511
|
availabilityStartDateRange?: InputMaybe<DateRangeFilter>;
|
2453
2512
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
2454
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
2513
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
2455
2514
|
/** Filter event(s) by their creation date range. */
|
2456
2515
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
2457
2516
|
/** The sort direction for query results. */
|
@@ -2500,7 +2559,7 @@ export type EventInput = {
|
|
2500
2559
|
/** The event availability start date. */
|
2501
2560
|
availabilityStartDate?: InputMaybe<Scalars['DateTime']['input']>;
|
2502
2561
|
/** The event geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
2503
|
-
boundary?: InputMaybe<Scalars['
|
2562
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
2504
2563
|
/** The event description. */
|
2505
2564
|
description?: InputMaybe<Scalars['String']['input']>;
|
2506
2565
|
/** The event end date. */
|
@@ -2547,7 +2606,7 @@ export type EventUpdateInput = {
|
|
2547
2606
|
/** The event availability start date. */
|
2548
2607
|
availabilityStartDate?: InputMaybe<Scalars['DateTime']['input']>;
|
2549
2608
|
/** The event geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
2550
|
-
boundary?: InputMaybe<Scalars['
|
2609
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
2551
2610
|
/** The event description. */
|
2552
2611
|
description?: InputMaybe<Scalars['String']['input']>;
|
2553
2612
|
/** The event end date. */
|
@@ -3124,25 +3183,37 @@ export type GraphNode = {
|
|
3124
3183
|
/** Represents a GraphRAG strategy. */
|
3125
3184
|
export type GraphStrategy = {
|
3126
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']>;
|
3127
3190
|
/** The GraphRAG strategy type. */
|
3128
3191
|
type: GraphStrategyTypes;
|
3129
3192
|
};
|
3130
3193
|
/** Represents a GraphRAG strategy. */
|
3131
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']>;
|
3132
3199
|
/** The GraphRAG strategy type. */
|
3133
3200
|
type?: InputMaybe<GraphStrategyTypes>;
|
3134
3201
|
};
|
3135
3202
|
/** GraphRAG strategies */
|
3136
3203
|
export declare enum GraphStrategyTypes {
|
3137
|
-
/** Extract named entities from prompt,
|
3204
|
+
/** Use GraphRAG. Extract named entities from prompt, assign as observations filter */
|
3138
3205
|
ExtractEntitiesFilter = "EXTRACT_ENTITIES_FILTER",
|
3139
|
-
/** Extract named entities from prompt,
|
3206
|
+
/** Use GraphRAG. Extract named entities from prompt, aggregate vector search and graph query results */
|
3140
3207
|
ExtractEntitiesGraph = "EXTRACT_ENTITIES_GRAPH",
|
3141
3208
|
/** Use standard RAG */
|
3142
3209
|
None = "NONE"
|
3143
3210
|
}
|
3144
3211
|
/** Represents a GraphRAG strategy. */
|
3145
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']>;
|
3146
3217
|
/** The GraphRAG strategy type. */
|
3147
3218
|
type?: InputMaybe<GraphStrategyTypes>;
|
3148
3219
|
};
|
@@ -4170,6 +4241,8 @@ export declare enum ModelServiceTypes {
|
|
4170
4241
|
AzureOpenAi = "AZURE_OPEN_AI",
|
4171
4242
|
/** Cohere */
|
4172
4243
|
Cohere = "COHERE",
|
4244
|
+
/** Deepseek */
|
4245
|
+
Deepseek = "DEEPSEEK",
|
4173
4246
|
/** Groq */
|
4174
4247
|
Groq = "GROQ",
|
4175
4248
|
/** Mistral */
|
@@ -4177,9 +4250,7 @@ export declare enum ModelServiceTypes {
|
|
4177
4250
|
/** OpenAI */
|
4178
4251
|
OpenAi = "OPEN_AI",
|
4179
4252
|
/** Replicate */
|
4180
|
-
Replicate = "REPLICATE"
|
4181
|
-
/** TogetherAI */
|
4182
|
-
TogetherAi = "TOGETHER_AI"
|
4253
|
+
Replicate = "REPLICATE"
|
4183
4254
|
}
|
4184
4255
|
/** Represents an LLM text entity extraction connector. */
|
4185
4256
|
export type ModelTextExtractionProperties = {
|
@@ -4824,6 +4895,7 @@ export type MutationSuggestConversationArgs = {
|
|
4824
4895
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4825
4896
|
count?: InputMaybe<Scalars['Int']['input']>;
|
4826
4897
|
id: Scalars['ID']['input'];
|
4898
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
4827
4899
|
};
|
4828
4900
|
export type MutationSummarizeContentsArgs = {
|
4829
4901
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -5301,7 +5373,7 @@ export type Organization = {
|
|
5301
5373
|
/** The alternate names of the organization. */
|
5302
5374
|
alternateNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
5303
5375
|
/** The geo-boundary of the organization, as GeoJSON Feature with Polygon geometry. */
|
5304
|
-
boundary?: Maybe<Scalars['
|
5376
|
+
boundary?: Maybe<Scalars['String']['output']>;
|
5305
5377
|
/** The creation date of the organization. */
|
5306
5378
|
creationDate: Scalars['DateTime']['output'];
|
5307
5379
|
/** The organization description. */
|
@@ -5336,6 +5408,8 @@ export type Organization = {
|
|
5336
5408
|
revenueCurrency?: Maybe<Scalars['String']['output']>;
|
5337
5409
|
/** The state of the organization (i.e. created, enabled). */
|
5338
5410
|
state: EntityState;
|
5411
|
+
/** The JSON-LD value of the organization. */
|
5412
|
+
thing?: Maybe<Scalars['String']['output']>;
|
5339
5413
|
/** The organization URI. */
|
5340
5414
|
uri?: Maybe<Scalars['URL']['output']>;
|
5341
5415
|
};
|
@@ -5372,7 +5446,7 @@ export type OrganizationFilter = {
|
|
5372
5446
|
/** Filter by observable physical address. */
|
5373
5447
|
address?: InputMaybe<AddressFilter>;
|
5374
5448
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
5375
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
5449
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
5376
5450
|
/** Filter organization(s) by their creation date range. */
|
5377
5451
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
5378
5452
|
/** The sort direction for query results. */
|
@@ -5401,7 +5475,7 @@ export type OrganizationInput = {
|
|
5401
5475
|
/** The physical address of the organization. */
|
5402
5476
|
address?: InputMaybe<AddressInput>;
|
5403
5477
|
/** The organization geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
5404
|
-
boundary?: InputMaybe<Scalars['
|
5478
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
5405
5479
|
/** The organization description. */
|
5406
5480
|
description?: InputMaybe<Scalars['String']['input']>;
|
5407
5481
|
/** The founding date of the organization. */
|
@@ -5440,7 +5514,7 @@ export type OrganizationUpdateInput = {
|
|
5440
5514
|
/** The physical address of the organization. */
|
5441
5515
|
address?: InputMaybe<AddressInput>;
|
5442
5516
|
/** The organization geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
5443
|
-
boundary?: InputMaybe<Scalars['
|
5517
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
5444
5518
|
/** The organization description. */
|
5445
5519
|
description?: InputMaybe<Scalars['String']['input']>;
|
5446
5520
|
/** The founding date of the organization. */
|
@@ -5524,7 +5598,7 @@ export type Person = {
|
|
5524
5598
|
/** The birth date of the person. */
|
5525
5599
|
birthDate?: Maybe<Scalars['Date']['output']>;
|
5526
5600
|
/** The geo-boundary of the person, as GeoJSON Feature with Polygon geometry. */
|
5527
|
-
boundary?: Maybe<Scalars['
|
5601
|
+
boundary?: Maybe<Scalars['String']['output']>;
|
5528
5602
|
/** The creation date of the person. */
|
5529
5603
|
creationDate: Scalars['DateTime']['output'];
|
5530
5604
|
/** The person description. */
|
@@ -5559,6 +5633,8 @@ export type Person = {
|
|
5559
5633
|
phoneNumber?: Maybe<Scalars['String']['output']>;
|
5560
5634
|
/** The state of the person (i.e. created, enabled). */
|
5561
5635
|
state: EntityState;
|
5636
|
+
/** The JSON-LD value of the person. */
|
5637
|
+
thing?: Maybe<Scalars['String']['output']>;
|
5562
5638
|
/** The job title of the person. */
|
5563
5639
|
title?: Maybe<Scalars['String']['output']>;
|
5564
5640
|
/** The person URI. */
|
@@ -5597,7 +5673,7 @@ export type PersonFilter = {
|
|
5597
5673
|
/** Filter by observable physical address. */
|
5598
5674
|
address?: InputMaybe<AddressFilter>;
|
5599
5675
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
5600
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
5676
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
5601
5677
|
/** Filter person(s) by their creation date range. */
|
5602
5678
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
5603
5679
|
/** The sort direction for query results. */
|
@@ -5636,7 +5712,7 @@ export type PersonInput = {
|
|
5636
5712
|
/** The birth date of the person. */
|
5637
5713
|
birthDate?: InputMaybe<Scalars['Date']['input']>;
|
5638
5714
|
/** The person geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
5639
|
-
boundary?: InputMaybe<Scalars['
|
5715
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
5640
5716
|
/** The person description. */
|
5641
5717
|
description?: InputMaybe<Scalars['String']['input']>;
|
5642
5718
|
/** The education of the person. */
|
@@ -5691,7 +5767,7 @@ export type PersonUpdateInput = {
|
|
5691
5767
|
/** The birth date of the person. */
|
5692
5768
|
birthDate?: InputMaybe<Scalars['Date']['input']>;
|
5693
5769
|
/** The person geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
5694
|
-
boundary?: InputMaybe<Scalars['
|
5770
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
5695
5771
|
/** The person description. */
|
5696
5772
|
description?: InputMaybe<Scalars['String']['input']>;
|
5697
5773
|
/** The education of the person. */
|
@@ -5727,7 +5803,7 @@ export type Place = {
|
|
5727
5803
|
/** The alternate names of the place. */
|
5728
5804
|
alternateNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
5729
5805
|
/** The geo-boundary of the place, as GeoJSON Feature with Polygon geometry. */
|
5730
|
-
boundary?: Maybe<Scalars['
|
5806
|
+
boundary?: Maybe<Scalars['String']['output']>;
|
5731
5807
|
/** The creation date of the place. */
|
5732
5808
|
creationDate: Scalars['DateTime']['output'];
|
5733
5809
|
/** The place description. */
|
@@ -5750,6 +5826,8 @@ export type Place = {
|
|
5750
5826
|
name: Scalars['String']['output'];
|
5751
5827
|
/** The state of the place (i.e. created, enabled). */
|
5752
5828
|
state: EntityState;
|
5829
|
+
/** The JSON-LD value of the place. */
|
5830
|
+
thing?: Maybe<Scalars['String']['output']>;
|
5753
5831
|
/** The place URI. */
|
5754
5832
|
uri?: Maybe<Scalars['URL']['output']>;
|
5755
5833
|
};
|
@@ -5786,7 +5864,7 @@ export type PlaceFilter = {
|
|
5786
5864
|
/** Filter by observable physical address. */
|
5787
5865
|
address?: InputMaybe<AddressFilter>;
|
5788
5866
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
5789
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
5867
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
5790
5868
|
/** Filter place(s) by their creation date range. */
|
5791
5869
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
5792
5870
|
/** The sort direction for query results. */
|
@@ -5815,7 +5893,7 @@ export type PlaceInput = {
|
|
5815
5893
|
/** The physical address of the place. */
|
5816
5894
|
address?: InputMaybe<AddressInput>;
|
5817
5895
|
/** The place geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
5818
|
-
boundary?: InputMaybe<Scalars['
|
5896
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
5819
5897
|
/** The place description. */
|
5820
5898
|
description?: InputMaybe<Scalars['String']['input']>;
|
5821
5899
|
/** The place external identifier. */
|
@@ -5842,7 +5920,7 @@ export type PlaceUpdateInput = {
|
|
5842
5920
|
/** The physical address of the place. */
|
5843
5921
|
address?: InputMaybe<AddressInput>;
|
5844
5922
|
/** The place geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
5845
|
-
boundary?: InputMaybe<Scalars['
|
5923
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
5846
5924
|
/** The place description. */
|
5847
5925
|
description?: InputMaybe<Scalars['String']['input']>;
|
5848
5926
|
/** The ID of the place to update. */
|
@@ -5956,7 +6034,7 @@ export type Product = {
|
|
5956
6034
|
/** The alternate names of the product. */
|
5957
6035
|
alternateNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
5958
6036
|
/** The geo-boundary of the product, as GeoJSON Feature with Polygon geometry. */
|
5959
|
-
boundary?: Maybe<Scalars['
|
6037
|
+
boundary?: Maybe<Scalars['String']['output']>;
|
5960
6038
|
/** The product brand. */
|
5961
6039
|
brand?: Maybe<Scalars['String']['output']>;
|
5962
6040
|
/** The creation date of the product. */
|
@@ -5991,6 +6069,8 @@ export type Product = {
|
|
5991
6069
|
sku?: Maybe<Scalars['String']['output']>;
|
5992
6070
|
/** The state of the product (i.e. created, enabled). */
|
5993
6071
|
state: EntityState;
|
6072
|
+
/** The JSON-LD value of the product. */
|
6073
|
+
thing?: Maybe<Scalars['String']['output']>;
|
5994
6074
|
/** The product UPC. */
|
5995
6075
|
upc?: Maybe<Scalars['String']['output']>;
|
5996
6076
|
/** The product URI. */
|
@@ -6029,7 +6109,7 @@ export type ProductFilter = {
|
|
6029
6109
|
/** Filter by observable physical address. */
|
6030
6110
|
address?: InputMaybe<AddressFilter>;
|
6031
6111
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
6032
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
6112
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
6033
6113
|
/** Filter by product brand. */
|
6034
6114
|
brand?: InputMaybe<Scalars['String']['input']>;
|
6035
6115
|
/** Filter product(s) by their creation date range. */
|
@@ -6072,7 +6152,7 @@ export type ProductInput = {
|
|
6072
6152
|
/** The physical address of the product. */
|
6073
6153
|
address?: InputMaybe<AddressInput>;
|
6074
6154
|
/** The product geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
6075
|
-
boundary?: InputMaybe<Scalars['
|
6155
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
6076
6156
|
/** The product brand. */
|
6077
6157
|
brand?: InputMaybe<Scalars['String']['input']>;
|
6078
6158
|
/** The product description. */
|
@@ -6111,7 +6191,7 @@ export type ProductUpdateInput = {
|
|
6111
6191
|
/** The physical address of the product. */
|
6112
6192
|
address?: InputMaybe<AddressInput>;
|
6113
6193
|
/** The product geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
6114
|
-
boundary?: InputMaybe<Scalars['
|
6194
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
6115
6195
|
/** The product brand. */
|
6116
6196
|
brand?: InputMaybe<Scalars['String']['input']>;
|
6117
6197
|
/** The product description. */
|
@@ -6491,11 +6571,7 @@ export declare enum PromptStrategyTypes {
|
|
6491
6571
|
/** Convert prompt to keywords to optimize semantic search */
|
6492
6572
|
OptimizeSearch = "OPTIMIZE_SEARCH",
|
6493
6573
|
/** Rewrite prompt */
|
6494
|
-
Rewrite = "REWRITE"
|
6495
|
-
/** Rewrite prompt as multiple sub-prompts */
|
6496
|
-
RewriteMultiple = "REWRITE_MULTIPLE",
|
6497
|
-
/** Rewrite prompt as question requiring detailed response with example */
|
6498
|
-
RewriteQuestion = "REWRITE_QUESTION"
|
6574
|
+
Rewrite = "REWRITE"
|
6499
6575
|
}
|
6500
6576
|
/** Represents a prompt strategy. */
|
6501
6577
|
export type PromptStrategyUpdateInput = {
|
@@ -7104,6 +7180,8 @@ export type Repo = {
|
|
7104
7180
|
name: Scalars['String']['output'];
|
7105
7181
|
/** The state of the repo (i.e. created, enabled). */
|
7106
7182
|
state: EntityState;
|
7183
|
+
/** The JSON-LD value of the repo. */
|
7184
|
+
thing?: Maybe<Scalars['String']['output']>;
|
7107
7185
|
/** The repo URI. */
|
7108
7186
|
uri?: Maybe<Scalars['URL']['output']>;
|
7109
7187
|
};
|
@@ -7140,7 +7218,7 @@ export type RepoFilter = {
|
|
7140
7218
|
/** Filter by observable physical address. */
|
7141
7219
|
address?: InputMaybe<AddressFilter>;
|
7142
7220
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
7143
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
7221
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
7144
7222
|
/** Filter repo(s) by their creation date range. */
|
7145
7223
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
7146
7224
|
/** The sort direction for query results. */
|
@@ -7602,6 +7680,8 @@ export type Software = {
|
|
7602
7680
|
releaseDate?: Maybe<Scalars['DateTime']['output']>;
|
7603
7681
|
/** The state of the software (i.e. created, enabled). */
|
7604
7682
|
state: EntityState;
|
7683
|
+
/** The JSON-LD value of the software. */
|
7684
|
+
thing?: Maybe<Scalars['String']['output']>;
|
7605
7685
|
/** The software URI. */
|
7606
7686
|
uri?: Maybe<Scalars['URL']['output']>;
|
7607
7687
|
};
|
@@ -7638,7 +7718,7 @@ export type SoftwareFilter = {
|
|
7638
7718
|
/** Filter by observable physical address. */
|
7639
7719
|
address?: InputMaybe<AddressFilter>;
|
7640
7720
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
7641
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
7721
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
7642
7722
|
/** Filter software(s) by their creation date range. */
|
7643
7723
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
7644
7724
|
/** The sort direction for query results. */
|
@@ -7717,6 +7797,8 @@ export type Specification = {
|
|
7717
7797
|
customGuidance?: Maybe<Scalars['String']['output']>;
|
7718
7798
|
/** Custom instructions which are injected into the LLM conversation prompt. */
|
7719
7799
|
customInstructions?: Maybe<Scalars['String']['output']>;
|
7800
|
+
/** The Deepseek model properties. */
|
7801
|
+
deepseek?: Maybe<DeepseekModelProperties>;
|
7720
7802
|
/** The strategy for GraphRAG retrieval. */
|
7721
7803
|
graphStrategy?: Maybe<GraphStrategy>;
|
7722
7804
|
/** The Groq model properties. */
|
@@ -7797,6 +7879,8 @@ export type SpecificationInput = {
|
|
7797
7879
|
customGuidance?: InputMaybe<Scalars['String']['input']>;
|
7798
7880
|
/** Custom instructions which are injected into the LLM conversation prompt. */
|
7799
7881
|
customInstructions?: InputMaybe<Scalars['String']['input']>;
|
7882
|
+
/** The Deepseek model properties. */
|
7883
|
+
deepseek?: InputMaybe<DeepseekModelPropertiesInput>;
|
7800
7884
|
/** The strategy for GraphRAG retrieval. */
|
7801
7885
|
graphStrategy?: InputMaybe<GraphStrategyInput>;
|
7802
7886
|
/** The Groq model properties. */
|
@@ -7857,6 +7941,8 @@ export type SpecificationUpdateInput = {
|
|
7857
7941
|
customGuidance?: InputMaybe<Scalars['String']['input']>;
|
7858
7942
|
/** Custom instructions which are injected into the LLM conversation prompt. */
|
7859
7943
|
customInstructions?: InputMaybe<Scalars['String']['input']>;
|
7944
|
+
/** The Deepseek model properties. */
|
7945
|
+
deepseek?: InputMaybe<DeepseekModelPropertiesUpdateInput>;
|
7860
7946
|
/** The strategy for GraphRAG retrieval. */
|
7861
7947
|
graphStrategy?: InputMaybe<GraphStrategyUpdateInput>;
|
7862
7948
|
/** The Groq model properties. */
|
@@ -8001,6 +8087,8 @@ export type TextPage = {
|
|
8001
8087
|
chunks?: Maybe<Array<Maybe<TextChunk>>>;
|
8002
8088
|
/** The text page index. */
|
8003
8089
|
index?: Maybe<Scalars['Int']['output']>;
|
8090
|
+
/** The text page hyperlinks. */
|
8091
|
+
links?: Maybe<Array<Maybe<LinkReferenceType>>>;
|
8004
8092
|
/** The relevance score of the text page. */
|
8005
8093
|
relevance?: Maybe<Scalars['Float']['output']>;
|
8006
8094
|
/** The text page. */
|
@@ -8563,6 +8651,54 @@ export type GetAlertQuery = {
|
|
8563
8651
|
id: string;
|
8564
8652
|
};
|
8565
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;
|
8566
8702
|
} | null;
|
8567
8703
|
integration: {
|
8568
8704
|
__typename?: 'IntegrationConnector';
|
@@ -8654,6 +8790,54 @@ export type QueryAlertsQuery = {
|
|
8654
8790
|
id: string;
|
8655
8791
|
};
|
8656
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;
|
8657
8841
|
} | null;
|
8658
8842
|
integration: {
|
8659
8843
|
__typename?: 'IntegrationConnector';
|
@@ -10240,6 +10424,54 @@ export type GetConversationQuery = {
|
|
10240
10424
|
id: string;
|
10241
10425
|
};
|
10242
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;
|
10243
10475
|
} | null;
|
10244
10476
|
} | null;
|
10245
10477
|
};
|
@@ -10452,6 +10684,54 @@ export type QueryConversationsQuery = {
|
|
10452
10684
|
id: string;
|
10453
10685
|
};
|
10454
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;
|
10455
10735
|
} | null;
|
10456
10736
|
} | null> | null;
|
10457
10737
|
} | null;
|
@@ -10459,6 +10739,7 @@ export type QueryConversationsQuery = {
|
|
10459
10739
|
export type SuggestConversationMutationVariables = Exact<{
|
10460
10740
|
id: Scalars['ID']['input'];
|
10461
10741
|
count?: InputMaybe<Scalars['Int']['input']>;
|
10742
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
10462
10743
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10463
10744
|
}>;
|
10464
10745
|
export type SuggestConversationMutation = {
|
@@ -10549,6 +10830,7 @@ export type GetEventQuery = {
|
|
10549
10830
|
name: string;
|
10550
10831
|
alternateNames?: Array<string | null> | null;
|
10551
10832
|
creationDate: any;
|
10833
|
+
thing?: string | null;
|
10552
10834
|
startDate?: any | null;
|
10553
10835
|
endDate?: any | null;
|
10554
10836
|
availabilityStartDate?: any | null;
|
@@ -10582,6 +10864,7 @@ export type QueryEventsQuery = {
|
|
10582
10864
|
name: string;
|
10583
10865
|
alternateNames?: Array<string | null> | null;
|
10584
10866
|
creationDate: any;
|
10867
|
+
thing?: string | null;
|
10585
10868
|
startDate?: any | null;
|
10586
10869
|
endDate?: any | null;
|
10587
10870
|
availabilityStartDate?: any | null;
|
@@ -10820,6 +11103,8 @@ export type GetFeedQuery = {
|
|
10820
11103
|
readLimit?: number | null;
|
10821
11104
|
uri: any;
|
10822
11105
|
includeFiles?: boolean | null;
|
11106
|
+
allowedPaths?: Array<string> | null;
|
11107
|
+
excludedPaths?: Array<string> | null;
|
10823
11108
|
} | null;
|
10824
11109
|
reddit?: {
|
10825
11110
|
__typename?: 'RedditFeedProperties';
|
@@ -11016,6 +11301,8 @@ export type QueryFeedsQuery = {
|
|
11016
11301
|
readLimit?: number | null;
|
11017
11302
|
uri: any;
|
11018
11303
|
includeFiles?: boolean | null;
|
11304
|
+
allowedPaths?: Array<string> | null;
|
11305
|
+
excludedPaths?: Array<string> | null;
|
11019
11306
|
} | null;
|
11020
11307
|
reddit?: {
|
11021
11308
|
__typename?: 'RedditFeedProperties';
|
@@ -11356,6 +11643,7 @@ export type GetOrganizationQuery = {
|
|
11356
11643
|
name: string;
|
11357
11644
|
alternateNames?: Array<string | null> | null;
|
11358
11645
|
creationDate: any;
|
11646
|
+
thing?: string | null;
|
11359
11647
|
foundingDate?: any | null;
|
11360
11648
|
industries?: Array<string | null> | null;
|
11361
11649
|
revenue?: any | null;
|
@@ -11385,6 +11673,7 @@ export type QueryOrganizationsQuery = {
|
|
11385
11673
|
name: string;
|
11386
11674
|
alternateNames?: Array<string | null> | null;
|
11387
11675
|
creationDate: any;
|
11676
|
+
thing?: string | null;
|
11388
11677
|
foundingDate?: any | null;
|
11389
11678
|
industries?: Array<string | null> | null;
|
11390
11679
|
revenue?: any | null;
|
@@ -11481,6 +11770,7 @@ export type GetPersonQuery = {
|
|
11481
11770
|
name: string;
|
11482
11771
|
alternateNames?: Array<string | null> | null;
|
11483
11772
|
creationDate: any;
|
11773
|
+
thing?: string | null;
|
11484
11774
|
email?: string | null;
|
11485
11775
|
givenName?: string | null;
|
11486
11776
|
familyName?: string | null;
|
@@ -11512,6 +11802,7 @@ export type QueryPersonsQuery = {
|
|
11512
11802
|
name: string;
|
11513
11803
|
alternateNames?: Array<string | null> | null;
|
11514
11804
|
creationDate: any;
|
11805
|
+
thing?: string | null;
|
11515
11806
|
email?: string | null;
|
11516
11807
|
givenName?: string | null;
|
11517
11808
|
familyName?: string | null;
|
@@ -11610,6 +11901,7 @@ export type GetPlaceQuery = {
|
|
11610
11901
|
name: string;
|
11611
11902
|
alternateNames?: Array<string | null> | null;
|
11612
11903
|
creationDate: any;
|
11904
|
+
thing?: string | null;
|
11613
11905
|
address?: {
|
11614
11906
|
__typename?: 'Address';
|
11615
11907
|
streetAddress?: string | null;
|
@@ -11633,6 +11925,7 @@ export type QueryPlacesQuery = {
|
|
11633
11925
|
name: string;
|
11634
11926
|
alternateNames?: Array<string | null> | null;
|
11635
11927
|
creationDate: any;
|
11928
|
+
thing?: string | null;
|
11636
11929
|
address?: {
|
11637
11930
|
__typename?: 'Address';
|
11638
11931
|
streetAddress?: string | null;
|
@@ -11723,6 +12016,7 @@ export type GetProductQuery = {
|
|
11723
12016
|
name: string;
|
11724
12017
|
alternateNames?: Array<string | null> | null;
|
11725
12018
|
creationDate: any;
|
12019
|
+
thing?: string | null;
|
11726
12020
|
manufacturer?: string | null;
|
11727
12021
|
model?: string | null;
|
11728
12022
|
brand?: string | null;
|
@@ -11753,6 +12047,7 @@ export type QueryProductsQuery = {
|
|
11753
12047
|
name: string;
|
11754
12048
|
alternateNames?: Array<string | null> | null;
|
11755
12049
|
creationDate: any;
|
12050
|
+
thing?: string | null;
|
11756
12051
|
manufacturer?: string | null;
|
11757
12052
|
model?: string | null;
|
11758
12053
|
brand?: string | null;
|
@@ -12017,6 +12312,7 @@ export type GetRepoQuery = {
|
|
12017
12312
|
name: string;
|
12018
12313
|
alternateNames?: Array<string | null> | null;
|
12019
12314
|
creationDate: any;
|
12315
|
+
thing?: string | null;
|
12020
12316
|
} | null;
|
12021
12317
|
};
|
12022
12318
|
export type QueryReposQueryVariables = Exact<{
|
@@ -12032,6 +12328,7 @@ export type QueryReposQuery = {
|
|
12032
12328
|
name: string;
|
12033
12329
|
alternateNames?: Array<string | null> | null;
|
12034
12330
|
creationDate: any;
|
12331
|
+
thing?: string | null;
|
12035
12332
|
} | null> | null;
|
12036
12333
|
} | null;
|
12037
12334
|
};
|
@@ -12114,6 +12411,7 @@ export type GetSoftwareQuery = {
|
|
12114
12411
|
name: string;
|
12115
12412
|
alternateNames?: Array<string | null> | null;
|
12116
12413
|
creationDate: any;
|
12414
|
+
thing?: string | null;
|
12117
12415
|
releaseDate?: any | null;
|
12118
12416
|
developer?: string | null;
|
12119
12417
|
} | null;
|
@@ -12131,6 +12429,7 @@ export type QuerySoftwaresQuery = {
|
|
12131
12429
|
name: string;
|
12132
12430
|
alternateNames?: Array<string | null> | null;
|
12133
12431
|
creationDate: any;
|
12432
|
+
thing?: string | null;
|
12134
12433
|
releaseDate?: any | null;
|
12135
12434
|
developer?: string | null;
|
12136
12435
|
} | null> | null;
|
@@ -12254,6 +12553,8 @@ export type GetSpecificationQuery = {
|
|
12254
12553
|
graphStrategy?: {
|
12255
12554
|
__typename?: 'GraphStrategy';
|
12256
12555
|
type: GraphStrategyTypes;
|
12556
|
+
generateGraph?: boolean | null;
|
12557
|
+
observableLimit?: number | null;
|
12257
12558
|
} | null;
|
12258
12559
|
revisionStrategy?: {
|
12259
12560
|
__typename?: 'RevisionStrategy';
|
@@ -12417,6 +12718,8 @@ export type QuerySpecificationsQuery = {
|
|
12417
12718
|
graphStrategy?: {
|
12418
12719
|
__typename?: 'GraphStrategy';
|
12419
12720
|
type: GraphStrategyTypes;
|
12721
|
+
generateGraph?: boolean | null;
|
12722
|
+
observableLimit?: number | null;
|
12420
12723
|
} | null;
|
12421
12724
|
revisionStrategy?: {
|
12422
12725
|
__typename?: 'RevisionStrategy';
|
@@ -12525,6 +12828,8 @@ export type CreateWorkflowMutation = {
|
|
12525
12828
|
__typename?: 'IngestionContentFilter';
|
12526
12829
|
types?: Array<ContentTypes> | null;
|
12527
12830
|
fileTypes?: Array<FileTypes> | null;
|
12831
|
+
allowedPaths?: Array<string> | null;
|
12832
|
+
excludedPaths?: Array<string> | null;
|
12528
12833
|
} | null;
|
12529
12834
|
collections?: Array<{
|
12530
12835
|
__typename?: 'EntityReference';
|
@@ -12615,6 +12920,8 @@ export type CreateWorkflowMutation = {
|
|
12615
12920
|
enableCrawling?: boolean | null;
|
12616
12921
|
allowedDomains?: Array<string> | null;
|
12617
12922
|
excludedDomains?: Array<string> | null;
|
12923
|
+
allowedPaths?: Array<string> | null;
|
12924
|
+
excludedPaths?: Array<string> | null;
|
12618
12925
|
allowedLinks?: Array<LinkTypes> | null;
|
12619
12926
|
excludedLinks?: Array<LinkTypes> | null;
|
12620
12927
|
allowedFiles?: Array<FileTypes> | null;
|
@@ -12703,6 +13010,8 @@ export type GetWorkflowQuery = {
|
|
12703
13010
|
__typename?: 'IngestionContentFilter';
|
12704
13011
|
types?: Array<ContentTypes> | null;
|
12705
13012
|
fileTypes?: Array<FileTypes> | null;
|
13013
|
+
allowedPaths?: Array<string> | null;
|
13014
|
+
excludedPaths?: Array<string> | null;
|
12706
13015
|
} | null;
|
12707
13016
|
collections?: Array<{
|
12708
13017
|
__typename?: 'EntityReference';
|
@@ -12793,6 +13102,8 @@ export type GetWorkflowQuery = {
|
|
12793
13102
|
enableCrawling?: boolean | null;
|
12794
13103
|
allowedDomains?: Array<string> | null;
|
12795
13104
|
excludedDomains?: Array<string> | null;
|
13105
|
+
allowedPaths?: Array<string> | null;
|
13106
|
+
excludedPaths?: Array<string> | null;
|
12796
13107
|
allowedLinks?: Array<LinkTypes> | null;
|
12797
13108
|
excludedLinks?: Array<LinkTypes> | null;
|
12798
13109
|
allowedFiles?: Array<FileTypes> | null;
|
@@ -12847,6 +13158,8 @@ export type QueryWorkflowsQuery = {
|
|
12847
13158
|
__typename?: 'IngestionContentFilter';
|
12848
13159
|
types?: Array<ContentTypes> | null;
|
12849
13160
|
fileTypes?: Array<FileTypes> | null;
|
13161
|
+
allowedPaths?: Array<string> | null;
|
13162
|
+
excludedPaths?: Array<string> | null;
|
12850
13163
|
} | null;
|
12851
13164
|
collections?: Array<{
|
12852
13165
|
__typename?: 'EntityReference';
|
@@ -12937,6 +13250,8 @@ export type QueryWorkflowsQuery = {
|
|
12937
13250
|
enableCrawling?: boolean | null;
|
12938
13251
|
allowedDomains?: Array<string> | null;
|
12939
13252
|
excludedDomains?: Array<string> | null;
|
13253
|
+
allowedPaths?: Array<string> | null;
|
13254
|
+
excludedPaths?: Array<string> | null;
|
12940
13255
|
allowedLinks?: Array<LinkTypes> | null;
|
12941
13256
|
excludedLinks?: Array<LinkTypes> | null;
|
12942
13257
|
allowedFiles?: Array<FileTypes> | null;
|
@@ -12985,6 +13300,8 @@ export type UpdateWorkflowMutation = {
|
|
12985
13300
|
__typename?: 'IngestionContentFilter';
|
12986
13301
|
types?: Array<ContentTypes> | null;
|
12987
13302
|
fileTypes?: Array<FileTypes> | null;
|
13303
|
+
allowedPaths?: Array<string> | null;
|
13304
|
+
excludedPaths?: Array<string> | null;
|
12988
13305
|
} | null;
|
12989
13306
|
collections?: Array<{
|
12990
13307
|
__typename?: 'EntityReference';
|
@@ -13075,6 +13392,8 @@ export type UpdateWorkflowMutation = {
|
|
13075
13392
|
enableCrawling?: boolean | null;
|
13076
13393
|
allowedDomains?: Array<string> | null;
|
13077
13394
|
excludedDomains?: Array<string> | null;
|
13395
|
+
allowedPaths?: Array<string> | null;
|
13396
|
+
excludedPaths?: Array<string> | null;
|
13078
13397
|
allowedLinks?: Array<LinkTypes> | null;
|
13079
13398
|
excludedLinks?: Array<LinkTypes> | null;
|
13080
13399
|
allowedFiles?: Array<FileTypes> | null;
|