@regulaforensics/ionic-native-document-reader 6.9.1 → 7.1.0
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/README.md +10 -9
- package/example/README.md +8 -6
- package/example/config.xml +5 -8
- package/example/package.json +14 -23
- package/example/src/app/home/home.module.ts +2 -4
- package/example/src/app/home/home.page.ts +82 -159
- package/index.d.ts +324 -342
- package/index.js +250 -96
- package/ngx/index.d.ts +324 -342
- package/ngx/index.js +254 -100
- package/package.json +1 -1
- package/reactExample/.browserslistrc +6 -0
- package/reactExample/.eslintrc.js +17 -0
- package/reactExample/README.md +9 -6
- package/reactExample/android/app/build.gradle +3 -0
- package/reactExample/android/app/capacitor.build.gradle +22 -0
- package/reactExample/android/app/src/main/AndroidManifest.xml +4 -7
- package/reactExample/android/app/src/main/assets/Regula/.gitkeep +0 -0
- package/reactExample/android/app/src/main/res/values/styles.xml +2 -2
- package/reactExample/android/build.gradle +9 -5
- package/reactExample/android/capacitor.settings.gradle +15 -0
- package/reactExample/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/reactExample/android/gradle/wrapper/gradle-wrapper.properties +2 -1
- package/reactExample/android/gradle.properties +0 -2
- package/reactExample/android/gradlew +164 -105
- package/reactExample/android/gradlew.bat +92 -89
- package/reactExample/android/variables.gradle +14 -12
- package/reactExample/capacitor.config.ts +4 -2
- package/reactExample/cypress/e2e/test.cy.ts +6 -0
- package/reactExample/cypress/fixtures/example.json +5 -0
- package/reactExample/cypress/support/commands.ts +37 -0
- package/reactExample/cypress/support/e2e.ts +20 -0
- package/reactExample/cypress.config.ts +10 -0
- package/reactExample/index.html +116 -0
- package/reactExample/ionic.config.json +6 -6
- package/reactExample/ios/App/App/App.entitlements +0 -1
- package/reactExample/ios/App/App/AppDelegate.swift +0 -11
- package/reactExample/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json +6 -108
- package/reactExample/ios/App/App/Info.plist +4 -4
- package/reactExample/ios/App/App.xcodeproj/project.pbxproj +14 -22
- package/reactExample/ios/App/Podfile +7 -3
- package/reactExample/package.json +58 -82
- package/reactExample/public/assets/.gitkeep +0 -0
- package/reactExample/src/components/ExploreContainer.css +24 -0
- package/reactExample/src/components/ExploreContainer.tsx +14 -0
- package/reactExample/src/main.tsx +11 -0
- package/reactExample/src/pages/Home.tsx +91 -162
- package/reactExample/src/theme/variables.css +6 -0
- package/reactExample/src/vite-env.d.ts +1 -0
- package/reactExample/tsconfig.json +10 -16
- package/reactExample/tsconfig.node.json +9 -0
- package/reactExample/vite.config.ts +16 -0
- package/reactExample/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png +0 -0
- package/reactExample/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png +0 -0
- package/reactExample/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png +0 -0
- package/reactExample/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png +0 -0
- package/reactExample/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png +0 -0
- package/reactExample/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png +0 -0
- package/reactExample/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png +0 -0
- package/reactExample/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png +0 -0
- package/reactExample/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png +0 -0
- package/reactExample/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png +0 -0
- package/reactExample/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png +0 -0
- package/reactExample/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png +0 -0
- package/reactExample/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png +0 -0
- package/reactExample/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png +0 -0
- package/reactExample/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png +0 -0
- package/reactExample/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png +0 -0
- package/reactExample/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png +0 -0
- package/reactExample/ios/App/App/capacitor.config.json +0 -6
- package/reactExample/ios/App/App/config.xml +0 -19
- package/reactExample/ios/App/App.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- package/reactExample/public/assets/icon/icon.png +0 -0
- package/reactExample/public/assets/shapes.svg +0 -1
- package/reactExample/public/index.html +0 -114
- package/reactExample/src/assets/img/id.png +0 -0
- package/reactExample/src/assets/img/portrait.png +0 -0
- package/reactExample/src/index.tsx +0 -22
- package/reactExample/src/react-app-env.d.ts +0 -1
- package/reactExample/src/reportWebVitals.ts +0 -15
- package/reactExample/src/service-worker.ts +0 -80
- package/reactExample/src/serviceWorkerRegistration.ts +0 -142
- /package/reactExample/public/{assets/icon/favicon.png → favicon.png} +0 -0
package/index.d.ts
CHANGED
|
@@ -23,13 +23,6 @@ export declare class Rect {
|
|
|
23
23
|
right?: number;
|
|
24
24
|
static fromJson(jsonObject?: any): Rect | undefined;
|
|
25
25
|
}
|
|
26
|
-
export declare class DocReaderFieldRect {
|
|
27
|
-
bottom?: number;
|
|
28
|
-
top?: number;
|
|
29
|
-
left?: number;
|
|
30
|
-
right?: number;
|
|
31
|
-
static fromJson(jsonObject?: any): DocReaderFieldRect | undefined;
|
|
32
|
-
}
|
|
33
26
|
export declare class DocumentReaderGraphicField {
|
|
34
27
|
sourceType?: number;
|
|
35
28
|
fieldType?: number;
|
|
@@ -39,7 +32,7 @@ export declare class DocumentReaderGraphicField {
|
|
|
39
32
|
fieldName?: string;
|
|
40
33
|
lightName?: string;
|
|
41
34
|
value?: string;
|
|
42
|
-
fieldRect?:
|
|
35
|
+
fieldRect?: Rect;
|
|
43
36
|
static fromJson(jsonObject?: any): DocumentReaderGraphicField | undefined;
|
|
44
37
|
}
|
|
45
38
|
export declare class DocumentReaderGraphicResult {
|
|
@@ -49,12 +42,10 @@ export declare class DocumentReaderGraphicResult {
|
|
|
49
42
|
export declare class DocumentReaderValue {
|
|
50
43
|
pageIndex?: number;
|
|
51
44
|
sourceType?: number;
|
|
52
|
-
validity?: number;
|
|
53
45
|
probability?: number;
|
|
54
46
|
value?: string;
|
|
55
47
|
originalValue?: string;
|
|
56
48
|
boundRect?: Rect;
|
|
57
|
-
comparison?: Record<number, number>;
|
|
58
49
|
originalSymbols?: DocumentReaderSymbol[];
|
|
59
50
|
rfidOrigin?: DocumentReaderRfidOrigin;
|
|
60
51
|
static fromJson(jsonObject?: any): DocumentReaderValue | undefined;
|
|
@@ -110,6 +101,7 @@ export declare class ImageQuality {
|
|
|
110
101
|
featureType?: number;
|
|
111
102
|
result?: number;
|
|
112
103
|
type?: number;
|
|
104
|
+
boundRects?: Rect[];
|
|
113
105
|
static fromJson(jsonObject?: any): ImageQuality | undefined;
|
|
114
106
|
}
|
|
115
107
|
export declare class ImageQualityGroup {
|
|
@@ -166,6 +158,7 @@ export declare class SecurityObjectCertificates {
|
|
|
166
158
|
export declare class File {
|
|
167
159
|
readingTime?: number;
|
|
168
160
|
type?: number;
|
|
161
|
+
typeName?: string;
|
|
169
162
|
pAStatus?: number;
|
|
170
163
|
readingStatus?: number;
|
|
171
164
|
fileID?: string;
|
|
@@ -352,6 +345,14 @@ export declare class PKDCertificate {
|
|
|
352
345
|
privateKey?: string;
|
|
353
346
|
static fromJson(jsonObject?: any): PKDCertificate | undefined;
|
|
354
347
|
}
|
|
348
|
+
export declare class TccParams {
|
|
349
|
+
serviceUrlTA?: string;
|
|
350
|
+
serviceUrlPA?: string;
|
|
351
|
+
pfxCertUrl?: string;
|
|
352
|
+
pfxPassPhrase?: string;
|
|
353
|
+
pfxCert?: string;
|
|
354
|
+
static fromJson(jsonObject?: any): TccParams | undefined;
|
|
355
|
+
}
|
|
355
356
|
export declare class ImageInputParam {
|
|
356
357
|
width?: number;
|
|
357
358
|
height?: number;
|
|
@@ -497,16 +498,42 @@ export declare class Search {
|
|
|
497
498
|
groupIds?: number[];
|
|
498
499
|
static fromJson(jsonObject?: any): Search | undefined;
|
|
499
500
|
}
|
|
501
|
+
export declare class AuthenticityParams {
|
|
502
|
+
useLivenessCheck?: boolean;
|
|
503
|
+
livenessParams?: LivenessParams;
|
|
504
|
+
checkUVLuminiscence?: boolean;
|
|
505
|
+
checkIRB900?: boolean;
|
|
506
|
+
checkImagePatterns?: boolean;
|
|
507
|
+
checkFibers?: boolean;
|
|
508
|
+
checkExtMRZ?: boolean;
|
|
509
|
+
checkExtOCR?: boolean;
|
|
510
|
+
checkAxial?: boolean;
|
|
511
|
+
checkBarcodeFormat?: boolean;
|
|
512
|
+
checkIRVisibility?: boolean;
|
|
513
|
+
checkIPI?: boolean;
|
|
514
|
+
checkPhotoEmbedding?: boolean;
|
|
515
|
+
checkPhotoComparison?: boolean;
|
|
516
|
+
checkLetterScreen?: boolean;
|
|
517
|
+
static fromJson(jsonObject?: any): AuthenticityParams | undefined;
|
|
518
|
+
}
|
|
519
|
+
export declare class LivenessParams {
|
|
520
|
+
checkOVI?: boolean;
|
|
521
|
+
checkMLI?: boolean;
|
|
522
|
+
checkHolo?: boolean;
|
|
523
|
+
checkED?: boolean;
|
|
524
|
+
static fromJson(jsonObject?: any): LivenessParams | undefined;
|
|
525
|
+
}
|
|
500
526
|
export declare class ImageQA {
|
|
501
527
|
dpiThreshold?: number;
|
|
502
528
|
angleThreshold?: number;
|
|
503
529
|
focusCheck?: boolean;
|
|
504
530
|
glaresCheck?: boolean;
|
|
505
531
|
colornessCheck?: boolean;
|
|
506
|
-
|
|
532
|
+
screenCapture?: boolean;
|
|
533
|
+
documentPositionIndent?: number;
|
|
507
534
|
expectedPass?: number[];
|
|
508
535
|
glaresCheckParams?: GlaresCheckParams;
|
|
509
|
-
|
|
536
|
+
brightnessThreshold?: number;
|
|
510
537
|
static fromJson(jsonObject?: any): ImageQA | undefined;
|
|
511
538
|
}
|
|
512
539
|
export declare class GlaresCheckParams {
|
|
@@ -526,6 +553,15 @@ export declare class OnlineProcessingConfig {
|
|
|
526
553
|
imageCompressionQuality?: number;
|
|
527
554
|
static fromJson(jsonObject?: any): OnlineProcessingConfig | undefined;
|
|
528
555
|
}
|
|
556
|
+
export declare class DocReaderConfig {
|
|
557
|
+
license?: string;
|
|
558
|
+
customDb?: string;
|
|
559
|
+
databasePath?: string;
|
|
560
|
+
licenseUpdate?: boolean;
|
|
561
|
+
delayedNNLoad?: boolean;
|
|
562
|
+
blackList?: any;
|
|
563
|
+
static fromJson(jsonObject?: any): DocReaderConfig | undefined;
|
|
564
|
+
}
|
|
529
565
|
export declare class ScannerConfig {
|
|
530
566
|
scenario?: string;
|
|
531
567
|
livePortrait?: string;
|
|
@@ -536,25 +572,40 @@ export declare class ScannerConfig {
|
|
|
536
572
|
}
|
|
537
573
|
export declare class RecognizeConfig {
|
|
538
574
|
scenario?: string;
|
|
575
|
+
onlineProcessingConfig?: OnlineProcessingConfig;
|
|
576
|
+
oneShotIdentification?: boolean;
|
|
539
577
|
livePortrait?: string;
|
|
540
578
|
extPortrait?: string;
|
|
541
|
-
onlineProcessingConfig?: OnlineProcessingConfig;
|
|
542
579
|
image?: string;
|
|
543
|
-
|
|
580
|
+
data?: string;
|
|
544
581
|
images?: string[];
|
|
545
582
|
imageInputData?: ImageInputData[];
|
|
546
583
|
static fromJson(jsonObject?: any): RecognizeConfig | undefined;
|
|
547
584
|
}
|
|
585
|
+
export declare class License {
|
|
586
|
+
expiryDate?: string;
|
|
587
|
+
countryFilter?: string[];
|
|
588
|
+
isRfidAvailable?: boolean;
|
|
589
|
+
static fromJson(jsonObject?: any): License | undefined;
|
|
590
|
+
}
|
|
591
|
+
export declare class DocReaderVersion {
|
|
592
|
+
api?: string;
|
|
593
|
+
core?: string;
|
|
594
|
+
coreMode?: string;
|
|
595
|
+
database?: DocReaderDocumentsDatabase;
|
|
596
|
+
static fromJson(jsonObject?: any): DocReaderVersion | undefined;
|
|
597
|
+
}
|
|
598
|
+
export declare class TransactionInfo {
|
|
599
|
+
transactionId?: string;
|
|
600
|
+
tag?: string;
|
|
601
|
+
static fromJson(jsonObject?: any): TransactionInfo | undefined;
|
|
602
|
+
}
|
|
548
603
|
export declare class DocumentReaderResults {
|
|
549
|
-
videoCaptureSessionId?: string;
|
|
550
604
|
chipPage?: number;
|
|
551
|
-
irElapsedTime?: number;
|
|
552
605
|
processingFinishedStatus?: number;
|
|
553
606
|
elapsedTime?: number;
|
|
554
607
|
elapsedTimeRFID?: number;
|
|
555
608
|
morePagesAvailable?: number;
|
|
556
|
-
rfidResult?: number;
|
|
557
|
-
highResolution?: boolean;
|
|
558
609
|
graphicResult?: DocumentReaderGraphicResult;
|
|
559
610
|
textResult?: DocumentReaderTextResult;
|
|
560
611
|
documentPosition?: ElementPosition[];
|
|
@@ -562,14 +613,13 @@ export declare class DocumentReaderResults {
|
|
|
562
613
|
mrzPosition?: ElementPosition[];
|
|
563
614
|
imageQuality?: ImageQualityGroup[];
|
|
564
615
|
rawResult?: string;
|
|
565
|
-
documentReaderNotification?: DocumentReaderNotification;
|
|
566
616
|
rfidSessionData?: RFIDSessionData;
|
|
567
617
|
authenticityResult?: DocumentReaderAuthenticityResult;
|
|
568
618
|
barcodeResult?: DocumentReaderBarcodeResult;
|
|
569
|
-
ppmIn?: number;
|
|
570
619
|
documentType?: DocumentReaderDocumentType[];
|
|
571
620
|
status?: DocumentReaderResultsStatus;
|
|
572
621
|
vdsncData?: VDSNCData;
|
|
622
|
+
transactionInfo?: TransactionInfo;
|
|
573
623
|
static fromJson(jsonObject?: any): DocumentReaderResults | undefined;
|
|
574
624
|
}
|
|
575
625
|
export declare const FontStyle: {
|
|
@@ -601,6 +651,15 @@ export declare const eRPRM_Authenticity: {
|
|
|
601
651
|
LIVENESS: number;
|
|
602
652
|
OCR: number;
|
|
603
653
|
};
|
|
654
|
+
export declare const CustomizationColor: {
|
|
655
|
+
RFID_PROCESSING_SCREEN_BACKGROUND: string;
|
|
656
|
+
RFID_PROCESSING_SCREEN_HINT_LABEL_TEXT: string;
|
|
657
|
+
RFID_PROCESSING_SCREEN_HINT_LABEL_BACKGROUND: string;
|
|
658
|
+
RFID_PROCESSING_SCREEN_PROGRESS_LABEL_TEXT: string;
|
|
659
|
+
RFID_PROCESSING_SCREEN_PROGRESS_BAR: string;
|
|
660
|
+
RFID_PROCESSING_SCREEN_PROGRESS_BAR_BACKGROUND: string;
|
|
661
|
+
RFID_PROCESSING_SCREEN_RESULT_LABEL_TEXT: string;
|
|
662
|
+
};
|
|
604
663
|
export declare const eRFID_ErrorCodes: {
|
|
605
664
|
RFID_ERROR_NO_ERROR: number;
|
|
606
665
|
RFID_ERROR_ALREADY_DONE: number;
|
|
@@ -950,11 +1009,13 @@ export declare const eProcessGLCommands: {
|
|
|
950
1009
|
ePC_ProcMgr_ProcessImage: number;
|
|
951
1010
|
ePC_ProcMgr_StartNewDocument: number;
|
|
952
1011
|
ePC_ProcMgr_StartNewPage: number;
|
|
1012
|
+
ePC_ProcMgr_AddDataToPackage: number;
|
|
1013
|
+
ePC_ProcMgr_FinalizePackage: number;
|
|
1014
|
+
ePC_ProcMgr_CreateBackendTransaction: number;
|
|
953
1015
|
ePC_ProcMgr_Unload: number;
|
|
954
1016
|
ePC_ProcMgr_CheckDatabase: number;
|
|
955
1017
|
ePC_ProcMgr_ComparePortraits: number;
|
|
956
1018
|
ePC_RFID_SetTCCParams: number;
|
|
957
|
-
ePC_RFID_SetReprocessingParams: number;
|
|
958
1019
|
};
|
|
959
1020
|
export declare const PKDResourceType: {
|
|
960
1021
|
CERTIFICATE_PA: number;
|
|
@@ -1016,6 +1077,7 @@ export declare const ScenarioIdentifier: {
|
|
|
1016
1077
|
SCENARIO_MRZ_OR_BARCODE: string;
|
|
1017
1078
|
SCENARIO_MRZ_OR_LOCATE: string;
|
|
1018
1079
|
SCENARIO_MRZ_AND_LOCATE: string;
|
|
1080
|
+
SCENARIO_BARCODE_AND_LOCATE: string;
|
|
1019
1081
|
SCENARIO_MRZ_OR_OCR: string;
|
|
1020
1082
|
SCENARIO_MRZ_OR_BARCODE_OR_OCR: string;
|
|
1021
1083
|
SCENARIO_LOCATE_VISUAL_AND_MRZ_OR_OCR: string;
|
|
@@ -1026,7 +1088,6 @@ export declare const ScenarioIdentifier: {
|
|
|
1026
1088
|
SCENARIO_OCR_FREE: string;
|
|
1027
1089
|
SCENARIO_CREDIT_CARD: string;
|
|
1028
1090
|
SCENARIO_CAPTURE: string;
|
|
1029
|
-
SCENARIO_BARCODE_AND_LOCATE: string;
|
|
1030
1091
|
};
|
|
1031
1092
|
export declare const eRFID_AccessControl_ProcedureType: {
|
|
1032
1093
|
ACPT_UNDEFINED: number;
|
|
@@ -1151,6 +1212,7 @@ export declare const eCheckDiagnose: {
|
|
|
1151
1212
|
INCORRECT_TEXT_COLOR: number;
|
|
1152
1213
|
PHOTO_FALSE_LUMINISCENCE: number;
|
|
1153
1214
|
TOO_MUCH_SHIFT: number;
|
|
1215
|
+
CONTACT_CHIP_TYPE_MISMATCH: number;
|
|
1154
1216
|
FIBERS_NOT_FOUND: number;
|
|
1155
1217
|
TOO_MANY_OBJECTS: number;
|
|
1156
1218
|
SPECKS_IN_UV: number;
|
|
@@ -1249,6 +1311,19 @@ export declare const TextProcessing: {
|
|
|
1249
1311
|
ocLowercase: number;
|
|
1250
1312
|
ocCapital: number;
|
|
1251
1313
|
};
|
|
1314
|
+
export declare const AnimationImage: {
|
|
1315
|
+
UNKNOWN: number;
|
|
1316
|
+
PASSPORT_SINGLE_PAGE: number;
|
|
1317
|
+
PASSPORT_TWO_PAGES: number;
|
|
1318
|
+
ID_FRONT: number;
|
|
1319
|
+
ID_FRONT_MRZ: number;
|
|
1320
|
+
ID_BACK: number;
|
|
1321
|
+
ID_BACK_MRZ: number;
|
|
1322
|
+
ID_BACK_BARCODE: number;
|
|
1323
|
+
ID_BACK_BARCODE_MRZ: number;
|
|
1324
|
+
BANK_CARD_FRONT: number;
|
|
1325
|
+
BANK_CARD_BACK: number;
|
|
1326
|
+
};
|
|
1252
1327
|
export declare const ProcessingFinishedStatus: {
|
|
1253
1328
|
NOT_READY: number;
|
|
1254
1329
|
READY: number;
|
|
@@ -1502,6 +1577,7 @@ export declare const eImageQualityCheckType: {
|
|
|
1502
1577
|
IQC_SCREEN_CAPTURE: number;
|
|
1503
1578
|
IQC_PORTRAIT: number;
|
|
1504
1579
|
IQC_HANDWRITTEN: number;
|
|
1580
|
+
IQC_BRIGHTNESS: number;
|
|
1505
1581
|
};
|
|
1506
1582
|
export declare const MRZFormat: {
|
|
1507
1583
|
FORMAT_1X30: string;
|
|
@@ -1580,6 +1656,12 @@ export declare const eRPRM_SecurityFeatureType: {
|
|
|
1580
1656
|
SECURITY_FEATURE_TYPE_LAS_INK: number;
|
|
1581
1657
|
SECURITY_FEATURE_TYPE_LIVENESS_MLI: number;
|
|
1582
1658
|
SECURITY_FEATURE_TYPE_LIVENESS_BARCODE_BACKGROUND: number;
|
|
1659
|
+
SECURITY_FEATURE_TYPE_PORTRAIT_COMPARISON_VS_BARCODE: number;
|
|
1660
|
+
SECURITY_FEATURE_TYPE_PORTRAIT_COMPARISON_RFID_VS_BARCODE: number;
|
|
1661
|
+
SECURITY_FEATURE_TYPE_PORTRAIT_COMPARISON_EXT_VS_BARCODE: number;
|
|
1662
|
+
SECURITY_FEATURE_TYPE_PORTRAIT_COMPARISON_BARCODE_VS_CAMERA: number;
|
|
1663
|
+
SECURITY_FEATURE_TYPE_CHECK_DIGITAL_SIGNATURE: number;
|
|
1664
|
+
SECURITY_FEATURE_TYPE_CONTACT_CHIP_CLASSIFICATION: number;
|
|
1583
1665
|
};
|
|
1584
1666
|
export declare const OnlineMode: {
|
|
1585
1667
|
MANUAL: number;
|
|
@@ -1821,6 +1903,14 @@ export declare const diDocType: {
|
|
|
1821
1903
|
dtInvoice: number;
|
|
1822
1904
|
dtPassengerLocatorForm: number;
|
|
1823
1905
|
};
|
|
1906
|
+
export declare const ButtonTag: {
|
|
1907
|
+
CLOSE: number;
|
|
1908
|
+
TORCH: number;
|
|
1909
|
+
CAPTURE: number;
|
|
1910
|
+
CHANGE_FRAME: number;
|
|
1911
|
+
SKIP: number;
|
|
1912
|
+
CAMERA_SWITCH: number;
|
|
1913
|
+
};
|
|
1824
1914
|
export declare const HoloAnimationType: {
|
|
1825
1915
|
DocumentHoloAnimationUnknown: number;
|
|
1826
1916
|
DocumentHoloAnimationTypeHorizontal: number;
|
|
@@ -1837,6 +1927,11 @@ export declare const eRequestCommand: {
|
|
|
1837
1927
|
eReqCmd_GetGuid: number;
|
|
1838
1928
|
eReqCmd_WltToImage: number;
|
|
1839
1929
|
};
|
|
1930
|
+
export declare const CustomizationFont: {
|
|
1931
|
+
RFID_PROCESSING_SCREEN_HINT_LABEL: string;
|
|
1932
|
+
RFID_PROCESSING_SCREEN_PROGRESS_LABEL: string;
|
|
1933
|
+
RFID_PROCESSING_SCREEN_RESULT_LABEL: string;
|
|
1934
|
+
};
|
|
1840
1935
|
export declare const ImageFormat: {
|
|
1841
1936
|
PNG: number;
|
|
1842
1937
|
JPG: number;
|
|
@@ -1853,6 +1948,7 @@ export declare const eGraphicFieldType: {
|
|
|
1853
1948
|
GF_GHOST_PORTRAIT: number;
|
|
1854
1949
|
GF_STAMP: number;
|
|
1855
1950
|
GF_PORTRAIT_OF_CHILD: number;
|
|
1951
|
+
GF_CONTACT_CHIP: number;
|
|
1856
1952
|
GF_OTHER: number;
|
|
1857
1953
|
GF_FINGER_LEFT_THUMB: number;
|
|
1858
1954
|
GF_FINGER_LEFT_INDEX: number;
|
|
@@ -1866,7 +1962,7 @@ export declare const eGraphicFieldType: {
|
|
|
1866
1962
|
GF_FINGER_RIGHT_LITTLE: number;
|
|
1867
1963
|
};
|
|
1868
1964
|
export declare const RegDeviceConfigType: {
|
|
1869
|
-
DEVICE_7310:
|
|
1965
|
+
DEVICE_7310: string;
|
|
1870
1966
|
};
|
|
1871
1967
|
export declare const CameraMode: {
|
|
1872
1968
|
AUTO: number;
|
|
@@ -2608,6 +2704,8 @@ export declare const eVisualFieldType: {
|
|
|
2608
2704
|
FT_ADDRESS_COUNTY_TYPE: number;
|
|
2609
2705
|
FT_ADDRESS_CITY_TYPE: number;
|
|
2610
2706
|
FT_ADDRESS_BUILDING_TYPE: number;
|
|
2707
|
+
FT_DATE_OF_RETIREMENT: number;
|
|
2708
|
+
FT_DOCUMENT_STATUS: number;
|
|
2611
2709
|
};
|
|
2612
2710
|
export declare const DocReaderOrientation: {
|
|
2613
2711
|
ALL: number;
|
|
@@ -2649,7 +2747,7 @@ export declare const LCID: {
|
|
|
2649
2747
|
BANK_CARD_NUMBER: number;
|
|
2650
2748
|
BANK_CARD_VALID_THRU: number;
|
|
2651
2749
|
BELARUSIAN: number;
|
|
2652
|
-
|
|
2750
|
+
BENGALI_BANGLADESH: number;
|
|
2653
2751
|
BULGARIAN: number;
|
|
2654
2752
|
CATALAN: number;
|
|
2655
2753
|
CHINESE_HONGKONG_SAR: number;
|
|
@@ -2715,6 +2813,7 @@ export declare const LCID: {
|
|
|
2715
2813
|
LITHUANIAN: number;
|
|
2716
2814
|
MALAY_MALAYSIA: number;
|
|
2717
2815
|
MALAY_BRUNEI_DARUSSALAM: number;
|
|
2816
|
+
ASSAMESE: number;
|
|
2718
2817
|
MARATHI: number;
|
|
2719
2818
|
MONGOLIAN_CYRILIC: number;
|
|
2720
2819
|
NORWEGIAN_BOKMAL: number;
|
|
@@ -2761,6 +2860,7 @@ export declare const LCID: {
|
|
|
2761
2860
|
SYRIAC: number;
|
|
2762
2861
|
TAMIL: number;
|
|
2763
2862
|
TATAR: number;
|
|
2863
|
+
BENGALI_INDIA: number;
|
|
2764
2864
|
TELUGU: number;
|
|
2765
2865
|
THAI_THAILAND: number;
|
|
2766
2866
|
TURKISH: number;
|
|
@@ -2773,6 +2873,17 @@ export declare const LCID: {
|
|
|
2773
2873
|
VIETNAMESE: number;
|
|
2774
2874
|
CTC_SIMPLIFIED: number;
|
|
2775
2875
|
CTC_TRADITIONAL: number;
|
|
2876
|
+
MALTESE: number;
|
|
2877
|
+
BURMESE: number;
|
|
2878
|
+
KHMER: number;
|
|
2879
|
+
KARAKALPAK_LATIN: number;
|
|
2880
|
+
MALAYALAM: number;
|
|
2881
|
+
NEPALI: number;
|
|
2882
|
+
ORIYA: number;
|
|
2883
|
+
URDU_DETECTION: number;
|
|
2884
|
+
};
|
|
2885
|
+
export declare const CustomizationImage: {
|
|
2886
|
+
RFID_PROCESSING_SCREEN_FAILURE_IMAGE: string;
|
|
2776
2887
|
};
|
|
2777
2888
|
export declare const DocReaderFrame: {
|
|
2778
2889
|
MAX: string;
|
|
@@ -2871,6 +2982,15 @@ export declare const Enum: {
|
|
|
2871
2982
|
LIVENESS: number;
|
|
2872
2983
|
OCR: number;
|
|
2873
2984
|
};
|
|
2985
|
+
CustomizationColor: {
|
|
2986
|
+
RFID_PROCESSING_SCREEN_BACKGROUND: string;
|
|
2987
|
+
RFID_PROCESSING_SCREEN_HINT_LABEL_TEXT: string;
|
|
2988
|
+
RFID_PROCESSING_SCREEN_HINT_LABEL_BACKGROUND: string;
|
|
2989
|
+
RFID_PROCESSING_SCREEN_PROGRESS_LABEL_TEXT: string;
|
|
2990
|
+
RFID_PROCESSING_SCREEN_PROGRESS_BAR: string;
|
|
2991
|
+
RFID_PROCESSING_SCREEN_PROGRESS_BAR_BACKGROUND: string;
|
|
2992
|
+
RFID_PROCESSING_SCREEN_RESULT_LABEL_TEXT: string;
|
|
2993
|
+
};
|
|
2874
2994
|
eRFID_ErrorCodes: {
|
|
2875
2995
|
RFID_ERROR_NO_ERROR: number;
|
|
2876
2996
|
RFID_ERROR_ALREADY_DONE: number;
|
|
@@ -3220,11 +3340,13 @@ export declare const Enum: {
|
|
|
3220
3340
|
ePC_ProcMgr_ProcessImage: number;
|
|
3221
3341
|
ePC_ProcMgr_StartNewDocument: number;
|
|
3222
3342
|
ePC_ProcMgr_StartNewPage: number;
|
|
3343
|
+
ePC_ProcMgr_AddDataToPackage: number;
|
|
3344
|
+
ePC_ProcMgr_FinalizePackage: number;
|
|
3345
|
+
ePC_ProcMgr_CreateBackendTransaction: number;
|
|
3223
3346
|
ePC_ProcMgr_Unload: number;
|
|
3224
3347
|
ePC_ProcMgr_CheckDatabase: number;
|
|
3225
3348
|
ePC_ProcMgr_ComparePortraits: number;
|
|
3226
3349
|
ePC_RFID_SetTCCParams: number;
|
|
3227
|
-
ePC_RFID_SetReprocessingParams: number;
|
|
3228
3350
|
};
|
|
3229
3351
|
PKDResourceType: {
|
|
3230
3352
|
CERTIFICATE_PA: number;
|
|
@@ -3286,6 +3408,7 @@ export declare const Enum: {
|
|
|
3286
3408
|
SCENARIO_MRZ_OR_BARCODE: string;
|
|
3287
3409
|
SCENARIO_MRZ_OR_LOCATE: string;
|
|
3288
3410
|
SCENARIO_MRZ_AND_LOCATE: string;
|
|
3411
|
+
SCENARIO_BARCODE_AND_LOCATE: string;
|
|
3289
3412
|
SCENARIO_MRZ_OR_OCR: string;
|
|
3290
3413
|
SCENARIO_MRZ_OR_BARCODE_OR_OCR: string;
|
|
3291
3414
|
SCENARIO_LOCATE_VISUAL_AND_MRZ_OR_OCR: string;
|
|
@@ -3296,7 +3419,6 @@ export declare const Enum: {
|
|
|
3296
3419
|
SCENARIO_OCR_FREE: string;
|
|
3297
3420
|
SCENARIO_CREDIT_CARD: string;
|
|
3298
3421
|
SCENARIO_CAPTURE: string;
|
|
3299
|
-
SCENARIO_BARCODE_AND_LOCATE: string;
|
|
3300
3422
|
};
|
|
3301
3423
|
eRFID_AccessControl_ProcedureType: {
|
|
3302
3424
|
ACPT_UNDEFINED: number;
|
|
@@ -3421,6 +3543,7 @@ export declare const Enum: {
|
|
|
3421
3543
|
INCORRECT_TEXT_COLOR: number;
|
|
3422
3544
|
PHOTO_FALSE_LUMINISCENCE: number;
|
|
3423
3545
|
TOO_MUCH_SHIFT: number;
|
|
3546
|
+
CONTACT_CHIP_TYPE_MISMATCH: number;
|
|
3424
3547
|
FIBERS_NOT_FOUND: number;
|
|
3425
3548
|
TOO_MANY_OBJECTS: number;
|
|
3426
3549
|
SPECKS_IN_UV: number;
|
|
@@ -3519,6 +3642,19 @@ export declare const Enum: {
|
|
|
3519
3642
|
ocLowercase: number;
|
|
3520
3643
|
ocCapital: number;
|
|
3521
3644
|
};
|
|
3645
|
+
AnimationImage: {
|
|
3646
|
+
UNKNOWN: number;
|
|
3647
|
+
PASSPORT_SINGLE_PAGE: number;
|
|
3648
|
+
PASSPORT_TWO_PAGES: number;
|
|
3649
|
+
ID_FRONT: number;
|
|
3650
|
+
ID_FRONT_MRZ: number;
|
|
3651
|
+
ID_BACK: number;
|
|
3652
|
+
ID_BACK_MRZ: number;
|
|
3653
|
+
ID_BACK_BARCODE: number;
|
|
3654
|
+
ID_BACK_BARCODE_MRZ: number;
|
|
3655
|
+
BANK_CARD_FRONT: number;
|
|
3656
|
+
BANK_CARD_BACK: number;
|
|
3657
|
+
};
|
|
3522
3658
|
ProcessingFinishedStatus: {
|
|
3523
3659
|
NOT_READY: number;
|
|
3524
3660
|
READY: number;
|
|
@@ -3772,6 +3908,7 @@ export declare const Enum: {
|
|
|
3772
3908
|
IQC_SCREEN_CAPTURE: number;
|
|
3773
3909
|
IQC_PORTRAIT: number;
|
|
3774
3910
|
IQC_HANDWRITTEN: number;
|
|
3911
|
+
IQC_BRIGHTNESS: number;
|
|
3775
3912
|
};
|
|
3776
3913
|
MRZFormat: {
|
|
3777
3914
|
FORMAT_1X30: string;
|
|
@@ -3850,6 +3987,12 @@ export declare const Enum: {
|
|
|
3850
3987
|
SECURITY_FEATURE_TYPE_LAS_INK: number;
|
|
3851
3988
|
SECURITY_FEATURE_TYPE_LIVENESS_MLI: number;
|
|
3852
3989
|
SECURITY_FEATURE_TYPE_LIVENESS_BARCODE_BACKGROUND: number;
|
|
3990
|
+
SECURITY_FEATURE_TYPE_PORTRAIT_COMPARISON_VS_BARCODE: number;
|
|
3991
|
+
SECURITY_FEATURE_TYPE_PORTRAIT_COMPARISON_RFID_VS_BARCODE: number;
|
|
3992
|
+
SECURITY_FEATURE_TYPE_PORTRAIT_COMPARISON_EXT_VS_BARCODE: number;
|
|
3993
|
+
SECURITY_FEATURE_TYPE_PORTRAIT_COMPARISON_BARCODE_VS_CAMERA: number;
|
|
3994
|
+
SECURITY_FEATURE_TYPE_CHECK_DIGITAL_SIGNATURE: number;
|
|
3995
|
+
SECURITY_FEATURE_TYPE_CONTACT_CHIP_CLASSIFICATION: number;
|
|
3853
3996
|
};
|
|
3854
3997
|
OnlineMode: {
|
|
3855
3998
|
MANUAL: number;
|
|
@@ -4091,6 +4234,14 @@ export declare const Enum: {
|
|
|
4091
4234
|
dtInvoice: number;
|
|
4092
4235
|
dtPassengerLocatorForm: number;
|
|
4093
4236
|
};
|
|
4237
|
+
ButtonTag: {
|
|
4238
|
+
CLOSE: number;
|
|
4239
|
+
TORCH: number;
|
|
4240
|
+
CAPTURE: number;
|
|
4241
|
+
CHANGE_FRAME: number;
|
|
4242
|
+
SKIP: number;
|
|
4243
|
+
CAMERA_SWITCH: number;
|
|
4244
|
+
};
|
|
4094
4245
|
HoloAnimationType: {
|
|
4095
4246
|
DocumentHoloAnimationUnknown: number;
|
|
4096
4247
|
DocumentHoloAnimationTypeHorizontal: number;
|
|
@@ -4107,6 +4258,11 @@ export declare const Enum: {
|
|
|
4107
4258
|
eReqCmd_GetGuid: number;
|
|
4108
4259
|
eReqCmd_WltToImage: number;
|
|
4109
4260
|
};
|
|
4261
|
+
CustomizationFont: {
|
|
4262
|
+
RFID_PROCESSING_SCREEN_HINT_LABEL: string;
|
|
4263
|
+
RFID_PROCESSING_SCREEN_PROGRESS_LABEL: string;
|
|
4264
|
+
RFID_PROCESSING_SCREEN_RESULT_LABEL: string;
|
|
4265
|
+
};
|
|
4110
4266
|
ImageFormat: {
|
|
4111
4267
|
PNG: number;
|
|
4112
4268
|
JPG: number;
|
|
@@ -4123,6 +4279,7 @@ export declare const Enum: {
|
|
|
4123
4279
|
GF_GHOST_PORTRAIT: number;
|
|
4124
4280
|
GF_STAMP: number;
|
|
4125
4281
|
GF_PORTRAIT_OF_CHILD: number;
|
|
4282
|
+
GF_CONTACT_CHIP: number;
|
|
4126
4283
|
GF_OTHER: number;
|
|
4127
4284
|
GF_FINGER_LEFT_THUMB: number;
|
|
4128
4285
|
GF_FINGER_LEFT_INDEX: number;
|
|
@@ -4136,7 +4293,7 @@ export declare const Enum: {
|
|
|
4136
4293
|
GF_FINGER_RIGHT_LITTLE: number;
|
|
4137
4294
|
};
|
|
4138
4295
|
RegDeviceConfigType: {
|
|
4139
|
-
DEVICE_7310:
|
|
4296
|
+
DEVICE_7310: string;
|
|
4140
4297
|
};
|
|
4141
4298
|
CameraMode: {
|
|
4142
4299
|
AUTO: number;
|
|
@@ -4878,6 +5035,8 @@ export declare const Enum: {
|
|
|
4878
5035
|
FT_ADDRESS_COUNTY_TYPE: number;
|
|
4879
5036
|
FT_ADDRESS_CITY_TYPE: number;
|
|
4880
5037
|
FT_ADDRESS_BUILDING_TYPE: number;
|
|
5038
|
+
FT_DATE_OF_RETIREMENT: number;
|
|
5039
|
+
FT_DOCUMENT_STATUS: number;
|
|
4881
5040
|
};
|
|
4882
5041
|
DocReaderOrientation: {
|
|
4883
5042
|
ALL: number;
|
|
@@ -4919,7 +5078,7 @@ export declare const Enum: {
|
|
|
4919
5078
|
BANK_CARD_NUMBER: number;
|
|
4920
5079
|
BANK_CARD_VALID_THRU: number;
|
|
4921
5080
|
BELARUSIAN: number;
|
|
4922
|
-
|
|
5081
|
+
BENGALI_BANGLADESH: number;
|
|
4923
5082
|
BULGARIAN: number;
|
|
4924
5083
|
CATALAN: number;
|
|
4925
5084
|
CHINESE_HONGKONG_SAR: number;
|
|
@@ -4985,6 +5144,7 @@ export declare const Enum: {
|
|
|
4985
5144
|
LITHUANIAN: number;
|
|
4986
5145
|
MALAY_MALAYSIA: number;
|
|
4987
5146
|
MALAY_BRUNEI_DARUSSALAM: number;
|
|
5147
|
+
ASSAMESE: number;
|
|
4988
5148
|
MARATHI: number;
|
|
4989
5149
|
MONGOLIAN_CYRILIC: number;
|
|
4990
5150
|
NORWEGIAN_BOKMAL: number;
|
|
@@ -5031,6 +5191,7 @@ export declare const Enum: {
|
|
|
5031
5191
|
SYRIAC: number;
|
|
5032
5192
|
TAMIL: number;
|
|
5033
5193
|
TATAR: number;
|
|
5194
|
+
BENGALI_INDIA: number;
|
|
5034
5195
|
TELUGU: number;
|
|
5035
5196
|
THAI_THAILAND: number;
|
|
5036
5197
|
TURKISH: number;
|
|
@@ -5043,6 +5204,17 @@ export declare const Enum: {
|
|
|
5043
5204
|
VIETNAMESE: number;
|
|
5044
5205
|
CTC_SIMPLIFIED: number;
|
|
5045
5206
|
CTC_TRADITIONAL: number;
|
|
5207
|
+
MALTESE: number;
|
|
5208
|
+
BURMESE: number;
|
|
5209
|
+
KHMER: number;
|
|
5210
|
+
KARAKALPAK_LATIN: number;
|
|
5211
|
+
MALAYALAM: number;
|
|
5212
|
+
NEPALI: number;
|
|
5213
|
+
ORIYA: number;
|
|
5214
|
+
URDU_DETECTION: number;
|
|
5215
|
+
};
|
|
5216
|
+
CustomizationImage: {
|
|
5217
|
+
RFID_PROCESSING_SCREEN_FAILURE_IMAGE: string;
|
|
5046
5218
|
};
|
|
5047
5219
|
DocReaderFrame: {
|
|
5048
5220
|
MAX: string;
|
|
@@ -5136,88 +5308,6 @@ export declare const Enum: {
|
|
|
5136
5308
|
* ```
|
|
5137
5309
|
*/
|
|
5138
5310
|
export declare class DocumentReaderOriginal extends AwesomeCordovaNativePlugin {
|
|
5139
|
-
/**
|
|
5140
|
-
* Initially made for capacitor as it has no convenient way to read assets
|
|
5141
|
-
* Allows you to initialize document reader without reading license yourself.
|
|
5142
|
-
* License will be automatically read from
|
|
5143
|
-
* Android: "android/app/src/main/assets/regula.license"
|
|
5144
|
-
* iOS: "ios/App/App/regula.license"
|
|
5145
|
-
*
|
|
5146
|
-
* @return {Promise<any>} Returns a promise
|
|
5147
|
-
*/
|
|
5148
|
-
initializeReaderAutomatically(): Promise<any>;
|
|
5149
|
-
/**
|
|
5150
|
-
* Checks if all required bluetooth permissions are granted and requests them if needed(Android only, ignored on iOS)
|
|
5151
|
-
*
|
|
5152
|
-
* @return {Promise<any>} Returns a promise
|
|
5153
|
-
*/
|
|
5154
|
-
isBlePermissionsGranted(): Promise<any>;
|
|
5155
|
-
/**
|
|
5156
|
-
* Searches for ble devices(Android only, ignored on iOS)
|
|
5157
|
-
*
|
|
5158
|
-
* @return {Promise<any>} Returns a promise
|
|
5159
|
-
*/
|
|
5160
|
-
startBluetoothService(): Promise<any>;
|
|
5161
|
-
/**
|
|
5162
|
-
* Initializes document reader with license from connected Device7310(Android only, ignored on iOS)
|
|
5163
|
-
*
|
|
5164
|
-
* @return {Promise<any>} Returns a promise
|
|
5165
|
-
*/
|
|
5166
|
-
initializeReaderBleDeviceConfig(): Promise<any>;
|
|
5167
|
-
/**
|
|
5168
|
-
* returns tag property of DocumentReader class
|
|
5169
|
-
*
|
|
5170
|
-
* @return {Promise<any>} Returns a promise
|
|
5171
|
-
*/
|
|
5172
|
-
getTag(): Promise<any>;
|
|
5173
|
-
/**
|
|
5174
|
-
* Allows you to get the API version
|
|
5175
|
-
*
|
|
5176
|
-
* @return {Promise<any>} Returns a promise
|
|
5177
|
-
*/
|
|
5178
|
-
getAPIVersion(): Promise<any>;
|
|
5179
|
-
/**
|
|
5180
|
-
* Allows you to get the available scenarios
|
|
5181
|
-
*
|
|
5182
|
-
* @return {Promise<any>} Returns a promise
|
|
5183
|
-
*/
|
|
5184
|
-
getAvailableScenarios(): Promise<any>;
|
|
5185
|
-
/**
|
|
5186
|
-
* Allows you to check if NFC chip reading capability is available
|
|
5187
|
-
*
|
|
5188
|
-
* @return {Promise<any>} Returns a promise
|
|
5189
|
-
*/
|
|
5190
|
-
isRFIDAvailableForUse(): Promise<any>;
|
|
5191
|
-
/**
|
|
5192
|
-
* Allows you to get the Core mode
|
|
5193
|
-
*
|
|
5194
|
-
* @return {Promise<any>} Returns a promise
|
|
5195
|
-
*/
|
|
5196
|
-
getCoreMode(): Promise<any>;
|
|
5197
|
-
/**
|
|
5198
|
-
* Allows you to get the Core version
|
|
5199
|
-
*
|
|
5200
|
-
* @return {Promise<any>} Returns a promise
|
|
5201
|
-
*/
|
|
5202
|
-
getCoreVersion(): Promise<any>;
|
|
5203
|
-
/**
|
|
5204
|
-
* Allows you to get the database export date
|
|
5205
|
-
*
|
|
5206
|
-
* @return {Promise<any>} Returns a promise
|
|
5207
|
-
*/
|
|
5208
|
-
getDatabaseDate(): Promise<any>;
|
|
5209
|
-
/**
|
|
5210
|
-
* Allows you to get the database ID
|
|
5211
|
-
*
|
|
5212
|
-
* @return {Promise<any>} Returns a promise
|
|
5213
|
-
*/
|
|
5214
|
-
getDatabaseID(): Promise<any>;
|
|
5215
|
-
/**
|
|
5216
|
-
* Allows you to get the database version
|
|
5217
|
-
*
|
|
5218
|
-
* @return {Promise<any>} Returns a promise
|
|
5219
|
-
*/
|
|
5220
|
-
getDatabaseVersion(): Promise<any>;
|
|
5221
5311
|
/**
|
|
5222
5312
|
* Allows you to check if the SDK is ready for use
|
|
5223
5313
|
*
|
|
@@ -5231,129 +5321,132 @@ export declare class DocumentReaderOriginal extends AwesomeCordovaNativePlugin {
|
|
|
5231
5321
|
*/
|
|
5232
5322
|
getDocumentReaderStatus(): Promise<any>;
|
|
5233
5323
|
/**
|
|
5234
|
-
* Allows you to
|
|
5235
|
-
*
|
|
5236
|
-
* @return {Promise<any>} Returns a promise
|
|
5237
|
-
*/
|
|
5238
|
-
getDatabaseCountriesNumber(): Promise<any>;
|
|
5239
|
-
/**
|
|
5240
|
-
* Allows you to get the number of supported database documents
|
|
5241
|
-
*
|
|
5242
|
-
* @return {Promise<any>} Returns a promise
|
|
5243
|
-
*/
|
|
5244
|
-
getDatabaseDocumentsNumber(): Promise<any>;
|
|
5245
|
-
/**
|
|
5246
|
-
* Allows you to get the selected scenario
|
|
5324
|
+
* Allows you to check if a mobile authenticator is available for use
|
|
5247
5325
|
*
|
|
5248
5326
|
* @return {Promise<any>} Returns a promise
|
|
5249
5327
|
*/
|
|
5250
|
-
|
|
5328
|
+
isAuthenticatorAvailableForUse(): Promise<any>;
|
|
5251
5329
|
/**
|
|
5252
|
-
*
|
|
5330
|
+
* Checks if all required bluetooth permissions are granted and requests them if needed(Android only, ignored on iOS)
|
|
5253
5331
|
*
|
|
5254
5332
|
* @return {Promise<any>} Returns a promise
|
|
5255
5333
|
*/
|
|
5256
|
-
|
|
5334
|
+
isBlePermissionsGranted(): Promise<any>;
|
|
5257
5335
|
/**
|
|
5258
|
-
*
|
|
5336
|
+
* Use this method to get an RFID session status
|
|
5259
5337
|
*
|
|
5260
5338
|
* @return {Promise<any>} Returns a promise
|
|
5261
5339
|
*/
|
|
5262
|
-
|
|
5340
|
+
getRfidSessionStatus(): Promise<any>;
|
|
5263
5341
|
/**
|
|
5264
|
-
* Use this method to
|
|
5342
|
+
* Use this method to set an RFID session status
|
|
5265
5343
|
*
|
|
5344
|
+
* @param {string} status
|
|
5266
5345
|
* @return {Promise<any>} Returns a promise
|
|
5267
5346
|
*/
|
|
5347
|
+
setRfidSessionStatus(status: any): Promise<any>;
|
|
5268
5348
|
/**
|
|
5269
|
-
*
|
|
5270
|
-
*/
|
|
5271
|
-
showScanner(): Observable<any>;
|
|
5272
|
-
/**
|
|
5273
|
-
* Use this method to indicate than the processing of the next page is started
|
|
5349
|
+
* returns tag property of DocumentReader class
|
|
5274
5350
|
*
|
|
5275
5351
|
* @return {Promise<any>} Returns a promise
|
|
5276
5352
|
*/
|
|
5277
|
-
|
|
5353
|
+
getTag(): Promise<any>;
|
|
5278
5354
|
/**
|
|
5279
|
-
*
|
|
5355
|
+
* sets DocumentReader.tag
|
|
5280
5356
|
*
|
|
5357
|
+
* @param {string} tag tag
|
|
5281
5358
|
* @return {Promise<any>} Returns a promise
|
|
5282
5359
|
*/
|
|
5283
|
-
|
|
5360
|
+
setTag(tag: any): Promise<any>;
|
|
5284
5361
|
/**
|
|
5285
|
-
*
|
|
5362
|
+
* description
|
|
5286
5363
|
*
|
|
5287
5364
|
* @return {Promise<any>} Returns a promise
|
|
5288
5365
|
*/
|
|
5289
|
-
|
|
5366
|
+
getFunctionality(): Promise<any>;
|
|
5290
5367
|
/**
|
|
5291
|
-
*
|
|
5368
|
+
* description
|
|
5292
5369
|
*
|
|
5370
|
+
* @param {object} functionality description
|
|
5293
5371
|
* @return {Promise<any>} Returns a promise
|
|
5294
5372
|
*/
|
|
5295
|
-
|
|
5373
|
+
setFunctionality(functionality: any): Promise<any>;
|
|
5296
5374
|
/**
|
|
5297
|
-
*
|
|
5375
|
+
* description
|
|
5298
5376
|
*
|
|
5299
|
-
* @param {string} message error message
|
|
5300
5377
|
* @return {Promise<any>} Returns a promise
|
|
5301
5378
|
*/
|
|
5302
|
-
|
|
5379
|
+
getProcessParams(): Promise<any>;
|
|
5303
5380
|
/**
|
|
5304
|
-
*
|
|
5381
|
+
* description
|
|
5305
5382
|
*
|
|
5383
|
+
* @param {object} processParams description
|
|
5306
5384
|
* @return {Promise<any>} Returns a promise
|
|
5307
5385
|
*/
|
|
5308
|
-
|
|
5386
|
+
setProcessParams(processParams: any): Promise<any>;
|
|
5309
5387
|
/**
|
|
5310
|
-
*
|
|
5388
|
+
* description
|
|
5311
5389
|
*
|
|
5312
5390
|
* @return {Promise<any>} Returns a promise
|
|
5313
5391
|
*/
|
|
5314
|
-
|
|
5392
|
+
getCustomization(): Promise<any>;
|
|
5315
5393
|
/**
|
|
5316
|
-
*
|
|
5394
|
+
* description
|
|
5317
5395
|
*
|
|
5396
|
+
* @param {object} customization description
|
|
5318
5397
|
* @return {Promise<any>} Returns a promise
|
|
5319
5398
|
*/
|
|
5320
|
-
|
|
5399
|
+
setCustomization(customization: any): Promise<any>;
|
|
5321
5400
|
/**
|
|
5322
|
-
*
|
|
5401
|
+
* description
|
|
5323
5402
|
*
|
|
5324
5403
|
* @return {Promise<any>} Returns a promise
|
|
5325
5404
|
*/
|
|
5326
|
-
|
|
5405
|
+
getRfidScenario(): Promise<any>;
|
|
5327
5406
|
/**
|
|
5328
|
-
*
|
|
5407
|
+
* description
|
|
5329
5408
|
*
|
|
5409
|
+
* @param {object} rfidScenario description
|
|
5330
5410
|
* @return {Promise<any>} Returns a promise
|
|
5331
5411
|
*/
|
|
5332
|
-
|
|
5412
|
+
setRfidScenario(rfidScenario: any): Promise<any>;
|
|
5333
5413
|
/**
|
|
5334
|
-
*
|
|
5414
|
+
* Use this method to initialize Document Reader
|
|
5335
5415
|
*
|
|
5416
|
+
* @param {object} config Object with structure
|
|
5417
|
+
* "license": "license base64 string(necessary)"
|
|
5418
|
+
* "customDb": "custom database base64 string(Android only, ignored on iOS)"
|
|
5419
|
+
* "databasePath": "database path(iOS only, ignored on android)"
|
|
5420
|
+
* "licenseUpdate": true
|
|
5421
|
+
* "delayedNNLoad": false
|
|
5422
|
+
* "blackList": {} // Android only, ignored on iOS
|
|
5336
5423
|
* @return {Promise<any>} Returns a promise
|
|
5337
5424
|
*/
|
|
5338
|
-
|
|
5425
|
+
initializeReader(config: any): Promise<any>;
|
|
5339
5426
|
/**
|
|
5340
|
-
*
|
|
5427
|
+
* Initializes document reader with license from connected Device7310(Android only, ignored on iOS)
|
|
5341
5428
|
*
|
|
5429
|
+
* @param {object} config Object with structure
|
|
5430
|
+
* "customDb": "custom database base64 string(Android only, ignored on iOS)"
|
|
5431
|
+
* "licenseUpdate": true
|
|
5432
|
+
* "delayedNNLoad": false
|
|
5433
|
+
* "blackList": {} // Android only, ignored on iOS
|
|
5342
5434
|
* @return {Promise<any>} Returns a promise
|
|
5343
5435
|
*/
|
|
5344
|
-
|
|
5436
|
+
initializeReaderWithBleDeviceConfig(config: any): Promise<any>;
|
|
5345
5437
|
/**
|
|
5346
|
-
*
|
|
5438
|
+
* Use this method to deinitialize Document Reader
|
|
5347
5439
|
*
|
|
5348
5440
|
* @return {Promise<any>} Returns a promise
|
|
5349
5441
|
*/
|
|
5350
|
-
|
|
5442
|
+
deinitializeReader(): Promise<any>;
|
|
5351
5443
|
/**
|
|
5352
|
-
* Use this method to
|
|
5444
|
+
* Use this method to download a database from the Regula's server
|
|
5353
5445
|
*
|
|
5446
|
+
* @param {string} databaseType
|
|
5354
5447
|
* @return {Promise<any>} Returns a promise
|
|
5355
5448
|
*/
|
|
5356
|
-
|
|
5449
|
+
prepareDatabase(databaseType: any): Observable<any>;
|
|
5357
5450
|
/**
|
|
5358
5451
|
* Allows you to remove the added database
|
|
5359
5452
|
*
|
|
@@ -5361,77 +5454,18 @@ export declare class DocumentReaderOriginal extends AwesomeCordovaNativePlugin {
|
|
|
5361
5454
|
*/
|
|
5362
5455
|
removeDatabase(): Promise<any>;
|
|
5363
5456
|
/**
|
|
5364
|
-
*
|
|
5365
|
-
*
|
|
5366
|
-
* @return {Promise<any>} Returns a promise
|
|
5367
|
-
*/
|
|
5368
|
-
cancelDBUpdate(): Promise<any>;
|
|
5369
|
-
/**
|
|
5370
|
-
* Use this method to reset configuration
|
|
5371
|
-
*
|
|
5372
|
-
* @return {Promise<any>} Returns a promise
|
|
5373
|
-
*/
|
|
5374
|
-
resetConfiguration(): Promise<any>;
|
|
5375
|
-
/**
|
|
5376
|
-
* Use this method to clear PKD certificates
|
|
5377
|
-
*
|
|
5378
|
-
* @return {Promise<any>} Returns a promise
|
|
5379
|
-
*/
|
|
5380
|
-
clearPKDCertificates(): Promise<any>;
|
|
5381
|
-
/**
|
|
5382
|
-
* Use this method to start RFID chip processing
|
|
5383
|
-
*
|
|
5384
|
-
* @return {Promise<any>} Returns a promise
|
|
5385
|
-
*/
|
|
5386
|
-
readRFID(): Observable<any>;
|
|
5387
|
-
/**
|
|
5388
|
-
* Use this method to get an RFID session status
|
|
5389
|
-
*
|
|
5390
|
-
* @return {Promise<any>} Returns a promise
|
|
5391
|
-
*/
|
|
5392
|
-
getRfidSessionStatus(): Promise<any>;
|
|
5393
|
-
/**
|
|
5394
|
-
* Use this method to set RFID delegate on iOS to either null,
|
|
5395
|
-
* delegate with onRequestPACertificates callback or without
|
|
5396
|
-
*
|
|
5397
|
-
* @param {int} delegate use enum RFIDDelegate
|
|
5398
|
-
* NULL = 0
|
|
5399
|
-
* NO_PA = 1
|
|
5400
|
-
* FULL = 2
|
|
5401
|
-
* @return {Promise<any>} Returns a promise
|
|
5402
|
-
*/
|
|
5403
|
-
setRfidDelegate(delegate: any): Promise<any>;
|
|
5404
|
-
/**
|
|
5405
|
-
* Use this method to enable Core logs
|
|
5406
|
-
*
|
|
5407
|
-
* @param {boolean} logs
|
|
5408
|
-
* @return {Promise<any>} Returns a promise
|
|
5409
|
-
*/
|
|
5410
|
-
setEnableCoreLogs(logs: any): Promise<any>;
|
|
5411
|
-
/**
|
|
5412
|
-
* Allows to add a list of PKD certificates during initialization process which will be passed to Core
|
|
5413
|
-
*
|
|
5414
|
-
* @param {PKDCertificate[]} certificates Array of jsonObjects with structure {binaryData: binaryData, resourceType: resourceType, privateKey: privateKey}
|
|
5415
|
-
* binaryData - base64 string
|
|
5416
|
-
* resourceType - number
|
|
5417
|
-
* privateKey(optional) - base64 string
|
|
5418
|
-
* @return {Promise<any>} Returns a promise
|
|
5419
|
-
*/
|
|
5420
|
-
addPKDCertificates(certificates: any): Promise<any>;
|
|
5421
|
-
/**
|
|
5422
|
-
* If set, the camera session will be paused as soon as the result is received
|
|
5457
|
+
* Use this method for getting always the latest version of the database
|
|
5423
5458
|
*
|
|
5424
|
-
* @param {
|
|
5459
|
+
* @param {string} databaseId
|
|
5425
5460
|
* @return {Promise<any>} Returns a promise
|
|
5426
5461
|
*/
|
|
5427
|
-
|
|
5462
|
+
runAutoUpdate(databaseId: any): Observable<any>;
|
|
5428
5463
|
/**
|
|
5429
|
-
*
|
|
5464
|
+
* Allows you to cancel database update
|
|
5430
5465
|
*
|
|
5431
|
-
* @param {string} tag tag
|
|
5432
5466
|
* @return {Promise<any>} Returns a promise
|
|
5433
5467
|
*/
|
|
5434
|
-
|
|
5468
|
+
cancelDBUpdate(): Promise<any>;
|
|
5435
5469
|
/**
|
|
5436
5470
|
* checks for database update
|
|
5437
5471
|
*
|
|
@@ -5454,100 +5488,41 @@ export declare class DocumentReaderOriginal extends AwesomeCordovaNativePlugin {
|
|
|
5454
5488
|
*/
|
|
5455
5489
|
recognize(config: any): Observable<any>;
|
|
5456
5490
|
/**
|
|
5457
|
-
* Use this method to
|
|
5458
|
-
*
|
|
5459
|
-
* @param {string[]} images Array of strings that are base64 representations of images
|
|
5460
|
-
* @return {Promise<any>} Returns a promise
|
|
5461
|
-
*/
|
|
5462
|
-
/**
|
|
5463
|
-
* @deprecated
|
|
5464
|
-
*/
|
|
5465
|
-
recognizeImages(images: any): Observable<any>;
|
|
5466
|
-
/**
|
|
5467
|
-
* Use this method to open the camera preview with the desired camera ID which will pass frames for recognition and return results in the completion block when they are ready
|
|
5468
|
-
*
|
|
5469
|
-
* @param {number} cameraID
|
|
5470
|
-
* @return {Promise<any>} Returns a promise
|
|
5471
|
-
*/
|
|
5472
|
-
/**
|
|
5473
|
-
* @deprecated
|
|
5474
|
-
*/
|
|
5475
|
-
showScannerWithCameraID(cameraID: any): Observable<any>;
|
|
5476
|
-
/**
|
|
5477
|
-
* Use this method for getting always the latest version of the database
|
|
5478
|
-
*
|
|
5479
|
-
* @param {string} databaseType
|
|
5480
|
-
* @return {Promise<any>} Returns a promise
|
|
5481
|
-
*/
|
|
5482
|
-
runAutoUpdate(databaseType: any): Observable<any>;
|
|
5483
|
-
/**
|
|
5484
|
-
* Use this method to set config
|
|
5485
|
-
*
|
|
5486
|
-
* @param {object} config JsonObject with structure
|
|
5487
|
-
* {functionality?: {name?: value1, name?: value2, ...},
|
|
5488
|
-
* customization?: {name?: value3, name?: value4, ...},
|
|
5489
|
-
* processParams?: {name?: value5, name?: value6, ...}}
|
|
5490
|
-
* name - string
|
|
5491
|
-
* value - any
|
|
5492
|
-
* @return {Promise<any>} Returns a promise
|
|
5493
|
-
*/
|
|
5494
|
-
setConfig(config: any): Promise<any>;
|
|
5495
|
-
/**
|
|
5496
|
-
* Use this method to set an RFID scenario
|
|
5497
|
-
*
|
|
5498
|
-
* @param {object} scenario JsonObject with structure {name?: value1,name?: value2, ...}
|
|
5499
|
-
* name - string
|
|
5500
|
-
* value - any
|
|
5501
|
-
* @return {Promise<any>} Returns a promise
|
|
5502
|
-
*/
|
|
5503
|
-
setRfidScenario(scenario: any): Promise<any>;
|
|
5504
|
-
/**
|
|
5505
|
-
* Use this method to initialize Document Reader
|
|
5491
|
+
* Use this method to indicate than the processing of the next page is started
|
|
5506
5492
|
*
|
|
5507
|
-
* @param {object} config Object with structure
|
|
5508
|
-
* "license": "license base64 string(necessary)"
|
|
5509
|
-
* "customDb": "custom database base64 string(Android only, ignored on iOS)"
|
|
5510
|
-
* "databasePath": "database path(iOS only, ignored on android)"
|
|
5511
|
-
* "licenseUpdate": true
|
|
5512
|
-
* "delayedNNLoad": false
|
|
5513
|
-
* "blackList": {} // Android only, ignored on iOS
|
|
5514
5493
|
* @return {Promise<any>} Returns a promise
|
|
5515
5494
|
*/
|
|
5516
|
-
|
|
5495
|
+
startNewPage(): Promise<any>;
|
|
5517
5496
|
/**
|
|
5518
|
-
* Use this method to
|
|
5497
|
+
* Use this method to close camera preview and stop processing
|
|
5519
5498
|
*
|
|
5520
|
-
* @param {string} databaseType
|
|
5521
5499
|
* @return {Promise<any>} Returns a promise
|
|
5522
5500
|
*/
|
|
5523
|
-
|
|
5501
|
+
stopScanner(): Promise<any>;
|
|
5524
5502
|
/**
|
|
5525
|
-
* Use
|
|
5503
|
+
* Use the method below to open the RFID chip reading controller and start its processing
|
|
5526
5504
|
*
|
|
5527
|
-
* @param {
|
|
5505
|
+
* @param {boolean} requestPACertificates description
|
|
5506
|
+
* @param {boolean} requestTACertificates description
|
|
5507
|
+
* @param {boolean} requestTASignature description
|
|
5528
5508
|
* @return {Promise<any>} Returns a promise
|
|
5529
5509
|
*/
|
|
5510
|
+
startRFIDReader(requestPACertificates: any, requestTACertificates: any, requestTASignature: any): Observable<any>;
|
|
5530
5511
|
/**
|
|
5531
|
-
*
|
|
5532
|
-
*/
|
|
5533
|
-
recognizeImage(image: any): Observable<any>;
|
|
5534
|
-
/**
|
|
5535
|
-
* Use this method to recognize an image using byte array
|
|
5512
|
+
* Use the method below to close the RFID chip reading controller and end its processing
|
|
5536
5513
|
*
|
|
5537
|
-
* @param {byte[]} data Image`s byte[] representation
|
|
5538
5514
|
* @return {Promise<any>} Returns a promise
|
|
5539
5515
|
*/
|
|
5516
|
+
stopRFIDReader(): Promise<any>;
|
|
5540
5517
|
/**
|
|
5541
|
-
*
|
|
5542
|
-
*/
|
|
5543
|
-
recognizeData(data: any): Observable<any>;
|
|
5544
|
-
/**
|
|
5545
|
-
* Use this method to set an RFID session status
|
|
5518
|
+
* Use this method to start RFID chip processing
|
|
5546
5519
|
*
|
|
5547
|
-
* @param {
|
|
5520
|
+
* @param {boolean} requestPACertificates description
|
|
5521
|
+
* @param {boolean} requestTACertificates description
|
|
5522
|
+
* @param {boolean} requestTASignature description
|
|
5548
5523
|
* @return {Promise<any>} Returns a promise
|
|
5549
5524
|
*/
|
|
5550
|
-
|
|
5525
|
+
readRFID(requestPACertificates: any, requestTACertificates: any, requestTASignature: any): Observable<any>;
|
|
5551
5526
|
/**
|
|
5552
5527
|
* Use this method to send PACertificates to the chip after you`ve got a request for them
|
|
5553
5528
|
*
|
|
@@ -5575,13 +5550,6 @@ export declare class DocumentReaderOriginal extends AwesomeCordovaNativePlugin {
|
|
|
5575
5550
|
* @return {Promise<any>} Returns a promise
|
|
5576
5551
|
*/
|
|
5577
5552
|
provideTASignature(signature: any): Promise<any>;
|
|
5578
|
-
/**
|
|
5579
|
-
* Use this method to parse results returned by the server when using an encrypted license
|
|
5580
|
-
*
|
|
5581
|
-
* @param {string} json results to parse
|
|
5582
|
-
* @return {Promise<any>} Returns a promise
|
|
5583
|
-
*/
|
|
5584
|
-
parseCoreResults(json: any): Promise<any>;
|
|
5585
5553
|
/**
|
|
5586
5554
|
* The method call sets the given TCCParams to the RFID session. The parameters are required to be set before starting RFID session.
|
|
5587
5555
|
*
|
|
@@ -5595,70 +5563,84 @@ export declare class DocumentReaderOriginal extends AwesomeCordovaNativePlugin {
|
|
|
5595
5563
|
*/
|
|
5596
5564
|
setTCCParams(params: any): Promise<any>;
|
|
5597
5565
|
/**
|
|
5598
|
-
*
|
|
5566
|
+
* Allows to add a list of PKD certificates during initialization process which will be passed to Core
|
|
5599
5567
|
*
|
|
5600
|
-
* @param {
|
|
5601
|
-
*
|
|
5602
|
-
*
|
|
5603
|
-
*
|
|
5604
|
-
* processParams?: {name?: value5, name?: value6, ...}}
|
|
5605
|
-
* name - string
|
|
5606
|
-
* value - any
|
|
5568
|
+
* @param {PKDCertificate[]} certificates Array of jsonObjects with structure {binaryData: binaryData, resourceType: resourceType, privateKey: privateKey}
|
|
5569
|
+
* binaryData - base64 string
|
|
5570
|
+
* resourceType - number
|
|
5571
|
+
* privateKey(optional) - base64 string
|
|
5607
5572
|
* @return {Promise<any>} Returns a promise
|
|
5608
5573
|
*/
|
|
5574
|
+
addPKDCertificates(certificates: any): Promise<any>;
|
|
5609
5575
|
/**
|
|
5610
|
-
*
|
|
5576
|
+
* Use this method to clear PKD certificates
|
|
5577
|
+
*
|
|
5578
|
+
* @return {Promise<any>} Returns a promise
|
|
5611
5579
|
*/
|
|
5612
|
-
|
|
5580
|
+
clearPKDCertificates(): Promise<any>;
|
|
5613
5581
|
/**
|
|
5614
|
-
* Use this method to
|
|
5582
|
+
* Use this method to start a new session
|
|
5615
5583
|
*
|
|
5616
|
-
* @param {string} byteString
|
|
5617
|
-
* @param {ImageInputParam} params Image input params
|
|
5618
5584
|
* @return {Promise<any>} Returns a promise
|
|
5619
5585
|
*/
|
|
5620
|
-
|
|
5586
|
+
startNewSession(): Promise<any>;
|
|
5621
5587
|
/**
|
|
5622
|
-
*
|
|
5588
|
+
* Searches for ble devices(Android only, ignored on iOS)
|
|
5623
5589
|
*
|
|
5624
|
-
* @param {number} cameraID
|
|
5625
|
-
* @param {object} options JsonObject with structure
|
|
5626
|
-
* {functionality?: {name?: value1, name?: value2, ...},
|
|
5627
|
-
* customization?: {name?: value3, name?: value4, ...},
|
|
5628
|
-
* processParams?: {name?: value5, name?: value6, ...}}
|
|
5629
|
-
* name - string
|
|
5630
|
-
* value - any
|
|
5631
5590
|
* @return {Promise<any>} Returns a promise
|
|
5632
5591
|
*/
|
|
5592
|
+
startBluetoothService(): Promise<any>;
|
|
5633
5593
|
/**
|
|
5634
|
-
*
|
|
5594
|
+
* description
|
|
5595
|
+
*
|
|
5596
|
+
* @param {object} dictionary description
|
|
5597
|
+
* @return {Promise<any>} Returns a promise
|
|
5635
5598
|
*/
|
|
5636
|
-
|
|
5599
|
+
setLocalizationDictionary(dictionary: any): Promise<any>;
|
|
5637
5600
|
/**
|
|
5638
|
-
*
|
|
5601
|
+
* description
|
|
5639
5602
|
*
|
|
5640
|
-
* @param {string} image Image`s base64 representation
|
|
5641
|
-
* @param {boolean} mode
|
|
5642
5603
|
* @return {Promise<any>} Returns a promise
|
|
5643
5604
|
*/
|
|
5644
|
-
|
|
5605
|
+
getLicense(): Promise<any>;
|
|
5645
5606
|
/**
|
|
5646
|
-
*
|
|
5607
|
+
* Allows you to get the available scenarios
|
|
5647
5608
|
*
|
|
5648
|
-
* @param {ImageInputData[]} images array of ImageInputData objects
|
|
5649
5609
|
* @return {Promise<any>} Returns a promise
|
|
5650
5610
|
*/
|
|
5611
|
+
getAvailableScenarios(): Promise<any>;
|
|
5612
|
+
/**
|
|
5613
|
+
* Allows you to check if NFC chip reading capability is available
|
|
5614
|
+
*
|
|
5615
|
+
* @return {Promise<any>} Returns a promise
|
|
5616
|
+
*/
|
|
5617
|
+
getIsRFIDAvailableForUse(): Promise<any>;
|
|
5651
5618
|
/**
|
|
5652
|
-
*
|
|
5619
|
+
* description
|
|
5620
|
+
*
|
|
5621
|
+
* @return {Promise<any>} Returns a promise
|
|
5622
|
+
*/
|
|
5623
|
+
getDocReaderVersion(): Promise<any>;
|
|
5624
|
+
/**
|
|
5625
|
+
* description
|
|
5626
|
+
*
|
|
5627
|
+
* @return {Promise<any>} Returns a promise
|
|
5628
|
+
*/
|
|
5629
|
+
getDocReaderDocumentsDatabase(): Promise<any>;
|
|
5630
|
+
/**
|
|
5631
|
+
* description
|
|
5632
|
+
*
|
|
5633
|
+
* @param {string} className description
|
|
5634
|
+
* @param {int} value byte array
|
|
5635
|
+
* @return {Promise<any>} Returns a promise
|
|
5653
5636
|
*/
|
|
5654
|
-
|
|
5637
|
+
getTranslation(className: any, value: any): Promise<any>;
|
|
5655
5638
|
/**
|
|
5656
5639
|
* description
|
|
5657
5640
|
*
|
|
5658
|
-
* @param {string} language description
|
|
5659
5641
|
* @return {Promise<any>} Returns a promise
|
|
5660
5642
|
*/
|
|
5661
|
-
|
|
5643
|
+
finalizePackage(): Promise<any>;
|
|
5662
5644
|
textFieldValueByType(results: DocumentReaderResults, fieldType: number): Promise<string | undefined>;
|
|
5663
5645
|
textFieldValueByTypeLcid(results: DocumentReaderResults, fieldType: number, lcid: number): Promise<string | undefined>;
|
|
5664
5646
|
textFieldValueByTypeSource(results: DocumentReaderResults, fieldType: number, source: number): Promise<string | undefined>;
|