@regulaforensics/document-reader-webclient 7.1.0 → 7.1.2
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/main/index.cjs +1 -1
- package/dist/module/index.js +1 -1
- package/lib/index.d.ts +743 -196
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { AxiosInstance } from "axios";
|
|
|
3
3
|
* Regula Document Reader Web API
|
|
4
4
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document:
|
|
6
|
+
* The version of the OpenAPI document: 7.1.0
|
|
7
7
|
*
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -86,7 +86,7 @@ export class Configuration {
|
|
|
86
86
|
* Regula Document Reader Web API
|
|
87
87
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
88
88
|
*
|
|
89
|
-
* The version of the OpenAPI document:
|
|
89
|
+
* The version of the OpenAPI document: 7.1.0
|
|
90
90
|
*
|
|
91
91
|
*
|
|
92
92
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -129,7 +129,7 @@ export interface PointArray {
|
|
|
129
129
|
* Regula Document Reader Web API
|
|
130
130
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
131
131
|
*
|
|
132
|
-
* The version of the OpenAPI document:
|
|
132
|
+
* The version of the OpenAPI document: 7.1.0
|
|
133
133
|
*
|
|
134
134
|
*
|
|
135
135
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -234,7 +234,146 @@ export interface AreaContainer {
|
|
|
234
234
|
* Regula Document Reader Web API
|
|
235
235
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
236
236
|
*
|
|
237
|
-
* The version of the OpenAPI document:
|
|
237
|
+
* The version of the OpenAPI document: 7.1.0
|
|
238
|
+
*
|
|
239
|
+
*
|
|
240
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
241
|
+
* https://openapi-generator.tech
|
|
242
|
+
* Do not edit the class manually.
|
|
243
|
+
*/
|
|
244
|
+
/**
|
|
245
|
+
*
|
|
246
|
+
* @export
|
|
247
|
+
* @interface LivenessParams
|
|
248
|
+
*/
|
|
249
|
+
export interface LivenessParams {
|
|
250
|
+
/**
|
|
251
|
+
* This parameter is used to enable OVI check
|
|
252
|
+
* @type {boolean}
|
|
253
|
+
* @memberof LivenessParams
|
|
254
|
+
*/
|
|
255
|
+
checkOVI?: boolean;
|
|
256
|
+
/**
|
|
257
|
+
* This parameter is used to enable MLI check
|
|
258
|
+
* @type {boolean}
|
|
259
|
+
* @memberof LivenessParams
|
|
260
|
+
*/
|
|
261
|
+
checkMLI?: boolean;
|
|
262
|
+
/**
|
|
263
|
+
* This parameter is used to enable Hologram detection
|
|
264
|
+
* @type {boolean}
|
|
265
|
+
* @memberof LivenessParams
|
|
266
|
+
*/
|
|
267
|
+
checkHolo?: boolean;
|
|
268
|
+
/**
|
|
269
|
+
* This parameter is used to enable Electronic device detection
|
|
270
|
+
* @type {boolean}
|
|
271
|
+
* @memberof LivenessParams
|
|
272
|
+
*/
|
|
273
|
+
checkED?: boolean;
|
|
274
|
+
}
|
|
275
|
+
/**
|
|
276
|
+
*
|
|
277
|
+
* @export
|
|
278
|
+
* @interface AuthParams
|
|
279
|
+
*/
|
|
280
|
+
export interface AuthParams {
|
|
281
|
+
/**
|
|
282
|
+
* This parameter is used to enable document liveness check
|
|
283
|
+
* @type {boolean}
|
|
284
|
+
* @memberof AuthParams
|
|
285
|
+
*/
|
|
286
|
+
checkLiveness?: boolean;
|
|
287
|
+
/**
|
|
288
|
+
*
|
|
289
|
+
* @type {LivenessParams}
|
|
290
|
+
* @memberof AuthParams
|
|
291
|
+
*/
|
|
292
|
+
livenessParams?: LivenessParams;
|
|
293
|
+
/**
|
|
294
|
+
* This parameter is used to enable Document luminescence check in UV light
|
|
295
|
+
* @type {boolean}
|
|
296
|
+
* @memberof AuthParams
|
|
297
|
+
*/
|
|
298
|
+
checkUVLuminiscence?: boolean;
|
|
299
|
+
/**
|
|
300
|
+
* This parameter is used to enable B900 ink MRZ contrast check in IR light
|
|
301
|
+
* @type {boolean}
|
|
302
|
+
* @memberof AuthParams
|
|
303
|
+
*/
|
|
304
|
+
checkIRB900?: boolean;
|
|
305
|
+
/**
|
|
306
|
+
* This parameter is used to enable Image patterns presence/absence check (position, shape, color)
|
|
307
|
+
* @type {boolean}
|
|
308
|
+
* @memberof AuthParams
|
|
309
|
+
*/
|
|
310
|
+
checkImagePatterns?: boolean;
|
|
311
|
+
/**
|
|
312
|
+
* This parameter is used to enable Fibers detection
|
|
313
|
+
* @type {boolean}
|
|
314
|
+
* @memberof AuthParams
|
|
315
|
+
*/
|
|
316
|
+
checkFibers?: boolean;
|
|
317
|
+
/**
|
|
318
|
+
* This parameter is used to enable Extended MRZ Check
|
|
319
|
+
* @type {boolean}
|
|
320
|
+
* @memberof AuthParams
|
|
321
|
+
*/
|
|
322
|
+
checkExtMRZ?: boolean;
|
|
323
|
+
/**
|
|
324
|
+
* This parameter is used to enable Extended OCR Check
|
|
325
|
+
* @type {boolean}
|
|
326
|
+
* @memberof AuthParams
|
|
327
|
+
*/
|
|
328
|
+
checkExtOCR?: boolean;
|
|
329
|
+
/**
|
|
330
|
+
* This parameter is used to enable laminate integrity check in axial light
|
|
331
|
+
* @type {boolean}
|
|
332
|
+
* @memberof AuthParams
|
|
333
|
+
*/
|
|
334
|
+
checkAxial?: boolean;
|
|
335
|
+
/**
|
|
336
|
+
* This parameter is used to enable Barcode format check (code metadata, data format, contents format, etc.)
|
|
337
|
+
* @type {boolean}
|
|
338
|
+
* @memberof AuthParams
|
|
339
|
+
*/
|
|
340
|
+
checkBarcodeFormat?: boolean;
|
|
341
|
+
/**
|
|
342
|
+
* This parameter is used to enable Document elements visibility check in IR light
|
|
343
|
+
* @type {boolean}
|
|
344
|
+
* @memberof AuthParams
|
|
345
|
+
*/
|
|
346
|
+
checkIRVisibility?: boolean;
|
|
347
|
+
/**
|
|
348
|
+
* This parameter is used to enable Invisible Personal Information (IPI) check
|
|
349
|
+
* @type {boolean}
|
|
350
|
+
* @memberof AuthParams
|
|
351
|
+
*/
|
|
352
|
+
checkIPI?: boolean;
|
|
353
|
+
/**
|
|
354
|
+
* This parameter is used to enable Owner\'s photo embedding check (is photo printed or sticked)
|
|
355
|
+
* @type {boolean}
|
|
356
|
+
* @memberof AuthParams
|
|
357
|
+
*/
|
|
358
|
+
checkPhotoEmbedding?: boolean;
|
|
359
|
+
/**
|
|
360
|
+
* This parameter is used to enable Portrait comparison check
|
|
361
|
+
* @type {boolean}
|
|
362
|
+
* @memberof AuthParams
|
|
363
|
+
*/
|
|
364
|
+
checkPhotoComparison?: boolean;
|
|
365
|
+
/**
|
|
366
|
+
* This parameter is used to enable LetterScreen check
|
|
367
|
+
* @type {boolean}
|
|
368
|
+
* @memberof AuthParams
|
|
369
|
+
*/
|
|
370
|
+
checkLetterScreen?: boolean;
|
|
371
|
+
}
|
|
372
|
+
/**
|
|
373
|
+
* Regula Document Reader Web API
|
|
374
|
+
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
375
|
+
*
|
|
376
|
+
* The version of the OpenAPI document: 7.1.0
|
|
238
377
|
*
|
|
239
378
|
*
|
|
240
379
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -336,7 +475,7 @@ export enum AuthenticityResultType {
|
|
|
336
475
|
* Regula Document Reader Web API
|
|
337
476
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
338
477
|
*
|
|
339
|
-
* The version of the OpenAPI document:
|
|
478
|
+
* The version of the OpenAPI document: 7.1.0
|
|
340
479
|
*
|
|
341
480
|
*
|
|
342
481
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -366,7 +505,7 @@ export enum CheckResult {
|
|
|
366
505
|
* Regula Document Reader Web API
|
|
367
506
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
368
507
|
*
|
|
369
|
-
* The version of the OpenAPI document:
|
|
508
|
+
* The version of the OpenAPI document: 7.1.0
|
|
370
509
|
*
|
|
371
510
|
*
|
|
372
511
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -402,6 +541,7 @@ export enum CheckDiagnose {
|
|
|
402
541
|
INCORRECT_TEXT_COLOR = 26,
|
|
403
542
|
PHOTO_FALSE_LUMINESCENCE = 27,
|
|
404
543
|
TOO_MUCH_SHIFT = 28,
|
|
544
|
+
CONTACT_CHIP_TYPE_MISMATCH = 29,
|
|
405
545
|
FIBERS_NOT_FOUND = 30,
|
|
406
546
|
TOO_MANY_OBJECTS = 31,
|
|
407
547
|
SPECKS_IN_UV = 33,
|
|
@@ -496,7 +636,7 @@ export enum CheckDiagnose {
|
|
|
496
636
|
* Regula Document Reader Web API
|
|
497
637
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
498
638
|
*
|
|
499
|
-
* The version of the OpenAPI document:
|
|
639
|
+
* The version of the OpenAPI document: 7.1.0
|
|
500
640
|
*
|
|
501
641
|
*
|
|
502
642
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -520,7 +660,7 @@ export interface ImageData {
|
|
|
520
660
|
* Regula Document Reader Web API
|
|
521
661
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
522
662
|
*
|
|
523
|
-
* The version of the OpenAPI document:
|
|
663
|
+
* The version of the OpenAPI document: 7.1.0
|
|
524
664
|
*
|
|
525
665
|
*
|
|
526
666
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -554,7 +694,7 @@ export enum Light {
|
|
|
554
694
|
* Regula Document Reader Web API
|
|
555
695
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
556
696
|
*
|
|
557
|
-
* The version of the OpenAPI document:
|
|
697
|
+
* The version of the OpenAPI document: 7.1.0
|
|
558
698
|
*
|
|
559
699
|
*
|
|
560
700
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -746,7 +886,31 @@ export enum SecurityFeatureType {
|
|
|
746
886
|
/**
|
|
747
887
|
* Liveness barcode background
|
|
748
888
|
*/
|
|
749
|
-
LIVENESS_BARCODE_BACKGROUND = 45
|
|
889
|
+
LIVENESS_BARCODE_BACKGROUND = 45,
|
|
890
|
+
/**
|
|
891
|
+
* Visual zone portrait image vs. image from barcode
|
|
892
|
+
*/
|
|
893
|
+
PORTRAIT_COMPARISON_VS_BARCODE = 46,
|
|
894
|
+
/**
|
|
895
|
+
* Image from barcode vs. image from RFID
|
|
896
|
+
*/
|
|
897
|
+
PORTRAIT_COMPARISON_RFID_VS_BARCODE = 47,
|
|
898
|
+
/**
|
|
899
|
+
* Image from barcode vs. external source image
|
|
900
|
+
*/
|
|
901
|
+
PORTRAIT_COMPARISON_EXT_VS_BARCODE = 48,
|
|
902
|
+
/**
|
|
903
|
+
* Image from barcode vs. photo from camera
|
|
904
|
+
*/
|
|
905
|
+
PORTRAIT_COMPARISON_BARCODE_VS_CAMERA = 49,
|
|
906
|
+
/**
|
|
907
|
+
* Digital signature сheck
|
|
908
|
+
*/
|
|
909
|
+
CHECK_DIGITAL_SIGNATURE = 50,
|
|
910
|
+
/**
|
|
911
|
+
* Contact сhip check
|
|
912
|
+
*/
|
|
913
|
+
CONTACT_CHIP_CLASSIFICATION = 51
|
|
750
914
|
}
|
|
751
915
|
/**
|
|
752
916
|
*
|
|
@@ -801,7 +965,7 @@ export interface IdentResultAllOf {
|
|
|
801
965
|
* Regula Document Reader Web API
|
|
802
966
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
803
967
|
*
|
|
804
|
-
* The version of the OpenAPI document:
|
|
968
|
+
* The version of the OpenAPI document: 7.1.0
|
|
805
969
|
*
|
|
806
970
|
*
|
|
807
971
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -974,7 +1138,7 @@ export interface PhotoIdentResultAllOf {
|
|
|
974
1138
|
* Regula Document Reader Web API
|
|
975
1139
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
976
1140
|
*
|
|
977
|
-
* The version of the OpenAPI document:
|
|
1141
|
+
* The version of the OpenAPI document: 7.1.0
|
|
978
1142
|
*
|
|
979
1143
|
*
|
|
980
1144
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1223,7 +1387,7 @@ export interface AuthenticityResultAllOf {
|
|
|
1223
1387
|
* Regula Document Reader Web API
|
|
1224
1388
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
1225
1389
|
*
|
|
1226
|
-
* The version of the OpenAPI document:
|
|
1390
|
+
* The version of the OpenAPI document: 7.1.0
|
|
1227
1391
|
*
|
|
1228
1392
|
*
|
|
1229
1393
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1293,7 +1457,7 @@ export enum DocumentFormat {
|
|
|
1293
1457
|
* Regula Document Reader Web API
|
|
1294
1458
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
1295
1459
|
*
|
|
1296
|
-
* The version of the OpenAPI document:
|
|
1460
|
+
* The version of the OpenAPI document: 7.1.0
|
|
1297
1461
|
*
|
|
1298
1462
|
*
|
|
1299
1463
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2298,7 +2462,7 @@ export interface FDSIDList {
|
|
|
2298
2462
|
* Regula Document Reader Web API
|
|
2299
2463
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
2300
2464
|
*
|
|
2301
|
-
* The version of the OpenAPI document:
|
|
2465
|
+
* The version of the OpenAPI document: 7.1.0
|
|
2302
2466
|
*
|
|
2303
2467
|
*
|
|
2304
2468
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2402,7 +2566,7 @@ export interface ChosenDocumentTypeResultAllOf {
|
|
|
2402
2566
|
* Regula Document Reader Web API
|
|
2403
2567
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
2404
2568
|
*
|
|
2405
|
-
* The version of the OpenAPI document:
|
|
2569
|
+
* The version of the OpenAPI document: 7.1.0
|
|
2406
2570
|
*
|
|
2407
2571
|
*
|
|
2408
2572
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2456,7 +2620,7 @@ export interface BcPDF417INFO {
|
|
|
2456
2620
|
* Regula Document Reader Web API
|
|
2457
2621
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
2458
2622
|
*
|
|
2459
|
-
* The version of the OpenAPI document:
|
|
2623
|
+
* The version of the OpenAPI document: 7.1.0
|
|
2460
2624
|
*
|
|
2461
2625
|
*
|
|
2462
2626
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2498,7 +2662,7 @@ export interface BcROIDETECT {
|
|
|
2498
2662
|
* Regula Document Reader Web API
|
|
2499
2663
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
2500
2664
|
*
|
|
2501
|
-
* The version of the OpenAPI document:
|
|
2665
|
+
* The version of the OpenAPI document: 7.1.0
|
|
2502
2666
|
*
|
|
2503
2667
|
*
|
|
2504
2668
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2738,7 +2902,7 @@ export interface DocumentPositionResultAllOf {
|
|
|
2738
2902
|
* Regula Document Reader Web API
|
|
2739
2903
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
2740
2904
|
*
|
|
2741
|
-
* The version of the OpenAPI document:
|
|
2905
|
+
* The version of the OpenAPI document: 7.1.0
|
|
2742
2906
|
*
|
|
2743
2907
|
*
|
|
2744
2908
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2800,7 +2964,7 @@ export interface DocumentTypesCandidatesResultAllOf {
|
|
|
2800
2964
|
* Regula Document Reader Web API
|
|
2801
2965
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
2802
2966
|
*
|
|
2803
|
-
* The version of the OpenAPI document:
|
|
2967
|
+
* The version of the OpenAPI document: 7.1.0
|
|
2804
2968
|
*
|
|
2805
2969
|
*
|
|
2806
2970
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2824,7 +2988,7 @@ export interface EncryptedRCLResultAllOf {
|
|
|
2824
2988
|
* Regula Document Reader Web API
|
|
2825
2989
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
2826
2990
|
*
|
|
2827
|
-
* The version of the OpenAPI document:
|
|
2991
|
+
* The version of the OpenAPI document: 7.1.0
|
|
2828
2992
|
*
|
|
2829
2993
|
*
|
|
2830
2994
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2882,6 +3046,10 @@ export enum GraphicFieldType {
|
|
|
2882
3046
|
*/
|
|
2883
3047
|
STAMP = 211,
|
|
2884
3048
|
/**
|
|
3049
|
+
* Contact chip
|
|
3050
|
+
*/
|
|
3051
|
+
CONTACT_CHIP = 213,
|
|
3052
|
+
/**
|
|
2885
3053
|
* Undefined image type
|
|
2886
3054
|
*/
|
|
2887
3055
|
OTHER = 250,
|
|
@@ -3017,7 +3185,7 @@ export interface GraphicsResultAllOf {
|
|
|
3017
3185
|
* Regula Document Reader Web API
|
|
3018
3186
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
3019
3187
|
*
|
|
3020
|
-
* The version of the OpenAPI document:
|
|
3188
|
+
* The version of the OpenAPI document: 7.1.0
|
|
3021
3189
|
*
|
|
3022
3190
|
*
|
|
3023
3191
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -3062,7 +3230,10 @@ export enum ImageQualityCheckType {
|
|
|
3062
3230
|
* Signals if the portrait is present
|
|
3063
3231
|
*/
|
|
3064
3232
|
Portrait = 7,
|
|
3065
|
-
|
|
3233
|
+
/**
|
|
3234
|
+
* Signals if the document image is bright enough
|
|
3235
|
+
*/
|
|
3236
|
+
Brightness = 9
|
|
3066
3237
|
}
|
|
3067
3238
|
/**
|
|
3068
3239
|
*
|
|
@@ -3149,7 +3320,7 @@ export interface ImageQualityResultAllOf {
|
|
|
3149
3320
|
* Regula Document Reader Web API
|
|
3150
3321
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
3151
3322
|
*
|
|
3152
|
-
* The version of the OpenAPI document:
|
|
3323
|
+
* The version of the OpenAPI document: 7.1.0
|
|
3153
3324
|
*
|
|
3154
3325
|
*
|
|
3155
3326
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -3206,7 +3377,7 @@ export interface ImagesAvailableSource {
|
|
|
3206
3377
|
* Regula Document Reader Web API
|
|
3207
3378
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
3208
3379
|
*
|
|
3209
|
-
* The version of the OpenAPI document:
|
|
3380
|
+
* The version of the OpenAPI document: 7.1.0
|
|
3210
3381
|
*
|
|
3211
3382
|
*
|
|
3212
3383
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -3366,7 +3537,7 @@ export interface ImagesResultAllOf {
|
|
|
3366
3537
|
* Regula Document Reader Web API
|
|
3367
3538
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
3368
3539
|
*
|
|
3369
|
-
* The version of the OpenAPI document:
|
|
3540
|
+
* The version of the OpenAPI document: 7.1.0
|
|
3370
3541
|
*
|
|
3371
3542
|
*
|
|
3372
3543
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -3488,26 +3659,10 @@ export enum LCID {
|
|
|
3488
3659
|
*/
|
|
3489
3660
|
CATALAN = 1027,
|
|
3490
3661
|
/**
|
|
3491
|
-
* Chinese (HongKong S.A.R.)
|
|
3492
|
-
*/
|
|
3493
|
-
CHINESE_HONGKONG_SAR = 3076,
|
|
3494
|
-
/**
|
|
3495
|
-
* Chinese (Macao S.A.R.)
|
|
3496
|
-
*/
|
|
3497
|
-
CHINESE_MACAO_SAR = 5124,
|
|
3498
|
-
/**
|
|
3499
3662
|
* Chinese
|
|
3500
3663
|
*/
|
|
3501
3664
|
CHINESE = 2052,
|
|
3502
3665
|
/**
|
|
3503
|
-
* Chinese (Singapore)
|
|
3504
|
-
*/
|
|
3505
|
-
CHINESE_SINGAPORE = 4100,
|
|
3506
|
-
/**
|
|
3507
|
-
* Chinese (Taiwan)
|
|
3508
|
-
*/
|
|
3509
|
-
CHINESE_TAIWAN = 1028,
|
|
3510
|
-
/**
|
|
3511
3666
|
* Croatian
|
|
3512
3667
|
*/
|
|
3513
3668
|
CROATIAN = 1050,
|
|
@@ -3520,10 +3675,6 @@ export enum LCID {
|
|
|
3520
3675
|
*/
|
|
3521
3676
|
DANISH = 1030,
|
|
3522
3677
|
/**
|
|
3523
|
-
* Divehi
|
|
3524
|
-
*/
|
|
3525
|
-
DIVEHI = 1125,
|
|
3526
|
-
/**
|
|
3527
3678
|
* Dutch (Belgium)
|
|
3528
3679
|
*/
|
|
3529
3680
|
DUTCH_BELGIUM = 2067,
|
|
@@ -3796,6 +3947,10 @@ export enum LCID {
|
|
|
3796
3947
|
*/
|
|
3797
3948
|
SERBIAN_LATIN = 2074,
|
|
3798
3949
|
/**
|
|
3950
|
+
* Sinhala
|
|
3951
|
+
*/
|
|
3952
|
+
SINHALA = 1115,
|
|
3953
|
+
/**
|
|
3799
3954
|
* Slovak
|
|
3800
3955
|
*/
|
|
3801
3956
|
SLOVAK = 1051,
|
|
@@ -3896,10 +4051,6 @@ export enum LCID {
|
|
|
3896
4051
|
*/
|
|
3897
4052
|
SWEDISH_FINLAND = 2077,
|
|
3898
4053
|
/**
|
|
3899
|
-
* Syriac
|
|
3900
|
-
*/
|
|
3901
|
-
SYRIAC = 1114,
|
|
3902
|
-
/**
|
|
3903
4054
|
* Tamil
|
|
3904
4055
|
*/
|
|
3905
4056
|
TAMIL = 1097,
|
|
@@ -3966,13 +4117,85 @@ export enum LCID {
|
|
|
3966
4117
|
/**
|
|
3967
4118
|
* Assamese
|
|
3968
4119
|
*/
|
|
3969
|
-
Assamese = 1101
|
|
4120
|
+
Assamese = 1101,
|
|
4121
|
+
/**
|
|
4122
|
+
* Oriya
|
|
4123
|
+
*/
|
|
4124
|
+
ORIYA = 1096,
|
|
4125
|
+
/**
|
|
4126
|
+
* Malayalam
|
|
4127
|
+
*/
|
|
4128
|
+
MALAYALAM = 1100,
|
|
4129
|
+
/**
|
|
4130
|
+
* Lao
|
|
4131
|
+
*/
|
|
4132
|
+
LAO = 1108,
|
|
4133
|
+
/**
|
|
4134
|
+
* Sindhi (India)
|
|
4135
|
+
*/
|
|
4136
|
+
SINDHI_INDIA = 1113,
|
|
4137
|
+
/**
|
|
4138
|
+
* Amharic
|
|
4139
|
+
*/
|
|
4140
|
+
AMHARIC = 1118,
|
|
4141
|
+
/**
|
|
4142
|
+
* Kashmiri
|
|
4143
|
+
*/
|
|
4144
|
+
KASHMIRI = 1120,
|
|
4145
|
+
/**
|
|
4146
|
+
* Nepali
|
|
4147
|
+
*/
|
|
4148
|
+
NEPALI = 1121,
|
|
4149
|
+
/**
|
|
4150
|
+
* Pashto
|
|
4151
|
+
*/
|
|
4152
|
+
PASHTO = 1123,
|
|
4153
|
+
/**
|
|
4154
|
+
* Sindhi
|
|
4155
|
+
*/
|
|
4156
|
+
SINDHI = 2137,
|
|
4157
|
+
/**
|
|
4158
|
+
* Arabic (World)
|
|
4159
|
+
*/
|
|
4160
|
+
ARABIC = 4096,
|
|
4161
|
+
/**
|
|
4162
|
+
* Bank Card Number
|
|
4163
|
+
*/
|
|
4164
|
+
BANK_CARD_NUMBER = 10000,
|
|
4165
|
+
/**
|
|
4166
|
+
* Bank Card Expiry Date
|
|
4167
|
+
*/
|
|
4168
|
+
BANK_CARD_EXPIRY_DATE = 10001,
|
|
4169
|
+
/**
|
|
4170
|
+
* Bank Card Name
|
|
4171
|
+
*/
|
|
4172
|
+
BANK_CARD_NAME = 10002,
|
|
4173
|
+
/**
|
|
4174
|
+
* Bank Card
|
|
4175
|
+
*/
|
|
4176
|
+
BANK_CARD = 10003,
|
|
4177
|
+
/**
|
|
4178
|
+
* Bank Card CVV2
|
|
4179
|
+
*/
|
|
4180
|
+
BANK_CARD_CVV2 = 10004,
|
|
4181
|
+
/**
|
|
4182
|
+
* Abkhazian (Cyrillic)
|
|
4183
|
+
*/
|
|
4184
|
+
ABKHAZIAN = 10011,
|
|
4185
|
+
/**
|
|
4186
|
+
* Karakalpak (Latin)
|
|
4187
|
+
*/
|
|
4188
|
+
KARAKALPAK = 10012,
|
|
4189
|
+
/**
|
|
4190
|
+
* Urdu Detection
|
|
4191
|
+
*/
|
|
4192
|
+
URDU_DETECTION = 10560
|
|
3970
4193
|
}
|
|
3971
4194
|
/**
|
|
3972
4195
|
* Regula Document Reader Web API
|
|
3973
4196
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
3974
4197
|
*
|
|
3975
|
-
* The version of the OpenAPI document:
|
|
4198
|
+
* The version of the OpenAPI document: 7.1.0
|
|
3976
4199
|
*
|
|
3977
4200
|
*
|
|
3978
4201
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -6492,13 +6715,21 @@ export enum TextFieldType {
|
|
|
6492
6715
|
/**
|
|
6493
6716
|
* Building type
|
|
6494
6717
|
*/
|
|
6495
|
-
ADDRESS_BUILDING_TYPE = 680
|
|
6718
|
+
ADDRESS_BUILDING_TYPE = 680,
|
|
6719
|
+
/**
|
|
6720
|
+
* Date of Retirement
|
|
6721
|
+
*/
|
|
6722
|
+
DATE_OF_RETIREMENT = 681,
|
|
6723
|
+
/**
|
|
6724
|
+
* Document Status
|
|
6725
|
+
*/
|
|
6726
|
+
DOCUMENT_STATUS = 682
|
|
6496
6727
|
}
|
|
6497
6728
|
/**
|
|
6498
6729
|
* Regula Document Reader Web API
|
|
6499
6730
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
6500
6731
|
*
|
|
6501
|
-
* The version of the OpenAPI document:
|
|
6732
|
+
* The version of the OpenAPI document: 7.1.0
|
|
6502
6733
|
*
|
|
6503
6734
|
*
|
|
6504
6735
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -6611,7 +6842,7 @@ export interface LexicalAnalysisResultAllOf {
|
|
|
6611
6842
|
* Regula Document Reader Web API
|
|
6612
6843
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
6613
6844
|
*
|
|
6614
|
-
* The version of the OpenAPI document:
|
|
6845
|
+
* The version of the OpenAPI document: 7.1.0
|
|
6615
6846
|
*
|
|
6616
6847
|
*
|
|
6617
6848
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -6801,7 +7032,7 @@ export interface StatusResultAllOf {
|
|
|
6801
7032
|
* Regula Document Reader Web API
|
|
6802
7033
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
6803
7034
|
*
|
|
6804
|
-
* The version of the OpenAPI document:
|
|
7035
|
+
* The version of the OpenAPI document: 7.1.0
|
|
6805
7036
|
*
|
|
6806
7037
|
*
|
|
6807
7038
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -7408,7 +7639,7 @@ export interface ContainerList {
|
|
|
7408
7639
|
* Regula Document Reader Web API
|
|
7409
7640
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
7410
7641
|
*
|
|
7411
|
-
* The version of the OpenAPI document:
|
|
7642
|
+
* The version of the OpenAPI document: 7.1.0
|
|
7412
7643
|
*
|
|
7413
7644
|
*
|
|
7414
7645
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -7462,7 +7693,7 @@ export interface DeviceInfo {
|
|
|
7462
7693
|
* Regula Document Reader Web API
|
|
7463
7694
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
7464
7695
|
*
|
|
7465
|
-
* The version of the OpenAPI document:
|
|
7696
|
+
* The version of the OpenAPI document: 7.1.0
|
|
7466
7697
|
*
|
|
7467
7698
|
*
|
|
7468
7699
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -7505,7 +7736,7 @@ export interface DocumentTypesCandidates {
|
|
|
7505
7736
|
* Regula Document Reader Web API
|
|
7506
7737
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
7507
7738
|
*
|
|
7508
|
-
* The version of the OpenAPI document:
|
|
7739
|
+
* The version of the OpenAPI document: 7.1.0
|
|
7509
7740
|
*
|
|
7510
7741
|
*
|
|
7511
7742
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -7596,7 +7827,7 @@ export interface FaceApi {
|
|
|
7596
7827
|
* Regula Document Reader Web API
|
|
7597
7828
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
7598
7829
|
*
|
|
7599
|
-
* The version of the OpenAPI document:
|
|
7830
|
+
* The version of the OpenAPI document: 7.1.0
|
|
7600
7831
|
*
|
|
7601
7832
|
*
|
|
7602
7833
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -7658,49 +7889,112 @@ export interface ImageQA {
|
|
|
7658
7889
|
*/
|
|
7659
7890
|
documentPositionIndent?: number;
|
|
7660
7891
|
}
|
|
7892
|
+
/**
|
|
7893
|
+
*
|
|
7894
|
+
* @export
|
|
7895
|
+
* @interface ImageTransactionData
|
|
7896
|
+
*/
|
|
7897
|
+
export interface ImageTransactionData {
|
|
7898
|
+
/**
|
|
7899
|
+
*
|
|
7900
|
+
* @type {ImagesFieldValue}
|
|
7901
|
+
* @memberof ImageTransactionData
|
|
7902
|
+
*/
|
|
7903
|
+
image?: ImagesFieldValue;
|
|
7904
|
+
}
|
|
7661
7905
|
/**
|
|
7662
7906
|
* Regula Document Reader Web API
|
|
7663
7907
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
7664
7908
|
*
|
|
7665
|
-
* The version of the OpenAPI document:
|
|
7909
|
+
* The version of the OpenAPI document: 7.1.0
|
|
7666
7910
|
*
|
|
7667
7911
|
*
|
|
7668
7912
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7669
7913
|
* https://openapi-generator.tech
|
|
7670
7914
|
* Do not edit the class manually.
|
|
7671
7915
|
*/
|
|
7916
|
+
/**
|
|
7917
|
+
* Video
|
|
7918
|
+
* @export
|
|
7919
|
+
* @interface InDataVideo
|
|
7920
|
+
*/
|
|
7921
|
+
export interface InDataVideo {
|
|
7922
|
+
/**
|
|
7923
|
+
* A free-form object containing video\'s extended attributes.
|
|
7924
|
+
* @type {{ [key: string]: object; }}
|
|
7925
|
+
* @memberof InDataVideo
|
|
7926
|
+
*/
|
|
7927
|
+
metadata?: {
|
|
7928
|
+
[key: string]: object;
|
|
7929
|
+
};
|
|
7930
|
+
/**
|
|
7931
|
+
* Video url
|
|
7932
|
+
* @type {string}
|
|
7933
|
+
* @memberof InDataVideo
|
|
7934
|
+
*/
|
|
7935
|
+
url?: string;
|
|
7936
|
+
}
|
|
7672
7937
|
/**
|
|
7673
7938
|
*
|
|
7674
7939
|
* @export
|
|
7675
|
-
* @
|
|
7940
|
+
* @interface TransactionImagesFieldValue
|
|
7676
7941
|
*/
|
|
7677
|
-
export
|
|
7942
|
+
export interface TransactionImagesFieldValue {
|
|
7678
7943
|
/**
|
|
7679
|
-
|
|
7680
|
-
|
|
7681
|
-
|
|
7944
|
+
*
|
|
7945
|
+
* @type {GraphicFieldType}
|
|
7946
|
+
* @memberof TransactionImagesFieldValue
|
|
7947
|
+
*/
|
|
7948
|
+
fieldType?: GraphicFieldType;
|
|
7682
7949
|
/**
|
|
7683
|
-
|
|
7684
|
-
|
|
7685
|
-
|
|
7950
|
+
*
|
|
7951
|
+
* @type {Light}
|
|
7952
|
+
* @memberof TransactionImagesFieldValue
|
|
7953
|
+
*/
|
|
7954
|
+
light?: Light;
|
|
7686
7955
|
/**
|
|
7687
|
-
|
|
7688
|
-
|
|
7689
|
-
|
|
7956
|
+
*
|
|
7957
|
+
* @type {number}
|
|
7958
|
+
* @memberof TransactionImagesFieldValue
|
|
7959
|
+
*/
|
|
7960
|
+
listIdx?: number;
|
|
7690
7961
|
/**
|
|
7691
|
-
|
|
7692
|
-
|
|
7693
|
-
|
|
7962
|
+
* Page index of the image from input list
|
|
7963
|
+
* @type {number}
|
|
7964
|
+
* @memberof TransactionImagesFieldValue
|
|
7965
|
+
*/
|
|
7966
|
+
pageIdx?: number;
|
|
7694
7967
|
/**
|
|
7695
|
-
|
|
7696
|
-
|
|
7697
|
-
|
|
7968
|
+
* Image url
|
|
7969
|
+
* @type {string}
|
|
7970
|
+
* @memberof TransactionImagesFieldValue
|
|
7971
|
+
*/
|
|
7972
|
+
url?: string;
|
|
7973
|
+
}
|
|
7974
|
+
/**
|
|
7975
|
+
*
|
|
7976
|
+
* @export
|
|
7977
|
+
* @interface InData
|
|
7978
|
+
*/
|
|
7979
|
+
export interface InData {
|
|
7980
|
+
/**
|
|
7981
|
+
*
|
|
7982
|
+
* @type {InDataVideo}
|
|
7983
|
+
* @memberof InData
|
|
7984
|
+
*/
|
|
7985
|
+
video?: InDataVideo;
|
|
7986
|
+
/**
|
|
7987
|
+
*
|
|
7988
|
+
* @type {Array<TransactionImagesFieldValue>}
|
|
7989
|
+
* @memberof InData
|
|
7990
|
+
*/
|
|
7991
|
+
images?: Array<TransactionImagesFieldValue>;
|
|
7698
7992
|
}
|
|
7699
7993
|
/**
|
|
7700
7994
|
* Regula Document Reader Web API
|
|
7701
7995
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
7702
7996
|
*
|
|
7703
|
-
* The version of the OpenAPI document:
|
|
7997
|
+
* The version of the OpenAPI document: 7.1.0
|
|
7704
7998
|
*
|
|
7705
7999
|
*
|
|
7706
8000
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -7710,39 +8004,27 @@ export enum LogLevel {
|
|
|
7710
8004
|
/**
|
|
7711
8005
|
*
|
|
7712
8006
|
* @export
|
|
7713
|
-
* @
|
|
8007
|
+
* @interface InlineResponse200
|
|
7714
8008
|
*/
|
|
7715
|
-
export
|
|
7716
|
-
/**
|
|
7717
|
-
* 1x30
|
|
7718
|
-
*/
|
|
7719
|
-
IDL = "1x30",
|
|
7720
|
-
/**
|
|
7721
|
-
* 3x30
|
|
7722
|
-
*/
|
|
7723
|
-
ID1 = "3x30",
|
|
7724
|
-
/**
|
|
7725
|
-
* 2x36
|
|
7726
|
-
*/
|
|
7727
|
-
ID2 = "2x36",
|
|
7728
|
-
/**
|
|
7729
|
-
* 2x44
|
|
7730
|
-
*/
|
|
7731
|
-
ID3 = "2x44",
|
|
8009
|
+
export interface InlineResponse200 {
|
|
7732
8010
|
/**
|
|
7733
|
-
|
|
7734
|
-
|
|
7735
|
-
|
|
8011
|
+
*
|
|
8012
|
+
* @type {string}
|
|
8013
|
+
* @memberof InlineResponse200
|
|
8014
|
+
*/
|
|
8015
|
+
tag?: string;
|
|
7736
8016
|
/**
|
|
7737
|
-
|
|
7738
|
-
|
|
7739
|
-
|
|
8017
|
+
*
|
|
8018
|
+
* @type {string}
|
|
8019
|
+
* @memberof InlineResponse200
|
|
8020
|
+
*/
|
|
8021
|
+
transactionId?: string;
|
|
7740
8022
|
}
|
|
7741
8023
|
/**
|
|
7742
8024
|
* Regula Document Reader Web API
|
|
7743
8025
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
7744
8026
|
*
|
|
7745
|
-
* The version of the OpenAPI document:
|
|
8027
|
+
* The version of the OpenAPI document: 7.1.0
|
|
7746
8028
|
*
|
|
7747
8029
|
*
|
|
7748
8030
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -7754,21 +8036,249 @@ export enum MRZFormat {
|
|
|
7754
8036
|
* @export
|
|
7755
8037
|
* @enum {string}
|
|
7756
8038
|
*/
|
|
7757
|
-
export enum
|
|
8039
|
+
export enum ProcessingStatus {
|
|
7758
8040
|
/**
|
|
7759
|
-
*
|
|
8041
|
+
* Processing was not finished
|
|
7760
8042
|
*/
|
|
7761
|
-
|
|
8043
|
+
NOT_FINISHED = 0,
|
|
7762
8044
|
/**
|
|
7763
|
-
*
|
|
8045
|
+
* Processing finished
|
|
7764
8046
|
*/
|
|
7765
|
-
|
|
7766
|
-
|
|
7767
|
-
|
|
7768
|
-
|
|
8047
|
+
FINISHED = 1,
|
|
8048
|
+
/**
|
|
8049
|
+
* Processing finished by timeout
|
|
8050
|
+
*/
|
|
8051
|
+
TIMEOUT = 2
|
|
8052
|
+
}
|
|
8053
|
+
/**
|
|
8054
|
+
* Regula Document Reader Web API
|
|
8055
|
+
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
8056
|
+
*
|
|
8057
|
+
* The version of the OpenAPI document: 7.1.0
|
|
8058
|
+
*
|
|
8059
|
+
*
|
|
8060
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8061
|
+
* https://openapi-generator.tech
|
|
8062
|
+
* Do not edit the class manually.
|
|
8063
|
+
*/
|
|
8064
|
+
/**
|
|
8065
|
+
*
|
|
8066
|
+
* @export
|
|
8067
|
+
* @interface TransactionInfo
|
|
8068
|
+
*/
|
|
8069
|
+
export interface TransactionInfo {
|
|
8070
|
+
/**
|
|
8071
|
+
*
|
|
8072
|
+
* @type {string}
|
|
8073
|
+
* @memberof TransactionInfo
|
|
8074
|
+
*/
|
|
8075
|
+
ComputerName?: string;
|
|
8076
|
+
/**
|
|
8077
|
+
*
|
|
8078
|
+
* @type {string}
|
|
8079
|
+
* @memberof TransactionInfo
|
|
8080
|
+
*/
|
|
8081
|
+
DateTime?: string;
|
|
8082
|
+
/**
|
|
8083
|
+
*
|
|
8084
|
+
* @type {string}
|
|
8085
|
+
* @memberof TransactionInfo
|
|
8086
|
+
*/
|
|
8087
|
+
TransactionID?: string;
|
|
8088
|
+
/**
|
|
8089
|
+
*
|
|
8090
|
+
* @type {string}
|
|
8091
|
+
* @memberof TransactionInfo
|
|
8092
|
+
*/
|
|
8093
|
+
UserName?: string;
|
|
8094
|
+
}
|
|
8095
|
+
/**
|
|
8096
|
+
*
|
|
8097
|
+
* @export
|
|
8098
|
+
* @interface InlineResponse2001
|
|
8099
|
+
*/
|
|
8100
|
+
export interface InlineResponse2001 {
|
|
8101
|
+
/**
|
|
8102
|
+
*
|
|
8103
|
+
* @type {RfidLocation}
|
|
8104
|
+
* @memberof InlineResponse2001
|
|
8105
|
+
*/
|
|
8106
|
+
ChipPage?: RfidLocation;
|
|
8107
|
+
/**
|
|
8108
|
+
*
|
|
8109
|
+
* @type {ProcessingStatus}
|
|
8110
|
+
* @memberof InlineResponse2001
|
|
8111
|
+
*/
|
|
8112
|
+
ProcessingFinished?: ProcessingStatus;
|
|
8113
|
+
/**
|
|
8114
|
+
*
|
|
8115
|
+
* @type {ContainerList}
|
|
8116
|
+
* @memberof InlineResponse2001
|
|
8117
|
+
*/
|
|
8118
|
+
ContainerList?: ContainerList;
|
|
8119
|
+
/**
|
|
8120
|
+
*
|
|
8121
|
+
* @type {TransactionInfo}
|
|
8122
|
+
* @memberof InlineResponse2001
|
|
8123
|
+
*/
|
|
8124
|
+
TransactionInfo?: TransactionInfo;
|
|
8125
|
+
/**
|
|
8126
|
+
* Base64 encoded transaction processing log
|
|
8127
|
+
* @type {string}
|
|
8128
|
+
* @memberof InlineResponse2001
|
|
8129
|
+
*/
|
|
8130
|
+
log?: string;
|
|
8131
|
+
/**
|
|
8132
|
+
* Free-form object provided in request. See passBackObject property of ProcessRequest.
|
|
8133
|
+
* @type {{ [key: string]: object; }}
|
|
8134
|
+
* @memberof InlineResponse2001
|
|
8135
|
+
*/
|
|
8136
|
+
passBackObject?: {
|
|
8137
|
+
[key: string]: object;
|
|
8138
|
+
};
|
|
8139
|
+
/**
|
|
8140
|
+
*
|
|
8141
|
+
* @type {number}
|
|
8142
|
+
* @memberof InlineResponse2001
|
|
8143
|
+
*/
|
|
8144
|
+
morePagesAvailable?: number;
|
|
8145
|
+
/**
|
|
8146
|
+
* Time the document processing has taken, ms.
|
|
8147
|
+
* @type {number}
|
|
8148
|
+
* @memberof InlineResponse2001
|
|
8149
|
+
*/
|
|
8150
|
+
elapsedTime?: number;
|
|
8151
|
+
}
|
|
8152
|
+
/**
|
|
8153
|
+
* Regula Document Reader Web API
|
|
8154
|
+
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
8155
|
+
*
|
|
8156
|
+
* The version of the OpenAPI document: 7.1.0
|
|
8157
|
+
*
|
|
8158
|
+
*
|
|
8159
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8160
|
+
* https://openapi-generator.tech
|
|
8161
|
+
* Do not edit the class manually.
|
|
8162
|
+
*/
|
|
8163
|
+
/**
|
|
8164
|
+
*
|
|
8165
|
+
* @export
|
|
8166
|
+
* @enum {string}
|
|
8167
|
+
*/
|
|
8168
|
+
export enum LogLevel {
|
|
8169
|
+
/**
|
|
8170
|
+
* Fatal error
|
|
8171
|
+
*/
|
|
8172
|
+
FATAL_ERROR = "FatalError",
|
|
8173
|
+
/**
|
|
8174
|
+
* Error
|
|
8175
|
+
*/
|
|
8176
|
+
ERROR = "Error",
|
|
8177
|
+
/**
|
|
8178
|
+
* Warning
|
|
8179
|
+
*/
|
|
8180
|
+
WARNING = "Warning",
|
|
8181
|
+
/**
|
|
8182
|
+
* Info
|
|
8183
|
+
*/
|
|
8184
|
+
INFO = "Info",
|
|
8185
|
+
/**
|
|
8186
|
+
* Debug
|
|
8187
|
+
*/
|
|
8188
|
+
DEBUG = "Debug"
|
|
8189
|
+
}
|
|
8190
|
+
/**
|
|
8191
|
+
* Regula Document Reader Web API
|
|
8192
|
+
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
8193
|
+
*
|
|
8194
|
+
* The version of the OpenAPI document: 7.1.0
|
|
8195
|
+
*
|
|
8196
|
+
*
|
|
8197
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8198
|
+
* https://openapi-generator.tech
|
|
8199
|
+
* Do not edit the class manually.
|
|
8200
|
+
*/
|
|
8201
|
+
/**
|
|
8202
|
+
*
|
|
8203
|
+
* @export
|
|
8204
|
+
* @enum {string}
|
|
8205
|
+
*/
|
|
8206
|
+
export enum MRZFormat {
|
|
8207
|
+
/**
|
|
8208
|
+
* 1x30
|
|
8209
|
+
*/
|
|
8210
|
+
IDL = "1x30",
|
|
8211
|
+
/**
|
|
8212
|
+
* 3x30
|
|
8213
|
+
*/
|
|
8214
|
+
ID1 = "3x30",
|
|
8215
|
+
/**
|
|
8216
|
+
* 2x36
|
|
8217
|
+
*/
|
|
8218
|
+
ID2 = "2x36",
|
|
8219
|
+
/**
|
|
8220
|
+
* 2x44
|
|
8221
|
+
*/
|
|
8222
|
+
ID3 = "2x44",
|
|
8223
|
+
/**
|
|
8224
|
+
* 1x6
|
|
8225
|
+
*/
|
|
8226
|
+
CAN = "1x6",
|
|
8227
|
+
/**
|
|
8228
|
+
* 2x30
|
|
8229
|
+
*/
|
|
8230
|
+
ID1_2_30 = "2x30"
|
|
8231
|
+
}
|
|
8232
|
+
/**
|
|
8233
|
+
* Regula Document Reader Web API
|
|
7769
8234
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
7770
8235
|
*
|
|
7771
|
-
* The version of the OpenAPI document:
|
|
8236
|
+
* The version of the OpenAPI document: 7.1.0
|
|
8237
|
+
*
|
|
8238
|
+
*
|
|
8239
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8240
|
+
* https://openapi-generator.tech
|
|
8241
|
+
* Do not edit the class manually.
|
|
8242
|
+
*/
|
|
8243
|
+
/**
|
|
8244
|
+
*
|
|
8245
|
+
* @export
|
|
8246
|
+
* @enum {string}
|
|
8247
|
+
*/
|
|
8248
|
+
export enum MeasureSystem {
|
|
8249
|
+
/**
|
|
8250
|
+
* Metric system of measurement, where things are measured in meters and grams
|
|
8251
|
+
*/
|
|
8252
|
+
METRIC = 0,
|
|
8253
|
+
/**
|
|
8254
|
+
* Imperial System of Measurement, where things are measured in feet, inches and pounds
|
|
8255
|
+
*/
|
|
8256
|
+
IMPERIAL = 1
|
|
8257
|
+
}
|
|
8258
|
+
/**
|
|
8259
|
+
*
|
|
8260
|
+
* @export
|
|
8261
|
+
* @interface OutData
|
|
8262
|
+
*/
|
|
8263
|
+
export interface OutData {
|
|
8264
|
+
/**
|
|
8265
|
+
* Response url
|
|
8266
|
+
* @type {string}
|
|
8267
|
+
* @memberof OutData
|
|
8268
|
+
*/
|
|
8269
|
+
url?: string;
|
|
8270
|
+
/**
|
|
8271
|
+
*
|
|
8272
|
+
* @type {Array<TransactionImagesFieldValue>}
|
|
8273
|
+
* @memberof OutData
|
|
8274
|
+
*/
|
|
8275
|
+
images?: Array<TransactionImagesFieldValue>;
|
|
8276
|
+
}
|
|
8277
|
+
/**
|
|
8278
|
+
* Regula Document Reader Web API
|
|
8279
|
+
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
8280
|
+
*
|
|
8281
|
+
* The version of the OpenAPI document: 7.1.0
|
|
7772
8282
|
*
|
|
7773
8283
|
*
|
|
7774
8284
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -8658,7 +9168,7 @@ export enum ParsingNotificationCodes {
|
|
|
8658
9168
|
* Regula Document Reader Web API
|
|
8659
9169
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
8660
9170
|
*
|
|
8661
|
-
* The version of the OpenAPI document:
|
|
9171
|
+
* The version of the OpenAPI document: 7.1.0
|
|
8662
9172
|
*
|
|
8663
9173
|
*
|
|
8664
9174
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -8701,7 +9211,7 @@ export interface ProcessParamsRfid {
|
|
|
8701
9211
|
* Regula Document Reader Web API
|
|
8702
9212
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
8703
9213
|
*
|
|
8704
|
-
* The version of the OpenAPI document:
|
|
9214
|
+
* The version of the OpenAPI document: 7.1.0
|
|
8705
9215
|
*
|
|
8706
9216
|
*
|
|
8707
9217
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -8819,7 +9329,7 @@ export enum Result {
|
|
|
8819
9329
|
* Regula Document Reader Web API
|
|
8820
9330
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
8821
9331
|
*
|
|
8822
|
-
* The version of the OpenAPI document:
|
|
9332
|
+
* The version of the OpenAPI document: 7.1.0
|
|
8823
9333
|
*
|
|
8824
9334
|
*
|
|
8825
9335
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -8909,7 +9419,7 @@ export enum Scenario {
|
|
|
8909
9419
|
* Regula Document Reader Web API
|
|
8910
9420
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
8911
9421
|
*
|
|
8912
|
-
* The version of the OpenAPI document:
|
|
9422
|
+
* The version of the OpenAPI document: 7.1.0
|
|
8913
9423
|
*
|
|
8914
9424
|
*
|
|
8915
9425
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -8951,12 +9461,6 @@ export interface ProcessParams {
|
|
|
8951
9461
|
* @memberof ProcessParams
|
|
8952
9462
|
*/
|
|
8953
9463
|
lcidFilter?: Array<number>;
|
|
8954
|
-
/**
|
|
8955
|
-
* This parameter is used to enable document liveness check.
|
|
8956
|
-
* @type {boolean}
|
|
8957
|
-
* @memberof ProcessParams
|
|
8958
|
-
*/
|
|
8959
|
-
checkLiveness?: boolean;
|
|
8960
9464
|
/**
|
|
8961
9465
|
* The list of LCID types to ignore during the recognition. If empty, values with all LCID types will be extracted. Narrowing down the list can reduce processing time. Empty by default.
|
|
8962
9466
|
* @type {Array<number>}
|
|
@@ -9015,6 +9519,7 @@ export interface ProcessParams {
|
|
|
9015
9519
|
* Enable this option if the image you provide contains double page spread of the passport and you want to process both pages in one go. It makes sense to use it for documents that have meaningful information on both pages, like Russian domestic passport, or some others. Disabled by default.
|
|
9016
9520
|
* @type {boolean}
|
|
9017
9521
|
* @memberof ProcessParams
|
|
9522
|
+
* @deprecated
|
|
9018
9523
|
*/
|
|
9019
9524
|
doublePageSpread?: boolean;
|
|
9020
9525
|
/**
|
|
@@ -9095,6 +9600,7 @@ export interface ProcessParams {
|
|
|
9095
9600
|
* When enabled, shorten the list of candidates to process during document detection in a single image process mode. Reduces processing time for specific backgrounds. Enabled by default.
|
|
9096
9601
|
* @type {boolean}
|
|
9097
9602
|
* @memberof ProcessParams
|
|
9603
|
+
* @deprecated
|
|
9098
9604
|
*/
|
|
9099
9605
|
fastDocDetect?: boolean;
|
|
9100
9606
|
/**
|
|
@@ -9259,6 +9765,18 @@ export interface ProcessParams {
|
|
|
9259
9765
|
* @memberof ProcessParams
|
|
9260
9766
|
*/
|
|
9261
9767
|
rfid?: ProcessParamsRfid;
|
|
9768
|
+
/**
|
|
9769
|
+
* This parameter is used to enable authenticity checks
|
|
9770
|
+
* @type {boolean}
|
|
9771
|
+
* @memberof ProcessParams
|
|
9772
|
+
*/
|
|
9773
|
+
checkAuth?: boolean;
|
|
9774
|
+
/**
|
|
9775
|
+
*
|
|
9776
|
+
* @type {AuthParams}
|
|
9777
|
+
* @memberof ProcessParams
|
|
9778
|
+
*/
|
|
9779
|
+
authParams?: AuthParams;
|
|
9262
9780
|
}
|
|
9263
9781
|
/**
|
|
9264
9782
|
*
|
|
@@ -9289,7 +9807,7 @@ export interface ProcessRequestImage {
|
|
|
9289
9807
|
* Regula Document Reader Web API
|
|
9290
9808
|
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
9291
9809
|
*
|
|
9292
|
-
* The version of the OpenAPI document:
|
|
9810
|
+
* The version of the OpenAPI document: 7.1.0
|
|
9293
9811
|
*
|
|
9294
9812
|
*
|
|
9295
9813
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -9372,78 +9890,6 @@ export interface ProcessRequest {
|
|
|
9372
9890
|
[key: string]: object;
|
|
9373
9891
|
};
|
|
9374
9892
|
}
|
|
9375
|
-
/**
|
|
9376
|
-
* Regula Document Reader Web API
|
|
9377
|
-
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
9378
|
-
*
|
|
9379
|
-
* The version of the OpenAPI document: 6.9.0
|
|
9380
|
-
*
|
|
9381
|
-
*
|
|
9382
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9383
|
-
* https://openapi-generator.tech
|
|
9384
|
-
* Do not edit the class manually.
|
|
9385
|
-
*/
|
|
9386
|
-
/**
|
|
9387
|
-
*
|
|
9388
|
-
* @export
|
|
9389
|
-
* @enum {string}
|
|
9390
|
-
*/
|
|
9391
|
-
export enum ProcessingStatus {
|
|
9392
|
-
/**
|
|
9393
|
-
* Processing was not finished
|
|
9394
|
-
*/
|
|
9395
|
-
NOT_FINISHED = 0,
|
|
9396
|
-
/**
|
|
9397
|
-
* Processing finished
|
|
9398
|
-
*/
|
|
9399
|
-
FINISHED = 1,
|
|
9400
|
-
/**
|
|
9401
|
-
* Processing finished by timeout
|
|
9402
|
-
*/
|
|
9403
|
-
TIMEOUT = 2
|
|
9404
|
-
}
|
|
9405
|
-
/**
|
|
9406
|
-
* Regula Document Reader Web API
|
|
9407
|
-
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
9408
|
-
*
|
|
9409
|
-
* The version of the OpenAPI document: 6.9.0
|
|
9410
|
-
*
|
|
9411
|
-
*
|
|
9412
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9413
|
-
* https://openapi-generator.tech
|
|
9414
|
-
* Do not edit the class manually.
|
|
9415
|
-
*/
|
|
9416
|
-
/**
|
|
9417
|
-
*
|
|
9418
|
-
* @export
|
|
9419
|
-
* @interface TransactionInfo
|
|
9420
|
-
*/
|
|
9421
|
-
export interface TransactionInfo {
|
|
9422
|
-
/**
|
|
9423
|
-
*
|
|
9424
|
-
* @type {string}
|
|
9425
|
-
* @memberof TransactionInfo
|
|
9426
|
-
*/
|
|
9427
|
-
ComputerName?: string;
|
|
9428
|
-
/**
|
|
9429
|
-
*
|
|
9430
|
-
* @type {string}
|
|
9431
|
-
* @memberof TransactionInfo
|
|
9432
|
-
*/
|
|
9433
|
-
DateTime?: string;
|
|
9434
|
-
/**
|
|
9435
|
-
*
|
|
9436
|
-
* @type {string}
|
|
9437
|
-
* @memberof TransactionInfo
|
|
9438
|
-
*/
|
|
9439
|
-
TransactionID?: string;
|
|
9440
|
-
/**
|
|
9441
|
-
*
|
|
9442
|
-
* @type {string}
|
|
9443
|
-
* @memberof TransactionInfo
|
|
9444
|
-
*/
|
|
9445
|
-
UserName?: string;
|
|
9446
|
-
}
|
|
9447
9893
|
/**
|
|
9448
9894
|
*
|
|
9449
9895
|
* @export
|
|
@@ -9501,6 +9947,107 @@ export interface ProcessResponse {
|
|
|
9501
9947
|
*/
|
|
9502
9948
|
elapsedTime?: number;
|
|
9503
9949
|
}
|
|
9950
|
+
/**
|
|
9951
|
+
*
|
|
9952
|
+
* @export
|
|
9953
|
+
* @interface TransactionImage
|
|
9954
|
+
*/
|
|
9955
|
+
export interface TransactionImage {
|
|
9956
|
+
/**
|
|
9957
|
+
*
|
|
9958
|
+
* @type {ImagesFieldValue}
|
|
9959
|
+
* @memberof TransactionImage
|
|
9960
|
+
*/
|
|
9961
|
+
image?: ImagesFieldValue;
|
|
9962
|
+
}
|
|
9963
|
+
/**
|
|
9964
|
+
*
|
|
9965
|
+
* @export
|
|
9966
|
+
* @interface TransactionProcessGetResponse
|
|
9967
|
+
*/
|
|
9968
|
+
export interface TransactionProcessGetResponse {
|
|
9969
|
+
/**
|
|
9970
|
+
*
|
|
9971
|
+
* @type {number}
|
|
9972
|
+
* @memberof TransactionProcessGetResponse
|
|
9973
|
+
*/
|
|
9974
|
+
transactionId?: number;
|
|
9975
|
+
/**
|
|
9976
|
+
*
|
|
9977
|
+
* @type {string}
|
|
9978
|
+
* @memberof TransactionProcessGetResponse
|
|
9979
|
+
*/
|
|
9980
|
+
tag?: string;
|
|
9981
|
+
/**
|
|
9982
|
+
*
|
|
9983
|
+
* @type {OutData}
|
|
9984
|
+
* @memberof TransactionProcessGetResponse
|
|
9985
|
+
*/
|
|
9986
|
+
outData?: OutData;
|
|
9987
|
+
/**
|
|
9988
|
+
*
|
|
9989
|
+
* @type {InData}
|
|
9990
|
+
* @memberof TransactionProcessGetResponse
|
|
9991
|
+
*/
|
|
9992
|
+
inData?: InData;
|
|
9993
|
+
}
|
|
9994
|
+
/**
|
|
9995
|
+
*
|
|
9996
|
+
* @export
|
|
9997
|
+
* @interface TransactionProcessRequest
|
|
9998
|
+
*/
|
|
9999
|
+
export interface TransactionProcessRequest {
|
|
10000
|
+
/**
|
|
10001
|
+
* session id
|
|
10002
|
+
* @type {string}
|
|
10003
|
+
* @memberof TransactionProcessRequest
|
|
10004
|
+
*/
|
|
10005
|
+
tag?: string;
|
|
10006
|
+
/**
|
|
10007
|
+
*
|
|
10008
|
+
* @type {ProcessParams}
|
|
10009
|
+
* @memberof TransactionProcessRequest
|
|
10010
|
+
*/
|
|
10011
|
+
processParam: ProcessParams;
|
|
10012
|
+
/**
|
|
10013
|
+
*
|
|
10014
|
+
* @type {Array<ProcessRequestImage>}
|
|
10015
|
+
* @memberof TransactionProcessRequest
|
|
10016
|
+
*/
|
|
10017
|
+
List?: Array<ProcessRequestImage>;
|
|
10018
|
+
/**
|
|
10019
|
+
* Live portrait photo
|
|
10020
|
+
* @type {string}
|
|
10021
|
+
* @memberof TransactionProcessRequest
|
|
10022
|
+
*/
|
|
10023
|
+
livePortrait?: string;
|
|
10024
|
+
/**
|
|
10025
|
+
* Portrait photo from an external source
|
|
10026
|
+
* @type {string}
|
|
10027
|
+
* @memberof TransactionProcessRequest
|
|
10028
|
+
*/
|
|
10029
|
+
extPortrait?: string;
|
|
10030
|
+
/**
|
|
10031
|
+
*
|
|
10032
|
+
* @type {ContainerList}
|
|
10033
|
+
* @memberof TransactionProcessRequest
|
|
10034
|
+
*/
|
|
10035
|
+
ContainerList?: ContainerList;
|
|
10036
|
+
/**
|
|
10037
|
+
*
|
|
10038
|
+
* @type {ProcessSystemInfo}
|
|
10039
|
+
* @memberof TransactionProcessRequest
|
|
10040
|
+
*/
|
|
10041
|
+
systemInfo?: ProcessSystemInfo;
|
|
10042
|
+
/**
|
|
10043
|
+
* Free-form object to be included in response. Must be object, not list or simple value. Do not affect document processing. Use it freely to pass your app params. Stored in process logs.
|
|
10044
|
+
* @type {{ [key: string]: object; }}
|
|
10045
|
+
* @memberof TransactionProcessRequest
|
|
10046
|
+
*/
|
|
10047
|
+
passBackObject?: {
|
|
10048
|
+
[key: string]: object;
|
|
10049
|
+
};
|
|
10050
|
+
}
|
|
9504
10051
|
export class TextFieldExt implements TextField {
|
|
9505
10052
|
fieldType: TextFieldType;
|
|
9506
10053
|
fieldName: string;
|