scandit-react-native-datacapture-id 7.1.0 → 7.2.0-beta.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/THIRD_PARTY.txt +0 -49
- package/android/build.gradle +1 -1
- package/dist/id.js +60 -60
- package/dist/id.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/scandit-react-native-datacapture-id.podspec +1 -1
package/THIRD_PARTY.txt
CHANGED
|
@@ -236,55 +236,6 @@ includes components licensed under the following licenses:
|
|
|
236
236
|
SOFTWARE.
|
|
237
237
|
|
|
238
238
|
|
|
239
|
-
================================================================================
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
Copyright 1985, 1987, 1988, 1990, 1991, 1993-1996, 1998 The Open Group
|
|
243
|
-
|
|
244
|
-
Permission to use, copy, modify, distribute, and sell this software and its
|
|
245
|
-
documentation for any purpose is hereby granted without fee, provided that
|
|
246
|
-
the above copyright notice appear in all copies and that both that
|
|
247
|
-
copyright notice and this permission notice appear in supporting
|
|
248
|
-
documentation.
|
|
249
|
-
|
|
250
|
-
The above copyright notice and this permission notice shall be included in
|
|
251
|
-
all copies or substantial portions of the Software.
|
|
252
|
-
|
|
253
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
254
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
255
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
256
|
-
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
257
|
-
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
258
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
259
|
-
|
|
260
|
-
Except as contained in this notice, the name of The Open Group shall not be
|
|
261
|
-
used in advertising or otherwise to promote the sale, use or other dealings
|
|
262
|
-
in this Software without prior written authorization from The Open Group.
|
|
263
|
-
|
|
264
|
-
The X Window System is a Trademark of The Open Group.
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
|
|
268
|
-
|
|
269
|
-
All Rights Reserved
|
|
270
|
-
|
|
271
|
-
Permission to use, copy, modify, and distribute this software and its
|
|
272
|
-
documentation for any purpose and without fee is hereby granted,
|
|
273
|
-
provided that the above copyright notice appear in all copies and that
|
|
274
|
-
both that copyright notice and this permission notice appear in
|
|
275
|
-
supporting documentation, and that the name of Digital not be
|
|
276
|
-
used in advertising or publicity pertaining to distribution of the
|
|
277
|
-
software without specific, written prior permission.
|
|
278
|
-
|
|
279
|
-
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
|
|
280
|
-
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
|
|
281
|
-
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
|
|
282
|
-
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
283
|
-
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
|
284
|
-
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
|
285
|
-
SOFTWARE.
|
|
286
|
-
|
|
287
|
-
|
|
288
239
|
================================================================================
|
|
289
240
|
|
|
290
241
|
|
package/android/build.gradle
CHANGED
|
@@ -75,7 +75,7 @@ if (file( "${rootProject.projectDir}/build-test.gradle").exists()) {
|
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
dependencies {
|
|
78
|
-
def sdk_version = "7.
|
|
78
|
+
def sdk_version = "7.2.0-beta.1"
|
|
79
79
|
|
|
80
80
|
println("Version of the native sdk used in this build: ${safeExtGet("global_sdk_version", sdk_version)}")
|
|
81
81
|
api project(path: ":scandit-react-native-datacapture-core")
|
package/dist/id.js
CHANGED
|
@@ -396,24 +396,24 @@ class IdImages {
|
|
|
396
396
|
constructor() {
|
|
397
397
|
this.json = null;
|
|
398
398
|
}
|
|
399
|
-
get face() { var _a, _b, _c; return (_c = (_b = (_a = this.json) === null || _a ===
|
|
400
|
-
get frame() { var _a, _b, _c; return (_c = (_b = (_a = this.json) === null || _a ===
|
|
399
|
+
get face() { var _a, _b, _c; return (_c = (_b = (_a = this.json) === null || _a === undefined ? undefined : _a.front) === null || _b === undefined ? undefined : _b.face) !== null && _c !== undefined ? _c : null; }
|
|
400
|
+
get frame() { var _a, _b, _c; return (_c = (_b = (_a = this.json) === null || _a === undefined ? undefined : _a.front) === null || _b === undefined ? undefined : _b.frame) !== null && _c !== undefined ? _c : null; }
|
|
401
401
|
getFrame(side) {
|
|
402
402
|
var _a, _b, _c, _d, _e, _f;
|
|
403
403
|
switch (side) {
|
|
404
404
|
case IdSide.Front:
|
|
405
|
-
return (_c = (_b = (_a = this.json) === null || _a ===
|
|
405
|
+
return (_c = (_b = (_a = this.json) === null || _a === undefined ? undefined : _a.front) === null || _b === undefined ? undefined : _b.frame) !== null && _c !== undefined ? _c : null;
|
|
406
406
|
case IdSide.Back:
|
|
407
|
-
return (_f = (_e = (_d = this.json) === null || _d ===
|
|
407
|
+
return (_f = (_e = (_d = this.json) === null || _d === undefined ? undefined : _d.back) === null || _e === undefined ? undefined : _e.frame) !== null && _f !== undefined ? _f : null;
|
|
408
408
|
}
|
|
409
409
|
}
|
|
410
410
|
getCroppedDocument(side) {
|
|
411
411
|
var _a, _b, _c, _d, _e, _f;
|
|
412
412
|
switch (side) {
|
|
413
413
|
case IdSide.Front:
|
|
414
|
-
return (_c = (_b = (_a = this.json) === null || _a ===
|
|
414
|
+
return (_c = (_b = (_a = this.json) === null || _a === undefined ? undefined : _a.front) === null || _b === undefined ? undefined : _b.croppedDocument) !== null && _c !== undefined ? _c : null;
|
|
415
415
|
case IdSide.Back:
|
|
416
|
-
return (_f = (_e = (_d = this.json) === null || _d ===
|
|
416
|
+
return (_f = (_e = (_d = this.json) === null || _d === undefined ? undefined : _d.back) === null || _e === undefined ? undefined : _e.croppedDocument) !== null && _f !== undefined ? _f : null;
|
|
417
417
|
}
|
|
418
418
|
}
|
|
419
419
|
static fromJSON(json) {
|
|
@@ -563,7 +563,7 @@ class IdCaptureController extends BaseController {
|
|
|
563
563
|
return this._proxy.createContextForBarcodeVerification(JSON.stringify(context.toJSON()));
|
|
564
564
|
}
|
|
565
565
|
verifyCapturedIdAsync(capturedId) {
|
|
566
|
-
return __awaiter(this,
|
|
566
|
+
return __awaiter(this, undefined, undefined, function* () {
|
|
567
567
|
const result = yield this._proxy.verifyCapturedIdAsync(capturedId);
|
|
568
568
|
if (result == null) {
|
|
569
569
|
return null;
|
|
@@ -1087,10 +1087,10 @@ class DriverLicense extends DefaultSerializeable {
|
|
|
1087
1087
|
}
|
|
1088
1088
|
__decorate([
|
|
1089
1089
|
nameForSerialization('region')
|
|
1090
|
-
], DriverLicense.prototype, "_region",
|
|
1090
|
+
], DriverLicense.prototype, "_region", undefined);
|
|
1091
1091
|
__decorate([
|
|
1092
1092
|
nameForSerialization('documentType')
|
|
1093
|
-
], DriverLicense.prototype, "_documentType",
|
|
1093
|
+
], DriverLicense.prototype, "_documentType", undefined);
|
|
1094
1094
|
|
|
1095
1095
|
class HealthInsuranceCard extends DefaultSerializeable {
|
|
1096
1096
|
constructor(region) {
|
|
@@ -1125,10 +1125,10 @@ class HealthInsuranceCard extends DefaultSerializeable {
|
|
|
1125
1125
|
}
|
|
1126
1126
|
__decorate([
|
|
1127
1127
|
nameForSerialization('region')
|
|
1128
|
-
], HealthInsuranceCard.prototype, "_region",
|
|
1128
|
+
], HealthInsuranceCard.prototype, "_region", undefined);
|
|
1129
1129
|
__decorate([
|
|
1130
1130
|
nameForSerialization('documentType')
|
|
1131
|
-
], HealthInsuranceCard.prototype, "_documentType",
|
|
1131
|
+
], HealthInsuranceCard.prototype, "_documentType", undefined);
|
|
1132
1132
|
|
|
1133
1133
|
class IdCard extends DefaultSerializeable {
|
|
1134
1134
|
constructor(region) {
|
|
@@ -1163,10 +1163,10 @@ class IdCard extends DefaultSerializeable {
|
|
|
1163
1163
|
}
|
|
1164
1164
|
__decorate([
|
|
1165
1165
|
nameForSerialization('region')
|
|
1166
|
-
], IdCard.prototype, "_region",
|
|
1166
|
+
], IdCard.prototype, "_region", undefined);
|
|
1167
1167
|
__decorate([
|
|
1168
1168
|
nameForSerialization('documentType')
|
|
1169
|
-
], IdCard.prototype, "_documentType",
|
|
1169
|
+
], IdCard.prototype, "_documentType", undefined);
|
|
1170
1170
|
|
|
1171
1171
|
class Passport extends DefaultSerializeable {
|
|
1172
1172
|
constructor(region) {
|
|
@@ -1201,10 +1201,10 @@ class Passport extends DefaultSerializeable {
|
|
|
1201
1201
|
}
|
|
1202
1202
|
__decorate([
|
|
1203
1203
|
nameForSerialization('region')
|
|
1204
|
-
], Passport.prototype, "_region",
|
|
1204
|
+
], Passport.prototype, "_region", undefined);
|
|
1205
1205
|
__decorate([
|
|
1206
1206
|
nameForSerialization('documentType')
|
|
1207
|
-
], Passport.prototype, "_documentType",
|
|
1207
|
+
], Passport.prototype, "_documentType", undefined);
|
|
1208
1208
|
|
|
1209
1209
|
class RegionSpecific extends DefaultSerializeable {
|
|
1210
1210
|
constructor(subtype) {
|
|
@@ -1243,13 +1243,13 @@ class RegionSpecific extends DefaultSerializeable {
|
|
|
1243
1243
|
}
|
|
1244
1244
|
__decorate([
|
|
1245
1245
|
nameForSerialization('region')
|
|
1246
|
-
], RegionSpecific.prototype, "_region",
|
|
1246
|
+
], RegionSpecific.prototype, "_region", undefined);
|
|
1247
1247
|
__decorate([
|
|
1248
1248
|
nameForSerialization('documentSubtype')
|
|
1249
|
-
], RegionSpecific.prototype, "_documentSubtype",
|
|
1249
|
+
], RegionSpecific.prototype, "_documentSubtype", undefined);
|
|
1250
1250
|
__decorate([
|
|
1251
1251
|
nameForSerialization('documentType')
|
|
1252
|
-
], RegionSpecific.prototype, "_documentType",
|
|
1252
|
+
], RegionSpecific.prototype, "_documentType", undefined);
|
|
1253
1253
|
|
|
1254
1254
|
class ResidencePermit extends DefaultSerializeable {
|
|
1255
1255
|
constructor(region) {
|
|
@@ -1284,10 +1284,10 @@ class ResidencePermit extends DefaultSerializeable {
|
|
|
1284
1284
|
}
|
|
1285
1285
|
__decorate([
|
|
1286
1286
|
nameForSerialization('region')
|
|
1287
|
-
], ResidencePermit.prototype, "_region",
|
|
1287
|
+
], ResidencePermit.prototype, "_region", undefined);
|
|
1288
1288
|
__decorate([
|
|
1289
1289
|
nameForSerialization('documentType')
|
|
1290
|
-
], ResidencePermit.prototype, "_documentType",
|
|
1290
|
+
], ResidencePermit.prototype, "_documentType", undefined);
|
|
1291
1291
|
|
|
1292
1292
|
class VisaIcao extends DefaultSerializeable {
|
|
1293
1293
|
constructor(region) {
|
|
@@ -1322,10 +1322,10 @@ class VisaIcao extends DefaultSerializeable {
|
|
|
1322
1322
|
}
|
|
1323
1323
|
__decorate([
|
|
1324
1324
|
nameForSerialization('region')
|
|
1325
|
-
], VisaIcao.prototype, "_region",
|
|
1325
|
+
], VisaIcao.prototype, "_region", undefined);
|
|
1326
1326
|
__decorate([
|
|
1327
1327
|
nameForSerialization('documentType')
|
|
1328
|
-
], VisaIcao.prototype, "_documentType",
|
|
1328
|
+
], VisaIcao.prototype, "_documentType", undefined);
|
|
1329
1329
|
|
|
1330
1330
|
class CapturedId {
|
|
1331
1331
|
constructor() {
|
|
@@ -1375,31 +1375,31 @@ class CapturedId {
|
|
|
1375
1375
|
}
|
|
1376
1376
|
isIdCard() {
|
|
1377
1377
|
var _a;
|
|
1378
|
-
return ((_a = this.document) === null || _a ===
|
|
1378
|
+
return ((_a = this.document) === null || _a === undefined ? undefined : _a.isIdCard) === true;
|
|
1379
1379
|
}
|
|
1380
1380
|
isDriverLicense() {
|
|
1381
1381
|
var _a;
|
|
1382
|
-
return ((_a = this.document) === null || _a ===
|
|
1382
|
+
return ((_a = this.document) === null || _a === undefined ? undefined : _a.isDriverLicense) === true;
|
|
1383
1383
|
}
|
|
1384
1384
|
isPassport() {
|
|
1385
1385
|
var _a;
|
|
1386
|
-
return ((_a = this.document) === null || _a ===
|
|
1386
|
+
return ((_a = this.document) === null || _a === undefined ? undefined : _a.isPassport) === true;
|
|
1387
1387
|
}
|
|
1388
1388
|
isVisaIcao() {
|
|
1389
1389
|
var _a;
|
|
1390
|
-
return ((_a = this.document) === null || _a ===
|
|
1390
|
+
return ((_a = this.document) === null || _a === undefined ? undefined : _a.isVisaIcao) === true;
|
|
1391
1391
|
}
|
|
1392
1392
|
isRegionSpecific(subtype) {
|
|
1393
1393
|
var _a;
|
|
1394
|
-
return ((_a = this.document) === null || _a ===
|
|
1394
|
+
return ((_a = this.document) === null || _a === undefined ? undefined : _a.isRegionSpecific) === true && this.document.subtype === subtype;
|
|
1395
1395
|
}
|
|
1396
1396
|
isResidencePermit() {
|
|
1397
1397
|
var _a;
|
|
1398
|
-
return ((_a = this.document) === null || _a ===
|
|
1398
|
+
return ((_a = this.document) === null || _a === undefined ? undefined : _a.isResidencePermit) === true;
|
|
1399
1399
|
}
|
|
1400
1400
|
isHealthInsuranceCard() {
|
|
1401
1401
|
var _a;
|
|
1402
|
-
return ((_a = this.document) === null || _a ===
|
|
1402
|
+
return ((_a = this.document) === null || _a === undefined ? undefined : _a.isHealthInsuranceCard) === true;
|
|
1403
1403
|
}
|
|
1404
1404
|
get images() {
|
|
1405
1405
|
return this._images;
|
|
@@ -1546,7 +1546,7 @@ class IdCaptureFeedback extends DefaultSerializeable {
|
|
|
1546
1546
|
}
|
|
1547
1547
|
updateFeedback() {
|
|
1548
1548
|
var _a;
|
|
1549
|
-
(_a = this.controller) === null || _a ===
|
|
1549
|
+
(_a = this.controller) === null || _a === undefined ? undefined : _a.updateFeedback(this);
|
|
1550
1550
|
}
|
|
1551
1551
|
constructor(idCaptured, idRejected) {
|
|
1552
1552
|
super();
|
|
@@ -1559,13 +1559,13 @@ class IdCaptureFeedback extends DefaultSerializeable {
|
|
|
1559
1559
|
}
|
|
1560
1560
|
__decorate([
|
|
1561
1561
|
ignoreFromSerialization
|
|
1562
|
-
], IdCaptureFeedback.prototype, "controller",
|
|
1562
|
+
], IdCaptureFeedback.prototype, "controller", undefined);
|
|
1563
1563
|
__decorate([
|
|
1564
1564
|
nameForSerialization('idCaptured')
|
|
1565
|
-
], IdCaptureFeedback.prototype, "_idCaptured",
|
|
1565
|
+
], IdCaptureFeedback.prototype, "_idCaptured", undefined);
|
|
1566
1566
|
__decorate([
|
|
1567
1567
|
nameForSerialization('idRejected')
|
|
1568
|
-
], IdCaptureFeedback.prototype, "_idRejected",
|
|
1568
|
+
], IdCaptureFeedback.prototype, "_idRejected", undefined);
|
|
1569
1569
|
__decorate([
|
|
1570
1570
|
ignoreFromSerialization
|
|
1571
1571
|
], IdCaptureFeedback, "idDefaults", null);
|
|
@@ -1649,25 +1649,25 @@ class IdCapture extends DefaultSerializeable {
|
|
|
1649
1649
|
}
|
|
1650
1650
|
__decorate([
|
|
1651
1651
|
ignoreFromSerialization
|
|
1652
|
-
], IdCapture.prototype, "_isEnabled",
|
|
1652
|
+
], IdCapture.prototype, "_isEnabled", undefined);
|
|
1653
1653
|
__decorate([
|
|
1654
1654
|
nameForSerialization('feedback')
|
|
1655
|
-
], IdCapture.prototype, "_feedback",
|
|
1655
|
+
], IdCapture.prototype, "_feedback", undefined);
|
|
1656
1656
|
__decorate([
|
|
1657
1657
|
ignoreFromSerialization
|
|
1658
|
-
], IdCapture.prototype, "privateContext",
|
|
1658
|
+
], IdCapture.prototype, "privateContext", undefined);
|
|
1659
1659
|
__decorate([
|
|
1660
1660
|
ignoreFromSerialization
|
|
1661
|
-
], IdCapture.prototype, "listeners",
|
|
1661
|
+
], IdCapture.prototype, "listeners", undefined);
|
|
1662
1662
|
__decorate([
|
|
1663
1663
|
ignoreFromSerialization
|
|
1664
|
-
], IdCapture.prototype, "controller",
|
|
1664
|
+
], IdCapture.prototype, "controller", undefined);
|
|
1665
1665
|
__decorate([
|
|
1666
1666
|
ignoreFromSerialization
|
|
1667
|
-
], IdCapture.prototype, "listenerController",
|
|
1667
|
+
], IdCapture.prototype, "listenerController", undefined);
|
|
1668
1668
|
__decorate([
|
|
1669
1669
|
ignoreFromSerialization
|
|
1670
|
-
], IdCapture.prototype, "isInListenerCallback",
|
|
1670
|
+
], IdCapture.prototype, "isInListenerCallback", undefined);
|
|
1671
1671
|
__decorate([
|
|
1672
1672
|
ignoreFromSerialization
|
|
1673
1673
|
], IdCapture, "idCaptureDefaults", null);
|
|
@@ -1784,37 +1784,37 @@ class IdCaptureOverlay extends DefaultSerializeable {
|
|
|
1784
1784
|
}
|
|
1785
1785
|
__decorate([
|
|
1786
1786
|
ignoreFromSerialization
|
|
1787
|
-
], IdCaptureOverlay.prototype, "idCapture",
|
|
1787
|
+
], IdCaptureOverlay.prototype, "idCapture", undefined);
|
|
1788
1788
|
__decorate([
|
|
1789
1789
|
ignoreFromSerialization
|
|
1790
|
-
], IdCaptureOverlay.prototype, "view",
|
|
1790
|
+
], IdCaptureOverlay.prototype, "view", undefined);
|
|
1791
1791
|
__decorate([
|
|
1792
1792
|
nameForSerialization('idLayoutStyle')
|
|
1793
|
-
], IdCaptureOverlay.prototype, "_idLayoutStyle",
|
|
1793
|
+
], IdCaptureOverlay.prototype, "_idLayoutStyle", undefined);
|
|
1794
1794
|
__decorate([
|
|
1795
1795
|
nameForSerialization('idLayoutLineStyle')
|
|
1796
|
-
], IdCaptureOverlay.prototype, "_idLayoutLineStyle",
|
|
1796
|
+
], IdCaptureOverlay.prototype, "_idLayoutLineStyle", undefined);
|
|
1797
1797
|
__decorate([
|
|
1798
1798
|
nameForSerialization('textHintPosition')
|
|
1799
|
-
], IdCaptureOverlay.prototype, "_textHintPosition",
|
|
1799
|
+
], IdCaptureOverlay.prototype, "_textHintPosition", undefined);
|
|
1800
1800
|
__decorate([
|
|
1801
1801
|
nameForSerialization('showTextHints')
|
|
1802
|
-
], IdCaptureOverlay.prototype, "_showTextHints",
|
|
1802
|
+
], IdCaptureOverlay.prototype, "_showTextHints", undefined);
|
|
1803
1803
|
__decorate([
|
|
1804
1804
|
nameForSerialization('capturedBrush')
|
|
1805
|
-
], IdCaptureOverlay.prototype, "_capturedBrush",
|
|
1805
|
+
], IdCaptureOverlay.prototype, "_capturedBrush", undefined);
|
|
1806
1806
|
__decorate([
|
|
1807
1807
|
nameForSerialization('localizedBrush')
|
|
1808
|
-
], IdCaptureOverlay.prototype, "_localizedBrush",
|
|
1808
|
+
], IdCaptureOverlay.prototype, "_localizedBrush", undefined);
|
|
1809
1809
|
__decorate([
|
|
1810
1810
|
nameForSerialization('rejectedBrush')
|
|
1811
|
-
], IdCaptureOverlay.prototype, "_rejectedBrush",
|
|
1811
|
+
], IdCaptureOverlay.prototype, "_rejectedBrush", undefined);
|
|
1812
1812
|
__decorate([
|
|
1813
1813
|
nameForSerialization('frontSideTextHint')
|
|
1814
|
-
], IdCaptureOverlay.prototype, "_frontSideTextHint",
|
|
1814
|
+
], IdCaptureOverlay.prototype, "_frontSideTextHint", undefined);
|
|
1815
1815
|
__decorate([
|
|
1816
1816
|
nameForSerialization('backSideTextHint')
|
|
1817
|
-
], IdCaptureOverlay.prototype, "_backSideTextHint",
|
|
1817
|
+
], IdCaptureOverlay.prototype, "_backSideTextHint", undefined);
|
|
1818
1818
|
__decorate([
|
|
1819
1819
|
ignoreFromSerialization
|
|
1820
1820
|
], IdCaptureOverlay, "idCaptureDefaults", null);
|
|
@@ -1844,16 +1844,16 @@ class SingleSideScanner extends DefaultSerializeable {
|
|
|
1844
1844
|
}
|
|
1845
1845
|
__decorate([
|
|
1846
1846
|
nameForSerialization('isFull')
|
|
1847
|
-
], SingleSideScanner.prototype, "_isFull",
|
|
1847
|
+
], SingleSideScanner.prototype, "_isFull", undefined);
|
|
1848
1848
|
__decorate([
|
|
1849
1849
|
ignoreFromSerialization
|
|
1850
|
-
], SingleSideScanner.prototype, "_barcode",
|
|
1850
|
+
], SingleSideScanner.prototype, "_barcode", undefined);
|
|
1851
1851
|
__decorate([
|
|
1852
1852
|
ignoreFromSerialization
|
|
1853
|
-
], SingleSideScanner.prototype, "_machineReadableZone",
|
|
1853
|
+
], SingleSideScanner.prototype, "_machineReadableZone", undefined);
|
|
1854
1854
|
__decorate([
|
|
1855
1855
|
ignoreFromSerialization
|
|
1856
|
-
], SingleSideScanner.prototype, "_visualInspectionZone",
|
|
1856
|
+
], SingleSideScanner.prototype, "_visualInspectionZone", undefined);
|
|
1857
1857
|
|
|
1858
1858
|
class FullDocumentScanner extends DefaultSerializeable {
|
|
1859
1859
|
constructor() {
|
|
@@ -1871,16 +1871,16 @@ class FullDocumentScanner extends DefaultSerializeable {
|
|
|
1871
1871
|
}
|
|
1872
1872
|
__decorate([
|
|
1873
1873
|
nameForSerialization('isFull')
|
|
1874
|
-
], FullDocumentScanner.prototype, "_isFull",
|
|
1874
|
+
], FullDocumentScanner.prototype, "_isFull", undefined);
|
|
1875
1875
|
__decorate([
|
|
1876
1876
|
ignoreFromSerialization
|
|
1877
|
-
], FullDocumentScanner.prototype, "_barcode",
|
|
1877
|
+
], FullDocumentScanner.prototype, "_barcode", undefined);
|
|
1878
1878
|
__decorate([
|
|
1879
1879
|
ignoreFromSerialization
|
|
1880
|
-
], FullDocumentScanner.prototype, "_machineReadableZone",
|
|
1880
|
+
], FullDocumentScanner.prototype, "_machineReadableZone", undefined);
|
|
1881
1881
|
__decorate([
|
|
1882
1882
|
ignoreFromSerialization
|
|
1883
|
-
], FullDocumentScanner.prototype, "_visualInspectionZone",
|
|
1883
|
+
], FullDocumentScanner.prototype, "_visualInspectionZone", undefined);
|
|
1884
1884
|
|
|
1885
1885
|
class IdCaptureSettings extends DefaultSerializeable {
|
|
1886
1886
|
constructor() {
|
|
@@ -1953,6 +1953,6 @@ class AamvaBarcodeVerifier {
|
|
|
1953
1953
|
}
|
|
1954
1954
|
__decorate([
|
|
1955
1955
|
ignoreFromSerialization
|
|
1956
|
-
], AamvaBarcodeVerifier.prototype, "controller",
|
|
1956
|
+
], AamvaBarcodeVerifier.prototype, "controller", undefined);
|
|
1957
1957
|
|
|
1958
1958
|
export { AamvaBarcodeVerificationResult, AamvaBarcodeVerificationStatus, AamvaBarcodeVerifier, BarcodeResult, CapturedId, CapturedSides, CommonCapturedIdFields, DateResult, DriverLicense, FullDocumentScanner, HealthInsuranceCard, IdAnonymizationMode, IdCapture, IdCaptureController, IdCaptureDocumentType, IdCaptureFeedback, IdCaptureListenerController, IdCaptureListenerEvents, IdCaptureOverlay, IdCaptureRegion, IdCaptureSettings, IdCard, IdImageType, IdImages, IdLayoutLineStyle, IdLayoutStyle, IdSide, MRZResult, Passport, ProfessionalDrivingPermit, RegionSpecific, RegionSpecificSubtype, RejectionReason, ResidencePermit, SingleSideScanner, TextHintPosition, VIZResult, VehicleRestriction, VisaIcao, getIdDefaults, loadIdDefaults, parseIdDefaults };
|