graphlit-client 1.0.20240528001 → 1.0.20240621001
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;
|
@@ -363,6 +359,8 @@ export declare enum AnthropicModels {
|
|
363
359
|
Claude_2_0 = "CLAUDE_2_0",
|
364
360
|
/** Claude 2.1 */
|
365
361
|
Claude_2_1 = "CLAUDE_2_1",
|
362
|
+
/** Claude 3.5 Sonnet (Latest) */
|
363
|
+
Claude_3_5Sonnet = "CLAUDE_3_5_SONNET",
|
366
364
|
/** Claude 3 Haiku (Latest) */
|
367
365
|
Claude_3Haiku = "CLAUDE_3_HAIKU",
|
368
366
|
/** Claude 3 Opus (Latest) */
|
@@ -889,11 +887,7 @@ export declare enum CohereModels {
|
|
889
887
|
/** Command R+ */
|
890
888
|
CommandRPlus = "COMMAND_R_PLUS",
|
891
889
|
/** Developer-specified model */
|
892
|
-
Custom = "CUSTOM"
|
893
|
-
/** Embed English 3.0 */
|
894
|
-
EmbedEnglish_3_0 = "EMBED_ENGLISH_3_0",
|
895
|
-
/** Embed Multilingual 3.0 */
|
896
|
-
EmbedMultilingual_3_0 = "EMBED_MULTILINGUAL_3_0"
|
890
|
+
Custom = "CUSTOM"
|
897
891
|
}
|
898
892
|
/** Represents a collection. */
|
899
893
|
export type Collection = {
|
@@ -987,7 +981,7 @@ export type Content = {
|
|
987
981
|
/** The audio mezzanine rendition URI of the content. For audio and video files, this will reference an intermediate MP3 rendition of the content. */
|
988
982
|
audioUri?: Maybe<Scalars['URL']['output']>;
|
989
983
|
/** The geo-boundary of the content, as GeoJSON Feature with Polygon geometry. */
|
990
|
-
boundary?: Maybe<Scalars['
|
984
|
+
boundary?: Maybe<Scalars['String']['output']>;
|
991
985
|
/** The summarized content bullet points. */
|
992
986
|
bullets?: Maybe<Array<Scalars['String']['output']>>;
|
993
987
|
/** The C4ID hash of the content. */
|
@@ -1284,7 +1278,7 @@ export type ContentFilter = {
|
|
1284
1278
|
/** List of additional content filters using conjunctive conditions, i.e. 'and' semantics between each filter in list. */
|
1285
1279
|
and?: InputMaybe<Array<InputMaybe<ContentFilterLevel>>>;
|
1286
1280
|
/** Filter by geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
1287
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
1281
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
1288
1282
|
/** Filter by collections. */
|
1289
1283
|
collections?: InputMaybe<Array<EntityReferenceFilter>>;
|
1290
1284
|
/** Filter by similar contents. */
|
@@ -1766,6 +1760,67 @@ export declare enum DeepgramModels {
|
|
1766
1760
|
/** Whisper (Tiny) */
|
1767
1761
|
WhisperTiny = "WHISPER_TINY"
|
1768
1762
|
}
|
1763
|
+
/** Represents Deepseek model properties. */
|
1764
|
+
export type DeepseekModelProperties = {
|
1765
|
+
__typename?: 'DeepseekModelProperties';
|
1766
|
+
/** The limit of tokens generated by prompt completion. */
|
1767
|
+
completionTokenLimit?: Maybe<Scalars['Int']['output']>;
|
1768
|
+
/** The Deepseek API key, if using developer's own account. */
|
1769
|
+
key?: Maybe<Scalars['String']['output']>;
|
1770
|
+
/** The Deepseek model, or custom, when using developer's own account. */
|
1771
|
+
model: DeepseekModels;
|
1772
|
+
/** The Deepseek model name, if using developer's own account. */
|
1773
|
+
modelName?: Maybe<Scalars['String']['output']>;
|
1774
|
+
/** The model token probability. */
|
1775
|
+
probability?: Maybe<Scalars['Float']['output']>;
|
1776
|
+
/** The model temperature. */
|
1777
|
+
temperature?: Maybe<Scalars['Float']['output']>;
|
1778
|
+
/** The number of tokens which can provided to the Deepseek model, if using developer's own account. */
|
1779
|
+
tokenLimit?: Maybe<Scalars['Int']['output']>;
|
1780
|
+
};
|
1781
|
+
/** Represents Deepseek model properties. */
|
1782
|
+
export type DeepseekModelPropertiesInput = {
|
1783
|
+
/** The limit of tokens generated by prompt completion. */
|
1784
|
+
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
1785
|
+
/** The Deepseek API key, if using developer's own account. */
|
1786
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
1787
|
+
/** The Deepseek model, or custom, when using developer's own account. */
|
1788
|
+
model: DeepseekModels;
|
1789
|
+
/** The Deepseek model name, if using developer's own account. */
|
1790
|
+
modelName?: InputMaybe<Scalars['String']['input']>;
|
1791
|
+
/** The model token probability. */
|
1792
|
+
probability?: InputMaybe<Scalars['Float']['input']>;
|
1793
|
+
/** The model temperature. */
|
1794
|
+
temperature?: InputMaybe<Scalars['Float']['input']>;
|
1795
|
+
/** The number of tokens which can provided to the Deepseek model, if using developer's own account. */
|
1796
|
+
tokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
1797
|
+
};
|
1798
|
+
/** Represents Deepseek model properties. */
|
1799
|
+
export type DeepseekModelPropertiesUpdateInput = {
|
1800
|
+
/** The limit of tokens generated by prompt completion. */
|
1801
|
+
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
1802
|
+
/** The Deepseek API key, if using developer's own account. */
|
1803
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
1804
|
+
/** The Deepseek model, or custom, when using developer's own account. */
|
1805
|
+
model: DeepseekModels;
|
1806
|
+
/** The Deepseek model name, if using developer's own account. */
|
1807
|
+
modelName?: InputMaybe<Scalars['String']['input']>;
|
1808
|
+
/** The model token probability. */
|
1809
|
+
probability?: InputMaybe<Scalars['Float']['input']>;
|
1810
|
+
/** The model temperature. */
|
1811
|
+
temperature?: InputMaybe<Scalars['Float']['input']>;
|
1812
|
+
/** The number of tokens which can provided to the Deepseek model, if using developer's own account. */
|
1813
|
+
tokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
1814
|
+
};
|
1815
|
+
/** Deepseek model type */
|
1816
|
+
export declare enum DeepseekModels {
|
1817
|
+
/** Deepseek Chat */
|
1818
|
+
Chat = "CHAT",
|
1819
|
+
/** Deepseek Coder */
|
1820
|
+
Coder = "CODER",
|
1821
|
+
/** Developer-specified model */
|
1822
|
+
Custom = "CUSTOM"
|
1823
|
+
}
|
1769
1824
|
/** Capture device type */
|
1770
1825
|
export declare enum DeviceTypes {
|
1771
1826
|
/** Digital Camera */
|
@@ -2127,6 +2182,17 @@ export type EmailPreparationPropertiesInput = {
|
|
2127
2182
|
/** Whether to extract attachments from emails as ingested content. */
|
2128
2183
|
includeAttachments?: InputMaybe<Scalars['Boolean']['input']>;
|
2129
2184
|
};
|
2185
|
+
/** Represents the embeddings strategy. */
|
2186
|
+
export type EmbeddingsStrategy = {
|
2187
|
+
__typename?: 'EmbeddingsStrategy';
|
2188
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
2189
|
+
chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
|
2190
|
+
};
|
2191
|
+
/** Represents the embeddings strategy. */
|
2192
|
+
export type EmbeddingsStrategyInput = {
|
2193
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
2194
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
2195
|
+
};
|
2130
2196
|
/** Represents an enrichment workflow job. */
|
2131
2197
|
export type EnrichmentWorkflowJob = {
|
2132
2198
|
__typename?: 'EnrichmentWorkflowJob';
|
@@ -2186,7 +2252,7 @@ export type EntityExtractionConnector = {
|
|
2186
2252
|
azureText?: Maybe<AzureTextExtractionProperties>;
|
2187
2253
|
/** The content types to allow for entity extraction. */
|
2188
2254
|
contentTypes?: Maybe<Array<ContentTypes>>;
|
2189
|
-
/** The maximum number of observable entities to be extracted, per entity type. Defaults to
|
2255
|
+
/** The maximum number of observable entities to be extracted, per entity type. Defaults to 100. */
|
2190
2256
|
extractedCount?: Maybe<Scalars['Int']['output']>;
|
2191
2257
|
/** The observable entity types to be extracted, defaults to all observables. */
|
2192
2258
|
extractedTypes?: Maybe<Array<ObservableTypes>>;
|
@@ -2207,7 +2273,7 @@ export type EntityExtractionConnectorInput = {
|
|
2207
2273
|
azureText?: InputMaybe<AzureTextExtractionPropertiesInput>;
|
2208
2274
|
/** The content types to allow for entity extraction. */
|
2209
2275
|
contentTypes?: InputMaybe<Array<ContentTypes>>;
|
2210
|
-
/** The maximum number of observable entities to be extracted, per entity type. Defaults to
|
2276
|
+
/** The maximum number of observable entities to be extracted, per entity type. Defaults to 100. */
|
2211
2277
|
extractedCount?: InputMaybe<Scalars['Int']['input']>;
|
2212
2278
|
/** The observable entity types to be extracted, defaults to all observables. */
|
2213
2279
|
extractedTypes?: InputMaybe<Array<ObservableTypes>>;
|
@@ -2372,7 +2438,7 @@ export type Event = {
|
|
2372
2438
|
/** The event availability start date. */
|
2373
2439
|
availabilityStartDate?: Maybe<Scalars['DateTime']['output']>;
|
2374
2440
|
/** The geo-boundary of the event, as GeoJSON Feature with Polygon geometry. */
|
2375
|
-
boundary?: Maybe<Scalars['
|
2441
|
+
boundary?: Maybe<Scalars['String']['output']>;
|
2376
2442
|
/** The creation date of the event. */
|
2377
2443
|
creationDate: Scalars['DateTime']['output'];
|
2378
2444
|
/** The event description. */
|
@@ -2405,10 +2471,14 @@ export type Event = {
|
|
2405
2471
|
price?: Maybe<Scalars['Decimal']['output']>;
|
2406
2472
|
/** The currency of the event price. */
|
2407
2473
|
priceCurrency?: Maybe<Scalars['String']['output']>;
|
2474
|
+
/** The relevance score of the event. */
|
2475
|
+
relevance?: Maybe<Scalars['Float']['output']>;
|
2408
2476
|
/** The event start date. */
|
2409
2477
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
2410
2478
|
/** The state of the event (i.e. created, enabled). */
|
2411
2479
|
state: EntityState;
|
2480
|
+
/** The JSON-LD value of the event. */
|
2481
|
+
thing?: Maybe<Scalars['String']['output']>;
|
2412
2482
|
/** The event typical age range. */
|
2413
2483
|
typicalAgeRange?: Maybe<Scalars['String']['output']>;
|
2414
2484
|
/** The event URI. */
|
@@ -2451,13 +2521,15 @@ export type EventFilter = {
|
|
2451
2521
|
/** Filter by event availability start date range. */
|
2452
2522
|
availabilityStartDateRange?: InputMaybe<DateRangeFilter>;
|
2453
2523
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
2454
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
2524
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
2455
2525
|
/** Filter event(s) by their creation date range. */
|
2456
2526
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
2457
2527
|
/** The sort direction for query results. */
|
2458
2528
|
direction?: InputMaybe<OrderDirectionTypes>;
|
2459
2529
|
/** Filter by event end date range. */
|
2460
2530
|
endDateRange?: InputMaybe<DateRangeFilter>;
|
2531
|
+
/** Filter by similar events. */
|
2532
|
+
events?: InputMaybe<Array<EntityReferenceFilter>>;
|
2461
2533
|
/** Filter by observable H3 index. */
|
2462
2534
|
h3?: InputMaybe<H3Filter>;
|
2463
2535
|
/** Filter event(s) by their unique ID. */
|
@@ -2474,6 +2546,8 @@ export type EventFilter = {
|
|
2474
2546
|
minPrice?: InputMaybe<Scalars['Decimal']['input']>;
|
2475
2547
|
/** Filter event(s) by their name. */
|
2476
2548
|
name?: InputMaybe<Scalars['String']['input']>;
|
2549
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 10. */
|
2550
|
+
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
2477
2551
|
/** Skip the specified number of event(s) from the beginning of the result set. */
|
2478
2552
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
2479
2553
|
/** The sort order for query results. */
|
@@ -2482,8 +2556,12 @@ export type EventFilter = {
|
|
2482
2556
|
price?: InputMaybe<Scalars['Decimal']['input']>;
|
2483
2557
|
/** Filter by the currency of the event price. */
|
2484
2558
|
priceCurrency?: InputMaybe<Scalars['String']['input']>;
|
2559
|
+
/** The query syntax for the search text. Defaults to Simple. */
|
2560
|
+
queryType?: InputMaybe<SearchQueryTypes>;
|
2485
2561
|
/** Filter event(s) by searching for specific text. */
|
2486
2562
|
search?: InputMaybe<Scalars['String']['input']>;
|
2563
|
+
/** The type of search to be used. Defaults to Vector. */
|
2564
|
+
searchType?: InputMaybe<SearchTypes>;
|
2487
2565
|
/** Filter by event start date range. */
|
2488
2566
|
startDateRange?: InputMaybe<DateRangeFilter>;
|
2489
2567
|
/** Filter event(s) by their states. */
|
@@ -2500,7 +2578,7 @@ export type EventInput = {
|
|
2500
2578
|
/** The event availability start date. */
|
2501
2579
|
availabilityStartDate?: InputMaybe<Scalars['DateTime']['input']>;
|
2502
2580
|
/** The event geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
2503
|
-
boundary?: InputMaybe<Scalars['
|
2581
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
2504
2582
|
/** The event description. */
|
2505
2583
|
description?: InputMaybe<Scalars['String']['input']>;
|
2506
2584
|
/** The event end date. */
|
@@ -2547,7 +2625,7 @@ export type EventUpdateInput = {
|
|
2547
2625
|
/** The event availability start date. */
|
2548
2626
|
availabilityStartDate?: InputMaybe<Scalars['DateTime']['input']>;
|
2549
2627
|
/** The event geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
2550
|
-
boundary?: InputMaybe<Scalars['
|
2628
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
2551
2629
|
/** The event description. */
|
2552
2630
|
description?: InputMaybe<Scalars['String']['input']>;
|
2553
2631
|
/** The event end date. */
|
@@ -3022,28 +3100,44 @@ export type GitHubIssuesFeedPropertiesUpdateInput = {
|
|
3022
3100
|
/** Represents Google Drive properties. */
|
3023
3101
|
export type GoogleDriveFeedProperties = {
|
3024
3102
|
__typename?: 'GoogleDriveFeedProperties';
|
3103
|
+
/** Google client identifier. */
|
3104
|
+
clientId: Scalars['String']['output'];
|
3105
|
+
/** Google client secret. */
|
3106
|
+
clientSecret: Scalars['String']['output'];
|
3025
3107
|
/** Google Drive folder identifier. */
|
3026
3108
|
folderId?: Maybe<Scalars['String']['output']>;
|
3027
|
-
/** Google
|
3109
|
+
/** Google refresh token. */
|
3028
3110
|
refreshToken: Scalars['String']['output'];
|
3029
3111
|
};
|
3030
3112
|
/** Represents Google Drive properties. */
|
3031
3113
|
export type GoogleDriveFeedPropertiesInput = {
|
3114
|
+
/** Google client identifier. */
|
3115
|
+
clientId: Scalars['String']['input'];
|
3116
|
+
/** Google client secret. */
|
3117
|
+
clientSecret: Scalars['String']['input'];
|
3032
3118
|
/** Google Drive folder identifier. */
|
3033
3119
|
folderId?: InputMaybe<Scalars['String']['input']>;
|
3034
|
-
/** Google
|
3120
|
+
/** Google refresh token. */
|
3035
3121
|
refreshToken: Scalars['String']['input'];
|
3036
3122
|
};
|
3037
3123
|
/** Represents Google Drive properties. */
|
3038
3124
|
export type GoogleDriveFeedPropertiesUpdateInput = {
|
3125
|
+
/** Google client identifier. */
|
3126
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
3127
|
+
/** Google client secret. */
|
3128
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
3039
3129
|
/** Google Drive folder identifier. */
|
3040
3130
|
folderId?: InputMaybe<Scalars['String']['input']>;
|
3041
|
-
/** Google
|
3131
|
+
/** Google refresh token. */
|
3042
3132
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
3043
3133
|
};
|
3044
3134
|
/** Represents Google Email feed properties. */
|
3045
3135
|
export type GoogleEmailFeedProperties = {
|
3046
3136
|
__typename?: 'GoogleEmailFeedProperties';
|
3137
|
+
/** Google client identifier. */
|
3138
|
+
clientId: Scalars['String']['output'];
|
3139
|
+
/** Google client secret. */
|
3140
|
+
clientSecret: Scalars['String']['output'];
|
3047
3141
|
/** Google refresh token. */
|
3048
3142
|
refreshToken?: Maybe<Scalars['String']['output']>;
|
3049
3143
|
/** Email listing type, i.e. past or new emails. */
|
@@ -3051,13 +3145,21 @@ export type GoogleEmailFeedProperties = {
|
|
3051
3145
|
};
|
3052
3146
|
/** Represents Google Email feed properties. */
|
3053
3147
|
export type GoogleEmailFeedPropertiesInput = {
|
3148
|
+
/** Google client identifier. */
|
3149
|
+
clientId: Scalars['String']['input'];
|
3150
|
+
/** Google client secret. */
|
3151
|
+
clientSecret: Scalars['String']['input'];
|
3054
3152
|
/** Google refresh token. */
|
3055
|
-
refreshToken
|
3153
|
+
refreshToken: Scalars['String']['input'];
|
3056
3154
|
/** Email listing type, i.e. past or new emails. */
|
3057
3155
|
type?: InputMaybe<EmailListingTypes>;
|
3058
3156
|
};
|
3059
3157
|
/** Represents Google Email feed properties. */
|
3060
3158
|
export type GoogleEmailFeedPropertiesUpdateInput = {
|
3159
|
+
/** Google client identifier. */
|
3160
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
3161
|
+
/** Google client secret. */
|
3162
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
3061
3163
|
/** Google refresh token. */
|
3062
3164
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
3063
3165
|
/** Email listing type, i.e. past or new emails. */
|
@@ -3124,25 +3226,37 @@ export type GraphNode = {
|
|
3124
3226
|
/** Represents a GraphRAG strategy. */
|
3125
3227
|
export type GraphStrategy = {
|
3126
3228
|
__typename?: 'GraphStrategy';
|
3229
|
+
/** Whether to generate the knowledge graph nodes and edges with the conversation response, defaults to False. */
|
3230
|
+
generateGraph?: Maybe<Scalars['Boolean']['output']>;
|
3231
|
+
/** The maximum number of observed entities to provide with prompt context, defaults to 1000. */
|
3232
|
+
observableLimit?: Maybe<Scalars['Int']['output']>;
|
3127
3233
|
/** The GraphRAG strategy type. */
|
3128
3234
|
type: GraphStrategyTypes;
|
3129
3235
|
};
|
3130
3236
|
/** Represents a GraphRAG strategy. */
|
3131
3237
|
export type GraphStrategyInput = {
|
3238
|
+
/** Whether to generate the knowledge graph nodes and edges with the conversation response, defaults to False. */
|
3239
|
+
generateGraph?: InputMaybe<Scalars['Boolean']['input']>;
|
3240
|
+
/** The maximum number of observed entities to provide with prompt context, defaults to 1000. */
|
3241
|
+
observableLimit?: InputMaybe<Scalars['Int']['input']>;
|
3132
3242
|
/** The GraphRAG strategy type. */
|
3133
3243
|
type?: InputMaybe<GraphStrategyTypes>;
|
3134
3244
|
};
|
3135
3245
|
/** GraphRAG strategies */
|
3136
3246
|
export declare enum GraphStrategyTypes {
|
3137
|
-
/** Extract named entities from prompt,
|
3247
|
+
/** Use GraphRAG. Extract named entities from prompt, assign as observations filter */
|
3138
3248
|
ExtractEntitiesFilter = "EXTRACT_ENTITIES_FILTER",
|
3139
|
-
/** Extract named entities from prompt,
|
3249
|
+
/** Use GraphRAG. Extract named entities from prompt, aggregate vector search and graph query results */
|
3140
3250
|
ExtractEntitiesGraph = "EXTRACT_ENTITIES_GRAPH",
|
3141
3251
|
/** Use standard RAG */
|
3142
3252
|
None = "NONE"
|
3143
3253
|
}
|
3144
3254
|
/** Represents a GraphRAG strategy. */
|
3145
3255
|
export type GraphStrategyUpdateInput = {
|
3256
|
+
/** Whether to generate the knowledge graph nodes and edges with the conversation response, defaults to False. */
|
3257
|
+
generateGraph?: InputMaybe<Scalars['Boolean']['input']>;
|
3258
|
+
/** The maximum number of observed entities to provide with prompt context, defaults to 1000. */
|
3259
|
+
observableLimit?: InputMaybe<Scalars['Int']['input']>;
|
3146
3260
|
/** The GraphRAG strategy type. */
|
3147
3261
|
type?: InputMaybe<GraphStrategyTypes>;
|
3148
3262
|
};
|
@@ -4170,6 +4284,8 @@ export declare enum ModelServiceTypes {
|
|
4170
4284
|
AzureOpenAi = "AZURE_OPEN_AI",
|
4171
4285
|
/** Cohere */
|
4172
4286
|
Cohere = "COHERE",
|
4287
|
+
/** Deepseek */
|
4288
|
+
Deepseek = "DEEPSEEK",
|
4173
4289
|
/** Groq */
|
4174
4290
|
Groq = "GROQ",
|
4175
4291
|
/** Mistral */
|
@@ -4177,9 +4293,7 @@ export declare enum ModelServiceTypes {
|
|
4177
4293
|
/** OpenAI */
|
4178
4294
|
OpenAi = "OPEN_AI",
|
4179
4295
|
/** Replicate */
|
4180
|
-
Replicate = "REPLICATE"
|
4181
|
-
/** TogetherAI */
|
4182
|
-
TogetherAi = "TOGETHER_AI"
|
4296
|
+
Replicate = "REPLICATE"
|
4183
4297
|
}
|
4184
4298
|
/** Represents an LLM text entity extraction connector. */
|
4185
4299
|
export type ModelTextExtractionProperties = {
|
@@ -4824,6 +4938,7 @@ export type MutationSuggestConversationArgs = {
|
|
4824
4938
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4825
4939
|
count?: InputMaybe<Scalars['Int']['input']>;
|
4826
4940
|
id: Scalars['ID']['input'];
|
4941
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
4827
4942
|
};
|
4828
4943
|
export type MutationSummarizeContentsArgs = {
|
4829
4944
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -5301,7 +5416,7 @@ export type Organization = {
|
|
5301
5416
|
/** The alternate names of the organization. */
|
5302
5417
|
alternateNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
5303
5418
|
/** The geo-boundary of the organization, as GeoJSON Feature with Polygon geometry. */
|
5304
|
-
boundary?: Maybe<Scalars['
|
5419
|
+
boundary?: Maybe<Scalars['String']['output']>;
|
5305
5420
|
/** The creation date of the organization. */
|
5306
5421
|
creationDate: Scalars['DateTime']['output'];
|
5307
5422
|
/** The organization description. */
|
@@ -5330,12 +5445,16 @@ export type Organization = {
|
|
5330
5445
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
5331
5446
|
/** The name of the organization. */
|
5332
5447
|
name: Scalars['String']['output'];
|
5448
|
+
/** The relevance score of the organization. */
|
5449
|
+
relevance?: Maybe<Scalars['Float']['output']>;
|
5333
5450
|
/** The revenue of the organization. */
|
5334
5451
|
revenue?: Maybe<Scalars['Decimal']['output']>;
|
5335
5452
|
/** The currency of the revenue of the organization. */
|
5336
5453
|
revenueCurrency?: Maybe<Scalars['String']['output']>;
|
5337
5454
|
/** The state of the organization (i.e. created, enabled). */
|
5338
5455
|
state: EntityState;
|
5456
|
+
/** The JSON-LD value of the organization. */
|
5457
|
+
thing?: Maybe<Scalars['String']['output']>;
|
5339
5458
|
/** The organization URI. */
|
5340
5459
|
uri?: Maybe<Scalars['URL']['output']>;
|
5341
5460
|
};
|
@@ -5372,7 +5491,7 @@ export type OrganizationFilter = {
|
|
5372
5491
|
/** Filter by observable physical address. */
|
5373
5492
|
address?: InputMaybe<AddressFilter>;
|
5374
5493
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
5375
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
5494
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
5376
5495
|
/** Filter organization(s) by their creation date range. */
|
5377
5496
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
5378
5497
|
/** The sort direction for query results. */
|
@@ -5387,12 +5506,20 @@ export type OrganizationFilter = {
|
|
5387
5506
|
location?: InputMaybe<PointFilter>;
|
5388
5507
|
/** Filter organization(s) by their name. */
|
5389
5508
|
name?: InputMaybe<Scalars['String']['input']>;
|
5509
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 10. */
|
5510
|
+
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
5390
5511
|
/** Skip the specified number of organization(s) from the beginning of the result set. */
|
5391
5512
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
5392
5513
|
/** The sort order for query results. */
|
5393
5514
|
orderBy?: InputMaybe<OrderByTypes>;
|
5515
|
+
/** Filter by similar organizations. */
|
5516
|
+
organizations?: InputMaybe<Array<EntityReferenceFilter>>;
|
5517
|
+
/** The query syntax for the search text. Defaults to Simple. */
|
5518
|
+
queryType?: InputMaybe<SearchQueryTypes>;
|
5394
5519
|
/** Filter organization(s) by searching for specific text. */
|
5395
5520
|
search?: InputMaybe<Scalars['String']['input']>;
|
5521
|
+
/** The type of search to be used. Defaults to Vector. */
|
5522
|
+
searchType?: InputMaybe<SearchTypes>;
|
5396
5523
|
/** Filter organization(s) by their states. */
|
5397
5524
|
states?: InputMaybe<Array<EntityState>>;
|
5398
5525
|
};
|
@@ -5401,7 +5528,7 @@ export type OrganizationInput = {
|
|
5401
5528
|
/** The physical address of the organization. */
|
5402
5529
|
address?: InputMaybe<AddressInput>;
|
5403
5530
|
/** The organization geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
5404
|
-
boundary?: InputMaybe<Scalars['
|
5531
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
5405
5532
|
/** The organization description. */
|
5406
5533
|
description?: InputMaybe<Scalars['String']['input']>;
|
5407
5534
|
/** The founding date of the organization. */
|
@@ -5440,7 +5567,7 @@ export type OrganizationUpdateInput = {
|
|
5440
5567
|
/** The physical address of the organization. */
|
5441
5568
|
address?: InputMaybe<AddressInput>;
|
5442
5569
|
/** The organization geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
5443
|
-
boundary?: InputMaybe<Scalars['
|
5570
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
5444
5571
|
/** The organization description. */
|
5445
5572
|
description?: InputMaybe<Scalars['String']['input']>;
|
5446
5573
|
/** The founding date of the organization. */
|
@@ -5524,7 +5651,7 @@ export type Person = {
|
|
5524
5651
|
/** The birth date of the person. */
|
5525
5652
|
birthDate?: Maybe<Scalars['Date']['output']>;
|
5526
5653
|
/** The geo-boundary of the person, as GeoJSON Feature with Polygon geometry. */
|
5527
|
-
boundary?: Maybe<Scalars['
|
5654
|
+
boundary?: Maybe<Scalars['String']['output']>;
|
5528
5655
|
/** The creation date of the person. */
|
5529
5656
|
creationDate: Scalars['DateTime']['output'];
|
5530
5657
|
/** The person description. */
|
@@ -5557,8 +5684,12 @@ export type Person = {
|
|
5557
5684
|
occupation?: Maybe<Scalars['String']['output']>;
|
5558
5685
|
/** The phone number of the person. */
|
5559
5686
|
phoneNumber?: Maybe<Scalars['String']['output']>;
|
5687
|
+
/** The relevance score of the person. */
|
5688
|
+
relevance?: Maybe<Scalars['Float']['output']>;
|
5560
5689
|
/** The state of the person (i.e. created, enabled). */
|
5561
5690
|
state: EntityState;
|
5691
|
+
/** The JSON-LD value of the person. */
|
5692
|
+
thing?: Maybe<Scalars['String']['output']>;
|
5562
5693
|
/** The job title of the person. */
|
5563
5694
|
title?: Maybe<Scalars['String']['output']>;
|
5564
5695
|
/** The person URI. */
|
@@ -5597,7 +5728,7 @@ export type PersonFilter = {
|
|
5597
5728
|
/** Filter by observable physical address. */
|
5598
5729
|
address?: InputMaybe<AddressFilter>;
|
5599
5730
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
5600
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
5731
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
5601
5732
|
/** Filter person(s) by their creation date range. */
|
5602
5733
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
5603
5734
|
/** The sort direction for query results. */
|
@@ -5618,14 +5749,22 @@ export type PersonFilter = {
|
|
5618
5749
|
location?: InputMaybe<PointFilter>;
|
5619
5750
|
/** Filter person(s) by their name. */
|
5620
5751
|
name?: InputMaybe<Scalars['String']['input']>;
|
5752
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 10. */
|
5753
|
+
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
5621
5754
|
/** Skip the specified number of person(s) from the beginning of the result set. */
|
5622
5755
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
5623
5756
|
/** The sort order for query results. */
|
5624
5757
|
orderBy?: InputMaybe<OrderByTypes>;
|
5758
|
+
/** Filter by similar persons. */
|
5759
|
+
persons?: InputMaybe<Array<EntityReferenceFilter>>;
|
5625
5760
|
/** Filter by the phone number of the person. */
|
5626
5761
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
5762
|
+
/** The query syntax for the search text. Defaults to Simple. */
|
5763
|
+
queryType?: InputMaybe<SearchQueryTypes>;
|
5627
5764
|
/** Filter person(s) by searching for specific text. */
|
5628
5765
|
search?: InputMaybe<Scalars['String']['input']>;
|
5766
|
+
/** The type of search to be used. Defaults to Vector. */
|
5767
|
+
searchType?: InputMaybe<SearchTypes>;
|
5629
5768
|
/** Filter person(s) by their states. */
|
5630
5769
|
states?: InputMaybe<Array<EntityState>>;
|
5631
5770
|
};
|
@@ -5636,7 +5775,7 @@ export type PersonInput = {
|
|
5636
5775
|
/** The birth date of the person. */
|
5637
5776
|
birthDate?: InputMaybe<Scalars['Date']['input']>;
|
5638
5777
|
/** The person geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
5639
|
-
boundary?: InputMaybe<Scalars['
|
5778
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
5640
5779
|
/** The person description. */
|
5641
5780
|
description?: InputMaybe<Scalars['String']['input']>;
|
5642
5781
|
/** The education of the person. */
|
@@ -5691,7 +5830,7 @@ export type PersonUpdateInput = {
|
|
5691
5830
|
/** The birth date of the person. */
|
5692
5831
|
birthDate?: InputMaybe<Scalars['Date']['input']>;
|
5693
5832
|
/** The person geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
5694
|
-
boundary?: InputMaybe<Scalars['
|
5833
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
5695
5834
|
/** The person description. */
|
5696
5835
|
description?: InputMaybe<Scalars['String']['input']>;
|
5697
5836
|
/** The education of the person. */
|
@@ -5727,7 +5866,7 @@ export type Place = {
|
|
5727
5866
|
/** The alternate names of the place. */
|
5728
5867
|
alternateNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
5729
5868
|
/** The geo-boundary of the place, as GeoJSON Feature with Polygon geometry. */
|
5730
|
-
boundary?: Maybe<Scalars['
|
5869
|
+
boundary?: Maybe<Scalars['String']['output']>;
|
5731
5870
|
/** The creation date of the place. */
|
5732
5871
|
creationDate: Scalars['DateTime']['output'];
|
5733
5872
|
/** The place description. */
|
@@ -5748,8 +5887,12 @@ export type Place = {
|
|
5748
5887
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
5749
5888
|
/** The name of the place. */
|
5750
5889
|
name: Scalars['String']['output'];
|
5890
|
+
/** The relevance score of the place. */
|
5891
|
+
relevance?: Maybe<Scalars['Float']['output']>;
|
5751
5892
|
/** The state of the place (i.e. created, enabled). */
|
5752
5893
|
state: EntityState;
|
5894
|
+
/** The JSON-LD value of the place. */
|
5895
|
+
thing?: Maybe<Scalars['String']['output']>;
|
5753
5896
|
/** The place URI. */
|
5754
5897
|
uri?: Maybe<Scalars['URL']['output']>;
|
5755
5898
|
};
|
@@ -5786,7 +5929,7 @@ export type PlaceFilter = {
|
|
5786
5929
|
/** Filter by observable physical address. */
|
5787
5930
|
address?: InputMaybe<AddressFilter>;
|
5788
5931
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
5789
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
5932
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
5790
5933
|
/** Filter place(s) by their creation date range. */
|
5791
5934
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
5792
5935
|
/** The sort direction for query results. */
|
@@ -5801,12 +5944,20 @@ export type PlaceFilter = {
|
|
5801
5944
|
location?: InputMaybe<PointFilter>;
|
5802
5945
|
/** Filter place(s) by their name. */
|
5803
5946
|
name?: InputMaybe<Scalars['String']['input']>;
|
5947
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 10. */
|
5948
|
+
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
5804
5949
|
/** Skip the specified number of place(s) from the beginning of the result set. */
|
5805
5950
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
5806
5951
|
/** The sort order for query results. */
|
5807
5952
|
orderBy?: InputMaybe<OrderByTypes>;
|
5953
|
+
/** Filter by similar places. */
|
5954
|
+
places?: InputMaybe<Array<EntityReferenceFilter>>;
|
5955
|
+
/** The query syntax for the search text. Defaults to Simple. */
|
5956
|
+
queryType?: InputMaybe<SearchQueryTypes>;
|
5808
5957
|
/** Filter place(s) by searching for specific text. */
|
5809
5958
|
search?: InputMaybe<Scalars['String']['input']>;
|
5959
|
+
/** The type of search to be used. Defaults to Vector. */
|
5960
|
+
searchType?: InputMaybe<SearchTypes>;
|
5810
5961
|
/** Filter place(s) by their states. */
|
5811
5962
|
states?: InputMaybe<Array<EntityState>>;
|
5812
5963
|
};
|
@@ -5815,7 +5966,7 @@ export type PlaceInput = {
|
|
5815
5966
|
/** The physical address of the place. */
|
5816
5967
|
address?: InputMaybe<AddressInput>;
|
5817
5968
|
/** The place geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
5818
|
-
boundary?: InputMaybe<Scalars['
|
5969
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
5819
5970
|
/** The place description. */
|
5820
5971
|
description?: InputMaybe<Scalars['String']['input']>;
|
5821
5972
|
/** The place external identifier. */
|
@@ -5842,7 +5993,7 @@ export type PlaceUpdateInput = {
|
|
5842
5993
|
/** The physical address of the place. */
|
5843
5994
|
address?: InputMaybe<AddressInput>;
|
5844
5995
|
/** The place geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
5845
|
-
boundary?: InputMaybe<Scalars['
|
5996
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
5846
5997
|
/** The place description. */
|
5847
5998
|
description?: InputMaybe<Scalars['String']['input']>;
|
5848
5999
|
/** The ID of the place to update. */
|
@@ -5956,7 +6107,7 @@ export type Product = {
|
|
5956
6107
|
/** The alternate names of the product. */
|
5957
6108
|
alternateNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
5958
6109
|
/** The geo-boundary of the product, as GeoJSON Feature with Polygon geometry. */
|
5959
|
-
boundary?: Maybe<Scalars['
|
6110
|
+
boundary?: Maybe<Scalars['String']['output']>;
|
5960
6111
|
/** The product brand. */
|
5961
6112
|
brand?: Maybe<Scalars['String']['output']>;
|
5962
6113
|
/** The creation date of the product. */
|
@@ -5987,10 +6138,14 @@ export type Product = {
|
|
5987
6138
|
productionDate?: Maybe<Scalars['DateTime']['output']>;
|
5988
6139
|
/** The product release date. */
|
5989
6140
|
releaseDate?: Maybe<Scalars['DateTime']['output']>;
|
6141
|
+
/** The relevance score of the product. */
|
6142
|
+
relevance?: Maybe<Scalars['Float']['output']>;
|
5990
6143
|
/** The product SKU. */
|
5991
6144
|
sku?: Maybe<Scalars['String']['output']>;
|
5992
6145
|
/** The state of the product (i.e. created, enabled). */
|
5993
6146
|
state: EntityState;
|
6147
|
+
/** The JSON-LD value of the product. */
|
6148
|
+
thing?: Maybe<Scalars['String']['output']>;
|
5994
6149
|
/** The product UPC. */
|
5995
6150
|
upc?: Maybe<Scalars['String']['output']>;
|
5996
6151
|
/** The product URI. */
|
@@ -6029,7 +6184,7 @@ export type ProductFilter = {
|
|
6029
6184
|
/** Filter by observable physical address. */
|
6030
6185
|
address?: InputMaybe<AddressFilter>;
|
6031
6186
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
6032
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
6187
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
6033
6188
|
/** Filter by product brand. */
|
6034
6189
|
brand?: InputMaybe<Scalars['String']['input']>;
|
6035
6190
|
/** Filter product(s) by their creation date range. */
|
@@ -6050,16 +6205,24 @@ export type ProductFilter = {
|
|
6050
6205
|
model?: InputMaybe<Scalars['String']['input']>;
|
6051
6206
|
/** Filter product(s) by their name. */
|
6052
6207
|
name?: InputMaybe<Scalars['String']['input']>;
|
6208
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 10. */
|
6209
|
+
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
6053
6210
|
/** Skip the specified number of product(s) from the beginning of the result set. */
|
6054
6211
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
6055
6212
|
/** The sort order for query results. */
|
6056
6213
|
orderBy?: InputMaybe<OrderByTypes>;
|
6057
6214
|
/** Filter by production date range. */
|
6058
6215
|
productionDateRange?: InputMaybe<DateRangeFilter>;
|
6216
|
+
/** Filter by similar products. */
|
6217
|
+
products?: InputMaybe<Array<EntityReferenceFilter>>;
|
6218
|
+
/** The query syntax for the search text. Defaults to Simple. */
|
6219
|
+
queryType?: InputMaybe<SearchQueryTypes>;
|
6059
6220
|
/** Filter by release date range. */
|
6060
6221
|
releaseDateRange?: InputMaybe<DateRangeFilter>;
|
6061
6222
|
/** Filter product(s) by searching for specific text. */
|
6062
6223
|
search?: InputMaybe<Scalars['String']['input']>;
|
6224
|
+
/** The type of search to be used. Defaults to Vector. */
|
6225
|
+
searchType?: InputMaybe<SearchTypes>;
|
6063
6226
|
/** Filter by product SKU. */
|
6064
6227
|
sku?: InputMaybe<Scalars['String']['input']>;
|
6065
6228
|
/** Filter product(s) by their states. */
|
@@ -6072,7 +6235,7 @@ export type ProductInput = {
|
|
6072
6235
|
/** The physical address of the product. */
|
6073
6236
|
address?: InputMaybe<AddressInput>;
|
6074
6237
|
/** The product geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
6075
|
-
boundary?: InputMaybe<Scalars['
|
6238
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
6076
6239
|
/** The product brand. */
|
6077
6240
|
brand?: InputMaybe<Scalars['String']['input']>;
|
6078
6241
|
/** The product description. */
|
@@ -6111,7 +6274,7 @@ export type ProductUpdateInput = {
|
|
6111
6274
|
/** The physical address of the product. */
|
6112
6275
|
address?: InputMaybe<AddressInput>;
|
6113
6276
|
/** The product geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
6114
|
-
boundary?: InputMaybe<Scalars['
|
6277
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
6115
6278
|
/** The product brand. */
|
6116
6279
|
brand?: InputMaybe<Scalars['String']['input']>;
|
6117
6280
|
/** The product description. */
|
@@ -6146,12 +6309,16 @@ export type Project = {
|
|
6146
6309
|
callbackUri?: Maybe<Scalars['URL']['output']>;
|
6147
6310
|
/** The creation date of the project. */
|
6148
6311
|
creationDate: Scalars['DateTime']['output'];
|
6312
|
+
/** The project credit usage. */
|
6313
|
+
credits?: Maybe<Scalars['Long']['output']>;
|
6149
6314
|
/** The project environment type. */
|
6150
6315
|
environmentType?: Maybe<EnvironmentTypes>;
|
6151
6316
|
/** The ID of the project. */
|
6152
6317
|
id: Scalars['ID']['output'];
|
6153
6318
|
/** The project JWT signing secret. */
|
6154
6319
|
jwtSecret?: Maybe<Scalars['String']['output']>;
|
6320
|
+
/** The last date that project credit usage was synchronized. */
|
6321
|
+
lastCreditsDate?: Maybe<Scalars['DateTime']['output']>;
|
6155
6322
|
/** The modified date of the project. */
|
6156
6323
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
6157
6324
|
/** The name of the project. */
|
@@ -6246,6 +6413,8 @@ export type ProjectQuota = {
|
|
6246
6413
|
contents?: Maybe<Scalars['Int']['output']>;
|
6247
6414
|
/** The maximum number of conversations which can be created. */
|
6248
6415
|
conversations?: Maybe<Scalars['Int']['output']>;
|
6416
|
+
/** The maximum number of credits which can be accrued. */
|
6417
|
+
credits?: Maybe<Scalars['Int']['output']>;
|
6249
6418
|
/** The maximum number of feeds which can be created. */
|
6250
6419
|
feeds?: Maybe<Scalars['Int']['output']>;
|
6251
6420
|
/** The maximum number of posts which can be read by feeds. */
|
@@ -6491,11 +6660,7 @@ export declare enum PromptStrategyTypes {
|
|
6491
6660
|
/** Convert prompt to keywords to optimize semantic search */
|
6492
6661
|
OptimizeSearch = "OPTIMIZE_SEARCH",
|
6493
6662
|
/** 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"
|
6663
|
+
Rewrite = "REWRITE"
|
6499
6664
|
}
|
6500
6665
|
/** Represents a prompt strategy. */
|
6501
6666
|
export type PromptStrategyUpdateInput = {
|
@@ -7102,8 +7267,12 @@ export type Repo = {
|
|
7102
7267
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
7103
7268
|
/** The name of the repo. */
|
7104
7269
|
name: Scalars['String']['output'];
|
7270
|
+
/** The relevance score of the repo. */
|
7271
|
+
relevance?: Maybe<Scalars['Float']['output']>;
|
7105
7272
|
/** The state of the repo (i.e. created, enabled). */
|
7106
7273
|
state: EntityState;
|
7274
|
+
/** The JSON-LD value of the repo. */
|
7275
|
+
thing?: Maybe<Scalars['String']['output']>;
|
7107
7276
|
/** The repo URI. */
|
7108
7277
|
uri?: Maybe<Scalars['URL']['output']>;
|
7109
7278
|
};
|
@@ -7140,7 +7309,7 @@ export type RepoFilter = {
|
|
7140
7309
|
/** Filter by observable physical address. */
|
7141
7310
|
address?: InputMaybe<AddressFilter>;
|
7142
7311
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
7143
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
7312
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
7144
7313
|
/** Filter repo(s) by their creation date range. */
|
7145
7314
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
7146
7315
|
/** The sort direction for query results. */
|
@@ -7155,12 +7324,20 @@ export type RepoFilter = {
|
|
7155
7324
|
location?: InputMaybe<PointFilter>;
|
7156
7325
|
/** Filter repo(s) by their name. */
|
7157
7326
|
name?: InputMaybe<Scalars['String']['input']>;
|
7327
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 10. */
|
7328
|
+
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
7158
7329
|
/** Skip the specified number of repo(s) from the beginning of the result set. */
|
7159
7330
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
7160
7331
|
/** The sort order for query results. */
|
7161
7332
|
orderBy?: InputMaybe<OrderByTypes>;
|
7333
|
+
/** The query syntax for the search text. Defaults to Simple. */
|
7334
|
+
queryType?: InputMaybe<SearchQueryTypes>;
|
7335
|
+
/** Filter by similar code repositories. */
|
7336
|
+
repos?: InputMaybe<Array<EntityReferenceFilter>>;
|
7162
7337
|
/** Filter repo(s) by searching for specific text. */
|
7163
7338
|
search?: InputMaybe<Scalars['String']['input']>;
|
7339
|
+
/** The type of search to be used. Defaults to Vector. */
|
7340
|
+
searchType?: InputMaybe<SearchTypes>;
|
7164
7341
|
/** Filter repo(s) by their states. */
|
7165
7342
|
states?: InputMaybe<Array<EntityState>>;
|
7166
7343
|
};
|
@@ -7600,8 +7777,12 @@ export type Software = {
|
|
7600
7777
|
name: Scalars['String']['output'];
|
7601
7778
|
/** The software release date. */
|
7602
7779
|
releaseDate?: Maybe<Scalars['DateTime']['output']>;
|
7780
|
+
/** The relevance score of the software. */
|
7781
|
+
relevance?: Maybe<Scalars['Float']['output']>;
|
7603
7782
|
/** The state of the software (i.e. created, enabled). */
|
7604
7783
|
state: EntityState;
|
7784
|
+
/** The JSON-LD value of the software. */
|
7785
|
+
thing?: Maybe<Scalars['String']['output']>;
|
7605
7786
|
/** The software URI. */
|
7606
7787
|
uri?: Maybe<Scalars['URL']['output']>;
|
7607
7788
|
};
|
@@ -7638,7 +7819,7 @@ export type SoftwareFilter = {
|
|
7638
7819
|
/** Filter by observable physical address. */
|
7639
7820
|
address?: InputMaybe<AddressFilter>;
|
7640
7821
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
7641
|
-
boundaries?: InputMaybe<Array<InputMaybe<Scalars['
|
7822
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
7642
7823
|
/** Filter software(s) by their creation date range. */
|
7643
7824
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
7644
7825
|
/** The sort direction for query results. */
|
@@ -7653,12 +7834,20 @@ export type SoftwareFilter = {
|
|
7653
7834
|
location?: InputMaybe<PointFilter>;
|
7654
7835
|
/** Filter software(s) by their name. */
|
7655
7836
|
name?: InputMaybe<Scalars['String']['input']>;
|
7837
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 10. */
|
7838
|
+
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
7656
7839
|
/** Skip the specified number of software(s) from the beginning of the result set. */
|
7657
7840
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
7658
7841
|
/** The sort order for query results. */
|
7659
7842
|
orderBy?: InputMaybe<OrderByTypes>;
|
7843
|
+
/** The query syntax for the search text. Defaults to Simple. */
|
7844
|
+
queryType?: InputMaybe<SearchQueryTypes>;
|
7660
7845
|
/** Filter software(s) by searching for specific text. */
|
7661
7846
|
search?: InputMaybe<Scalars['String']['input']>;
|
7847
|
+
/** The type of search to be used. Defaults to Vector. */
|
7848
|
+
searchType?: InputMaybe<SearchTypes>;
|
7849
|
+
/** Filter by similar software. */
|
7850
|
+
softwares?: InputMaybe<Array<EntityReferenceFilter>>;
|
7662
7851
|
/** Filter software(s) by their states. */
|
7663
7852
|
states?: InputMaybe<Array<EntityState>>;
|
7664
7853
|
};
|
@@ -7717,6 +7906,8 @@ export type Specification = {
|
|
7717
7906
|
customGuidance?: Maybe<Scalars['String']['output']>;
|
7718
7907
|
/** Custom instructions which are injected into the LLM conversation prompt. */
|
7719
7908
|
customInstructions?: Maybe<Scalars['String']['output']>;
|
7909
|
+
/** The Deepseek model properties. */
|
7910
|
+
deepseek?: Maybe<DeepseekModelProperties>;
|
7720
7911
|
/** The strategy for GraphRAG retrieval. */
|
7721
7912
|
graphStrategy?: Maybe<GraphStrategy>;
|
7722
7913
|
/** The Groq model properties. */
|
@@ -7797,6 +7988,8 @@ export type SpecificationInput = {
|
|
7797
7988
|
customGuidance?: InputMaybe<Scalars['String']['input']>;
|
7798
7989
|
/** Custom instructions which are injected into the LLM conversation prompt. */
|
7799
7990
|
customInstructions?: InputMaybe<Scalars['String']['input']>;
|
7991
|
+
/** The Deepseek model properties. */
|
7992
|
+
deepseek?: InputMaybe<DeepseekModelPropertiesInput>;
|
7800
7993
|
/** The strategy for GraphRAG retrieval. */
|
7801
7994
|
graphStrategy?: InputMaybe<GraphStrategyInput>;
|
7802
7995
|
/** The Groq model properties. */
|
@@ -7857,6 +8050,8 @@ export type SpecificationUpdateInput = {
|
|
7857
8050
|
customGuidance?: InputMaybe<Scalars['String']['input']>;
|
7858
8051
|
/** Custom instructions which are injected into the LLM conversation prompt. */
|
7859
8052
|
customInstructions?: InputMaybe<Scalars['String']['input']>;
|
8053
|
+
/** The Deepseek model properties. */
|
8054
|
+
deepseek?: InputMaybe<DeepseekModelPropertiesUpdateInput>;
|
7860
8055
|
/** The strategy for GraphRAG retrieval. */
|
7861
8056
|
graphStrategy?: InputMaybe<GraphStrategyUpdateInput>;
|
7862
8057
|
/** The Groq model properties. */
|
@@ -7894,6 +8089,17 @@ export type SpecificationUpdateInput = {
|
|
7894
8089
|
/** The specification type. */
|
7895
8090
|
type?: InputMaybe<SpecificationTypes>;
|
7896
8091
|
};
|
8092
|
+
/** Represents the storage workflow stage. */
|
8093
|
+
export type StorageWorkflowStage = {
|
8094
|
+
__typename?: 'StorageWorkflowStage';
|
8095
|
+
/** The vector storage embeddings strategy. */
|
8096
|
+
embeddings?: Maybe<EmbeddingsStrategy>;
|
8097
|
+
};
|
8098
|
+
/** Represents the storage workflow stage. */
|
8099
|
+
export type StorageWorkflowStageInput = {
|
8100
|
+
/** The vector storage embeddings strategy. */
|
8101
|
+
embeddings?: InputMaybe<EmbeddingsStrategyInput>;
|
8102
|
+
};
|
7897
8103
|
/** Represents a range of string values. */
|
7898
8104
|
export type StringRange = {
|
7899
8105
|
__typename?: 'StringRange';
|
@@ -8001,6 +8207,8 @@ export type TextPage = {
|
|
8001
8207
|
chunks?: Maybe<Array<Maybe<TextChunk>>>;
|
8002
8208
|
/** The text page index. */
|
8003
8209
|
index?: Maybe<Scalars['Int']['output']>;
|
8210
|
+
/** The text page hyperlinks. */
|
8211
|
+
links?: Maybe<Array<Maybe<LinkReferenceType>>>;
|
8004
8212
|
/** The relevance score of the text page. */
|
8005
8213
|
relevance?: Maybe<Scalars['Float']['output']>;
|
8006
8214
|
/** The text page. */
|
@@ -8295,6 +8503,8 @@ export type Workflow = {
|
|
8295
8503
|
preparation?: Maybe<PreparationWorkflowStage>;
|
8296
8504
|
/** The state of the workflow (i.e. created, finished). */
|
8297
8505
|
state: EntityState;
|
8506
|
+
/** The storage stage of the content workflow. */
|
8507
|
+
storage?: Maybe<StorageWorkflowStage>;
|
8298
8508
|
};
|
8299
8509
|
/** Represents the workflow action. */
|
8300
8510
|
export type WorkflowAction = {
|
@@ -8342,6 +8552,8 @@ export type WorkflowInput = {
|
|
8342
8552
|
name: Scalars['String']['input'];
|
8343
8553
|
/** The preparation stage of the content workflow. */
|
8344
8554
|
preparation?: InputMaybe<PreparationWorkflowStageInput>;
|
8555
|
+
/** The storage stage of the content workflow. */
|
8556
|
+
storage?: InputMaybe<StorageWorkflowStageInput>;
|
8345
8557
|
};
|
8346
8558
|
/** Represents workflow query results. */
|
8347
8559
|
export type WorkflowResults = {
|
@@ -8365,6 +8577,8 @@ export type WorkflowUpdateInput = {
|
|
8365
8577
|
name?: InputMaybe<Scalars['String']['input']>;
|
8366
8578
|
/** The preparation stage of the content workflow. */
|
8367
8579
|
preparation?: InputMaybe<PreparationWorkflowStageInput>;
|
8580
|
+
/** The storage stage of the content workflow. */
|
8581
|
+
storage?: InputMaybe<StorageWorkflowStageInput>;
|
8368
8582
|
};
|
8369
8583
|
/** Represents YouTube feed properties. */
|
8370
8584
|
export type YouTubeFeedProperties = {
|
@@ -8563,6 +8777,54 @@ export type GetAlertQuery = {
|
|
8563
8777
|
id: string;
|
8564
8778
|
};
|
8565
8779
|
}> | null;
|
8780
|
+
or?: Array<{
|
8781
|
+
__typename?: 'ContentCriteriaLevel';
|
8782
|
+
feeds?: Array<{
|
8783
|
+
__typename?: 'EntityReference';
|
8784
|
+
id: string;
|
8785
|
+
}> | null;
|
8786
|
+
workflows?: Array<{
|
8787
|
+
__typename?: 'EntityReference';
|
8788
|
+
id: string;
|
8789
|
+
}> | null;
|
8790
|
+
collections?: Array<{
|
8791
|
+
__typename?: 'EntityReference';
|
8792
|
+
id: string;
|
8793
|
+
}> | null;
|
8794
|
+
observations?: Array<{
|
8795
|
+
__typename?: 'ObservationCriteria';
|
8796
|
+
type: ObservableTypes;
|
8797
|
+
states?: Array<EntityState | null> | null;
|
8798
|
+
observable: {
|
8799
|
+
__typename?: 'EntityReference';
|
8800
|
+
id: string;
|
8801
|
+
};
|
8802
|
+
}> | null;
|
8803
|
+
}> | null;
|
8804
|
+
and?: Array<{
|
8805
|
+
__typename?: 'ContentCriteriaLevel';
|
8806
|
+
feeds?: Array<{
|
8807
|
+
__typename?: 'EntityReference';
|
8808
|
+
id: string;
|
8809
|
+
}> | null;
|
8810
|
+
workflows?: Array<{
|
8811
|
+
__typename?: 'EntityReference';
|
8812
|
+
id: string;
|
8813
|
+
}> | null;
|
8814
|
+
collections?: Array<{
|
8815
|
+
__typename?: 'EntityReference';
|
8816
|
+
id: string;
|
8817
|
+
}> | null;
|
8818
|
+
observations?: Array<{
|
8819
|
+
__typename?: 'ObservationCriteria';
|
8820
|
+
type: ObservableTypes;
|
8821
|
+
states?: Array<EntityState | null> | null;
|
8822
|
+
observable: {
|
8823
|
+
__typename?: 'EntityReference';
|
8824
|
+
id: string;
|
8825
|
+
};
|
8826
|
+
}> | null;
|
8827
|
+
}> | null;
|
8566
8828
|
} | null;
|
8567
8829
|
integration: {
|
8568
8830
|
__typename?: 'IntegrationConnector';
|
@@ -8654,6 +8916,54 @@ export type QueryAlertsQuery = {
|
|
8654
8916
|
id: string;
|
8655
8917
|
};
|
8656
8918
|
}> | null;
|
8919
|
+
or?: Array<{
|
8920
|
+
__typename?: 'ContentCriteriaLevel';
|
8921
|
+
feeds?: Array<{
|
8922
|
+
__typename?: 'EntityReference';
|
8923
|
+
id: string;
|
8924
|
+
}> | null;
|
8925
|
+
workflows?: Array<{
|
8926
|
+
__typename?: 'EntityReference';
|
8927
|
+
id: string;
|
8928
|
+
}> | null;
|
8929
|
+
collections?: Array<{
|
8930
|
+
__typename?: 'EntityReference';
|
8931
|
+
id: string;
|
8932
|
+
}> | null;
|
8933
|
+
observations?: Array<{
|
8934
|
+
__typename?: 'ObservationCriteria';
|
8935
|
+
type: ObservableTypes;
|
8936
|
+
states?: Array<EntityState | null> | null;
|
8937
|
+
observable: {
|
8938
|
+
__typename?: 'EntityReference';
|
8939
|
+
id: string;
|
8940
|
+
};
|
8941
|
+
}> | null;
|
8942
|
+
}> | null;
|
8943
|
+
and?: Array<{
|
8944
|
+
__typename?: 'ContentCriteriaLevel';
|
8945
|
+
feeds?: Array<{
|
8946
|
+
__typename?: 'EntityReference';
|
8947
|
+
id: string;
|
8948
|
+
}> | null;
|
8949
|
+
workflows?: Array<{
|
8950
|
+
__typename?: 'EntityReference';
|
8951
|
+
id: string;
|
8952
|
+
}> | null;
|
8953
|
+
collections?: Array<{
|
8954
|
+
__typename?: 'EntityReference';
|
8955
|
+
id: string;
|
8956
|
+
}> | null;
|
8957
|
+
observations?: Array<{
|
8958
|
+
__typename?: 'ObservationCriteria';
|
8959
|
+
type: ObservableTypes;
|
8960
|
+
states?: Array<EntityState | null> | null;
|
8961
|
+
observable: {
|
8962
|
+
__typename?: 'EntityReference';
|
8963
|
+
id: string;
|
8964
|
+
};
|
8965
|
+
}> | null;
|
8966
|
+
}> | null;
|
8657
8967
|
} | null;
|
8658
8968
|
integration: {
|
8659
8969
|
__typename?: 'IntegrationConnector';
|
@@ -10188,11 +10498,94 @@ export type GetConversationQuery = {
|
|
10188
10498
|
id: string;
|
10189
10499
|
name: string;
|
10190
10500
|
state: EntityState;
|
10501
|
+
originalDate?: any | null;
|
10502
|
+
uri?: any | null;
|
10191
10503
|
type?: ContentTypes | null;
|
10192
10504
|
fileType?: FileTypes | null;
|
10505
|
+
mimeType?: string | null;
|
10506
|
+
format?: string | null;
|
10507
|
+
formatName?: string | null;
|
10508
|
+
fileExtension?: string | null;
|
10193
10509
|
fileName?: string | null;
|
10194
|
-
|
10195
|
-
|
10510
|
+
fileSize?: any | null;
|
10511
|
+
masterUri?: any | null;
|
10512
|
+
imageUri?: any | null;
|
10513
|
+
textUri?: any | null;
|
10514
|
+
audioUri?: any | null;
|
10515
|
+
transcriptUri?: any | null;
|
10516
|
+
video?: {
|
10517
|
+
__typename?: 'VideoMetadata';
|
10518
|
+
width?: number | null;
|
10519
|
+
height?: number | null;
|
10520
|
+
duration?: string | null;
|
10521
|
+
make?: string | null;
|
10522
|
+
model?: string | null;
|
10523
|
+
software?: string | null;
|
10524
|
+
title?: string | null;
|
10525
|
+
description?: string | null;
|
10526
|
+
keywords?: Array<string | null> | null;
|
10527
|
+
author?: string | null;
|
10528
|
+
} | null;
|
10529
|
+
audio?: {
|
10530
|
+
__typename?: 'AudioMetadata';
|
10531
|
+
keywords?: Array<string | null> | null;
|
10532
|
+
author?: string | null;
|
10533
|
+
series?: string | null;
|
10534
|
+
episode?: string | null;
|
10535
|
+
episodeType?: string | null;
|
10536
|
+
season?: string | null;
|
10537
|
+
publisher?: string | null;
|
10538
|
+
copyright?: string | null;
|
10539
|
+
language?: string | null;
|
10540
|
+
genre?: string | null;
|
10541
|
+
title?: string | null;
|
10542
|
+
description?: string | null;
|
10543
|
+
bitrate?: number | null;
|
10544
|
+
channels?: number | null;
|
10545
|
+
sampleRate?: number | null;
|
10546
|
+
bitsPerSample?: number | null;
|
10547
|
+
duration?: string | null;
|
10548
|
+
} | null;
|
10549
|
+
image?: {
|
10550
|
+
__typename?: 'ImageMetadata';
|
10551
|
+
width?: number | null;
|
10552
|
+
height?: number | null;
|
10553
|
+
resolutionX?: number | null;
|
10554
|
+
resolutionY?: number | null;
|
10555
|
+
bitsPerComponent?: number | null;
|
10556
|
+
components?: number | null;
|
10557
|
+
projectionType?: ImageProjectionTypes | null;
|
10558
|
+
orientation?: OrientationTypes | null;
|
10559
|
+
description?: string | null;
|
10560
|
+
make?: string | null;
|
10561
|
+
model?: string | null;
|
10562
|
+
software?: string | null;
|
10563
|
+
lens?: string | null;
|
10564
|
+
focalLength?: number | null;
|
10565
|
+
exposureTime?: string | null;
|
10566
|
+
fNumber?: string | null;
|
10567
|
+
iso?: string | null;
|
10568
|
+
heading?: number | null;
|
10569
|
+
pitch?: number | null;
|
10570
|
+
} | null;
|
10571
|
+
document?: {
|
10572
|
+
__typename?: 'DocumentMetadata';
|
10573
|
+
title?: string | null;
|
10574
|
+
subject?: string | null;
|
10575
|
+
summary?: string | null;
|
10576
|
+
author?: string | null;
|
10577
|
+
publisher?: string | null;
|
10578
|
+
description?: string | null;
|
10579
|
+
keywords?: Array<string | null> | null;
|
10580
|
+
pageCount?: number | null;
|
10581
|
+
worksheetCount?: number | null;
|
10582
|
+
slideCount?: number | null;
|
10583
|
+
wordCount?: number | null;
|
10584
|
+
lineCount?: number | null;
|
10585
|
+
paragraphCount?: number | null;
|
10586
|
+
isEncrypted?: boolean | null;
|
10587
|
+
hasDigitalSignature?: boolean | null;
|
10588
|
+
} | null;
|
10196
10589
|
} | null;
|
10197
10590
|
} | null> | null;
|
10198
10591
|
} | null> | null;
|
@@ -10240,6 +10633,54 @@ export type GetConversationQuery = {
|
|
10240
10633
|
id: string;
|
10241
10634
|
};
|
10242
10635
|
}> | null;
|
10636
|
+
or?: Array<{
|
10637
|
+
__typename?: 'ContentCriteriaLevel';
|
10638
|
+
feeds?: Array<{
|
10639
|
+
__typename?: 'EntityReference';
|
10640
|
+
id: string;
|
10641
|
+
}> | null;
|
10642
|
+
workflows?: Array<{
|
10643
|
+
__typename?: 'EntityReference';
|
10644
|
+
id: string;
|
10645
|
+
}> | null;
|
10646
|
+
collections?: Array<{
|
10647
|
+
__typename?: 'EntityReference';
|
10648
|
+
id: string;
|
10649
|
+
}> | null;
|
10650
|
+
observations?: Array<{
|
10651
|
+
__typename?: 'ObservationCriteria';
|
10652
|
+
type: ObservableTypes;
|
10653
|
+
states?: Array<EntityState | null> | null;
|
10654
|
+
observable: {
|
10655
|
+
__typename?: 'EntityReference';
|
10656
|
+
id: string;
|
10657
|
+
};
|
10658
|
+
}> | null;
|
10659
|
+
}> | null;
|
10660
|
+
and?: Array<{
|
10661
|
+
__typename?: 'ContentCriteriaLevel';
|
10662
|
+
feeds?: Array<{
|
10663
|
+
__typename?: 'EntityReference';
|
10664
|
+
id: string;
|
10665
|
+
}> | null;
|
10666
|
+
workflows?: Array<{
|
10667
|
+
__typename?: 'EntityReference';
|
10668
|
+
id: string;
|
10669
|
+
}> | null;
|
10670
|
+
collections?: Array<{
|
10671
|
+
__typename?: 'EntityReference';
|
10672
|
+
id: string;
|
10673
|
+
}> | null;
|
10674
|
+
observations?: Array<{
|
10675
|
+
__typename?: 'ObservationCriteria';
|
10676
|
+
type: ObservableTypes;
|
10677
|
+
states?: Array<EntityState | null> | null;
|
10678
|
+
observable: {
|
10679
|
+
__typename?: 'EntityReference';
|
10680
|
+
id: string;
|
10681
|
+
};
|
10682
|
+
}> | null;
|
10683
|
+
}> | null;
|
10243
10684
|
} | null;
|
10244
10685
|
} | null;
|
10245
10686
|
};
|
@@ -10281,11 +10722,94 @@ export type PromptConversationMutation = {
|
|
10281
10722
|
id: string;
|
10282
10723
|
name: string;
|
10283
10724
|
state: EntityState;
|
10725
|
+
originalDate?: any | null;
|
10726
|
+
uri?: any | null;
|
10284
10727
|
type?: ContentTypes | null;
|
10285
10728
|
fileType?: FileTypes | null;
|
10729
|
+
mimeType?: string | null;
|
10730
|
+
format?: string | null;
|
10731
|
+
formatName?: string | null;
|
10732
|
+
fileExtension?: string | null;
|
10286
10733
|
fileName?: string | null;
|
10287
|
-
|
10288
|
-
|
10734
|
+
fileSize?: any | null;
|
10735
|
+
masterUri?: any | null;
|
10736
|
+
imageUri?: any | null;
|
10737
|
+
textUri?: any | null;
|
10738
|
+
audioUri?: any | null;
|
10739
|
+
transcriptUri?: any | null;
|
10740
|
+
video?: {
|
10741
|
+
__typename?: 'VideoMetadata';
|
10742
|
+
width?: number | null;
|
10743
|
+
height?: number | null;
|
10744
|
+
duration?: string | null;
|
10745
|
+
make?: string | null;
|
10746
|
+
model?: string | null;
|
10747
|
+
software?: string | null;
|
10748
|
+
title?: string | null;
|
10749
|
+
description?: string | null;
|
10750
|
+
keywords?: Array<string | null> | null;
|
10751
|
+
author?: string | null;
|
10752
|
+
} | null;
|
10753
|
+
audio?: {
|
10754
|
+
__typename?: 'AudioMetadata';
|
10755
|
+
keywords?: Array<string | null> | null;
|
10756
|
+
author?: string | null;
|
10757
|
+
series?: string | null;
|
10758
|
+
episode?: string | null;
|
10759
|
+
episodeType?: string | null;
|
10760
|
+
season?: string | null;
|
10761
|
+
publisher?: string | null;
|
10762
|
+
copyright?: string | null;
|
10763
|
+
language?: string | null;
|
10764
|
+
genre?: string | null;
|
10765
|
+
title?: string | null;
|
10766
|
+
description?: string | null;
|
10767
|
+
bitrate?: number | null;
|
10768
|
+
channels?: number | null;
|
10769
|
+
sampleRate?: number | null;
|
10770
|
+
bitsPerSample?: number | null;
|
10771
|
+
duration?: string | null;
|
10772
|
+
} | null;
|
10773
|
+
image?: {
|
10774
|
+
__typename?: 'ImageMetadata';
|
10775
|
+
width?: number | null;
|
10776
|
+
height?: number | null;
|
10777
|
+
resolutionX?: number | null;
|
10778
|
+
resolutionY?: number | null;
|
10779
|
+
bitsPerComponent?: number | null;
|
10780
|
+
components?: number | null;
|
10781
|
+
projectionType?: ImageProjectionTypes | null;
|
10782
|
+
orientation?: OrientationTypes | null;
|
10783
|
+
description?: string | null;
|
10784
|
+
make?: string | null;
|
10785
|
+
model?: string | null;
|
10786
|
+
software?: string | null;
|
10787
|
+
lens?: string | null;
|
10788
|
+
focalLength?: number | null;
|
10789
|
+
exposureTime?: string | null;
|
10790
|
+
fNumber?: string | null;
|
10791
|
+
iso?: string | null;
|
10792
|
+
heading?: number | null;
|
10793
|
+
pitch?: number | null;
|
10794
|
+
} | null;
|
10795
|
+
document?: {
|
10796
|
+
__typename?: 'DocumentMetadata';
|
10797
|
+
title?: string | null;
|
10798
|
+
subject?: string | null;
|
10799
|
+
summary?: string | null;
|
10800
|
+
author?: string | null;
|
10801
|
+
publisher?: string | null;
|
10802
|
+
description?: string | null;
|
10803
|
+
keywords?: Array<string | null> | null;
|
10804
|
+
pageCount?: number | null;
|
10805
|
+
worksheetCount?: number | null;
|
10806
|
+
slideCount?: number | null;
|
10807
|
+
wordCount?: number | null;
|
10808
|
+
lineCount?: number | null;
|
10809
|
+
paragraphCount?: number | null;
|
10810
|
+
isEncrypted?: boolean | null;
|
10811
|
+
hasDigitalSignature?: boolean | null;
|
10812
|
+
} | null;
|
10289
10813
|
} | null;
|
10290
10814
|
} | null> | null;
|
10291
10815
|
} | null;
|
@@ -10400,11 +10924,94 @@ export type QueryConversationsQuery = {
|
|
10400
10924
|
id: string;
|
10401
10925
|
name: string;
|
10402
10926
|
state: EntityState;
|
10927
|
+
originalDate?: any | null;
|
10928
|
+
uri?: any | null;
|
10403
10929
|
type?: ContentTypes | null;
|
10404
10930
|
fileType?: FileTypes | null;
|
10931
|
+
mimeType?: string | null;
|
10932
|
+
format?: string | null;
|
10933
|
+
formatName?: string | null;
|
10934
|
+
fileExtension?: string | null;
|
10405
10935
|
fileName?: string | null;
|
10406
|
-
|
10407
|
-
|
10936
|
+
fileSize?: any | null;
|
10937
|
+
masterUri?: any | null;
|
10938
|
+
imageUri?: any | null;
|
10939
|
+
textUri?: any | null;
|
10940
|
+
audioUri?: any | null;
|
10941
|
+
transcriptUri?: any | null;
|
10942
|
+
video?: {
|
10943
|
+
__typename?: 'VideoMetadata';
|
10944
|
+
width?: number | null;
|
10945
|
+
height?: number | null;
|
10946
|
+
duration?: string | null;
|
10947
|
+
make?: string | null;
|
10948
|
+
model?: string | null;
|
10949
|
+
software?: string | null;
|
10950
|
+
title?: string | null;
|
10951
|
+
description?: string | null;
|
10952
|
+
keywords?: Array<string | null> | null;
|
10953
|
+
author?: string | null;
|
10954
|
+
} | null;
|
10955
|
+
audio?: {
|
10956
|
+
__typename?: 'AudioMetadata';
|
10957
|
+
keywords?: Array<string | null> | null;
|
10958
|
+
author?: string | null;
|
10959
|
+
series?: string | null;
|
10960
|
+
episode?: string | null;
|
10961
|
+
episodeType?: string | null;
|
10962
|
+
season?: string | null;
|
10963
|
+
publisher?: string | null;
|
10964
|
+
copyright?: string | null;
|
10965
|
+
language?: string | null;
|
10966
|
+
genre?: string | null;
|
10967
|
+
title?: string | null;
|
10968
|
+
description?: string | null;
|
10969
|
+
bitrate?: number | null;
|
10970
|
+
channels?: number | null;
|
10971
|
+
sampleRate?: number | null;
|
10972
|
+
bitsPerSample?: number | null;
|
10973
|
+
duration?: string | null;
|
10974
|
+
} | null;
|
10975
|
+
image?: {
|
10976
|
+
__typename?: 'ImageMetadata';
|
10977
|
+
width?: number | null;
|
10978
|
+
height?: number | null;
|
10979
|
+
resolutionX?: number | null;
|
10980
|
+
resolutionY?: number | null;
|
10981
|
+
bitsPerComponent?: number | null;
|
10982
|
+
components?: number | null;
|
10983
|
+
projectionType?: ImageProjectionTypes | null;
|
10984
|
+
orientation?: OrientationTypes | null;
|
10985
|
+
description?: string | null;
|
10986
|
+
make?: string | null;
|
10987
|
+
model?: string | null;
|
10988
|
+
software?: string | null;
|
10989
|
+
lens?: string | null;
|
10990
|
+
focalLength?: number | null;
|
10991
|
+
exposureTime?: string | null;
|
10992
|
+
fNumber?: string | null;
|
10993
|
+
iso?: string | null;
|
10994
|
+
heading?: number | null;
|
10995
|
+
pitch?: number | null;
|
10996
|
+
} | null;
|
10997
|
+
document?: {
|
10998
|
+
__typename?: 'DocumentMetadata';
|
10999
|
+
title?: string | null;
|
11000
|
+
subject?: string | null;
|
11001
|
+
summary?: string | null;
|
11002
|
+
author?: string | null;
|
11003
|
+
publisher?: string | null;
|
11004
|
+
description?: string | null;
|
11005
|
+
keywords?: Array<string | null> | null;
|
11006
|
+
pageCount?: number | null;
|
11007
|
+
worksheetCount?: number | null;
|
11008
|
+
slideCount?: number | null;
|
11009
|
+
wordCount?: number | null;
|
11010
|
+
lineCount?: number | null;
|
11011
|
+
paragraphCount?: number | null;
|
11012
|
+
isEncrypted?: boolean | null;
|
11013
|
+
hasDigitalSignature?: boolean | null;
|
11014
|
+
} | null;
|
10408
11015
|
} | null;
|
10409
11016
|
} | null> | null;
|
10410
11017
|
} | null> | null;
|
@@ -10452,6 +11059,54 @@ export type QueryConversationsQuery = {
|
|
10452
11059
|
id: string;
|
10453
11060
|
};
|
10454
11061
|
}> | null;
|
11062
|
+
or?: Array<{
|
11063
|
+
__typename?: 'ContentCriteriaLevel';
|
11064
|
+
feeds?: Array<{
|
11065
|
+
__typename?: 'EntityReference';
|
11066
|
+
id: string;
|
11067
|
+
}> | null;
|
11068
|
+
workflows?: Array<{
|
11069
|
+
__typename?: 'EntityReference';
|
11070
|
+
id: string;
|
11071
|
+
}> | null;
|
11072
|
+
collections?: Array<{
|
11073
|
+
__typename?: 'EntityReference';
|
11074
|
+
id: string;
|
11075
|
+
}> | null;
|
11076
|
+
observations?: Array<{
|
11077
|
+
__typename?: 'ObservationCriteria';
|
11078
|
+
type: ObservableTypes;
|
11079
|
+
states?: Array<EntityState | null> | null;
|
11080
|
+
observable: {
|
11081
|
+
__typename?: 'EntityReference';
|
11082
|
+
id: string;
|
11083
|
+
};
|
11084
|
+
}> | null;
|
11085
|
+
}> | null;
|
11086
|
+
and?: Array<{
|
11087
|
+
__typename?: 'ContentCriteriaLevel';
|
11088
|
+
feeds?: Array<{
|
11089
|
+
__typename?: 'EntityReference';
|
11090
|
+
id: string;
|
11091
|
+
}> | null;
|
11092
|
+
workflows?: Array<{
|
11093
|
+
__typename?: 'EntityReference';
|
11094
|
+
id: string;
|
11095
|
+
}> | null;
|
11096
|
+
collections?: Array<{
|
11097
|
+
__typename?: 'EntityReference';
|
11098
|
+
id: string;
|
11099
|
+
}> | null;
|
11100
|
+
observations?: Array<{
|
11101
|
+
__typename?: 'ObservationCriteria';
|
11102
|
+
type: ObservableTypes;
|
11103
|
+
states?: Array<EntityState | null> | null;
|
11104
|
+
observable: {
|
11105
|
+
__typename?: 'EntityReference';
|
11106
|
+
id: string;
|
11107
|
+
};
|
11108
|
+
}> | null;
|
11109
|
+
}> | null;
|
10455
11110
|
} | null;
|
10456
11111
|
} | null> | null;
|
10457
11112
|
} | null;
|
@@ -10459,6 +11114,7 @@ export type QueryConversationsQuery = {
|
|
10459
11114
|
export type SuggestConversationMutationVariables = Exact<{
|
10460
11115
|
id: Scalars['ID']['input'];
|
10461
11116
|
count?: InputMaybe<Scalars['Int']['input']>;
|
11117
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
10462
11118
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10463
11119
|
}>;
|
10464
11120
|
export type SuggestConversationMutation = {
|
@@ -10549,6 +11205,8 @@ export type GetEventQuery = {
|
|
10549
11205
|
name: string;
|
10550
11206
|
alternateNames?: Array<string | null> | null;
|
10551
11207
|
creationDate: any;
|
11208
|
+
thing?: string | null;
|
11209
|
+
relevance?: number | null;
|
10552
11210
|
startDate?: any | null;
|
10553
11211
|
endDate?: any | null;
|
10554
11212
|
availabilityStartDate?: any | null;
|
@@ -10582,6 +11240,8 @@ export type QueryEventsQuery = {
|
|
10582
11240
|
name: string;
|
10583
11241
|
alternateNames?: Array<string | null> | null;
|
10584
11242
|
creationDate: any;
|
11243
|
+
thing?: string | null;
|
11244
|
+
relevance?: number | null;
|
10585
11245
|
startDate?: any | null;
|
10586
11246
|
endDate?: any | null;
|
10587
11247
|
availabilityStartDate?: any | null;
|
@@ -10768,6 +11428,8 @@ export type GetFeedQuery = {
|
|
10768
11428
|
__typename?: 'GoogleDriveFeedProperties';
|
10769
11429
|
folderId?: string | null;
|
10770
11430
|
refreshToken: string;
|
11431
|
+
clientId: string;
|
11432
|
+
clientSecret: string;
|
10771
11433
|
} | null;
|
10772
11434
|
} | null;
|
10773
11435
|
email?: {
|
@@ -10778,6 +11440,8 @@ export type GetFeedQuery = {
|
|
10778
11440
|
__typename?: 'GoogleEmailFeedProperties';
|
10779
11441
|
type?: EmailListingTypes | null;
|
10780
11442
|
refreshToken?: string | null;
|
11443
|
+
clientId: string;
|
11444
|
+
clientSecret: string;
|
10781
11445
|
} | null;
|
10782
11446
|
microsoft?: {
|
10783
11447
|
__typename?: 'MicrosoftEmailFeedProperties';
|
@@ -10820,6 +11484,8 @@ export type GetFeedQuery = {
|
|
10820
11484
|
readLimit?: number | null;
|
10821
11485
|
uri: any;
|
10822
11486
|
includeFiles?: boolean | null;
|
11487
|
+
allowedPaths?: Array<string> | null;
|
11488
|
+
excludedPaths?: Array<string> | null;
|
10823
11489
|
} | null;
|
10824
11490
|
reddit?: {
|
10825
11491
|
__typename?: 'RedditFeedProperties';
|
@@ -10964,6 +11630,8 @@ export type QueryFeedsQuery = {
|
|
10964
11630
|
__typename?: 'GoogleDriveFeedProperties';
|
10965
11631
|
folderId?: string | null;
|
10966
11632
|
refreshToken: string;
|
11633
|
+
clientId: string;
|
11634
|
+
clientSecret: string;
|
10967
11635
|
} | null;
|
10968
11636
|
} | null;
|
10969
11637
|
email?: {
|
@@ -10974,6 +11642,8 @@ export type QueryFeedsQuery = {
|
|
10974
11642
|
__typename?: 'GoogleEmailFeedProperties';
|
10975
11643
|
type?: EmailListingTypes | null;
|
10976
11644
|
refreshToken?: string | null;
|
11645
|
+
clientId: string;
|
11646
|
+
clientSecret: string;
|
10977
11647
|
} | null;
|
10978
11648
|
microsoft?: {
|
10979
11649
|
__typename?: 'MicrosoftEmailFeedProperties';
|
@@ -11016,6 +11686,8 @@ export type QueryFeedsQuery = {
|
|
11016
11686
|
readLimit?: number | null;
|
11017
11687
|
uri: any;
|
11018
11688
|
includeFiles?: boolean | null;
|
11689
|
+
allowedPaths?: Array<string> | null;
|
11690
|
+
excludedPaths?: Array<string> | null;
|
11019
11691
|
} | null;
|
11020
11692
|
reddit?: {
|
11021
11693
|
__typename?: 'RedditFeedProperties';
|
@@ -11356,6 +12028,8 @@ export type GetOrganizationQuery = {
|
|
11356
12028
|
name: string;
|
11357
12029
|
alternateNames?: Array<string | null> | null;
|
11358
12030
|
creationDate: any;
|
12031
|
+
thing?: string | null;
|
12032
|
+
relevance?: number | null;
|
11359
12033
|
foundingDate?: any | null;
|
11360
12034
|
industries?: Array<string | null> | null;
|
11361
12035
|
revenue?: any | null;
|
@@ -11385,6 +12059,8 @@ export type QueryOrganizationsQuery = {
|
|
11385
12059
|
name: string;
|
11386
12060
|
alternateNames?: Array<string | null> | null;
|
11387
12061
|
creationDate: any;
|
12062
|
+
thing?: string | null;
|
12063
|
+
relevance?: number | null;
|
11388
12064
|
foundingDate?: any | null;
|
11389
12065
|
industries?: Array<string | null> | null;
|
11390
12066
|
revenue?: any | null;
|
@@ -11481,6 +12157,8 @@ export type GetPersonQuery = {
|
|
11481
12157
|
name: string;
|
11482
12158
|
alternateNames?: Array<string | null> | null;
|
11483
12159
|
creationDate: any;
|
12160
|
+
thing?: string | null;
|
12161
|
+
relevance?: number | null;
|
11484
12162
|
email?: string | null;
|
11485
12163
|
givenName?: string | null;
|
11486
12164
|
familyName?: string | null;
|
@@ -11512,6 +12190,8 @@ export type QueryPersonsQuery = {
|
|
11512
12190
|
name: string;
|
11513
12191
|
alternateNames?: Array<string | null> | null;
|
11514
12192
|
creationDate: any;
|
12193
|
+
thing?: string | null;
|
12194
|
+
relevance?: number | null;
|
11515
12195
|
email?: string | null;
|
11516
12196
|
givenName?: string | null;
|
11517
12197
|
familyName?: string | null;
|
@@ -11610,6 +12290,8 @@ export type GetPlaceQuery = {
|
|
11610
12290
|
name: string;
|
11611
12291
|
alternateNames?: Array<string | null> | null;
|
11612
12292
|
creationDate: any;
|
12293
|
+
thing?: string | null;
|
12294
|
+
relevance?: number | null;
|
11613
12295
|
address?: {
|
11614
12296
|
__typename?: 'Address';
|
11615
12297
|
streetAddress?: string | null;
|
@@ -11633,6 +12315,8 @@ export type QueryPlacesQuery = {
|
|
11633
12315
|
name: string;
|
11634
12316
|
alternateNames?: Array<string | null> | null;
|
11635
12317
|
creationDate: any;
|
12318
|
+
thing?: string | null;
|
12319
|
+
relevance?: number | null;
|
11636
12320
|
address?: {
|
11637
12321
|
__typename?: 'Address';
|
11638
12322
|
streetAddress?: string | null;
|
@@ -11723,6 +12407,8 @@ export type GetProductQuery = {
|
|
11723
12407
|
name: string;
|
11724
12408
|
alternateNames?: Array<string | null> | null;
|
11725
12409
|
creationDate: any;
|
12410
|
+
thing?: string | null;
|
12411
|
+
relevance?: number | null;
|
11726
12412
|
manufacturer?: string | null;
|
11727
12413
|
model?: string | null;
|
11728
12414
|
brand?: string | null;
|
@@ -11753,6 +12439,8 @@ export type QueryProductsQuery = {
|
|
11753
12439
|
name: string;
|
11754
12440
|
alternateNames?: Array<string | null> | null;
|
11755
12441
|
creationDate: any;
|
12442
|
+
thing?: string | null;
|
12443
|
+
relevance?: number | null;
|
11756
12444
|
manufacturer?: string | null;
|
11757
12445
|
model?: string | null;
|
11758
12446
|
brand?: string | null;
|
@@ -11797,6 +12485,8 @@ export type GetProjectQuery = {
|
|
11797
12485
|
environmentType?: EnvironmentTypes | null;
|
11798
12486
|
platform?: ResourceConnectorTypes | null;
|
11799
12487
|
region?: string | null;
|
12488
|
+
credits?: any | null;
|
12489
|
+
lastCreditsDate?: any | null;
|
11800
12490
|
callbackUri?: any | null;
|
11801
12491
|
workflow?: {
|
11802
12492
|
__typename?: 'Workflow';
|
@@ -11812,6 +12502,7 @@ export type GetProjectQuery = {
|
|
11812
12502
|
__typename?: 'ProjectQuota';
|
11813
12503
|
storage?: number | null;
|
11814
12504
|
contents?: number | null;
|
12505
|
+
credits?: number | null;
|
11815
12506
|
feeds?: number | null;
|
11816
12507
|
posts?: number | null;
|
11817
12508
|
conversations?: number | null;
|
@@ -12017,6 +12708,8 @@ export type GetRepoQuery = {
|
|
12017
12708
|
name: string;
|
12018
12709
|
alternateNames?: Array<string | null> | null;
|
12019
12710
|
creationDate: any;
|
12711
|
+
thing?: string | null;
|
12712
|
+
relevance?: number | null;
|
12020
12713
|
} | null;
|
12021
12714
|
};
|
12022
12715
|
export type QueryReposQueryVariables = Exact<{
|
@@ -12032,6 +12725,8 @@ export type QueryReposQuery = {
|
|
12032
12725
|
name: string;
|
12033
12726
|
alternateNames?: Array<string | null> | null;
|
12034
12727
|
creationDate: any;
|
12728
|
+
thing?: string | null;
|
12729
|
+
relevance?: number | null;
|
12035
12730
|
} | null> | null;
|
12036
12731
|
} | null;
|
12037
12732
|
};
|
@@ -12114,6 +12809,8 @@ export type GetSoftwareQuery = {
|
|
12114
12809
|
name: string;
|
12115
12810
|
alternateNames?: Array<string | null> | null;
|
12116
12811
|
creationDate: any;
|
12812
|
+
thing?: string | null;
|
12813
|
+
relevance?: number | null;
|
12117
12814
|
releaseDate?: any | null;
|
12118
12815
|
developer?: string | null;
|
12119
12816
|
} | null;
|
@@ -12131,6 +12828,8 @@ export type QuerySoftwaresQuery = {
|
|
12131
12828
|
name: string;
|
12132
12829
|
alternateNames?: Array<string | null> | null;
|
12133
12830
|
creationDate: any;
|
12831
|
+
thing?: string | null;
|
12832
|
+
relevance?: number | null;
|
12134
12833
|
releaseDate?: any | null;
|
12135
12834
|
developer?: string | null;
|
12136
12835
|
} | null> | null;
|
@@ -12254,6 +12953,8 @@ export type GetSpecificationQuery = {
|
|
12254
12953
|
graphStrategy?: {
|
12255
12954
|
__typename?: 'GraphStrategy';
|
12256
12955
|
type: GraphStrategyTypes;
|
12956
|
+
generateGraph?: boolean | null;
|
12957
|
+
observableLimit?: number | null;
|
12257
12958
|
} | null;
|
12258
12959
|
revisionStrategy?: {
|
12259
12960
|
__typename?: 'RevisionStrategy';
|
@@ -12358,11 +13059,94 @@ export type PromptSpecificationsMutation = {
|
|
12358
13059
|
id: string;
|
12359
13060
|
name: string;
|
12360
13061
|
state: EntityState;
|
13062
|
+
originalDate?: any | null;
|
13063
|
+
uri?: any | null;
|
12361
13064
|
type?: ContentTypes | null;
|
12362
13065
|
fileType?: FileTypes | null;
|
13066
|
+
mimeType?: string | null;
|
13067
|
+
format?: string | null;
|
13068
|
+
formatName?: string | null;
|
13069
|
+
fileExtension?: string | null;
|
12363
13070
|
fileName?: string | null;
|
12364
|
-
|
12365
|
-
|
13071
|
+
fileSize?: any | null;
|
13072
|
+
masterUri?: any | null;
|
13073
|
+
imageUri?: any | null;
|
13074
|
+
textUri?: any | null;
|
13075
|
+
audioUri?: any | null;
|
13076
|
+
transcriptUri?: any | null;
|
13077
|
+
video?: {
|
13078
|
+
__typename?: 'VideoMetadata';
|
13079
|
+
width?: number | null;
|
13080
|
+
height?: number | null;
|
13081
|
+
duration?: string | null;
|
13082
|
+
make?: string | null;
|
13083
|
+
model?: string | null;
|
13084
|
+
software?: string | null;
|
13085
|
+
title?: string | null;
|
13086
|
+
description?: string | null;
|
13087
|
+
keywords?: Array<string | null> | null;
|
13088
|
+
author?: string | null;
|
13089
|
+
} | null;
|
13090
|
+
audio?: {
|
13091
|
+
__typename?: 'AudioMetadata';
|
13092
|
+
keywords?: Array<string | null> | null;
|
13093
|
+
author?: string | null;
|
13094
|
+
series?: string | null;
|
13095
|
+
episode?: string | null;
|
13096
|
+
episodeType?: string | null;
|
13097
|
+
season?: string | null;
|
13098
|
+
publisher?: string | null;
|
13099
|
+
copyright?: string | null;
|
13100
|
+
language?: string | null;
|
13101
|
+
genre?: string | null;
|
13102
|
+
title?: string | null;
|
13103
|
+
description?: string | null;
|
13104
|
+
bitrate?: number | null;
|
13105
|
+
channels?: number | null;
|
13106
|
+
sampleRate?: number | null;
|
13107
|
+
bitsPerSample?: number | null;
|
13108
|
+
duration?: string | null;
|
13109
|
+
} | null;
|
13110
|
+
image?: {
|
13111
|
+
__typename?: 'ImageMetadata';
|
13112
|
+
width?: number | null;
|
13113
|
+
height?: number | null;
|
13114
|
+
resolutionX?: number | null;
|
13115
|
+
resolutionY?: number | null;
|
13116
|
+
bitsPerComponent?: number | null;
|
13117
|
+
components?: number | null;
|
13118
|
+
projectionType?: ImageProjectionTypes | null;
|
13119
|
+
orientation?: OrientationTypes | null;
|
13120
|
+
description?: string | null;
|
13121
|
+
make?: string | null;
|
13122
|
+
model?: string | null;
|
13123
|
+
software?: string | null;
|
13124
|
+
lens?: string | null;
|
13125
|
+
focalLength?: number | null;
|
13126
|
+
exposureTime?: string | null;
|
13127
|
+
fNumber?: string | null;
|
13128
|
+
iso?: string | null;
|
13129
|
+
heading?: number | null;
|
13130
|
+
pitch?: number | null;
|
13131
|
+
} | null;
|
13132
|
+
document?: {
|
13133
|
+
__typename?: 'DocumentMetadata';
|
13134
|
+
title?: string | null;
|
13135
|
+
subject?: string | null;
|
13136
|
+
summary?: string | null;
|
13137
|
+
author?: string | null;
|
13138
|
+
publisher?: string | null;
|
13139
|
+
description?: string | null;
|
13140
|
+
keywords?: Array<string | null> | null;
|
13141
|
+
pageCount?: number | null;
|
13142
|
+
worksheetCount?: number | null;
|
13143
|
+
slideCount?: number | null;
|
13144
|
+
wordCount?: number | null;
|
13145
|
+
lineCount?: number | null;
|
13146
|
+
paragraphCount?: number | null;
|
13147
|
+
isEncrypted?: boolean | null;
|
13148
|
+
hasDigitalSignature?: boolean | null;
|
13149
|
+
} | null;
|
12366
13150
|
} | null;
|
12367
13151
|
} | null> | null;
|
12368
13152
|
} | null> | null;
|
@@ -12417,6 +13201,8 @@ export type QuerySpecificationsQuery = {
|
|
12417
13201
|
graphStrategy?: {
|
12418
13202
|
__typename?: 'GraphStrategy';
|
12419
13203
|
type: GraphStrategyTypes;
|
13204
|
+
generateGraph?: boolean | null;
|
13205
|
+
observableLimit?: number | null;
|
12420
13206
|
} | null;
|
12421
13207
|
revisionStrategy?: {
|
12422
13208
|
__typename?: 'RevisionStrategy';
|
@@ -12525,6 +13311,8 @@ export type CreateWorkflowMutation = {
|
|
12525
13311
|
__typename?: 'IngestionContentFilter';
|
12526
13312
|
types?: Array<ContentTypes> | null;
|
12527
13313
|
fileTypes?: Array<FileTypes> | null;
|
13314
|
+
allowedPaths?: Array<string> | null;
|
13315
|
+
excludedPaths?: Array<string> | null;
|
12528
13316
|
} | null;
|
12529
13317
|
collections?: Array<{
|
12530
13318
|
__typename?: 'EntityReference';
|
@@ -12615,6 +13403,8 @@ export type CreateWorkflowMutation = {
|
|
12615
13403
|
enableCrawling?: boolean | null;
|
12616
13404
|
allowedDomains?: Array<string> | null;
|
12617
13405
|
excludedDomains?: Array<string> | null;
|
13406
|
+
allowedPaths?: Array<string> | null;
|
13407
|
+
excludedPaths?: Array<string> | null;
|
12618
13408
|
allowedLinks?: Array<LinkTypes> | null;
|
12619
13409
|
excludedLinks?: Array<LinkTypes> | null;
|
12620
13410
|
allowedFiles?: Array<FileTypes> | null;
|
@@ -12631,6 +13421,13 @@ export type CreateWorkflowMutation = {
|
|
12631
13421
|
} | null;
|
12632
13422
|
} | null> | null;
|
12633
13423
|
} | null;
|
13424
|
+
storage?: {
|
13425
|
+
__typename?: 'StorageWorkflowStage';
|
13426
|
+
embeddings?: {
|
13427
|
+
__typename?: 'EmbeddingsStrategy';
|
13428
|
+
chunkTokenLimit?: number | null;
|
13429
|
+
} | null;
|
13430
|
+
} | null;
|
12634
13431
|
actions?: Array<{
|
12635
13432
|
__typename?: 'WorkflowAction';
|
12636
13433
|
connector?: {
|
@@ -12703,6 +13500,8 @@ export type GetWorkflowQuery = {
|
|
12703
13500
|
__typename?: 'IngestionContentFilter';
|
12704
13501
|
types?: Array<ContentTypes> | null;
|
12705
13502
|
fileTypes?: Array<FileTypes> | null;
|
13503
|
+
allowedPaths?: Array<string> | null;
|
13504
|
+
excludedPaths?: Array<string> | null;
|
12706
13505
|
} | null;
|
12707
13506
|
collections?: Array<{
|
12708
13507
|
__typename?: 'EntityReference';
|
@@ -12793,6 +13592,8 @@ export type GetWorkflowQuery = {
|
|
12793
13592
|
enableCrawling?: boolean | null;
|
12794
13593
|
allowedDomains?: Array<string> | null;
|
12795
13594
|
excludedDomains?: Array<string> | null;
|
13595
|
+
allowedPaths?: Array<string> | null;
|
13596
|
+
excludedPaths?: Array<string> | null;
|
12796
13597
|
allowedLinks?: Array<LinkTypes> | null;
|
12797
13598
|
excludedLinks?: Array<LinkTypes> | null;
|
12798
13599
|
allowedFiles?: Array<FileTypes> | null;
|
@@ -12809,6 +13610,13 @@ export type GetWorkflowQuery = {
|
|
12809
13610
|
} | null;
|
12810
13611
|
} | null> | null;
|
12811
13612
|
} | null;
|
13613
|
+
storage?: {
|
13614
|
+
__typename?: 'StorageWorkflowStage';
|
13615
|
+
embeddings?: {
|
13616
|
+
__typename?: 'EmbeddingsStrategy';
|
13617
|
+
chunkTokenLimit?: number | null;
|
13618
|
+
} | null;
|
13619
|
+
} | null;
|
12812
13620
|
actions?: Array<{
|
12813
13621
|
__typename?: 'WorkflowAction';
|
12814
13622
|
connector?: {
|
@@ -12847,6 +13655,8 @@ export type QueryWorkflowsQuery = {
|
|
12847
13655
|
__typename?: 'IngestionContentFilter';
|
12848
13656
|
types?: Array<ContentTypes> | null;
|
12849
13657
|
fileTypes?: Array<FileTypes> | null;
|
13658
|
+
allowedPaths?: Array<string> | null;
|
13659
|
+
excludedPaths?: Array<string> | null;
|
12850
13660
|
} | null;
|
12851
13661
|
collections?: Array<{
|
12852
13662
|
__typename?: 'EntityReference';
|
@@ -12937,6 +13747,8 @@ export type QueryWorkflowsQuery = {
|
|
12937
13747
|
enableCrawling?: boolean | null;
|
12938
13748
|
allowedDomains?: Array<string> | null;
|
12939
13749
|
excludedDomains?: Array<string> | null;
|
13750
|
+
allowedPaths?: Array<string> | null;
|
13751
|
+
excludedPaths?: Array<string> | null;
|
12940
13752
|
allowedLinks?: Array<LinkTypes> | null;
|
12941
13753
|
excludedLinks?: Array<LinkTypes> | null;
|
12942
13754
|
allowedFiles?: Array<FileTypes> | null;
|
@@ -12953,6 +13765,13 @@ export type QueryWorkflowsQuery = {
|
|
12953
13765
|
} | null;
|
12954
13766
|
} | null> | null;
|
12955
13767
|
} | null;
|
13768
|
+
storage?: {
|
13769
|
+
__typename?: 'StorageWorkflowStage';
|
13770
|
+
embeddings?: {
|
13771
|
+
__typename?: 'EmbeddingsStrategy';
|
13772
|
+
chunkTokenLimit?: number | null;
|
13773
|
+
} | null;
|
13774
|
+
} | null;
|
12956
13775
|
actions?: Array<{
|
12957
13776
|
__typename?: 'WorkflowAction';
|
12958
13777
|
connector?: {
|
@@ -12985,6 +13804,8 @@ export type UpdateWorkflowMutation = {
|
|
12985
13804
|
__typename?: 'IngestionContentFilter';
|
12986
13805
|
types?: Array<ContentTypes> | null;
|
12987
13806
|
fileTypes?: Array<FileTypes> | null;
|
13807
|
+
allowedPaths?: Array<string> | null;
|
13808
|
+
excludedPaths?: Array<string> | null;
|
12988
13809
|
} | null;
|
12989
13810
|
collections?: Array<{
|
12990
13811
|
__typename?: 'EntityReference';
|
@@ -13075,6 +13896,8 @@ export type UpdateWorkflowMutation = {
|
|
13075
13896
|
enableCrawling?: boolean | null;
|
13076
13897
|
allowedDomains?: Array<string> | null;
|
13077
13898
|
excludedDomains?: Array<string> | null;
|
13899
|
+
allowedPaths?: Array<string> | null;
|
13900
|
+
excludedPaths?: Array<string> | null;
|
13078
13901
|
allowedLinks?: Array<LinkTypes> | null;
|
13079
13902
|
excludedLinks?: Array<LinkTypes> | null;
|
13080
13903
|
allowedFiles?: Array<FileTypes> | null;
|
@@ -13091,6 +13914,13 @@ export type UpdateWorkflowMutation = {
|
|
13091
13914
|
} | null;
|
13092
13915
|
} | null> | null;
|
13093
13916
|
} | null;
|
13917
|
+
storage?: {
|
13918
|
+
__typename?: 'StorageWorkflowStage';
|
13919
|
+
embeddings?: {
|
13920
|
+
__typename?: 'EmbeddingsStrategy';
|
13921
|
+
chunkTokenLimit?: number | null;
|
13922
|
+
} | null;
|
13923
|
+
} | null;
|
13094
13924
|
actions?: Array<{
|
13095
13925
|
__typename?: 'WorkflowAction';
|
13096
13926
|
connector?: {
|