@uipath/uipath-typescript 1.3.8 → 1.3.9

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.
Files changed (39) hide show
  1. package/dist/assets/index.cjs +25 -270
  2. package/dist/assets/index.mjs +25 -270
  3. package/dist/attachments/index.cjs +23 -267
  4. package/dist/attachments/index.mjs +23 -267
  5. package/dist/buckets/index.cjs +54 -270
  6. package/dist/buckets/index.d.ts +50 -1
  7. package/dist/buckets/index.mjs +54 -270
  8. package/dist/cases/index.cjs +408 -337
  9. package/dist/cases/index.d.ts +534 -2
  10. package/dist/cases/index.mjs +409 -338
  11. package/dist/conversational-agent/index.cjs +71 -281
  12. package/dist/conversational-agent/index.d.ts +62 -12
  13. package/dist/conversational-agent/index.mjs +71 -282
  14. package/dist/core/index.cjs +39 -289
  15. package/dist/core/index.d.ts +9 -98
  16. package/dist/core/index.mjs +40 -275
  17. package/dist/document-understanding/index.cjs +18 -1
  18. package/dist/document-understanding/index.d.ts +636 -610
  19. package/dist/document-understanding/index.mjs +18 -1
  20. package/dist/entities/index.cjs +25 -270
  21. package/dist/entities/index.mjs +25 -270
  22. package/dist/feedback/index.cjs +23 -268
  23. package/dist/feedback/index.mjs +23 -268
  24. package/dist/index.cjs +600 -293
  25. package/dist/index.d.ts +1603 -722
  26. package/dist/index.mjs +600 -279
  27. package/dist/index.umd.js +789 -158
  28. package/dist/jobs/index.cjs +25 -270
  29. package/dist/jobs/index.mjs +25 -270
  30. package/dist/maestro-processes/index.cjs +1751 -1720
  31. package/dist/maestro-processes/index.d.ts +430 -2
  32. package/dist/maestro-processes/index.mjs +1752 -1721
  33. package/dist/processes/index.cjs +25 -270
  34. package/dist/processes/index.mjs +25 -270
  35. package/dist/queues/index.cjs +25 -270
  36. package/dist/queues/index.mjs +25 -270
  37. package/dist/tasks/index.cjs +25 -270
  38. package/dist/tasks/index.mjs +25 -270
  39. package/package.json +8 -10
@@ -14,8 +14,8 @@ declare enum DocumentActionType {
14
14
  Classification = "Classification"
15
15
  }
16
16
  interface UserData {
17
- id?: number | null;
18
- emailAddress?: string | null;
17
+ Id?: number | null;
18
+ EmailAddress?: string | null;
19
19
  }
20
20
 
21
21
  declare enum ComparisonOperator {
@@ -64,103 +64,96 @@ declare enum RuleType {
64
64
  IsEmpty = "IsEmpty"
65
65
  }
66
66
  interface DataSource {
67
- resourceId?: string | null;
68
- elementFieldId?: string | null;
67
+ ResourceId?: string | null;
68
+ ElementFieldId?: string | null;
69
69
  }
70
70
  interface DocumentGroup {
71
- name?: string | null;
72
- categories?: string[] | null;
71
+ Name?: string | null;
72
+ Categories?: string[] | null;
73
73
  }
74
74
  interface DocumentTaxonomy {
75
- dataContractVersion?: string | null;
76
- documentTypes?: DocumentTypeEntity[] | null;
77
- groups?: DocumentGroup[] | null;
78
- supportedLanguages?: LanguageInfo[] | null;
79
- reportAsExceptionSettings?: ReportAsExceptionSettings;
75
+ DataContractVersion?: string | null;
76
+ DocumentTypes?: DocumentTypeEntity[] | null;
77
+ Groups?: DocumentGroup[] | null;
78
+ SupportedLanguages?: LanguageInfo[] | null;
79
+ ReportAsExceptionSettings?: ReportAsExceptionSettings;
80
80
  }
81
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;
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
90
  }
91
91
  interface ExceptionReasonOption {
92
- exceptionReason?: string | null;
92
+ ExceptionReason?: string | null;
93
93
  }
94
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;
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
106
  }
107
107
  interface LanguageInfo {
108
- name?: string | null;
109
- code?: string | null;
108
+ Name?: string | null;
109
+ Code?: string | null;
110
110
  }
111
111
  interface MetadataEntry {
112
- key?: string | null;
113
- value?: string | null;
112
+ Key?: string | null;
113
+ Value?: string | null;
114
114
  }
115
115
  interface ReportAsExceptionSettings {
116
- exceptionReasonOptions?: ExceptionReasonOption[] | null;
116
+ ExceptionReasonOptions?: ExceptionReasonOption[] | null;
117
117
  }
118
118
  interface Rule {
119
- name?: string | null;
120
- type?: RuleType;
121
- logicalOperator?: LogicalOperator;
122
- comparisonOperator?: ComparisonOperator;
123
- expression?: string | null;
124
- setValues?: string[] | null;
119
+ Name?: string | null;
120
+ Type?: RuleType;
121
+ LogicalOperator?: LogicalOperator;
122
+ ComparisonOperator?: ComparisonOperator;
123
+ Expression?: string | null;
124
+ SetValues?: string[] | null;
125
125
  }
126
126
  interface RuleSet {
127
- criticality?: Criticality;
128
- rules?: Rule[] | null;
127
+ Criticality?: Criticality;
128
+ Rules?: Rule[] | null;
129
129
  }
130
130
  interface TypeField {
131
- fieldId?: string | null;
132
- fieldName?: string | null;
131
+ FieldId?: string | null;
132
+ FieldName?: string | null;
133
133
  }
134
134
 
135
135
  interface FieldValue {
136
- value?: string | null;
137
- derivedValue?: string | null;
136
+ Value?: string | null;
137
+ DerivedValue?: string | null;
138
138
  }
139
139
  interface FieldValueResult {
140
- value?: FieldValue;
141
- isValid?: boolean;
142
- rules?: RuleResult[] | null;
140
+ Value?: FieldValue;
141
+ IsValid?: boolean;
142
+ Rules?: RuleResult[] | null;
143
143
  }
144
144
  interface RuleResult {
145
- rule?: Rule;
146
- isValid?: boolean;
145
+ Rule?: Rule;
146
+ IsValid?: boolean;
147
147
  }
148
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;
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;
164
157
  }
165
158
 
166
159
  declare enum ClassifierDocumentTypeType {
@@ -183,101 +176,107 @@ declare enum GptFieldType {
183
176
  Number = "Number",
184
177
  Text = "Text"
185
178
  }
179
+ declare enum JobStatus {
180
+ Succeeded = "Succeeded",
181
+ Failed = "Failed",
182
+ Running = "Running",
183
+ NotStarted = "NotStarted"
184
+ }
186
185
  declare enum ValidationDisplayMode {
187
186
  Classic = "Classic",
188
187
  Compact = "Compact"
189
188
  }
190
189
  interface ClassificationPrompt {
191
- name?: string | null;
192
- description?: string | null;
190
+ Name?: string | null;
191
+ Description?: string | null;
193
192
  }
194
193
  interface ClassificationValidationConfiguration {
195
- enablePageReordering?: boolean;
194
+ EnablePageReordering?: boolean;
196
195
  }
197
196
  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;
197
+ BucketName?: string | null;
198
+ BucketId?: number;
199
+ FolderId?: number;
200
+ FolderKey?: string;
201
+ DocumentId?: string;
202
+ EncodedDocumentPath?: string | null;
203
+ TextPath?: string | null;
204
+ DocumentObjectModelPath?: string | null;
205
+ TaxonomyPath?: string | null;
206
+ AutomaticExtractionResultsPath?: string | null;
207
+ ValidatedExtractionResultsPath?: string | null;
208
+ CustomizationInfoPath?: string | null;
210
209
  }
211
210
  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;
211
+ Id?: number | null;
212
+ Status?: DocumentActionStatus;
213
+ Title?: string | null;
214
+ Priority?: DocumentActionPriority;
215
+ TaskCatalogName?: string | null;
216
+ TaskUrl?: string | null;
217
+ FolderPath?: string | null;
218
+ FolderId?: number | null;
219
+ Data?: unknown | null;
220
+ Action?: string | null;
221
+ IsDeleted?: boolean | null;
222
+ AssignedToUser?: UserData;
223
+ CreatorUser?: UserData;
224
+ DeleterUser?: UserData;
225
+ LastModifierUser?: UserData;
226
+ CompletedByUser?: UserData;
227
+ CreationTime?: string | null;
228
+ LastAssignedTime?: string | null;
229
+ CompletionTime?: string | null;
230
+ ProcessingTime?: number | null;
231
+ Type?: DocumentActionType;
233
232
  }
234
233
  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;
234
+ Id?: number | null;
235
+ Status?: DocumentActionStatus;
236
+ Title?: string | null;
237
+ Priority?: DocumentActionPriority;
238
+ TaskCatalogName?: string | null;
239
+ TaskUrl?: string | null;
240
+ FolderPath?: string | null;
241
+ FolderId?: number | null;
242
+ Data?: unknown | null;
243
+ Action?: string | null;
244
+ IsDeleted?: boolean | null;
245
+ AssignedToUser?: UserData;
246
+ CreatorUser?: UserData;
247
+ DeleterUser?: UserData;
248
+ LastModifierUser?: UserData;
249
+ CompletedByUser?: UserData;
250
+ CreationTime?: string | null;
251
+ LastAssignedTime?: string | null;
252
+ CompletionTime?: string | null;
253
+ ProcessingTime?: number | null;
254
+ Type?: DocumentActionType;
256
255
  }
257
256
  interface ExtractionPrompt {
258
- id?: string | null;
259
- question?: string | null;
260
- fieldType?: GptFieldType;
261
- multiValued?: boolean | null;
257
+ Id?: string | null;
258
+ Question?: string | null;
259
+ FieldType?: GptFieldType;
260
+ MultiValued?: boolean | null;
262
261
  }
263
262
  interface ExtractionValidationConfigurationV2 {
264
- enableRtlControls?: boolean;
265
- displayMode?: ValidationDisplayMode;
266
- fieldsValidationConfidence?: number | null;
267
- allowChangeOfDocumentType?: boolean | null;
263
+ EnableRtlControls?: boolean;
264
+ DisplayMode?: ValidationDisplayMode;
265
+ FieldsValidationConfidence?: number | null;
266
+ AllowChangeOfDocumentType?: boolean | null;
268
267
  }
269
268
  interface FieldGroupValueProjection {
270
- fieldGroupName?: string | null;
271
- fieldValues?: FieldValueProjection[] | null;
269
+ FieldGroupName?: string | null;
270
+ FieldValues?: FieldValueProjection[] | null;
272
271
  }
273
272
  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;
273
+ Id?: string | null;
274
+ Name?: string | null;
275
+ Value?: string | null;
276
+ UnformattedValue?: string | null;
277
+ Confidence?: number | null;
278
+ OcrConfidence?: number | null;
279
+ Type?: FieldType;
281
280
  }
282
281
 
283
282
  declare enum MarkupType {
@@ -328,59 +327,59 @@ declare enum WordGroupType {
328
327
  Other = "Other"
329
328
  }
330
329
  interface DocumentEntity {
331
- documentId?: string | null;
332
- contentType?: string | null;
333
- length?: number;
334
- pages?: Page[] | null;
335
- documentMetadata?: Metadata[] | null;
330
+ DocumentId?: string | null;
331
+ ContentType?: string | null;
332
+ Length?: number;
333
+ Pages?: Page[] | null;
334
+ DocumentMetadata?: Metadata[] | null;
336
335
  }
337
336
  interface Metadata {
338
- key?: string | null;
339
- value?: string | null;
337
+ Key?: string | null;
338
+ Value?: string | null;
340
339
  }
341
340
  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;
341
+ PageIndex?: number;
342
+ Size?: number[];
343
+ Sections?: PageSection[] | null;
344
+ PageMarkups?: PageMarkup[] | null;
345
+ ProcessingSource?: ProcessingSource;
346
+ IndexInText?: number;
347
+ TextLength?: number;
348
+ SkewAngle?: number;
349
+ Rotation?: Rotation;
350
+ PageMetadata?: Metadata[] | null;
352
351
  }
353
352
  interface PageMarkup {
354
- box?: number[];
355
- polygon?: number[] | null;
356
- ocrConfidence?: number;
357
- text?: string | null;
358
- markupType?: MarkupType;
353
+ Box?: number[];
354
+ Polygon?: number[] | null;
355
+ OcrConfidence?: number;
356
+ Text?: string | null;
357
+ MarkupType?: MarkupType;
359
358
  }
360
359
  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;
360
+ IndexInText?: number;
361
+ Language?: string | null;
362
+ Length?: number;
363
+ Rotation?: Rotation;
364
+ SkewAngle?: number;
365
+ Type?: SectionType;
366
+ WordGroups?: WordGroup[] | null;
368
367
  }
369
368
  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;
369
+ Box?: number[];
370
+ Polygon?: number[] | null;
371
+ IndexInText?: number;
372
+ OcrConfidence?: number;
373
+ Text?: string | null;
374
+ VisualLineNumber?: number;
375
+ TextType?: TextType;
376
+ MarkupType?: MarkupType[] | null;
378
377
  }
379
378
  interface WordGroup {
380
- indexInText?: number;
381
- length?: number;
382
- type?: WordGroupType;
383
- words?: Word[] | null;
379
+ IndexInText?: number;
380
+ Length?: number;
381
+ Type?: WordGroupType;
382
+ Words?: Word[] | null;
384
383
  }
385
384
 
386
385
  declare enum ResultsDataSource {
@@ -391,170 +390,172 @@ declare enum ResultsDataSource {
391
390
  External = "External"
392
391
  }
393
392
  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;
393
+ DocumentTypeId?: string | null;
394
+ DocumentId?: string | null;
395
+ Confidence?: number;
396
+ OcrConfidence?: number;
397
+ Reference?: ResultsContentReference;
398
+ DocumentBounds?: ResultsDocumentBounds;
399
+ ClassifierName?: string | null;
401
400
  }
402
401
  interface ExtractionResult {
403
- documentId?: string | null;
404
- resultsVersion?: number;
405
- resultsDocument?: ResultsDocument;
406
- extractorPayloads?: ExtractorPayload[] | null;
407
- businessRulesResults?: RuleSetResult[] | null;
402
+ DocumentId?: string | null;
403
+ ResultsVersion?: number;
404
+ ResultsDocument?: ResultsDocument;
405
+ ExtractorPayloads?: ExtractorPayload[] | null;
406
+ BusinessRulesResults?: RuleSetResult[] | null;
408
407
  }
409
408
  interface ExtractorPayload {
410
- id?: string | null;
411
- payload?: string | null;
412
- savedPayloadId?: string | null;
413
- taxonomySchemaMapping?: string | null;
409
+ Id?: string | null;
410
+ Payload?: string | null;
411
+ SavedPayloadId?: string | null;
412
+ TaxonomySchemaMapping?: string | null;
414
413
  }
415
414
  interface ResultsContentReference {
416
- textStartIndex?: number;
417
- textLength?: number;
418
- tokens?: ResultsValueTokens[] | null;
415
+ TextStartIndex?: number;
416
+ TextLength?: number;
417
+ Tokens?: ResultsValueTokens[] | null;
419
418
  }
420
419
  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;
420
+ FieldId?: string | null;
421
+ FieldName?: string | null;
422
+ FieldType?: FieldType;
423
+ IsMissing?: boolean;
424
+ DataSource?: ResultsDataSource;
425
+ Values?: ResultsValue[] | null;
426
+ DataVersion?: number;
427
+ OperatorConfirmed?: boolean;
428
+ ValidatorNotes?: string | null;
429
+ ValidatorNotesInfo?: string | null;
431
430
  }
432
431
  interface ResultsDerivedField {
433
- fieldId?: string | null;
434
- value?: string | null;
432
+ FieldId?: string | null;
433
+ Value?: string | null;
435
434
  }
436
435
  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;
436
+ Bounds?: ResultsDocumentBounds;
437
+ Language?: string | null;
438
+ DocumentGroup?: string | null;
439
+ DocumentCategory?: string | null;
440
+ DocumentTypeId?: string | null;
441
+ DocumentTypeName?: string | null;
442
+ DocumentTypeDataVersion?: number;
443
+ DataVersion?: number;
444
+ DocumentTypeSource?: ResultsDataSource;
445
+ DocumentTypeField?: ResultsValue;
446
+ Fields?: ResultsDataPoint[] | null;
447
+ Tables?: ResultsTable[] | null;
449
448
  }
450
449
  interface ResultsDocumentBounds {
451
- startPage?: number;
452
- pageCount?: number;
453
- textStartIndex?: number;
454
- textLength?: number;
455
- pageRange?: string | null;
450
+ PageCount?: number;
451
+ PageRange?: string | null;
456
452
  }
457
453
  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;
454
+ FieldId?: string | null;
455
+ FieldName?: string | null;
456
+ IsMissing?: boolean;
457
+ DataSource?: ResultsDataSource;
458
+ DataVersion?: number;
459
+ OperatorConfirmed?: boolean;
460
+ Values?: ResultsTableValue[] | null;
461
+ ValidatorNotes?: string | null;
462
+ ValidatorNotesInfo?: string | null;
467
463
  }
468
464
  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;
465
+ RowIndex?: number;
466
+ ColumnIndex?: number;
467
+ IsHeader?: boolean;
468
+ IsMissing?: boolean;
469
+ OperatorConfirmed?: boolean;
470
+ DataSource?: ResultsDataSource;
471
+ DataVersion?: number;
472
+ Values?: ResultsValue[] | null;
477
473
  }
478
474
  interface ResultsTableColumnInfo {
479
- fieldId?: string | null;
480
- fieldName?: string | null;
481
- fieldType?: FieldType;
475
+ FieldId?: string | null;
476
+ FieldName?: string | null;
477
+ FieldType?: FieldType;
482
478
  }
483
479
  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;
480
+ OperatorConfirmed?: boolean;
481
+ Confidence?: number;
482
+ OcrConfidence?: number;
483
+ Cells?: ResultsTableCell[] | null;
484
+ ColumnInfo?: ResultsTableColumnInfo[] | null;
485
+ NumberOfRows?: number;
486
+ ValidatorNotes?: string | null;
487
+ ValidatorNotesInfo?: string | null;
492
488
  }
493
489
  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;
490
+ Components?: ResultsDataPoint[] | null;
491
+ Value?: string | null;
492
+ UnformattedValue?: string | null;
493
+ Reference?: ResultsContentReference;
494
+ DerivedFields?: ResultsDerivedField[] | null;
495
+ Confidence?: number;
496
+ OperatorConfirmed?: boolean;
497
+ OcrConfidence?: number;
498
+ TextType?: TextType;
499
+ ValidatorNotes?: string | null;
500
+ ValidatorNotesInfo?: string | null;
505
501
  }
506
502
  interface ResultsValueTokens {
507
- textStartIndex?: number;
508
- textLength?: number;
509
- page?: number;
510
- pageWidth?: number;
511
- pageHeight?: number;
512
- boxes?: number[][] | null;
503
+ TextStartIndex?: number;
504
+ TextLength?: number;
505
+ Page?: number;
506
+ PageWidth?: number;
507
+ PageHeight?: number;
508
+ Boxes?: number[][] | null;
513
509
  }
514
510
 
515
511
  interface ClassificationRequestBody {
516
- documentId?: string;
517
- prompts?: ClassificationPrompt[] | null;
512
+ DocumentId?: string;
513
+ Prompts?: ClassificationPrompt[] | null;
518
514
  }
519
515
  interface ClassificationResponse {
520
- classificationResults?: ClassificationResult[] | null;
516
+ ClassificationResults?: ClassificationResult[] | null;
521
517
  }
522
518
  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;
519
+ OperationId?: string;
520
+ ResultUrl?: string | null;
532
521
  }
533
522
 
534
523
  interface DataDeletionRequest {
535
- removeValidationDataFromStorage?: boolean;
524
+ RemoveValidationDataFromStorage?: boolean;
525
+ }
526
+
527
+ declare enum ErrorSeverity {
528
+ Info = "Info",
529
+ Warning = "Warning",
530
+ Error = "Error"
531
+ }
532
+ interface ErrorResponse {
533
+ Message?: string | null;
534
+ Severity?: ErrorSeverity;
535
+ Code?: string | null;
536
+ Parameters?: string[] | null;
536
537
  }
537
538
 
538
539
  interface StartDigitizationFromAttachmentModel {
539
- attachmentId?: string;
540
- folderId?: string | null;
541
- fileName?: string | null;
542
- mimeType?: string | null;
540
+ AttachmentId?: string;
541
+ FolderId?: string | null;
542
+ FileName?: string | null;
543
+ MimeType?: string | null;
543
544
  }
544
545
  interface StartDigitizationResponse {
545
- documentId?: string;
546
- resultUrl?: string | null;
546
+ DocumentId?: string;
547
+ ResultUrl?: string | null;
547
548
  }
548
549
  interface SwaggerGetDigitizeJobResponse {
549
- status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
550
- error?: ErrorResponse;
551
- result?: SwaggerGetDigitizeJobResult;
552
- createdAt?: string;
553
- lastUpdatedAt?: string;
550
+ Status?: JobStatus;
551
+ Error?: ErrorResponse;
552
+ Result?: SwaggerGetDigitizeJobResult;
553
+ CreatedAt?: string;
554
+ LastUpdatedAt?: string;
554
555
  }
555
556
  interface SwaggerGetDigitizeJobResult {
556
- documentObjectModel?: DocumentEntity;
557
- documentText?: string | null;
557
+ DocumentObjectModel?: DocumentEntity;
558
+ DocumentText?: string | null;
558
559
  }
559
560
 
560
561
  declare enum ProjectProperties {
@@ -588,213 +589,206 @@ declare enum ResourceType {
588
589
  Unknown = "Unknown"
589
590
  }
590
591
  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;
592
+ Id?: string | null;
593
+ Name?: string | null;
594
+ ResourceType?: ResourceType;
595
+ Status?: ResourceStatus;
596
+ DocumentTypeIds?: string[] | null;
597
+ DetailsUrl?: string | null;
598
+ SyncUrl?: string | null;
599
+ AsyncUrl?: string | null;
600
+ ProjectVersion?: number | null;
601
+ ProjectVersionName?: string | null;
602
+ Properties?: ProjectProperties[] | null;
602
603
  }
603
604
  interface DiscoveredDocumentType {
604
- id?: string | null;
605
- name?: string | null;
606
- resourceType?: ResourceType;
607
- detailsUrl?: string | null;
605
+ Id?: string | null;
606
+ Name?: string | null;
607
+ ResourceType?: ResourceType;
608
+ DetailsUrl?: string | null;
608
609
  }
609
610
  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;
611
+ Id?: string | null;
612
+ Name?: string | null;
613
+ ResourceType?: ResourceType;
614
+ DetailsUrl?: string | null;
615
+ DocumentTypeId?: string | null;
616
+ DocumentTypeName?: string | null;
617
+ ProjectVersion?: number | null;
618
+ ProjectVersionName?: string | null;
619
+ CreatedOn?: string | null;
620
+ Description?: string | null;
620
621
  }
621
622
  interface DiscoveredProjectVersionResponseV2_0 {
622
- version?: number;
623
- versionName?: string | null;
624
- tags?: string[] | null;
625
- date?: string;
626
- deployed?: boolean;
623
+ Version?: number;
624
+ VersionName?: string | null;
625
+ Tags?: string[] | null;
626
+ Date?: string;
627
+ Deployed?: boolean;
627
628
  }
628
629
  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;
630
+ Id?: string | null;
631
+ Name?: string | null;
632
+ ResourceType?: ResourceType;
633
+ DetailsUrl?: string | null;
634
+ ProjectVersion?: number | null;
635
+ ProjectVersionName?: string | null;
636
+ CreatedOn?: string | null;
637
+ Description?: string | null;
637
638
  }
638
639
  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;
640
+ Id?: string | null;
641
+ Name?: string | null;
642
+ DocumentTypeId?: string | null;
643
+ ResourceType?: ResourceType;
644
+ Status?: ResourceStatus;
645
+ DetailsUrl?: string | null;
646
+ SyncUrl?: string | null;
647
+ AsyncUrl?: string | null;
648
+ ProjectVersion?: number | null;
649
+ ProjectVersionName?: string | null;
650
+ Description?: string | null;
650
651
  }
651
652
  interface GetClassifierDetailsDocumentTypeResponse {
652
- id?: string | null;
653
- name?: string | null;
654
- resourceType?: ResourceType;
655
- type?: ClassifierDocumentTypeType;
656
- createdOn?: string | null;
653
+ Id?: string | null;
654
+ Name?: string | null;
655
+ ResourceType?: ResourceType;
656
+ Type?: ClassifierDocumentTypeType;
657
+ CreatedOn?: string | null;
657
658
  }
658
659
  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;
660
+ Id?: string | null;
661
+ Name?: string | null;
662
+ ResourceType?: ResourceType;
663
+ Status?: ResourceStatus;
664
+ DocumentTypes?: GetClassifierDetailsDocumentTypeResponse[] | null;
665
+ CreatedOn?: string | null;
666
+ SyncUrl?: string | null;
667
+ AsyncUrl?: string | null;
668
+ ProjectVersion?: number | null;
669
+ ProjectVersionName?: string | null;
670
+ Properties?: ProjectProperties[] | null;
670
671
  }
671
672
  interface GetClassifiersResponse {
672
- classifiers?: Classifier[] | null;
673
+ Classifiers?: Classifier[] | null;
673
674
  }
674
675
  interface GetDocumentTypeDetailsByTagResponseV2_0 {
675
- id?: string | null;
676
- name?: string | null;
677
- resourceType?: ResourceType;
678
- createdOn?: string | null;
679
- documentTaxonomy?: DocumentTaxonomy;
676
+ Id?: string | null;
677
+ Name?: string | null;
678
+ ResourceType?: ResourceType;
679
+ CreatedOn?: string | null;
680
+ DocumentTaxonomy?: DocumentTaxonomy;
680
681
  }
681
682
  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;
683
+ Id?: string | null;
684
+ Name?: string | null;
685
+ ResourceType?: ResourceType;
686
+ CreatedOn?: string | null;
687
+ Classifiers?: DiscoveredResourceSummaryResponse[] | null;
688
+ Extractors?: DiscoveredResourceSummaryResponse[] | null;
688
689
  }
689
690
  interface GetDocumentTypesResponse {
690
- documentTypes?: DiscoveredDocumentType[] | null;
691
+ DocumentTypes?: DiscoveredDocumentType[] | null;
691
692
  }
692
693
  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;
694
+ Id?: string | null;
695
+ Name?: string | null;
696
+ ResourceType?: ResourceType;
697
+ Status?: ResourceStatus;
698
+ ProjectId?: string;
699
+ ProjectVersion?: number | null;
700
+ ProjectVersionName?: string | null;
701
+ DocumentTypeName?: string | null;
702
+ DocumentTypeId?: string | null;
703
+ CreatedOn?: string | null;
704
+ SyncUrl?: string | null;
705
+ AsyncUrl?: string | null;
706
+ Description?: string | null;
707
+ DocumentTaxonomy?: DocumentTaxonomy;
707
708
  }
708
709
  interface GetExtractorsResponse {
709
- extractors?: Extractor[] | null;
710
+ Extractors?: Extractor[] | null;
710
711
  }
711
712
  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;
713
+ Id?: string;
714
+ Name?: string | null;
715
+ Description?: string | null;
716
+ Type?: ProjectType;
717
+ Properties?: ProjectProperties[] | null;
718
+ DocumentTypes?: DiscoveredResourceSummaryResponse[] | null;
719
+ Classifiers?: DiscoveredResourceSummaryResponse[] | null;
720
+ Extractors?: DiscoveredExtractorResourceSummaryResponse[] | null;
721
+ ProjectVersions?: DiscoveredProjectVersionResponseV2_0[] | null;
722
+ CreatedOn?: string | null;
722
723
  }
723
724
  interface GetProjectsResponse {
724
- projects?: Project[] | null;
725
+ Projects?: Project[] | null;
725
726
  }
726
727
  interface GetProjectTaxonomyResponse {
727
- documentTaxonomy?: DocumentTaxonomy;
728
+ DocumentTaxonomy?: DocumentTaxonomy;
728
729
  }
729
730
  interface GetTagsResponse {
730
- tags?: TagEntity[] | null;
731
+ Tags?: TagEntity[] | null;
731
732
  }
732
733
  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;
734
+ Id?: string;
735
+ Name?: string | null;
736
+ Type?: ProjectType;
737
+ Description?: string | null;
738
+ CreatedOn?: string | null;
739
+ DetailsUrl?: string | null;
740
+ DigitizationStartUrl?: string | null;
741
+ ClassifiersDiscoveryUrl?: string | null;
742
+ ExtractorsDiscoveryUrl?: string | null;
743
+ Properties?: ProjectProperties[] | null;
743
744
  }
744
745
  interface TagEntity {
745
- name?: string | null;
746
- projectVersion?: number | null;
747
- projectVersionName?: string | null;
748
- extractors?: TaggedExtractor[] | null;
749
- classifiers?: TaggedClassifier[] | null;
746
+ Name?: string | null;
747
+ ProjectVersion?: number | null;
748
+ ProjectVersionName?: string | null;
749
+ Extractors?: TaggedExtractor[] | null;
750
+ Classifiers?: TaggedClassifier[] | null;
750
751
  }
751
752
  interface TaggedClassifier {
752
- name?: string | null;
753
- documentTypes?: DiscoveredDocumentType[] | null;
754
- syncUrl?: string | null;
755
- asyncUrl?: string | null;
753
+ Name?: string | null;
754
+ DocumentTypes?: DiscoveredDocumentType[] | null;
755
+ SyncUrl?: string | null;
756
+ AsyncUrl?: string | null;
756
757
  }
757
758
  interface TaggedExtractor {
758
- name?: string | null;
759
- documentType?: DiscoveredDocumentType;
760
- syncUrl?: string | null;
761
- asyncUrl?: string | null;
759
+ Name?: string | null;
760
+ DocumentType?: DiscoveredDocumentType;
761
+ SyncUrl?: string | null;
762
+ AsyncUrl?: string | null;
762
763
  }
763
764
 
764
765
  interface ExtractionPromptRequestBody {
765
- id?: string | null;
766
- question?: string | null;
767
- fieldType?: GptFieldType;
768
- multiValued?: boolean | null;
766
+ Id?: string | null;
767
+ Question?: string | null;
768
+ FieldType?: GptFieldType;
769
+ MultiValued?: boolean | null;
769
770
  }
770
771
  interface ExtractRequestBodyConfiguration {
771
- autoValidationConfidenceThreshold?: number | null;
772
+ AutoValidationConfidenceThreshold?: number | null;
772
773
  }
773
774
  interface ExtractRequestBodyV2_0 {
774
- documentId?: string;
775
- pageRange?: string | null;
776
- prompts?: ExtractionPromptRequestBody[] | null;
777
- configuration?: ExtractRequestBodyConfiguration;
778
- documentTaxonomy?: DocumentTaxonomy;
775
+ DocumentId?: string;
776
+ PageRange?: string | null;
777
+ Prompts?: ExtractionPromptRequestBody[] | null;
778
+ Configuration?: ExtractRequestBodyConfiguration;
779
+ DocumentTaxonomy?: DocumentTaxonomy;
779
780
  }
780
781
  interface ExtractSyncResult {
781
- extractionResult?: ExtractionResult;
782
+ ExtractionResult?: ExtractionResult;
782
783
  }
783
784
  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;
785
+ OperationId?: string;
786
+ ResultUrl?: string | null;
793
787
  }
794
788
 
795
789
  declare enum ModelKind {
796
- Classifier = "Classifier",
797
- Extractor = "Extractor"
790
+ Extractor = "Extractor",
791
+ Classifier = "Classifier"
798
792
  }
799
793
  declare enum ModelType {
800
794
  IXP = "IXP",
@@ -802,40 +796,42 @@ declare enum ModelType {
802
796
  Predefined = "Predefined"
803
797
  }
804
798
  interface FolderBasedStartExtractionRequest {
805
- documentId?: string;
806
- documentTaxonomy?: DocumentTaxonomy;
807
- pageRange?: string | null;
799
+ DocumentId?: string;
800
+ DocumentTaxonomy?: DocumentTaxonomy;
801
+ PageRange?: string | null;
808
802
  }
809
803
  interface FolderBasedStartExtractionResponse {
810
- operationId?: string;
811
- resultUrl?: string | null;
804
+ OperationId?: string;
805
+ ResultUrl?: string | null;
812
806
  }
813
807
  interface FolderModelsResponse {
814
- folderKey?: string | null;
815
- fullyQualifiedName?: string | null;
816
- models?: ModelSummaryResponse[] | null;
808
+ FolderKey?: string | null;
809
+ FullyQualifiedName?: string | null;
810
+ Models?: ModelSummaryResponse[] | null;
817
811
  }
818
812
  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;
813
+ FullyQualifiedName?: string | null;
814
+ ModelDisplayName?: string | null;
815
+ Kind?: ModelKind;
816
+ Type?: ModelType;
817
+ Description?: string | null;
818
+ AsyncDigitizationUrl?: string | null;
819
+ AsyncExtractionUrl?: string | null;
820
+ DocumentTaxonomy?: DocumentTaxonomy;
826
821
  }
827
822
  interface GetModelsResponse {
828
- folders?: FolderModelsResponse[] | null;
823
+ Folders?: FolderModelsResponse[] | null;
829
824
  }
830
825
  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;
826
+ ModelName?: string | null;
827
+ ModelDisplayName?: string | null;
828
+ Description?: string | null;
829
+ Kind?: ModelKind;
830
+ Type?: ModelType;
831
+ FullyQualifiedName?: string | null;
832
+ DetailsUrl?: string | null;
833
+ AsyncDigitizationUrl?: string | null;
834
+ AsyncExtractionUrl?: string | null;
839
835
  }
840
836
 
841
837
  declare enum ActionStatus {
@@ -844,174 +840,198 @@ declare enum ActionStatus {
844
840
  Completed = "Completed"
845
841
  }
846
842
  interface ClassificationValidationResult {
847
- actionStatus?: ActionStatus;
848
- actionData?: DocumentClassificationActionDataModel;
849
- validatedClassificationResults?: ClassificationResult[] | null;
843
+ ActionStatus?: ActionStatus;
844
+ ActionData?: DocumentClassificationActionDataModel;
845
+ ValidatedClassificationResults?: ClassificationResult[] | null;
850
846
  }
851
847
  interface ExtractionValidationArtifactsResult {
852
- validatedExtractionResults?: ExtractionResult;
848
+ ValidatedExtractionResults?: ExtractionResult;
853
849
  }
854
850
  interface ExtractionValidationResult {
855
- actionStatus?: ActionStatus;
856
- actionData?: DocumentExtractionActionDataModel;
857
- validatedExtractionResults?: ExtractionResult;
858
- dataProjection?: FieldGroupValueProjection[] | null;
851
+ ActionStatus?: ActionStatus;
852
+ ActionData?: DocumentExtractionActionDataModel;
853
+ ValidatedExtractionResults?: ExtractionResult;
854
+ DataProjection?: FieldGroupValueProjection[] | null;
859
855
  }
860
856
  interface GetClassificationValidationTaskResponse {
861
- status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
862
- error?: ErrorResponse;
863
- createdAt?: string;
864
- lastUpdatedAt?: string;
865
- result?: ClassificationValidationResult;
857
+ Status?: JobStatus;
858
+ Error?: ErrorResponse;
859
+ CreatedAt?: string;
860
+ LastUpdatedAt?: string;
861
+ Result?: ClassificationValidationResult;
866
862
  }
867
863
  interface GetExtractionValidationArtifactsResultTaskResponse {
868
- result?: ExtractionValidationArtifactsResult;
864
+ Result?: ExtractionValidationArtifactsResult;
869
865
  }
870
866
  interface GetExtractionValidationArtifactsTaskResponse {
871
- status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
872
- error?: ErrorResponse;
873
- createdAt?: string;
874
- lastUpdatedAt?: string;
875
- contentValidationData?: ContentValidationData;
867
+ Status?: JobStatus;
868
+ Error?: ErrorResponse;
869
+ CreatedAt?: string;
870
+ LastUpdatedAt?: string;
871
+ ContentValidationData?: ContentValidationData;
876
872
  }
877
873
  interface GetExtractionValidationTaskResponse {
878
- status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
879
- error?: ErrorResponse;
880
- createdAt?: string;
881
- lastUpdatedAt?: string;
882
- result?: ExtractionValidationResult;
874
+ Status?: JobStatus;
875
+ Error?: ErrorResponse;
876
+ CreatedAt?: string;
877
+ LastUpdatedAt?: string;
878
+ Result?: ExtractionValidationResult;
883
879
  }
884
880
  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;
881
+ DocumentId?: string | null;
882
+ ActionTitle?: string | null;
883
+ ActionPriority?: CreateTaskPriority;
884
+ ActionCatalog?: string | null;
885
+ ActionFolder?: string | null;
886
+ StorageBucketName?: string | null;
887
+ StorageBucketDirectoryPath?: string | null;
888
+ Prompts?: ClassificationPrompt[] | null;
889
+ Configuration?: ClassificationValidationConfiguration;
890
+ ClassificationResults?: ClassificationResult[] | null;
895
891
  }
896
892
  interface StartExtractionValidationArtifactsRequest {
897
- documentId?: string;
898
- extractionResult?: ExtractionResult;
899
- documentTaxonomy?: DocumentTaxonomy;
900
- folderName?: string | null;
901
- storageBucketName?: string | null;
902
- storageBucketDirectoryPath?: string | null;
893
+ DocumentId?: string;
894
+ ExtractionResult?: ExtractionResult;
895
+ DocumentTaxonomy?: DocumentTaxonomy;
896
+ FolderName?: string | null;
897
+ StorageBucketName?: string | null;
898
+ StorageBucketDirectoryPath?: string | null;
903
899
  }
904
900
  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;
901
+ DocumentId?: string | null;
902
+ ActionTitle?: string | null;
903
+ ActionPriority?: CreateTaskPriority;
904
+ ActionCatalog?: string | null;
905
+ ActionFolder?: string | null;
906
+ StorageBucketName?: string | null;
907
+ StorageBucketDirectoryPath?: string | null;
908
+ Prompts?: ExtractionPrompt[] | null;
909
+ ExtractionResult?: ExtractionResult;
910
+ Configuration?: ExtractionValidationConfigurationV2;
911
+ DocumentTaxonomy?: DocumentTaxonomy;
918
912
  }
919
913
  interface StartValidationArtifactsTaskResponse {
920
- operationId?: string;
921
- artifactsUrl?: string | null;
922
- resultUrl?: string | null;
914
+ OperationId?: string;
915
+ ArtifactsUrl?: string | null;
916
+ ResultUrl?: string | null;
923
917
  }
924
918
  interface StartValidationTaskResponse {
925
- operationId?: string;
926
- resultUrl?: string | null;
919
+ OperationId?: string;
920
+ ResultUrl?: string | null;
927
921
  }
928
922
 
929
923
  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;
924
+ Id?: number;
925
+ Title?: string | null;
926
+ Priority?: DocumentActionPriority;
927
+ Status?: ActionStatus;
928
+ CreationTime?: string;
929
+ CompletionTime?: string | null;
930
+ LastAssignedTime?: string;
931
+ Url?: string | null;
932
+ AssignedToUser?: string | null;
933
+ CompletedByUser?: string | null;
934
+ LastModifierUser?: string | null;
935
+ DocumentRejectionReason?: string | null;
936
+ CatalogName?: string | null;
937
+ FolderName?: string | null;
938
+ ProcessingTime?: number | null;
945
939
  }
946
940
  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;
941
+ Id?: number;
942
+ Title?: string | null;
943
+ Priority?: DocumentActionPriority;
944
+ Status?: ActionStatus;
945
+ CreationTime?: string;
946
+ CompletionTime?: string | null;
947
+ LastAssignedTime?: string;
948
+ Url?: string | null;
949
+ AssignedToUser?: string | null;
950
+ CompletedByUser?: string | null;
951
+ LastModifierUser?: string | null;
952
+ DocumentRejectionReason?: string | null;
953
+ CatalogName?: string | null;
954
+ FolderName?: string | null;
955
+ ProcessingTime?: number | null;
962
956
  }
963
957
  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;
958
+ Id?: number;
959
+ Title?: string | null;
960
+ FolderName?: string | null;
961
+ StorageBucketName?: string | null;
962
+ StorageBucketDirectoryPath?: string | null;
963
+ CatalogName?: string | null;
964
+ Priority?: DocumentActionPriority;
965
+ Status?: ActionStatus;
972
966
  }
973
967
  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;
968
+ Id?: number;
969
+ Title?: string | null;
970
+ FolderName?: string | null;
971
+ StorageBucketName?: string | null;
972
+ StorageBucketDirectoryPath?: string | null;
973
+ CatalogName?: string | null;
974
+ Priority?: DocumentActionPriority;
975
+ Status?: ActionStatus;
982
976
  }
983
977
  interface TrackFinishClassificationValidationRequest {
984
- classifierId?: string | null;
985
- tag?: string | null;
986
- documentId?: string;
987
- task?: ClassificationValidationFinishedTaskInfo;
988
- classificationResult?: ClassificationResult[] | null;
978
+ ClassifierId?: string | null;
979
+ Tag?: string | null;
980
+ DocumentId?: string;
981
+ Task?: ClassificationValidationFinishedTaskInfo;
982
+ ClassificationResult?: ClassificationResult[] | null;
989
983
  }
990
984
  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;
985
+ ExtractorId?: string | null;
986
+ Tag?: string | null;
987
+ DocumentTypeId?: string | null;
988
+ DocumentId?: string;
989
+ Task?: FinishExtractionValidationTaskInfo;
990
+ ExtractionResult?: ExtractionResult;
991
+ ValidatedExtractionResult?: ExtractionResult;
998
992
  }
999
993
  interface TrackStartClassificationValidationRequest {
1000
- classifierId?: string | null;
1001
- tag?: string | null;
1002
- documentId?: string;
1003
- duration?: number;
1004
- task?: StartClassificationValidationTaskInfo;
1005
- classificationResult?: ClassificationResult[] | null;
994
+ ClassifierId?: string | null;
995
+ Tag?: string | null;
996
+ DocumentId?: string;
997
+ Duration?: number;
998
+ Task?: StartClassificationValidationTaskInfo;
999
+ ClassificationResult?: ClassificationResult[] | null;
1006
1000
  }
1007
1001
  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;
1002
+ ExtractorId?: string | null;
1003
+ Tag?: string | null;
1004
+ DocumentTypeId?: string | null;
1005
+ DocumentId?: string;
1006
+ Duration?: number;
1007
+ Task?: StartExtractionValidationTaskInfo;
1008
+ ExtractionResult?: ExtractionResult;
1009
+ }
1010
+
1011
+ interface GetClassificationResultResponse {
1012
+ Status?: JobStatus;
1013
+ CreatedAt?: string;
1014
+ LastUpdatedAt?: string;
1015
+ Error?: ErrorResponse;
1016
+ Result?: ClassificationResponse;
1017
+ }
1018
+ interface GetDigitizeJobResponse {
1019
+ Status?: JobStatus;
1020
+ Error?: ErrorResponse;
1021
+ Result?: GetDigitizeJobResult;
1022
+ CreatedAt?: string;
1023
+ LastUpdatedAt?: string;
1024
+ }
1025
+ interface GetDigitizeJobResult {
1026
+ DocumentObjectModel?: DocumentEntity;
1027
+ DocumentText?: string | null;
1028
+ }
1029
+ interface GetExtractionResultResponse {
1030
+ Status?: JobStatus;
1031
+ CreatedAt?: string;
1032
+ LastUpdatedAt?: string;
1033
+ Error?: ErrorResponse;
1034
+ Result?: ExtractSyncResult;
1015
1035
  }
1016
1036
 
1017
1037
  type index_ActionStatus = ActionStatus;
@@ -1052,6 +1072,8 @@ type index_DocumentGroup = DocumentGroup;
1052
1072
  type index_DocumentTaxonomy = DocumentTaxonomy;
1053
1073
  type index_DocumentTypeEntity = DocumentTypeEntity;
1054
1074
  type index_ErrorResponse = ErrorResponse;
1075
+ type index_ErrorSeverity = ErrorSeverity;
1076
+ declare const index_ErrorSeverity: typeof ErrorSeverity;
1055
1077
  type index_ExceptionReasonOption = ExceptionReasonOption;
1056
1078
  type index_ExtractRequestBodyConfiguration = ExtractRequestBodyConfiguration;
1057
1079
  type index_ExtractRequestBodyV2_0 = ExtractRequestBodyV2_0;
@@ -1075,13 +1097,17 @@ type index_FinishExtractionValidationTaskInfo = FinishExtractionValidationTaskIn
1075
1097
  type index_FolderBasedStartExtractionRequest = FolderBasedStartExtractionRequest;
1076
1098
  type index_FolderBasedStartExtractionResponse = FolderBasedStartExtractionResponse;
1077
1099
  type index_FolderModelsResponse = FolderModelsResponse;
1100
+ type index_GetClassificationResultResponse = GetClassificationResultResponse;
1078
1101
  type index_GetClassificationValidationTaskResponse = GetClassificationValidationTaskResponse;
1079
1102
  type index_GetClassifierDetailsDocumentTypeResponse = GetClassifierDetailsDocumentTypeResponse;
1080
1103
  type index_GetClassifierDetailsResponse = GetClassifierDetailsResponse;
1081
1104
  type index_GetClassifiersResponse = GetClassifiersResponse;
1105
+ type index_GetDigitizeJobResponse = GetDigitizeJobResponse;
1106
+ type index_GetDigitizeJobResult = GetDigitizeJobResult;
1082
1107
  type index_GetDocumentTypeDetailsByTagResponseV2_0 = GetDocumentTypeDetailsByTagResponseV2_0;
1083
1108
  type index_GetDocumentTypeDetailsResponseV2_0 = GetDocumentTypeDetailsResponseV2_0;
1084
1109
  type index_GetDocumentTypesResponse = GetDocumentTypesResponse;
1110
+ type index_GetExtractionResultResponse = GetExtractionResultResponse;
1085
1111
  type index_GetExtractionValidationArtifactsResultTaskResponse = GetExtractionValidationArtifactsResultTaskResponse;
1086
1112
  type index_GetExtractionValidationArtifactsTaskResponse = GetExtractionValidationArtifactsTaskResponse;
1087
1113
  type index_GetExtractionValidationTaskResponse = GetExtractionValidationTaskResponse;
@@ -1095,6 +1121,8 @@ type index_GetProjectsResponse = GetProjectsResponse;
1095
1121
  type index_GetTagsResponse = GetTagsResponse;
1096
1122
  type index_GptFieldType = GptFieldType;
1097
1123
  declare const index_GptFieldType: typeof GptFieldType;
1124
+ type index_JobStatus = JobStatus;
1125
+ declare const index_JobStatus: typeof JobStatus;
1098
1126
  type index_LanguageInfo = LanguageInfo;
1099
1127
  type index_LogicalOperator = LogicalOperator;
1100
1128
  declare const index_LogicalOperator: typeof LogicalOperator;
@@ -1156,10 +1184,8 @@ type index_StartExtractionValidationTaskInfo = StartExtractionValidationTaskInfo
1156
1184
  type index_StartExtractionValidationTaskRequestV2_0 = StartExtractionValidationTaskRequestV2_0;
1157
1185
  type index_StartValidationArtifactsTaskResponse = StartValidationArtifactsTaskResponse;
1158
1186
  type index_StartValidationTaskResponse = StartValidationTaskResponse;
1159
- type index_SwaggerGetClassificationResultResponse = SwaggerGetClassificationResultResponse;
1160
1187
  type index_SwaggerGetDigitizeJobResponse = SwaggerGetDigitizeJobResponse;
1161
1188
  type index_SwaggerGetDigitizeJobResult = SwaggerGetDigitizeJobResult;
1162
- type index_SwaggerGetExtractionResultResponse = SwaggerGetExtractionResultResponse;
1163
1189
  type index_TagEntity = TagEntity;
1164
1190
  type index_TaggedClassifier = TaggedClassifier;
1165
1191
  type index_TaggedExtractor = TaggedExtractor;
@@ -1178,8 +1204,8 @@ type index_WordGroup = WordGroup;
1178
1204
  type index_WordGroupType = WordGroupType;
1179
1205
  declare const index_WordGroupType: typeof WordGroupType;
1180
1206
  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 };
1207
+ 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_ErrorSeverity as ErrorSeverity, index_FieldType as FieldType, index_GptFieldType as GptFieldType, index_JobStatus as JobStatus, 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 };
1208
+ 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_GetClassificationResultResponse as GetClassificationResultResponse, index_GetClassificationValidationTaskResponse as GetClassificationValidationTaskResponse, index_GetClassifierDetailsDocumentTypeResponse as GetClassifierDetailsDocumentTypeResponse, index_GetClassifierDetailsResponse as GetClassifierDetailsResponse, index_GetClassifiersResponse as GetClassifiersResponse, index_GetDigitizeJobResponse as GetDigitizeJobResponse, index_GetDigitizeJobResult as GetDigitizeJobResult, index_GetDocumentTypeDetailsByTagResponseV2_0 as GetDocumentTypeDetailsByTagResponseV2_0, index_GetDocumentTypeDetailsResponseV2_0 as GetDocumentTypeDetailsResponseV2_0, index_GetDocumentTypesResponse as GetDocumentTypesResponse, index_GetExtractionResultResponse as GetExtractionResultResponse, 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_SwaggerGetDigitizeJobResponse as SwaggerGetDigitizeJobResponse, index_SwaggerGetDigitizeJobResult as SwaggerGetDigitizeJobResult, 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
1209
  }
1184
1210
 
1185
1211
  export { index as DuFramework };