Skip to content

Commit 2a08c47

Browse files
Merge pull request #235 from regulaforensics/stable
Stable -> Develop
2 parents 6aea8b4 + 9427b15 commit 2a08c47

13 files changed

+56
-164
lines changed

src/.openapi-generator/FILES

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ models/log-level.ts
114114
models/measure-system.ts
115115
models/mrz-detect-mode-enum.ts
116116
models/mrz-position-item.ts
117-
models/mrz-position.ts
118117
models/mrzdetector-result.ts
119118
models/mrzformat.ts
120119
models/mrzposition-result.ts

src/models/container-list-list-inner.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,6 @@ import type { MRZTestQuality } from './mrztest-quality';
102102
import type { MRZTestQualityResult } from './mrztest-quality-result';
103103
// May contain unused imports in some cases
104104
// @ts-ignore
105-
import type { MrzPosition } from './mrz-position';
106-
// May contain unused imports in some cases
107-
// @ts-ignore
108105
import type { OneCandidate } from './one-candidate';
109106
// May contain unused imports in some cases
110107
// @ts-ignore

src/models/doc-visual-extended-field.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
import type { DocVisualExtendedFieldItem } from './doc-visual-extended-field-item';
1919
// May contain unused imports in some cases
2020
// @ts-ignore
21+
import type { LCID } from './lcid';
22+
// May contain unused imports in some cases
23+
// @ts-ignore
2124
import type { RectangleCoordinates } from './rectangle-coordinates';
2225
// May contain unused imports in some cases
2326
// @ts-ignore

src/models/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ export * from './mrztest-quality-item';
113113
export * from './mrztest-quality-result';
114114
export * from './measure-system';
115115
export * from './mrz-detect-mode-enum';
116-
export * from './mrz-position';
117116
export * from './mrz-position-item';
118117
export * from './ocrsecurity-text-item';
119118
export * from './ocrsecurity-text-result';

src/models/light.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ export enum Light {
2626
*/
2727
OFF = 0,
2828
/**
29-
* Upper/lower lighters of white light scheme
29+
* Upper/lower white
3030
*/
3131
WHITE_TOP = 2,
3232
/**
33-
* Side lighters of white light scheme
33+
* Side white
3434
*/
3535
WHITE_SIDE = 4,
3636
/**
@@ -46,7 +46,7 @@ export enum Light {
4646
*/
4747
UV = 128,
4848
/**
49-
* White coaxial
49+
* Axial white
5050
*/
5151
AXIAL_WHITE = 3072
5252
}

src/models/mrz-position-item.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
// May contain unused imports in some cases
1717
// @ts-ignore
18-
import type { MrzPosition } from './mrz-position';
18+
import type { DocumentPosition } from './document-position';
1919

2020
/**
2121
*
@@ -25,9 +25,9 @@ import type { MrzPosition } from './mrz-position';
2525
export interface MrzPositionItem {
2626
/**
2727
*
28-
* @type {MrzPosition}
28+
* @type {DocumentPosition}
2929
* @memberof MrzPositionItem
3030
*/
31-
'MrzPosition': MrzPosition;
31+
'MrzPosition': DocumentPosition;
3232
}
3333

src/models/mrz-position.ts

Lines changed: 0 additions & 122 deletions
This file was deleted.

src/models/mrzposition-result.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
// May contain unused imports in some cases
1717
// @ts-ignore
18-
import type { MrzPosition } from './mrz-position';
18+
import type { DocumentPosition } from './document-position';
1919
// May contain unused imports in some cases
2020
// @ts-ignore
2121
import type { MrzPositionItem } from './mrz-position-item';

src/models/mrztest-quality.ts

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
*/
1414

1515

16+
// May contain unused imports in some cases
17+
// @ts-ignore
18+
import type { CheckResult } from './check-result';
1619
// May contain unused imports in some cases
1720
// @ts-ignore
1821
import type { StringItem } from './string-item';
@@ -25,16 +28,16 @@ import type { StringItem } from './string-item';
2528
export interface MRZTestQuality {
2629
/**
2730
*
28-
* @type {number}
31+
* @type {CheckResult}
2932
* @memberof MRZTestQuality
3033
*/
31-
'CHECK_SUMS': number;
34+
'CHECK_SUMS': CheckResult;
3235
/**
3336
*
34-
* @type {number}
37+
* @type {CheckResult}
3538
* @memberof MRZTestQuality
3639
*/
37-
'CONTRAST_PRINT': number;
40+
'CONTRAST_PRINT': CheckResult;
3841
/**
3942
*
4043
* @type {number}
@@ -49,22 +52,22 @@ export interface MRZTestQuality {
4952
'MRZ_FORMAT': number;
5053
/**
5154
*
52-
* @type {number}
55+
* @type {CheckResult}
5356
* @memberof MRZTestQuality
5457
*/
55-
'PRINT_POSITION': number;
58+
'PRINT_POSITION': CheckResult;
5659
/**
5760
*
58-
* @type {number}
61+
* @type {CheckResult}
5962
* @memberof MRZTestQuality
6063
*/
61-
'STAIN_MRZ': number;
64+
'STAIN_MRZ': CheckResult;
6265
/**
6366
*
64-
* @type {number}
67+
* @type {CheckResult}
6568
* @memberof MRZTestQuality
6669
*/
67-
'SYMBOLS_PARAM': number;
70+
'SYMBOLS_PARAM': CheckResult;
6871
/**
6972
*
7073
* @type {number}
@@ -79,9 +82,11 @@ export interface MRZTestQuality {
7982
'Strings': Array<StringItem>;
8083
/**
8184
*
82-
* @type {number}
85+
* @type {CheckResult}
8386
* @memberof MRZTestQuality
8487
*/
85-
'TEXTUAL_FILLING': number;
88+
'TEXTUAL_FILLING': CheckResult;
8689
}
8790

91+
92+

src/models/rfid-data-file-type.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ export enum RfidDataFileType {
9797
AUTHENTICITY_V2 = 302,
9898
ATR = 400,
9999
DIR = 401,
100-
_E_SIGN_PK = 500,
101-
_E_SIGN_SIGNED_DATA = 501,
100+
E_SIGN_PK = 500,
101+
E_SIGN_SIGNED_DATA = 501,
102102
CERTIFICATE = 600,
103103
MASTER_LIST = 601,
104104
DEFECT_LIST = 602,

0 commit comments

Comments
 (0)