@regulaforensics/face-sdk 6.3.82-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

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.