@regulaforensics/face-sdk 6.5.98-beta → 6.5.109-beta
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/RNFaceSDK.podspec +1 -1
- package/android/CVDFaceSDK.kt +5 -1
- package/examples/capacitor/ios/App/Podfile.lock +78 -0
- package/examples/capacitor/package-lock.json +11336 -0
- package/examples/capacitor/package.json +1 -1
- package/examples/cordova/package-lock.json +1373 -0
- package/examples/cordova/package.json +1 -1
- package/examples/ionic/package-lock.json +15761 -0
- package/examples/ionic/package.json +1 -1
- package/examples/react-native/ios/Podfile.lock +7 -7
- package/examples/react-native/package.json +1 -1
- package/examples/react-native/scripts/android.sh +4 -0
- package/examples/react-native/scripts/ios.sh +4 -0
- package/package.json +1 -1
- package/plugin.xml +1 -1
- package/www/capacitor/image_quality/image_quality_characteristic.js +2 -0
- package/www/capacitor/image_quality/image_quality_group.js +1 -0
- package/www/capacitor/internal/bridge.js +8 -7
- package/www/cordova.js +72 -66
- package/www/react-native/image_quality/image_quality_characteristic.js +2 -0
- package/www/react-native/image_quality/image_quality_group.js +1 -0
- package/www/react-native/internal/bridge.js +8 -7
package/RNFaceSDK.podspec
CHANGED
package/android/CVDFaceSDK.kt
CHANGED
|
@@ -14,7 +14,11 @@ val context: Context
|
|
|
14
14
|
get() = binding.cordova.context
|
|
15
15
|
|
|
16
16
|
fun sendEvent(callbackId: String, data: Any? = "") {
|
|
17
|
-
val pluginResult =
|
|
17
|
+
val pluginResult = when (data) {
|
|
18
|
+
is Int -> PluginResult(PluginResult.Status.OK, data)
|
|
19
|
+
is Boolean -> PluginResult(PluginResult.Status.OK, data)
|
|
20
|
+
else -> PluginResult(PluginResult.Status.OK, data.toSendable() as String?)
|
|
21
|
+
}
|
|
18
22
|
pluginResult.keepCallback = true
|
|
19
23
|
binding.webView.sendPluginResult(pluginResult, eventCallbackIds[callbackId] ?: callbackId)
|
|
20
24
|
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
PODS:
|
|
2
|
+
- Capacitor (7.0.1):
|
|
3
|
+
- CapacitorCordova
|
|
4
|
+
- CapacitorApp (7.0.0):
|
|
5
|
+
- Capacitor
|
|
6
|
+
- CapacitorCordova (7.0.1)
|
|
7
|
+
- CapacitorDialog (7.0.0):
|
|
8
|
+
- Capacitor
|
|
9
|
+
- CapacitorHaptics (7.0.0):
|
|
10
|
+
- Capacitor
|
|
11
|
+
- CapacitorKeyboard (7.0.0):
|
|
12
|
+
- Capacitor
|
|
13
|
+
- CapacitorStatusBar (7.0.0):
|
|
14
|
+
- Capacitor
|
|
15
|
+
- CordovaPlugins (7.0.1):
|
|
16
|
+
- CapacitorCordova
|
|
17
|
+
- FaceCoreBasic (= 6.4.1111)
|
|
18
|
+
- FaceSDK (= 6.4.2321)
|
|
19
|
+
- CordovaPluginsResources (0.0.105)
|
|
20
|
+
- FaceCoreBasic (6.4.1111)
|
|
21
|
+
- FaceSDK (6.4.2321):
|
|
22
|
+
- RegulaCommon (= 7.5.935)
|
|
23
|
+
- RegulaCommon (7.5.935)
|
|
24
|
+
|
|
25
|
+
DEPENDENCIES:
|
|
26
|
+
- "Capacitor (from `../../node_modules/@capacitor/ios`)"
|
|
27
|
+
- "CapacitorApp (from `../../node_modules/@capacitor/app`)"
|
|
28
|
+
- "CapacitorCordova (from `../../node_modules/@capacitor/ios`)"
|
|
29
|
+
- "CapacitorDialog (from `../../node_modules/@capacitor/dialog`)"
|
|
30
|
+
- "CapacitorHaptics (from `../../node_modules/@capacitor/haptics`)"
|
|
31
|
+
- "CapacitorKeyboard (from `../../node_modules/@capacitor/keyboard`)"
|
|
32
|
+
- "CapacitorStatusBar (from `../../node_modules/@capacitor/status-bar`)"
|
|
33
|
+
- CordovaPlugins (from `../capacitor-cordova-ios-plugins`)
|
|
34
|
+
- CordovaPluginsResources (from `../capacitor-cordova-ios-plugins`)
|
|
35
|
+
|
|
36
|
+
SPEC REPOS:
|
|
37
|
+
trunk:
|
|
38
|
+
- FaceCoreBasic
|
|
39
|
+
- FaceSDK
|
|
40
|
+
- RegulaCommon
|
|
41
|
+
|
|
42
|
+
EXTERNAL SOURCES:
|
|
43
|
+
Capacitor:
|
|
44
|
+
:path: "../../node_modules/@capacitor/ios"
|
|
45
|
+
CapacitorApp:
|
|
46
|
+
:path: "../../node_modules/@capacitor/app"
|
|
47
|
+
CapacitorCordova:
|
|
48
|
+
:path: "../../node_modules/@capacitor/ios"
|
|
49
|
+
CapacitorDialog:
|
|
50
|
+
:path: "../../node_modules/@capacitor/dialog"
|
|
51
|
+
CapacitorHaptics:
|
|
52
|
+
:path: "../../node_modules/@capacitor/haptics"
|
|
53
|
+
CapacitorKeyboard:
|
|
54
|
+
:path: "../../node_modules/@capacitor/keyboard"
|
|
55
|
+
CapacitorStatusBar:
|
|
56
|
+
:path: "../../node_modules/@capacitor/status-bar"
|
|
57
|
+
CordovaPlugins:
|
|
58
|
+
:path: "../capacitor-cordova-ios-plugins"
|
|
59
|
+
CordovaPluginsResources:
|
|
60
|
+
:path: "../capacitor-cordova-ios-plugins"
|
|
61
|
+
|
|
62
|
+
SPEC CHECKSUMS:
|
|
63
|
+
Capacitor: de199cba6c8b20995428ad0b7cb0bc6ca625ffd4
|
|
64
|
+
CapacitorApp: 9cb31064a6c6bb2b1438583733a7bf45557fc1da
|
|
65
|
+
CapacitorCordova: 63d476958d5022d76f197031e8b7ea3519988c64
|
|
66
|
+
CapacitorDialog: 6dc6bdd5d285118ff3732470b9f169c14fc564a7
|
|
67
|
+
CapacitorHaptics: 7be406a91e4eb87287f321c6c68e1709d6837b3a
|
|
68
|
+
CapacitorKeyboard: 4db71e694e7afb5d7c0be09b05495c19f7d6c914
|
|
69
|
+
CapacitorStatusBar: a8c4c83ed2e973bdafb979e80e4b00d027832cb7
|
|
70
|
+
CordovaPlugins: a27ffb01883b6395654b17c5bf6efdeb74bcb275
|
|
71
|
+
CordovaPluginsResources: 0c211f770ed91763a179ebcd9b9346e120b70662
|
|
72
|
+
FaceCoreBasic: a2ff9ed108c4d9d67e892df6be5ccc4729f3cda5
|
|
73
|
+
FaceSDK: e96016e36d5507ad9d9ee3b011d735f5fe51829f
|
|
74
|
+
RegulaCommon: 2a6406d2d3ebbd720b66a9cfa5b9631701d343eb
|
|
75
|
+
|
|
76
|
+
PODFILE CHECKSUM: 7ac4ae020a5105186dfa71a8301fa4cfe36e1eac
|
|
77
|
+
|
|
78
|
+
COCOAPODS: 1.16.2
|