@authme/identity-verification 2.1.1
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/CHANGELOG.md +943 -0
- package/README.md +7 -0
- package/assets/locale/en_US.json +132 -0
- package/assets/locale/zh_Hant_TW.json +132 -0
- package/assets/styles/style.css +806 -0
- package/package.json +19 -0
- package/src/index.d.ts +4 -0
- package/src/index.js +8 -0
- package/src/index.js.map +1 -0
- package/src/lib/identity-verification-feature-identity-verification.d.ts +26 -0
- package/src/lib/identity-verification-feature-identity-verification.js +105 -0
- package/src/lib/identity-verification-feature-identity-verification.js.map +1 -0
- package/src/lib/interface/config.interface.d.ts +32 -0
- package/src/lib/interface/config.interface.js +24 -0
- package/src/lib/interface/config.interface.js.map +1 -0
- package/src/lib/interface/index.d.ts +1 -0
- package/src/lib/interface/index.js +5 -0
- package/src/lib/interface/index.js.map +1 -0
- package/src/lib/interface/result.model.d.ts +13 -0
- package/src/lib/interface/result.model.js +3 -0
- package/src/lib/interface/result.model.js.map +1 -0
- package/src/lib/lottie/arrow_down.d.ts +215 -0
- package/src/lib/lottie/arrow_down.js +203 -0
- package/src/lib/lottie/arrow_down.js.map +1 -0
- package/src/lib/lottie/arrow_left.d.ts +215 -0
- package/src/lib/lottie/arrow_left.js +203 -0
- package/src/lib/lottie/arrow_left.js.map +1 -0
- package/src/lib/lottie/arrow_right.d.ts +215 -0
- package/src/lib/lottie/arrow_right.js +203 -0
- package/src/lib/lottie/arrow_right.js.map +1 -0
- package/src/lib/lottie/arrow_up.d.ts +215 -0
- package/src/lib/lottie/arrow_up.js +203 -0
- package/src/lib/lottie/arrow_up.js.map +1 -0
- package/src/lib/lottie/card_lr.d.ts +182 -0
- package/src/lib/lottie/card_lr.js +1903 -0
- package/src/lib/lottie/card_lr.js.map +1 -0
- package/src/lib/lottie/card_ud.d.ts +182 -0
- package/src/lib/lottie/card_ud.js +1937 -0
- package/src/lib/lottie/card_ud.js.map +1 -0
- package/src/lib/lottie/index.d.ts +9 -0
- package/src/lib/lottie/index.js +13 -0
- package/src/lib/lottie/index.js.map +1 -0
- package/src/lib/lottie/scan.d.ts +562 -0
- package/src/lib/lottie/scan.js +384 -0
- package/src/lib/lottie/scan.js.map +1 -0
- package/src/lib/lottie/success.d.ts +946 -0
- package/src/lib/lottie/success.js +509 -0
- package/src/lib/lottie/success.js.map +1 -0
- package/src/lib/lottie/tutorial.d.ts +1449 -0
- package/src/lib/lottie/tutorial.js +3683 -0
- package/src/lib/lottie/tutorial.js.map +1 -0
- package/src/lib/module/liveness-verify.module.d.ts +12 -0
- package/src/lib/module/liveness-verify.module.js +189 -0
- package/src/lib/module/liveness-verify.module.js.map +1 -0
- package/src/lib/module/liveness.module.d.ts +12 -0
- package/src/lib/module/liveness.module.js +160 -0
- package/src/lib/module/liveness.module.js.map +1 -0
- package/src/lib/module/mrz.module.d.ts +11 -0
- package/src/lib/module/mrz.module.js +142 -0
- package/src/lib/module/mrz.module.js.map +1 -0
- package/src/lib/module/ocr.module.d.ts +12 -0
- package/src/lib/module/ocr.module.js +220 -0
- package/src/lib/module/ocr.module.js.map +1 -0
- package/src/lib/operator/index.d.ts +16 -0
- package/src/lib/operator/index.js +38 -0
- package/src/lib/operator/index.js.map +1 -0
- package/src/lib/ui/basic.d.ts +13 -0
- package/src/lib/ui/basic.js +62 -0
- package/src/lib/ui/basic.js.map +1 -0
- package/src/lib/ui/index.d.ts +2 -0
- package/src/lib/ui/index.js +6 -0
- package/src/lib/ui/index.js.map +1 -0
- package/src/lib/ui/liveness-flow.d.ts +16 -0
- package/src/lib/ui/liveness-flow.js +154 -0
- package/src/lib/ui/liveness-flow.js.map +1 -0
- package/src/lib/ui/liveness.ui.d.ts +9 -0
- package/src/lib/ui/liveness.ui.js +51 -0
- package/src/lib/ui/liveness.ui.js.map +1 -0
- package/src/lib/ui/ocr-flow.d.ts +73 -0
- package/src/lib/ui/ocr-flow.js +664 -0
- package/src/lib/ui/ocr-flow.js.map +1 -0
- package/src/lib/ui/ocr.ui.d.ts +43 -0
- package/src/lib/ui/ocr.ui.js +193 -0
- package/src/lib/ui/ocr.ui.js.map +1 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,943 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
|
+
|
|
5
|
+
## [2.1.1](https://github.com/AuthMe01/web-client-sdk/compare/prod-2.1.0...prod-2.1.1) (2022-09-08)
|
|
6
|
+
|
|
7
|
+
## 1.2.2 (2022-07-28)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- add upload ocr img from engine-lib ([15e3e9b](https://github.com/AuthMe01/web-client-sdk/commit/15e3e9b98945a53037addb692ea000cb5f745e10))
|
|
12
|
+
- adjust ocr size for pc ([53201c5](https://github.com/AuthMe01/web-client-sdk/commit/53201c5e86386f54bc9e9ece775ec5447c60efe8))
|
|
13
|
+
- adjust top text position ([2b81f08](https://github.com/AuthMe01/web-client-sdk/commit/2b81f08decac3721da577bfe55e9612a7804f086))
|
|
14
|
+
- fix anti-fraud rotate condition ([65dba57](https://github.com/AuthMe01/web-client-sdk/commit/65dba570a2de5e9fa805027ed855fef585fecb4b))
|
|
15
|
+
- fix debug control flag ([b13a86d](https://github.com/AuthMe01/web-client-sdk/commit/b13a86d9dc3a5a2dc82d60aff290734201a5bedf))
|
|
16
|
+
- fix info confirm logic ([b3079a9](https://github.com/AuthMe01/web-client-sdk/commit/b3079a9c217f351d23b327573adff52de4eaa942))
|
|
17
|
+
- Fix Liveness Verify bugs ([2233d91](https://github.com/AuthMe01/web-client-sdk/commit/2233d913d8356ba55129ba442a7b36bc790cff0d))
|
|
18
|
+
- PR-81 fix canvas size calculation ([b6ae89a](https://github.com/AuthMe01/web-client-sdk/commit/b6ae89ab2f0a3163b996e6adc9331efa45716d63))
|
|
19
|
+
- PR-83 fix calculate canvas size ([aed08b8](https://github.com/AuthMe01/web-client-sdk/commit/aed08b8b194037c0378e6e54559b6e86625f83f1))
|
|
20
|
+
- PROD-1031 button radius ([4ab1806](https://github.com/AuthMe01/web-client-sdk/commit/4ab1806c931d20e27ffe5622e337d99ad36796e9))
|
|
21
|
+
- PROD-1069 fix incorrect card position setting ([a8a6359](https://github.com/AuthMe01/web-client-sdk/commit/a8a6359301a68262b145f0a8e5e2967e3392a70e))
|
|
22
|
+
- PROD-1078 add fraud failed status ([3902130](https://github.com/AuthMe01/web-client-sdk/commit/3902130ebe91ee4b0d6111ba74c44983de5b4dfe))
|
|
23
|
+
- PROD-1078 fraud error message ([cbd56c7](https://github.com/AuthMe01/web-client-sdk/commit/cbd56c73eb0bc6695e6aa0b74ff8159b97be40bc))
|
|
24
|
+
- PROD-1124 change pc ocr facing mode ([1432569](https://github.com/AuthMe01/web-client-sdk/commit/14325699bc85c43fa02e0497672849f5b4947bc1))
|
|
25
|
+
- PROD-114 fix engine lib mobile support ([1484b78](https://github.com/AuthMe01/web-client-sdk/commit/1484b78f59cdaa94d7020d60c5196ab7593f1535))
|
|
26
|
+
- PROD-1149 before confirm page need loading ([8fd63f8](https://github.com/AuthMe01/web-client-sdk/commit/8fd63f89e2f1d030bba449d5d60b94ec1fc55428))
|
|
27
|
+
- PROD-1149 fraud mismatch text ([9d171d5](https://github.com/AuthMe01/web-client-sdk/commit/9d171d524619d3b074ee7003089e7b33e27983a9))
|
|
28
|
+
- PROD-1149 header step text ([328bd8a](https://github.com/AuthMe01/web-client-sdk/commit/328bd8aaccf4781517dcf158bd302cb5344e18e2))
|
|
29
|
+
- PROD-1149 remove bs style error, add confirm page column ([2bbc3f4](https://github.com/AuthMe01/web-client-sdk/commit/2bbc3f46cd4380fd7b7d2eb81e2fb2bd4bfc5bb1))
|
|
30
|
+
- PROD-1156 add debug option ([00bb564](https://github.com/AuthMe01/web-client-sdk/commit/00bb56432ffbbd62e2f66563f0fe05d6a0d792bf))
|
|
31
|
+
- PROD-1156 fix aspect-ratio by card type ([042dd36](https://github.com/AuthMe01/web-client-sdk/commit/042dd362d67fcebd0f3ab5e102a581b7f11d1a07))
|
|
32
|
+
- PROD-1206 fix lottie cause memory leak ([1e71e40](https://github.com/AuthMe01/web-client-sdk/commit/1e71e40066fb9f160d8cb905f2d210e5735de335))
|
|
33
|
+
- PROD-1207 rotate warning popup event ([a4cd191](https://github.com/AuthMe01/web-client-sdk/commit/a4cd19121f4b7dbb861b326a278f1abacd5f0696))
|
|
34
|
+
- PROD-1223 adjust config interface ([bc1deae](https://github.com/AuthMe01/web-client-sdk/commit/bc1deae24b8b8f266ebd6068567861f1b18f5166))
|
|
35
|
+
- PROD-1279 fix style issue on ios webview ([4fc578a](https://github.com/AuthMe01/web-client-sdk/commit/4fc578afe1d882de67d384cb9e0499a00b0fc920))
|
|
36
|
+
- PROD-1309 adjust style ([c77c3fb](https://github.com/AuthMe01/web-client-sdk/commit/c77c3fbdaa13e806f15e06adc35153f4fc03e0ef))
|
|
37
|
+
- PROD-135 adjust fas config ([3d89ba7](https://github.com/AuthMe01/web-client-sdk/commit/3d89ba716d6b0bfd07ec2d5353213d8e8306c83d))
|
|
38
|
+
- PROD-1430 fix OCR camera usage ([0ad9d89](https://github.com/AuthMe01/web-client-sdk/commit/0ad9d89ab93d09e052d0d3679168fbfc1a129ad7))
|
|
39
|
+
- PROD-241 adjust instance create time ([9475b5f](https://github.com/AuthMe01/web-client-sdk/commit/9475b5f4d0f301f8b5d418dc855753b77fe7b08c))
|
|
40
|
+
- PROD-241 optimize camera setup time ([d0dbc19](https://github.com/AuthMe01/web-client-sdk/commit/d0dbc19412bff1d35705d0b4c15399ee8f693411))
|
|
41
|
+
- PROD-241 optimize ocr model loading time ([32890c4](https://github.com/AuthMe01/web-client-sdk/commit/32890c42a7df440e9bfaf521ba62b32994d14016))
|
|
42
|
+
- PROD-242 fix video mirrored and close video ([1bf75c9](https://github.com/AuthMe01/web-client-sdk/commit/1bf75c92600f50b5d9680922b0b125ce4fd89041))
|
|
43
|
+
- PROD-247 adjust anti-fraud blur threshold ([e65cd7c](https://github.com/AuthMe01/web-client-sdk/commit/e65cd7c649d762b3bd8c27d74b0c6c47a33f5e8e))
|
|
44
|
+
- PROD-255 change ocr and anti-fraud order ([8580b11](https://github.com/AuthMe01/web-client-sdk/commit/8580b112fbacce8a2a658bc208e59caec6a1de88))
|
|
45
|
+
- PROD-255 fix back image upload error ([2848f83](https://github.com/AuthMe01/web-client-sdk/commit/2848f836bc234f63316487afba17df84a24c988e))
|
|
46
|
+
- PROD-255 fix camera try catch ([c3686f1](https://github.com/AuthMe01/web-client-sdk/commit/c3686f1c1d7a044cf39f42502f05a4e23c520499))
|
|
47
|
+
- PROD-255 fix mask width ([339e071](https://github.com/AuthMe01/web-client-sdk/commit/339e071622881d89d6fb05abe2c65f3c48e790ef))
|
|
48
|
+
- PROD-255 fix memory leak issue ([7c35177](https://github.com/AuthMe01/web-client-sdk/commit/7c351779f89020694f41f38d7fd8320284c6e544))
|
|
49
|
+
- PROD-255 fix rotate and process ([62d6c13](https://github.com/AuthMe01/web-client-sdk/commit/62d6c13dacf93369701e229e5f4950addfc94c1a))
|
|
50
|
+
- PROD-255 idcard process and card size ([15a49f8](https://github.com/AuthMe01/web-client-sdk/commit/15a49f85389dd332ad1dee642658bd680b750deb))
|
|
51
|
+
- PROD-255 ocr fraud unsubscribe ([06fe213](https://github.com/AuthMe01/web-client-sdk/commit/06fe213626c4ac1823edaf0b8886343cc4f9f5af))
|
|
52
|
+
- PROD-255 ocr process ([e9ea4a9](https://github.com/AuthMe01/web-client-sdk/commit/e9ea4a9e4516b22a55111bf5146f3b12e9ecd16b))
|
|
53
|
+
- PROD-255 reduce frame size to 720p ([540e24d](https://github.com/AuthMe01/web-client-sdk/commit/540e24d9aa34e442ef6f23dc398ee7778de7fd60))
|
|
54
|
+
- PROD-255 refactor process ([3ddcc9a](https://github.com/AuthMe01/web-client-sdk/commit/3ddcc9a75af048692bbc62652643a83cb889a150))
|
|
55
|
+
- PROD-255 remove console & add fas fail handle ([c2faac9](https://github.com/AuthMe01/web-client-sdk/commit/c2faac958921590958cfc851b678945babeb8402))
|
|
56
|
+
- PROD-255 rotate direction ([85ea48f](https://github.com/AuthMe01/web-client-sdk/commit/85ea48fa2bc10d46e2815c126827616ca5ad71ab))
|
|
57
|
+
- PROD-255 tuning recognition frame performance ([7e8306f](https://github.com/AuthMe01/web-client-sdk/commit/7e8306f8e8567bc745e01b9836efc627601a5269))
|
|
58
|
+
- PROD-255 ui success animate ([25d9195](https://github.com/AuthMe01/web-client-sdk/commit/25d91952c4dc5e42639e69791002e327765b11f3))
|
|
59
|
+
- PROD-255 video position css ([ac0044a](https://github.com/AuthMe01/web-client-sdk/commit/ac0044aaf0b94124219c64b5a8ed2602300f7a53))
|
|
60
|
+
- PROD-298 fix memory leak & compress frame size ([03ddfd1](https://github.com/AuthMe01/web-client-sdk/commit/03ddfd122ba01e21bb3feef7c25efc3fa895d855))
|
|
61
|
+
- PROD-327 add cancel hanlder ([b49180f](https://github.com/AuthMe01/web-client-sdk/commit/b49180f75116458c81974cd4e6902253e0c1204e))
|
|
62
|
+
- PROD-327 cancel bug and retry title ([baefe53](https://github.com/AuthMe01/web-client-sdk/commit/baefe5380e916fc8e137b02e3351d8564bef6452))
|
|
63
|
+
- PROD-327 change ocr confirm image to cropped version ([b233dec](https://github.com/AuthMe01/web-client-sdk/commit/b233dec49ac5d8f4873924d58335073de338b55e))
|
|
64
|
+
- PROD-327 fix confirm page display issue ([85a53f3](https://github.com/AuthMe01/web-client-sdk/commit/85a53f3ee03b61141cadf79f85923f9297e16c2c))
|
|
65
|
+
- PROD-327 ios border css bug ([d6135fa](https://github.com/AuthMe01/web-client-sdk/commit/d6135fa6a6c7650ac2aec74b43bc4ab2c89044c7))
|
|
66
|
+
- PROD-327 liveness and fas width/height and fix text ([a85c98e](https://github.com/AuthMe01/web-client-sdk/commit/a85c98ee127558793abb763bb5fffef50e8bda9f))
|
|
67
|
+
- PROD-375 lottie init and css ([de643ff](https://github.com/AuthMe01/web-client-sdk/commit/de643ffeb6e349620fe488321b168223fa519cda))
|
|
68
|
+
- PROD-375 scan size and finial img size ([374debb](https://github.com/AuthMe01/web-client-sdk/commit/374debb803dd048346e6a5a0c0da754942965cd3))
|
|
69
|
+
- PROD-405 Handle ocr backend recognition error ([1084e8d](https://github.com/AuthMe01/web-client-sdk/commit/1084e8d70f00ab8200f00f334272e1d594585387))
|
|
70
|
+
- PROD-428 adjust ocr mask size ([852c6f0](https://github.com/AuthMe01/web-client-sdk/commit/852c6f0caab92871b2b5d057b3a7aea5f5f3a0cd))
|
|
71
|
+
- PROD-463 handle anti-fraud timeout error ([13d1533](https://github.com/AuthMe01/web-client-sdk/commit/13d1533a4baecefadd9a47e0f81ac5ed4dbba0fa))
|
|
72
|
+
- PROD-472 canvas size, lottie arrow, confirm page ([4bda3a6](https://github.com/AuthMe01/web-client-sdk/commit/4bda3a6737948564668c6770634b527cfd123718))
|
|
73
|
+
- PROD-511 iphone camera ([07c2c2d](https://github.com/AuthMe01/web-client-sdk/commit/07c2c2d7661127003d2f65e07920e1b2333fe0c5))
|
|
74
|
+
- PROD-511 mobile and web camera ([914425f](https://github.com/AuthMe01/web-client-sdk/commit/914425fe2dd91dc1f186c2341dc2dd5b7063c07d))
|
|
75
|
+
- PROD-511 safari web mirror bug ([450d824](https://github.com/AuthMe01/web-client-sdk/commit/450d824d9183e96119431620dfa75b05fc71924a))
|
|
76
|
+
- PROD-514 header, lottie, step content size ([12c4228](https://github.com/AuthMe01/web-client-sdk/commit/12c422844d533ed7d98f8c990b199194ce6beb04))
|
|
77
|
+
- PROD-514 ocr front mirror, liveness header rwd ([d8633c3](https://github.com/AuthMe01/web-client-sdk/commit/d8633c39c5a64a1a0fdecd73c2e6e29857486c70))
|
|
78
|
+
- PROD-560 optimize camera view show time ([5315783](https://github.com/AuthMe01/web-client-sdk/commit/53157830b47d94a1ac257e9b7d31868f9b0b80f0))
|
|
79
|
+
- PROD-560 optimize load time(for view) ([7a38e1b](https://github.com/AuthMe01/web-client-sdk/commit/7a38e1b5ec1588013935f8f69f19f67ae22dedaa))
|
|
80
|
+
- PROD-571 add removeListener ([85631db](https://github.com/AuthMe01/web-client-sdk/commit/85631db5925d8f9061a90600eea380c107b5b3b0))
|
|
81
|
+
- PROD-572 add verify api error msg & favicon ([e3c7936](https://github.com/AuthMe01/web-client-sdk/commit/e3c7936c02b17a5eb3cf73c7f24a580599638d00))
|
|
82
|
+
- PROD-583 fix anti-fraud process ([aee07de](https://github.com/AuthMe01/web-client-sdk/commit/aee07de111240304584a1b08dc9b9c6bc816f615))
|
|
83
|
+
- PROD-583 remove fraud rotate repeat ([32e35ec](https://github.com/AuthMe01/web-client-sdk/commit/32e35ecc58993e94c52b81ab5ccb7c381fb61d14))
|
|
84
|
+
- PROD-588 adjust anti-fraud timeout & fix ui resize issue ([43cfa2f](https://github.com/AuthMe01/web-client-sdk/commit/43cfa2facc3cf2b1816e0ddc805f84ce2ffdc5a8))
|
|
85
|
+
- PROD-588 rotate timer, text content ([2938a37](https://github.com/AuthMe01/web-client-sdk/commit/2938a376b7dd42fa4c2ac6a48ddfde28eb190bd2))
|
|
86
|
+
- PROD-595 fix canvas width/height get zero issue ([cbd74ab](https://github.com/AuthMe01/web-client-sdk/commit/cbd74ab775d964f3bfaa79f7bf711278dce67d73))
|
|
87
|
+
- PROD-650 add loading in liveness ([6df2366](https://github.com/AuthMe01/web-client-sdk/commit/6df2366dd914a0f0d75b72b0e7e8226fb31ed0fb))
|
|
88
|
+
- PROD-650 fix option order, add error&state hint ([2758980](https://github.com/AuthMe01/web-client-sdk/commit/275898079f173f77b8609cb02e84dca6c06daac4))
|
|
89
|
+
- PROD-653 ekyc detail css ([0ddce73](https://github.com/AuthMe01/web-client-sdk/commit/0ddce73f3d5fedea0f96d49aee155040878ec984))
|
|
90
|
+
- PROD-654 scan lottie, ekyc fail liveness style, liveness component ([3cdb08b](https://github.com/AuthMe01/web-client-sdk/commit/3cdb08ba5a3fdfda7ac33e563fc729507edf52cc))
|
|
91
|
+
- PROD-671 idCard lottie and button disabled time ([9cd5e16](https://github.com/AuthMe01/web-client-sdk/commit/9cd5e16c128b7da8f2fa2a988bb0ede69d40b3c5))
|
|
92
|
+
- PROD-679 liveness zIndex ([2bcbc07](https://github.com/AuthMe01/web-client-sdk/commit/2bcbc07cabe189ecbabd87f5d49a003f04256aa7))
|
|
93
|
+
- PROD-680 liveness fail with background upload ([269d17d](https://github.com/AuthMe01/web-client-sdk/commit/269d17d29ffd795270e44455215c0f1c292a137b))
|
|
94
|
+
- PROD-690 adjust liveness-verify error popup ([1a825a2](https://github.com/AuthMe01/web-client-sdk/commit/1a825a29e799a85cd64f003f70d90a23d6cdf871))
|
|
95
|
+
- PROD-714 ipad camera, input zoon in on mobile, ios15 rotate bug ([851baeb](https://github.com/AuthMe01/web-client-sdk/commit/851baeb94ce7563db62a452882cdc136a3505ecd))
|
|
96
|
+
- PROD-714 iPod issue ([06056d6](https://github.com/AuthMe01/web-client-sdk/commit/06056d615fd7f212138902e5fdcd4e9668b569e7))
|
|
97
|
+
- PROD-715 add max fps control ([377fcd3](https://github.com/AuthMe01/web-client-sdk/commit/377fcd34624b98feaf87ed8468dd6174dd8d3981))
|
|
98
|
+
- PROD-730 add lottie mask ([72fa4d6](https://github.com/AuthMe01/web-client-sdk/commit/72fa4d606b3dbe4d0fd86ddfa77a194f447546f4))
|
|
99
|
+
- PROD-730 lottieContainer bg opacity ([bfdc3af](https://github.com/AuthMe01/web-client-sdk/commit/bfdc3afc5bc4d51b88832b85b44b0e8ed03bda82))
|
|
100
|
+
- PROD-730 remove hint text when start rotate ([f237d05](https://github.com/AuthMe01/web-client-sdk/commit/f237d05e2e5478dad363b979f617d82b7201b49b))
|
|
101
|
+
- PROD-730 sdk text ([47d6845](https://github.com/AuthMe01/web-client-sdk/commit/47d684505b47c20b0a18696c669d3bb251645415))
|
|
102
|
+
- PROD-756 rotate to default bug ([e17f6c2](https://github.com/AuthMe01/web-client-sdk/commit/e17f6c2d653848327a0c989da78717fca4a2038d))
|
|
103
|
+
- PROD-756 sync ocr rotate action ([57bc8ea](https://github.com/AuthMe01/web-client-sdk/commit/57bc8ea9f6dd3e36a2281de48a047b4691799998))
|
|
104
|
+
- PROD-760 disable frame resize ([8210508](https://github.com/AuthMe01/web-client-sdk/commit/8210508bfac11a3b94deb233891d9ef576ef1fb3))
|
|
105
|
+
- PROD-780 fix webcam not found ([da26bab](https://github.com/AuthMe01/web-client-sdk/commit/da26babd3e45fa4fd90329aaee8b7d43f520c6fb))
|
|
106
|
+
- PROD-792 fix camera blur & limit frame size ([92c39f8](https://github.com/AuthMe01/web-client-sdk/commit/92c39f818b3cc328f057ec0e22e1c1f551ffd1d4))
|
|
107
|
+
- PROD-792 fix camera blur & limit frame size ([ea56557](https://github.com/AuthMe01/web-client-sdk/commit/ea56557797ce050bce4b478237e1853f030fc9ac))
|
|
108
|
+
- PROD-892 rename function name ([ef47ca8](https://github.com/AuthMe01/web-client-sdk/commit/ef47ca817b30a14bbcdba8ba2d9a4a10fc7bc9bb))
|
|
109
|
+
- PROD-892 rename isMobile function name ([9233f1d](https://github.com/AuthMe01/web-client-sdk/commit/9233f1d3a1f55ce5bc77ae6f4b874fd3533252fe))
|
|
110
|
+
- PROD-941 adjust debug frame height ([5e39a74](https://github.com/AuthMe01/web-client-sdk/commit/5e39a744568a8f6153181fd141a73184e9fb431b))
|
|
111
|
+
- PROD-941 fix mobile ocr board point ([c02e4b5](https://github.com/AuthMe01/web-client-sdk/commit/c02e4b5eb1a78b60d24f93080e41190b8faeab9d))
|
|
112
|
+
- remove waittime ([a32d1e0](https://github.com/AuthMe01/web-client-sdk/commit/a32d1e0ae91aebf0a682e2f2e25be6482fd1fccb))
|
|
113
|
+
|
|
114
|
+
### Features
|
|
115
|
+
|
|
116
|
+
- PR-46 passive fas impl ([307aa7d](https://github.com/AuthMe01/web-client-sdk/commit/307aa7dd85e43ebe41ee9074d2bea6981517de2d))
|
|
117
|
+
- PR-51 Integrate fas UI and logic ([e939088](https://github.com/AuthMe01/web-client-sdk/commit/e939088caffe678ef0e768d7281edd0e6eb09d82))
|
|
118
|
+
- PR-51 Integrate passive fas UI & logic ([f76fb5b](https://github.com/AuthMe01/web-client-sdk/commit/f76fb5b3a1f1cfbc9015524ce9a863c80eec5211))
|
|
119
|
+
- PR-52 Add FAS porting ([d43ec7e](https://github.com/AuthMe01/web-client-sdk/commit/d43ec7e92c215b108157aa3931625865c0603540))
|
|
120
|
+
- PR-81 passive enum ui and process ([e6258e0](https://github.com/AuthMe01/web-client-sdk/commit/e6258e0cd3dc99884c72f526076947e118c3ddf6))
|
|
121
|
+
- PR-81 passive-fas header ([6086cc8](https://github.com/AuthMe01/web-client-sdk/commit/6086cc89a00786bdbfc36353744655e86fd35ecb))
|
|
122
|
+
- PR-81 passive-fas sdk ui ([8ab2938](https://github.com/AuthMe01/web-client-sdk/commit/8ab29386dade1ceef64f136b33782edd5200899b))
|
|
123
|
+
- PR-83 ocr sdk ui ([a414e99](https://github.com/AuthMe01/web-client-sdk/commit/a414e993406071b58bbad5b3db17c0e1c2a86d43))
|
|
124
|
+
- PROD-114 fix liveness issue ([96edf70](https://github.com/AuthMe01/web-client-sdk/commit/96edf70125a2385b1ada8e63a0eb411bf341dc62))
|
|
125
|
+
- PROD-115 custom ui color ([cb9033a](https://github.com/AuthMe01/web-client-sdk/commit/cb9033a89ae5948f3789432981e477d882d02e37))
|
|
126
|
+
- PROD-1170 MRZ function ([f58a3d1](https://github.com/AuthMe01/web-client-sdk/commit/f58a3d1ab7e57e199fc11a4216d698668cf0c7e1))
|
|
127
|
+
- PROD-1186 update engineLib to 2.0.1 ([86eb3be](https://github.com/AuthMe01/web-client-sdk/commit/86eb3be98c547374173e37d47686738bc901d1e1))
|
|
128
|
+
- PROD-1186 update enginelib to 2.0.2 ([142a56f](https://github.com/AuthMe01/web-client-sdk/commit/142a56fd360c1d7c6925855188f7e73148959f31))
|
|
129
|
+
- PROD-1223 add mock auth method ([472aff8](https://github.com/AuthMe01/web-client-sdk/commit/472aff8423bcef67aa2c08ae64d6ca8ddcaf2be9))
|
|
130
|
+
- PROD-1223 remove logger ([aac81cb](https://github.com/AuthMe01/web-client-sdk/commit/aac81cb9500ede6281b2204ce6d01f0de4205b09))
|
|
131
|
+
- PROD-127 sdk ocr rotate ([8ea76c8](https://github.com/AuthMe01/web-client-sdk/commit/8ea76c84a4ed2cd13bd139b9e31b89f6daa2e64d))
|
|
132
|
+
- PROD-127 sdk orc rotate ([e33ae65](https://github.com/AuthMe01/web-client-sdk/commit/e33ae657908e2e751efcf1fb52b57b406277f233))
|
|
133
|
+
- PROD-135 add fetch model from backend ([a701d6f](https://github.com/AuthMe01/web-client-sdk/commit/a701d6fadc1ed2b57bebb00360e818d34d561191))
|
|
134
|
+
- PROD-135 onSuccess add spinner ([4c7a806](https://github.com/AuthMe01/web-client-sdk/commit/4c7a8064db64eda34f748b2138aacadb29fdd8c1))
|
|
135
|
+
- PROD-135 v3 fas api ([8e1e9cc](https://github.com/AuthMe01/web-client-sdk/commit/8e1e9cc9b8e5acbdbc4d49564bad8d42146a3c61))
|
|
136
|
+
- PROD-1354 update EngineLib to 2.1.0 ([7cb6d0b](https://github.com/AuthMe01/web-client-sdk/commit/7cb6d0b8c7c5f3f2fd398dfc56b797667ea69075))
|
|
137
|
+
- PROD-1357 customized statement and headermode ([654b183](https://github.com/AuthMe01/web-client-sdk/commit/654b1834bb263961f9b7af6eda7c77ef215b8c11))
|
|
138
|
+
- PROD-1357 set css variables ([5bfd95b](https://github.com/AuthMe01/web-client-sdk/commit/5bfd95b3b23c460ccbde72305550a5f274c87c6d))
|
|
139
|
+
- PROD-189 ocr lottie ([a315924](https://github.com/AuthMe01/web-client-sdk/commit/a3159247393a816420eb83b7579aa20782bc130e))
|
|
140
|
+
- PROD-195 modify config and add reset function ([bb00ab9](https://github.com/AuthMe01/web-client-sdk/commit/bb00ab914b446e21cc459bffbd5392b594fd35e1))
|
|
141
|
+
- PROD-195 sdk ocr add config ([5eccd4c](https://github.com/AuthMe01/web-client-sdk/commit/5eccd4c1ecdc393e8bb617a980a7345e405ebf0c))
|
|
142
|
+
- PROD-242 Adjust fps ([883c9ed](https://github.com/AuthMe01/web-client-sdk/commit/883c9ed917f6536114f5d12cdadffd705b834951))
|
|
143
|
+
- PROD-255 add idcard front hint text ([d8d2f24](https://github.com/AuthMe01/web-client-sdk/commit/d8d2f24a4e90ce459701836911661cd969cde0eb))
|
|
144
|
+
- PROD-255 add OCR api impl ([40098a8](https://github.com/AuthMe01/web-client-sdk/commit/40098a8e76b02d3a3e7f4ef642da8d1806818496))
|
|
145
|
+
- PROD-255 add spinner when ocrstart and fraudstart ([342777a](https://github.com/AuthMe01/web-client-sdk/commit/342777a250b46271e0d675fb920f7ecb1721d072))
|
|
146
|
+
- PROD-255 change video text and add not camera warning ([6b387cd](https://github.com/AuthMe01/web-client-sdk/commit/6b387cdc9be756e7f8a27f285cca7f1cc2e5f35a))
|
|
147
|
+
- PROD-255 get card type ([fcd5be9](https://github.com/AuthMe01/web-client-sdk/commit/fcd5be9810d51775ccd4a8d01385e7eb121b71fe))
|
|
148
|
+
- PROD-255 success lottie and ui, clear timeout ([91c97d2](https://github.com/AuthMe01/web-client-sdk/commit/91c97d29e43631800b5dabc1163baf34a7d9eea8))
|
|
149
|
+
- PROD-279 Add version info in view & docker build ([fbdca75](https://github.com/AuthMe01/web-client-sdk/commit/fbdca757f15dff38fdfff46980bd66a989fe4b9b))
|
|
150
|
+
- PROD-327 add border radius ([42b4c23](https://github.com/AuthMe01/web-client-sdk/commit/42b4c23c4b56e3c168fd93627cb482028953dd54))
|
|
151
|
+
- PROD-327 add error message ([6ef47d9](https://github.com/AuthMe01/web-client-sdk/commit/6ef47d9daa633fb8c42e2c01369c032ac7af3147))
|
|
152
|
+
- PROD-327 add ocr confirm image flow ([21e2ef1](https://github.com/AuthMe01/web-client-sdk/commit/21e2ef167452df46c8f85c426fe09c5e3899d50d))
|
|
153
|
+
- PROD-327 add retry ocr panel ([1cccd1d](https://github.com/AuthMe01/web-client-sdk/commit/1cccd1d69aadf897da88e088e4af4f427210d235))
|
|
154
|
+
- PROD-327 change lottie second ([5eff08e](https://github.com/AuthMe01/web-client-sdk/commit/5eff08edcda22a0bd8dd71b73370c8f08009a250))
|
|
155
|
+
- PROD-327 change process and add config cancel ([f8077d1](https://github.com/AuthMe01/web-client-sdk/commit/f8077d1760657c54c5c99e051b9541303e6e88dd))
|
|
156
|
+
- PROD-327 change spinner position ([11d06c3](https://github.com/AuthMe01/web-client-sdk/commit/11d06c3538e7e9cf3d1179859fdbf6fcb39bb638))
|
|
157
|
+
- PROD-327 remove alert(animationFrameId); ([47f8580](https://github.com/AuthMe01/web-client-sdk/commit/47f8580ae47e490075ec94eb235dfe8383df8394))
|
|
158
|
+
- PROD-327 replace liveness ui ([9c5934a](https://github.com/AuthMe01/web-client-sdk/commit/9c5934ad743a0ce5f8fccdabec323c1b3e93f79c))
|
|
159
|
+
- PROD-327 replace ocr ui ([73d4759](https://github.com/AuthMe01/web-client-sdk/commit/73d4759012bdfd0cb0bed9bc338f36af8ec27536))
|
|
160
|
+
- PROD-327 replace top title panel ([ecad5f0](https://github.com/AuthMe01/web-client-sdk/commit/ecad5f029266040639b14e2efa9797a8373a3170))
|
|
161
|
+
- PROD-334 Add Network Error Retry ([1dafbfd](https://github.com/AuthMe01/web-client-sdk/commit/1dafbfd2d51024abed9611cda4b7bd04401ed7f1))
|
|
162
|
+
- PROD-375 add illustrate ([fd617d0](https://github.com/AuthMe01/web-client-sdk/commit/fd617d056ed52dfb05b5d464f7df8098fb7a0094))
|
|
163
|
+
- PROD-375 add popup panel ([77f4672](https://github.com/AuthMe01/web-client-sdk/commit/77f467240474190a276961a86fe48fb66d520b54))
|
|
164
|
+
- PROD-375 card confirm style, remove bootstrap ([645bfd7](https://github.com/AuthMe01/web-client-sdk/commit/645bfd7a828c7a9be9bc3b7dd77eff6208b7a49a))
|
|
165
|
+
- PROD-375 optimization ui ([dd31fb9](https://github.com/AuthMe01/web-client-sdk/commit/dd31fb97b352b9b328db5f80bcffb24db6bf03cf))
|
|
166
|
+
- PROD-375 replace lottie animate and refactor mask border ([39ce902](https://github.com/AuthMe01/web-client-sdk/commit/39ce90241c60bda0e65f648b8ed61b4c577ffae2))
|
|
167
|
+
- PROD-410 change default logo ([7626856](https://github.com/AuthMe01/web-client-sdk/commit/7626856664de79288bdbd2e32604f1aeb28acf6c))
|
|
168
|
+
- PROD-472 web sdk and header redesine ([e561c9f](https://github.com/AuthMe01/web-client-sdk/commit/e561c9fff1b6901277e67e1b40f27855931b9064))
|
|
169
|
+
- PROD-571 add network listener ([39e2db3](https://github.com/AuthMe01/web-client-sdk/commit/39e2db352859070704122bd6672bcdcea5f3fd53))
|
|
170
|
+
- PROD-588 show SDK version ([cce6d67](https://github.com/AuthMe01/web-client-sdk/commit/cce6d6703cda5b86946e7ddb507320d6a820183b))
|
|
171
|
+
- PROD-595 Add eKYC impl ([6b5cf51](https://github.com/AuthMe01/web-client-sdk/commit/6b5cf5198a8f3039a52a1f114ff2089cb45b17b2))
|
|
172
|
+
- PROD-772 Add fps limit for anti-fraud ([6afca8e](https://github.com/AuthMe01/web-client-sdk/commit/6afca8e8b71c357050ab9564ff32621f9f0dbecd))
|
|
173
|
+
- PROD-892 update confirm image page and add MRZ ocr ([90916f7](https://github.com/AuthMe01/web-client-sdk/commit/90916f7a1323103a3dc3a8f2ea825b6a4098dd54))
|
|
174
|
+
- PROD-941 add debug image for OCR ([95fae31](https://github.com/AuthMe01/web-client-sdk/commit/95fae316cb3b4729eeb1c0d138e676fd59953eef))
|
|
175
|
+
- PROD-957 update engineLib v1.0.2 ([f5383e5](https://github.com/AuthMe01/web-client-sdk/commit/f5383e5210c798bf2663ad8f094a16b937ffa5b6))
|
|
176
|
+
|
|
177
|
+
## 1.2.1 (2022-07-28)
|
|
178
|
+
|
|
179
|
+
### Bug Fixes
|
|
180
|
+
|
|
181
|
+
- add upload ocr img from engine-lib ([15e3e9b](https://github.com/AuthMe01/web-client-sdk/commit/15e3e9b98945a53037addb692ea000cb5f745e10))
|
|
182
|
+
- adjust ocr size for pc ([53201c5](https://github.com/AuthMe01/web-client-sdk/commit/53201c5e86386f54bc9e9ece775ec5447c60efe8))
|
|
183
|
+
- adjust top text position ([2b81f08](https://github.com/AuthMe01/web-client-sdk/commit/2b81f08decac3721da577bfe55e9612a7804f086))
|
|
184
|
+
- fix anti-fraud rotate condition ([65dba57](https://github.com/AuthMe01/web-client-sdk/commit/65dba570a2de5e9fa805027ed855fef585fecb4b))
|
|
185
|
+
- fix debug control flag ([b13a86d](https://github.com/AuthMe01/web-client-sdk/commit/b13a86d9dc3a5a2dc82d60aff290734201a5bedf))
|
|
186
|
+
- fix info confirm logic ([b3079a9](https://github.com/AuthMe01/web-client-sdk/commit/b3079a9c217f351d23b327573adff52de4eaa942))
|
|
187
|
+
- PR-81 fix canvas size calculation ([b6ae89a](https://github.com/AuthMe01/web-client-sdk/commit/b6ae89ab2f0a3163b996e6adc9331efa45716d63))
|
|
188
|
+
- PR-83 fix calculate canvas size ([aed08b8](https://github.com/AuthMe01/web-client-sdk/commit/aed08b8b194037c0378e6e54559b6e86625f83f1))
|
|
189
|
+
- PROD-1031 button radius ([4ab1806](https://github.com/AuthMe01/web-client-sdk/commit/4ab1806c931d20e27ffe5622e337d99ad36796e9))
|
|
190
|
+
- PROD-1069 fix incorrect card position setting ([a8a6359](https://github.com/AuthMe01/web-client-sdk/commit/a8a6359301a68262b145f0a8e5e2967e3392a70e))
|
|
191
|
+
- PROD-1078 add fraud failed status ([3902130](https://github.com/AuthMe01/web-client-sdk/commit/3902130ebe91ee4b0d6111ba74c44983de5b4dfe))
|
|
192
|
+
- PROD-1078 fraud error message ([cbd56c7](https://github.com/AuthMe01/web-client-sdk/commit/cbd56c73eb0bc6695e6aa0b74ff8159b97be40bc))
|
|
193
|
+
- PROD-1124 change pc ocr facing mode ([1432569](https://github.com/AuthMe01/web-client-sdk/commit/14325699bc85c43fa02e0497672849f5b4947bc1))
|
|
194
|
+
- PROD-114 fix engine lib mobile support ([1484b78](https://github.com/AuthMe01/web-client-sdk/commit/1484b78f59cdaa94d7020d60c5196ab7593f1535))
|
|
195
|
+
- PROD-1149 before confirm page need loading ([8fd63f8](https://github.com/AuthMe01/web-client-sdk/commit/8fd63f89e2f1d030bba449d5d60b94ec1fc55428))
|
|
196
|
+
- PROD-1149 fraud mismatch text ([9d171d5](https://github.com/AuthMe01/web-client-sdk/commit/9d171d524619d3b074ee7003089e7b33e27983a9))
|
|
197
|
+
- PROD-1149 header step text ([328bd8a](https://github.com/AuthMe01/web-client-sdk/commit/328bd8aaccf4781517dcf158bd302cb5344e18e2))
|
|
198
|
+
- PROD-1149 remove bs style error, add confirm page column ([2bbc3f4](https://github.com/AuthMe01/web-client-sdk/commit/2bbc3f46cd4380fd7b7d2eb81e2fb2bd4bfc5bb1))
|
|
199
|
+
- PROD-1156 add debug option ([00bb564](https://github.com/AuthMe01/web-client-sdk/commit/00bb56432ffbbd62e2f66563f0fe05d6a0d792bf))
|
|
200
|
+
- PROD-1156 fix aspect-ratio by card type ([042dd36](https://github.com/AuthMe01/web-client-sdk/commit/042dd362d67fcebd0f3ab5e102a581b7f11d1a07))
|
|
201
|
+
- PROD-1206 fix lottie cause memory leak ([1e71e40](https://github.com/AuthMe01/web-client-sdk/commit/1e71e40066fb9f160d8cb905f2d210e5735de335))
|
|
202
|
+
- PROD-1207 rotate warning popup event ([a4cd191](https://github.com/AuthMe01/web-client-sdk/commit/a4cd19121f4b7dbb861b326a278f1abacd5f0696))
|
|
203
|
+
- PROD-1223 adjust config interface ([bc1deae](https://github.com/AuthMe01/web-client-sdk/commit/bc1deae24b8b8f266ebd6068567861f1b18f5166))
|
|
204
|
+
- PROD-1279 fix style issue on ios webview ([4fc578a](https://github.com/AuthMe01/web-client-sdk/commit/4fc578afe1d882de67d384cb9e0499a00b0fc920))
|
|
205
|
+
- PROD-1309 adjust style ([c77c3fb](https://github.com/AuthMe01/web-client-sdk/commit/c77c3fbdaa13e806f15e06adc35153f4fc03e0ef))
|
|
206
|
+
- PROD-135 adjust fas config ([3d89ba7](https://github.com/AuthMe01/web-client-sdk/commit/3d89ba716d6b0bfd07ec2d5353213d8e8306c83d))
|
|
207
|
+
- PROD-1430 fix OCR camera usage ([0ad9d89](https://github.com/AuthMe01/web-client-sdk/commit/0ad9d89ab93d09e052d0d3679168fbfc1a129ad7))
|
|
208
|
+
- PROD-241 adjust instance create time ([9475b5f](https://github.com/AuthMe01/web-client-sdk/commit/9475b5f4d0f301f8b5d418dc855753b77fe7b08c))
|
|
209
|
+
- PROD-241 optimize camera setup time ([d0dbc19](https://github.com/AuthMe01/web-client-sdk/commit/d0dbc19412bff1d35705d0b4c15399ee8f693411))
|
|
210
|
+
- PROD-241 optimize ocr model loading time ([32890c4](https://github.com/AuthMe01/web-client-sdk/commit/32890c42a7df440e9bfaf521ba62b32994d14016))
|
|
211
|
+
- PROD-242 fix video mirrored and close video ([1bf75c9](https://github.com/AuthMe01/web-client-sdk/commit/1bf75c92600f50b5d9680922b0b125ce4fd89041))
|
|
212
|
+
- PROD-247 adjust anti-fraud blur threshold ([e65cd7c](https://github.com/AuthMe01/web-client-sdk/commit/e65cd7c649d762b3bd8c27d74b0c6c47a33f5e8e))
|
|
213
|
+
- PROD-255 change ocr and anti-fraud order ([8580b11](https://github.com/AuthMe01/web-client-sdk/commit/8580b112fbacce8a2a658bc208e59caec6a1de88))
|
|
214
|
+
- PROD-255 fix back image upload error ([2848f83](https://github.com/AuthMe01/web-client-sdk/commit/2848f836bc234f63316487afba17df84a24c988e))
|
|
215
|
+
- PROD-255 fix camera try catch ([c3686f1](https://github.com/AuthMe01/web-client-sdk/commit/c3686f1c1d7a044cf39f42502f05a4e23c520499))
|
|
216
|
+
- PROD-255 fix mask width ([339e071](https://github.com/AuthMe01/web-client-sdk/commit/339e071622881d89d6fb05abe2c65f3c48e790ef))
|
|
217
|
+
- PROD-255 fix memory leak issue ([7c35177](https://github.com/AuthMe01/web-client-sdk/commit/7c351779f89020694f41f38d7fd8320284c6e544))
|
|
218
|
+
- PROD-255 fix rotate and process ([62d6c13](https://github.com/AuthMe01/web-client-sdk/commit/62d6c13dacf93369701e229e5f4950addfc94c1a))
|
|
219
|
+
- PROD-255 idcard process and card size ([15a49f8](https://github.com/AuthMe01/web-client-sdk/commit/15a49f85389dd332ad1dee642658bd680b750deb))
|
|
220
|
+
- PROD-255 ocr fraud unsubscribe ([06fe213](https://github.com/AuthMe01/web-client-sdk/commit/06fe213626c4ac1823edaf0b8886343cc4f9f5af))
|
|
221
|
+
- PROD-255 ocr process ([e9ea4a9](https://github.com/AuthMe01/web-client-sdk/commit/e9ea4a9e4516b22a55111bf5146f3b12e9ecd16b))
|
|
222
|
+
- PROD-255 reduce frame size to 720p ([540e24d](https://github.com/AuthMe01/web-client-sdk/commit/540e24d9aa34e442ef6f23dc398ee7778de7fd60))
|
|
223
|
+
- PROD-255 refactor process ([3ddcc9a](https://github.com/AuthMe01/web-client-sdk/commit/3ddcc9a75af048692bbc62652643a83cb889a150))
|
|
224
|
+
- PROD-255 remove console & add fas fail handle ([c2faac9](https://github.com/AuthMe01/web-client-sdk/commit/c2faac958921590958cfc851b678945babeb8402))
|
|
225
|
+
- PROD-255 rotate direction ([85ea48f](https://github.com/AuthMe01/web-client-sdk/commit/85ea48fa2bc10d46e2815c126827616ca5ad71ab))
|
|
226
|
+
- PROD-255 tuning recognition frame performance ([7e8306f](https://github.com/AuthMe01/web-client-sdk/commit/7e8306f8e8567bc745e01b9836efc627601a5269))
|
|
227
|
+
- PROD-255 ui success animate ([25d9195](https://github.com/AuthMe01/web-client-sdk/commit/25d91952c4dc5e42639e69791002e327765b11f3))
|
|
228
|
+
- PROD-255 video position css ([ac0044a](https://github.com/AuthMe01/web-client-sdk/commit/ac0044aaf0b94124219c64b5a8ed2602300f7a53))
|
|
229
|
+
- PROD-298 fix memory leak & compress frame size ([03ddfd1](https://github.com/AuthMe01/web-client-sdk/commit/03ddfd122ba01e21bb3feef7c25efc3fa895d855))
|
|
230
|
+
- PROD-327 add cancel hanlder ([b49180f](https://github.com/AuthMe01/web-client-sdk/commit/b49180f75116458c81974cd4e6902253e0c1204e))
|
|
231
|
+
- PROD-327 cancel bug and retry title ([baefe53](https://github.com/AuthMe01/web-client-sdk/commit/baefe5380e916fc8e137b02e3351d8564bef6452))
|
|
232
|
+
- PROD-327 change ocr confirm image to cropped version ([b233dec](https://github.com/AuthMe01/web-client-sdk/commit/b233dec49ac5d8f4873924d58335073de338b55e))
|
|
233
|
+
- PROD-327 fix confirm page display issue ([85a53f3](https://github.com/AuthMe01/web-client-sdk/commit/85a53f3ee03b61141cadf79f85923f9297e16c2c))
|
|
234
|
+
- PROD-327 ios border css bug ([d6135fa](https://github.com/AuthMe01/web-client-sdk/commit/d6135fa6a6c7650ac2aec74b43bc4ab2c89044c7))
|
|
235
|
+
- PROD-327 liveness and fas width/height and fix text ([a85c98e](https://github.com/AuthMe01/web-client-sdk/commit/a85c98ee127558793abb763bb5fffef50e8bda9f))
|
|
236
|
+
- PROD-375 lottie init and css ([de643ff](https://github.com/AuthMe01/web-client-sdk/commit/de643ffeb6e349620fe488321b168223fa519cda))
|
|
237
|
+
- PROD-375 scan size and finial img size ([374debb](https://github.com/AuthMe01/web-client-sdk/commit/374debb803dd048346e6a5a0c0da754942965cd3))
|
|
238
|
+
- PROD-405 Handle ocr backend recognition error ([1084e8d](https://github.com/AuthMe01/web-client-sdk/commit/1084e8d70f00ab8200f00f334272e1d594585387))
|
|
239
|
+
- PROD-428 adjust ocr mask size ([852c6f0](https://github.com/AuthMe01/web-client-sdk/commit/852c6f0caab92871b2b5d057b3a7aea5f5f3a0cd))
|
|
240
|
+
- PROD-463 handle anti-fraud timeout error ([13d1533](https://github.com/AuthMe01/web-client-sdk/commit/13d1533a4baecefadd9a47e0f81ac5ed4dbba0fa))
|
|
241
|
+
- PROD-472 canvas size, lottie arrow, confirm page ([4bda3a6](https://github.com/AuthMe01/web-client-sdk/commit/4bda3a6737948564668c6770634b527cfd123718))
|
|
242
|
+
- PROD-511 iphone camera ([07c2c2d](https://github.com/AuthMe01/web-client-sdk/commit/07c2c2d7661127003d2f65e07920e1b2333fe0c5))
|
|
243
|
+
- PROD-511 mobile and web camera ([914425f](https://github.com/AuthMe01/web-client-sdk/commit/914425fe2dd91dc1f186c2341dc2dd5b7063c07d))
|
|
244
|
+
- PROD-511 safari web mirror bug ([450d824](https://github.com/AuthMe01/web-client-sdk/commit/450d824d9183e96119431620dfa75b05fc71924a))
|
|
245
|
+
- PROD-514 header, lottie, step content size ([12c4228](https://github.com/AuthMe01/web-client-sdk/commit/12c422844d533ed7d98f8c990b199194ce6beb04))
|
|
246
|
+
- PROD-514 ocr front mirror, liveness header rwd ([d8633c3](https://github.com/AuthMe01/web-client-sdk/commit/d8633c39c5a64a1a0fdecd73c2e6e29857486c70))
|
|
247
|
+
- PROD-560 optimize camera view show time ([5315783](https://github.com/AuthMe01/web-client-sdk/commit/53157830b47d94a1ac257e9b7d31868f9b0b80f0))
|
|
248
|
+
- PROD-560 optimize load time(for view) ([7a38e1b](https://github.com/AuthMe01/web-client-sdk/commit/7a38e1b5ec1588013935f8f69f19f67ae22dedaa))
|
|
249
|
+
- PROD-571 add removeListener ([85631db](https://github.com/AuthMe01/web-client-sdk/commit/85631db5925d8f9061a90600eea380c107b5b3b0))
|
|
250
|
+
- PROD-572 add verify api error msg & favicon ([e3c7936](https://github.com/AuthMe01/web-client-sdk/commit/e3c7936c02b17a5eb3cf73c7f24a580599638d00))
|
|
251
|
+
- PROD-583 fix anti-fraud process ([aee07de](https://github.com/AuthMe01/web-client-sdk/commit/aee07de111240304584a1b08dc9b9c6bc816f615))
|
|
252
|
+
- PROD-583 remove fraud rotate repeat ([32e35ec](https://github.com/AuthMe01/web-client-sdk/commit/32e35ecc58993e94c52b81ab5ccb7c381fb61d14))
|
|
253
|
+
- PROD-588 adjust anti-fraud timeout & fix ui resize issue ([43cfa2f](https://github.com/AuthMe01/web-client-sdk/commit/43cfa2facc3cf2b1816e0ddc805f84ce2ffdc5a8))
|
|
254
|
+
- PROD-588 rotate timer, text content ([2938a37](https://github.com/AuthMe01/web-client-sdk/commit/2938a376b7dd42fa4c2ac6a48ddfde28eb190bd2))
|
|
255
|
+
- PROD-595 fix canvas width/height get zero issue ([cbd74ab](https://github.com/AuthMe01/web-client-sdk/commit/cbd74ab775d964f3bfaa79f7bf711278dce67d73))
|
|
256
|
+
- PROD-650 add loading in liveness ([6df2366](https://github.com/AuthMe01/web-client-sdk/commit/6df2366dd914a0f0d75b72b0e7e8226fb31ed0fb))
|
|
257
|
+
- PROD-650 fix option order, add error&state hint ([2758980](https://github.com/AuthMe01/web-client-sdk/commit/275898079f173f77b8609cb02e84dca6c06daac4))
|
|
258
|
+
- PROD-653 ekyc detail css ([0ddce73](https://github.com/AuthMe01/web-client-sdk/commit/0ddce73f3d5fedea0f96d49aee155040878ec984))
|
|
259
|
+
- PROD-654 scan lottie, ekyc fail liveness style, liveness component ([3cdb08b](https://github.com/AuthMe01/web-client-sdk/commit/3cdb08ba5a3fdfda7ac33e563fc729507edf52cc))
|
|
260
|
+
- PROD-671 idCard lottie and button disabled time ([9cd5e16](https://github.com/AuthMe01/web-client-sdk/commit/9cd5e16c128b7da8f2fa2a988bb0ede69d40b3c5))
|
|
261
|
+
- PROD-679 liveness zIndex ([2bcbc07](https://github.com/AuthMe01/web-client-sdk/commit/2bcbc07cabe189ecbabd87f5d49a003f04256aa7))
|
|
262
|
+
- PROD-680 liveness fail with background upload ([269d17d](https://github.com/AuthMe01/web-client-sdk/commit/269d17d29ffd795270e44455215c0f1c292a137b))
|
|
263
|
+
- PROD-690 adjust liveness-verify error popup ([1a825a2](https://github.com/AuthMe01/web-client-sdk/commit/1a825a29e799a85cd64f003f70d90a23d6cdf871))
|
|
264
|
+
- PROD-714 ipad camera, input zoon in on mobile, ios15 rotate bug ([851baeb](https://github.com/AuthMe01/web-client-sdk/commit/851baeb94ce7563db62a452882cdc136a3505ecd))
|
|
265
|
+
- PROD-714 iPod issue ([06056d6](https://github.com/AuthMe01/web-client-sdk/commit/06056d615fd7f212138902e5fdcd4e9668b569e7))
|
|
266
|
+
- PROD-715 add max fps control ([377fcd3](https://github.com/AuthMe01/web-client-sdk/commit/377fcd34624b98feaf87ed8468dd6174dd8d3981))
|
|
267
|
+
- PROD-730 add lottie mask ([72fa4d6](https://github.com/AuthMe01/web-client-sdk/commit/72fa4d606b3dbe4d0fd86ddfa77a194f447546f4))
|
|
268
|
+
- PROD-730 lottieContainer bg opacity ([bfdc3af](https://github.com/AuthMe01/web-client-sdk/commit/bfdc3afc5bc4d51b88832b85b44b0e8ed03bda82))
|
|
269
|
+
- PROD-730 remove hint text when start rotate ([f237d05](https://github.com/AuthMe01/web-client-sdk/commit/f237d05e2e5478dad363b979f617d82b7201b49b))
|
|
270
|
+
- PROD-730 sdk text ([47d6845](https://github.com/AuthMe01/web-client-sdk/commit/47d684505b47c20b0a18696c669d3bb251645415))
|
|
271
|
+
- PROD-756 rotate to default bug ([e17f6c2](https://github.com/AuthMe01/web-client-sdk/commit/e17f6c2d653848327a0c989da78717fca4a2038d))
|
|
272
|
+
- PROD-756 sync ocr rotate action ([57bc8ea](https://github.com/AuthMe01/web-client-sdk/commit/57bc8ea9f6dd3e36a2281de48a047b4691799998))
|
|
273
|
+
- PROD-760 disable frame resize ([8210508](https://github.com/AuthMe01/web-client-sdk/commit/8210508bfac11a3b94deb233891d9ef576ef1fb3))
|
|
274
|
+
- PROD-780 fix webcam not found ([da26bab](https://github.com/AuthMe01/web-client-sdk/commit/da26babd3e45fa4fd90329aaee8b7d43f520c6fb))
|
|
275
|
+
- PROD-792 fix camera blur & limit frame size ([92c39f8](https://github.com/AuthMe01/web-client-sdk/commit/92c39f818b3cc328f057ec0e22e1c1f551ffd1d4))
|
|
276
|
+
- PROD-792 fix camera blur & limit frame size ([ea56557](https://github.com/AuthMe01/web-client-sdk/commit/ea56557797ce050bce4b478237e1853f030fc9ac))
|
|
277
|
+
- PROD-892 rename function name ([ef47ca8](https://github.com/AuthMe01/web-client-sdk/commit/ef47ca817b30a14bbcdba8ba2d9a4a10fc7bc9bb))
|
|
278
|
+
- PROD-892 rename isMobile function name ([9233f1d](https://github.com/AuthMe01/web-client-sdk/commit/9233f1d3a1f55ce5bc77ae6f4b874fd3533252fe))
|
|
279
|
+
- PROD-941 adjust debug frame height ([5e39a74](https://github.com/AuthMe01/web-client-sdk/commit/5e39a744568a8f6153181fd141a73184e9fb431b))
|
|
280
|
+
- PROD-941 fix mobile ocr board point ([c02e4b5](https://github.com/AuthMe01/web-client-sdk/commit/c02e4b5eb1a78b60d24f93080e41190b8faeab9d))
|
|
281
|
+
- remove waittime ([a32d1e0](https://github.com/AuthMe01/web-client-sdk/commit/a32d1e0ae91aebf0a682e2f2e25be6482fd1fccb))
|
|
282
|
+
|
|
283
|
+
### Features
|
|
284
|
+
|
|
285
|
+
- PR-46 passive fas impl ([307aa7d](https://github.com/AuthMe01/web-client-sdk/commit/307aa7dd85e43ebe41ee9074d2bea6981517de2d))
|
|
286
|
+
- PR-51 Integrate fas UI and logic ([e939088](https://github.com/AuthMe01/web-client-sdk/commit/e939088caffe678ef0e768d7281edd0e6eb09d82))
|
|
287
|
+
- PR-51 Integrate passive fas UI & logic ([f76fb5b](https://github.com/AuthMe01/web-client-sdk/commit/f76fb5b3a1f1cfbc9015524ce9a863c80eec5211))
|
|
288
|
+
- PR-52 Add FAS porting ([d43ec7e](https://github.com/AuthMe01/web-client-sdk/commit/d43ec7e92c215b108157aa3931625865c0603540))
|
|
289
|
+
- PR-81 passive enum ui and process ([e6258e0](https://github.com/AuthMe01/web-client-sdk/commit/e6258e0cd3dc99884c72f526076947e118c3ddf6))
|
|
290
|
+
- PR-81 passive-fas header ([6086cc8](https://github.com/AuthMe01/web-client-sdk/commit/6086cc89a00786bdbfc36353744655e86fd35ecb))
|
|
291
|
+
- PR-81 passive-fas sdk ui ([8ab2938](https://github.com/AuthMe01/web-client-sdk/commit/8ab29386dade1ceef64f136b33782edd5200899b))
|
|
292
|
+
- PR-83 ocr sdk ui ([a414e99](https://github.com/AuthMe01/web-client-sdk/commit/a414e993406071b58bbad5b3db17c0e1c2a86d43))
|
|
293
|
+
- PROD-114 fix liveness issue ([96edf70](https://github.com/AuthMe01/web-client-sdk/commit/96edf70125a2385b1ada8e63a0eb411bf341dc62))
|
|
294
|
+
- PROD-115 custom ui color ([cb9033a](https://github.com/AuthMe01/web-client-sdk/commit/cb9033a89ae5948f3789432981e477d882d02e37))
|
|
295
|
+
- PROD-1170 MRZ function ([f58a3d1](https://github.com/AuthMe01/web-client-sdk/commit/f58a3d1ab7e57e199fc11a4216d698668cf0c7e1))
|
|
296
|
+
- PROD-1186 update engineLib to 2.0.1 ([86eb3be](https://github.com/AuthMe01/web-client-sdk/commit/86eb3be98c547374173e37d47686738bc901d1e1))
|
|
297
|
+
- PROD-1186 update enginelib to 2.0.2 ([142a56f](https://github.com/AuthMe01/web-client-sdk/commit/142a56fd360c1d7c6925855188f7e73148959f31))
|
|
298
|
+
- PROD-1223 add mock auth method ([472aff8](https://github.com/AuthMe01/web-client-sdk/commit/472aff8423bcef67aa2c08ae64d6ca8ddcaf2be9))
|
|
299
|
+
- PROD-1223 remove logger ([aac81cb](https://github.com/AuthMe01/web-client-sdk/commit/aac81cb9500ede6281b2204ce6d01f0de4205b09))
|
|
300
|
+
- PROD-127 sdk ocr rotate ([8ea76c8](https://github.com/AuthMe01/web-client-sdk/commit/8ea76c84a4ed2cd13bd139b9e31b89f6daa2e64d))
|
|
301
|
+
- PROD-127 sdk orc rotate ([e33ae65](https://github.com/AuthMe01/web-client-sdk/commit/e33ae657908e2e751efcf1fb52b57b406277f233))
|
|
302
|
+
- PROD-135 add fetch model from backend ([a701d6f](https://github.com/AuthMe01/web-client-sdk/commit/a701d6fadc1ed2b57bebb00360e818d34d561191))
|
|
303
|
+
- PROD-135 onSuccess add spinner ([4c7a806](https://github.com/AuthMe01/web-client-sdk/commit/4c7a8064db64eda34f748b2138aacadb29fdd8c1))
|
|
304
|
+
- PROD-135 v3 fas api ([8e1e9cc](https://github.com/AuthMe01/web-client-sdk/commit/8e1e9cc9b8e5acbdbc4d49564bad8d42146a3c61))
|
|
305
|
+
- PROD-1354 update EngineLib to 2.1.0 ([7cb6d0b](https://github.com/AuthMe01/web-client-sdk/commit/7cb6d0b8c7c5f3f2fd398dfc56b797667ea69075))
|
|
306
|
+
- PROD-1357 customized statement and headermode ([654b183](https://github.com/AuthMe01/web-client-sdk/commit/654b1834bb263961f9b7af6eda7c77ef215b8c11))
|
|
307
|
+
- PROD-1357 set css variables ([5bfd95b](https://github.com/AuthMe01/web-client-sdk/commit/5bfd95b3b23c460ccbde72305550a5f274c87c6d))
|
|
308
|
+
- PROD-189 ocr lottie ([a315924](https://github.com/AuthMe01/web-client-sdk/commit/a3159247393a816420eb83b7579aa20782bc130e))
|
|
309
|
+
- PROD-195 modify config and add reset function ([bb00ab9](https://github.com/AuthMe01/web-client-sdk/commit/bb00ab914b446e21cc459bffbd5392b594fd35e1))
|
|
310
|
+
- PROD-195 sdk ocr add config ([5eccd4c](https://github.com/AuthMe01/web-client-sdk/commit/5eccd4c1ecdc393e8bb617a980a7345e405ebf0c))
|
|
311
|
+
- PROD-242 Adjust fps ([883c9ed](https://github.com/AuthMe01/web-client-sdk/commit/883c9ed917f6536114f5d12cdadffd705b834951))
|
|
312
|
+
- PROD-255 add idcard front hint text ([d8d2f24](https://github.com/AuthMe01/web-client-sdk/commit/d8d2f24a4e90ce459701836911661cd969cde0eb))
|
|
313
|
+
- PROD-255 add OCR api impl ([40098a8](https://github.com/AuthMe01/web-client-sdk/commit/40098a8e76b02d3a3e7f4ef642da8d1806818496))
|
|
314
|
+
- PROD-255 add spinner when ocrstart and fraudstart ([342777a](https://github.com/AuthMe01/web-client-sdk/commit/342777a250b46271e0d675fb920f7ecb1721d072))
|
|
315
|
+
- PROD-255 change video text and add not camera warning ([6b387cd](https://github.com/AuthMe01/web-client-sdk/commit/6b387cdc9be756e7f8a27f285cca7f1cc2e5f35a))
|
|
316
|
+
- PROD-255 get card type ([fcd5be9](https://github.com/AuthMe01/web-client-sdk/commit/fcd5be9810d51775ccd4a8d01385e7eb121b71fe))
|
|
317
|
+
- PROD-255 success lottie and ui, clear timeout ([91c97d2](https://github.com/AuthMe01/web-client-sdk/commit/91c97d29e43631800b5dabc1163baf34a7d9eea8))
|
|
318
|
+
- PROD-279 Add version info in view & docker build ([fbdca75](https://github.com/AuthMe01/web-client-sdk/commit/fbdca757f15dff38fdfff46980bd66a989fe4b9b))
|
|
319
|
+
- PROD-327 add border radius ([42b4c23](https://github.com/AuthMe01/web-client-sdk/commit/42b4c23c4b56e3c168fd93627cb482028953dd54))
|
|
320
|
+
- PROD-327 add error message ([6ef47d9](https://github.com/AuthMe01/web-client-sdk/commit/6ef47d9daa633fb8c42e2c01369c032ac7af3147))
|
|
321
|
+
- PROD-327 add ocr confirm image flow ([21e2ef1](https://github.com/AuthMe01/web-client-sdk/commit/21e2ef167452df46c8f85c426fe09c5e3899d50d))
|
|
322
|
+
- PROD-327 add retry ocr panel ([1cccd1d](https://github.com/AuthMe01/web-client-sdk/commit/1cccd1d69aadf897da88e088e4af4f427210d235))
|
|
323
|
+
- PROD-327 change lottie second ([5eff08e](https://github.com/AuthMe01/web-client-sdk/commit/5eff08edcda22a0bd8dd71b73370c8f08009a250))
|
|
324
|
+
- PROD-327 change process and add config cancel ([f8077d1](https://github.com/AuthMe01/web-client-sdk/commit/f8077d1760657c54c5c99e051b9541303e6e88dd))
|
|
325
|
+
- PROD-327 change spinner position ([11d06c3](https://github.com/AuthMe01/web-client-sdk/commit/11d06c3538e7e9cf3d1179859fdbf6fcb39bb638))
|
|
326
|
+
- PROD-327 remove alert(animationFrameId); ([47f8580](https://github.com/AuthMe01/web-client-sdk/commit/47f8580ae47e490075ec94eb235dfe8383df8394))
|
|
327
|
+
- PROD-327 replace liveness ui ([9c5934a](https://github.com/AuthMe01/web-client-sdk/commit/9c5934ad743a0ce5f8fccdabec323c1b3e93f79c))
|
|
328
|
+
- PROD-327 replace ocr ui ([73d4759](https://github.com/AuthMe01/web-client-sdk/commit/73d4759012bdfd0cb0bed9bc338f36af8ec27536))
|
|
329
|
+
- PROD-327 replace top title panel ([ecad5f0](https://github.com/AuthMe01/web-client-sdk/commit/ecad5f029266040639b14e2efa9797a8373a3170))
|
|
330
|
+
- PROD-334 Add Network Error Retry ([1dafbfd](https://github.com/AuthMe01/web-client-sdk/commit/1dafbfd2d51024abed9611cda4b7bd04401ed7f1))
|
|
331
|
+
- PROD-375 add illustrate ([fd617d0](https://github.com/AuthMe01/web-client-sdk/commit/fd617d056ed52dfb05b5d464f7df8098fb7a0094))
|
|
332
|
+
- PROD-375 add popup panel ([77f4672](https://github.com/AuthMe01/web-client-sdk/commit/77f467240474190a276961a86fe48fb66d520b54))
|
|
333
|
+
- PROD-375 card confirm style, remove bootstrap ([645bfd7](https://github.com/AuthMe01/web-client-sdk/commit/645bfd7a828c7a9be9bc3b7dd77eff6208b7a49a))
|
|
334
|
+
- PROD-375 optimization ui ([dd31fb9](https://github.com/AuthMe01/web-client-sdk/commit/dd31fb97b352b9b328db5f80bcffb24db6bf03cf))
|
|
335
|
+
- PROD-375 replace lottie animate and refactor mask border ([39ce902](https://github.com/AuthMe01/web-client-sdk/commit/39ce90241c60bda0e65f648b8ed61b4c577ffae2))
|
|
336
|
+
- PROD-410 change default logo ([7626856](https://github.com/AuthMe01/web-client-sdk/commit/7626856664de79288bdbd2e32604f1aeb28acf6c))
|
|
337
|
+
- PROD-472 web sdk and header redesine ([e561c9f](https://github.com/AuthMe01/web-client-sdk/commit/e561c9fff1b6901277e67e1b40f27855931b9064))
|
|
338
|
+
- PROD-571 add network listener ([39e2db3](https://github.com/AuthMe01/web-client-sdk/commit/39e2db352859070704122bd6672bcdcea5f3fd53))
|
|
339
|
+
- PROD-588 show SDK version ([cce6d67](https://github.com/AuthMe01/web-client-sdk/commit/cce6d6703cda5b86946e7ddb507320d6a820183b))
|
|
340
|
+
- PROD-595 Add eKYC impl ([6b5cf51](https://github.com/AuthMe01/web-client-sdk/commit/6b5cf5198a8f3039a52a1f114ff2089cb45b17b2))
|
|
341
|
+
- PROD-772 Add fps limit for anti-fraud ([6afca8e](https://github.com/AuthMe01/web-client-sdk/commit/6afca8e8b71c357050ab9564ff32621f9f0dbecd))
|
|
342
|
+
- PROD-892 update confirm image page and add MRZ ocr ([90916f7](https://github.com/AuthMe01/web-client-sdk/commit/90916f7a1323103a3dc3a8f2ea825b6a4098dd54))
|
|
343
|
+
- PROD-941 add debug image for OCR ([95fae31](https://github.com/AuthMe01/web-client-sdk/commit/95fae316cb3b4729eeb1c0d138e676fd59953eef))
|
|
344
|
+
- PROD-957 update engineLib v1.0.2 ([f5383e5](https://github.com/AuthMe01/web-client-sdk/commit/f5383e5210c798bf2663ad8f094a16b937ffa5b6))
|
|
345
|
+
|
|
346
|
+
# 1.2.0 (2022-07-25)
|
|
347
|
+
|
|
348
|
+
### Bug Fixes
|
|
349
|
+
|
|
350
|
+
- add upload ocr img from engine-lib ([15e3e9b](https://github.com/AuthMe01/web-client-sdk/commit/15e3e9b98945a53037addb692ea000cb5f745e10))
|
|
351
|
+
- adjust ocr size for pc ([53201c5](https://github.com/AuthMe01/web-client-sdk/commit/53201c5e86386f54bc9e9ece775ec5447c60efe8))
|
|
352
|
+
- adjust top text position ([2b81f08](https://github.com/AuthMe01/web-client-sdk/commit/2b81f08decac3721da577bfe55e9612a7804f086))
|
|
353
|
+
- fix anti-fraud rotate condition ([65dba57](https://github.com/AuthMe01/web-client-sdk/commit/65dba570a2de5e9fa805027ed855fef585fecb4b))
|
|
354
|
+
- fix debug control flag ([b13a86d](https://github.com/AuthMe01/web-client-sdk/commit/b13a86d9dc3a5a2dc82d60aff290734201a5bedf))
|
|
355
|
+
- fix info confirm logic ([b3079a9](https://github.com/AuthMe01/web-client-sdk/commit/b3079a9c217f351d23b327573adff52de4eaa942))
|
|
356
|
+
- PR-81 fix canvas size calculation ([b6ae89a](https://github.com/AuthMe01/web-client-sdk/commit/b6ae89ab2f0a3163b996e6adc9331efa45716d63))
|
|
357
|
+
- PR-83 fix calculate canvas size ([aed08b8](https://github.com/AuthMe01/web-client-sdk/commit/aed08b8b194037c0378e6e54559b6e86625f83f1))
|
|
358
|
+
- PROD-1031 button radius ([4ab1806](https://github.com/AuthMe01/web-client-sdk/commit/4ab1806c931d20e27ffe5622e337d99ad36796e9))
|
|
359
|
+
- PROD-1069 fix incorrect card position setting ([a8a6359](https://github.com/AuthMe01/web-client-sdk/commit/a8a6359301a68262b145f0a8e5e2967e3392a70e))
|
|
360
|
+
- PROD-1078 add fraud failed status ([3902130](https://github.com/AuthMe01/web-client-sdk/commit/3902130ebe91ee4b0d6111ba74c44983de5b4dfe))
|
|
361
|
+
- PROD-1078 fraud error message ([cbd56c7](https://github.com/AuthMe01/web-client-sdk/commit/cbd56c73eb0bc6695e6aa0b74ff8159b97be40bc))
|
|
362
|
+
- PROD-1124 change pc ocr facing mode ([1432569](https://github.com/AuthMe01/web-client-sdk/commit/14325699bc85c43fa02e0497672849f5b4947bc1))
|
|
363
|
+
- PROD-114 fix engine lib mobile support ([1484b78](https://github.com/AuthMe01/web-client-sdk/commit/1484b78f59cdaa94d7020d60c5196ab7593f1535))
|
|
364
|
+
- PROD-1149 before confirm page need loading ([8fd63f8](https://github.com/AuthMe01/web-client-sdk/commit/8fd63f89e2f1d030bba449d5d60b94ec1fc55428))
|
|
365
|
+
- PROD-1149 fraud mismatch text ([9d171d5](https://github.com/AuthMe01/web-client-sdk/commit/9d171d524619d3b074ee7003089e7b33e27983a9))
|
|
366
|
+
- PROD-1149 header step text ([328bd8a](https://github.com/AuthMe01/web-client-sdk/commit/328bd8aaccf4781517dcf158bd302cb5344e18e2))
|
|
367
|
+
- PROD-1149 remove bs style error, add confirm page column ([2bbc3f4](https://github.com/AuthMe01/web-client-sdk/commit/2bbc3f46cd4380fd7b7d2eb81e2fb2bd4bfc5bb1))
|
|
368
|
+
- PROD-1156 add debug option ([00bb564](https://github.com/AuthMe01/web-client-sdk/commit/00bb56432ffbbd62e2f66563f0fe05d6a0d792bf))
|
|
369
|
+
- PROD-1156 fix aspect-ratio by card type ([042dd36](https://github.com/AuthMe01/web-client-sdk/commit/042dd362d67fcebd0f3ab5e102a581b7f11d1a07))
|
|
370
|
+
- PROD-1206 fix lottie cause memory leak ([1e71e40](https://github.com/AuthMe01/web-client-sdk/commit/1e71e40066fb9f160d8cb905f2d210e5735de335))
|
|
371
|
+
- PROD-1207 rotate warning popup event ([a4cd191](https://github.com/AuthMe01/web-client-sdk/commit/a4cd19121f4b7dbb861b326a278f1abacd5f0696))
|
|
372
|
+
- PROD-1223 adjust config interface ([bc1deae](https://github.com/AuthMe01/web-client-sdk/commit/bc1deae24b8b8f266ebd6068567861f1b18f5166))
|
|
373
|
+
- PROD-1279 fix style issue on ios webview ([4fc578a](https://github.com/AuthMe01/web-client-sdk/commit/4fc578afe1d882de67d384cb9e0499a00b0fc920))
|
|
374
|
+
- PROD-1309 adjust style ([c77c3fb](https://github.com/AuthMe01/web-client-sdk/commit/c77c3fbdaa13e806f15e06adc35153f4fc03e0ef))
|
|
375
|
+
- PROD-135 adjust fas config ([3d89ba7](https://github.com/AuthMe01/web-client-sdk/commit/3d89ba716d6b0bfd07ec2d5353213d8e8306c83d))
|
|
376
|
+
- PROD-241 adjust instance create time ([9475b5f](https://github.com/AuthMe01/web-client-sdk/commit/9475b5f4d0f301f8b5d418dc855753b77fe7b08c))
|
|
377
|
+
- PROD-241 optimize camera setup time ([d0dbc19](https://github.com/AuthMe01/web-client-sdk/commit/d0dbc19412bff1d35705d0b4c15399ee8f693411))
|
|
378
|
+
- PROD-241 optimize ocr model loading time ([32890c4](https://github.com/AuthMe01/web-client-sdk/commit/32890c42a7df440e9bfaf521ba62b32994d14016))
|
|
379
|
+
- PROD-242 fix video mirrored and close video ([1bf75c9](https://github.com/AuthMe01/web-client-sdk/commit/1bf75c92600f50b5d9680922b0b125ce4fd89041))
|
|
380
|
+
- PROD-247 adjust anti-fraud blur threshold ([e65cd7c](https://github.com/AuthMe01/web-client-sdk/commit/e65cd7c649d762b3bd8c27d74b0c6c47a33f5e8e))
|
|
381
|
+
- PROD-255 change ocr and anti-fraud order ([8580b11](https://github.com/AuthMe01/web-client-sdk/commit/8580b112fbacce8a2a658bc208e59caec6a1de88))
|
|
382
|
+
- PROD-255 fix back image upload error ([2848f83](https://github.com/AuthMe01/web-client-sdk/commit/2848f836bc234f63316487afba17df84a24c988e))
|
|
383
|
+
- PROD-255 fix camera try catch ([c3686f1](https://github.com/AuthMe01/web-client-sdk/commit/c3686f1c1d7a044cf39f42502f05a4e23c520499))
|
|
384
|
+
- PROD-255 fix mask width ([339e071](https://github.com/AuthMe01/web-client-sdk/commit/339e071622881d89d6fb05abe2c65f3c48e790ef))
|
|
385
|
+
- PROD-255 fix memory leak issue ([7c35177](https://github.com/AuthMe01/web-client-sdk/commit/7c351779f89020694f41f38d7fd8320284c6e544))
|
|
386
|
+
- PROD-255 fix rotate and process ([62d6c13](https://github.com/AuthMe01/web-client-sdk/commit/62d6c13dacf93369701e229e5f4950addfc94c1a))
|
|
387
|
+
- PROD-255 idcard process and card size ([15a49f8](https://github.com/AuthMe01/web-client-sdk/commit/15a49f85389dd332ad1dee642658bd680b750deb))
|
|
388
|
+
- PROD-255 ocr fraud unsubscribe ([06fe213](https://github.com/AuthMe01/web-client-sdk/commit/06fe213626c4ac1823edaf0b8886343cc4f9f5af))
|
|
389
|
+
- PROD-255 ocr process ([e9ea4a9](https://github.com/AuthMe01/web-client-sdk/commit/e9ea4a9e4516b22a55111bf5146f3b12e9ecd16b))
|
|
390
|
+
- PROD-255 reduce frame size to 720p ([540e24d](https://github.com/AuthMe01/web-client-sdk/commit/540e24d9aa34e442ef6f23dc398ee7778de7fd60))
|
|
391
|
+
- PROD-255 refactor process ([3ddcc9a](https://github.com/AuthMe01/web-client-sdk/commit/3ddcc9a75af048692bbc62652643a83cb889a150))
|
|
392
|
+
- PROD-255 remove console & add fas fail handle ([c2faac9](https://github.com/AuthMe01/web-client-sdk/commit/c2faac958921590958cfc851b678945babeb8402))
|
|
393
|
+
- PROD-255 rotate direction ([85ea48f](https://github.com/AuthMe01/web-client-sdk/commit/85ea48fa2bc10d46e2815c126827616ca5ad71ab))
|
|
394
|
+
- PROD-255 tuning recognition frame performance ([7e8306f](https://github.com/AuthMe01/web-client-sdk/commit/7e8306f8e8567bc745e01b9836efc627601a5269))
|
|
395
|
+
- PROD-255 ui success animate ([25d9195](https://github.com/AuthMe01/web-client-sdk/commit/25d91952c4dc5e42639e69791002e327765b11f3))
|
|
396
|
+
- PROD-255 video position css ([ac0044a](https://github.com/AuthMe01/web-client-sdk/commit/ac0044aaf0b94124219c64b5a8ed2602300f7a53))
|
|
397
|
+
- PROD-298 fix memory leak & compress frame size ([03ddfd1](https://github.com/AuthMe01/web-client-sdk/commit/03ddfd122ba01e21bb3feef7c25efc3fa895d855))
|
|
398
|
+
- PROD-327 add cancel hanlder ([b49180f](https://github.com/AuthMe01/web-client-sdk/commit/b49180f75116458c81974cd4e6902253e0c1204e))
|
|
399
|
+
- PROD-327 cancel bug and retry title ([baefe53](https://github.com/AuthMe01/web-client-sdk/commit/baefe5380e916fc8e137b02e3351d8564bef6452))
|
|
400
|
+
- PROD-327 change ocr confirm image to cropped version ([b233dec](https://github.com/AuthMe01/web-client-sdk/commit/b233dec49ac5d8f4873924d58335073de338b55e))
|
|
401
|
+
- PROD-327 fix confirm page display issue ([85a53f3](https://github.com/AuthMe01/web-client-sdk/commit/85a53f3ee03b61141cadf79f85923f9297e16c2c))
|
|
402
|
+
- PROD-327 ios border css bug ([d6135fa](https://github.com/AuthMe01/web-client-sdk/commit/d6135fa6a6c7650ac2aec74b43bc4ab2c89044c7))
|
|
403
|
+
- PROD-327 liveness and fas width/height and fix text ([a85c98e](https://github.com/AuthMe01/web-client-sdk/commit/a85c98ee127558793abb763bb5fffef50e8bda9f))
|
|
404
|
+
- PROD-375 lottie init and css ([de643ff](https://github.com/AuthMe01/web-client-sdk/commit/de643ffeb6e349620fe488321b168223fa519cda))
|
|
405
|
+
- PROD-375 scan size and finial img size ([374debb](https://github.com/AuthMe01/web-client-sdk/commit/374debb803dd048346e6a5a0c0da754942965cd3))
|
|
406
|
+
- PROD-405 Handle ocr backend recognition error ([1084e8d](https://github.com/AuthMe01/web-client-sdk/commit/1084e8d70f00ab8200f00f334272e1d594585387))
|
|
407
|
+
- PROD-428 adjust ocr mask size ([852c6f0](https://github.com/AuthMe01/web-client-sdk/commit/852c6f0caab92871b2b5d057b3a7aea5f5f3a0cd))
|
|
408
|
+
- PROD-463 handle anti-fraud timeout error ([13d1533](https://github.com/AuthMe01/web-client-sdk/commit/13d1533a4baecefadd9a47e0f81ac5ed4dbba0fa))
|
|
409
|
+
- PROD-472 canvas size, lottie arrow, confirm page ([4bda3a6](https://github.com/AuthMe01/web-client-sdk/commit/4bda3a6737948564668c6770634b527cfd123718))
|
|
410
|
+
- PROD-511 iphone camera ([07c2c2d](https://github.com/AuthMe01/web-client-sdk/commit/07c2c2d7661127003d2f65e07920e1b2333fe0c5))
|
|
411
|
+
- PROD-511 mobile and web camera ([914425f](https://github.com/AuthMe01/web-client-sdk/commit/914425fe2dd91dc1f186c2341dc2dd5b7063c07d))
|
|
412
|
+
- PROD-511 safari web mirror bug ([450d824](https://github.com/AuthMe01/web-client-sdk/commit/450d824d9183e96119431620dfa75b05fc71924a))
|
|
413
|
+
- PROD-514 header, lottie, step content size ([12c4228](https://github.com/AuthMe01/web-client-sdk/commit/12c422844d533ed7d98f8c990b199194ce6beb04))
|
|
414
|
+
- PROD-514 ocr front mirror, liveness header rwd ([d8633c3](https://github.com/AuthMe01/web-client-sdk/commit/d8633c39c5a64a1a0fdecd73c2e6e29857486c70))
|
|
415
|
+
- PROD-560 optimize camera view show time ([5315783](https://github.com/AuthMe01/web-client-sdk/commit/53157830b47d94a1ac257e9b7d31868f9b0b80f0))
|
|
416
|
+
- PROD-560 optimize load time(for view) ([7a38e1b](https://github.com/AuthMe01/web-client-sdk/commit/7a38e1b5ec1588013935f8f69f19f67ae22dedaa))
|
|
417
|
+
- PROD-571 add removeListener ([85631db](https://github.com/AuthMe01/web-client-sdk/commit/85631db5925d8f9061a90600eea380c107b5b3b0))
|
|
418
|
+
- PROD-572 add verify api error msg & favicon ([e3c7936](https://github.com/AuthMe01/web-client-sdk/commit/e3c7936c02b17a5eb3cf73c7f24a580599638d00))
|
|
419
|
+
- PROD-583 fix anti-fraud process ([aee07de](https://github.com/AuthMe01/web-client-sdk/commit/aee07de111240304584a1b08dc9b9c6bc816f615))
|
|
420
|
+
- PROD-583 remove fraud rotate repeat ([32e35ec](https://github.com/AuthMe01/web-client-sdk/commit/32e35ecc58993e94c52b81ab5ccb7c381fb61d14))
|
|
421
|
+
- PROD-588 adjust anti-fraud timeout & fix ui resize issue ([43cfa2f](https://github.com/AuthMe01/web-client-sdk/commit/43cfa2facc3cf2b1816e0ddc805f84ce2ffdc5a8))
|
|
422
|
+
- PROD-588 rotate timer, text content ([2938a37](https://github.com/AuthMe01/web-client-sdk/commit/2938a376b7dd42fa4c2ac6a48ddfde28eb190bd2))
|
|
423
|
+
- PROD-595 fix canvas width/height get zero issue ([cbd74ab](https://github.com/AuthMe01/web-client-sdk/commit/cbd74ab775d964f3bfaa79f7bf711278dce67d73))
|
|
424
|
+
- PROD-650 add loading in liveness ([6df2366](https://github.com/AuthMe01/web-client-sdk/commit/6df2366dd914a0f0d75b72b0e7e8226fb31ed0fb))
|
|
425
|
+
- PROD-650 fix option order, add error&state hint ([2758980](https://github.com/AuthMe01/web-client-sdk/commit/275898079f173f77b8609cb02e84dca6c06daac4))
|
|
426
|
+
- PROD-653 ekyc detail css ([0ddce73](https://github.com/AuthMe01/web-client-sdk/commit/0ddce73f3d5fedea0f96d49aee155040878ec984))
|
|
427
|
+
- PROD-654 scan lottie, ekyc fail liveness style, liveness component ([3cdb08b](https://github.com/AuthMe01/web-client-sdk/commit/3cdb08ba5a3fdfda7ac33e563fc729507edf52cc))
|
|
428
|
+
- PROD-671 idCard lottie and button disabled time ([9cd5e16](https://github.com/AuthMe01/web-client-sdk/commit/9cd5e16c128b7da8f2fa2a988bb0ede69d40b3c5))
|
|
429
|
+
- PROD-679 liveness zIndex ([2bcbc07](https://github.com/AuthMe01/web-client-sdk/commit/2bcbc07cabe189ecbabd87f5d49a003f04256aa7))
|
|
430
|
+
- PROD-680 liveness fail with background upload ([269d17d](https://github.com/AuthMe01/web-client-sdk/commit/269d17d29ffd795270e44455215c0f1c292a137b))
|
|
431
|
+
- PROD-690 adjust liveness-verify error popup ([1a825a2](https://github.com/AuthMe01/web-client-sdk/commit/1a825a29e799a85cd64f003f70d90a23d6cdf871))
|
|
432
|
+
- PROD-714 ipad camera, input zoon in on mobile, ios15 rotate bug ([851baeb](https://github.com/AuthMe01/web-client-sdk/commit/851baeb94ce7563db62a452882cdc136a3505ecd))
|
|
433
|
+
- PROD-714 iPod issue ([06056d6](https://github.com/AuthMe01/web-client-sdk/commit/06056d615fd7f212138902e5fdcd4e9668b569e7))
|
|
434
|
+
- PROD-715 add max fps control ([377fcd3](https://github.com/AuthMe01/web-client-sdk/commit/377fcd34624b98feaf87ed8468dd6174dd8d3981))
|
|
435
|
+
- PROD-730 add lottie mask ([72fa4d6](https://github.com/AuthMe01/web-client-sdk/commit/72fa4d606b3dbe4d0fd86ddfa77a194f447546f4))
|
|
436
|
+
- PROD-730 lottieContainer bg opacity ([bfdc3af](https://github.com/AuthMe01/web-client-sdk/commit/bfdc3afc5bc4d51b88832b85b44b0e8ed03bda82))
|
|
437
|
+
- PROD-730 remove hint text when start rotate ([f237d05](https://github.com/AuthMe01/web-client-sdk/commit/f237d05e2e5478dad363b979f617d82b7201b49b))
|
|
438
|
+
- PROD-730 sdk text ([47d6845](https://github.com/AuthMe01/web-client-sdk/commit/47d684505b47c20b0a18696c669d3bb251645415))
|
|
439
|
+
- PROD-756 rotate to default bug ([e17f6c2](https://github.com/AuthMe01/web-client-sdk/commit/e17f6c2d653848327a0c989da78717fca4a2038d))
|
|
440
|
+
- PROD-756 sync ocr rotate action ([57bc8ea](https://github.com/AuthMe01/web-client-sdk/commit/57bc8ea9f6dd3e36a2281de48a047b4691799998))
|
|
441
|
+
- PROD-760 disable frame resize ([8210508](https://github.com/AuthMe01/web-client-sdk/commit/8210508bfac11a3b94deb233891d9ef576ef1fb3))
|
|
442
|
+
- PROD-780 fix webcam not found ([da26bab](https://github.com/AuthMe01/web-client-sdk/commit/da26babd3e45fa4fd90329aaee8b7d43f520c6fb))
|
|
443
|
+
- PROD-792 fix camera blur & limit frame size ([92c39f8](https://github.com/AuthMe01/web-client-sdk/commit/92c39f818b3cc328f057ec0e22e1c1f551ffd1d4))
|
|
444
|
+
- PROD-792 fix camera blur & limit frame size ([ea56557](https://github.com/AuthMe01/web-client-sdk/commit/ea56557797ce050bce4b478237e1853f030fc9ac))
|
|
445
|
+
- PROD-892 rename function name ([ef47ca8](https://github.com/AuthMe01/web-client-sdk/commit/ef47ca817b30a14bbcdba8ba2d9a4a10fc7bc9bb))
|
|
446
|
+
- PROD-892 rename isMobile function name ([9233f1d](https://github.com/AuthMe01/web-client-sdk/commit/9233f1d3a1f55ce5bc77ae6f4b874fd3533252fe))
|
|
447
|
+
- PROD-941 adjust debug frame height ([5e39a74](https://github.com/AuthMe01/web-client-sdk/commit/5e39a744568a8f6153181fd141a73184e9fb431b))
|
|
448
|
+
- PROD-941 fix mobile ocr board point ([c02e4b5](https://github.com/AuthMe01/web-client-sdk/commit/c02e4b5eb1a78b60d24f93080e41190b8faeab9d))
|
|
449
|
+
- remove waittime ([a32d1e0](https://github.com/AuthMe01/web-client-sdk/commit/a32d1e0ae91aebf0a682e2f2e25be6482fd1fccb))
|
|
450
|
+
|
|
451
|
+
### Features
|
|
452
|
+
|
|
453
|
+
- PR-46 passive fas impl ([307aa7d](https://github.com/AuthMe01/web-client-sdk/commit/307aa7dd85e43ebe41ee9074d2bea6981517de2d))
|
|
454
|
+
- PR-51 Integrate fas UI and logic ([e939088](https://github.com/AuthMe01/web-client-sdk/commit/e939088caffe678ef0e768d7281edd0e6eb09d82))
|
|
455
|
+
- PR-51 Integrate passive fas UI & logic ([f76fb5b](https://github.com/AuthMe01/web-client-sdk/commit/f76fb5b3a1f1cfbc9015524ce9a863c80eec5211))
|
|
456
|
+
- PR-52 Add FAS porting ([d43ec7e](https://github.com/AuthMe01/web-client-sdk/commit/d43ec7e92c215b108157aa3931625865c0603540))
|
|
457
|
+
- PR-81 passive enum ui and process ([e6258e0](https://github.com/AuthMe01/web-client-sdk/commit/e6258e0cd3dc99884c72f526076947e118c3ddf6))
|
|
458
|
+
- PR-81 passive-fas header ([6086cc8](https://github.com/AuthMe01/web-client-sdk/commit/6086cc89a00786bdbfc36353744655e86fd35ecb))
|
|
459
|
+
- PR-81 passive-fas sdk ui ([8ab2938](https://github.com/AuthMe01/web-client-sdk/commit/8ab29386dade1ceef64f136b33782edd5200899b))
|
|
460
|
+
- PR-83 ocr sdk ui ([a414e99](https://github.com/AuthMe01/web-client-sdk/commit/a414e993406071b58bbad5b3db17c0e1c2a86d43))
|
|
461
|
+
- PROD-114 fix liveness issue ([96edf70](https://github.com/AuthMe01/web-client-sdk/commit/96edf70125a2385b1ada8e63a0eb411bf341dc62))
|
|
462
|
+
- PROD-115 custom ui color ([cb9033a](https://github.com/AuthMe01/web-client-sdk/commit/cb9033a89ae5948f3789432981e477d882d02e37))
|
|
463
|
+
- PROD-1186 update engineLib to 2.0.1 ([86eb3be](https://github.com/AuthMe01/web-client-sdk/commit/86eb3be98c547374173e37d47686738bc901d1e1))
|
|
464
|
+
- PROD-1186 update enginelib to 2.0.2 ([142a56f](https://github.com/AuthMe01/web-client-sdk/commit/142a56fd360c1d7c6925855188f7e73148959f31))
|
|
465
|
+
- PROD-1223 add mock auth method ([472aff8](https://github.com/AuthMe01/web-client-sdk/commit/472aff8423bcef67aa2c08ae64d6ca8ddcaf2be9))
|
|
466
|
+
- PROD-1223 remove logger ([aac81cb](https://github.com/AuthMe01/web-client-sdk/commit/aac81cb9500ede6281b2204ce6d01f0de4205b09))
|
|
467
|
+
- PROD-127 sdk ocr rotate ([8ea76c8](https://github.com/AuthMe01/web-client-sdk/commit/8ea76c84a4ed2cd13bd139b9e31b89f6daa2e64d))
|
|
468
|
+
- PROD-127 sdk orc rotate ([e33ae65](https://github.com/AuthMe01/web-client-sdk/commit/e33ae657908e2e751efcf1fb52b57b406277f233))
|
|
469
|
+
- PROD-135 add fetch model from backend ([a701d6f](https://github.com/AuthMe01/web-client-sdk/commit/a701d6fadc1ed2b57bebb00360e818d34d561191))
|
|
470
|
+
- PROD-135 onSuccess add spinner ([4c7a806](https://github.com/AuthMe01/web-client-sdk/commit/4c7a8064db64eda34f748b2138aacadb29fdd8c1))
|
|
471
|
+
- PROD-135 v3 fas api ([8e1e9cc](https://github.com/AuthMe01/web-client-sdk/commit/8e1e9cc9b8e5acbdbc4d49564bad8d42146a3c61))
|
|
472
|
+
- PROD-1354 update EngineLib to 2.1.0 ([7cb6d0b](https://github.com/AuthMe01/web-client-sdk/commit/7cb6d0b8c7c5f3f2fd398dfc56b797667ea69075))
|
|
473
|
+
- PROD-189 ocr lottie ([a315924](https://github.com/AuthMe01/web-client-sdk/commit/a3159247393a816420eb83b7579aa20782bc130e))
|
|
474
|
+
- PROD-195 modify config and add reset function ([bb00ab9](https://github.com/AuthMe01/web-client-sdk/commit/bb00ab914b446e21cc459bffbd5392b594fd35e1))
|
|
475
|
+
- PROD-195 sdk ocr add config ([5eccd4c](https://github.com/AuthMe01/web-client-sdk/commit/5eccd4c1ecdc393e8bb617a980a7345e405ebf0c))
|
|
476
|
+
- PROD-242 Adjust fps ([883c9ed](https://github.com/AuthMe01/web-client-sdk/commit/883c9ed917f6536114f5d12cdadffd705b834951))
|
|
477
|
+
- PROD-255 add idcard front hint text ([d8d2f24](https://github.com/AuthMe01/web-client-sdk/commit/d8d2f24a4e90ce459701836911661cd969cde0eb))
|
|
478
|
+
- PROD-255 add OCR api impl ([40098a8](https://github.com/AuthMe01/web-client-sdk/commit/40098a8e76b02d3a3e7f4ef642da8d1806818496))
|
|
479
|
+
- PROD-255 add spinner when ocrstart and fraudstart ([342777a](https://github.com/AuthMe01/web-client-sdk/commit/342777a250b46271e0d675fb920f7ecb1721d072))
|
|
480
|
+
- PROD-255 change video text and add not camera warning ([6b387cd](https://github.com/AuthMe01/web-client-sdk/commit/6b387cdc9be756e7f8a27f285cca7f1cc2e5f35a))
|
|
481
|
+
- PROD-255 get card type ([fcd5be9](https://github.com/AuthMe01/web-client-sdk/commit/fcd5be9810d51775ccd4a8d01385e7eb121b71fe))
|
|
482
|
+
- PROD-255 success lottie and ui, clear timeout ([91c97d2](https://github.com/AuthMe01/web-client-sdk/commit/91c97d29e43631800b5dabc1163baf34a7d9eea8))
|
|
483
|
+
- PROD-279 Add version info in view & docker build ([fbdca75](https://github.com/AuthMe01/web-client-sdk/commit/fbdca757f15dff38fdfff46980bd66a989fe4b9b))
|
|
484
|
+
- PROD-327 add border radius ([42b4c23](https://github.com/AuthMe01/web-client-sdk/commit/42b4c23c4b56e3c168fd93627cb482028953dd54))
|
|
485
|
+
- PROD-327 add error message ([6ef47d9](https://github.com/AuthMe01/web-client-sdk/commit/6ef47d9daa633fb8c42e2c01369c032ac7af3147))
|
|
486
|
+
- PROD-327 add ocr confirm image flow ([21e2ef1](https://github.com/AuthMe01/web-client-sdk/commit/21e2ef167452df46c8f85c426fe09c5e3899d50d))
|
|
487
|
+
- PROD-327 add retry ocr panel ([1cccd1d](https://github.com/AuthMe01/web-client-sdk/commit/1cccd1d69aadf897da88e088e4af4f427210d235))
|
|
488
|
+
- PROD-327 change lottie second ([5eff08e](https://github.com/AuthMe01/web-client-sdk/commit/5eff08edcda22a0bd8dd71b73370c8f08009a250))
|
|
489
|
+
- PROD-327 change process and add config cancel ([f8077d1](https://github.com/AuthMe01/web-client-sdk/commit/f8077d1760657c54c5c99e051b9541303e6e88dd))
|
|
490
|
+
- PROD-327 change spinner position ([11d06c3](https://github.com/AuthMe01/web-client-sdk/commit/11d06c3538e7e9cf3d1179859fdbf6fcb39bb638))
|
|
491
|
+
- PROD-327 remove alert(animationFrameId); ([47f8580](https://github.com/AuthMe01/web-client-sdk/commit/47f8580ae47e490075ec94eb235dfe8383df8394))
|
|
492
|
+
- PROD-327 replace liveness ui ([9c5934a](https://github.com/AuthMe01/web-client-sdk/commit/9c5934ad743a0ce5f8fccdabec323c1b3e93f79c))
|
|
493
|
+
- PROD-327 replace ocr ui ([73d4759](https://github.com/AuthMe01/web-client-sdk/commit/73d4759012bdfd0cb0bed9bc338f36af8ec27536))
|
|
494
|
+
- PROD-327 replace top title panel ([ecad5f0](https://github.com/AuthMe01/web-client-sdk/commit/ecad5f029266040639b14e2efa9797a8373a3170))
|
|
495
|
+
- PROD-334 Add Network Error Retry ([1dafbfd](https://github.com/AuthMe01/web-client-sdk/commit/1dafbfd2d51024abed9611cda4b7bd04401ed7f1))
|
|
496
|
+
- PROD-375 add illustrate ([fd617d0](https://github.com/AuthMe01/web-client-sdk/commit/fd617d056ed52dfb05b5d464f7df8098fb7a0094))
|
|
497
|
+
- PROD-375 add popup panel ([77f4672](https://github.com/AuthMe01/web-client-sdk/commit/77f467240474190a276961a86fe48fb66d520b54))
|
|
498
|
+
- PROD-375 card confirm style, remove bootstrap ([645bfd7](https://github.com/AuthMe01/web-client-sdk/commit/645bfd7a828c7a9be9bc3b7dd77eff6208b7a49a))
|
|
499
|
+
- PROD-375 optimization ui ([dd31fb9](https://github.com/AuthMe01/web-client-sdk/commit/dd31fb97b352b9b328db5f80bcffb24db6bf03cf))
|
|
500
|
+
- PROD-375 replace lottie animate and refactor mask border ([39ce902](https://github.com/AuthMe01/web-client-sdk/commit/39ce90241c60bda0e65f648b8ed61b4c577ffae2))
|
|
501
|
+
- PROD-410 change default logo ([7626856](https://github.com/AuthMe01/web-client-sdk/commit/7626856664de79288bdbd2e32604f1aeb28acf6c))
|
|
502
|
+
- PROD-472 web sdk and header redesine ([e561c9f](https://github.com/AuthMe01/web-client-sdk/commit/e561c9fff1b6901277e67e1b40f27855931b9064))
|
|
503
|
+
- PROD-571 add network listener ([39e2db3](https://github.com/AuthMe01/web-client-sdk/commit/39e2db352859070704122bd6672bcdcea5f3fd53))
|
|
504
|
+
- PROD-588 show SDK version ([cce6d67](https://github.com/AuthMe01/web-client-sdk/commit/cce6d6703cda5b86946e7ddb507320d6a820183b))
|
|
505
|
+
- PROD-595 Add eKYC impl ([6b5cf51](https://github.com/AuthMe01/web-client-sdk/commit/6b5cf5198a8f3039a52a1f114ff2089cb45b17b2))
|
|
506
|
+
- PROD-772 Add fps limit for anti-fraud ([6afca8e](https://github.com/AuthMe01/web-client-sdk/commit/6afca8e8b71c357050ab9564ff32621f9f0dbecd))
|
|
507
|
+
- PROD-892 update confirm image page and add MRZ ocr ([90916f7](https://github.com/AuthMe01/web-client-sdk/commit/90916f7a1323103a3dc3a8f2ea825b6a4098dd54))
|
|
508
|
+
- PROD-941 add debug image for OCR ([95fae31](https://github.com/AuthMe01/web-client-sdk/commit/95fae316cb3b4729eeb1c0d138e676fd59953eef))
|
|
509
|
+
- PROD-957 update engineLib v1.0.2 ([f5383e5](https://github.com/AuthMe01/web-client-sdk/commit/f5383e5210c798bf2663ad8f094a16b937ffa5b6))
|
|
510
|
+
|
|
511
|
+
## 1.1.1 (2022-07-07)
|
|
512
|
+
|
|
513
|
+
### Bug Fixes
|
|
514
|
+
|
|
515
|
+
- add upload ocr img from engine-lib ([15e3e9b](https://github.com/AuthMe01/web-client-sdk/commit/15e3e9b98945a53037addb692ea000cb5f745e10))
|
|
516
|
+
- adjust ocr size for pc ([53201c5](https://github.com/AuthMe01/web-client-sdk/commit/53201c5e86386f54bc9e9ece775ec5447c60efe8))
|
|
517
|
+
- adjust top text position ([2b81f08](https://github.com/AuthMe01/web-client-sdk/commit/2b81f08decac3721da577bfe55e9612a7804f086))
|
|
518
|
+
- fix anti-fraud rotate condition ([65dba57](https://github.com/AuthMe01/web-client-sdk/commit/65dba570a2de5e9fa805027ed855fef585fecb4b))
|
|
519
|
+
- fix debug control flag ([b13a86d](https://github.com/AuthMe01/web-client-sdk/commit/b13a86d9dc3a5a2dc82d60aff290734201a5bedf))
|
|
520
|
+
- fix info confirm logic ([b3079a9](https://github.com/AuthMe01/web-client-sdk/commit/b3079a9c217f351d23b327573adff52de4eaa942))
|
|
521
|
+
- PR-81 fix canvas size calculation ([b6ae89a](https://github.com/AuthMe01/web-client-sdk/commit/b6ae89ab2f0a3163b996e6adc9331efa45716d63))
|
|
522
|
+
- PR-83 fix calculate canvas size ([aed08b8](https://github.com/AuthMe01/web-client-sdk/commit/aed08b8b194037c0378e6e54559b6e86625f83f1))
|
|
523
|
+
- PROD-1031 button radius ([4ab1806](https://github.com/AuthMe01/web-client-sdk/commit/4ab1806c931d20e27ffe5622e337d99ad36796e9))
|
|
524
|
+
- PROD-1069 fix incorrect card position setting ([a8a6359](https://github.com/AuthMe01/web-client-sdk/commit/a8a6359301a68262b145f0a8e5e2967e3392a70e))
|
|
525
|
+
- PROD-1078 add fraud failed status ([3902130](https://github.com/AuthMe01/web-client-sdk/commit/3902130ebe91ee4b0d6111ba74c44983de5b4dfe))
|
|
526
|
+
- PROD-1078 fraud error message ([cbd56c7](https://github.com/AuthMe01/web-client-sdk/commit/cbd56c73eb0bc6695e6aa0b74ff8159b97be40bc))
|
|
527
|
+
- PROD-1124 change pc ocr facing mode ([1432569](https://github.com/AuthMe01/web-client-sdk/commit/14325699bc85c43fa02e0497672849f5b4947bc1))
|
|
528
|
+
- PROD-114 fix engine lib mobile support ([1484b78](https://github.com/AuthMe01/web-client-sdk/commit/1484b78f59cdaa94d7020d60c5196ab7593f1535))
|
|
529
|
+
- PROD-1149 fraud mismatch text ([9d171d5](https://github.com/AuthMe01/web-client-sdk/commit/9d171d524619d3b074ee7003089e7b33e27983a9))
|
|
530
|
+
- PROD-1149 remove bs style error, add confirm page column ([2bbc3f4](https://github.com/AuthMe01/web-client-sdk/commit/2bbc3f46cd4380fd7b7d2eb81e2fb2bd4bfc5bb1))
|
|
531
|
+
- PROD-1156 add debug option ([00bb564](https://github.com/AuthMe01/web-client-sdk/commit/00bb56432ffbbd62e2f66563f0fe05d6a0d792bf))
|
|
532
|
+
- PROD-1156 fix aspect-ratio by card type ([042dd36](https://github.com/AuthMe01/web-client-sdk/commit/042dd362d67fcebd0f3ab5e102a581b7f11d1a07))
|
|
533
|
+
- PROD-1206 fix lottie cause memory leak ([1e71e40](https://github.com/AuthMe01/web-client-sdk/commit/1e71e40066fb9f160d8cb905f2d210e5735de335))
|
|
534
|
+
- PROD-1223 adjust config interface ([bc1deae](https://github.com/AuthMe01/web-client-sdk/commit/bc1deae24b8b8f266ebd6068567861f1b18f5166))
|
|
535
|
+
- PROD-135 adjust fas config ([3d89ba7](https://github.com/AuthMe01/web-client-sdk/commit/3d89ba716d6b0bfd07ec2d5353213d8e8306c83d))
|
|
536
|
+
- PROD-241 adjust instance create time ([9475b5f](https://github.com/AuthMe01/web-client-sdk/commit/9475b5f4d0f301f8b5d418dc855753b77fe7b08c))
|
|
537
|
+
- PROD-241 optimize camera setup time ([d0dbc19](https://github.com/AuthMe01/web-client-sdk/commit/d0dbc19412bff1d35705d0b4c15399ee8f693411))
|
|
538
|
+
- PROD-241 optimize ocr model loading time ([32890c4](https://github.com/AuthMe01/web-client-sdk/commit/32890c42a7df440e9bfaf521ba62b32994d14016))
|
|
539
|
+
- PROD-242 fix video mirrored and close video ([1bf75c9](https://github.com/AuthMe01/web-client-sdk/commit/1bf75c92600f50b5d9680922b0b125ce4fd89041))
|
|
540
|
+
- PROD-247 adjust anti-fraud blur threshold ([e65cd7c](https://github.com/AuthMe01/web-client-sdk/commit/e65cd7c649d762b3bd8c27d74b0c6c47a33f5e8e))
|
|
541
|
+
- PROD-255 change ocr and anti-fraud order ([8580b11](https://github.com/AuthMe01/web-client-sdk/commit/8580b112fbacce8a2a658bc208e59caec6a1de88))
|
|
542
|
+
- PROD-255 fix back image upload error ([2848f83](https://github.com/AuthMe01/web-client-sdk/commit/2848f836bc234f63316487afba17df84a24c988e))
|
|
543
|
+
- PROD-255 fix camera try catch ([c3686f1](https://github.com/AuthMe01/web-client-sdk/commit/c3686f1c1d7a044cf39f42502f05a4e23c520499))
|
|
544
|
+
- PROD-255 fix mask width ([339e071](https://github.com/AuthMe01/web-client-sdk/commit/339e071622881d89d6fb05abe2c65f3c48e790ef))
|
|
545
|
+
- PROD-255 fix memory leak issue ([7c35177](https://github.com/AuthMe01/web-client-sdk/commit/7c351779f89020694f41f38d7fd8320284c6e544))
|
|
546
|
+
- PROD-255 fix rotate and process ([62d6c13](https://github.com/AuthMe01/web-client-sdk/commit/62d6c13dacf93369701e229e5f4950addfc94c1a))
|
|
547
|
+
- PROD-255 idcard process and card size ([15a49f8](https://github.com/AuthMe01/web-client-sdk/commit/15a49f85389dd332ad1dee642658bd680b750deb))
|
|
548
|
+
- PROD-255 ocr fraud unsubscribe ([06fe213](https://github.com/AuthMe01/web-client-sdk/commit/06fe213626c4ac1823edaf0b8886343cc4f9f5af))
|
|
549
|
+
- PROD-255 ocr process ([e9ea4a9](https://github.com/AuthMe01/web-client-sdk/commit/e9ea4a9e4516b22a55111bf5146f3b12e9ecd16b))
|
|
550
|
+
- PROD-255 reduce frame size to 720p ([540e24d](https://github.com/AuthMe01/web-client-sdk/commit/540e24d9aa34e442ef6f23dc398ee7778de7fd60))
|
|
551
|
+
- PROD-255 refactor process ([3ddcc9a](https://github.com/AuthMe01/web-client-sdk/commit/3ddcc9a75af048692bbc62652643a83cb889a150))
|
|
552
|
+
- PROD-255 remove console & add fas fail handle ([c2faac9](https://github.com/AuthMe01/web-client-sdk/commit/c2faac958921590958cfc851b678945babeb8402))
|
|
553
|
+
- PROD-255 rotate direction ([85ea48f](https://github.com/AuthMe01/web-client-sdk/commit/85ea48fa2bc10d46e2815c126827616ca5ad71ab))
|
|
554
|
+
- PROD-255 tuning recognition frame performance ([7e8306f](https://github.com/AuthMe01/web-client-sdk/commit/7e8306f8e8567bc745e01b9836efc627601a5269))
|
|
555
|
+
- PROD-255 ui success animate ([25d9195](https://github.com/AuthMe01/web-client-sdk/commit/25d91952c4dc5e42639e69791002e327765b11f3))
|
|
556
|
+
- PROD-255 video position css ([ac0044a](https://github.com/AuthMe01/web-client-sdk/commit/ac0044aaf0b94124219c64b5a8ed2602300f7a53))
|
|
557
|
+
- PROD-298 fix memory leak & compress frame size ([03ddfd1](https://github.com/AuthMe01/web-client-sdk/commit/03ddfd122ba01e21bb3feef7c25efc3fa895d855))
|
|
558
|
+
- PROD-327 add cancel hanlder ([b49180f](https://github.com/AuthMe01/web-client-sdk/commit/b49180f75116458c81974cd4e6902253e0c1204e))
|
|
559
|
+
- PROD-327 cancel bug and retry title ([baefe53](https://github.com/AuthMe01/web-client-sdk/commit/baefe5380e916fc8e137b02e3351d8564bef6452))
|
|
560
|
+
- PROD-327 change ocr confirm image to cropped version ([b233dec](https://github.com/AuthMe01/web-client-sdk/commit/b233dec49ac5d8f4873924d58335073de338b55e))
|
|
561
|
+
- PROD-327 fix confirm page display issue ([85a53f3](https://github.com/AuthMe01/web-client-sdk/commit/85a53f3ee03b61141cadf79f85923f9297e16c2c))
|
|
562
|
+
- PROD-327 ios border css bug ([d6135fa](https://github.com/AuthMe01/web-client-sdk/commit/d6135fa6a6c7650ac2aec74b43bc4ab2c89044c7))
|
|
563
|
+
- PROD-327 liveness and fas width/height and fix text ([a85c98e](https://github.com/AuthMe01/web-client-sdk/commit/a85c98ee127558793abb763bb5fffef50e8bda9f))
|
|
564
|
+
- PROD-375 lottie init and css ([de643ff](https://github.com/AuthMe01/web-client-sdk/commit/de643ffeb6e349620fe488321b168223fa519cda))
|
|
565
|
+
- PROD-375 scan size and finial img size ([374debb](https://github.com/AuthMe01/web-client-sdk/commit/374debb803dd048346e6a5a0c0da754942965cd3))
|
|
566
|
+
- PROD-405 Handle ocr backend recognition error ([1084e8d](https://github.com/AuthMe01/web-client-sdk/commit/1084e8d70f00ab8200f00f334272e1d594585387))
|
|
567
|
+
- PROD-428 adjust ocr mask size ([852c6f0](https://github.com/AuthMe01/web-client-sdk/commit/852c6f0caab92871b2b5d057b3a7aea5f5f3a0cd))
|
|
568
|
+
- PROD-463 handle anti-fraud timeout error ([13d1533](https://github.com/AuthMe01/web-client-sdk/commit/13d1533a4baecefadd9a47e0f81ac5ed4dbba0fa))
|
|
569
|
+
- PROD-472 canvas size, lottie arrow, confirm page ([4bda3a6](https://github.com/AuthMe01/web-client-sdk/commit/4bda3a6737948564668c6770634b527cfd123718))
|
|
570
|
+
- PROD-511 iphone camera ([07c2c2d](https://github.com/AuthMe01/web-client-sdk/commit/07c2c2d7661127003d2f65e07920e1b2333fe0c5))
|
|
571
|
+
- PROD-511 mobile and web camera ([914425f](https://github.com/AuthMe01/web-client-sdk/commit/914425fe2dd91dc1f186c2341dc2dd5b7063c07d))
|
|
572
|
+
- PROD-511 safari web mirror bug ([450d824](https://github.com/AuthMe01/web-client-sdk/commit/450d824d9183e96119431620dfa75b05fc71924a))
|
|
573
|
+
- PROD-514 header, lottie, step content size ([12c4228](https://github.com/AuthMe01/web-client-sdk/commit/12c422844d533ed7d98f8c990b199194ce6beb04))
|
|
574
|
+
- PROD-514 ocr front mirror, liveness header rwd ([d8633c3](https://github.com/AuthMe01/web-client-sdk/commit/d8633c39c5a64a1a0fdecd73c2e6e29857486c70))
|
|
575
|
+
- PROD-560 optimize camera view show time ([5315783](https://github.com/AuthMe01/web-client-sdk/commit/53157830b47d94a1ac257e9b7d31868f9b0b80f0))
|
|
576
|
+
- PROD-560 optimize load time(for view) ([7a38e1b](https://github.com/AuthMe01/web-client-sdk/commit/7a38e1b5ec1588013935f8f69f19f67ae22dedaa))
|
|
577
|
+
- PROD-571 add removeListener ([85631db](https://github.com/AuthMe01/web-client-sdk/commit/85631db5925d8f9061a90600eea380c107b5b3b0))
|
|
578
|
+
- PROD-572 add verify api error msg & favicon ([e3c7936](https://github.com/AuthMe01/web-client-sdk/commit/e3c7936c02b17a5eb3cf73c7f24a580599638d00))
|
|
579
|
+
- PROD-583 fix anti-fraud process ([aee07de](https://github.com/AuthMe01/web-client-sdk/commit/aee07de111240304584a1b08dc9b9c6bc816f615))
|
|
580
|
+
- PROD-583 remove fraud rotate repeat ([32e35ec](https://github.com/AuthMe01/web-client-sdk/commit/32e35ecc58993e94c52b81ab5ccb7c381fb61d14))
|
|
581
|
+
- PROD-588 adjust anti-fraud timeout & fix ui resize issue ([43cfa2f](https://github.com/AuthMe01/web-client-sdk/commit/43cfa2facc3cf2b1816e0ddc805f84ce2ffdc5a8))
|
|
582
|
+
- PROD-588 rotate timer, text content ([2938a37](https://github.com/AuthMe01/web-client-sdk/commit/2938a376b7dd42fa4c2ac6a48ddfde28eb190bd2))
|
|
583
|
+
- PROD-595 fix canvas width/height get zero issue ([cbd74ab](https://github.com/AuthMe01/web-client-sdk/commit/cbd74ab775d964f3bfaa79f7bf711278dce67d73))
|
|
584
|
+
- PROD-650 add loading in liveness ([6df2366](https://github.com/AuthMe01/web-client-sdk/commit/6df2366dd914a0f0d75b72b0e7e8226fb31ed0fb))
|
|
585
|
+
- PROD-650 fix option order, add error&state hint ([2758980](https://github.com/AuthMe01/web-client-sdk/commit/275898079f173f77b8609cb02e84dca6c06daac4))
|
|
586
|
+
- PROD-653 ekyc detail css ([0ddce73](https://github.com/AuthMe01/web-client-sdk/commit/0ddce73f3d5fedea0f96d49aee155040878ec984))
|
|
587
|
+
- PROD-654 scan lottie, ekyc fail liveness style, liveness component ([3cdb08b](https://github.com/AuthMe01/web-client-sdk/commit/3cdb08ba5a3fdfda7ac33e563fc729507edf52cc))
|
|
588
|
+
- PROD-671 idCard lottie and button disabled time ([9cd5e16](https://github.com/AuthMe01/web-client-sdk/commit/9cd5e16c128b7da8f2fa2a988bb0ede69d40b3c5))
|
|
589
|
+
- PROD-679 liveness zIndex ([2bcbc07](https://github.com/AuthMe01/web-client-sdk/commit/2bcbc07cabe189ecbabd87f5d49a003f04256aa7))
|
|
590
|
+
- PROD-680 liveness fail with background upload ([269d17d](https://github.com/AuthMe01/web-client-sdk/commit/269d17d29ffd795270e44455215c0f1c292a137b))
|
|
591
|
+
- PROD-690 adjust liveness-verify error popup ([1a825a2](https://github.com/AuthMe01/web-client-sdk/commit/1a825a29e799a85cd64f003f70d90a23d6cdf871))
|
|
592
|
+
- PROD-714 ipad camera, input zoon in on mobile, ios15 rotate bug ([851baeb](https://github.com/AuthMe01/web-client-sdk/commit/851baeb94ce7563db62a452882cdc136a3505ecd))
|
|
593
|
+
- PROD-714 iPod issue ([06056d6](https://github.com/AuthMe01/web-client-sdk/commit/06056d615fd7f212138902e5fdcd4e9668b569e7))
|
|
594
|
+
- PROD-715 add max fps control ([377fcd3](https://github.com/AuthMe01/web-client-sdk/commit/377fcd34624b98feaf87ed8468dd6174dd8d3981))
|
|
595
|
+
- PROD-730 add lottie mask ([72fa4d6](https://github.com/AuthMe01/web-client-sdk/commit/72fa4d606b3dbe4d0fd86ddfa77a194f447546f4))
|
|
596
|
+
- PROD-730 lottieContainer bg opacity ([bfdc3af](https://github.com/AuthMe01/web-client-sdk/commit/bfdc3afc5bc4d51b88832b85b44b0e8ed03bda82))
|
|
597
|
+
- PROD-730 remove hint text when start rotate ([f237d05](https://github.com/AuthMe01/web-client-sdk/commit/f237d05e2e5478dad363b979f617d82b7201b49b))
|
|
598
|
+
- PROD-730 sdk text ([47d6845](https://github.com/AuthMe01/web-client-sdk/commit/47d684505b47c20b0a18696c669d3bb251645415))
|
|
599
|
+
- PROD-756 rotate to default bug ([e17f6c2](https://github.com/AuthMe01/web-client-sdk/commit/e17f6c2d653848327a0c989da78717fca4a2038d))
|
|
600
|
+
- PROD-756 sync ocr rotate action ([57bc8ea](https://github.com/AuthMe01/web-client-sdk/commit/57bc8ea9f6dd3e36a2281de48a047b4691799998))
|
|
601
|
+
- PROD-760 disable frame resize ([8210508](https://github.com/AuthMe01/web-client-sdk/commit/8210508bfac11a3b94deb233891d9ef576ef1fb3))
|
|
602
|
+
- PROD-780 fix webcam not found ([da26bab](https://github.com/AuthMe01/web-client-sdk/commit/da26babd3e45fa4fd90329aaee8b7d43f520c6fb))
|
|
603
|
+
- PROD-792 fix camera blur & limit frame size ([92c39f8](https://github.com/AuthMe01/web-client-sdk/commit/92c39f818b3cc328f057ec0e22e1c1f551ffd1d4))
|
|
604
|
+
- PROD-792 fix camera blur & limit frame size ([ea56557](https://github.com/AuthMe01/web-client-sdk/commit/ea56557797ce050bce4b478237e1853f030fc9ac))
|
|
605
|
+
- PROD-892 rename function name ([ef47ca8](https://github.com/AuthMe01/web-client-sdk/commit/ef47ca817b30a14bbcdba8ba2d9a4a10fc7bc9bb))
|
|
606
|
+
- PROD-892 rename isMobile function name ([9233f1d](https://github.com/AuthMe01/web-client-sdk/commit/9233f1d3a1f55ce5bc77ae6f4b874fd3533252fe))
|
|
607
|
+
- PROD-941 adjust debug frame height ([5e39a74](https://github.com/AuthMe01/web-client-sdk/commit/5e39a744568a8f6153181fd141a73184e9fb431b))
|
|
608
|
+
- PROD-941 fix mobile ocr board point ([c02e4b5](https://github.com/AuthMe01/web-client-sdk/commit/c02e4b5eb1a78b60d24f93080e41190b8faeab9d))
|
|
609
|
+
- remove waittime ([a32d1e0](https://github.com/AuthMe01/web-client-sdk/commit/a32d1e0ae91aebf0a682e2f2e25be6482fd1fccb))
|
|
610
|
+
|
|
611
|
+
### Features
|
|
612
|
+
|
|
613
|
+
- PR-46 passive fas impl ([307aa7d](https://github.com/AuthMe01/web-client-sdk/commit/307aa7dd85e43ebe41ee9074d2bea6981517de2d))
|
|
614
|
+
- PR-51 Integrate fas UI and logic ([e939088](https://github.com/AuthMe01/web-client-sdk/commit/e939088caffe678ef0e768d7281edd0e6eb09d82))
|
|
615
|
+
- PR-51 Integrate passive fas UI & logic ([f76fb5b](https://github.com/AuthMe01/web-client-sdk/commit/f76fb5b3a1f1cfbc9015524ce9a863c80eec5211))
|
|
616
|
+
- PR-52 Add FAS porting ([d43ec7e](https://github.com/AuthMe01/web-client-sdk/commit/d43ec7e92c215b108157aa3931625865c0603540))
|
|
617
|
+
- PR-81 passive enum ui and process ([e6258e0](https://github.com/AuthMe01/web-client-sdk/commit/e6258e0cd3dc99884c72f526076947e118c3ddf6))
|
|
618
|
+
- PR-81 passive-fas header ([6086cc8](https://github.com/AuthMe01/web-client-sdk/commit/6086cc89a00786bdbfc36353744655e86fd35ecb))
|
|
619
|
+
- PR-81 passive-fas sdk ui ([8ab2938](https://github.com/AuthMe01/web-client-sdk/commit/8ab29386dade1ceef64f136b33782edd5200899b))
|
|
620
|
+
- PR-83 ocr sdk ui ([a414e99](https://github.com/AuthMe01/web-client-sdk/commit/a414e993406071b58bbad5b3db17c0e1c2a86d43))
|
|
621
|
+
- PROD-114 fix liveness issue ([96edf70](https://github.com/AuthMe01/web-client-sdk/commit/96edf70125a2385b1ada8e63a0eb411bf341dc62))
|
|
622
|
+
- PROD-115 custom ui color ([cb9033a](https://github.com/AuthMe01/web-client-sdk/commit/cb9033a89ae5948f3789432981e477d882d02e37))
|
|
623
|
+
- PROD-1186 update engineLib to 2.0.1 ([86eb3be](https://github.com/AuthMe01/web-client-sdk/commit/86eb3be98c547374173e37d47686738bc901d1e1))
|
|
624
|
+
- PROD-1186 update enginelib to 2.0.2 ([142a56f](https://github.com/AuthMe01/web-client-sdk/commit/142a56fd360c1d7c6925855188f7e73148959f31))
|
|
625
|
+
- PROD-1223 add mock auth method ([472aff8](https://github.com/AuthMe01/web-client-sdk/commit/472aff8423bcef67aa2c08ae64d6ca8ddcaf2be9))
|
|
626
|
+
- PROD-1223 remove logger ([aac81cb](https://github.com/AuthMe01/web-client-sdk/commit/aac81cb9500ede6281b2204ce6d01f0de4205b09))
|
|
627
|
+
- PROD-127 sdk ocr rotate ([8ea76c8](https://github.com/AuthMe01/web-client-sdk/commit/8ea76c84a4ed2cd13bd139b9e31b89f6daa2e64d))
|
|
628
|
+
- PROD-127 sdk orc rotate ([e33ae65](https://github.com/AuthMe01/web-client-sdk/commit/e33ae657908e2e751efcf1fb52b57b406277f233))
|
|
629
|
+
- PROD-135 add fetch model from backend ([a701d6f](https://github.com/AuthMe01/web-client-sdk/commit/a701d6fadc1ed2b57bebb00360e818d34d561191))
|
|
630
|
+
- PROD-135 onSuccess add spinner ([4c7a806](https://github.com/AuthMe01/web-client-sdk/commit/4c7a8064db64eda34f748b2138aacadb29fdd8c1))
|
|
631
|
+
- PROD-135 v3 fas api ([8e1e9cc](https://github.com/AuthMe01/web-client-sdk/commit/8e1e9cc9b8e5acbdbc4d49564bad8d42146a3c61))
|
|
632
|
+
- PROD-189 ocr lottie ([a315924](https://github.com/AuthMe01/web-client-sdk/commit/a3159247393a816420eb83b7579aa20782bc130e))
|
|
633
|
+
- PROD-195 modify config and add reset function ([bb00ab9](https://github.com/AuthMe01/web-client-sdk/commit/bb00ab914b446e21cc459bffbd5392b594fd35e1))
|
|
634
|
+
- PROD-195 sdk ocr add config ([5eccd4c](https://github.com/AuthMe01/web-client-sdk/commit/5eccd4c1ecdc393e8bb617a980a7345e405ebf0c))
|
|
635
|
+
- PROD-242 Adjust fps ([883c9ed](https://github.com/AuthMe01/web-client-sdk/commit/883c9ed917f6536114f5d12cdadffd705b834951))
|
|
636
|
+
- PROD-255 add idcard front hint text ([d8d2f24](https://github.com/AuthMe01/web-client-sdk/commit/d8d2f24a4e90ce459701836911661cd969cde0eb))
|
|
637
|
+
- PROD-255 add OCR api impl ([40098a8](https://github.com/AuthMe01/web-client-sdk/commit/40098a8e76b02d3a3e7f4ef642da8d1806818496))
|
|
638
|
+
- PROD-255 add spinner when ocrstart and fraudstart ([342777a](https://github.com/AuthMe01/web-client-sdk/commit/342777a250b46271e0d675fb920f7ecb1721d072))
|
|
639
|
+
- PROD-255 change video text and add not camera warning ([6b387cd](https://github.com/AuthMe01/web-client-sdk/commit/6b387cdc9be756e7f8a27f285cca7f1cc2e5f35a))
|
|
640
|
+
- PROD-255 get card type ([fcd5be9](https://github.com/AuthMe01/web-client-sdk/commit/fcd5be9810d51775ccd4a8d01385e7eb121b71fe))
|
|
641
|
+
- PROD-255 success lottie and ui, clear timeout ([91c97d2](https://github.com/AuthMe01/web-client-sdk/commit/91c97d29e43631800b5dabc1163baf34a7d9eea8))
|
|
642
|
+
- PROD-279 Add version info in view & docker build ([fbdca75](https://github.com/AuthMe01/web-client-sdk/commit/fbdca757f15dff38fdfff46980bd66a989fe4b9b))
|
|
643
|
+
- PROD-327 add border radius ([42b4c23](https://github.com/AuthMe01/web-client-sdk/commit/42b4c23c4b56e3c168fd93627cb482028953dd54))
|
|
644
|
+
- PROD-327 add error message ([6ef47d9](https://github.com/AuthMe01/web-client-sdk/commit/6ef47d9daa633fb8c42e2c01369c032ac7af3147))
|
|
645
|
+
- PROD-327 add ocr confirm image flow ([21e2ef1](https://github.com/AuthMe01/web-client-sdk/commit/21e2ef167452df46c8f85c426fe09c5e3899d50d))
|
|
646
|
+
- PROD-327 add retry ocr panel ([1cccd1d](https://github.com/AuthMe01/web-client-sdk/commit/1cccd1d69aadf897da88e088e4af4f427210d235))
|
|
647
|
+
- PROD-327 change lottie second ([5eff08e](https://github.com/AuthMe01/web-client-sdk/commit/5eff08edcda22a0bd8dd71b73370c8f08009a250))
|
|
648
|
+
- PROD-327 change process and add config cancel ([f8077d1](https://github.com/AuthMe01/web-client-sdk/commit/f8077d1760657c54c5c99e051b9541303e6e88dd))
|
|
649
|
+
- PROD-327 change spinner position ([11d06c3](https://github.com/AuthMe01/web-client-sdk/commit/11d06c3538e7e9cf3d1179859fdbf6fcb39bb638))
|
|
650
|
+
- PROD-327 remove alert(animationFrameId); ([47f8580](https://github.com/AuthMe01/web-client-sdk/commit/47f8580ae47e490075ec94eb235dfe8383df8394))
|
|
651
|
+
- PROD-327 replace liveness ui ([9c5934a](https://github.com/AuthMe01/web-client-sdk/commit/9c5934ad743a0ce5f8fccdabec323c1b3e93f79c))
|
|
652
|
+
- PROD-327 replace ocr ui ([73d4759](https://github.com/AuthMe01/web-client-sdk/commit/73d4759012bdfd0cb0bed9bc338f36af8ec27536))
|
|
653
|
+
- PROD-327 replace top title panel ([ecad5f0](https://github.com/AuthMe01/web-client-sdk/commit/ecad5f029266040639b14e2efa9797a8373a3170))
|
|
654
|
+
- PROD-334 Add Network Error Retry ([1dafbfd](https://github.com/AuthMe01/web-client-sdk/commit/1dafbfd2d51024abed9611cda4b7bd04401ed7f1))
|
|
655
|
+
- PROD-375 add illustrate ([fd617d0](https://github.com/AuthMe01/web-client-sdk/commit/fd617d056ed52dfb05b5d464f7df8098fb7a0094))
|
|
656
|
+
- PROD-375 add popup panel ([77f4672](https://github.com/AuthMe01/web-client-sdk/commit/77f467240474190a276961a86fe48fb66d520b54))
|
|
657
|
+
- PROD-375 card confirm style, remove bootstrap ([645bfd7](https://github.com/AuthMe01/web-client-sdk/commit/645bfd7a828c7a9be9bc3b7dd77eff6208b7a49a))
|
|
658
|
+
- PROD-375 optimization ui ([dd31fb9](https://github.com/AuthMe01/web-client-sdk/commit/dd31fb97b352b9b328db5f80bcffb24db6bf03cf))
|
|
659
|
+
- PROD-375 replace lottie animate and refactor mask border ([39ce902](https://github.com/AuthMe01/web-client-sdk/commit/39ce90241c60bda0e65f648b8ed61b4c577ffae2))
|
|
660
|
+
- PROD-410 change default logo ([7626856](https://github.com/AuthMe01/web-client-sdk/commit/7626856664de79288bdbd2e32604f1aeb28acf6c))
|
|
661
|
+
- PROD-472 web sdk and header redesine ([e561c9f](https://github.com/AuthMe01/web-client-sdk/commit/e561c9fff1b6901277e67e1b40f27855931b9064))
|
|
662
|
+
- PROD-571 add network listener ([39e2db3](https://github.com/AuthMe01/web-client-sdk/commit/39e2db352859070704122bd6672bcdcea5f3fd53))
|
|
663
|
+
- PROD-588 show SDK version ([cce6d67](https://github.com/AuthMe01/web-client-sdk/commit/cce6d6703cda5b86946e7ddb507320d6a820183b))
|
|
664
|
+
- PROD-595 Add eKYC impl ([6b5cf51](https://github.com/AuthMe01/web-client-sdk/commit/6b5cf5198a8f3039a52a1f114ff2089cb45b17b2))
|
|
665
|
+
- PROD-772 Add fps limit for anti-fraud ([6afca8e](https://github.com/AuthMe01/web-client-sdk/commit/6afca8e8b71c357050ab9564ff32621f9f0dbecd))
|
|
666
|
+
- PROD-892 update confirm image page and add MRZ ocr ([90916f7](https://github.com/AuthMe01/web-client-sdk/commit/90916f7a1323103a3dc3a8f2ea825b6a4098dd54))
|
|
667
|
+
- PROD-941 add debug image for OCR ([95fae31](https://github.com/AuthMe01/web-client-sdk/commit/95fae316cb3b4729eeb1c0d138e676fd59953eef))
|
|
668
|
+
- PROD-957 update engineLib v1.0.2 ([f5383e5](https://github.com/AuthMe01/web-client-sdk/commit/f5383e5210c798bf2663ad8f094a16b937ffa5b6))
|
|
669
|
+
|
|
670
|
+
# 1.1.0 (2022-07-06)
|
|
671
|
+
|
|
672
|
+
### Bug Fixes
|
|
673
|
+
|
|
674
|
+
- add upload ocr img from engine-lib ([15e3e9b](https://github.com/AuthMe01/web-client-sdk/commit/15e3e9b98945a53037addb692ea000cb5f745e10))
|
|
675
|
+
- adjust ocr size for pc ([53201c5](https://github.com/AuthMe01/web-client-sdk/commit/53201c5e86386f54bc9e9ece775ec5447c60efe8))
|
|
676
|
+
- adjust top text position ([2b81f08](https://github.com/AuthMe01/web-client-sdk/commit/2b81f08decac3721da577bfe55e9612a7804f086))
|
|
677
|
+
- fix anti-fraud rotate condition ([65dba57](https://github.com/AuthMe01/web-client-sdk/commit/65dba570a2de5e9fa805027ed855fef585fecb4b))
|
|
678
|
+
- fix debug control flag ([b13a86d](https://github.com/AuthMe01/web-client-sdk/commit/b13a86d9dc3a5a2dc82d60aff290734201a5bedf))
|
|
679
|
+
- PR-81 fix canvas size calculation ([b6ae89a](https://github.com/AuthMe01/web-client-sdk/commit/b6ae89ab2f0a3163b996e6adc9331efa45716d63))
|
|
680
|
+
- PR-83 fix calculate canvas size ([aed08b8](https://github.com/AuthMe01/web-client-sdk/commit/aed08b8b194037c0378e6e54559b6e86625f83f1))
|
|
681
|
+
- PROD-1031 button radius ([4ab1806](https://github.com/AuthMe01/web-client-sdk/commit/4ab1806c931d20e27ffe5622e337d99ad36796e9))
|
|
682
|
+
- PROD-1069 fix incorrect card position setting ([a8a6359](https://github.com/AuthMe01/web-client-sdk/commit/a8a6359301a68262b145f0a8e5e2967e3392a70e))
|
|
683
|
+
- PROD-1078 add fraud failed status ([3902130](https://github.com/AuthMe01/web-client-sdk/commit/3902130ebe91ee4b0d6111ba74c44983de5b4dfe))
|
|
684
|
+
- PROD-1078 fraud error message ([cbd56c7](https://github.com/AuthMe01/web-client-sdk/commit/cbd56c73eb0bc6695e6aa0b74ff8159b97be40bc))
|
|
685
|
+
- PROD-1124 change pc ocr facing mode ([1432569](https://github.com/AuthMe01/web-client-sdk/commit/14325699bc85c43fa02e0497672849f5b4947bc1))
|
|
686
|
+
- PROD-114 fix engine lib mobile support ([1484b78](https://github.com/AuthMe01/web-client-sdk/commit/1484b78f59cdaa94d7020d60c5196ab7593f1535))
|
|
687
|
+
- PROD-1149 fraud mismatch text ([9d171d5](https://github.com/AuthMe01/web-client-sdk/commit/9d171d524619d3b074ee7003089e7b33e27983a9))
|
|
688
|
+
- PROD-1149 remove bs style error, add confirm page column ([2bbc3f4](https://github.com/AuthMe01/web-client-sdk/commit/2bbc3f46cd4380fd7b7d2eb81e2fb2bd4bfc5bb1))
|
|
689
|
+
- PROD-1156 add debug option ([00bb564](https://github.com/AuthMe01/web-client-sdk/commit/00bb56432ffbbd62e2f66563f0fe05d6a0d792bf))
|
|
690
|
+
- PROD-1156 fix aspect-ratio by card type ([042dd36](https://github.com/AuthMe01/web-client-sdk/commit/042dd362d67fcebd0f3ab5e102a581b7f11d1a07))
|
|
691
|
+
- PROD-1206 fix lottie cause memory leak ([1e71e40](https://github.com/AuthMe01/web-client-sdk/commit/1e71e40066fb9f160d8cb905f2d210e5735de335))
|
|
692
|
+
- PROD-1223 adjust config interface ([bc1deae](https://github.com/AuthMe01/web-client-sdk/commit/bc1deae24b8b8f266ebd6068567861f1b18f5166))
|
|
693
|
+
- PROD-135 adjust fas config ([3d89ba7](https://github.com/AuthMe01/web-client-sdk/commit/3d89ba716d6b0bfd07ec2d5353213d8e8306c83d))
|
|
694
|
+
- PROD-241 adjust instance create time ([9475b5f](https://github.com/AuthMe01/web-client-sdk/commit/9475b5f4d0f301f8b5d418dc855753b77fe7b08c))
|
|
695
|
+
- PROD-241 optimize camera setup time ([d0dbc19](https://github.com/AuthMe01/web-client-sdk/commit/d0dbc19412bff1d35705d0b4c15399ee8f693411))
|
|
696
|
+
- PROD-241 optimize ocr model loading time ([32890c4](https://github.com/AuthMe01/web-client-sdk/commit/32890c42a7df440e9bfaf521ba62b32994d14016))
|
|
697
|
+
- PROD-242 fix video mirrored and close video ([1bf75c9](https://github.com/AuthMe01/web-client-sdk/commit/1bf75c92600f50b5d9680922b0b125ce4fd89041))
|
|
698
|
+
- PROD-247 adjust anti-fraud blur threshold ([e65cd7c](https://github.com/AuthMe01/web-client-sdk/commit/e65cd7c649d762b3bd8c27d74b0c6c47a33f5e8e))
|
|
699
|
+
- PROD-255 change ocr and anti-fraud order ([8580b11](https://github.com/AuthMe01/web-client-sdk/commit/8580b112fbacce8a2a658bc208e59caec6a1de88))
|
|
700
|
+
- PROD-255 fix back image upload error ([2848f83](https://github.com/AuthMe01/web-client-sdk/commit/2848f836bc234f63316487afba17df84a24c988e))
|
|
701
|
+
- PROD-255 fix camera try catch ([c3686f1](https://github.com/AuthMe01/web-client-sdk/commit/c3686f1c1d7a044cf39f42502f05a4e23c520499))
|
|
702
|
+
- PROD-255 fix mask width ([339e071](https://github.com/AuthMe01/web-client-sdk/commit/339e071622881d89d6fb05abe2c65f3c48e790ef))
|
|
703
|
+
- PROD-255 fix memory leak issue ([7c35177](https://github.com/AuthMe01/web-client-sdk/commit/7c351779f89020694f41f38d7fd8320284c6e544))
|
|
704
|
+
- PROD-255 fix rotate and process ([62d6c13](https://github.com/AuthMe01/web-client-sdk/commit/62d6c13dacf93369701e229e5f4950addfc94c1a))
|
|
705
|
+
- PROD-255 idcard process and card size ([15a49f8](https://github.com/AuthMe01/web-client-sdk/commit/15a49f85389dd332ad1dee642658bd680b750deb))
|
|
706
|
+
- PROD-255 ocr fraud unsubscribe ([06fe213](https://github.com/AuthMe01/web-client-sdk/commit/06fe213626c4ac1823edaf0b8886343cc4f9f5af))
|
|
707
|
+
- PROD-255 ocr process ([e9ea4a9](https://github.com/AuthMe01/web-client-sdk/commit/e9ea4a9e4516b22a55111bf5146f3b12e9ecd16b))
|
|
708
|
+
- PROD-255 reduce frame size to 720p ([540e24d](https://github.com/AuthMe01/web-client-sdk/commit/540e24d9aa34e442ef6f23dc398ee7778de7fd60))
|
|
709
|
+
- PROD-255 refactor process ([3ddcc9a](https://github.com/AuthMe01/web-client-sdk/commit/3ddcc9a75af048692bbc62652643a83cb889a150))
|
|
710
|
+
- PROD-255 remove console & add fas fail handle ([c2faac9](https://github.com/AuthMe01/web-client-sdk/commit/c2faac958921590958cfc851b678945babeb8402))
|
|
711
|
+
- PROD-255 rotate direction ([85ea48f](https://github.com/AuthMe01/web-client-sdk/commit/85ea48fa2bc10d46e2815c126827616ca5ad71ab))
|
|
712
|
+
- PROD-255 tuning recognition frame performance ([7e8306f](https://github.com/AuthMe01/web-client-sdk/commit/7e8306f8e8567bc745e01b9836efc627601a5269))
|
|
713
|
+
- PROD-255 ui success animate ([25d9195](https://github.com/AuthMe01/web-client-sdk/commit/25d91952c4dc5e42639e69791002e327765b11f3))
|
|
714
|
+
- PROD-255 video position css ([ac0044a](https://github.com/AuthMe01/web-client-sdk/commit/ac0044aaf0b94124219c64b5a8ed2602300f7a53))
|
|
715
|
+
- PROD-298 fix memory leak & compress frame size ([03ddfd1](https://github.com/AuthMe01/web-client-sdk/commit/03ddfd122ba01e21bb3feef7c25efc3fa895d855))
|
|
716
|
+
- PROD-327 add cancel hanlder ([b49180f](https://github.com/AuthMe01/web-client-sdk/commit/b49180f75116458c81974cd4e6902253e0c1204e))
|
|
717
|
+
- PROD-327 cancel bug and retry title ([baefe53](https://github.com/AuthMe01/web-client-sdk/commit/baefe5380e916fc8e137b02e3351d8564bef6452))
|
|
718
|
+
- PROD-327 change ocr confirm image to cropped version ([b233dec](https://github.com/AuthMe01/web-client-sdk/commit/b233dec49ac5d8f4873924d58335073de338b55e))
|
|
719
|
+
- PROD-327 fix confirm page display issue ([85a53f3](https://github.com/AuthMe01/web-client-sdk/commit/85a53f3ee03b61141cadf79f85923f9297e16c2c))
|
|
720
|
+
- PROD-327 ios border css bug ([d6135fa](https://github.com/AuthMe01/web-client-sdk/commit/d6135fa6a6c7650ac2aec74b43bc4ab2c89044c7))
|
|
721
|
+
- PROD-327 liveness and fas width/height and fix text ([a85c98e](https://github.com/AuthMe01/web-client-sdk/commit/a85c98ee127558793abb763bb5fffef50e8bda9f))
|
|
722
|
+
- PROD-375 lottie init and css ([de643ff](https://github.com/AuthMe01/web-client-sdk/commit/de643ffeb6e349620fe488321b168223fa519cda))
|
|
723
|
+
- PROD-375 scan size and finial img size ([374debb](https://github.com/AuthMe01/web-client-sdk/commit/374debb803dd048346e6a5a0c0da754942965cd3))
|
|
724
|
+
- PROD-405 Handle ocr backend recognition error ([1084e8d](https://github.com/AuthMe01/web-client-sdk/commit/1084e8d70f00ab8200f00f334272e1d594585387))
|
|
725
|
+
- PROD-428 adjust ocr mask size ([852c6f0](https://github.com/AuthMe01/web-client-sdk/commit/852c6f0caab92871b2b5d057b3a7aea5f5f3a0cd))
|
|
726
|
+
- PROD-463 handle anti-fraud timeout error ([13d1533](https://github.com/AuthMe01/web-client-sdk/commit/13d1533a4baecefadd9a47e0f81ac5ed4dbba0fa))
|
|
727
|
+
- PROD-472 canvas size, lottie arrow, confirm page ([4bda3a6](https://github.com/AuthMe01/web-client-sdk/commit/4bda3a6737948564668c6770634b527cfd123718))
|
|
728
|
+
- PROD-511 iphone camera ([07c2c2d](https://github.com/AuthMe01/web-client-sdk/commit/07c2c2d7661127003d2f65e07920e1b2333fe0c5))
|
|
729
|
+
- PROD-511 mobile and web camera ([914425f](https://github.com/AuthMe01/web-client-sdk/commit/914425fe2dd91dc1f186c2341dc2dd5b7063c07d))
|
|
730
|
+
- PROD-511 safari web mirror bug ([450d824](https://github.com/AuthMe01/web-client-sdk/commit/450d824d9183e96119431620dfa75b05fc71924a))
|
|
731
|
+
- PROD-514 header, lottie, step content size ([12c4228](https://github.com/AuthMe01/web-client-sdk/commit/12c422844d533ed7d98f8c990b199194ce6beb04))
|
|
732
|
+
- PROD-514 ocr front mirror, liveness header rwd ([d8633c3](https://github.com/AuthMe01/web-client-sdk/commit/d8633c39c5a64a1a0fdecd73c2e6e29857486c70))
|
|
733
|
+
- PROD-560 optimize camera view show time ([5315783](https://github.com/AuthMe01/web-client-sdk/commit/53157830b47d94a1ac257e9b7d31868f9b0b80f0))
|
|
734
|
+
- PROD-560 optimize load time(for view) ([7a38e1b](https://github.com/AuthMe01/web-client-sdk/commit/7a38e1b5ec1588013935f8f69f19f67ae22dedaa))
|
|
735
|
+
- PROD-571 add removeListener ([85631db](https://github.com/AuthMe01/web-client-sdk/commit/85631db5925d8f9061a90600eea380c107b5b3b0))
|
|
736
|
+
- PROD-572 add verify api error msg & favicon ([e3c7936](https://github.com/AuthMe01/web-client-sdk/commit/e3c7936c02b17a5eb3cf73c7f24a580599638d00))
|
|
737
|
+
- PROD-583 fix anti-fraud process ([aee07de](https://github.com/AuthMe01/web-client-sdk/commit/aee07de111240304584a1b08dc9b9c6bc816f615))
|
|
738
|
+
- PROD-583 remove fraud rotate repeat ([32e35ec](https://github.com/AuthMe01/web-client-sdk/commit/32e35ecc58993e94c52b81ab5ccb7c381fb61d14))
|
|
739
|
+
- PROD-588 adjust anti-fraud timeout & fix ui resize issue ([43cfa2f](https://github.com/AuthMe01/web-client-sdk/commit/43cfa2facc3cf2b1816e0ddc805f84ce2ffdc5a8))
|
|
740
|
+
- PROD-588 rotate timer, text content ([2938a37](https://github.com/AuthMe01/web-client-sdk/commit/2938a376b7dd42fa4c2ac6a48ddfde28eb190bd2))
|
|
741
|
+
- PROD-595 fix canvas width/height get zero issue ([cbd74ab](https://github.com/AuthMe01/web-client-sdk/commit/cbd74ab775d964f3bfaa79f7bf711278dce67d73))
|
|
742
|
+
- PROD-650 add loading in liveness ([6df2366](https://github.com/AuthMe01/web-client-sdk/commit/6df2366dd914a0f0d75b72b0e7e8226fb31ed0fb))
|
|
743
|
+
- PROD-650 fix option order, add error&state hint ([2758980](https://github.com/AuthMe01/web-client-sdk/commit/275898079f173f77b8609cb02e84dca6c06daac4))
|
|
744
|
+
- PROD-653 ekyc detail css ([0ddce73](https://github.com/AuthMe01/web-client-sdk/commit/0ddce73f3d5fedea0f96d49aee155040878ec984))
|
|
745
|
+
- PROD-654 scan lottie, ekyc fail liveness style, liveness component ([3cdb08b](https://github.com/AuthMe01/web-client-sdk/commit/3cdb08ba5a3fdfda7ac33e563fc729507edf52cc))
|
|
746
|
+
- PROD-671 idCard lottie and button disabled time ([9cd5e16](https://github.com/AuthMe01/web-client-sdk/commit/9cd5e16c128b7da8f2fa2a988bb0ede69d40b3c5))
|
|
747
|
+
- PROD-679 liveness zIndex ([2bcbc07](https://github.com/AuthMe01/web-client-sdk/commit/2bcbc07cabe189ecbabd87f5d49a003f04256aa7))
|
|
748
|
+
- PROD-680 liveness fail with background upload ([269d17d](https://github.com/AuthMe01/web-client-sdk/commit/269d17d29ffd795270e44455215c0f1c292a137b))
|
|
749
|
+
- PROD-690 adjust liveness-verify error popup ([1a825a2](https://github.com/AuthMe01/web-client-sdk/commit/1a825a29e799a85cd64f003f70d90a23d6cdf871))
|
|
750
|
+
- PROD-714 ipad camera, input zoon in on mobile, ios15 rotate bug ([851baeb](https://github.com/AuthMe01/web-client-sdk/commit/851baeb94ce7563db62a452882cdc136a3505ecd))
|
|
751
|
+
- PROD-714 iPod issue ([06056d6](https://github.com/AuthMe01/web-client-sdk/commit/06056d615fd7f212138902e5fdcd4e9668b569e7))
|
|
752
|
+
- PROD-715 add max fps control ([377fcd3](https://github.com/AuthMe01/web-client-sdk/commit/377fcd34624b98feaf87ed8468dd6174dd8d3981))
|
|
753
|
+
- PROD-730 add lottie mask ([72fa4d6](https://github.com/AuthMe01/web-client-sdk/commit/72fa4d606b3dbe4d0fd86ddfa77a194f447546f4))
|
|
754
|
+
- PROD-730 lottieContainer bg opacity ([bfdc3af](https://github.com/AuthMe01/web-client-sdk/commit/bfdc3afc5bc4d51b88832b85b44b0e8ed03bda82))
|
|
755
|
+
- PROD-730 remove hint text when start rotate ([f237d05](https://github.com/AuthMe01/web-client-sdk/commit/f237d05e2e5478dad363b979f617d82b7201b49b))
|
|
756
|
+
- PROD-730 sdk text ([47d6845](https://github.com/AuthMe01/web-client-sdk/commit/47d684505b47c20b0a18696c669d3bb251645415))
|
|
757
|
+
- PROD-756 rotate to default bug ([e17f6c2](https://github.com/AuthMe01/web-client-sdk/commit/e17f6c2d653848327a0c989da78717fca4a2038d))
|
|
758
|
+
- PROD-756 sync ocr rotate action ([57bc8ea](https://github.com/AuthMe01/web-client-sdk/commit/57bc8ea9f6dd3e36a2281de48a047b4691799998))
|
|
759
|
+
- PROD-760 disable frame resize ([8210508](https://github.com/AuthMe01/web-client-sdk/commit/8210508bfac11a3b94deb233891d9ef576ef1fb3))
|
|
760
|
+
- PROD-780 fix webcam not found ([da26bab](https://github.com/AuthMe01/web-client-sdk/commit/da26babd3e45fa4fd90329aaee8b7d43f520c6fb))
|
|
761
|
+
- PROD-792 fix camera blur & limit frame size ([92c39f8](https://github.com/AuthMe01/web-client-sdk/commit/92c39f818b3cc328f057ec0e22e1c1f551ffd1d4))
|
|
762
|
+
- PROD-792 fix camera blur & limit frame size ([ea56557](https://github.com/AuthMe01/web-client-sdk/commit/ea56557797ce050bce4b478237e1853f030fc9ac))
|
|
763
|
+
- PROD-892 rename function name ([ef47ca8](https://github.com/AuthMe01/web-client-sdk/commit/ef47ca817b30a14bbcdba8ba2d9a4a10fc7bc9bb))
|
|
764
|
+
- PROD-892 rename isMobile function name ([9233f1d](https://github.com/AuthMe01/web-client-sdk/commit/9233f1d3a1f55ce5bc77ae6f4b874fd3533252fe))
|
|
765
|
+
- PROD-941 adjust debug frame height ([5e39a74](https://github.com/AuthMe01/web-client-sdk/commit/5e39a744568a8f6153181fd141a73184e9fb431b))
|
|
766
|
+
- PROD-941 fix mobile ocr board point ([c02e4b5](https://github.com/AuthMe01/web-client-sdk/commit/c02e4b5eb1a78b60d24f93080e41190b8faeab9d))
|
|
767
|
+
- remove waittime ([a32d1e0](https://github.com/AuthMe01/web-client-sdk/commit/a32d1e0ae91aebf0a682e2f2e25be6482fd1fccb))
|
|
768
|
+
|
|
769
|
+
### Features
|
|
770
|
+
|
|
771
|
+
- PR-46 passive fas impl ([307aa7d](https://github.com/AuthMe01/web-client-sdk/commit/307aa7dd85e43ebe41ee9074d2bea6981517de2d))
|
|
772
|
+
- PR-51 Integrate fas UI and logic ([e939088](https://github.com/AuthMe01/web-client-sdk/commit/e939088caffe678ef0e768d7281edd0e6eb09d82))
|
|
773
|
+
- PR-51 Integrate passive fas UI & logic ([f76fb5b](https://github.com/AuthMe01/web-client-sdk/commit/f76fb5b3a1f1cfbc9015524ce9a863c80eec5211))
|
|
774
|
+
- PR-52 Add FAS porting ([d43ec7e](https://github.com/AuthMe01/web-client-sdk/commit/d43ec7e92c215b108157aa3931625865c0603540))
|
|
775
|
+
- PR-81 passive enum ui and process ([e6258e0](https://github.com/AuthMe01/web-client-sdk/commit/e6258e0cd3dc99884c72f526076947e118c3ddf6))
|
|
776
|
+
- PR-81 passive-fas header ([6086cc8](https://github.com/AuthMe01/web-client-sdk/commit/6086cc89a00786bdbfc36353744655e86fd35ecb))
|
|
777
|
+
- PR-81 passive-fas sdk ui ([8ab2938](https://github.com/AuthMe01/web-client-sdk/commit/8ab29386dade1ceef64f136b33782edd5200899b))
|
|
778
|
+
- PR-83 ocr sdk ui ([a414e99](https://github.com/AuthMe01/web-client-sdk/commit/a414e993406071b58bbad5b3db17c0e1c2a86d43))
|
|
779
|
+
- PROD-114 fix liveness issue ([96edf70](https://github.com/AuthMe01/web-client-sdk/commit/96edf70125a2385b1ada8e63a0eb411bf341dc62))
|
|
780
|
+
- PROD-115 custom ui color ([cb9033a](https://github.com/AuthMe01/web-client-sdk/commit/cb9033a89ae5948f3789432981e477d882d02e37))
|
|
781
|
+
- PROD-1186 update engineLib to 2.0.1 ([86eb3be](https://github.com/AuthMe01/web-client-sdk/commit/86eb3be98c547374173e37d47686738bc901d1e1))
|
|
782
|
+
- PROD-1186 update enginelib to 2.0.2 ([142a56f](https://github.com/AuthMe01/web-client-sdk/commit/142a56fd360c1d7c6925855188f7e73148959f31))
|
|
783
|
+
- PROD-1223 add mock auth method ([472aff8](https://github.com/AuthMe01/web-client-sdk/commit/472aff8423bcef67aa2c08ae64d6ca8ddcaf2be9))
|
|
784
|
+
- PROD-1223 remove logger ([aac81cb](https://github.com/AuthMe01/web-client-sdk/commit/aac81cb9500ede6281b2204ce6d01f0de4205b09))
|
|
785
|
+
- PROD-127 sdk ocr rotate ([8ea76c8](https://github.com/AuthMe01/web-client-sdk/commit/8ea76c84a4ed2cd13bd139b9e31b89f6daa2e64d))
|
|
786
|
+
- PROD-127 sdk orc rotate ([e33ae65](https://github.com/AuthMe01/web-client-sdk/commit/e33ae657908e2e751efcf1fb52b57b406277f233))
|
|
787
|
+
- PROD-135 add fetch model from backend ([a701d6f](https://github.com/AuthMe01/web-client-sdk/commit/a701d6fadc1ed2b57bebb00360e818d34d561191))
|
|
788
|
+
- PROD-135 onSuccess add spinner ([4c7a806](https://github.com/AuthMe01/web-client-sdk/commit/4c7a8064db64eda34f748b2138aacadb29fdd8c1))
|
|
789
|
+
- PROD-135 v3 fas api ([8e1e9cc](https://github.com/AuthMe01/web-client-sdk/commit/8e1e9cc9b8e5acbdbc4d49564bad8d42146a3c61))
|
|
790
|
+
- PROD-189 ocr lottie ([a315924](https://github.com/AuthMe01/web-client-sdk/commit/a3159247393a816420eb83b7579aa20782bc130e))
|
|
791
|
+
- PROD-195 modify config and add reset function ([bb00ab9](https://github.com/AuthMe01/web-client-sdk/commit/bb00ab914b446e21cc459bffbd5392b594fd35e1))
|
|
792
|
+
- PROD-195 sdk ocr add config ([5eccd4c](https://github.com/AuthMe01/web-client-sdk/commit/5eccd4c1ecdc393e8bb617a980a7345e405ebf0c))
|
|
793
|
+
- PROD-242 Adjust fps ([883c9ed](https://github.com/AuthMe01/web-client-sdk/commit/883c9ed917f6536114f5d12cdadffd705b834951))
|
|
794
|
+
- PROD-255 add idcard front hint text ([d8d2f24](https://github.com/AuthMe01/web-client-sdk/commit/d8d2f24a4e90ce459701836911661cd969cde0eb))
|
|
795
|
+
- PROD-255 add OCR api impl ([40098a8](https://github.com/AuthMe01/web-client-sdk/commit/40098a8e76b02d3a3e7f4ef642da8d1806818496))
|
|
796
|
+
- PROD-255 add spinner when ocrstart and fraudstart ([342777a](https://github.com/AuthMe01/web-client-sdk/commit/342777a250b46271e0d675fb920f7ecb1721d072))
|
|
797
|
+
- PROD-255 change video text and add not camera warning ([6b387cd](https://github.com/AuthMe01/web-client-sdk/commit/6b387cdc9be756e7f8a27f285cca7f1cc2e5f35a))
|
|
798
|
+
- PROD-255 get card type ([fcd5be9](https://github.com/AuthMe01/web-client-sdk/commit/fcd5be9810d51775ccd4a8d01385e7eb121b71fe))
|
|
799
|
+
- PROD-255 success lottie and ui, clear timeout ([91c97d2](https://github.com/AuthMe01/web-client-sdk/commit/91c97d29e43631800b5dabc1163baf34a7d9eea8))
|
|
800
|
+
- PROD-279 Add version info in view & docker build ([fbdca75](https://github.com/AuthMe01/web-client-sdk/commit/fbdca757f15dff38fdfff46980bd66a989fe4b9b))
|
|
801
|
+
- PROD-327 add border radius ([42b4c23](https://github.com/AuthMe01/web-client-sdk/commit/42b4c23c4b56e3c168fd93627cb482028953dd54))
|
|
802
|
+
- PROD-327 add error message ([6ef47d9](https://github.com/AuthMe01/web-client-sdk/commit/6ef47d9daa633fb8c42e2c01369c032ac7af3147))
|
|
803
|
+
- PROD-327 add ocr confirm image flow ([21e2ef1](https://github.com/AuthMe01/web-client-sdk/commit/21e2ef167452df46c8f85c426fe09c5e3899d50d))
|
|
804
|
+
- PROD-327 add retry ocr panel ([1cccd1d](https://github.com/AuthMe01/web-client-sdk/commit/1cccd1d69aadf897da88e088e4af4f427210d235))
|
|
805
|
+
- PROD-327 change lottie second ([5eff08e](https://github.com/AuthMe01/web-client-sdk/commit/5eff08edcda22a0bd8dd71b73370c8f08009a250))
|
|
806
|
+
- PROD-327 change process and add config cancel ([f8077d1](https://github.com/AuthMe01/web-client-sdk/commit/f8077d1760657c54c5c99e051b9541303e6e88dd))
|
|
807
|
+
- PROD-327 change spinner position ([11d06c3](https://github.com/AuthMe01/web-client-sdk/commit/11d06c3538e7e9cf3d1179859fdbf6fcb39bb638))
|
|
808
|
+
- PROD-327 remove alert(animationFrameId); ([47f8580](https://github.com/AuthMe01/web-client-sdk/commit/47f8580ae47e490075ec94eb235dfe8383df8394))
|
|
809
|
+
- PROD-327 replace liveness ui ([9c5934a](https://github.com/AuthMe01/web-client-sdk/commit/9c5934ad743a0ce5f8fccdabec323c1b3e93f79c))
|
|
810
|
+
- PROD-327 replace ocr ui ([73d4759](https://github.com/AuthMe01/web-client-sdk/commit/73d4759012bdfd0cb0bed9bc338f36af8ec27536))
|
|
811
|
+
- PROD-327 replace top title panel ([ecad5f0](https://github.com/AuthMe01/web-client-sdk/commit/ecad5f029266040639b14e2efa9797a8373a3170))
|
|
812
|
+
- PROD-334 Add Network Error Retry ([1dafbfd](https://github.com/AuthMe01/web-client-sdk/commit/1dafbfd2d51024abed9611cda4b7bd04401ed7f1))
|
|
813
|
+
- PROD-375 add illustrate ([fd617d0](https://github.com/AuthMe01/web-client-sdk/commit/fd617d056ed52dfb05b5d464f7df8098fb7a0094))
|
|
814
|
+
- PROD-375 add popup panel ([77f4672](https://github.com/AuthMe01/web-client-sdk/commit/77f467240474190a276961a86fe48fb66d520b54))
|
|
815
|
+
- PROD-375 card confirm style, remove bootstrap ([645bfd7](https://github.com/AuthMe01/web-client-sdk/commit/645bfd7a828c7a9be9bc3b7dd77eff6208b7a49a))
|
|
816
|
+
- PROD-375 optimization ui ([dd31fb9](https://github.com/AuthMe01/web-client-sdk/commit/dd31fb97b352b9b328db5f80bcffb24db6bf03cf))
|
|
817
|
+
- PROD-375 replace lottie animate and refactor mask border ([39ce902](https://github.com/AuthMe01/web-client-sdk/commit/39ce90241c60bda0e65f648b8ed61b4c577ffae2))
|
|
818
|
+
- PROD-410 change default logo ([7626856](https://github.com/AuthMe01/web-client-sdk/commit/7626856664de79288bdbd2e32604f1aeb28acf6c))
|
|
819
|
+
- PROD-472 web sdk and header redesine ([e561c9f](https://github.com/AuthMe01/web-client-sdk/commit/e561c9fff1b6901277e67e1b40f27855931b9064))
|
|
820
|
+
- PROD-571 add network listener ([39e2db3](https://github.com/AuthMe01/web-client-sdk/commit/39e2db352859070704122bd6672bcdcea5f3fd53))
|
|
821
|
+
- PROD-588 show SDK version ([cce6d67](https://github.com/AuthMe01/web-client-sdk/commit/cce6d6703cda5b86946e7ddb507320d6a820183b))
|
|
822
|
+
- PROD-595 Add eKYC impl ([6b5cf51](https://github.com/AuthMe01/web-client-sdk/commit/6b5cf5198a8f3039a52a1f114ff2089cb45b17b2))
|
|
823
|
+
- PROD-772 Add fps limit for anti-fraud ([6afca8e](https://github.com/AuthMe01/web-client-sdk/commit/6afca8e8b71c357050ab9564ff32621f9f0dbecd))
|
|
824
|
+
- PROD-892 update confirm image page and add MRZ ocr ([90916f7](https://github.com/AuthMe01/web-client-sdk/commit/90916f7a1323103a3dc3a8f2ea825b6a4098dd54))
|
|
825
|
+
- PROD-941 add debug image for OCR ([95fae31](https://github.com/AuthMe01/web-client-sdk/commit/95fae316cb3b4729eeb1c0d138e676fd59953eef))
|
|
826
|
+
- PROD-957 update engineLib v1.0.2 ([f5383e5](https://github.com/AuthMe01/web-client-sdk/commit/f5383e5210c798bf2663ad8f094a16b937ffa5b6))
|
|
827
|
+
|
|
828
|
+
# 1.0.0 (2022-05-30)
|
|
829
|
+
|
|
830
|
+
### Bug Fixes
|
|
831
|
+
|
|
832
|
+
- PR-81 fix canvas size calculation ([b6ae89a](https://github.com/AuthMe01/web-client-sdk/commit/b6ae89ab2f0a3163b996e6adc9331efa45716d63))
|
|
833
|
+
- PR-83 fix calculate canvas size ([aed08b8](https://github.com/AuthMe01/web-client-sdk/commit/aed08b8b194037c0378e6e54559b6e86625f83f1))
|
|
834
|
+
- PROD-114 fix engine lib mobile support ([1484b78](https://github.com/AuthMe01/web-client-sdk/commit/1484b78f59cdaa94d7020d60c5196ab7593f1535))
|
|
835
|
+
- PROD-135 adjust fas config ([3d89ba7](https://github.com/AuthMe01/web-client-sdk/commit/3d89ba716d6b0bfd07ec2d5353213d8e8306c83d))
|
|
836
|
+
- PROD-241 adjust instance create time ([9475b5f](https://github.com/AuthMe01/web-client-sdk/commit/9475b5f4d0f301f8b5d418dc855753b77fe7b08c))
|
|
837
|
+
- PROD-241 optimize camera setup time ([d0dbc19](https://github.com/AuthMe01/web-client-sdk/commit/d0dbc19412bff1d35705d0b4c15399ee8f693411))
|
|
838
|
+
- PROD-241 optimize ocr model loading time ([32890c4](https://github.com/AuthMe01/web-client-sdk/commit/32890c42a7df440e9bfaf521ba62b32994d14016))
|
|
839
|
+
- PROD-242 fix video mirrored and close video ([1bf75c9](https://github.com/AuthMe01/web-client-sdk/commit/1bf75c92600f50b5d9680922b0b125ce4fd89041))
|
|
840
|
+
- PROD-247 adjust anti-fraud blur threshold ([e65cd7c](https://github.com/AuthMe01/web-client-sdk/commit/e65cd7c649d762b3bd8c27d74b0c6c47a33f5e8e))
|
|
841
|
+
- PROD-255 change ocr and anti-fraud order ([8580b11](https://github.com/AuthMe01/web-client-sdk/commit/8580b112fbacce8a2a658bc208e59caec6a1de88))
|
|
842
|
+
- PROD-255 fix back image upload error ([2848f83](https://github.com/AuthMe01/web-client-sdk/commit/2848f836bc234f63316487afba17df84a24c988e))
|
|
843
|
+
- PROD-255 fix camera try catch ([c3686f1](https://github.com/AuthMe01/web-client-sdk/commit/c3686f1c1d7a044cf39f42502f05a4e23c520499))
|
|
844
|
+
- PROD-255 fix mask width ([339e071](https://github.com/AuthMe01/web-client-sdk/commit/339e071622881d89d6fb05abe2c65f3c48e790ef))
|
|
845
|
+
- PROD-255 fix memory leak issue ([7c35177](https://github.com/AuthMe01/web-client-sdk/commit/7c351779f89020694f41f38d7fd8320284c6e544))
|
|
846
|
+
- PROD-255 fix rotate and process ([62d6c13](https://github.com/AuthMe01/web-client-sdk/commit/62d6c13dacf93369701e229e5f4950addfc94c1a))
|
|
847
|
+
- PROD-255 idcard process and card size ([15a49f8](https://github.com/AuthMe01/web-client-sdk/commit/15a49f85389dd332ad1dee642658bd680b750deb))
|
|
848
|
+
- PROD-255 ocr fraud unsubscribe ([06fe213](https://github.com/AuthMe01/web-client-sdk/commit/06fe213626c4ac1823edaf0b8886343cc4f9f5af))
|
|
849
|
+
- PROD-255 ocr process ([e9ea4a9](https://github.com/AuthMe01/web-client-sdk/commit/e9ea4a9e4516b22a55111bf5146f3b12e9ecd16b))
|
|
850
|
+
- PROD-255 reduce frame size to 720p ([540e24d](https://github.com/AuthMe01/web-client-sdk/commit/540e24d9aa34e442ef6f23dc398ee7778de7fd60))
|
|
851
|
+
- PROD-255 refactor process ([3ddcc9a](https://github.com/AuthMe01/web-client-sdk/commit/3ddcc9a75af048692bbc62652643a83cb889a150))
|
|
852
|
+
- PROD-255 remove console & add fas fail handle ([c2faac9](https://github.com/AuthMe01/web-client-sdk/commit/c2faac958921590958cfc851b678945babeb8402))
|
|
853
|
+
- PROD-255 rotate direction ([85ea48f](https://github.com/AuthMe01/web-client-sdk/commit/85ea48fa2bc10d46e2815c126827616ca5ad71ab))
|
|
854
|
+
- PROD-255 tuning recognition frame performance ([7e8306f](https://github.com/AuthMe01/web-client-sdk/commit/7e8306f8e8567bc745e01b9836efc627601a5269))
|
|
855
|
+
- PROD-255 ui success animate ([25d9195](https://github.com/AuthMe01/web-client-sdk/commit/25d91952c4dc5e42639e69791002e327765b11f3))
|
|
856
|
+
- PROD-255 video position css ([ac0044a](https://github.com/AuthMe01/web-client-sdk/commit/ac0044aaf0b94124219c64b5a8ed2602300f7a53))
|
|
857
|
+
- PROD-298 fix memory leak & compress frame size ([03ddfd1](https://github.com/AuthMe01/web-client-sdk/commit/03ddfd122ba01e21bb3feef7c25efc3fa895d855))
|
|
858
|
+
- PROD-327 add cancel hanlder ([b49180f](https://github.com/AuthMe01/web-client-sdk/commit/b49180f75116458c81974cd4e6902253e0c1204e))
|
|
859
|
+
- PROD-327 cancel bug and retry title ([baefe53](https://github.com/AuthMe01/web-client-sdk/commit/baefe5380e916fc8e137b02e3351d8564bef6452))
|
|
860
|
+
- PROD-327 change ocr confirm image to cropped version ([b233dec](https://github.com/AuthMe01/web-client-sdk/commit/b233dec49ac5d8f4873924d58335073de338b55e))
|
|
861
|
+
- PROD-327 fix confirm page display issue ([85a53f3](https://github.com/AuthMe01/web-client-sdk/commit/85a53f3ee03b61141cadf79f85923f9297e16c2c))
|
|
862
|
+
- PROD-327 ios border css bug ([d6135fa](https://github.com/AuthMe01/web-client-sdk/commit/d6135fa6a6c7650ac2aec74b43bc4ab2c89044c7))
|
|
863
|
+
- PROD-327 liveness and fas width/height and fix text ([a85c98e](https://github.com/AuthMe01/web-client-sdk/commit/a85c98ee127558793abb763bb5fffef50e8bda9f))
|
|
864
|
+
- PROD-375 lottie init and css ([de643ff](https://github.com/AuthMe01/web-client-sdk/commit/de643ffeb6e349620fe488321b168223fa519cda))
|
|
865
|
+
- PROD-375 scan size and finial img size ([374debb](https://github.com/AuthMe01/web-client-sdk/commit/374debb803dd048346e6a5a0c0da754942965cd3))
|
|
866
|
+
- PROD-405 Handle ocr backend recognition error ([1084e8d](https://github.com/AuthMe01/web-client-sdk/commit/1084e8d70f00ab8200f00f334272e1d594585387))
|
|
867
|
+
- PROD-428 adjust ocr mask size ([852c6f0](https://github.com/AuthMe01/web-client-sdk/commit/852c6f0caab92871b2b5d057b3a7aea5f5f3a0cd))
|
|
868
|
+
- PROD-463 handle anti-fraud timeout error ([13d1533](https://github.com/AuthMe01/web-client-sdk/commit/13d1533a4baecefadd9a47e0f81ac5ed4dbba0fa))
|
|
869
|
+
- PROD-472 canvas size, lottie arrow, confirm page ([4bda3a6](https://github.com/AuthMe01/web-client-sdk/commit/4bda3a6737948564668c6770634b527cfd123718))
|
|
870
|
+
- PROD-511 iphone camera ([07c2c2d](https://github.com/AuthMe01/web-client-sdk/commit/07c2c2d7661127003d2f65e07920e1b2333fe0c5))
|
|
871
|
+
- PROD-511 mobile and web camera ([914425f](https://github.com/AuthMe01/web-client-sdk/commit/914425fe2dd91dc1f186c2341dc2dd5b7063c07d))
|
|
872
|
+
- PROD-511 safari web mirror bug ([450d824](https://github.com/AuthMe01/web-client-sdk/commit/450d824d9183e96119431620dfa75b05fc71924a))
|
|
873
|
+
- PROD-514 header, lottie, step content size ([12c4228](https://github.com/AuthMe01/web-client-sdk/commit/12c422844d533ed7d98f8c990b199194ce6beb04))
|
|
874
|
+
- PROD-514 ocr front mirror, liveness header rwd ([d8633c3](https://github.com/AuthMe01/web-client-sdk/commit/d8633c39c5a64a1a0fdecd73c2e6e29857486c70))
|
|
875
|
+
- PROD-560 optimize camera view show time ([5315783](https://github.com/AuthMe01/web-client-sdk/commit/53157830b47d94a1ac257e9b7d31868f9b0b80f0))
|
|
876
|
+
- PROD-560 optimize load time(for view) ([7a38e1b](https://github.com/AuthMe01/web-client-sdk/commit/7a38e1b5ec1588013935f8f69f19f67ae22dedaa))
|
|
877
|
+
- PROD-571 add removeListener ([85631db](https://github.com/AuthMe01/web-client-sdk/commit/85631db5925d8f9061a90600eea380c107b5b3b0))
|
|
878
|
+
- PROD-572 add verify api error msg & favicon ([e3c7936](https://github.com/AuthMe01/web-client-sdk/commit/e3c7936c02b17a5eb3cf73c7f24a580599638d00))
|
|
879
|
+
- PROD-583 fix anti-fraud process ([aee07de](https://github.com/AuthMe01/web-client-sdk/commit/aee07de111240304584a1b08dc9b9c6bc816f615))
|
|
880
|
+
- PROD-583 remove fraud rotate repeat ([32e35ec](https://github.com/AuthMe01/web-client-sdk/commit/32e35ecc58993e94c52b81ab5ccb7c381fb61d14))
|
|
881
|
+
- PROD-588 adjust anti-fraud timeout & fix ui resize issue ([43cfa2f](https://github.com/AuthMe01/web-client-sdk/commit/43cfa2facc3cf2b1816e0ddc805f84ce2ffdc5a8))
|
|
882
|
+
- PROD-588 rotate timer, text content ([2938a37](https://github.com/AuthMe01/web-client-sdk/commit/2938a376b7dd42fa4c2ac6a48ddfde28eb190bd2))
|
|
883
|
+
- PROD-595 fix canvas width/height get zero issue ([cbd74ab](https://github.com/AuthMe01/web-client-sdk/commit/cbd74ab775d964f3bfaa79f7bf711278dce67d73))
|
|
884
|
+
- PROD-650 add loading in liveness ([6df2366](https://github.com/AuthMe01/web-client-sdk/commit/6df2366dd914a0f0d75b72b0e7e8226fb31ed0fb))
|
|
885
|
+
- PROD-650 fix option order, add error&state hint ([2758980](https://github.com/AuthMe01/web-client-sdk/commit/275898079f173f77b8609cb02e84dca6c06daac4))
|
|
886
|
+
- PROD-653 ekyc detail css ([0ddce73](https://github.com/AuthMe01/web-client-sdk/commit/0ddce73f3d5fedea0f96d49aee155040878ec984))
|
|
887
|
+
- PROD-654 scan lottie, ekyc fail liveness style, liveness component ([3cdb08b](https://github.com/AuthMe01/web-client-sdk/commit/3cdb08ba5a3fdfda7ac33e563fc729507edf52cc))
|
|
888
|
+
- PROD-671 idCard lottie and button disabled time ([9cd5e16](https://github.com/AuthMe01/web-client-sdk/commit/9cd5e16c128b7da8f2fa2a988bb0ede69d40b3c5))
|
|
889
|
+
- PROD-679 liveness zIndex ([2bcbc07](https://github.com/AuthMe01/web-client-sdk/commit/2bcbc07cabe189ecbabd87f5d49a003f04256aa7))
|
|
890
|
+
- PROD-680 liveness fail with background upload ([269d17d](https://github.com/AuthMe01/web-client-sdk/commit/269d17d29ffd795270e44455215c0f1c292a137b))
|
|
891
|
+
- PROD-690 adjust liveness-verify error popup ([1a825a2](https://github.com/AuthMe01/web-client-sdk/commit/1a825a29e799a85cd64f003f70d90a23d6cdf871))
|
|
892
|
+
- remove waittime ([a32d1e0](https://github.com/AuthMe01/web-client-sdk/commit/a32d1e0ae91aebf0a682e2f2e25be6482fd1fccb))
|
|
893
|
+
|
|
894
|
+
### Features
|
|
895
|
+
|
|
896
|
+
- PR-46 passive fas impl ([307aa7d](https://github.com/AuthMe01/web-client-sdk/commit/307aa7dd85e43ebe41ee9074d2bea6981517de2d))
|
|
897
|
+
- PR-51 Integrate fas UI and logic ([e939088](https://github.com/AuthMe01/web-client-sdk/commit/e939088caffe678ef0e768d7281edd0e6eb09d82))
|
|
898
|
+
- PR-51 Integrate passive fas UI & logic ([f76fb5b](https://github.com/AuthMe01/web-client-sdk/commit/f76fb5b3a1f1cfbc9015524ce9a863c80eec5211))
|
|
899
|
+
- PR-52 Add FAS porting ([d43ec7e](https://github.com/AuthMe01/web-client-sdk/commit/d43ec7e92c215b108157aa3931625865c0603540))
|
|
900
|
+
- PR-81 passive enum ui and process ([e6258e0](https://github.com/AuthMe01/web-client-sdk/commit/e6258e0cd3dc99884c72f526076947e118c3ddf6))
|
|
901
|
+
- PR-81 passive-fas header ([6086cc8](https://github.com/AuthMe01/web-client-sdk/commit/6086cc89a00786bdbfc36353744655e86fd35ecb))
|
|
902
|
+
- PR-81 passive-fas sdk ui ([8ab2938](https://github.com/AuthMe01/web-client-sdk/commit/8ab29386dade1ceef64f136b33782edd5200899b))
|
|
903
|
+
- PR-83 ocr sdk ui ([a414e99](https://github.com/AuthMe01/web-client-sdk/commit/a414e993406071b58bbad5b3db17c0e1c2a86d43))
|
|
904
|
+
- PROD-114 fix liveness issue ([96edf70](https://github.com/AuthMe01/web-client-sdk/commit/96edf70125a2385b1ada8e63a0eb411bf341dc62))
|
|
905
|
+
- PROD-115 custom ui color ([cb9033a](https://github.com/AuthMe01/web-client-sdk/commit/cb9033a89ae5948f3789432981e477d882d02e37))
|
|
906
|
+
- PROD-127 sdk ocr rotate ([8ea76c8](https://github.com/AuthMe01/web-client-sdk/commit/8ea76c84a4ed2cd13bd139b9e31b89f6daa2e64d))
|
|
907
|
+
- PROD-127 sdk orc rotate ([e33ae65](https://github.com/AuthMe01/web-client-sdk/commit/e33ae657908e2e751efcf1fb52b57b406277f233))
|
|
908
|
+
- PROD-135 add fetch model from backend ([a701d6f](https://github.com/AuthMe01/web-client-sdk/commit/a701d6fadc1ed2b57bebb00360e818d34d561191))
|
|
909
|
+
- PROD-135 onSuccess add spinner ([4c7a806](https://github.com/AuthMe01/web-client-sdk/commit/4c7a8064db64eda34f748b2138aacadb29fdd8c1))
|
|
910
|
+
- PROD-135 v3 fas api ([8e1e9cc](https://github.com/AuthMe01/web-client-sdk/commit/8e1e9cc9b8e5acbdbc4d49564bad8d42146a3c61))
|
|
911
|
+
- PROD-189 ocr lottie ([a315924](https://github.com/AuthMe01/web-client-sdk/commit/a3159247393a816420eb83b7579aa20782bc130e))
|
|
912
|
+
- PROD-195 modify config and add reset function ([bb00ab9](https://github.com/AuthMe01/web-client-sdk/commit/bb00ab914b446e21cc459bffbd5392b594fd35e1))
|
|
913
|
+
- PROD-195 sdk ocr add config ([5eccd4c](https://github.com/AuthMe01/web-client-sdk/commit/5eccd4c1ecdc393e8bb617a980a7345e405ebf0c))
|
|
914
|
+
- PROD-242 Adjust fps ([883c9ed](https://github.com/AuthMe01/web-client-sdk/commit/883c9ed917f6536114f5d12cdadffd705b834951))
|
|
915
|
+
- PROD-255 add idcard front hint text ([d8d2f24](https://github.com/AuthMe01/web-client-sdk/commit/d8d2f24a4e90ce459701836911661cd969cde0eb))
|
|
916
|
+
- PROD-255 add OCR api impl ([40098a8](https://github.com/AuthMe01/web-client-sdk/commit/40098a8e76b02d3a3e7f4ef642da8d1806818496))
|
|
917
|
+
- PROD-255 add spinner when ocrstart and fraudstart ([342777a](https://github.com/AuthMe01/web-client-sdk/commit/342777a250b46271e0d675fb920f7ecb1721d072))
|
|
918
|
+
- PROD-255 change video text and add not camera warning ([6b387cd](https://github.com/AuthMe01/web-client-sdk/commit/6b387cdc9be756e7f8a27f285cca7f1cc2e5f35a))
|
|
919
|
+
- PROD-255 get card type ([fcd5be9](https://github.com/AuthMe01/web-client-sdk/commit/fcd5be9810d51775ccd4a8d01385e7eb121b71fe))
|
|
920
|
+
- PROD-255 success lottie and ui, clear timeout ([91c97d2](https://github.com/AuthMe01/web-client-sdk/commit/91c97d29e43631800b5dabc1163baf34a7d9eea8))
|
|
921
|
+
- PROD-279 Add version info in view & docker build ([fbdca75](https://github.com/AuthMe01/web-client-sdk/commit/fbdca757f15dff38fdfff46980bd66a989fe4b9b))
|
|
922
|
+
- PROD-327 add border radius ([42b4c23](https://github.com/AuthMe01/web-client-sdk/commit/42b4c23c4b56e3c168fd93627cb482028953dd54))
|
|
923
|
+
- PROD-327 add error message ([6ef47d9](https://github.com/AuthMe01/web-client-sdk/commit/6ef47d9daa633fb8c42e2c01369c032ac7af3147))
|
|
924
|
+
- PROD-327 add ocr confirm image flow ([21e2ef1](https://github.com/AuthMe01/web-client-sdk/commit/21e2ef167452df46c8f85c426fe09c5e3899d50d))
|
|
925
|
+
- PROD-327 add retry ocr panel ([1cccd1d](https://github.com/AuthMe01/web-client-sdk/commit/1cccd1d69aadf897da88e088e4af4f427210d235))
|
|
926
|
+
- PROD-327 change lottie second ([5eff08e](https://github.com/AuthMe01/web-client-sdk/commit/5eff08edcda22a0bd8dd71b73370c8f08009a250))
|
|
927
|
+
- PROD-327 change process and add config cancel ([f8077d1](https://github.com/AuthMe01/web-client-sdk/commit/f8077d1760657c54c5c99e051b9541303e6e88dd))
|
|
928
|
+
- PROD-327 change spinner position ([11d06c3](https://github.com/AuthMe01/web-client-sdk/commit/11d06c3538e7e9cf3d1179859fdbf6fcb39bb638))
|
|
929
|
+
- PROD-327 remove alert(animationFrameId); ([47f8580](https://github.com/AuthMe01/web-client-sdk/commit/47f8580ae47e490075ec94eb235dfe8383df8394))
|
|
930
|
+
- PROD-327 replace liveness ui ([9c5934a](https://github.com/AuthMe01/web-client-sdk/commit/9c5934ad743a0ce5f8fccdabec323c1b3e93f79c))
|
|
931
|
+
- PROD-327 replace ocr ui ([73d4759](https://github.com/AuthMe01/web-client-sdk/commit/73d4759012bdfd0cb0bed9bc338f36af8ec27536))
|
|
932
|
+
- PROD-327 replace top title panel ([ecad5f0](https://github.com/AuthMe01/web-client-sdk/commit/ecad5f029266040639b14e2efa9797a8373a3170))
|
|
933
|
+
- PROD-334 Add Network Error Retry ([1dafbfd](https://github.com/AuthMe01/web-client-sdk/commit/1dafbfd2d51024abed9611cda4b7bd04401ed7f1))
|
|
934
|
+
- PROD-375 add illustrate ([fd617d0](https://github.com/AuthMe01/web-client-sdk/commit/fd617d056ed52dfb05b5d464f7df8098fb7a0094))
|
|
935
|
+
- PROD-375 add popup panel ([77f4672](https://github.com/AuthMe01/web-client-sdk/commit/77f467240474190a276961a86fe48fb66d520b54))
|
|
936
|
+
- PROD-375 card confirm style, remove bootstrap ([645bfd7](https://github.com/AuthMe01/web-client-sdk/commit/645bfd7a828c7a9be9bc3b7dd77eff6208b7a49a))
|
|
937
|
+
- PROD-375 optimization ui ([dd31fb9](https://github.com/AuthMe01/web-client-sdk/commit/dd31fb97b352b9b328db5f80bcffb24db6bf03cf))
|
|
938
|
+
- PROD-375 replace lottie animate and refactor mask border ([39ce902](https://github.com/AuthMe01/web-client-sdk/commit/39ce90241c60bda0e65f648b8ed61b4c577ffae2))
|
|
939
|
+
- PROD-410 change default logo ([7626856](https://github.com/AuthMe01/web-client-sdk/commit/7626856664de79288bdbd2e32604f1aeb28acf6c))
|
|
940
|
+
- PROD-472 web sdk and header redesine ([e561c9f](https://github.com/AuthMe01/web-client-sdk/commit/e561c9fff1b6901277e67e1b40f27855931b9064))
|
|
941
|
+
- PROD-571 add network listener ([39e2db3](https://github.com/AuthMe01/web-client-sdk/commit/39e2db352859070704122bd6672bcdcea5f3fd53))
|
|
942
|
+
- PROD-588 show SDK version ([cce6d67](https://github.com/AuthMe01/web-client-sdk/commit/cce6d6703cda5b86946e7ddb507320d6a820183b))
|
|
943
|
+
- PROD-595 Add eKYC impl ([6b5cf51](https://github.com/AuthMe01/web-client-sdk/commit/6b5cf5198a8f3039a52a1f114ff2089cb45b17b2))
|