Skip to content

Commit 94f0bd3

Browse files
regula-botactions-userdangost
authored
update-clients (#104)
* update-clients * fix build issues --------- Co-authored-by: GitHub Action <action@github.com> Co-authored-by: Danila Kislitsyn <dangost16@gmail.com>
1 parent c26f173 commit 94f0bd3

20 files changed

+2438
-4160
lines changed

example/package-lock.json

Lines changed: 49 additions & 3660 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/.openapi-generator/FILES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ models/document-types-candidates-result.ts
4343
models/document-types-candidates.ts
4444
models/encrypted-rclresult-all-of.ts
4545
models/encrypted-rclresult.ts
46+
models/face-api-search.ts
47+
models/face-api.ts
4648
models/fdsidlist.ts
4749
models/fiber-result-all-of.ts
4850
models/fiber-result.ts

src/models/authenticity-result-type.ts

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,89 @@
2020
* @enum {string}
2121
*/
2222
export enum AuthenticityResultType {
23+
/**
24+
* Document luminescence check in UV light
25+
*/
2326
UV_LUMINESCENCE = 1,
27+
/**
28+
* B900 ink MRZ contrast check in IR light
29+
*/
2430
IR_B900 = 2,
31+
/**
32+
* Image patterns presence/absence check (position, shape, color)
33+
*/
2534
IMAGE_PATTERN = 4,
35+
/**
36+
* Confirm laminate integrity check in axial light
37+
*/
2638
AXIAL_PROTECTION = 8,
39+
/**
40+
* Protection fibers presence check (color, density) in UV light
41+
*/
2742
UV_FIBERS = 16,
43+
/**
44+
* Document elements visibility check in IR light
45+
*/
2846
IR_VISIBILITY = 32,
47+
/**
48+
* OCR for the text field in UV light comparison with other text sources check
49+
*/
2950
OCR_SECURITY_TEXT = 64,
51+
/**
52+
* Invisible Personal Information (IPI) visualization
53+
*/
3054
IPI = 128,
55+
/**
56+
* Owner&#39;s photo embedding check (is photo printed or sticked)
57+
*/
3158
PHOTO_EMBED_TYPE = 512,
59+
/**
60+
* OVI check
61+
*/
3262
OVI = 1024,
63+
/**
64+
* Hologram presence check
65+
*/
3366
HOLOGRAMS = 4096,
67+
/**
68+
* Owner&#39;s photo area advanced check (photo shape, size, position, etc.)
69+
*/
3470
PHOTO_AREA = 8192,
71+
/**
72+
* Portrait comparison check (document printed vs chip vs live)
73+
*/
3574
PORTRAIT_COMPARISON = 32768,
75+
/**
76+
* Barcode format check (code metadata, data format, contents format, etc.)
77+
*/
3678
BARCODE_FORMAT_CHECK = 65536,
79+
/**
80+
* Kinegram check
81+
*/
3782
KINEGRAM = 131072,
83+
/**
84+
* LetterScreen check
85+
*/
3886
LETTER_SCREEN = 262144,
87+
/**
88+
* Hologram detection and validation check
89+
*/
3990
HOLOGRAM_DETECTION = 524288,
91+
/**
92+
* Fingerprint comparison check
93+
*/
4094
FINGERPRINT_COMPARISON = 1048576,
95+
/**
96+
* Document liveness check
97+
*/
4198
LIVENESS = 2097152,
99+
/**
100+
* Extended OCR Check
101+
*/
42102
EXTENDED_OCR_CHECK = 4194304,
103+
/**
104+
* Extended MRZ check
105+
*/
43106
EXTENDED_MRZ_CHECK = 8388608
44107
}
45108

src/models/check-diagnose.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ export enum CheckDiagnose {
9999
BARCODE_DATA_FORMAT_ERROR = 141,
100100
BARCODE_SIZE_PARAMS_ERROR = 142,
101101
NOT_ALL_BARCODES_READ = 143,
102+
GLARES_IN_BARCODE_AREA = 144,
102103
PORTRAIT_COMPARISON_PORTRAITS_DIFFER = 150,
103104
PORTRAIT_COMPARISON_NO_SERVICE_REPLY = 151,
104105
PORTRAIT_COMPARISON_SERVICE_ERROR = 152,
@@ -129,6 +130,7 @@ export enum CheckDiagnose {
129130
OCR_QUALITY_INVALID_BACKGROUND = 222,
130131
LASINK_INVALID_LINES_FREQUENCY = 230,
131132
DOC_LIVENESS_ELECTRONIC_DEVICE_DETECTED = 240,
133+
DOC_LIVENESS_INVALID_BARCODE_BACKGROUND = 241,
132134
LAST_DIAGNOSE_VALUE = 250
133135
}
134136

0 commit comments

Comments
 (0)