@regulaforensics/face-sdk 6.3.81-beta → 6.3.83-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/README.md +3 -2
- package/RNFaceSDK.podspec +3 -3
- package/android/src/main/java/com/regula/plugin/facesdk/JSONConstructor.kt +4 -2
- package/examples/capacitor/README.md +4 -4
- package/examples/capacitor/android/build.gradle +2 -2
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +1 -1
- package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +2 -2
- package/examples/capacitor/ios/App/Podfile +1 -1
- package/examples/capacitor/package.json +13 -13
- package/examples/capacitor/scripts/android.sh +9 -0
- package/examples/capacitor/scripts/ios.sh +8 -0
- package/examples/capacitor/scripts/setup.sh +4 -0
- package/examples/cordova/README.md +4 -4
- package/examples/cordova/config.xml +2 -2
- package/examples/cordova/package.json +10 -16
- package/examples/cordova/scripts/android.sh +8 -0
- package/examples/cordova/scripts/ios.sh +8 -0
- package/examples/cordova/scripts/setup.sh +5 -0
- package/examples/cordova/www/js/index.js +13 -13
- package/examples/ionic/README.md +4 -4
- package/examples/ionic/config.xml +2 -2
- package/examples/ionic/package.json +16 -17
- package/examples/ionic/scripts/android.sh +8 -0
- package/examples/ionic/scripts/ios.sh +8 -0
- package/examples/ionic/scripts/setup.sh +5 -0
- package/examples/react-native/Gemfile +1 -0
- package/examples/react-native/Gemfile.lock +26 -23
- package/examples/react-native/README.md +4 -4
- package/examples/react-native/android/app/src/main/java/com/regula/face/api/MainApplication.kt +2 -1
- package/examples/react-native/android/build.gradle +3 -3
- package/examples/react-native/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/react-native/android/gradle/wrapper/gradle-wrapper.properties +2 -2
- package/examples/react-native/android/gradlew +4 -1
- package/examples/react-native/ios/Podfile.lock +319 -303
- package/examples/react-native/package-lock.json +6101 -6298
- package/examples/react-native/package.json +20 -18
- package/examples/react-native/scripts/android.sh +8 -0
- package/examples/react-native/scripts/ios.sh +8 -0
- package/examples/react-native/scripts/setup.sh +8 -0
- package/package.json +2 -2
- package/plugin.xml +3 -2
- package/www/capacitor/liveness/liveness_backend_exception.js +3 -0
- package/www/cordova.js +4 -1
- package/www/react-native/liveness/liveness_backend_exception.js +3 -0
- package/www/types/customization/camera_position.d.ts +9 -0
- package/www/types/customization/customization.d.ts +22 -0
- package/www/types/customization/customization_colors.d.ts +6 -0
- package/www/types/customization/customization_fonts.d.ts +6 -0
- package/www/types/customization/customization_images.d.ts +6 -0
- package/www/types/customization/font.d.ts +19 -0
- package/www/types/detect_faces/detect_faces_config.d.ts +18 -0
- package/www/types/detect_faces/detect_faces_exception.d.ts +3 -0
- package/www/types/detect_faces/detect_faces_request.d.ts +53 -0
- package/www/types/face_capture/face_capture_config.d.ts +9 -0
- package/www/types/face_capture/face_capture_image.d.ts +24 -0
- package/www/types/image_params/output_image_crop.d.ts +24 -0
- package/www/types/image_params/output_image_params.d.ts +15 -0
- package/www/types/image_params/point.d.ts +3 -0
- package/www/types/image_quality/image_quality_characteristic.d.ts +3 -0
- package/www/types/image_quality/image_quality_characteristic_name.d.ts +3 -0
- package/www/types/image_quality/image_quality_group.d.ts +263 -0
- package/www/types/index.d.ts +40 -10
- package/www/types/init/face_sdk_version.d.ts +9 -0
- package/www/types/init/init_config.d.ts +9 -0
- package/www/types/liveness/liveness_backend_exception.d.ts +3 -0
- package/www/types/liveness/liveness_config.d.ts +66 -0
- package/www/types/liveness/liveness_notification.d.ts +3 -0
- package/www/types/liveness/liveness_response.d.ts +24 -0
- package/www/types/match_faces/compared_face.d.ts +18 -0
- package/www/types/match_faces/compared_faces_pair.d.ts +24 -0
- package/www/types/match_faces/match_faces_detection.d.ts +18 -0
- package/www/types/match_faces/match_faces_detection_face.d.ts +30 -0
- package/www/types/match_faces/match_faces_image.d.ts +18 -0
- package/www/types/match_faces/match_faces_request.d.ts +16 -0
- package/www/types/match_faces/match_faces_response.d.ts +15 -0
- package/www/types/person_database/image_upload.d.ts +14 -0
- package/www/types/person_database/person.d.ts +23 -0
- package/www/types/person_database/person_database.d.ts +3 -0
- package/www/types/person_database/person_group.d.ts +14 -0
- package/www/types/person_database/search_person.d.ts +16 -0
- package/www/types/person_database/search_person_image.d.ts +13 -0
- package/www/types/person_database/search_person_request.d.ts +24 -0
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
distributionBase=GRADLE_USER_HOME
|
|
2
2
|
distributionPath=wrapper/dists
|
|
3
|
-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.
|
|
3
|
+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
|
|
4
4
|
networkTimeout=10000
|
|
5
5
|
validateDistributionUrl=true
|
|
6
6
|
zipStoreBase=GRADLE_USER_HOME
|
|
7
|
-
zipStorePath=wrapper/dists
|
|
7
|
+
zipStorePath=wrapper/dists
|
|
@@ -15,6 +15,8 @@
|
|
|
15
15
|
# See the License for the specific language governing permissions and
|
|
16
16
|
# limitations under the License.
|
|
17
17
|
#
|
|
18
|
+
# SPDX-License-Identifier: Apache-2.0
|
|
19
|
+
#
|
|
18
20
|
|
|
19
21
|
##############################################################################
|
|
20
22
|
#
|
|
@@ -84,7 +86,8 @@ done
|
|
|
84
86
|
# shellcheck disable=SC2034
|
|
85
87
|
APP_BASE_NAME=${0##*/}
|
|
86
88
|
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
|
|
87
|
-
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null &&
|
|
89
|
+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
|
|
90
|
+
' "$PWD" ) || exit
|
|
88
91
|
|
|
89
92
|
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
|
90
93
|
MAX_FD=maximum
|