@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.
Files changed (82) hide show
  1. package/README.md +3 -2
  2. package/RNFaceSDK.podspec +3 -3
  3. package/android/src/main/java/com/regula/plugin/facesdk/JSONConstructor.kt +4 -2
  4. package/examples/capacitor/README.md +4 -4
  5. package/examples/capacitor/android/build.gradle +2 -2
  6. package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +1 -1
  7. package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +2 -2
  8. package/examples/capacitor/ios/App/Podfile +1 -1
  9. package/examples/capacitor/package.json +13 -13
  10. package/examples/capacitor/scripts/android.sh +9 -0
  11. package/examples/capacitor/scripts/ios.sh +8 -0
  12. package/examples/capacitor/scripts/setup.sh +4 -0
  13. package/examples/cordova/README.md +4 -4
  14. package/examples/cordova/config.xml +2 -2
  15. package/examples/cordova/package.json +10 -16
  16. package/examples/cordova/scripts/android.sh +8 -0
  17. package/examples/cordova/scripts/ios.sh +8 -0
  18. package/examples/cordova/scripts/setup.sh +5 -0
  19. package/examples/cordova/www/js/index.js +13 -13
  20. package/examples/ionic/README.md +4 -4
  21. package/examples/ionic/config.xml +2 -2
  22. package/examples/ionic/package.json +16 -17
  23. package/examples/ionic/scripts/android.sh +8 -0
  24. package/examples/ionic/scripts/ios.sh +8 -0
  25. package/examples/ionic/scripts/setup.sh +5 -0
  26. package/examples/react-native/Gemfile +1 -0
  27. package/examples/react-native/Gemfile.lock +26 -23
  28. package/examples/react-native/README.md +4 -4
  29. package/examples/react-native/android/app/src/main/java/com/regula/face/api/MainApplication.kt +2 -1
  30. package/examples/react-native/android/build.gradle +3 -3
  31. package/examples/react-native/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  32. package/examples/react-native/android/gradle/wrapper/gradle-wrapper.properties +2 -2
  33. package/examples/react-native/android/gradlew +4 -1
  34. package/examples/react-native/ios/Podfile.lock +319 -303
  35. package/examples/react-native/package-lock.json +6101 -6298
  36. package/examples/react-native/package.json +20 -18
  37. package/examples/react-native/scripts/android.sh +8 -0
  38. package/examples/react-native/scripts/ios.sh +8 -0
  39. package/examples/react-native/scripts/setup.sh +8 -0
  40. package/package.json +2 -2
  41. package/plugin.xml +3 -2
  42. package/www/capacitor/liveness/liveness_backend_exception.js +3 -0
  43. package/www/cordova.js +4 -1
  44. package/www/react-native/liveness/liveness_backend_exception.js +3 -0
  45. package/www/types/customization/camera_position.d.ts +9 -0
  46. package/www/types/customization/customization.d.ts +22 -0
  47. package/www/types/customization/customization_colors.d.ts +6 -0
  48. package/www/types/customization/customization_fonts.d.ts +6 -0
  49. package/www/types/customization/customization_images.d.ts +6 -0
  50. package/www/types/customization/font.d.ts +19 -0
  51. package/www/types/detect_faces/detect_faces_config.d.ts +18 -0
  52. package/www/types/detect_faces/detect_faces_exception.d.ts +3 -0
  53. package/www/types/detect_faces/detect_faces_request.d.ts +53 -0
  54. package/www/types/face_capture/face_capture_config.d.ts +9 -0
  55. package/www/types/face_capture/face_capture_image.d.ts +24 -0
  56. package/www/types/image_params/output_image_crop.d.ts +24 -0
  57. package/www/types/image_params/output_image_params.d.ts +15 -0
  58. package/www/types/image_params/point.d.ts +3 -0
  59. package/www/types/image_quality/image_quality_characteristic.d.ts +3 -0
  60. package/www/types/image_quality/image_quality_characteristic_name.d.ts +3 -0
  61. package/www/types/image_quality/image_quality_group.d.ts +263 -0
  62. package/www/types/index.d.ts +40 -10
  63. package/www/types/init/face_sdk_version.d.ts +9 -0
  64. package/www/types/init/init_config.d.ts +9 -0
  65. package/www/types/liveness/liveness_backend_exception.d.ts +3 -0
  66. package/www/types/liveness/liveness_config.d.ts +66 -0
  67. package/www/types/liveness/liveness_notification.d.ts +3 -0
  68. package/www/types/liveness/liveness_response.d.ts +24 -0
  69. package/www/types/match_faces/compared_face.d.ts +18 -0
  70. package/www/types/match_faces/compared_faces_pair.d.ts +24 -0
  71. package/www/types/match_faces/match_faces_detection.d.ts +18 -0
  72. package/www/types/match_faces/match_faces_detection_face.d.ts +30 -0
  73. package/www/types/match_faces/match_faces_image.d.ts +18 -0
  74. package/www/types/match_faces/match_faces_request.d.ts +16 -0
  75. package/www/types/match_faces/match_faces_response.d.ts +15 -0
  76. package/www/types/person_database/image_upload.d.ts +14 -0
  77. package/www/types/person_database/person.d.ts +23 -0
  78. package/www/types/person_database/person_database.d.ts +3 -0
  79. package/www/types/person_database/person_group.d.ts +14 -0
  80. package/www/types/person_database/search_person.d.ts +16 -0
  81. package/www/types/person_database/search_person_image.d.ts +13 -0
  82. package/www/types/person_database/search_person_request.d.ts +24 -0
@@ -1,8 +1,8 @@
1
1
  buildscript {
2
2
  ext {
3
- buildToolsVersion = "34.0.0"
4
- minSdkVersion = 23
5
- compileSdkVersion = 34
3
+ buildToolsVersion = "35.0.0"
4
+ minSdkVersion = 24
5
+ compileSdkVersion = 35
6
6
  targetSdkVersion = 34
7
7
  ndkVersion = "26.1.10909125"
8
8
  kotlinVersion = "1.9.24"
@@ -1,7 +1,7 @@
1
1
  distributionBase=GRADLE_USER_HOME
2
2
  distributionPath=wrapper/dists
3
- distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-all.zip
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 && pwd -P ) || exit
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