unify-external-plugin-platform 0.0.2-41 → 0.0.2-42
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/dist/external-plugin.common.js +10 -5
- package/dist/external-plugin.common.js.map +1 -1
- package/dist/external-plugin.umd.js +10 -5
- package/dist/external-plugin.umd.js.map +1 -1
- package/dist/external-plugin.umd.min.js +1 -1
- package/dist/external-plugin.umd.min.js.map +1 -1
- package/package.json +1 -1
@@ -84188,24 +84188,28 @@ class eloam_plugin_service_ELoamPassService {
|
|
84188
84188
|
// rotate: 旋转角度;deskew:纠偏,主摄像头1,副摄像头0 camidx:主摄像头0,副摄像头1;ColorMode:quality
|
84189
84189
|
url = this.baseServiceUrl + '/video=grabimage';
|
84190
84190
|
param = {
|
84191
|
-
filepath: "
|
84191
|
+
filepath: "",
|
84192
84192
|
rotate: "0",
|
84193
|
-
deskew: "
|
84193
|
+
deskew: "0",
|
84194
|
+
deskewval: "0",
|
84194
84195
|
camidx: "0",
|
84195
84196
|
ColorMode: "0",
|
84196
|
-
quality: "0"
|
84197
|
+
quality: "0",
|
84198
|
+
bIsPrint1to1: "0"
|
84197
84199
|
};
|
84198
84200
|
break;
|
84199
84201
|
case eloam_plugin_service_ELoamMethodCode.ScannerSecondaryCamera_Base64:
|
84200
84202
|
// rotate: 旋转角度,;deskew:纠偏,主摄像头1,副摄像头0 camidx:主摄像头0,副摄像头1;ColorMode:quality
|
84201
84203
|
url = this.baseServiceUrl + '/video=grabimage';
|
84202
84204
|
param = {
|
84203
|
-
filepath: "
|
84205
|
+
filepath: "",
|
84204
84206
|
rotate: "0",
|
84205
84207
|
deskew: "0",
|
84208
|
+
deskewval: "0",
|
84206
84209
|
camidx: "1",
|
84207
84210
|
ColorMode: "0",
|
84208
|
-
quality: "0"
|
84211
|
+
quality: "0",
|
84212
|
+
bIsPrint1to1: "0"
|
84209
84213
|
};
|
84210
84214
|
break;
|
84211
84215
|
case eloam_plugin_service_ELoamMethodCode.ReadIDCard_Base64:
|
@@ -84233,6 +84237,7 @@ class eloam_plugin_service_ELoamPassService {
|
|
84233
84237
|
return this.scanBySecondaryCamera();
|
84234
84238
|
}
|
84235
84239
|
}
|
84240
|
+
static async turnOnTheCamera() {}
|
84236
84241
|
/** 读取身份证 */
|
84237
84242
|
static async idCardRead() {
|
84238
84243
|
const res = await eloam_plugin_service_ELoamPassService.read(eloam_plugin_service_ELoamMethodCode.ReadIDCard_Base64);
|