@regulaforensics/ionic-native-document-reader 9.2.333-nightly → 9.2.335-nightly
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/example/package.json +3 -3
- package/index.d.ts +6 -1
- package/index.js +15 -1
- package/ngx/index.d.ts +6 -1
- package/ngx/index.js +15 -1
- package/package.json +1 -1
- package/reactExample/package.json +3 -3
package/example/package.json
CHANGED
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
},
|
|
14
14
|
"private": true,
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@regulaforensics/ionic-native-document-reader": "9.2.
|
|
17
|
-
"@regulaforensics/cordova-plugin-document-reader-api": "9.2.
|
|
18
|
-
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "9.2.
|
|
16
|
+
"@regulaforensics/ionic-native-document-reader": "9.2.335-nightly",
|
|
17
|
+
"@regulaforensics/cordova-plugin-document-reader-api": "9.2.365-nightly",
|
|
18
|
+
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "9.2.1745-nightly",
|
|
19
19
|
"cordova-plugin-camera": "7.0.0",
|
|
20
20
|
"@awesome-cordova-plugins/camera": "6.6.0",
|
|
21
21
|
"@awesome-cordova-plugins/core": "6.6.0",
|
package/index.d.ts
CHANGED
|
@@ -1054,6 +1054,11 @@ export declare class DeviceEngagement {
|
|
|
1054
1054
|
deviceRetrievalMethods?: DeviceRetrievalMethod[];
|
|
1055
1055
|
static fromJson(jsonObject?: any): DeviceEngagement | undefined;
|
|
1056
1056
|
}
|
|
1057
|
+
export declare class DeviceEngagementCompletion {
|
|
1058
|
+
deviceEngagement?: DeviceEngagement;
|
|
1059
|
+
error?: RegulaException;
|
|
1060
|
+
static fromJson(jsonObject?: any): DeviceEngagementCompletion | undefined;
|
|
1061
|
+
}
|
|
1057
1062
|
export declare class DeviceRetrievalMethod {
|
|
1058
1063
|
type?: number;
|
|
1059
1064
|
version?: number;
|
|
@@ -1068,7 +1073,7 @@ export declare class DeviceRetrievalMethod {
|
|
|
1068
1073
|
export declare class DataRetrieval {
|
|
1069
1074
|
deviceRetrieval?: number;
|
|
1070
1075
|
docRequestPreset?: number;
|
|
1071
|
-
intentToRetain?:
|
|
1076
|
+
intentToRetain?: number;
|
|
1072
1077
|
requests?: any[];
|
|
1073
1078
|
static fromJson(jsonObject?: any): DataRetrieval | undefined;
|
|
1074
1079
|
}
|