@regulaforensics/document-reader-webclient 8.1.408-rc → 8.1.410-rc
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 +35 -132
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -765,11 +765,11 @@ export enum Light {
|
|
|
765
765
|
*/
|
|
766
766
|
OFF = 0,
|
|
767
767
|
/**
|
|
768
|
-
* Upper/lower
|
|
768
|
+
* Upper/lower white
|
|
769
769
|
*/
|
|
770
770
|
WHITE_TOP = 2,
|
|
771
771
|
/**
|
|
772
|
-
* Side
|
|
772
|
+
* Side white
|
|
773
773
|
*/
|
|
774
774
|
WHITE_SIDE = 4,
|
|
775
775
|
/**
|
|
@@ -785,7 +785,7 @@ export enum Light {
|
|
|
785
785
|
*/
|
|
786
786
|
UV = 128,
|
|
787
787
|
/**
|
|
788
|
-
*
|
|
788
|
+
* Axial white
|
|
789
789
|
*/
|
|
790
790
|
AXIAL_WHITE = 3072
|
|
791
791
|
}
|
|
@@ -5113,8 +5113,8 @@ export enum RfidDataFileType {
|
|
|
5113
5113
|
AUTHENTICITY_V2 = 302,
|
|
5114
5114
|
ATR = 400,
|
|
5115
5115
|
DIR = 401,
|
|
5116
|
-
|
|
5117
|
-
|
|
5116
|
+
E_SIGN_PK = 500,
|
|
5117
|
+
E_SIGN_SIGNED_DATA = 501,
|
|
5118
5118
|
CERTIFICATE = 600,
|
|
5119
5119
|
MASTER_LIST = 601,
|
|
5120
5120
|
DEFECT_LIST = 602,
|
|
@@ -12150,103 +12150,6 @@ export interface ResultMRZDetectorItem {
|
|
|
12150
12150
|
* @export
|
|
12151
12151
|
*/
|
|
12152
12152
|
export type MRZDetectorResult = ResultItem & ResultMRZDetectorItem;
|
|
12153
|
-
/**
|
|
12154
|
-
*
|
|
12155
|
-
* @export
|
|
12156
|
-
* @interface MrzPosition
|
|
12157
|
-
*/
|
|
12158
|
-
export interface MrzPosition {
|
|
12159
|
-
/**
|
|
12160
|
-
*
|
|
12161
|
-
* @type {DocumentFormat}
|
|
12162
|
-
* @memberof MrzPosition
|
|
12163
|
-
*/
|
|
12164
|
-
'docFormat': DocumentFormat;
|
|
12165
|
-
/**
|
|
12166
|
-
* Document rotation angle
|
|
12167
|
-
* @type {number}
|
|
12168
|
-
* @memberof MrzPosition
|
|
12169
|
-
*/
|
|
12170
|
-
'Angle': number;
|
|
12171
|
-
/**
|
|
12172
|
-
* Document width
|
|
12173
|
-
* @type {number}
|
|
12174
|
-
* @memberof MrzPosition
|
|
12175
|
-
*/
|
|
12176
|
-
'Width': number;
|
|
12177
|
-
/**
|
|
12178
|
-
* Document height
|
|
12179
|
-
* @type {number}
|
|
12180
|
-
* @memberof MrzPosition
|
|
12181
|
-
*/
|
|
12182
|
-
'Height': number;
|
|
12183
|
-
/**
|
|
12184
|
-
*
|
|
12185
|
-
* @type {Point}
|
|
12186
|
-
* @memberof MrzPosition
|
|
12187
|
-
*/
|
|
12188
|
-
'Center': Point;
|
|
12189
|
-
/**
|
|
12190
|
-
*
|
|
12191
|
-
* @type {Point}
|
|
12192
|
-
* @memberof MrzPosition
|
|
12193
|
-
*/
|
|
12194
|
-
'LeftBottom': Point;
|
|
12195
|
-
/**
|
|
12196
|
-
*
|
|
12197
|
-
* @type {Point}
|
|
12198
|
-
* @memberof MrzPosition
|
|
12199
|
-
*/
|
|
12200
|
-
'LeftTop': Point;
|
|
12201
|
-
/**
|
|
12202
|
-
*
|
|
12203
|
-
* @type {Point}
|
|
12204
|
-
* @memberof MrzPosition
|
|
12205
|
-
*/
|
|
12206
|
-
'RightBottom': Point;
|
|
12207
|
-
/**
|
|
12208
|
-
*
|
|
12209
|
-
* @type {Point}
|
|
12210
|
-
* @memberof MrzPosition
|
|
12211
|
-
*/
|
|
12212
|
-
'RightTop': Point;
|
|
12213
|
-
/**
|
|
12214
|
-
*
|
|
12215
|
-
* @type {number}
|
|
12216
|
-
* @memberof MrzPosition
|
|
12217
|
-
*/
|
|
12218
|
-
'Dpi': number;
|
|
12219
|
-
/**
|
|
12220
|
-
*
|
|
12221
|
-
* @type {number}
|
|
12222
|
-
* @memberof MrzPosition
|
|
12223
|
-
*/
|
|
12224
|
-
'Inverse'?: number;
|
|
12225
|
-
/**
|
|
12226
|
-
*
|
|
12227
|
-
* @type {number}
|
|
12228
|
-
* @memberof MrzPosition
|
|
12229
|
-
*/
|
|
12230
|
-
'ObjArea'?: number;
|
|
12231
|
-
/**
|
|
12232
|
-
*
|
|
12233
|
-
* @type {number}
|
|
12234
|
-
* @memberof MrzPosition
|
|
12235
|
-
*/
|
|
12236
|
-
'ObjIntAngleDev'?: number;
|
|
12237
|
-
/**
|
|
12238
|
-
*
|
|
12239
|
-
* @type {number}
|
|
12240
|
-
* @memberof MrzPosition
|
|
12241
|
-
*/
|
|
12242
|
-
'PerspectiveTr'?: number;
|
|
12243
|
-
/**
|
|
12244
|
-
*
|
|
12245
|
-
* @type {number}
|
|
12246
|
-
* @memberof MrzPosition
|
|
12247
|
-
*/
|
|
12248
|
-
'ResultStatus'?: number;
|
|
12249
|
-
}
|
|
12250
12153
|
/**
|
|
12251
12154
|
*
|
|
12252
12155
|
* @export
|
|
@@ -12255,10 +12158,10 @@ export interface MrzPosition {
|
|
|
12255
12158
|
export interface MrzPositionItem {
|
|
12256
12159
|
/**
|
|
12257
12160
|
*
|
|
12258
|
-
* @type {
|
|
12161
|
+
* @type {DocumentPosition}
|
|
12259
12162
|
* @memberof MrzPositionItem
|
|
12260
12163
|
*/
|
|
12261
|
-
'MrzPosition':
|
|
12164
|
+
'MrzPosition': DocumentPosition;
|
|
12262
12165
|
}
|
|
12263
12166
|
/**
|
|
12264
12167
|
* @type MRZPositionResult
|
|
@@ -12478,16 +12381,16 @@ export interface SymbolEstimationItem {
|
|
|
12478
12381
|
export interface StringItem {
|
|
12479
12382
|
/**
|
|
12480
12383
|
*
|
|
12481
|
-
* @type {
|
|
12384
|
+
* @type {CheckResult}
|
|
12482
12385
|
* @memberof StringItem
|
|
12483
12386
|
*/
|
|
12484
|
-
'ALIGNMENT_SYMBOLS_IN_STRING':
|
|
12387
|
+
'ALIGNMENT_SYMBOLS_IN_STRING': CheckResult;
|
|
12485
12388
|
/**
|
|
12486
12389
|
*
|
|
12487
|
-
* @type {
|
|
12390
|
+
* @type {CheckResult}
|
|
12488
12391
|
* @memberof StringItem
|
|
12489
12392
|
*/
|
|
12490
|
-
'CHECK_SUMS':
|
|
12393
|
+
'CHECK_SUMS': CheckResult;
|
|
12491
12394
|
/**
|
|
12492
12395
|
*
|
|
12493
12396
|
* @type {ErrorCoordinates}
|
|
@@ -12508,34 +12411,34 @@ export interface StringItem {
|
|
|
12508
12411
|
'Fields': Array<FieldItem>;
|
|
12509
12412
|
/**
|
|
12510
12413
|
*
|
|
12511
|
-
* @type {
|
|
12414
|
+
* @type {CheckResult}
|
|
12512
12415
|
* @memberof StringItem
|
|
12513
12416
|
*/
|
|
12514
|
-
'STRINGS_DISTANCE':
|
|
12417
|
+
'STRINGS_DISTANCE': CheckResult;
|
|
12515
12418
|
/**
|
|
12516
12419
|
*
|
|
12517
|
-
* @type {
|
|
12420
|
+
* @type {CheckResult}
|
|
12518
12421
|
* @memberof StringItem
|
|
12519
12422
|
*/
|
|
12520
|
-
'STRINGS_INTERVAL':
|
|
12423
|
+
'STRINGS_INTERVAL': CheckResult;
|
|
12521
12424
|
/**
|
|
12522
12425
|
*
|
|
12523
|
-
* @type {
|
|
12426
|
+
* @type {CheckResult}
|
|
12524
12427
|
* @memberof StringItem
|
|
12525
12428
|
*/
|
|
12526
|
-
'STRING_FILLING':
|
|
12429
|
+
'STRING_FILLING': CheckResult;
|
|
12527
12430
|
/**
|
|
12528
12431
|
*
|
|
12529
|
-
* @type {
|
|
12432
|
+
* @type {CheckResult}
|
|
12530
12433
|
* @memberof StringItem
|
|
12531
12434
|
*/
|
|
12532
|
-
'
|
|
12435
|
+
'STRINGS_POSITION'?: CheckResult;
|
|
12533
12436
|
/**
|
|
12534
12437
|
*
|
|
12535
|
-
* @type {
|
|
12438
|
+
* @type {CheckResult}
|
|
12536
12439
|
* @memberof StringItem
|
|
12537
12440
|
*/
|
|
12538
|
-
'SYMBOLS_PARAM':
|
|
12441
|
+
'SYMBOLS_PARAM': CheckResult;
|
|
12539
12442
|
/**
|
|
12540
12443
|
*
|
|
12541
12444
|
* @type {number}
|
|
@@ -12587,16 +12490,16 @@ export interface StringItem {
|
|
|
12587
12490
|
export interface MRZTestQuality {
|
|
12588
12491
|
/**
|
|
12589
12492
|
*
|
|
12590
|
-
* @type {
|
|
12493
|
+
* @type {CheckResult}
|
|
12591
12494
|
* @memberof MRZTestQuality
|
|
12592
12495
|
*/
|
|
12593
|
-
'CHECK_SUMS':
|
|
12496
|
+
'CHECK_SUMS': CheckResult;
|
|
12594
12497
|
/**
|
|
12595
12498
|
*
|
|
12596
|
-
* @type {
|
|
12499
|
+
* @type {CheckResult}
|
|
12597
12500
|
* @memberof MRZTestQuality
|
|
12598
12501
|
*/
|
|
12599
|
-
'CONTRAST_PRINT':
|
|
12502
|
+
'CONTRAST_PRINT': CheckResult;
|
|
12600
12503
|
/**
|
|
12601
12504
|
*
|
|
12602
12505
|
* @type {number}
|
|
@@ -12611,22 +12514,22 @@ export interface MRZTestQuality {
|
|
|
12611
12514
|
'MRZ_FORMAT': number;
|
|
12612
12515
|
/**
|
|
12613
12516
|
*
|
|
12614
|
-
* @type {
|
|
12517
|
+
* @type {CheckResult}
|
|
12615
12518
|
* @memberof MRZTestQuality
|
|
12616
12519
|
*/
|
|
12617
|
-
'PRINT_POSITION':
|
|
12520
|
+
'PRINT_POSITION': CheckResult;
|
|
12618
12521
|
/**
|
|
12619
12522
|
*
|
|
12620
|
-
* @type {
|
|
12523
|
+
* @type {CheckResult}
|
|
12621
12524
|
* @memberof MRZTestQuality
|
|
12622
12525
|
*/
|
|
12623
|
-
'STAIN_MRZ':
|
|
12526
|
+
'STAIN_MRZ': CheckResult;
|
|
12624
12527
|
/**
|
|
12625
12528
|
*
|
|
12626
|
-
* @type {
|
|
12529
|
+
* @type {CheckResult}
|
|
12627
12530
|
* @memberof MRZTestQuality
|
|
12628
12531
|
*/
|
|
12629
|
-
'SYMBOLS_PARAM':
|
|
12532
|
+
'SYMBOLS_PARAM': CheckResult;
|
|
12630
12533
|
/**
|
|
12631
12534
|
*
|
|
12632
12535
|
* @type {number}
|
|
@@ -12641,10 +12544,10 @@ export interface MRZTestQuality {
|
|
|
12641
12544
|
'Strings': Array<StringItem>;
|
|
12642
12545
|
/**
|
|
12643
12546
|
*
|
|
12644
|
-
* @type {
|
|
12547
|
+
* @type {CheckResult}
|
|
12645
12548
|
* @memberof MRZTestQuality
|
|
12646
12549
|
*/
|
|
12647
|
-
'TEXTUAL_FILLING':
|
|
12550
|
+
'TEXTUAL_FILLING': CheckResult;
|
|
12648
12551
|
}
|
|
12649
12552
|
/**
|
|
12650
12553
|
*
|
|
@@ -12884,10 +12787,10 @@ export interface VisualExtendedFieldItem {
|
|
|
12884
12787
|
'InComparison'?: number;
|
|
12885
12788
|
/**
|
|
12886
12789
|
*
|
|
12887
|
-
* @type {
|
|
12790
|
+
* @type {LCID}
|
|
12888
12791
|
* @memberof VisualExtendedFieldItem
|
|
12889
12792
|
*/
|
|
12890
|
-
'wLCID'?:
|
|
12793
|
+
'wLCID'?: LCID;
|
|
12891
12794
|
/**
|
|
12892
12795
|
*
|
|
12893
12796
|
* @type {number}
|