@uipath/uipath-typescript 1.3.4 → 1.3.5

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.
@@ -0,0 +1,1185 @@
1
+ declare enum DocumentActionPriority {
2
+ Low = "Low",
3
+ Medium = "Medium",
4
+ High = "High",
5
+ Critical = "Critical"
6
+ }
7
+ declare enum DocumentActionStatus {
8
+ Unassigned = "Unassigned",
9
+ Pending = "Pending",
10
+ Completed = "Completed"
11
+ }
12
+ declare enum DocumentActionType {
13
+ Validation = "Validation",
14
+ Classification = "Classification"
15
+ }
16
+ interface UserData {
17
+ id?: number | null;
18
+ emailAddress?: string | null;
19
+ }
20
+
21
+ declare enum ComparisonOperator {
22
+ Equals = "Equals",
23
+ NotEquals = "NotEquals",
24
+ Greater = "Greater",
25
+ Less = "Less",
26
+ GreaterOrEqual = "GreaterOrEqual",
27
+ LessOrEqual = "LessOrEqual"
28
+ }
29
+ declare enum Criticality {
30
+ Must = "Must",
31
+ Should = "Should"
32
+ }
33
+ declare enum FieldType {
34
+ Text = "Text",
35
+ Number = "Number",
36
+ Date = "Date",
37
+ Name = "Name",
38
+ Address = "Address",
39
+ Keyword = "Keyword",
40
+ Set = "Set",
41
+ Boolean = "Boolean",
42
+ Table = "Table",
43
+ Internal = "Internal",
44
+ FieldGroup = "FieldGroup",
45
+ MonetaryQuantity = "MonetaryQuantity"
46
+ }
47
+ declare enum LogicalOperator {
48
+ AND = "AND",
49
+ OR = "OR"
50
+ }
51
+ declare enum RuleType {
52
+ Mandatory = "Mandatory",
53
+ PossibleValues = "PossibleValues",
54
+ Regex = "Regex",
55
+ StartsWith = "StartsWith",
56
+ EndsWith = "EndsWith",
57
+ FixedLength = "FixedLength",
58
+ IsNumeric = "IsNumeric",
59
+ IsDate = "IsDate",
60
+ IsEmail = "IsEmail",
61
+ Contains = "Contains",
62
+ Expression = "Expression",
63
+ TableExpression = "TableExpression",
64
+ IsEmpty = "IsEmpty"
65
+ }
66
+ interface DataSource {
67
+ resourceId?: string | null;
68
+ elementFieldId?: string | null;
69
+ }
70
+ interface DocumentGroup {
71
+ name?: string | null;
72
+ categories?: string[] | null;
73
+ }
74
+ interface DocumentTaxonomy {
75
+ dataContractVersion?: string | null;
76
+ documentTypes?: DocumentTypeEntity[] | null;
77
+ groups?: DocumentGroup[] | null;
78
+ supportedLanguages?: LanguageInfo[] | null;
79
+ reportAsExceptionSettings?: ReportAsExceptionSettings;
80
+ }
81
+ interface DocumentTypeEntity {
82
+ documentTypeId?: string | null;
83
+ group?: string | null;
84
+ category?: string | null;
85
+ name?: string | null;
86
+ optionalUniqueIdentifier?: string | null;
87
+ typeField?: TypeField;
88
+ fields?: Field[] | null;
89
+ metadata?: MetadataEntry[] | null;
90
+ }
91
+ interface ExceptionReasonOption {
92
+ exceptionReason?: string | null;
93
+ }
94
+ interface Field {
95
+ fieldId?: string | null;
96
+ fieldName?: string | null;
97
+ isMultiValue?: boolean;
98
+ type?: FieldType;
99
+ deriveFieldsFormat?: string | null;
100
+ components?: Field[] | null;
101
+ setValues?: string[] | null;
102
+ metadata?: MetadataEntry[] | null;
103
+ ruleSet?: RuleSet;
104
+ defaultValue?: string | null;
105
+ dataSource?: DataSource;
106
+ }
107
+ interface LanguageInfo {
108
+ name?: string | null;
109
+ code?: string | null;
110
+ }
111
+ interface MetadataEntry {
112
+ key?: string | null;
113
+ value?: string | null;
114
+ }
115
+ interface ReportAsExceptionSettings {
116
+ exceptionReasonOptions?: ExceptionReasonOption[] | null;
117
+ }
118
+ interface Rule {
119
+ name?: string | null;
120
+ type?: RuleType;
121
+ logicalOperator?: LogicalOperator;
122
+ comparisonOperator?: ComparisonOperator;
123
+ expression?: string | null;
124
+ setValues?: string[] | null;
125
+ }
126
+ interface RuleSet {
127
+ criticality?: Criticality;
128
+ rules?: Rule[] | null;
129
+ }
130
+ interface TypeField {
131
+ fieldId?: string | null;
132
+ fieldName?: string | null;
133
+ }
134
+
135
+ interface FieldValue {
136
+ value?: string | null;
137
+ derivedValue?: string | null;
138
+ }
139
+ interface FieldValueResult {
140
+ value?: FieldValue;
141
+ isValid?: boolean;
142
+ rules?: RuleResult[] | null;
143
+ }
144
+ interface RuleResult {
145
+ rule?: Rule;
146
+ isValid?: boolean;
147
+ }
148
+ interface RuleSetResult {
149
+ fieldId?: string | null;
150
+ fieldType?: FieldType;
151
+ criticality?: Criticality;
152
+ isValid?: boolean;
153
+ results?: FieldValueResult[] | null;
154
+ brokenRules?: Rule[] | null;
155
+ rowIndex?: number | null;
156
+ tableFieldId?: string | null;
157
+ }
158
+
159
+ interface ErrorResponse {
160
+ message?: string | null;
161
+ severity?: 'Info' | 'Warning' | 'Error';
162
+ code?: string | null;
163
+ parameters?: string[] | null;
164
+ }
165
+
166
+ declare enum ClassifierDocumentTypeType {
167
+ FormsAi = "FormsAi",
168
+ SemiStructuredAi = "SemiStructuredAi",
169
+ Helix = "Helix",
170
+ Unknown = "Unknown"
171
+ }
172
+ declare enum CreateTaskPriority {
173
+ Low = "Low",
174
+ Medium = "Medium",
175
+ High = "High",
176
+ Critical = "Critical"
177
+ }
178
+ declare enum GptFieldType {
179
+ Address = "Address",
180
+ Boolean = "Boolean",
181
+ Date = "Date",
182
+ Name = "Name",
183
+ Number = "Number",
184
+ Text = "Text"
185
+ }
186
+ declare enum ValidationDisplayMode {
187
+ Classic = "Classic",
188
+ Compact = "Compact"
189
+ }
190
+ interface ClassificationPrompt {
191
+ name?: string | null;
192
+ description?: string | null;
193
+ }
194
+ interface ClassificationValidationConfiguration {
195
+ enablePageReordering?: boolean;
196
+ }
197
+ interface ContentValidationData {
198
+ bucketName?: string | null;
199
+ bucketId?: number;
200
+ folderId?: number;
201
+ folderKey?: string;
202
+ documentId?: string;
203
+ encodedDocumentPath?: string | null;
204
+ textPath?: string | null;
205
+ documentObjectModelPath?: string | null;
206
+ taxonomyPath?: string | null;
207
+ automaticExtractionResultsPath?: string | null;
208
+ validatedExtractionResultsPath?: string | null;
209
+ customizationInfoPath?: string | null;
210
+ }
211
+ interface DocumentClassificationActionDataModel {
212
+ id?: number | null;
213
+ status?: DocumentActionStatus;
214
+ title?: string | null;
215
+ priority?: DocumentActionPriority;
216
+ taskCatalogName?: string | null;
217
+ taskUrl?: string | null;
218
+ folderPath?: string | null;
219
+ folderId?: number | null;
220
+ data?: unknown | null;
221
+ action?: string | null;
222
+ isDeleted?: boolean | null;
223
+ assignedToUser?: UserData;
224
+ creatorUser?: UserData;
225
+ deleterUser?: UserData;
226
+ lastModifierUser?: UserData;
227
+ completedByUser?: UserData;
228
+ creationTime?: string | null;
229
+ lastAssignedTime?: string | null;
230
+ completionTime?: string | null;
231
+ processingTime?: number | null;
232
+ type?: DocumentActionType;
233
+ }
234
+ interface DocumentExtractionActionDataModel {
235
+ id?: number | null;
236
+ status?: DocumentActionStatus;
237
+ title?: string | null;
238
+ priority?: DocumentActionPriority;
239
+ taskCatalogName?: string | null;
240
+ taskUrl?: string | null;
241
+ folderPath?: string | null;
242
+ folderId?: number | null;
243
+ data?: unknown | null;
244
+ action?: string | null;
245
+ isDeleted?: boolean | null;
246
+ assignedToUser?: UserData;
247
+ creatorUser?: UserData;
248
+ deleterUser?: UserData;
249
+ lastModifierUser?: UserData;
250
+ completedByUser?: UserData;
251
+ creationTime?: string | null;
252
+ lastAssignedTime?: string | null;
253
+ completionTime?: string | null;
254
+ processingTime?: number | null;
255
+ type?: DocumentActionType;
256
+ }
257
+ interface ExtractionPrompt {
258
+ id?: string | null;
259
+ question?: string | null;
260
+ fieldType?: GptFieldType;
261
+ multiValued?: boolean | null;
262
+ }
263
+ interface ExtractionValidationConfigurationV2 {
264
+ enableRtlControls?: boolean;
265
+ displayMode?: ValidationDisplayMode;
266
+ fieldsValidationConfidence?: number | null;
267
+ allowChangeOfDocumentType?: boolean | null;
268
+ }
269
+ interface FieldGroupValueProjection {
270
+ fieldGroupName?: string | null;
271
+ fieldValues?: FieldValueProjection[] | null;
272
+ }
273
+ interface FieldValueProjection {
274
+ id?: string | null;
275
+ name?: string | null;
276
+ value?: string | null;
277
+ unformattedValue?: string | null;
278
+ confidence?: number | null;
279
+ ocrConfidence?: number | null;
280
+ type?: FieldType;
281
+ }
282
+
283
+ declare enum MarkupType {
284
+ Unknown = "Unknown",
285
+ Circled = "Circled",
286
+ Underlined = "Underlined",
287
+ Strikethrough = "Strikethrough"
288
+ }
289
+ declare enum ProcessingSource {
290
+ Unknown = "Unknown",
291
+ Ocr = "Ocr",
292
+ Pdf = "Pdf",
293
+ PlainText = "PlainText",
294
+ PdfAndOcr = "PdfAndOcr"
295
+ }
296
+ declare enum Rotation {
297
+ None = "None",
298
+ Rotated90 = "Rotated90",
299
+ Rotated180 = "Rotated180",
300
+ Rotated270 = "Rotated270",
301
+ Other = "Other"
302
+ }
303
+ declare enum SectionType {
304
+ Vertical = "Vertical",
305
+ Paragraph = "Paragraph",
306
+ Header = "Header",
307
+ Footer = "Footer",
308
+ Table = "Table"
309
+ }
310
+ declare enum TextType {
311
+ Unknown = "Unknown",
312
+ Text = "Text",
313
+ Checkbox = "Checkbox",
314
+ Handwriting = "Handwriting",
315
+ Barcode = "Barcode",
316
+ QRcode = "QRcode",
317
+ Stamp = "Stamp",
318
+ Logo = "Logo",
319
+ Circle = "Circle",
320
+ Underline = "Underline",
321
+ Cut = "Cut"
322
+ }
323
+ declare enum WordGroupType {
324
+ Sentence = "Sentence",
325
+ TableCell = "TableCell",
326
+ TableRowEnd = "TableRowEnd",
327
+ Heading = "Heading",
328
+ Other = "Other"
329
+ }
330
+ interface DocumentEntity {
331
+ documentId?: string | null;
332
+ contentType?: string | null;
333
+ length?: number;
334
+ pages?: Page[] | null;
335
+ documentMetadata?: Metadata[] | null;
336
+ }
337
+ interface Metadata {
338
+ key?: string | null;
339
+ value?: string | null;
340
+ }
341
+ interface Page {
342
+ pageIndex?: number;
343
+ size?: number[];
344
+ sections?: PageSection[] | null;
345
+ pageMarkups?: PageMarkup[] | null;
346
+ processingSource?: ProcessingSource;
347
+ indexInText?: number;
348
+ textLength?: number;
349
+ skewAngle?: number;
350
+ rotation?: Rotation;
351
+ pageMetadata?: Metadata[] | null;
352
+ }
353
+ interface PageMarkup {
354
+ box?: number[];
355
+ polygon?: number[] | null;
356
+ ocrConfidence?: number;
357
+ text?: string | null;
358
+ markupType?: MarkupType;
359
+ }
360
+ interface PageSection {
361
+ indexInText?: number;
362
+ language?: string | null;
363
+ length?: number;
364
+ rotation?: Rotation;
365
+ skewAngle?: number;
366
+ type?: SectionType;
367
+ wordGroups?: WordGroup[] | null;
368
+ }
369
+ interface Word {
370
+ box?: number[];
371
+ polygon?: number[] | null;
372
+ indexInText?: number;
373
+ ocrConfidence?: number;
374
+ text?: string | null;
375
+ visualLineNumber?: number;
376
+ textType?: TextType;
377
+ markupType?: MarkupType[] | null;
378
+ }
379
+ interface WordGroup {
380
+ indexInText?: number;
381
+ length?: number;
382
+ type?: WordGroupType;
383
+ words?: Word[] | null;
384
+ }
385
+
386
+ declare enum ResultsDataSource {
387
+ Automatic = "Automatic",
388
+ Manual = "Manual",
389
+ ManuallyChanged = "ManuallyChanged",
390
+ Defaulted = "Defaulted",
391
+ External = "External"
392
+ }
393
+ interface ClassificationResult {
394
+ documentTypeId?: string | null;
395
+ documentId?: string | null;
396
+ confidence?: number;
397
+ ocrConfidence?: number;
398
+ reference?: ResultsContentReference;
399
+ documentBounds?: ResultsDocumentBounds;
400
+ classifierName?: string | null;
401
+ }
402
+ interface ExtractionResult {
403
+ documentId?: string | null;
404
+ resultsVersion?: number;
405
+ resultsDocument?: ResultsDocument;
406
+ extractorPayloads?: ExtractorPayload[] | null;
407
+ businessRulesResults?: RuleSetResult[] | null;
408
+ }
409
+ interface ExtractorPayload {
410
+ id?: string | null;
411
+ payload?: string | null;
412
+ savedPayloadId?: string | null;
413
+ taxonomySchemaMapping?: string | null;
414
+ }
415
+ interface ResultsContentReference {
416
+ textStartIndex?: number;
417
+ textLength?: number;
418
+ tokens?: ResultsValueTokens[] | null;
419
+ }
420
+ interface ResultsDataPoint {
421
+ fieldId?: string | null;
422
+ fieldName?: string | null;
423
+ fieldType?: FieldType;
424
+ isMissing?: boolean;
425
+ dataSource?: ResultsDataSource;
426
+ values?: ResultsValue[] | null;
427
+ dataVersion?: number;
428
+ operatorConfirmed?: boolean;
429
+ validatorNotes?: string | null;
430
+ validatorNotesInfo?: string | null;
431
+ }
432
+ interface ResultsDerivedField {
433
+ fieldId?: string | null;
434
+ value?: string | null;
435
+ }
436
+ interface ResultsDocument {
437
+ bounds?: ResultsDocumentBounds;
438
+ language?: string | null;
439
+ documentGroup?: string | null;
440
+ documentCategory?: string | null;
441
+ documentTypeId?: string | null;
442
+ documentTypeName?: string | null;
443
+ documentTypeDataVersion?: number;
444
+ dataVersion?: number;
445
+ documentTypeSource?: ResultsDataSource;
446
+ documentTypeField?: ResultsValue;
447
+ fields?: ResultsDataPoint[] | null;
448
+ tables?: ResultsTable[] | null;
449
+ }
450
+ interface ResultsDocumentBounds {
451
+ startPage?: number;
452
+ pageCount?: number;
453
+ textStartIndex?: number;
454
+ textLength?: number;
455
+ pageRange?: string | null;
456
+ }
457
+ interface ResultsTable {
458
+ fieldId?: string | null;
459
+ fieldName?: string | null;
460
+ isMissing?: boolean;
461
+ dataSource?: ResultsDataSource;
462
+ dataVersion?: number;
463
+ operatorConfirmed?: boolean;
464
+ values?: ResultsTableValue[] | null;
465
+ validatorNotes?: string | null;
466
+ validatorNotesInfo?: string | null;
467
+ }
468
+ interface ResultsTableCell {
469
+ rowIndex?: number;
470
+ columnIndex?: number;
471
+ isHeader?: boolean;
472
+ isMissing?: boolean;
473
+ operatorConfirmed?: boolean;
474
+ dataSource?: ResultsDataSource;
475
+ dataVersion?: number;
476
+ values?: ResultsValue[] | null;
477
+ }
478
+ interface ResultsTableColumnInfo {
479
+ fieldId?: string | null;
480
+ fieldName?: string | null;
481
+ fieldType?: FieldType;
482
+ }
483
+ interface ResultsTableValue {
484
+ operatorConfirmed?: boolean;
485
+ confidence?: number;
486
+ ocrConfidence?: number;
487
+ cells?: ResultsTableCell[] | null;
488
+ columnInfo?: ResultsTableColumnInfo[] | null;
489
+ numberOfRows?: number;
490
+ validatorNotes?: string | null;
491
+ validatorNotesInfo?: string | null;
492
+ }
493
+ interface ResultsValue {
494
+ components?: ResultsDataPoint[] | null;
495
+ value?: string | null;
496
+ unformattedValue?: string | null;
497
+ reference?: ResultsContentReference;
498
+ derivedFields?: ResultsDerivedField[] | null;
499
+ confidence?: number;
500
+ operatorConfirmed?: boolean;
501
+ ocrConfidence?: number;
502
+ textType?: TextType;
503
+ validatorNotes?: string | null;
504
+ validatorNotesInfo?: string | null;
505
+ }
506
+ interface ResultsValueTokens {
507
+ textStartIndex?: number;
508
+ textLength?: number;
509
+ page?: number;
510
+ pageWidth?: number;
511
+ pageHeight?: number;
512
+ boxes?: number[][] | null;
513
+ }
514
+
515
+ interface ClassificationRequestBody {
516
+ documentId?: string;
517
+ prompts?: ClassificationPrompt[] | null;
518
+ }
519
+ interface ClassificationResponse {
520
+ classificationResults?: ClassificationResult[] | null;
521
+ }
522
+ interface StartClassificationResponse {
523
+ operationId?: string;
524
+ resultUrl?: string | null;
525
+ }
526
+ interface SwaggerGetClassificationResultResponse {
527
+ status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
528
+ createdAt?: string;
529
+ lastUpdatedAt?: string;
530
+ error?: ErrorResponse;
531
+ result?: ClassificationResponse;
532
+ }
533
+
534
+ interface DataDeletionRequest {
535
+ removeValidationDataFromStorage?: boolean;
536
+ }
537
+
538
+ interface StartDigitizationFromAttachmentModel {
539
+ attachmentId?: string;
540
+ folderId?: string | null;
541
+ fileName?: string | null;
542
+ mimeType?: string | null;
543
+ }
544
+ interface StartDigitizationResponse {
545
+ documentId?: string;
546
+ resultUrl?: string | null;
547
+ }
548
+ interface SwaggerGetDigitizeJobResponse {
549
+ status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
550
+ error?: ErrorResponse;
551
+ result?: SwaggerGetDigitizeJobResult;
552
+ createdAt?: string;
553
+ lastUpdatedAt?: string;
554
+ }
555
+ interface SwaggerGetDigitizeJobResult {
556
+ documentObjectModel?: DocumentEntity;
557
+ documentText?: string | null;
558
+ }
559
+
560
+ declare enum ProjectProperties {
561
+ IsPredefined = "IsPredefined",
562
+ SupportsTags = "SupportsTags",
563
+ SupportsVersions = "SupportsVersions",
564
+ IsSplittingEnabled = "IsSplittingEnabled"
565
+ }
566
+ declare enum ProjectType {
567
+ Classic = "Classic",
568
+ Modern = "Modern",
569
+ IXP = "IXP",
570
+ Unknown = "Unknown"
571
+ }
572
+ declare enum ResourceStatus {
573
+ Unknown = "Unknown",
574
+ NotStarted = "NotStarted",
575
+ ExportInProgress = "ExportInProgress",
576
+ ExportCompleted = "ExportCompleted",
577
+ InProgress = "InProgress",
578
+ Suspended = "Suspended",
579
+ Resuming = "Resuming",
580
+ Available = "Available",
581
+ Error = "Error",
582
+ Deleting = "Deleting"
583
+ }
584
+ declare enum ResourceType {
585
+ Specialized = "Specialized",
586
+ Generative = "Generative",
587
+ Custom = "Custom",
588
+ Unknown = "Unknown"
589
+ }
590
+ interface Classifier {
591
+ id?: string | null;
592
+ name?: string | null;
593
+ resourceType?: ResourceType;
594
+ status?: ResourceStatus;
595
+ documentTypeIds?: string[] | null;
596
+ detailsUrl?: string | null;
597
+ syncUrl?: string | null;
598
+ asyncUrl?: string | null;
599
+ projectVersion?: number | null;
600
+ projectVersionName?: string | null;
601
+ properties?: ProjectProperties[] | null;
602
+ }
603
+ interface DiscoveredDocumentType {
604
+ id?: string | null;
605
+ name?: string | null;
606
+ resourceType?: ResourceType;
607
+ detailsUrl?: string | null;
608
+ }
609
+ interface DiscoveredExtractorResourceSummaryResponse {
610
+ id?: string | null;
611
+ name?: string | null;
612
+ resourceType?: ResourceType;
613
+ detailsUrl?: string | null;
614
+ documentTypeId?: string | null;
615
+ documentTypeName?: string | null;
616
+ projectVersion?: number | null;
617
+ projectVersionName?: string | null;
618
+ createdOn?: string | null;
619
+ description?: string | null;
620
+ }
621
+ interface DiscoveredProjectVersionResponseV2_0 {
622
+ version?: number;
623
+ versionName?: string | null;
624
+ tags?: string[] | null;
625
+ date?: string;
626
+ deployed?: boolean;
627
+ }
628
+ interface DiscoveredResourceSummaryResponse {
629
+ id?: string | null;
630
+ name?: string | null;
631
+ resourceType?: ResourceType;
632
+ detailsUrl?: string | null;
633
+ projectVersion?: number | null;
634
+ projectVersionName?: string | null;
635
+ createdOn?: string | null;
636
+ description?: string | null;
637
+ }
638
+ interface Extractor {
639
+ id?: string | null;
640
+ name?: string | null;
641
+ documentTypeId?: string | null;
642
+ resourceType?: ResourceType;
643
+ status?: ResourceStatus;
644
+ detailsUrl?: string | null;
645
+ syncUrl?: string | null;
646
+ asyncUrl?: string | null;
647
+ projectVersion?: number | null;
648
+ projectVersionName?: string | null;
649
+ description?: string | null;
650
+ }
651
+ interface GetClassifierDetailsDocumentTypeResponse {
652
+ id?: string | null;
653
+ name?: string | null;
654
+ resourceType?: ResourceType;
655
+ type?: ClassifierDocumentTypeType;
656
+ createdOn?: string | null;
657
+ }
658
+ interface GetClassifierDetailsResponse {
659
+ id?: string | null;
660
+ name?: string | null;
661
+ resourceType?: ResourceType;
662
+ status?: ResourceStatus;
663
+ documentTypes?: GetClassifierDetailsDocumentTypeResponse[] | null;
664
+ createdOn?: string | null;
665
+ syncUrl?: string | null;
666
+ asyncUrl?: string | null;
667
+ projectVersion?: number | null;
668
+ projectVersionName?: string | null;
669
+ properties?: ProjectProperties[] | null;
670
+ }
671
+ interface GetClassifiersResponse {
672
+ classifiers?: Classifier[] | null;
673
+ }
674
+ interface GetDocumentTypeDetailsByTagResponseV2_0 {
675
+ id?: string | null;
676
+ name?: string | null;
677
+ resourceType?: ResourceType;
678
+ createdOn?: string | null;
679
+ documentTaxonomy?: DocumentTaxonomy;
680
+ }
681
+ interface GetDocumentTypeDetailsResponseV2_0 {
682
+ id?: string | null;
683
+ name?: string | null;
684
+ resourceType?: ResourceType;
685
+ createdOn?: string | null;
686
+ classifiers?: DiscoveredResourceSummaryResponse[] | null;
687
+ extractors?: DiscoveredResourceSummaryResponse[] | null;
688
+ }
689
+ interface GetDocumentTypesResponse {
690
+ documentTypes?: DiscoveredDocumentType[] | null;
691
+ }
692
+ interface GetExtractorDetailsResponseV2_0 {
693
+ id?: string | null;
694
+ name?: string | null;
695
+ resourceType?: ResourceType;
696
+ status?: ResourceStatus;
697
+ projectId?: string;
698
+ projectVersion?: number | null;
699
+ projectVersionName?: string | null;
700
+ documentTypeName?: string | null;
701
+ documentTypeId?: string | null;
702
+ createdOn?: string | null;
703
+ syncUrl?: string | null;
704
+ asyncUrl?: string | null;
705
+ description?: string | null;
706
+ documentTaxonomy?: DocumentTaxonomy;
707
+ }
708
+ interface GetExtractorsResponse {
709
+ extractors?: Extractor[] | null;
710
+ }
711
+ interface GetProjectDetailsResponseV2_0 {
712
+ id?: string;
713
+ name?: string | null;
714
+ description?: string | null;
715
+ type?: ProjectType;
716
+ properties?: ProjectProperties[] | null;
717
+ documentTypes?: DiscoveredResourceSummaryResponse[] | null;
718
+ classifiers?: DiscoveredResourceSummaryResponse[] | null;
719
+ extractors?: DiscoveredExtractorResourceSummaryResponse[] | null;
720
+ projectVersions?: DiscoveredProjectVersionResponseV2_0[] | null;
721
+ createdOn?: string | null;
722
+ }
723
+ interface GetProjectsResponse {
724
+ projects?: Project[] | null;
725
+ }
726
+ interface GetProjectTaxonomyResponse {
727
+ documentTaxonomy?: DocumentTaxonomy;
728
+ }
729
+ interface GetTagsResponse {
730
+ tags?: TagEntity[] | null;
731
+ }
732
+ interface Project {
733
+ id?: string;
734
+ name?: string | null;
735
+ type?: ProjectType;
736
+ description?: string | null;
737
+ createdOn?: string | null;
738
+ detailsUrl?: string | null;
739
+ digitizationStartUrl?: string | null;
740
+ classifiersDiscoveryUrl?: string | null;
741
+ extractorsDiscoveryUrl?: string | null;
742
+ properties?: ProjectProperties[] | null;
743
+ }
744
+ interface TagEntity {
745
+ name?: string | null;
746
+ projectVersion?: number | null;
747
+ projectVersionName?: string | null;
748
+ extractors?: TaggedExtractor[] | null;
749
+ classifiers?: TaggedClassifier[] | null;
750
+ }
751
+ interface TaggedClassifier {
752
+ name?: string | null;
753
+ documentTypes?: DiscoveredDocumentType[] | null;
754
+ syncUrl?: string | null;
755
+ asyncUrl?: string | null;
756
+ }
757
+ interface TaggedExtractor {
758
+ name?: string | null;
759
+ documentType?: DiscoveredDocumentType;
760
+ syncUrl?: string | null;
761
+ asyncUrl?: string | null;
762
+ }
763
+
764
+ interface ExtractionPromptRequestBody {
765
+ id?: string | null;
766
+ question?: string | null;
767
+ fieldType?: GptFieldType;
768
+ multiValued?: boolean | null;
769
+ }
770
+ interface ExtractRequestBodyConfiguration {
771
+ autoValidationConfidenceThreshold?: number | null;
772
+ }
773
+ interface ExtractRequestBodyV2_0 {
774
+ documentId?: string;
775
+ pageRange?: string | null;
776
+ prompts?: ExtractionPromptRequestBody[] | null;
777
+ configuration?: ExtractRequestBodyConfiguration;
778
+ documentTaxonomy?: DocumentTaxonomy;
779
+ }
780
+ interface ExtractSyncResult {
781
+ extractionResult?: ExtractionResult;
782
+ }
783
+ interface StartExtractionResponse {
784
+ operationId?: string;
785
+ resultUrl?: string | null;
786
+ }
787
+ interface SwaggerGetExtractionResultResponse {
788
+ status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
789
+ createdAt?: string;
790
+ lastUpdatedAt?: string;
791
+ error?: ErrorResponse;
792
+ result?: ExtractSyncResult;
793
+ }
794
+
795
+ declare enum ModelKind {
796
+ Classifier = "Classifier",
797
+ Extractor = "Extractor"
798
+ }
799
+ declare enum ModelType {
800
+ IXP = "IXP",
801
+ Modern = "Modern",
802
+ Predefined = "Predefined"
803
+ }
804
+ interface FolderBasedStartExtractionRequest {
805
+ documentId?: string;
806
+ documentTaxonomy?: DocumentTaxonomy;
807
+ pageRange?: string | null;
808
+ }
809
+ interface FolderBasedStartExtractionResponse {
810
+ operationId?: string;
811
+ resultUrl?: string | null;
812
+ }
813
+ interface FolderModelsResponse {
814
+ folderKey?: string | null;
815
+ fullyQualifiedName?: string | null;
816
+ models?: ModelSummaryResponse[] | null;
817
+ }
818
+ interface GetModelDetailsResponse {
819
+ fullyQualifiedName?: string | null;
820
+ kind?: ModelKind;
821
+ type?: ModelType;
822
+ description?: string | null;
823
+ asyncDigitizationUrl?: string | null;
824
+ asyncExtractionUrl?: string | null;
825
+ documentTaxonomy?: DocumentTaxonomy;
826
+ }
827
+ interface GetModelsResponse {
828
+ folders?: FolderModelsResponse[] | null;
829
+ }
830
+ interface ModelSummaryResponse {
831
+ modelName?: string | null;
832
+ description?: string | null;
833
+ kind?: ModelKind;
834
+ type?: ModelType;
835
+ fullyQualifiedName?: string | null;
836
+ detailsUrl?: string | null;
837
+ asyncDigitizationUrl?: string | null;
838
+ asyncExtractionUrl?: string | null;
839
+ }
840
+
841
+ declare enum ActionStatus {
842
+ Unassigned = "Unassigned",
843
+ Pending = "Pending",
844
+ Completed = "Completed"
845
+ }
846
+ interface ClassificationValidationResult {
847
+ actionStatus?: ActionStatus;
848
+ actionData?: DocumentClassificationActionDataModel;
849
+ validatedClassificationResults?: ClassificationResult[] | null;
850
+ }
851
+ interface ExtractionValidationArtifactsResult {
852
+ validatedExtractionResults?: ExtractionResult;
853
+ }
854
+ interface ExtractionValidationResult {
855
+ actionStatus?: ActionStatus;
856
+ actionData?: DocumentExtractionActionDataModel;
857
+ validatedExtractionResults?: ExtractionResult;
858
+ dataProjection?: FieldGroupValueProjection[] | null;
859
+ }
860
+ interface GetClassificationValidationTaskResponse {
861
+ status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
862
+ error?: ErrorResponse;
863
+ createdAt?: string;
864
+ lastUpdatedAt?: string;
865
+ result?: ClassificationValidationResult;
866
+ }
867
+ interface GetExtractionValidationArtifactsResultTaskResponse {
868
+ result?: ExtractionValidationArtifactsResult;
869
+ }
870
+ interface GetExtractionValidationArtifactsTaskResponse {
871
+ status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
872
+ error?: ErrorResponse;
873
+ createdAt?: string;
874
+ lastUpdatedAt?: string;
875
+ contentValidationData?: ContentValidationData;
876
+ }
877
+ interface GetExtractionValidationTaskResponse {
878
+ status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
879
+ error?: ErrorResponse;
880
+ createdAt?: string;
881
+ lastUpdatedAt?: string;
882
+ result?: ExtractionValidationResult;
883
+ }
884
+ interface StartClassificationValidationTaskRequest {
885
+ documentId?: string | null;
886
+ actionTitle?: string | null;
887
+ actionPriority?: CreateTaskPriority;
888
+ actionCatalog?: string | null;
889
+ actionFolder?: string | null;
890
+ storageBucketName?: string | null;
891
+ storageBucketDirectoryPath?: string | null;
892
+ prompts?: ClassificationPrompt[] | null;
893
+ configuration?: ClassificationValidationConfiguration;
894
+ classificationResults?: ClassificationResult[] | null;
895
+ }
896
+ interface StartExtractionValidationArtifactsRequest {
897
+ documentId?: string;
898
+ extractionResult?: ExtractionResult;
899
+ documentTaxonomy?: DocumentTaxonomy;
900
+ folderName?: string | null;
901
+ storageBucketName?: string | null;
902
+ storageBucketDirectoryPath?: string | null;
903
+ }
904
+ interface StartExtractionValidationTaskRequestV2_0 {
905
+ documentId?: string | null;
906
+ actionTitle?: string | null;
907
+ actionPriority?: CreateTaskPriority;
908
+ actionCatalog?: string | null;
909
+ actionFolder?: string | null;
910
+ storageBucketName?: string | null;
911
+ storageBucketDirectoryPath?: string | null;
912
+ fieldsValidationConfidence?: number | null;
913
+ allowChangeOfDocumentType?: boolean | null;
914
+ prompts?: ExtractionPrompt[] | null;
915
+ extractionResult?: ExtractionResult;
916
+ configuration?: ExtractionValidationConfigurationV2;
917
+ documentTaxonomy?: DocumentTaxonomy;
918
+ }
919
+ interface StartValidationArtifactsTaskResponse {
920
+ operationId?: string;
921
+ artifactsUrl?: string | null;
922
+ resultUrl?: string | null;
923
+ }
924
+ interface StartValidationTaskResponse {
925
+ operationId?: string;
926
+ resultUrl?: string | null;
927
+ }
928
+
929
+ interface ClassificationValidationFinishedTaskInfo {
930
+ id?: number;
931
+ title?: string | null;
932
+ priority?: DocumentActionPriority;
933
+ status?: ActionStatus;
934
+ creationTime?: string;
935
+ completionTime?: string | null;
936
+ lastAssignedTime?: string;
937
+ url?: string | null;
938
+ assignedToUser?: string | null;
939
+ completedByUser?: string | null;
940
+ lastModifierUser?: string | null;
941
+ documentRejectionReason?: string | null;
942
+ catalogName?: string | null;
943
+ folderName?: string | null;
944
+ processingTime?: number | null;
945
+ }
946
+ interface FinishExtractionValidationTaskInfo {
947
+ id?: number;
948
+ title?: string | null;
949
+ priority?: DocumentActionPriority;
950
+ status?: ActionStatus;
951
+ creationTime?: string;
952
+ completionTime?: string | null;
953
+ lastAssignedTime?: string;
954
+ url?: string | null;
955
+ assignedToUser?: string | null;
956
+ completedByUser?: string | null;
957
+ lastModifierUser?: string | null;
958
+ documentRejectionReason?: string | null;
959
+ catalogName?: string | null;
960
+ folderName?: string | null;
961
+ processingTime?: number | null;
962
+ }
963
+ interface StartClassificationValidationTaskInfo {
964
+ id?: number;
965
+ title?: string | null;
966
+ folderName?: string | null;
967
+ storageBucketName?: string | null;
968
+ storageBucketDirectoryPath?: string | null;
969
+ catalogName?: string | null;
970
+ priority?: DocumentActionPriority;
971
+ status?: ActionStatus;
972
+ }
973
+ interface StartExtractionValidationTaskInfo {
974
+ id?: number;
975
+ title?: string | null;
976
+ folderName?: string | null;
977
+ storageBucketName?: string | null;
978
+ storageBucketDirectoryPath?: string | null;
979
+ catalogName?: string | null;
980
+ priority?: DocumentActionPriority;
981
+ status?: ActionStatus;
982
+ }
983
+ interface TrackFinishClassificationValidationRequest {
984
+ classifierId?: string | null;
985
+ tag?: string | null;
986
+ documentId?: string;
987
+ task?: ClassificationValidationFinishedTaskInfo;
988
+ classificationResult?: ClassificationResult[] | null;
989
+ }
990
+ interface TrackFinishExtractionValidationRequest {
991
+ extractorId?: string | null;
992
+ tag?: string | null;
993
+ documentTypeId?: string | null;
994
+ documentId?: string;
995
+ task?: FinishExtractionValidationTaskInfo;
996
+ extractionResult?: ExtractionResult;
997
+ validatedExtractionResult?: ExtractionResult;
998
+ }
999
+ interface TrackStartClassificationValidationRequest {
1000
+ classifierId?: string | null;
1001
+ tag?: string | null;
1002
+ documentId?: string;
1003
+ duration?: number;
1004
+ task?: StartClassificationValidationTaskInfo;
1005
+ classificationResult?: ClassificationResult[] | null;
1006
+ }
1007
+ interface TrackStartExtractionValidationRequest {
1008
+ extractorId?: string | null;
1009
+ tag?: string | null;
1010
+ documentTypeId?: string | null;
1011
+ documentId?: string;
1012
+ duration?: number;
1013
+ task?: StartExtractionValidationTaskInfo;
1014
+ extractionResult?: ExtractionResult;
1015
+ }
1016
+
1017
+ type index_ActionStatus = ActionStatus;
1018
+ declare const index_ActionStatus: typeof ActionStatus;
1019
+ type index_ClassificationPrompt = ClassificationPrompt;
1020
+ type index_ClassificationRequestBody = ClassificationRequestBody;
1021
+ type index_ClassificationResponse = ClassificationResponse;
1022
+ type index_ClassificationResult = ClassificationResult;
1023
+ type index_ClassificationValidationConfiguration = ClassificationValidationConfiguration;
1024
+ type index_ClassificationValidationFinishedTaskInfo = ClassificationValidationFinishedTaskInfo;
1025
+ type index_ClassificationValidationResult = ClassificationValidationResult;
1026
+ type index_Classifier = Classifier;
1027
+ type index_ClassifierDocumentTypeType = ClassifierDocumentTypeType;
1028
+ declare const index_ClassifierDocumentTypeType: typeof ClassifierDocumentTypeType;
1029
+ type index_ComparisonOperator = ComparisonOperator;
1030
+ declare const index_ComparisonOperator: typeof ComparisonOperator;
1031
+ type index_ContentValidationData = ContentValidationData;
1032
+ type index_CreateTaskPriority = CreateTaskPriority;
1033
+ declare const index_CreateTaskPriority: typeof CreateTaskPriority;
1034
+ type index_Criticality = Criticality;
1035
+ declare const index_Criticality: typeof Criticality;
1036
+ type index_DataDeletionRequest = DataDeletionRequest;
1037
+ type index_DataSource = DataSource;
1038
+ type index_DiscoveredDocumentType = DiscoveredDocumentType;
1039
+ type index_DiscoveredExtractorResourceSummaryResponse = DiscoveredExtractorResourceSummaryResponse;
1040
+ type index_DiscoveredProjectVersionResponseV2_0 = DiscoveredProjectVersionResponseV2_0;
1041
+ type index_DiscoveredResourceSummaryResponse = DiscoveredResourceSummaryResponse;
1042
+ type index_DocumentActionPriority = DocumentActionPriority;
1043
+ declare const index_DocumentActionPriority: typeof DocumentActionPriority;
1044
+ type index_DocumentActionStatus = DocumentActionStatus;
1045
+ declare const index_DocumentActionStatus: typeof DocumentActionStatus;
1046
+ type index_DocumentActionType = DocumentActionType;
1047
+ declare const index_DocumentActionType: typeof DocumentActionType;
1048
+ type index_DocumentClassificationActionDataModel = DocumentClassificationActionDataModel;
1049
+ type index_DocumentEntity = DocumentEntity;
1050
+ type index_DocumentExtractionActionDataModel = DocumentExtractionActionDataModel;
1051
+ type index_DocumentGroup = DocumentGroup;
1052
+ type index_DocumentTaxonomy = DocumentTaxonomy;
1053
+ type index_DocumentTypeEntity = DocumentTypeEntity;
1054
+ type index_ErrorResponse = ErrorResponse;
1055
+ type index_ExceptionReasonOption = ExceptionReasonOption;
1056
+ type index_ExtractRequestBodyConfiguration = ExtractRequestBodyConfiguration;
1057
+ type index_ExtractRequestBodyV2_0 = ExtractRequestBodyV2_0;
1058
+ type index_ExtractSyncResult = ExtractSyncResult;
1059
+ type index_ExtractionPrompt = ExtractionPrompt;
1060
+ type index_ExtractionPromptRequestBody = ExtractionPromptRequestBody;
1061
+ type index_ExtractionResult = ExtractionResult;
1062
+ type index_ExtractionValidationArtifactsResult = ExtractionValidationArtifactsResult;
1063
+ type index_ExtractionValidationConfigurationV2 = ExtractionValidationConfigurationV2;
1064
+ type index_ExtractionValidationResult = ExtractionValidationResult;
1065
+ type index_Extractor = Extractor;
1066
+ type index_ExtractorPayload = ExtractorPayload;
1067
+ type index_Field = Field;
1068
+ type index_FieldGroupValueProjection = FieldGroupValueProjection;
1069
+ type index_FieldType = FieldType;
1070
+ declare const index_FieldType: typeof FieldType;
1071
+ type index_FieldValue = FieldValue;
1072
+ type index_FieldValueProjection = FieldValueProjection;
1073
+ type index_FieldValueResult = FieldValueResult;
1074
+ type index_FinishExtractionValidationTaskInfo = FinishExtractionValidationTaskInfo;
1075
+ type index_FolderBasedStartExtractionRequest = FolderBasedStartExtractionRequest;
1076
+ type index_FolderBasedStartExtractionResponse = FolderBasedStartExtractionResponse;
1077
+ type index_FolderModelsResponse = FolderModelsResponse;
1078
+ type index_GetClassificationValidationTaskResponse = GetClassificationValidationTaskResponse;
1079
+ type index_GetClassifierDetailsDocumentTypeResponse = GetClassifierDetailsDocumentTypeResponse;
1080
+ type index_GetClassifierDetailsResponse = GetClassifierDetailsResponse;
1081
+ type index_GetClassifiersResponse = GetClassifiersResponse;
1082
+ type index_GetDocumentTypeDetailsByTagResponseV2_0 = GetDocumentTypeDetailsByTagResponseV2_0;
1083
+ type index_GetDocumentTypeDetailsResponseV2_0 = GetDocumentTypeDetailsResponseV2_0;
1084
+ type index_GetDocumentTypesResponse = GetDocumentTypesResponse;
1085
+ type index_GetExtractionValidationArtifactsResultTaskResponse = GetExtractionValidationArtifactsResultTaskResponse;
1086
+ type index_GetExtractionValidationArtifactsTaskResponse = GetExtractionValidationArtifactsTaskResponse;
1087
+ type index_GetExtractionValidationTaskResponse = GetExtractionValidationTaskResponse;
1088
+ type index_GetExtractorDetailsResponseV2_0 = GetExtractorDetailsResponseV2_0;
1089
+ type index_GetExtractorsResponse = GetExtractorsResponse;
1090
+ type index_GetModelDetailsResponse = GetModelDetailsResponse;
1091
+ type index_GetModelsResponse = GetModelsResponse;
1092
+ type index_GetProjectDetailsResponseV2_0 = GetProjectDetailsResponseV2_0;
1093
+ type index_GetProjectTaxonomyResponse = GetProjectTaxonomyResponse;
1094
+ type index_GetProjectsResponse = GetProjectsResponse;
1095
+ type index_GetTagsResponse = GetTagsResponse;
1096
+ type index_GptFieldType = GptFieldType;
1097
+ declare const index_GptFieldType: typeof GptFieldType;
1098
+ type index_LanguageInfo = LanguageInfo;
1099
+ type index_LogicalOperator = LogicalOperator;
1100
+ declare const index_LogicalOperator: typeof LogicalOperator;
1101
+ type index_MarkupType = MarkupType;
1102
+ declare const index_MarkupType: typeof MarkupType;
1103
+ type index_Metadata = Metadata;
1104
+ type index_MetadataEntry = MetadataEntry;
1105
+ type index_ModelKind = ModelKind;
1106
+ declare const index_ModelKind: typeof ModelKind;
1107
+ type index_ModelSummaryResponse = ModelSummaryResponse;
1108
+ type index_ModelType = ModelType;
1109
+ declare const index_ModelType: typeof ModelType;
1110
+ type index_Page = Page;
1111
+ type index_PageMarkup = PageMarkup;
1112
+ type index_PageSection = PageSection;
1113
+ type index_ProcessingSource = ProcessingSource;
1114
+ declare const index_ProcessingSource: typeof ProcessingSource;
1115
+ type index_Project = Project;
1116
+ type index_ProjectProperties = ProjectProperties;
1117
+ declare const index_ProjectProperties: typeof ProjectProperties;
1118
+ type index_ProjectType = ProjectType;
1119
+ declare const index_ProjectType: typeof ProjectType;
1120
+ type index_ReportAsExceptionSettings = ReportAsExceptionSettings;
1121
+ type index_ResourceStatus = ResourceStatus;
1122
+ declare const index_ResourceStatus: typeof ResourceStatus;
1123
+ type index_ResourceType = ResourceType;
1124
+ declare const index_ResourceType: typeof ResourceType;
1125
+ type index_ResultsContentReference = ResultsContentReference;
1126
+ type index_ResultsDataPoint = ResultsDataPoint;
1127
+ type index_ResultsDataSource = ResultsDataSource;
1128
+ declare const index_ResultsDataSource: typeof ResultsDataSource;
1129
+ type index_ResultsDerivedField = ResultsDerivedField;
1130
+ type index_ResultsDocument = ResultsDocument;
1131
+ type index_ResultsDocumentBounds = ResultsDocumentBounds;
1132
+ type index_ResultsTable = ResultsTable;
1133
+ type index_ResultsTableCell = ResultsTableCell;
1134
+ type index_ResultsTableColumnInfo = ResultsTableColumnInfo;
1135
+ type index_ResultsTableValue = ResultsTableValue;
1136
+ type index_ResultsValue = ResultsValue;
1137
+ type index_ResultsValueTokens = ResultsValueTokens;
1138
+ type index_Rotation = Rotation;
1139
+ declare const index_Rotation: typeof Rotation;
1140
+ type index_Rule = Rule;
1141
+ type index_RuleResult = RuleResult;
1142
+ type index_RuleSet = RuleSet;
1143
+ type index_RuleSetResult = RuleSetResult;
1144
+ type index_RuleType = RuleType;
1145
+ declare const index_RuleType: typeof RuleType;
1146
+ type index_SectionType = SectionType;
1147
+ declare const index_SectionType: typeof SectionType;
1148
+ type index_StartClassificationResponse = StartClassificationResponse;
1149
+ type index_StartClassificationValidationTaskInfo = StartClassificationValidationTaskInfo;
1150
+ type index_StartClassificationValidationTaskRequest = StartClassificationValidationTaskRequest;
1151
+ type index_StartDigitizationFromAttachmentModel = StartDigitizationFromAttachmentModel;
1152
+ type index_StartDigitizationResponse = StartDigitizationResponse;
1153
+ type index_StartExtractionResponse = StartExtractionResponse;
1154
+ type index_StartExtractionValidationArtifactsRequest = StartExtractionValidationArtifactsRequest;
1155
+ type index_StartExtractionValidationTaskInfo = StartExtractionValidationTaskInfo;
1156
+ type index_StartExtractionValidationTaskRequestV2_0 = StartExtractionValidationTaskRequestV2_0;
1157
+ type index_StartValidationArtifactsTaskResponse = StartValidationArtifactsTaskResponse;
1158
+ type index_StartValidationTaskResponse = StartValidationTaskResponse;
1159
+ type index_SwaggerGetClassificationResultResponse = SwaggerGetClassificationResultResponse;
1160
+ type index_SwaggerGetDigitizeJobResponse = SwaggerGetDigitizeJobResponse;
1161
+ type index_SwaggerGetDigitizeJobResult = SwaggerGetDigitizeJobResult;
1162
+ type index_SwaggerGetExtractionResultResponse = SwaggerGetExtractionResultResponse;
1163
+ type index_TagEntity = TagEntity;
1164
+ type index_TaggedClassifier = TaggedClassifier;
1165
+ type index_TaggedExtractor = TaggedExtractor;
1166
+ type index_TextType = TextType;
1167
+ declare const index_TextType: typeof TextType;
1168
+ type index_TrackFinishClassificationValidationRequest = TrackFinishClassificationValidationRequest;
1169
+ type index_TrackFinishExtractionValidationRequest = TrackFinishExtractionValidationRequest;
1170
+ type index_TrackStartClassificationValidationRequest = TrackStartClassificationValidationRequest;
1171
+ type index_TrackStartExtractionValidationRequest = TrackStartExtractionValidationRequest;
1172
+ type index_TypeField = TypeField;
1173
+ type index_UserData = UserData;
1174
+ type index_ValidationDisplayMode = ValidationDisplayMode;
1175
+ declare const index_ValidationDisplayMode: typeof ValidationDisplayMode;
1176
+ type index_Word = Word;
1177
+ type index_WordGroup = WordGroup;
1178
+ type index_WordGroupType = WordGroupType;
1179
+ declare const index_WordGroupType: typeof WordGroupType;
1180
+ declare namespace index {
1181
+ export { index_ActionStatus as ActionStatus, index_ClassifierDocumentTypeType as ClassifierDocumentTypeType, index_ComparisonOperator as ComparisonOperator, index_CreateTaskPriority as CreateTaskPriority, index_Criticality as Criticality, index_DocumentActionPriority as DocumentActionPriority, index_DocumentActionStatus as DocumentActionStatus, index_DocumentActionType as DocumentActionType, index_FieldType as FieldType, index_GptFieldType as GptFieldType, index_LogicalOperator as LogicalOperator, index_MarkupType as MarkupType, index_ModelKind as ModelKind, index_ModelType as ModelType, index_ProcessingSource as ProcessingSource, index_ProjectProperties as ProjectProperties, index_ProjectType as ProjectType, index_ResourceStatus as ResourceStatus, index_ResourceType as ResourceType, index_ResultsDataSource as ResultsDataSource, index_Rotation as Rotation, index_RuleType as RuleType, index_SectionType as SectionType, index_TextType as TextType, index_ValidationDisplayMode as ValidationDisplayMode, index_WordGroupType as WordGroupType };
1182
+ export type { index_ClassificationPrompt as ClassificationPrompt, index_ClassificationRequestBody as ClassificationRequestBody, index_ClassificationResponse as ClassificationResponse, index_ClassificationResult as ClassificationResult, index_ClassificationValidationConfiguration as ClassificationValidationConfiguration, index_ClassificationValidationFinishedTaskInfo as ClassificationValidationFinishedTaskInfo, index_ClassificationValidationResult as ClassificationValidationResult, index_Classifier as Classifier, index_ContentValidationData as ContentValidationData, index_DataDeletionRequest as DataDeletionRequest, index_DataSource as DataSource, index_DiscoveredDocumentType as DiscoveredDocumentType, index_DiscoveredExtractorResourceSummaryResponse as DiscoveredExtractorResourceSummaryResponse, index_DiscoveredProjectVersionResponseV2_0 as DiscoveredProjectVersionResponseV2_0, index_DiscoveredResourceSummaryResponse as DiscoveredResourceSummaryResponse, index_DocumentClassificationActionDataModel as DocumentClassificationActionDataModel, index_DocumentEntity as DocumentEntity, index_DocumentExtractionActionDataModel as DocumentExtractionActionDataModel, index_DocumentGroup as DocumentGroup, index_DocumentTaxonomy as DocumentTaxonomy, index_DocumentTypeEntity as DocumentTypeEntity, index_ErrorResponse as ErrorResponse, index_ExceptionReasonOption as ExceptionReasonOption, index_ExtractRequestBodyConfiguration as ExtractRequestBodyConfiguration, index_ExtractRequestBodyV2_0 as ExtractRequestBodyV2_0, index_ExtractSyncResult as ExtractSyncResult, index_ExtractionPrompt as ExtractionPrompt, index_ExtractionPromptRequestBody as ExtractionPromptRequestBody, index_ExtractionResult as ExtractionResult, index_ExtractionValidationArtifactsResult as ExtractionValidationArtifactsResult, index_ExtractionValidationConfigurationV2 as ExtractionValidationConfigurationV2, index_ExtractionValidationResult as ExtractionValidationResult, index_Extractor as Extractor, index_ExtractorPayload as ExtractorPayload, index_Field as Field, index_FieldGroupValueProjection as FieldGroupValueProjection, index_FieldValue as FieldValue, index_FieldValueProjection as FieldValueProjection, index_FieldValueResult as FieldValueResult, index_FinishExtractionValidationTaskInfo as FinishExtractionValidationTaskInfo, index_FolderBasedStartExtractionRequest as FolderBasedStartExtractionRequest, index_FolderBasedStartExtractionResponse as FolderBasedStartExtractionResponse, index_FolderModelsResponse as FolderModelsResponse, index_GetClassificationValidationTaskResponse as GetClassificationValidationTaskResponse, index_GetClassifierDetailsDocumentTypeResponse as GetClassifierDetailsDocumentTypeResponse, index_GetClassifierDetailsResponse as GetClassifierDetailsResponse, index_GetClassifiersResponse as GetClassifiersResponse, index_GetDocumentTypeDetailsByTagResponseV2_0 as GetDocumentTypeDetailsByTagResponseV2_0, index_GetDocumentTypeDetailsResponseV2_0 as GetDocumentTypeDetailsResponseV2_0, index_GetDocumentTypesResponse as GetDocumentTypesResponse, index_GetExtractionValidationArtifactsResultTaskResponse as GetExtractionValidationArtifactsResultTaskResponse, index_GetExtractionValidationArtifactsTaskResponse as GetExtractionValidationArtifactsTaskResponse, index_GetExtractionValidationTaskResponse as GetExtractionValidationTaskResponse, index_GetExtractorDetailsResponseV2_0 as GetExtractorDetailsResponseV2_0, index_GetExtractorsResponse as GetExtractorsResponse, index_GetModelDetailsResponse as GetModelDetailsResponse, index_GetModelsResponse as GetModelsResponse, index_GetProjectDetailsResponseV2_0 as GetProjectDetailsResponseV2_0, index_GetProjectTaxonomyResponse as GetProjectTaxonomyResponse, index_GetProjectsResponse as GetProjectsResponse, index_GetTagsResponse as GetTagsResponse, index_LanguageInfo as LanguageInfo, index_Metadata as Metadata, index_MetadataEntry as MetadataEntry, index_ModelSummaryResponse as ModelSummaryResponse, index_Page as Page, index_PageMarkup as PageMarkup, index_PageSection as PageSection, index_Project as Project, index_ReportAsExceptionSettings as ReportAsExceptionSettings, index_ResultsContentReference as ResultsContentReference, index_ResultsDataPoint as ResultsDataPoint, index_ResultsDerivedField as ResultsDerivedField, index_ResultsDocument as ResultsDocument, index_ResultsDocumentBounds as ResultsDocumentBounds, index_ResultsTable as ResultsTable, index_ResultsTableCell as ResultsTableCell, index_ResultsTableColumnInfo as ResultsTableColumnInfo, index_ResultsTableValue as ResultsTableValue, index_ResultsValue as ResultsValue, index_ResultsValueTokens as ResultsValueTokens, index_Rule as Rule, index_RuleResult as RuleResult, index_RuleSet as RuleSet, index_RuleSetResult as RuleSetResult, index_StartClassificationResponse as StartClassificationResponse, index_StartClassificationValidationTaskInfo as StartClassificationValidationTaskInfo, index_StartClassificationValidationTaskRequest as StartClassificationValidationTaskRequest, index_StartDigitizationFromAttachmentModel as StartDigitizationFromAttachmentModel, index_StartDigitizationResponse as StartDigitizationResponse, index_StartExtractionResponse as StartExtractionResponse, index_StartExtractionValidationArtifactsRequest as StartExtractionValidationArtifactsRequest, index_StartExtractionValidationTaskInfo as StartExtractionValidationTaskInfo, index_StartExtractionValidationTaskRequestV2_0 as StartExtractionValidationTaskRequestV2_0, index_StartValidationArtifactsTaskResponse as StartValidationArtifactsTaskResponse, index_StartValidationTaskResponse as StartValidationTaskResponse, index_SwaggerGetClassificationResultResponse as SwaggerGetClassificationResultResponse, index_SwaggerGetDigitizeJobResponse as SwaggerGetDigitizeJobResponse, index_SwaggerGetDigitizeJobResult as SwaggerGetDigitizeJobResult, index_SwaggerGetExtractionResultResponse as SwaggerGetExtractionResultResponse, index_TagEntity as TagEntity, index_TaggedClassifier as TaggedClassifier, index_TaggedExtractor as TaggedExtractor, index_TrackFinishClassificationValidationRequest as TrackFinishClassificationValidationRequest, index_TrackFinishExtractionValidationRequest as TrackFinishExtractionValidationRequest, index_TrackStartClassificationValidationRequest as TrackStartClassificationValidationRequest, index_TrackStartExtractionValidationRequest as TrackStartExtractionValidationRequest, index_TypeField as TypeField, index_UserData as UserData, index_Word as Word, index_WordGroup as WordGroup };
1183
+ }
1184
+
1185
+ export { index as DuFramework };