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
@@ -84178,24 +84178,28 @@ class eloam_plugin_service_ELoamPassService {
|
|
84178
84178
|
// rotate: 旋转角度;deskew:纠偏,主摄像头1,副摄像头0 camidx:主摄像头0,副摄像头1;ColorMode:quality
|
84179
84179
|
url = this.baseServiceUrl + '/video=grabimage';
|
84180
84180
|
param = {
|
84181
|
-
filepath: "
|
84181
|
+
filepath: "",
|
84182
84182
|
rotate: "0",
|
84183
|
-
deskew: "
|
84183
|
+
deskew: "0",
|
84184
|
+
deskewval: "0",
|
84184
84185
|
camidx: "0",
|
84185
84186
|
ColorMode: "0",
|
84186
|
-
quality: "0"
|
84187
|
+
quality: "0",
|
84188
|
+
bIsPrint1to1: "0"
|
84187
84189
|
};
|
84188
84190
|
break;
|
84189
84191
|
case eloam_plugin_service_ELoamMethodCode.ScannerSecondaryCamera_Base64:
|
84190
84192
|
// rotate: 旋转角度,;deskew:纠偏,主摄像头1,副摄像头0 camidx:主摄像头0,副摄像头1;ColorMode:quality
|
84191
84193
|
url = this.baseServiceUrl + '/video=grabimage';
|
84192
84194
|
param = {
|
84193
|
-
filepath: "
|
84195
|
+
filepath: "",
|
84194
84196
|
rotate: "0",
|
84195
84197
|
deskew: "0",
|
84198
|
+
deskewval: "0",
|
84196
84199
|
camidx: "1",
|
84197
84200
|
ColorMode: "0",
|
84198
|
-
quality: "0"
|
84201
|
+
quality: "0",
|
84202
|
+
bIsPrint1to1: "0"
|
84199
84203
|
};
|
84200
84204
|
break;
|
84201
84205
|
case eloam_plugin_service_ELoamMethodCode.ReadIDCard_Base64:
|
@@ -84223,6 +84227,7 @@ class eloam_plugin_service_ELoamPassService {
|
|
84223
84227
|
return this.scanBySecondaryCamera();
|
84224
84228
|
}
|
84225
84229
|
}
|
84230
|
+
static async turnOnTheCamera() {}
|
84226
84231
|
/** 读取身份证 */
|
84227
84232
|
static async idCardRead() {
|
84228
84233
|
const res = await eloam_plugin_service_ELoamPassService.read(eloam_plugin_service_ELoamMethodCode.ReadIDCard_Base64);
|