graphlit-client 1.0.20250531005 → 1.0.20250610001
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.
- package/CHANGELOG.md +64 -0
- package/README.md +441 -53
- package/dist/client.d.ts +126 -1
- package/dist/client.js +1616 -1569
- package/dist/generated/graphql-documents.d.ts +1 -0
- package/dist/generated/graphql-documents.js +372 -310
- package/dist/generated/graphql-types.d.ts +207 -23
- package/dist/generated/graphql-types.js +299 -246
- package/dist/model-mapping.d.ts +18 -0
- package/dist/model-mapping.js +95 -0
- package/dist/stream-helpers.d.ts +106 -0
- package/dist/stream-helpers.js +237 -0
- package/dist/streaming/chunk-buffer.d.ts +25 -0
- package/dist/streaming/chunk-buffer.js +170 -0
- package/dist/streaming/llm-formatters.d.ts +64 -0
- package/dist/streaming/llm-formatters.js +187 -0
- package/dist/streaming/providers.d.ts +18 -0
- package/dist/streaming/providers.js +353 -0
- package/dist/streaming/ui-event-adapter.d.ts +52 -0
- package/dist/streaming/ui-event-adapter.js +288 -0
- package/dist/types/agent.d.ts +39 -0
- package/dist/types/agent.js +1 -0
- package/dist/types/streaming.d.ts +58 -0
- package/dist/types/streaming.js +7 -0
- package/dist/types/ui-events.d.ts +38 -0
- package/dist/types/ui-events.js +1 -0
- package/package.json +32 -5
@@ -198,7 +198,7 @@ export type AlertInput = {
|
|
198
198
|
export type AlertResults = {
|
199
199
|
__typename?: 'AlertResults';
|
200
200
|
/** The list of alert query results. */
|
201
|
-
results?: Maybe<Array<
|
201
|
+
results?: Maybe<Array<Alert>>;
|
202
202
|
};
|
203
203
|
/** Represents an alert scheduling policy. */
|
204
204
|
export type AlertSchedulePolicy = {
|
@@ -901,11 +901,20 @@ export type AzureOpenAiModelPropertiesUpdateInput = {
|
|
901
901
|
export declare enum AzureOpenAiModels {
|
902
902
|
/** Developer-specified deployment */
|
903
903
|
Custom = "CUSTOM",
|
904
|
-
/**
|
904
|
+
/**
|
905
|
+
* GPT-4 (Latest)
|
906
|
+
* @deprecated Built-in Azure OpenAI models are longer supported. Use a developer-specified deployment instead.
|
907
|
+
*/
|
905
908
|
Gpt4 = "GPT4",
|
906
|
-
/**
|
909
|
+
/**
|
910
|
+
* GPT-4 Turbo 128k (Latest)
|
911
|
+
* @deprecated Built-in Azure OpenAI models are longer supported. Use a developer-specified deployment instead.
|
912
|
+
*/
|
907
913
|
Gpt4Turbo_128K = "GPT4_TURBO_128K",
|
908
|
-
/**
|
914
|
+
/**
|
915
|
+
* GPT-3.5 Turbo 16k (Latest)
|
916
|
+
* @deprecated Built-in Azure OpenAI models are longer supported. Use a developer-specified deployment instead.
|
917
|
+
*/
|
909
918
|
Gpt35Turbo_16K = "GPT35_TURBO_16K"
|
910
919
|
}
|
911
920
|
/** Represents an Azure Cognitive Services text entity extraction connector. */
|
@@ -1410,7 +1419,7 @@ export type CollectionInput = {
|
|
1410
1419
|
export type CollectionResults = {
|
1411
1420
|
__typename?: 'CollectionResults';
|
1412
1421
|
/** The list of collection query results. */
|
1413
|
-
results?: Maybe<Array<
|
1422
|
+
results?: Maybe<Array<Collection>>;
|
1414
1423
|
};
|
1415
1424
|
/** Collection type */
|
1416
1425
|
export declare enum CollectionTypes {
|
@@ -1492,7 +1501,7 @@ export type ConnectorInput = {
|
|
1492
1501
|
export type ConnectorResults = {
|
1493
1502
|
__typename?: 'ConnectorResults';
|
1494
1503
|
/** The list of connector query results. */
|
1495
|
-
results?: Maybe<Array<
|
1504
|
+
results?: Maybe<Array<Connector>>;
|
1496
1505
|
};
|
1497
1506
|
/** Connector type */
|
1498
1507
|
export declare enum ConnectorTypes {
|
@@ -1551,6 +1560,8 @@ export type Content = {
|
|
1551
1560
|
epsgCode?: Maybe<Scalars['Int']['output']>;
|
1552
1561
|
/** If workflow failed, the error message. */
|
1553
1562
|
error?: Maybe<Scalars['String']['output']>;
|
1563
|
+
/** The geo-tags of the content, as GeoJSON Features with Point geometry. */
|
1564
|
+
features?: Maybe<Scalars['String']['output']>;
|
1554
1565
|
/** The feed where this content was sourced from. */
|
1555
1566
|
feed?: Maybe<Feed>;
|
1556
1567
|
/** The date when the file was created. */
|
@@ -2349,6 +2360,8 @@ export type ConversationInput = {
|
|
2349
2360
|
name: Scalars['String']['input'];
|
2350
2361
|
/** The LLM specification used by this conversation, optional. */
|
2351
2362
|
specification?: InputMaybe<EntityReferenceInput>;
|
2363
|
+
/** The tool calling definitions. */
|
2364
|
+
tools?: InputMaybe<Array<ToolDefinitionInput>>;
|
2352
2365
|
/** The conversation type. */
|
2353
2366
|
type?: InputMaybe<ConversationTypes>;
|
2354
2367
|
};
|
@@ -2403,7 +2416,7 @@ export type ConversationMessageInput = {
|
|
2403
2416
|
export type ConversationResults = {
|
2404
2417
|
__typename?: 'ConversationResults';
|
2405
2418
|
/** The list of conversation query results. */
|
2406
|
-
results?: Maybe<Array<
|
2419
|
+
results?: Maybe<Array<Conversation>>;
|
2407
2420
|
};
|
2408
2421
|
/** Conversation message role type */
|
2409
2422
|
export declare enum ConversationRoleTypes {
|
@@ -2520,6 +2533,8 @@ export type ConversationUpdateInput = {
|
|
2520
2533
|
name?: InputMaybe<Scalars['String']['input']>;
|
2521
2534
|
/** The LLM specification used by this conversation, optional. */
|
2522
2535
|
specification?: InputMaybe<EntityReferenceInput>;
|
2536
|
+
/** The tool calling definitions. */
|
2537
|
+
tools?: InputMaybe<Array<ToolDefinitionInput>>;
|
2523
2538
|
};
|
2524
2539
|
/** Represents a count. */
|
2525
2540
|
export type CountResult = {
|
@@ -3891,7 +3906,7 @@ export declare enum FeedListingTypes {
|
|
3891
3906
|
export type FeedResults = {
|
3892
3907
|
__typename?: 'FeedResults';
|
3893
3908
|
/** The list of feed query results. */
|
3894
|
-
results?: Maybe<Array<
|
3909
|
+
results?: Maybe<Array<Feed>>;
|
3895
3910
|
};
|
3896
3911
|
/** Represents a feed schedule policy. */
|
3897
3912
|
export type FeedSchedulePolicy = {
|
@@ -4053,6 +4068,8 @@ export type FilePreparationConnector = {
|
|
4053
4068
|
modelDocument?: Maybe<ModelDocumentPreparationProperties>;
|
4054
4069
|
/** The specific properties for web page preparation. */
|
4055
4070
|
page?: Maybe<PagePreparationProperties>;
|
4071
|
+
/** The specific properties for Reducto document preparation. */
|
4072
|
+
reducto?: Maybe<ReductoDocumentPreparationProperties>;
|
4056
4073
|
/** The file preparation service type. */
|
4057
4074
|
type: FilePreparationServiceTypes;
|
4058
4075
|
};
|
@@ -4076,6 +4093,8 @@ export type FilePreparationConnectorInput = {
|
|
4076
4093
|
modelDocument?: InputMaybe<ModelDocumentPreparationPropertiesInput>;
|
4077
4094
|
/** The specific properties for web page preparation. */
|
4078
4095
|
page?: InputMaybe<PagePreparationPropertiesInput>;
|
4096
|
+
/** The specific properties for Reducto document preparation. */
|
4097
|
+
reducto?: InputMaybe<ReductoDocumentPreparationPropertiesInput>;
|
4079
4098
|
/** The file preparation service type. */
|
4080
4099
|
type: FilePreparationServiceTypes;
|
4081
4100
|
};
|
@@ -4096,7 +4115,9 @@ export declare enum FilePreparationServiceTypes {
|
|
4096
4115
|
/** LLM Document Preparation */
|
4097
4116
|
ModelDocument = "MODEL_DOCUMENT",
|
4098
4117
|
/** Web Page Preparation */
|
4099
|
-
Page = "PAGE"
|
4118
|
+
Page = "PAGE",
|
4119
|
+
/** Reducto Document Extraction */
|
4120
|
+
ReductoDocument = "REDUCTO_DOCUMENT"
|
4100
4121
|
}
|
4101
4122
|
/** File type */
|
4102
4123
|
export declare enum FileTypes {
|
@@ -4485,18 +4506,27 @@ export declare enum GoogleModels {
|
|
4485
4506
|
Gemini_2_0Flash = "GEMINI_2_0_FLASH",
|
4486
4507
|
/** Gemini 2.0 Flash (001 version) */
|
4487
4508
|
Gemini_2_0Flash_001 = "GEMINI_2_0_FLASH_001",
|
4488
|
-
/**
|
4509
|
+
/**
|
4510
|
+
* Gemini 2.0 Flash (Experimental)
|
4511
|
+
* @deprecated Use Gemini 2.0 Flash (Latest) instead.
|
4512
|
+
*/
|
4489
4513
|
Gemini_2_0FlashExperimental = "GEMINI_2_0_FLASH_EXPERIMENTAL",
|
4490
|
-
/**
|
4514
|
+
/**
|
4515
|
+
* Gemini 2.0 Flash Thinking (Experimental)
|
4516
|
+
* @deprecated Use Gemini 2.5 Flash (Preview) instead.
|
4517
|
+
*/
|
4491
4518
|
Gemini_2_0FlashThinkingExperimental = "GEMINI_2_0_FLASH_THINKING_EXPERIMENTAL",
|
4492
4519
|
/**
|
4493
4520
|
* Gemini 2.0 Pro (Experimental)
|
4494
|
-
* @deprecated Use Gemini 2.5 Pro (
|
4521
|
+
* @deprecated Use Gemini 2.5 Pro (Preview) instead.
|
4495
4522
|
*/
|
4496
4523
|
Gemini_2_0ProExperimental = "GEMINI_2_0_PRO_EXPERIMENTAL",
|
4497
4524
|
/** Gemini 2.5 Flash (Preview) */
|
4498
4525
|
Gemini_2_5FlashPreview = "GEMINI_2_5_FLASH_PREVIEW",
|
4499
|
-
/**
|
4526
|
+
/**
|
4527
|
+
* Gemini 2.5 Pro (Experimental)
|
4528
|
+
* @deprecated Use Gemini 2.5 Pro (Preview) instead.
|
4529
|
+
*/
|
4500
4530
|
Gemini_2_5ProExperimental = "GEMINI_2_5_PRO_EXPERIMENTAL",
|
4501
4531
|
/** Gemini 2.5 Pro (Preview) */
|
4502
4532
|
Gemini_2_5ProPreview = "GEMINI_2_5_PRO_PREVIEW"
|
@@ -7658,6 +7688,8 @@ export type Mutation = {
|
|
7658
7688
|
addContentsToCollections?: Maybe<Array<Maybe<Collection>>>;
|
7659
7689
|
/** Ask questions about the Graphlit API or SDKs. Can create code samples for any API call. */
|
7660
7690
|
askGraphlit?: Maybe<AskGraphlit>;
|
7691
|
+
/** Branches an existing conversation. */
|
7692
|
+
branchConversation?: Maybe<Conversation>;
|
7661
7693
|
/** Clears an existing conversation. */
|
7662
7694
|
clearConversation?: Maybe<Conversation>;
|
7663
7695
|
/** Closes an existing collection. */
|
@@ -8074,6 +8106,10 @@ export type MutationAskGraphlitArgs = {
|
|
8074
8106
|
specification?: InputMaybe<EntityReferenceInput>;
|
8075
8107
|
type?: InputMaybe<SdkTypes>;
|
8076
8108
|
};
|
8109
|
+
export type MutationBranchConversationArgs = {
|
8110
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8111
|
+
id: Scalars['ID']['input'];
|
8112
|
+
};
|
8077
8113
|
export type MutationClearConversationArgs = {
|
8078
8114
|
id: Scalars['ID']['input'];
|
8079
8115
|
};
|
@@ -8569,6 +8605,7 @@ export type MutationFormatConversationArgs = {
|
|
8569
8605
|
includeDetails?: InputMaybe<Scalars['Boolean']['input']>;
|
8570
8606
|
prompt: Scalars['String']['input'];
|
8571
8607
|
specification?: InputMaybe<EntityReferenceInput>;
|
8608
|
+
tools?: InputMaybe<Array<ToolDefinitionInput>>;
|
8572
8609
|
};
|
8573
8610
|
export type MutationIngestBatchArgs = {
|
8574
8611
|
collections?: InputMaybe<Array<EntityReferenceInput>>;
|
@@ -11686,6 +11723,67 @@ export type RedditFeedPropertiesUpdateInput = {
|
|
11686
11723
|
/** The limit of items to be read from feed, defaults to 100. */
|
11687
11724
|
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
11688
11725
|
};
|
11726
|
+
/** Represents the Reducto document preparation properties. */
|
11727
|
+
export type ReductoDocumentPreparationProperties = {
|
11728
|
+
__typename?: 'ReductoDocumentPreparationProperties';
|
11729
|
+
/** Whether to enable Reducto enrichment, optional. */
|
11730
|
+
enableEnrichment?: Maybe<Scalars['Boolean']['output']>;
|
11731
|
+
/** The Reducto enrichment mode, optional. */
|
11732
|
+
enrichmentMode?: Maybe<ReductoEnrichmentModes>;
|
11733
|
+
/** The Reducto extraction mode, optional. */
|
11734
|
+
extractionMode?: Maybe<ReductoExtractionModes>;
|
11735
|
+
/** The Reducto API key, optional. */
|
11736
|
+
key?: Maybe<Scalars['String']['output']>;
|
11737
|
+
/** The Reducto OCR mode, optional. */
|
11738
|
+
ocrMode?: Maybe<ReductoOcrModes>;
|
11739
|
+
/** The Reducto OCR system, optional. */
|
11740
|
+
ocrSystem?: Maybe<ReductoOcrSystems>;
|
11741
|
+
};
|
11742
|
+
/** Represents the Reducto document preparation properties. */
|
11743
|
+
export type ReductoDocumentPreparationPropertiesInput = {
|
11744
|
+
/** Whether to enable Reducto enrichment, optional. */
|
11745
|
+
enableEnrichment?: InputMaybe<Scalars['Boolean']['input']>;
|
11746
|
+
/** The Reducto enrichment mode, optional. */
|
11747
|
+
enrichmentMode?: InputMaybe<ReductoEnrichmentModes>;
|
11748
|
+
/** The Reducto extraction mode, optional. */
|
11749
|
+
extractionMode?: InputMaybe<ReductoExtractionModes>;
|
11750
|
+
/** The Reducto API key, optional. */
|
11751
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
11752
|
+
/** The Reducto OCR mode, optional. */
|
11753
|
+
ocrMode?: InputMaybe<ReductoOcrModes>;
|
11754
|
+
/** The Reducto OCR system, optional. */
|
11755
|
+
ocrSystem?: InputMaybe<ReductoOcrSystems>;
|
11756
|
+
};
|
11757
|
+
export declare enum ReductoEnrichmentModes {
|
11758
|
+
/** Page */
|
11759
|
+
Page = "PAGE",
|
11760
|
+
/** Standard */
|
11761
|
+
Standard = "STANDARD",
|
11762
|
+
/** Table */
|
11763
|
+
Table = "TABLE"
|
11764
|
+
}
|
11765
|
+
export declare enum ReductoExtractionModes {
|
11766
|
+
/** Hybrid */
|
11767
|
+
Hybrid = "HYBRID",
|
11768
|
+
/** Metadata */
|
11769
|
+
Metadata = "METADATA",
|
11770
|
+
/** OCR */
|
11771
|
+
Ocr = "OCR"
|
11772
|
+
}
|
11773
|
+
export declare enum ReductoOcrModes {
|
11774
|
+
/** Agentic */
|
11775
|
+
Agentic = "AGENTIC",
|
11776
|
+
/** Standard */
|
11777
|
+
Standard = "STANDARD"
|
11778
|
+
}
|
11779
|
+
export declare enum ReductoOcrSystems {
|
11780
|
+
/** Combined */
|
11781
|
+
Combined = "COMBINED",
|
11782
|
+
/** Highres */
|
11783
|
+
Highres = "HIGHRES",
|
11784
|
+
/** Multilingual */
|
11785
|
+
Multilingual = "MULTILINGUAL"
|
11786
|
+
}
|
11689
11787
|
/** Represents the regex prompt content classification rule. */
|
11690
11788
|
export type RegexClassificationRule = {
|
11691
11789
|
__typename?: 'RegexClassificationRule';
|
@@ -12769,7 +12867,7 @@ export type SpecificationInput = {
|
|
12769
12867
|
export type SpecificationResults = {
|
12770
12868
|
__typename?: 'SpecificationResults';
|
12771
12869
|
/** The list of specification query results. */
|
12772
|
-
results?: Maybe<Array<
|
12870
|
+
results?: Maybe<Array<Specification>>;
|
12773
12871
|
};
|
12774
12872
|
/** Specification type */
|
12775
12873
|
export declare enum SpecificationTypes {
|
@@ -12783,6 +12881,8 @@ export declare enum SpecificationTypes {
|
|
12783
12881
|
ImageEmbedding = "IMAGE_EMBEDDING",
|
12784
12882
|
/** Document preparation */
|
12785
12883
|
Preparation = "PREPARATION",
|
12884
|
+
/** Content summarization */
|
12885
|
+
Summarization = "SUMMARIZATION",
|
12786
12886
|
/** Text embedding */
|
12787
12887
|
TextEmbedding = "TEXT_EMBEDDING"
|
12788
12888
|
}
|
@@ -12929,6 +13029,8 @@ export declare enum SummarizationTypes {
|
|
12929
13029
|
Chapters = "CHAPTERS",
|
12930
13030
|
/** Custom prompt */
|
12931
13031
|
Custom = "CUSTOM",
|
13032
|
+
/** Geotag (from text) */
|
13033
|
+
Geotag = "GEOTAG",
|
12932
13034
|
/** Headlines */
|
12933
13035
|
Headlines = "HEADLINES",
|
12934
13036
|
/** Keywords */
|
@@ -13385,7 +13487,7 @@ export type UserInput = {
|
|
13385
13487
|
export type UserResults = {
|
13386
13488
|
__typename?: 'UserResults';
|
13387
13489
|
/** The list of user query results. */
|
13388
|
-
results?: Maybe<Array<
|
13490
|
+
results?: Maybe<Array<User>>;
|
13389
13491
|
};
|
13390
13492
|
/** User type */
|
13391
13493
|
export declare enum UserTypes {
|
@@ -13660,7 +13762,7 @@ export type WorkflowInput = {
|
|
13660
13762
|
export type WorkflowResults = {
|
13661
13763
|
__typename?: 'WorkflowResults';
|
13662
13764
|
/** The list of workflow query results. */
|
13663
|
-
results?: Maybe<Array<
|
13765
|
+
results?: Maybe<Array<Workflow>>;
|
13664
13766
|
};
|
13665
13767
|
/** Represents a workflow. */
|
13666
13768
|
export type WorkflowUpdateInput = {
|
@@ -14236,7 +14338,7 @@ export type QueryAlertsQuery = {
|
|
14236
14338
|
__typename?: 'EntityReference';
|
14237
14339
|
id: string;
|
14238
14340
|
} | null;
|
14239
|
-
}
|
14341
|
+
}> | null;
|
14240
14342
|
} | null;
|
14241
14343
|
};
|
14242
14344
|
export type UpdateAlertMutationVariables = Exact<{
|
@@ -14494,7 +14596,7 @@ export type QueryCollectionsQuery = {
|
|
14494
14596
|
id: string;
|
14495
14597
|
name: string;
|
14496
14598
|
} | null> | null;
|
14497
|
-
}
|
14599
|
+
}> | null;
|
14498
14600
|
} | null;
|
14499
14601
|
};
|
14500
14602
|
export type RemoveContentsFromCollectionMutationVariables = Exact<{
|
@@ -14937,6 +15039,10 @@ export type GetContentQuery = {
|
|
14937
15039
|
description?: string | null;
|
14938
15040
|
identifier?: string | null;
|
14939
15041
|
markdown?: string | null;
|
15042
|
+
boundary?: string | null;
|
15043
|
+
epsgCode?: number | null;
|
15044
|
+
path?: string | null;
|
15045
|
+
features?: string | null;
|
14940
15046
|
c4id?: string | null;
|
14941
15047
|
type?: ContentTypes | null;
|
14942
15048
|
fileType?: FileTypes | null;
|
@@ -14976,6 +15082,25 @@ export type GetContentQuery = {
|
|
14976
15082
|
latitude?: number | null;
|
14977
15083
|
longitude?: number | null;
|
14978
15084
|
} | null;
|
15085
|
+
h3?: {
|
15086
|
+
__typename?: 'H3';
|
15087
|
+
h3r0?: string | null;
|
15088
|
+
h3r1?: string | null;
|
15089
|
+
h3r2?: string | null;
|
15090
|
+
h3r3?: string | null;
|
15091
|
+
h3r4?: string | null;
|
15092
|
+
h3r5?: string | null;
|
15093
|
+
h3r6?: string | null;
|
15094
|
+
h3r7?: string | null;
|
15095
|
+
h3r8?: string | null;
|
15096
|
+
h3r9?: string | null;
|
15097
|
+
h3r10?: string | null;
|
15098
|
+
h3r11?: string | null;
|
15099
|
+
h3r12?: string | null;
|
15100
|
+
h3r13?: string | null;
|
15101
|
+
h3r14?: string | null;
|
15102
|
+
h3r15?: string | null;
|
15103
|
+
} | null;
|
14979
15104
|
video?: {
|
14980
15105
|
__typename?: 'VideoMetadata';
|
14981
15106
|
width?: number | null;
|
@@ -16581,6 +16706,19 @@ export type AskGraphlitMutation = {
|
|
16581
16706
|
} | null;
|
16582
16707
|
} | null;
|
16583
16708
|
};
|
16709
|
+
export type BranchConversationMutationVariables = Exact<{
|
16710
|
+
id: Scalars['ID']['input'];
|
16711
|
+
}>;
|
16712
|
+
export type BranchConversationMutation = {
|
16713
|
+
__typename?: 'Mutation';
|
16714
|
+
branchConversation?: {
|
16715
|
+
__typename?: 'Conversation';
|
16716
|
+
id: string;
|
16717
|
+
name: string;
|
16718
|
+
state: EntityState;
|
16719
|
+
type?: ConversationTypes | null;
|
16720
|
+
} | null;
|
16721
|
+
};
|
16584
16722
|
export type ClearConversationMutationVariables = Exact<{
|
16585
16723
|
id: Scalars['ID']['input'];
|
16586
16724
|
}>;
|
@@ -17356,6 +17494,7 @@ export type FormatConversationMutationVariables = Exact<{
|
|
17356
17494
|
prompt: Scalars['String']['input'];
|
17357
17495
|
id?: InputMaybe<Scalars['ID']['input']>;
|
17358
17496
|
specification?: InputMaybe<EntityReferenceInput>;
|
17497
|
+
tools?: InputMaybe<Array<ToolDefinitionInput> | ToolDefinitionInput>;
|
17359
17498
|
includeDetails?: InputMaybe<Scalars['Boolean']['input']>;
|
17360
17499
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
17361
17500
|
}>;
|
@@ -19087,7 +19226,7 @@ export type QueryConversationsQuery = {
|
|
19087
19226
|
}> | null;
|
19088
19227
|
}> | null;
|
19089
19228
|
} | null;
|
19090
|
-
}
|
19229
|
+
}> | null;
|
19091
19230
|
} | null;
|
19092
19231
|
};
|
19093
19232
|
export type RetrieveSourcesMutationVariables = Exact<{
|
@@ -20570,7 +20709,7 @@ export type QueryFeedsQuery = {
|
|
20570
20709
|
recurrenceType?: TimedPolicyRecurrenceTypes | null;
|
20571
20710
|
repeatInterval?: any | null;
|
20572
20711
|
} | null;
|
20573
|
-
}
|
20712
|
+
}> | null;
|
20574
20713
|
} | null;
|
20575
20714
|
};
|
20576
20715
|
export type QueryLinearProjectsQueryVariables = Exact<{
|
@@ -23788,7 +23927,7 @@ export type QuerySpecificationsQuery = {
|
|
23788
23927
|
modelName?: string | null;
|
23789
23928
|
chunkTokenLimit?: number | null;
|
23790
23929
|
} | null;
|
23791
|
-
}
|
23930
|
+
}> | null;
|
23792
23931
|
} | null;
|
23793
23932
|
};
|
23794
23933
|
export type SpecificationExistsQueryVariables = Exact<{
|
@@ -24088,7 +24227,7 @@ export type QueryUsersQuery = {
|
|
24088
24227
|
} | null;
|
24089
24228
|
} | null;
|
24090
24229
|
} | null> | null;
|
24091
|
-
}
|
24230
|
+
}> | null;
|
24092
24231
|
} | null;
|
24093
24232
|
};
|
24094
24233
|
export type UpdateUserMutationVariables = Exact<{
|
@@ -24230,6 +24369,15 @@ export type CreateWorkflowMutation = {
|
|
24230
24369
|
id: string;
|
24231
24370
|
} | null;
|
24232
24371
|
} | null;
|
24372
|
+
reducto?: {
|
24373
|
+
__typename?: 'ReductoDocumentPreparationProperties';
|
24374
|
+
ocrMode?: ReductoOcrModes | null;
|
24375
|
+
ocrSystem?: ReductoOcrSystems | null;
|
24376
|
+
extractionMode?: ReductoExtractionModes | null;
|
24377
|
+
enableEnrichment?: boolean | null;
|
24378
|
+
enrichmentMode?: ReductoEnrichmentModes | null;
|
24379
|
+
key?: string | null;
|
24380
|
+
} | null;
|
24233
24381
|
mistral?: {
|
24234
24382
|
__typename?: 'MistralDocumentPreparationProperties';
|
24235
24383
|
key?: string | null;
|
@@ -24533,6 +24681,15 @@ export type GetWorkflowQuery = {
|
|
24533
24681
|
id: string;
|
24534
24682
|
} | null;
|
24535
24683
|
} | null;
|
24684
|
+
reducto?: {
|
24685
|
+
__typename?: 'ReductoDocumentPreparationProperties';
|
24686
|
+
ocrMode?: ReductoOcrModes | null;
|
24687
|
+
ocrSystem?: ReductoOcrSystems | null;
|
24688
|
+
extractionMode?: ReductoExtractionModes | null;
|
24689
|
+
enableEnrichment?: boolean | null;
|
24690
|
+
enrichmentMode?: ReductoEnrichmentModes | null;
|
24691
|
+
key?: string | null;
|
24692
|
+
} | null;
|
24536
24693
|
mistral?: {
|
24537
24694
|
__typename?: 'MistralDocumentPreparationProperties';
|
24538
24695
|
key?: string | null;
|
@@ -24802,6 +24959,15 @@ export type QueryWorkflowsQuery = {
|
|
24802
24959
|
id: string;
|
24803
24960
|
} | null;
|
24804
24961
|
} | null;
|
24962
|
+
reducto?: {
|
24963
|
+
__typename?: 'ReductoDocumentPreparationProperties';
|
24964
|
+
ocrMode?: ReductoOcrModes | null;
|
24965
|
+
ocrSystem?: ReductoOcrSystems | null;
|
24966
|
+
extractionMode?: ReductoExtractionModes | null;
|
24967
|
+
enableEnrichment?: boolean | null;
|
24968
|
+
enrichmentMode?: ReductoEnrichmentModes | null;
|
24969
|
+
key?: string | null;
|
24970
|
+
} | null;
|
24805
24971
|
mistral?: {
|
24806
24972
|
__typename?: 'MistralDocumentPreparationProperties';
|
24807
24973
|
key?: string | null;
|
@@ -24947,7 +25113,7 @@ export type QueryWorkflowsQuery = {
|
|
24947
25113
|
} | null;
|
24948
25114
|
} | null;
|
24949
25115
|
} | null> | null;
|
24950
|
-
}
|
25116
|
+
}> | null;
|
24951
25117
|
} | null;
|
24952
25118
|
};
|
24953
25119
|
export type UpdateWorkflowMutationVariables = Exact<{
|
@@ -25063,6 +25229,15 @@ export type UpdateWorkflowMutation = {
|
|
25063
25229
|
id: string;
|
25064
25230
|
} | null;
|
25065
25231
|
} | null;
|
25232
|
+
reducto?: {
|
25233
|
+
__typename?: 'ReductoDocumentPreparationProperties';
|
25234
|
+
ocrMode?: ReductoOcrModes | null;
|
25235
|
+
ocrSystem?: ReductoOcrSystems | null;
|
25236
|
+
extractionMode?: ReductoExtractionModes | null;
|
25237
|
+
enableEnrichment?: boolean | null;
|
25238
|
+
enrichmentMode?: ReductoEnrichmentModes | null;
|
25239
|
+
key?: string | null;
|
25240
|
+
} | null;
|
25066
25241
|
mistral?: {
|
25067
25242
|
__typename?: 'MistralDocumentPreparationProperties';
|
25068
25243
|
key?: string | null;
|
@@ -25323,6 +25498,15 @@ export type UpsertWorkflowMutation = {
|
|
25323
25498
|
id: string;
|
25324
25499
|
} | null;
|
25325
25500
|
} | null;
|
25501
|
+
reducto?: {
|
25502
|
+
__typename?: 'ReductoDocumentPreparationProperties';
|
25503
|
+
ocrMode?: ReductoOcrModes | null;
|
25504
|
+
ocrSystem?: ReductoOcrSystems | null;
|
25505
|
+
extractionMode?: ReductoExtractionModes | null;
|
25506
|
+
enableEnrichment?: boolean | null;
|
25507
|
+
enrichmentMode?: ReductoEnrichmentModes | null;
|
25508
|
+
key?: string | null;
|
25509
|
+
} | null;
|
25326
25510
|
mistral?: {
|
25327
25511
|
__typename?: 'MistralDocumentPreparationProperties';
|
25328
25512
|
key?: string | null;
|