@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.
- package/dist/assets/index.cjs +25 -270
- package/dist/assets/index.mjs +25 -270
- package/dist/attachments/index.cjs +23 -267
- package/dist/attachments/index.mjs +23 -267
- package/dist/buckets/index.cjs +54 -270
- package/dist/buckets/index.d.ts +50 -1
- package/dist/buckets/index.mjs +54 -270
- package/dist/cases/index.cjs +408 -337
- package/dist/cases/index.d.ts +534 -2
- package/dist/cases/index.mjs +409 -338
- package/dist/conversational-agent/index.cjs +71 -281
- package/dist/conversational-agent/index.d.ts +62 -12
- package/dist/conversational-agent/index.mjs +71 -282
- package/dist/core/index.cjs +39 -289
- package/dist/core/index.d.ts +9 -98
- package/dist/core/index.mjs +40 -275
- package/dist/document-understanding/index.cjs +18 -1
- package/dist/document-understanding/index.d.ts +636 -610
- package/dist/document-understanding/index.mjs +18 -1
- package/dist/entities/index.cjs +25 -270
- package/dist/entities/index.mjs +25 -270
- package/dist/feedback/index.cjs +23 -268
- package/dist/feedback/index.mjs +23 -268
- package/dist/index.cjs +600 -293
- package/dist/index.d.ts +1603 -722
- package/dist/index.mjs +600 -279
- package/dist/index.umd.js +789 -158
- package/dist/jobs/index.cjs +25 -270
- package/dist/jobs/index.mjs +25 -270
- package/dist/maestro-processes/index.cjs +1751 -1720
- package/dist/maestro-processes/index.d.ts +430 -2
- package/dist/maestro-processes/index.mjs +1752 -1721
- package/dist/processes/index.cjs +25 -270
- package/dist/processes/index.mjs +25 -270
- package/dist/queues/index.cjs +25 -270
- package/dist/queues/index.mjs +25 -270
- package/dist/tasks/index.cjs +25 -270
- package/dist/tasks/index.mjs +25 -270
- package/package.json +8 -10
|
@@ -14,8 +14,8 @@ declare enum DocumentActionType {
|
|
|
14
14
|
Classification = "Classification"
|
|
15
15
|
}
|
|
16
16
|
interface UserData {
|
|
17
|
-
|
|
18
|
-
|
|
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
|
-
|
|
68
|
-
|
|
67
|
+
ResourceId?: string | null;
|
|
68
|
+
ElementFieldId?: string | null;
|
|
69
69
|
}
|
|
70
70
|
interface DocumentGroup {
|
|
71
|
-
|
|
72
|
-
|
|
71
|
+
Name?: string | null;
|
|
72
|
+
Categories?: string[] | null;
|
|
73
73
|
}
|
|
74
74
|
interface DocumentTaxonomy {
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
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
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
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
|
-
|
|
92
|
+
ExceptionReason?: string | null;
|
|
93
93
|
}
|
|
94
94
|
interface Field {
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
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
|
-
|
|
109
|
-
|
|
108
|
+
Name?: string | null;
|
|
109
|
+
Code?: string | null;
|
|
110
110
|
}
|
|
111
111
|
interface MetadataEntry {
|
|
112
|
-
|
|
113
|
-
|
|
112
|
+
Key?: string | null;
|
|
113
|
+
Value?: string | null;
|
|
114
114
|
}
|
|
115
115
|
interface ReportAsExceptionSettings {
|
|
116
|
-
|
|
116
|
+
ExceptionReasonOptions?: ExceptionReasonOption[] | null;
|
|
117
117
|
}
|
|
118
118
|
interface Rule {
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
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
|
-
|
|
128
|
-
|
|
127
|
+
Criticality?: Criticality;
|
|
128
|
+
Rules?: Rule[] | null;
|
|
129
129
|
}
|
|
130
130
|
interface TypeField {
|
|
131
|
-
|
|
132
|
-
|
|
131
|
+
FieldId?: string | null;
|
|
132
|
+
FieldName?: string | null;
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
interface FieldValue {
|
|
136
|
-
|
|
137
|
-
|
|
136
|
+
Value?: string | null;
|
|
137
|
+
DerivedValue?: string | null;
|
|
138
138
|
}
|
|
139
139
|
interface FieldValueResult {
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
140
|
+
Value?: FieldValue;
|
|
141
|
+
IsValid?: boolean;
|
|
142
|
+
Rules?: RuleResult[] | null;
|
|
143
143
|
}
|
|
144
144
|
interface RuleResult {
|
|
145
|
-
|
|
146
|
-
|
|
145
|
+
Rule?: Rule;
|
|
146
|
+
IsValid?: boolean;
|
|
147
147
|
}
|
|
148
148
|
interface RuleSetResult {
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
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
|
-
|
|
192
|
-
|
|
190
|
+
Name?: string | null;
|
|
191
|
+
Description?: string | null;
|
|
193
192
|
}
|
|
194
193
|
interface ClassificationValidationConfiguration {
|
|
195
|
-
|
|
194
|
+
EnablePageReordering?: boolean;
|
|
196
195
|
}
|
|
197
196
|
interface ContentValidationData {
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
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
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
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
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
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
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
257
|
+
Id?: string | null;
|
|
258
|
+
Question?: string | null;
|
|
259
|
+
FieldType?: GptFieldType;
|
|
260
|
+
MultiValued?: boolean | null;
|
|
262
261
|
}
|
|
263
262
|
interface ExtractionValidationConfigurationV2 {
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
263
|
+
EnableRtlControls?: boolean;
|
|
264
|
+
DisplayMode?: ValidationDisplayMode;
|
|
265
|
+
FieldsValidationConfidence?: number | null;
|
|
266
|
+
AllowChangeOfDocumentType?: boolean | null;
|
|
268
267
|
}
|
|
269
268
|
interface FieldGroupValueProjection {
|
|
270
|
-
|
|
271
|
-
|
|
269
|
+
FieldGroupName?: string | null;
|
|
270
|
+
FieldValues?: FieldValueProjection[] | null;
|
|
272
271
|
}
|
|
273
272
|
interface FieldValueProjection {
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
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
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
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
|
-
|
|
339
|
-
|
|
337
|
+
Key?: string | null;
|
|
338
|
+
Value?: string | null;
|
|
340
339
|
}
|
|
341
340
|
interface Page {
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
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
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
353
|
+
Box?: number[];
|
|
354
|
+
Polygon?: number[] | null;
|
|
355
|
+
OcrConfidence?: number;
|
|
356
|
+
Text?: string | null;
|
|
357
|
+
MarkupType?: MarkupType;
|
|
359
358
|
}
|
|
360
359
|
interface PageSection {
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
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
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
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
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
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
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
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
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
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
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
409
|
+
Id?: string | null;
|
|
410
|
+
Payload?: string | null;
|
|
411
|
+
SavedPayloadId?: string | null;
|
|
412
|
+
TaxonomySchemaMapping?: string | null;
|
|
414
413
|
}
|
|
415
414
|
interface ResultsContentReference {
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
415
|
+
TextStartIndex?: number;
|
|
416
|
+
TextLength?: number;
|
|
417
|
+
Tokens?: ResultsValueTokens[] | null;
|
|
419
418
|
}
|
|
420
419
|
interface ResultsDataPoint {
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
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
|
-
|
|
434
|
-
|
|
432
|
+
FieldId?: string | null;
|
|
433
|
+
Value?: string | null;
|
|
435
434
|
}
|
|
436
435
|
interface ResultsDocument {
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
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
|
-
|
|
452
|
-
|
|
453
|
-
textStartIndex?: number;
|
|
454
|
-
textLength?: number;
|
|
455
|
-
pageRange?: string | null;
|
|
450
|
+
PageCount?: number;
|
|
451
|
+
PageRange?: string | null;
|
|
456
452
|
}
|
|
457
453
|
interface ResultsTable {
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
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
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
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
|
-
|
|
480
|
-
|
|
481
|
-
|
|
475
|
+
FieldId?: string | null;
|
|
476
|
+
FieldName?: string | null;
|
|
477
|
+
FieldType?: FieldType;
|
|
482
478
|
}
|
|
483
479
|
interface ResultsTableValue {
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
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
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
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
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
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
|
-
|
|
517
|
-
|
|
512
|
+
DocumentId?: string;
|
|
513
|
+
Prompts?: ClassificationPrompt[] | null;
|
|
518
514
|
}
|
|
519
515
|
interface ClassificationResponse {
|
|
520
|
-
|
|
516
|
+
ClassificationResults?: ClassificationResult[] | null;
|
|
521
517
|
}
|
|
522
518
|
interface StartClassificationResponse {
|
|
523
|
-
|
|
524
|
-
|
|
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
|
-
|
|
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
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
540
|
+
AttachmentId?: string;
|
|
541
|
+
FolderId?: string | null;
|
|
542
|
+
FileName?: string | null;
|
|
543
|
+
MimeType?: string | null;
|
|
543
544
|
}
|
|
544
545
|
interface StartDigitizationResponse {
|
|
545
|
-
|
|
546
|
-
|
|
546
|
+
DocumentId?: string;
|
|
547
|
+
ResultUrl?: string | null;
|
|
547
548
|
}
|
|
548
549
|
interface SwaggerGetDigitizeJobResponse {
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
550
|
+
Status?: JobStatus;
|
|
551
|
+
Error?: ErrorResponse;
|
|
552
|
+
Result?: SwaggerGetDigitizeJobResult;
|
|
553
|
+
CreatedAt?: string;
|
|
554
|
+
LastUpdatedAt?: string;
|
|
554
555
|
}
|
|
555
556
|
interface SwaggerGetDigitizeJobResult {
|
|
556
|
-
|
|
557
|
-
|
|
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
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
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
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
605
|
+
Id?: string | null;
|
|
606
|
+
Name?: string | null;
|
|
607
|
+
ResourceType?: ResourceType;
|
|
608
|
+
DetailsUrl?: string | null;
|
|
608
609
|
}
|
|
609
610
|
interface DiscoveredExtractorResourceSummaryResponse {
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
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
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
623
|
+
Version?: number;
|
|
624
|
+
VersionName?: string | null;
|
|
625
|
+
Tags?: string[] | null;
|
|
626
|
+
Date?: string;
|
|
627
|
+
Deployed?: boolean;
|
|
627
628
|
}
|
|
628
629
|
interface DiscoveredResourceSummaryResponse {
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
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
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
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
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
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
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
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
|
-
|
|
673
|
+
Classifiers?: Classifier[] | null;
|
|
673
674
|
}
|
|
674
675
|
interface GetDocumentTypeDetailsByTagResponseV2_0 {
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
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
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
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
|
-
|
|
691
|
+
DocumentTypes?: DiscoveredDocumentType[] | null;
|
|
691
692
|
}
|
|
692
693
|
interface GetExtractorDetailsResponseV2_0 {
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
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
|
-
|
|
710
|
+
Extractors?: Extractor[] | null;
|
|
710
711
|
}
|
|
711
712
|
interface GetProjectDetailsResponseV2_0 {
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
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
|
-
|
|
725
|
+
Projects?: Project[] | null;
|
|
725
726
|
}
|
|
726
727
|
interface GetProjectTaxonomyResponse {
|
|
727
|
-
|
|
728
|
+
DocumentTaxonomy?: DocumentTaxonomy;
|
|
728
729
|
}
|
|
729
730
|
interface GetTagsResponse {
|
|
730
|
-
|
|
731
|
+
Tags?: TagEntity[] | null;
|
|
731
732
|
}
|
|
732
733
|
interface Project {
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
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
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
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
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
753
|
+
Name?: string | null;
|
|
754
|
+
DocumentTypes?: DiscoveredDocumentType[] | null;
|
|
755
|
+
SyncUrl?: string | null;
|
|
756
|
+
AsyncUrl?: string | null;
|
|
756
757
|
}
|
|
757
758
|
interface TaggedExtractor {
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
759
|
+
Name?: string | null;
|
|
760
|
+
DocumentType?: DiscoveredDocumentType;
|
|
761
|
+
SyncUrl?: string | null;
|
|
762
|
+
AsyncUrl?: string | null;
|
|
762
763
|
}
|
|
763
764
|
|
|
764
765
|
interface ExtractionPromptRequestBody {
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
766
|
+
Id?: string | null;
|
|
767
|
+
Question?: string | null;
|
|
768
|
+
FieldType?: GptFieldType;
|
|
769
|
+
MultiValued?: boolean | null;
|
|
769
770
|
}
|
|
770
771
|
interface ExtractRequestBodyConfiguration {
|
|
771
|
-
|
|
772
|
+
AutoValidationConfidenceThreshold?: number | null;
|
|
772
773
|
}
|
|
773
774
|
interface ExtractRequestBodyV2_0 {
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
775
|
+
DocumentId?: string;
|
|
776
|
+
PageRange?: string | null;
|
|
777
|
+
Prompts?: ExtractionPromptRequestBody[] | null;
|
|
778
|
+
Configuration?: ExtractRequestBodyConfiguration;
|
|
779
|
+
DocumentTaxonomy?: DocumentTaxonomy;
|
|
779
780
|
}
|
|
780
781
|
interface ExtractSyncResult {
|
|
781
|
-
|
|
782
|
+
ExtractionResult?: ExtractionResult;
|
|
782
783
|
}
|
|
783
784
|
interface StartExtractionResponse {
|
|
784
|
-
|
|
785
|
-
|
|
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
|
-
|
|
797
|
-
|
|
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
|
-
|
|
806
|
-
|
|
807
|
-
|
|
799
|
+
DocumentId?: string;
|
|
800
|
+
DocumentTaxonomy?: DocumentTaxonomy;
|
|
801
|
+
PageRange?: string | null;
|
|
808
802
|
}
|
|
809
803
|
interface FolderBasedStartExtractionResponse {
|
|
810
|
-
|
|
811
|
-
|
|
804
|
+
OperationId?: string;
|
|
805
|
+
ResultUrl?: string | null;
|
|
812
806
|
}
|
|
813
807
|
interface FolderModelsResponse {
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
808
|
+
FolderKey?: string | null;
|
|
809
|
+
FullyQualifiedName?: string | null;
|
|
810
|
+
Models?: ModelSummaryResponse[] | null;
|
|
817
811
|
}
|
|
818
812
|
interface GetModelDetailsResponse {
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
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
|
-
|
|
823
|
+
Folders?: FolderModelsResponse[] | null;
|
|
829
824
|
}
|
|
830
825
|
interface ModelSummaryResponse {
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
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
|
-
|
|
848
|
-
|
|
849
|
-
|
|
843
|
+
ActionStatus?: ActionStatus;
|
|
844
|
+
ActionData?: DocumentClassificationActionDataModel;
|
|
845
|
+
ValidatedClassificationResults?: ClassificationResult[] | null;
|
|
850
846
|
}
|
|
851
847
|
interface ExtractionValidationArtifactsResult {
|
|
852
|
-
|
|
848
|
+
ValidatedExtractionResults?: ExtractionResult;
|
|
853
849
|
}
|
|
854
850
|
interface ExtractionValidationResult {
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
851
|
+
ActionStatus?: ActionStatus;
|
|
852
|
+
ActionData?: DocumentExtractionActionDataModel;
|
|
853
|
+
ValidatedExtractionResults?: ExtractionResult;
|
|
854
|
+
DataProjection?: FieldGroupValueProjection[] | null;
|
|
859
855
|
}
|
|
860
856
|
interface GetClassificationValidationTaskResponse {
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
857
|
+
Status?: JobStatus;
|
|
858
|
+
Error?: ErrorResponse;
|
|
859
|
+
CreatedAt?: string;
|
|
860
|
+
LastUpdatedAt?: string;
|
|
861
|
+
Result?: ClassificationValidationResult;
|
|
866
862
|
}
|
|
867
863
|
interface GetExtractionValidationArtifactsResultTaskResponse {
|
|
868
|
-
|
|
864
|
+
Result?: ExtractionValidationArtifactsResult;
|
|
869
865
|
}
|
|
870
866
|
interface GetExtractionValidationArtifactsTaskResponse {
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
867
|
+
Status?: JobStatus;
|
|
868
|
+
Error?: ErrorResponse;
|
|
869
|
+
CreatedAt?: string;
|
|
870
|
+
LastUpdatedAt?: string;
|
|
871
|
+
ContentValidationData?: ContentValidationData;
|
|
876
872
|
}
|
|
877
873
|
interface GetExtractionValidationTaskResponse {
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
874
|
+
Status?: JobStatus;
|
|
875
|
+
Error?: ErrorResponse;
|
|
876
|
+
CreatedAt?: string;
|
|
877
|
+
LastUpdatedAt?: string;
|
|
878
|
+
Result?: ExtractionValidationResult;
|
|
883
879
|
}
|
|
884
880
|
interface StartClassificationValidationTaskRequest {
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
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
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
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
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
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
|
-
|
|
921
|
-
|
|
922
|
-
|
|
914
|
+
OperationId?: string;
|
|
915
|
+
ArtifactsUrl?: string | null;
|
|
916
|
+
ResultUrl?: string | null;
|
|
923
917
|
}
|
|
924
918
|
interface StartValidationTaskResponse {
|
|
925
|
-
|
|
926
|
-
|
|
919
|
+
OperationId?: string;
|
|
920
|
+
ResultUrl?: string | null;
|
|
927
921
|
}
|
|
928
922
|
|
|
929
923
|
interface ClassificationValidationFinishedTaskInfo {
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
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
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
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
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
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
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
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
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
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
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
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
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
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
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
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,
|
|
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 };
|