@regulaforensics/face-sdk 6.5.56-beta → 6.5.64-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.
@@ -3,16 +3,15 @@
3
3
  "version": "1.0.0",
4
4
  "private": true,
5
5
  "scripts": {
6
- "setup": "npm install && (cd ios && bundle install) && npm run pod-install",
7
- "pod-install": "cd ios && RCT_NEW_ARCH_ENABLED=1 bundle exec pod update",
8
- "android": "react-native run-android",
9
- "ios": "react-native run-ios",
6
+ "setup": "scripts/setup.sh",
7
+ "ios": "scripts/ios.sh",
8
+ "android": "scripts/android.sh",
10
9
  "lint": "eslint .",
11
10
  "start": "react-native start",
12
11
  "test": "jest"
13
12
  },
14
13
  "dependencies": {
15
- "@regulaforensics/face-sdk": "6.5.56-beta",
14
+ "@regulaforensics/face-sdk": "6.5.64-beta",
16
15
  "@regulaforensics/face-core-basic": "6.3.12-beta",
17
16
  "react": "18.3.1",
18
17
  "react-native": "0.76.6",
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -e
3
+
4
+ if [[ $npm_config_o || $npm_config_open ]]; then
5
+ studio android || open -a 'Android Studio' android
6
+ else
7
+ react-native run-android
8
+ fi
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -e
3
+
4
+ if [[ $npm_config_o || $npm_config_open ]]; then
5
+ open ios/FaceSDK.xcworkspace
6
+ else
7
+ react-native run-ios
8
+ fi
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -e
3
+
4
+ npm install
5
+ cd ios
6
+ bundle install
7
+ RCT_NEW_ARCH_ENABLED=1 bundle exec pod install ||
8
+ RCT_NEW_ARCH_ENABLED=1 bundle exec pod update
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regulaforensics/face-sdk",
3
- "version": "6.5.56-beta",
3
+ "version": "6.5.64-beta",
4
4
  "description": "This is an npm module for Regula Face SDK. It allows you to easily compaire faces using your phone's camera.",
5
5
  "main": "www/react-native/index.js",
6
6
  "module": "www/capacitor/index.js",
package/plugin.xml CHANGED
@@ -1,5 +1,5 @@
1
1
  <?xml version='1.0' encoding='utf-8'?>
2
- <plugin id="@regulaforensics/face-sdk" version="6.5.56-beta" xmlns="http://apache.org/cordova/ns/plugins/1.0">
2
+ <plugin id="@regulaforensics/face-sdk" version="6.5.64-beta" xmlns="http://apache.org/cordova/ns/plugins/1.0">
3
3
  <name>FaceSDK</name>
4
4
  <description>Cordova plugin for Regula Face SDK</description>
5
5
  <license>commercial</license>
@@ -87,6 +87,7 @@ export class FaceSDK {
87
87
  * The only instance of singleton class {@link FaceSDK}.
88
88
  */
89
89
  static get instance(): FaceSDK
90
+ private constructor()
90
91
 
91
92
  /**
92
93
  * Information about the SDK.