@regulaforensics/face-sdk 6.3.3-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/README.md +23 -0
- package/RNFaceSDK.podspec +21 -0
- package/android/CVDFaceSDK.kt +34 -0
- package/android/build.gradle +48 -0
- package/android/cordova.gradle +18 -0
- package/android/src/main/AndroidManifest.xml +1 -0
- package/android/src/main/java/com/regula/plugin/facesdk/Config.kt +165 -0
- package/android/src/main/java/com/regula/plugin/facesdk/JSONConstructor.kt +904 -0
- package/android/src/main/java/com/regula/plugin/facesdk/Main.kt +370 -0
- package/android/src/main/java/com/regula/plugin/facesdk/RNFaceApiModule.kt +54 -0
- package/android/src/main/java/com/regula/plugin/facesdk/RNFaceApiPackage.kt +11 -0
- package/android/src/main/java/com/regula/plugin/facesdk/Utils.kt +287 -0
- package/examples/capacitor/.browserslistrc +6 -0
- package/examples/capacitor/.eslintrc.js +17 -0
- package/examples/capacitor/README.md +27 -0
- package/examples/capacitor/android/app/build.gradle +54 -0
- package/examples/capacitor/android/app/capacitor.build.gradle +22 -0
- package/examples/capacitor/android/app/proguard-rules.pro +21 -0
- package/examples/capacitor/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java +26 -0
- package/examples/capacitor/android/app/src/main/AndroidManifest.xml +43 -0
- package/examples/capacitor/android/app/src/main/java/com/regula/faceapi/MainActivity.java +5 -0
- package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher_background.xml +170 -0
- package/examples/capacitor/android/app/src/main/res/drawable/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-land-hdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-land-mdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-land-xhdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-land-xxhdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-land-xxxhdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-port-hdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-port-mdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-port-xhdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-port-xxhdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-port-xxxhdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml +34 -0
- package/examples/capacitor/android/app/src/main/res/layout/activity_main.xml +12 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +5 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +5 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/examples/capacitor/android/app/src/main/res/values/ic_launcher_background.xml +4 -0
- package/examples/capacitor/android/app/src/main/res/values/strings.xml +7 -0
- package/examples/capacitor/android/app/src/main/res/values/styles.xml +22 -0
- package/examples/capacitor/android/app/src/main/res/xml/file_paths.xml +5 -0
- package/examples/capacitor/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java +18 -0
- package/examples/capacitor/android/build.gradle +30 -0
- package/examples/capacitor/android/capacitor.settings.gradle +15 -0
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/examples/capacitor/android/gradle.properties +22 -0
- package/examples/capacitor/android/gradlew +244 -0
- package/examples/capacitor/android/gradlew.bat +92 -0
- package/examples/capacitor/android/settings.gradle +5 -0
- package/examples/capacitor/android/variables.gradle +16 -0
- package/examples/capacitor/capacitor.config.ts +12 -0
- package/examples/capacitor/cypress/e2e/test.cy.ts +6 -0
- package/examples/capacitor/cypress/fixtures/example.json +5 -0
- package/examples/capacitor/cypress/support/commands.ts +37 -0
- package/examples/capacitor/cypress/support/e2e.ts +20 -0
- package/examples/capacitor/cypress.config.ts +10 -0
- package/examples/capacitor/index.html +106 -0
- package/examples/capacitor/ionic.config.json +7 -0
- package/examples/capacitor/ios/App/App/App.entitlements +5 -0
- package/examples/capacitor/ios/App/App/AppDelegate.swift +49 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json +14 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Contents.json +6 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json +23 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png +0 -0
- package/examples/capacitor/ios/App/App/Base.lproj/LaunchScreen.storyboard +32 -0
- package/examples/capacitor/ios/App/App/Base.lproj/Main.storyboard +19 -0
- package/examples/capacitor/ios/App/App/Info.plist +53 -0
- package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +410 -0
- package/examples/capacitor/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/examples/capacitor/ios/App/App.xcworkspace/contents.xcworkspacedata +10 -0
- package/examples/capacitor/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/examples/capacitor/ios/App/Podfile +27 -0
- package/examples/capacitor/package.json +64 -0
- package/examples/capacitor/public/assets/.gitkeep +0 -0
- package/examples/capacitor/public/assets/img/id.png +0 -0
- package/examples/capacitor/public/assets/img/portrait.png +0 -0
- package/examples/capacitor/public/favicon.png +0 -0
- package/examples/capacitor/public/manifest.json +21 -0
- package/examples/capacitor/src/App.test.tsx +8 -0
- package/examples/capacitor/src/App.tsx +42 -0
- package/examples/capacitor/src/components/ExploreContainer.css +24 -0
- package/examples/capacitor/src/components/ExploreContainer.tsx +14 -0
- package/examples/capacitor/src/main.tsx +11 -0
- package/examples/capacitor/src/pages/Home.tsx +159 -0
- package/examples/capacitor/src/setupTests.ts +14 -0
- package/examples/capacitor/src/theme/variables.css +242 -0
- package/examples/capacitor/src/vite-env.d.ts +1 -0
- package/examples/capacitor/tsconfig.json +21 -0
- package/examples/capacitor/tsconfig.node.json +9 -0
- package/examples/capacitor/vite.config.ts +16 -0
- package/examples/cordova/.vscode/launch.json +28 -0
- package/examples/cordova/config.xml +37 -0
- package/examples/cordova/jsconfig.json +1 -0
- package/examples/cordova/package.json +40 -0
- package/examples/cordova/www/css/index.css +107 -0
- package/examples/cordova/www/img/id.png +0 -0
- package/examples/cordova/www/img/logo.png +0 -0
- package/examples/cordova/www/img/portrait.png +0 -0
- package/examples/cordova/www/index.html +94 -0
- package/examples/cordova/www/js/index.js +154 -0
- package/examples/ionic/angular.json +187 -0
- package/examples/ionic/browserslist +12 -0
- package/examples/ionic/config.xml +114 -0
- package/examples/ionic/e2e/protractor.conf.js +28 -0
- package/examples/ionic/e2e/src/app.e2e-spec.ts +14 -0
- package/examples/ionic/e2e/src/app.po.ts +11 -0
- package/examples/ionic/e2e/tsconfig.json +13 -0
- package/examples/ionic/ionic.config.json +7 -0
- package/examples/ionic/karma.conf.js +31 -0
- package/examples/ionic/package.json +97 -0
- package/examples/ionic/resources/README.md +8 -0
- package/examples/ionic/resources/android/icon/drawable-hdpi-icon.png +0 -0
- package/examples/ionic/resources/android/icon/drawable-ldpi-icon.png +0 -0
- package/examples/ionic/resources/android/icon/drawable-mdpi-icon.png +0 -0
- package/examples/ionic/resources/android/icon/drawable-xhdpi-icon.png +0 -0
- package/examples/ionic/resources/android/icon/drawable-xxhdpi-icon.png +0 -0
- package/examples/ionic/resources/android/icon/drawable-xxxhdpi-icon.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-land-hdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-land-ldpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-land-mdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-land-xhdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-land-xxhdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-land-xxxhdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-port-hdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-port-ldpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-port-mdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-port-xhdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-port-xxhdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-port-xxxhdpi-screen.png +0 -0
- package/examples/ionic/resources/android/xml/network_security_config.xml +6 -0
- package/examples/ionic/resources/icon.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-1024.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-20.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-20@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-20@3x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-24@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-27.5@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-29.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-29@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-29@3x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-40.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-40@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-40@3x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-44@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-50.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-50@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-60.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-60@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-60@3x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-72.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-72@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-76.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-76@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-83.5@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-86@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-98@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-small.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-small@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-small@3x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon.png +0 -0
- package/examples/ionic/resources/ios/icon/icon@2x.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-2436h.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-568h@2x~iphone.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-667h.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-736h.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Landscape-2436h.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Landscape-736h.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Landscape@2x~ipad.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Landscape@~ipadpro.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Landscape~ipad.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Portrait@2x~ipad.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Portrait@~ipadpro.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Portrait~ipad.png +0 -0
- package/examples/ionic/resources/ios/splash/Default@2x~iphone.png +0 -0
- package/examples/ionic/resources/ios/splash/Default@2x~universal~anyany.png +0 -0
- package/examples/ionic/resources/ios/splash/Default~iphone.png +0 -0
- package/examples/ionic/resources/splash.png +0 -0
- package/examples/ionic/src/app/app-routing.module.ts +15 -0
- package/examples/ionic/src/app/app.component.html +3 -0
- package/examples/ionic/src/app/app.component.scss +0 -0
- package/examples/ionic/src/app/app.component.spec.ts +47 -0
- package/examples/ionic/src/app/app.component.ts +27 -0
- package/examples/ionic/src/app/app.module.ts +23 -0
- package/examples/ionic/src/app/home/home.module.ts +29 -0
- package/examples/ionic/src/app/home/home.page.html +75 -0
- package/examples/ionic/src/app/home/home.page.scss +1 -0
- package/examples/ionic/src/app/home/home.page.spec.ts +24 -0
- package/examples/ionic/src/app/home/home.page.ts +166 -0
- package/examples/ionic/src/assets/icon/favicon.png +0 -0
- package/examples/ionic/src/assets/img/portrait.png +0 -0
- package/examples/ionic/src/assets/shapes.svg +1 -0
- package/examples/ionic/src/environments/environment.prod.ts +3 -0
- package/examples/ionic/src/environments/environment.ts +16 -0
- package/examples/ionic/src/global.scss +31 -0
- package/examples/ionic/src/index.html +25 -0
- package/examples/ionic/src/main.ts +12 -0
- package/examples/ionic/src/polyfills.ts +66 -0
- package/examples/ionic/src/test.ts +20 -0
- package/examples/ionic/src/theme/variables.scss +77 -0
- package/examples/ionic/src/zone-flags.ts +5 -0
- package/examples/ionic/tsconfig.app.json +14 -0
- package/examples/ionic/tsconfig.json +26 -0
- package/examples/ionic/tsconfig.spec.json +19 -0
- package/examples/ionic/tslint.json +88 -0
- package/examples/react-native/.vscode/launch.json +26 -0
- package/examples/react-native/.watchmanconfig +1 -0
- package/examples/react-native/App.tsx +206 -0
- package/examples/react-native/Gemfile +8 -0
- package/examples/react-native/Gemfile.lock +134 -0
- package/examples/react-native/android/app/build.gradle +123 -0
- package/examples/react-native/android/app/debug.keystore +0 -0
- package/examples/react-native/android/app/proguard-rules.pro +10 -0
- package/examples/react-native/android/app/src/debug/AndroidManifest.xml +9 -0
- package/examples/react-native/android/app/src/main/AndroidManifest.xml +27 -0
- package/examples/react-native/android/app/src/main/assets/.gitkeep +0 -0
- package/examples/react-native/android/app/src/main/java/com/regula/face/api/MainActivity.kt +22 -0
- package/examples/react-native/android/app/src/main/java/com/regula/face/api/MainApplication.kt +43 -0
- package/examples/react-native/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
- package/examples/react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/examples/react-native/android/app/src/main/res/values/strings.xml +3 -0
- package/examples/react-native/android/app/src/main/res/values/styles.xml +9 -0
- package/examples/react-native/android/build.gradle +21 -0
- package/examples/react-native/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/react-native/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/examples/react-native/android/gradle.properties +39 -0
- package/examples/react-native/android/gradlew +249 -0
- package/examples/react-native/android/gradlew.bat +92 -0
- package/examples/react-native/android/settings.gradle +6 -0
- package/examples/react-native/images/portrait.png +0 -0
- package/examples/react-native/index.js +4 -0
- package/examples/react-native/ios/.xcode.env +11 -0
- package/examples/react-native/ios/FaceSDK/AppDelegate.h +6 -0
- package/examples/react-native/ios/FaceSDK/AppDelegate.mm +31 -0
- package/examples/react-native/ios/FaceSDK/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/examples/react-native/ios/FaceSDK/Images.xcassets/Contents.json +6 -0
- package/examples/react-native/ios/FaceSDK/Info.plist +51 -0
- package/examples/react-native/ios/FaceSDK/LaunchScreen.storyboard +47 -0
- package/examples/react-native/ios/FaceSDK/PrivacyInfo.xcprivacy +38 -0
- package/examples/react-native/ios/FaceSDK/main.m +10 -0
- package/examples/react-native/ios/FaceSDK.xcodeproj/project.pbxproj +719 -0
- package/examples/react-native/ios/FaceSDK.xcodeproj/xcshareddata/xcschemes/FaceSDK.xcscheme +88 -0
- package/examples/react-native/ios/FaceSDK.xcworkspace/contents.xcworkspacedata +10 -0
- package/examples/react-native/ios/FaceSDK.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/examples/react-native/ios/FaceSDKTests/FaceSDKTests.m +66 -0
- package/examples/react-native/ios/FaceSDKTests/Info.plist +24 -0
- package/examples/react-native/ios/Podfile +40 -0
- package/examples/react-native/ios/Podfile.lock +1822 -0
- package/examples/react-native/ios/license/.gitkeep +0 -0
- package/examples/react-native/metro.config.js +15 -0
- package/examples/react-native/package-lock.json +13098 -0
- package/examples/react-native/package.json +42 -0
- package/ios/CVDFaceSDK.h +7 -0
- package/ios/CVDFaceSDK.m +34 -0
- package/ios/RFSWConfig.h +27 -0
- package/ios/RFSWConfig.m +189 -0
- package/ios/RFSWJSONConstructor.h +134 -0
- package/ios/RFSWJSONConstructor.m +977 -0
- package/ios/RFSWMain.h +23 -0
- package/ios/RFSWMain.m +352 -0
- package/ios/RNFaceSDK.h +8 -0
- package/ios/RNFaceSDK.m +42 -0
- package/ios-ci/.gitlab-ci.yml +41 -0
- package/ios-ci/.sample-env +22 -0
- package/ios-ci/README.md +97 -0
- package/ios-ci/RegulaDanger/Package.swift +34 -0
- package/ios-ci/RegulaDanger/Sources/RegulaDanger/RegulaDanger.swift +44 -0
- package/ios-ci/RegulaDanger/Tests/LinuxMain.swift +7 -0
- package/ios-ci/RegulaDanger/Tests/RegulaDangerTests/RegulaDangerTests.swift +15 -0
- package/ios-ci/RegulaDanger/Tests/RegulaDangerTests/XCTestManifests.swift +9 -0
- package/ios-ci/install.sh +9 -0
- package/ios-ci/ios_ci/__init__.py +8 -0
- package/ios-ci/ios_ci/cli.py +408 -0
- package/ios-ci/ios_ci/common/__init__.py +0 -0
- package/ios-ci/ios_ci/common/build_index.py +70 -0
- package/ios-ci/ios_ci/common/clean_cocoapod.sh +13 -0
- package/ios-ci/ios_ci/common/dependency.py +466 -0
- package/ios-ci/ios_ci/common/ftp.py +314 -0
- package/ios-ci/ios_ci/common/searchpod.sh +6 -0
- package/ios-ci/ios_ci/common/wait_for_cocopod.sh +21 -0
- package/ios-ci/ios_ci/inject.py +145 -0
- package/ios-ci/ios_ci/podspec/__init__.py +0 -0
- package/ios-ci/ios_ci/podspec/podspec.py +88 -0
- package/ios-ci/ios_ci/podspec/templates/BTDevice.podspec +17 -0
- package/ios-ci/ios_ci/podspec/templates/Core.podspec +17 -0
- package/ios-ci/ios_ci/podspec/templates/DocumentReader.podspec +19 -0
- package/ios-ci/ios_ci/podspec/templates/FaceCore.podspec +17 -0
- package/ios-ci/ios_ci/podspec/templates/FaceSDK.podspec +18 -0
- package/ios-ci/ios_ci/podspec/templates/IRS.podspec +17 -0
- package/ios-ci/ios_ci/podspec/templates/RegulaCommon.podspec +17 -0
- package/ios-ci/ios_ci/resolve_podfile_common.py +76 -0
- package/ios-ci/ios_ci/spm/AppleRootCA-G3.cer +0 -0
- package/ios-ci/ios_ci/spm/AppleWWDRCAG3.cer +0 -0
- package/ios-ci/ios_ci/spm/SwiftPackageGenerator+Common.sh +48 -0
- package/ios-ci/ios_ci/spm/SwiftPackageGenerator.sh +33 -0
- package/ios-ci/ios_ci/spm/XcodeSPMCollection.json +29 -0
- package/ios-ci/ios_ci/spm/__init__.py +0 -0
- package/ios-ci/ios_ci/spm/askpass.py +19 -0
- package/ios-ci/ios_ci/spm/spm.py +227 -0
- package/ios-ci/ios_ci/upload_build.py +158 -0
- package/ios-ci/ios_ci/version.py +14 -0
- package/ios-ci/poetry.lock +342 -0
- package/ios-ci/pyproject.toml +26 -0
- package/ios-ci/scripts.py +9 -0
- package/ios-ci/tests/__init__.py +0 -0
- package/ios-ci/tests/podspec/fixtures/BTDevice.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/BTDeviceBeta.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/DocumentReaderBeta_RegulaCommon_Beta.podspec +19 -0
- package/ios-ci/tests/podspec/fixtures/DocumentReaderBeta_RegulaCommon_Release.podspec +19 -0
- package/ios-ci/tests/podspec/fixtures/DocumentReaderFullRFID.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/DocumentReaderFullRFIDBeta.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/DocumentReader_RegulaCommon_Beta.podspec +19 -0
- package/ios-ci/tests/podspec/fixtures/DocumentReader_RegulaCommon_Release.podspec +19 -0
- package/ios-ci/tests/podspec/fixtures/FaceSDK.podspec +18 -0
- package/ios-ci/tests/podspec/fixtures/FaceSDKBeta.podspec +18 -0
- package/ios-ci/tests/podspec/fixtures/IRS.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/IRSBeta.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/RegulaCommon.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/RegulaCommonBeta.podspec +17 -0
- package/ios-ci/tests/podspec/test_podspec.py +188 -0
- package/ios-ci/tests/test_build_index.py +117 -0
- package/ios-ci/tests/test_dependency.py +139 -0
- package/ios-ci/tests/test_ios_ci.py +5 -0
- package/package.json +36 -0
- package/plugin.xml +48 -0
- package/www/capacitor/customization/camera_position.js +4 -0
- package/www/capacitor/customization/customization.js +66 -0
- package/www/capacitor/customization/customization_colors.js +233 -0
- package/www/capacitor/customization/customization_fonts.js +106 -0
- package/www/capacitor/customization/customization_images.js +129 -0
- package/www/capacitor/customization/font.js +23 -0
- package/www/capacitor/customization/screen_orientation.js +4 -0
- package/www/capacitor/detect_faces/detect_face_result.js +38 -0
- package/www/capacitor/detect_faces/detect_faces_attribute.js +15 -0
- package/www/capacitor/detect_faces/detect_faces_attribute_result.js +20 -0
- package/www/capacitor/detect_faces/detect_faces_backend_exception.js +23 -0
- package/www/capacitor/detect_faces/detect_faces_config.js +14 -0
- package/www/capacitor/detect_faces/detect_faces_exception.js +30 -0
- package/www/capacitor/detect_faces/detect_faces_request.js +67 -0
- package/www/capacitor/detect_faces/detect_faces_response.js +24 -0
- package/www/capacitor/detect_faces/detect_faces_scenario.js +10 -0
- package/www/capacitor/face_capture/face_capture_config.js +28 -0
- package/www/capacitor/face_capture/face_capture_exception.js +25 -0
- package/www/capacitor/face_capture/face_capture_image.js +26 -0
- package/www/capacitor/face_capture/face_capture_response.js +17 -0
- package/www/capacitor/image_params/output_image_crop.js +21 -0
- package/www/capacitor/image_params/output_image_params.js +9 -0
- package/www/capacitor/image_params/point.js +14 -0
- package/www/capacitor/image_params/rect.js +18 -0
- package/www/capacitor/image_params/size.js +9 -0
- package/www/capacitor/image_quality/image_quality_characteristic.js +24 -0
- package/www/capacitor/image_quality/image_quality_characteristic_name.js +58 -0
- package/www/capacitor/image_quality/image_quality_group.js +332 -0
- package/www/capacitor/image_quality/image_quality_range.js +26 -0
- package/www/capacitor/image_quality/image_quality_result.js +40 -0
- package/www/capacitor/index.js +219 -0
- package/www/capacitor/init/face_sdk_version.js +16 -0
- package/www/capacitor/init/init_config.js +9 -0
- package/www/capacitor/init/init_exception.js +29 -0
- package/www/capacitor/init/license_exception.js +29 -0
- package/www/capacitor/internal/bridge.js +39 -0
- package/www/capacitor/internal/cordova.js +17 -0
- package/www/capacitor/internal/webpack.config.js +11 -0
- package/www/capacitor/liveness/liveness_backend_exception.js +38 -0
- package/www/capacitor/liveness/liveness_config.js +54 -0
- package/www/capacitor/liveness/liveness_exception.js +35 -0
- package/www/capacitor/liveness/liveness_notification.js +34 -0
- package/www/capacitor/liveness/liveness_response.js +30 -0
- package/www/capacitor/match_faces/compared_face.js +21 -0
- package/www/capacitor/match_faces/compared_faces_pair.js +23 -0
- package/www/capacitor/match_faces/compared_faces_split.js +22 -0
- package/www/capacitor/match_faces/match_faces_backend_exception.js +14 -0
- package/www/capacitor/match_faces/match_faces_config.js +12 -0
- package/www/capacitor/match_faces/match_faces_detection.js +25 -0
- package/www/capacitor/match_faces/match_faces_detection_face.js +28 -0
- package/www/capacitor/match_faces/match_faces_exception.js +30 -0
- package/www/capacitor/match_faces/match_faces_image.js +25 -0
- package/www/capacitor/match_faces/match_faces_request.js +13 -0
- package/www/capacitor/match_faces/match_faces_response.js +28 -0
- package/www/capacitor/person_database/edit_group_persons_request.js +9 -0
- package/www/capacitor/person_database/image_upload.js +16 -0
- package/www/capacitor/person_database/pageable_item_list.js +22 -0
- package/www/capacitor/person_database/person.js +22 -0
- package/www/capacitor/person_database/person_database.js +145 -0
- package/www/capacitor/person_database/person_group.js +18 -0
- package/www/capacitor/person_database/person_image.js +22 -0
- package/www/capacitor/person_database/search_person.js +31 -0
- package/www/capacitor/person_database/search_person_detection.js +22 -0
- package/www/capacitor/person_database/search_person_image.js +26 -0
- package/www/capacitor/person_database/search_person_request.js +17 -0
- package/www/cordova.js +3738 -0
- package/www/react-native/customization/camera_position.js +4 -0
- package/www/react-native/customization/customization.js +66 -0
- package/www/react-native/customization/customization_colors.js +233 -0
- package/www/react-native/customization/customization_fonts.js +106 -0
- package/www/react-native/customization/customization_images.js +129 -0
- package/www/react-native/customization/font.js +23 -0
- package/www/react-native/customization/screen_orientation.js +4 -0
- package/www/react-native/detect_faces/detect_face_result.js +38 -0
- package/www/react-native/detect_faces/detect_faces_attribute.js +15 -0
- package/www/react-native/detect_faces/detect_faces_attribute_result.js +20 -0
- package/www/react-native/detect_faces/detect_faces_backend_exception.js +23 -0
- package/www/react-native/detect_faces/detect_faces_config.js +14 -0
- package/www/react-native/detect_faces/detect_faces_exception.js +30 -0
- package/www/react-native/detect_faces/detect_faces_request.js +67 -0
- package/www/react-native/detect_faces/detect_faces_response.js +24 -0
- package/www/react-native/detect_faces/detect_faces_scenario.js +10 -0
- package/www/react-native/face_capture/face_capture_config.js +28 -0
- package/www/react-native/face_capture/face_capture_exception.js +25 -0
- package/www/react-native/face_capture/face_capture_image.js +26 -0
- package/www/react-native/face_capture/face_capture_response.js +17 -0
- package/www/react-native/image_params/output_image_crop.js +21 -0
- package/www/react-native/image_params/output_image_params.js +9 -0
- package/www/react-native/image_params/point.js +14 -0
- package/www/react-native/image_params/rect.js +18 -0
- package/www/react-native/image_params/size.js +9 -0
- package/www/react-native/image_quality/image_quality_characteristic.js +24 -0
- package/www/react-native/image_quality/image_quality_characteristic_name.js +58 -0
- package/www/react-native/image_quality/image_quality_group.js +332 -0
- package/www/react-native/image_quality/image_quality_range.js +26 -0
- package/www/react-native/image_quality/image_quality_result.js +40 -0
- package/www/react-native/index.js +219 -0
- package/www/react-native/init/face_sdk_version.js +16 -0
- package/www/react-native/init/init_config.js +9 -0
- package/www/react-native/init/init_exception.js +29 -0
- package/www/react-native/init/license_exception.js +29 -0
- package/www/react-native/internal/bridge.js +39 -0
- package/www/react-native/liveness/liveness_backend_exception.js +38 -0
- package/www/react-native/liveness/liveness_config.js +54 -0
- package/www/react-native/liveness/liveness_exception.js +35 -0
- package/www/react-native/liveness/liveness_notification.js +34 -0
- package/www/react-native/liveness/liveness_response.js +30 -0
- package/www/react-native/match_faces/compared_face.js +21 -0
- package/www/react-native/match_faces/compared_faces_pair.js +23 -0
- package/www/react-native/match_faces/compared_faces_split.js +22 -0
- package/www/react-native/match_faces/match_faces_backend_exception.js +14 -0
- package/www/react-native/match_faces/match_faces_config.js +12 -0
- package/www/react-native/match_faces/match_faces_detection.js +25 -0
- package/www/react-native/match_faces/match_faces_detection_face.js +28 -0
- package/www/react-native/match_faces/match_faces_exception.js +30 -0
- package/www/react-native/match_faces/match_faces_image.js +25 -0
- package/www/react-native/match_faces/match_faces_request.js +13 -0
- package/www/react-native/match_faces/match_faces_response.js +28 -0
- package/www/react-native/person_database/edit_group_persons_request.js +9 -0
- package/www/react-native/person_database/image_upload.js +16 -0
- package/www/react-native/person_database/pageable_item_list.js +22 -0
- package/www/react-native/person_database/person.js +22 -0
- package/www/react-native/person_database/person_database.js +145 -0
- package/www/react-native/person_database/person_group.js +18 -0
- package/www/react-native/person_database/person_image.js +22 -0
- package/www/react-native/person_database/search_person.js +31 -0
- package/www/react-native/person_database/search_person_detection.js +22 -0
- package/www/react-native/person_database/search_person_image.js +26 -0
- package/www/react-native/person_database/search_person_request.js +17 -0
- package/www/types/customization/camera_position.d.ts +4 -0
- package/www/types/customization/customization.d.ts +24 -0
- package/www/types/customization/customization_colors.d.ts +31 -0
- package/www/types/customization/customization_fonts.d.ts +17 -0
- package/www/types/customization/customization_images.d.ts +18 -0
- package/www/types/customization/font.d.ts +14 -0
- package/www/types/customization/screen_orientation.d.ts +4 -0
- package/www/types/detect_faces/detect_face_result.d.ts +16 -0
- package/www/types/detect_faces/detect_faces_attribute.d.ts +15 -0
- package/www/types/detect_faces/detect_faces_attribute_result.d.ts +11 -0
- package/www/types/detect_faces/detect_faces_backend_exception.d.ts +15 -0
- package/www/types/detect_faces/detect_faces_config.d.ts +19 -0
- package/www/types/detect_faces/detect_faces_exception.d.ts +21 -0
- package/www/types/detect_faces/detect_faces_request.d.ts +27 -0
- package/www/types/detect_faces/detect_faces_response.d.ts +12 -0
- package/www/types/detect_faces/detect_faces_scenario.d.ts +10 -0
- package/www/types/face_capture/face_capture_config.d.ts +30 -0
- package/www/types/face_capture/face_capture_exception.d.ts +17 -0
- package/www/types/face_capture/face_capture_image.d.ts +15 -0
- package/www/types/face_capture/face_capture_response.d.ts +9 -0
- package/www/types/image_params/output_image_crop.d.ts +25 -0
- package/www/types/image_params/output_image_params.d.ts +13 -0
- package/www/types/image_params/point.d.ts +6 -0
- package/www/types/image_params/rect.d.ts +8 -0
- package/www/types/image_params/size.d.ts +6 -0
- package/www/types/image_quality/image_quality_characteristic.d.ts +4 -0
- package/www/types/image_quality/image_quality_characteristic_name.d.ts +58 -0
- package/www/types/image_quality/image_quality_group.d.ts +155 -0
- package/www/types/image_quality/image_quality_range.d.ts +8 -0
- package/www/types/image_quality/image_quality_result.d.ts +30 -0
- package/www/types/index.d.ts +159 -0
- package/www/types/init/face_sdk_version.d.ts +7 -0
- package/www/types/init/init_config.d.ts +7 -0
- package/www/types/init/init_exception.d.ts +20 -0
- package/www/types/init/license_exception.d.ts +21 -0
- package/www/types/liveness/liveness_backend_exception.d.ts +30 -0
- package/www/types/liveness/liveness_config.d.ts +56 -0
- package/www/types/liveness/liveness_exception.d.ts +26 -0
- package/www/types/liveness/liveness_notification.d.ts +28 -0
- package/www/types/liveness/liveness_response.d.ts +18 -0
- package/www/types/match_faces/compared_face.d.ts +11 -0
- package/www/types/match_faces/compared_faces_pair.d.ts +12 -0
- package/www/types/match_faces/compared_faces_split.d.ts +8 -0
- package/www/types/match_faces/match_faces_backend_exception.d.ts +6 -0
- package/www/types/match_faces/match_faces_config.d.ts +14 -0
- package/www/types/match_faces/match_faces_detection.d.ts +12 -0
- package/www/types/match_faces/match_faces_detection_face.d.ts +13 -0
- package/www/types/match_faces/match_faces_exception.d.ts +21 -0
- package/www/types/match_faces/match_faces_image.d.ts +16 -0
- package/www/types/match_faces/match_faces_request.d.ts +18 -0
- package/www/types/match_faces/match_faces_response.d.ts +12 -0
- package/www/types/person_database/edit_group_persons_request.d.ts +8 -0
- package/www/types/person_database/image_upload.d.ts +6 -0
- package/www/types/person_database/pageable_item_list.d.ts +7 -0
- package/www/types/person_database/person.d.ts +10 -0
- package/www/types/person_database/person_database.d.ts +92 -0
- package/www/types/person_database/person_group.d.ts +8 -0
- package/www/types/person_database/person_image.d.ts +10 -0
- package/www/types/person_database/search_person.d.ts +15 -0
- package/www/types/person_database/search_person_detection.d.ts +11 -0
- package/www/types/person_database/search_person_image.d.ts +12 -0
- package/www/types/person_database/search_person_request.d.ts +15 -0
|
@@ -0,0 +1,342 @@
|
|
|
1
|
+
# This file is automatically @generated by Poetry 1.4.0 and should not be changed by hand.
|
|
2
|
+
|
|
3
|
+
[[package]]
|
|
4
|
+
name = "atomicwrites"
|
|
5
|
+
version = "1.4.1"
|
|
6
|
+
description = "Atomic file writes."
|
|
7
|
+
category = "dev"
|
|
8
|
+
optional = false
|
|
9
|
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
10
|
+
files = [
|
|
11
|
+
{file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"},
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "attrs"
|
|
16
|
+
version = "23.2.0"
|
|
17
|
+
description = "Classes Without Boilerplate"
|
|
18
|
+
category = "dev"
|
|
19
|
+
optional = false
|
|
20
|
+
python-versions = ">=3.7"
|
|
21
|
+
files = [
|
|
22
|
+
{file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"},
|
|
23
|
+
{file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"},
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[package.extras]
|
|
27
|
+
cov = ["attrs[tests]", "coverage[toml] (>=5.3)"]
|
|
28
|
+
dev = ["attrs[tests]", "pre-commit"]
|
|
29
|
+
docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"]
|
|
30
|
+
tests = ["attrs[tests-no-zope]", "zope-interface"]
|
|
31
|
+
tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"]
|
|
32
|
+
tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"]
|
|
33
|
+
|
|
34
|
+
[[package]]
|
|
35
|
+
name = "black"
|
|
36
|
+
version = "21.12b0"
|
|
37
|
+
description = "The uncompromising code formatter."
|
|
38
|
+
category = "dev"
|
|
39
|
+
optional = false
|
|
40
|
+
python-versions = ">=3.6.2"
|
|
41
|
+
files = [
|
|
42
|
+
{file = "black-21.12b0-py3-none-any.whl", hash = "sha256:a615e69ae185e08fdd73e4715e260e2479c861b5740057fde6e8b4e3b7dd589f"},
|
|
43
|
+
{file = "black-21.12b0.tar.gz", hash = "sha256:77b80f693a569e2e527958459634f18df9b0ba2625ba4e0c2d5da5be42e6f2b3"},
|
|
44
|
+
]
|
|
45
|
+
|
|
46
|
+
[package.dependencies]
|
|
47
|
+
click = ">=7.1.2"
|
|
48
|
+
mypy-extensions = ">=0.4.3"
|
|
49
|
+
pathspec = ">=0.9.0,<1"
|
|
50
|
+
platformdirs = ">=2"
|
|
51
|
+
tomli = ">=0.2.6,<2.0.0"
|
|
52
|
+
typing-extensions = [
|
|
53
|
+
{version = ">=3.10.0.0", markers = "python_version < \"3.10\""},
|
|
54
|
+
{version = ">=3.10.0.0,<3.10.0.1 || >3.10.0.1", markers = "python_version >= \"3.10\""},
|
|
55
|
+
]
|
|
56
|
+
|
|
57
|
+
[package.extras]
|
|
58
|
+
colorama = ["colorama (>=0.4.3)"]
|
|
59
|
+
d = ["aiohttp (>=3.7.4)"]
|
|
60
|
+
jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"]
|
|
61
|
+
python2 = ["typed-ast (>=1.4.3)"]
|
|
62
|
+
uvloop = ["uvloop (>=0.15.2)"]
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "click"
|
|
66
|
+
version = "8.1.7"
|
|
67
|
+
description = "Composable command line interface toolkit"
|
|
68
|
+
category = "main"
|
|
69
|
+
optional = false
|
|
70
|
+
python-versions = ">=3.7"
|
|
71
|
+
files = [
|
|
72
|
+
{file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"},
|
|
73
|
+
{file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"},
|
|
74
|
+
]
|
|
75
|
+
|
|
76
|
+
[package.dependencies]
|
|
77
|
+
colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "colorama"
|
|
81
|
+
version = "0.4.6"
|
|
82
|
+
description = "Cross-platform colored terminal text."
|
|
83
|
+
category = "main"
|
|
84
|
+
optional = false
|
|
85
|
+
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
|
|
86
|
+
files = [
|
|
87
|
+
{file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"},
|
|
88
|
+
{file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"},
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "flake8"
|
|
93
|
+
version = "3.9.2"
|
|
94
|
+
description = "the modular source code checker: pep8 pyflakes and co"
|
|
95
|
+
category = "dev"
|
|
96
|
+
optional = false
|
|
97
|
+
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
|
|
98
|
+
files = [
|
|
99
|
+
{file = "flake8-3.9.2-py2.py3-none-any.whl", hash = "sha256:bf8fd333346d844f616e8d47905ef3a3384edae6b4e9beb0c5101e25e3110907"},
|
|
100
|
+
{file = "flake8-3.9.2.tar.gz", hash = "sha256:07528381786f2a6237b061f6e96610a4167b226cb926e2aa2b6b1d78057c576b"},
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[package.dependencies]
|
|
104
|
+
mccabe = ">=0.6.0,<0.7.0"
|
|
105
|
+
pycodestyle = ">=2.7.0,<2.8.0"
|
|
106
|
+
pyflakes = ">=2.3.0,<2.4.0"
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "iniconfig"
|
|
110
|
+
version = "2.0.0"
|
|
111
|
+
description = "brain-dead simple config-ini parsing"
|
|
112
|
+
category = "dev"
|
|
113
|
+
optional = false
|
|
114
|
+
python-versions = ">=3.7"
|
|
115
|
+
files = [
|
|
116
|
+
{file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"},
|
|
117
|
+
{file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"},
|
|
118
|
+
]
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "mccabe"
|
|
122
|
+
version = "0.6.1"
|
|
123
|
+
description = "McCabe checker, plugin for flake8"
|
|
124
|
+
category = "dev"
|
|
125
|
+
optional = false
|
|
126
|
+
python-versions = "*"
|
|
127
|
+
files = [
|
|
128
|
+
{file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"},
|
|
129
|
+
{file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"},
|
|
130
|
+
]
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "mypy-extensions"
|
|
134
|
+
version = "1.0.0"
|
|
135
|
+
description = "Type system extensions for programs checked with the mypy type checker."
|
|
136
|
+
category = "dev"
|
|
137
|
+
optional = false
|
|
138
|
+
python-versions = ">=3.5"
|
|
139
|
+
files = [
|
|
140
|
+
{file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"},
|
|
141
|
+
{file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"},
|
|
142
|
+
]
|
|
143
|
+
|
|
144
|
+
[[package]]
|
|
145
|
+
name = "packaging"
|
|
146
|
+
version = "24.0"
|
|
147
|
+
description = "Core utilities for Python packages"
|
|
148
|
+
category = "dev"
|
|
149
|
+
optional = false
|
|
150
|
+
python-versions = ">=3.7"
|
|
151
|
+
files = [
|
|
152
|
+
{file = "packaging-24.0-py3-none-any.whl", hash = "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5"},
|
|
153
|
+
{file = "packaging-24.0.tar.gz", hash = "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9"},
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "pathspec"
|
|
158
|
+
version = "0.12.1"
|
|
159
|
+
description = "Utility library for gitignore style pattern matching of file paths."
|
|
160
|
+
category = "dev"
|
|
161
|
+
optional = false
|
|
162
|
+
python-versions = ">=3.8"
|
|
163
|
+
files = [
|
|
164
|
+
{file = "pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08"},
|
|
165
|
+
{file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"},
|
|
166
|
+
]
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "platformdirs"
|
|
170
|
+
version = "4.2.0"
|
|
171
|
+
description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
|
|
172
|
+
category = "dev"
|
|
173
|
+
optional = false
|
|
174
|
+
python-versions = ">=3.8"
|
|
175
|
+
files = [
|
|
176
|
+
{file = "platformdirs-4.2.0-py3-none-any.whl", hash = "sha256:0614df2a2f37e1a662acbd8e2b25b92ccf8632929bc6d43467e17fe89c75e068"},
|
|
177
|
+
{file = "platformdirs-4.2.0.tar.gz", hash = "sha256:ef0cc731df711022c174543cb70a9b5bd22e5a9337c8624ef2c2ceb8ddad8768"},
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
[package.extras]
|
|
181
|
+
docs = ["furo (>=2023.9.10)", "proselint (>=0.13)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"]
|
|
182
|
+
test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)"]
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "pluggy"
|
|
186
|
+
version = "1.4.0"
|
|
187
|
+
description = "plugin and hook calling mechanisms for python"
|
|
188
|
+
category = "dev"
|
|
189
|
+
optional = false
|
|
190
|
+
python-versions = ">=3.8"
|
|
191
|
+
files = [
|
|
192
|
+
{file = "pluggy-1.4.0-py3-none-any.whl", hash = "sha256:7db9f7b503d67d1c5b95f59773ebb58a8c1c288129a88665838012cfb07b8981"},
|
|
193
|
+
{file = "pluggy-1.4.0.tar.gz", hash = "sha256:8c85c2876142a764e5b7548e7d9a0e0ddb46f5185161049a79b7e974454223be"},
|
|
194
|
+
]
|
|
195
|
+
|
|
196
|
+
[package.extras]
|
|
197
|
+
dev = ["pre-commit", "tox"]
|
|
198
|
+
testing = ["pytest", "pytest-benchmark"]
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "py"
|
|
202
|
+
version = "1.11.0"
|
|
203
|
+
description = "library with cross-python path, ini-parsing, io, code, log facilities"
|
|
204
|
+
category = "dev"
|
|
205
|
+
optional = false
|
|
206
|
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
|
207
|
+
files = [
|
|
208
|
+
{file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"},
|
|
209
|
+
{file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"},
|
|
210
|
+
]
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "pycodestyle"
|
|
214
|
+
version = "2.7.0"
|
|
215
|
+
description = "Python style guide checker"
|
|
216
|
+
category = "dev"
|
|
217
|
+
optional = false
|
|
218
|
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
219
|
+
files = [
|
|
220
|
+
{file = "pycodestyle-2.7.0-py2.py3-none-any.whl", hash = "sha256:514f76d918fcc0b55c6680472f0a37970994e07bbb80725808c17089be302068"},
|
|
221
|
+
{file = "pycodestyle-2.7.0.tar.gz", hash = "sha256:c389c1d06bf7904078ca03399a4816f974a1d590090fecea0c63ec26ebaf1cef"},
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "pyflakes"
|
|
226
|
+
version = "2.3.1"
|
|
227
|
+
description = "passive checker of Python programs"
|
|
228
|
+
category = "dev"
|
|
229
|
+
optional = false
|
|
230
|
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
231
|
+
files = [
|
|
232
|
+
{file = "pyflakes-2.3.1-py2.py3-none-any.whl", hash = "sha256:7893783d01b8a89811dd72d7dfd4d84ff098e5eed95cfa8905b22bbffe52efc3"},
|
|
233
|
+
{file = "pyflakes-2.3.1.tar.gz", hash = "sha256:f5bc8ecabc05bb9d291eb5203d6810b49040f6ff446a756326104746cc00c1db"},
|
|
234
|
+
]
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "pytest"
|
|
238
|
+
version = "6.2.5"
|
|
239
|
+
description = "pytest: simple powerful testing with Python"
|
|
240
|
+
category = "dev"
|
|
241
|
+
optional = false
|
|
242
|
+
python-versions = ">=3.6"
|
|
243
|
+
files = [
|
|
244
|
+
{file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"},
|
|
245
|
+
{file = "pytest-6.2.5.tar.gz", hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"},
|
|
246
|
+
]
|
|
247
|
+
|
|
248
|
+
[package.dependencies]
|
|
249
|
+
atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""}
|
|
250
|
+
attrs = ">=19.2.0"
|
|
251
|
+
colorama = {version = "*", markers = "sys_platform == \"win32\""}
|
|
252
|
+
iniconfig = "*"
|
|
253
|
+
packaging = "*"
|
|
254
|
+
pluggy = ">=0.12,<2.0"
|
|
255
|
+
py = ">=1.8.2"
|
|
256
|
+
toml = "*"
|
|
257
|
+
|
|
258
|
+
[package.extras]
|
|
259
|
+
testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"]
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "python-dateutil"
|
|
263
|
+
version = "2.9.0.post0"
|
|
264
|
+
description = "Extensions to the standard Python datetime module"
|
|
265
|
+
category = "main"
|
|
266
|
+
optional = false
|
|
267
|
+
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
|
|
268
|
+
files = [
|
|
269
|
+
{file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"},
|
|
270
|
+
{file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"},
|
|
271
|
+
]
|
|
272
|
+
|
|
273
|
+
[package.dependencies]
|
|
274
|
+
six = ">=1.5"
|
|
275
|
+
|
|
276
|
+
[[package]]
|
|
277
|
+
name = "python-dotenv"
|
|
278
|
+
version = "0.19.2"
|
|
279
|
+
description = "Read key-value pairs from a .env file and set them as environment variables"
|
|
280
|
+
category = "main"
|
|
281
|
+
optional = false
|
|
282
|
+
python-versions = ">=3.5"
|
|
283
|
+
files = [
|
|
284
|
+
{file = "python-dotenv-0.19.2.tar.gz", hash = "sha256:a5de49a31e953b45ff2d2fd434bbc2670e8db5273606c1e737cc6b93eff3655f"},
|
|
285
|
+
{file = "python_dotenv-0.19.2-py2.py3-none-any.whl", hash = "sha256:32b2bdc1873fd3a3c346da1c6db83d0053c3c62f28f1f38516070c4c8971b1d3"},
|
|
286
|
+
]
|
|
287
|
+
|
|
288
|
+
[package.extras]
|
|
289
|
+
cli = ["click (>=5.0)"]
|
|
290
|
+
|
|
291
|
+
[[package]]
|
|
292
|
+
name = "six"
|
|
293
|
+
version = "1.16.0"
|
|
294
|
+
description = "Python 2 and 3 compatibility utilities"
|
|
295
|
+
category = "main"
|
|
296
|
+
optional = false
|
|
297
|
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
|
|
298
|
+
files = [
|
|
299
|
+
{file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
|
|
300
|
+
{file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
|
|
301
|
+
]
|
|
302
|
+
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "toml"
|
|
305
|
+
version = "0.10.2"
|
|
306
|
+
description = "Python Library for Tom's Obvious, Minimal Language"
|
|
307
|
+
category = "main"
|
|
308
|
+
optional = false
|
|
309
|
+
python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
|
|
310
|
+
files = [
|
|
311
|
+
{file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"},
|
|
312
|
+
{file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"},
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "tomli"
|
|
317
|
+
version = "1.2.3"
|
|
318
|
+
description = "A lil' TOML parser"
|
|
319
|
+
category = "dev"
|
|
320
|
+
optional = false
|
|
321
|
+
python-versions = ">=3.6"
|
|
322
|
+
files = [
|
|
323
|
+
{file = "tomli-1.2.3-py3-none-any.whl", hash = "sha256:e3069e4be3ead9668e21cb9b074cd948f7b3113fd9c8bba083f48247aab8b11c"},
|
|
324
|
+
{file = "tomli-1.2.3.tar.gz", hash = "sha256:05b6166bff487dc068d322585c7ea4ef78deed501cc124060e0f238e89a9231f"},
|
|
325
|
+
]
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "typing-extensions"
|
|
329
|
+
version = "4.10.0"
|
|
330
|
+
description = "Backported and Experimental Type Hints for Python 3.8+"
|
|
331
|
+
category = "dev"
|
|
332
|
+
optional = false
|
|
333
|
+
python-versions = ">=3.8"
|
|
334
|
+
files = [
|
|
335
|
+
{file = "typing_extensions-4.10.0-py3-none-any.whl", hash = "sha256:69b1a937c3a517342112fb4c6df7e72fc39a38e7891a5730ed4985b5214b5475"},
|
|
336
|
+
{file = "typing_extensions-4.10.0.tar.gz", hash = "sha256:b0abd7c89e8fb96f98db18d86106ff1d90ab692004eb746cf6eda2682f91b3cb"},
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[metadata]
|
|
340
|
+
lock-version = "2.0"
|
|
341
|
+
python-versions = "^3.8"
|
|
342
|
+
content-hash = "4386d9f53248f607d7fc106e2272f32cc5638e146f211854ce4a67b0e891d79a"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[tool.poetry]
|
|
2
|
+
name = "ios_ci"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Collection of tools related to Continuous Integration for iOS Platform"
|
|
5
|
+
authors = ["Regula Forensics"]
|
|
6
|
+
|
|
7
|
+
[tool.poetry.dependencies]
|
|
8
|
+
python = "^3.8"
|
|
9
|
+
click = "^8.0.1"
|
|
10
|
+
python-dotenv = "^0.19.0"
|
|
11
|
+
toml = "^0.10.2"
|
|
12
|
+
python-dateutil = "^2.9.0.post0"
|
|
13
|
+
|
|
14
|
+
[tool.poetry.dev-dependencies]
|
|
15
|
+
pytest = "^6.2.5"
|
|
16
|
+
flake8 = "^3.9.2"
|
|
17
|
+
black = "^21.8b0"
|
|
18
|
+
|
|
19
|
+
[tool.poetry.scripts]
|
|
20
|
+
test = 'scripts:test'
|
|
21
|
+
ios-ci = 'ios_ci.cli:cli'
|
|
22
|
+
ci = 'ios_ci.cli:cli'
|
|
23
|
+
|
|
24
|
+
[build-system]
|
|
25
|
+
requires = ["poetry-core>=1.0.0"]
|
|
26
|
+
build-backend = "poetry.core.masonry.api"
|
|
File without changes
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Pod::Spec.new do |s|
|
|
2
|
+
s.name = 'BTDevice'
|
|
3
|
+
s.version = '5.6.2'
|
|
4
|
+
s.summary = 'Framework for reading and authenticity verification of identity documents using the Regula mobile document authenticator'
|
|
5
|
+
s.license = {
|
|
6
|
+
type: 'commercial',
|
|
7
|
+
text: <<-LICENSE
|
|
8
|
+
© 2024 RegulaForensics. All rights reserved.
|
|
9
|
+
LICENSE
|
|
10
|
+
}
|
|
11
|
+
s.homepage = 'https://mobile.regulaforensics.com'
|
|
12
|
+
s.author = { 'RegulaForensics' => 'support@regulaforensics.com' }
|
|
13
|
+
s.source = { http: 'https://pods.regulaforensics.com/BTDevice/5.6.2/BTDevice-5.6.2.zip' }
|
|
14
|
+
s.platform = :ios
|
|
15
|
+
s.ios.deployment_target = '11.0.0'
|
|
16
|
+
s.ios.vendored_frameworks = 'BTDevice.xcframework'
|
|
17
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Pod::Spec.new do |s|
|
|
2
|
+
s.name = 'BTDeviceBeta'
|
|
3
|
+
s.version = '5.6.1'
|
|
4
|
+
s.summary = 'Framework for reading and authenticity verification of identity documents using the Regula mobile document authenticator'
|
|
5
|
+
s.license = {
|
|
6
|
+
type: 'commercial',
|
|
7
|
+
text: <<-LICENSE
|
|
8
|
+
© 2024 RegulaForensics. All rights reserved.
|
|
9
|
+
LICENSE
|
|
10
|
+
}
|
|
11
|
+
s.homepage = 'https://mobile.regulaforensics.com'
|
|
12
|
+
s.author = { 'RegulaForensics' => 'support@regulaforensics.com' }
|
|
13
|
+
s.source = { http: 'https://pods.regulaforensics.com/BTDeviceBeta/5.6.1/BTDeviceBeta-5.6.1.zip' }
|
|
14
|
+
s.platform = :ios
|
|
15
|
+
s.ios.deployment_target = '11.0.0'
|
|
16
|
+
s.ios.vendored_frameworks = 'BTDevice.xcframework'
|
|
17
|
+
end
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Pod::Spec.new do |s|
|
|
2
|
+
s.name = 'DocumentReaderBeta'
|
|
3
|
+
s.version = '5.5.1'
|
|
4
|
+
s.summary = 'Document Reader API framework for fast and accurate data extraction from identity documents'
|
|
5
|
+
s.license = {
|
|
6
|
+
type: 'commercial',
|
|
7
|
+
text: <<-LICENSE
|
|
8
|
+
© 2024 RegulaForensics. All rights reserved.
|
|
9
|
+
LICENSE
|
|
10
|
+
}
|
|
11
|
+
s.homepage = 'https://mobile.regulaforensics.com'
|
|
12
|
+
s.author = { 'RegulaForensics' => 'support@regulaforensics.com' }
|
|
13
|
+
s.source = { http: 'https://pods.regulaforensics.com/DocumentReaderBeta/5.5.1/DocumentReaderBeta-5.5.1.zip' }
|
|
14
|
+
s.platform = :ios
|
|
15
|
+
s.weak_frameworks = 'CoreNFC'
|
|
16
|
+
s.ios.deployment_target = '11.0.0'
|
|
17
|
+
s.ios.vendored_frameworks = 'DocumentReader.xcframework'
|
|
18
|
+
s.dependency 'RegulaCommonBeta', '5.6.0'
|
|
19
|
+
end
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Pod::Spec.new do |s|
|
|
2
|
+
s.name = 'DocumentReaderBeta'
|
|
3
|
+
s.version = '5.5.1'
|
|
4
|
+
s.summary = 'Document Reader API framework for fast and accurate data extraction from identity documents'
|
|
5
|
+
s.license = {
|
|
6
|
+
type: 'commercial',
|
|
7
|
+
text: <<-LICENSE
|
|
8
|
+
© 2024 RegulaForensics. All rights reserved.
|
|
9
|
+
LICENSE
|
|
10
|
+
}
|
|
11
|
+
s.homepage = 'https://mobile.regulaforensics.com'
|
|
12
|
+
s.author = { 'RegulaForensics' => 'support@regulaforensics.com' }
|
|
13
|
+
s.source = { http: 'https://pods.regulaforensics.com/DocumentReaderBeta/5.5.1/DocumentReaderBeta-5.5.1.zip' }
|
|
14
|
+
s.platform = :ios
|
|
15
|
+
s.weak_frameworks = 'CoreNFC'
|
|
16
|
+
s.ios.deployment_target = '11.0.0'
|
|
17
|
+
s.ios.vendored_frameworks = 'DocumentReader.xcframework'
|
|
18
|
+
s.dependency 'RegulaCommon', '5.6.0'
|
|
19
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Pod::Spec.new do |s|
|
|
2
|
+
s.name = 'DocumentReaderFullRFID'
|
|
3
|
+
s.version = '5.6.2'
|
|
4
|
+
s.summary = 'Document Reader Core framework for fast and accurate data extraction from identity documents'
|
|
5
|
+
s.license = {
|
|
6
|
+
type: 'commercial',
|
|
7
|
+
text: <<-LICENSE
|
|
8
|
+
© 2024 RegulaForensics. All rights reserved.
|
|
9
|
+
LICENSE
|
|
10
|
+
}
|
|
11
|
+
s.homepage = 'https://mobile.regulaforensics.com'
|
|
12
|
+
s.author = { 'RegulaForensics' => 'support@regulaforensics.com' }
|
|
13
|
+
s.source = { http: 'https://pods.regulaforensics.com/FullRFID/5.6.2/DocumentReaderCore_fullrfid_5.6.2.zip' }
|
|
14
|
+
s.platform = :ios
|
|
15
|
+
s.ios.deployment_target = '11.0.0'
|
|
16
|
+
s.ios.vendored_frameworks = 'DocumentReaderCore.xcframework'
|
|
17
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Pod::Spec.new do |s|
|
|
2
|
+
s.name = 'DocumentReaderFullRFIDBeta'
|
|
3
|
+
s.version = '5.6.1'
|
|
4
|
+
s.summary = 'Document Reader Core framework for fast and accurate data extraction from identity documents'
|
|
5
|
+
s.license = {
|
|
6
|
+
type: 'commercial',
|
|
7
|
+
text: <<-LICENSE
|
|
8
|
+
© 2024 RegulaForensics. All rights reserved.
|
|
9
|
+
LICENSE
|
|
10
|
+
}
|
|
11
|
+
s.homepage = 'https://mobile.regulaforensics.com'
|
|
12
|
+
s.author = { 'RegulaForensics' => 'support@regulaforensics.com' }
|
|
13
|
+
s.source = { http: 'https://pods.regulaforensics.com/FullRFIDBeta/5.6.1/DocumentReaderCoreBeta_fullrfid_5.6.1.zip' }
|
|
14
|
+
s.platform = :ios
|
|
15
|
+
s.ios.deployment_target = '11.0.0'
|
|
16
|
+
s.ios.vendored_frameworks = 'DocumentReaderCore.xcframework'
|
|
17
|
+
end
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Pod::Spec.new do |s|
|
|
2
|
+
s.name = 'DocumentReader'
|
|
3
|
+
s.version = '5.6.0'
|
|
4
|
+
s.summary = 'Document Reader API framework for fast and accurate data extraction from identity documents'
|
|
5
|
+
s.license = {
|
|
6
|
+
type: 'commercial',
|
|
7
|
+
text: <<-LICENSE
|
|
8
|
+
© 2024 RegulaForensics. All rights reserved.
|
|
9
|
+
LICENSE
|
|
10
|
+
}
|
|
11
|
+
s.homepage = 'https://mobile.regulaforensics.com'
|
|
12
|
+
s.author = { 'RegulaForensics' => 'support@regulaforensics.com' }
|
|
13
|
+
s.source = { http: 'https://pods.regulaforensics.com/DocumentReader/5.6.0/DocumentReader-5.6.0.zip' }
|
|
14
|
+
s.platform = :ios
|
|
15
|
+
s.weak_frameworks = 'CoreNFC'
|
|
16
|
+
s.ios.deployment_target = '11.0.0'
|
|
17
|
+
s.ios.vendored_frameworks = 'DocumentReader.xcframework'
|
|
18
|
+
s.dependency 'RegulaCommonBeta', '5.6.0'
|
|
19
|
+
end
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Pod::Spec.new do |s|
|
|
2
|
+
s.name = 'DocumentReader'
|
|
3
|
+
s.version = '5.6.0'
|
|
4
|
+
s.summary = 'Document Reader API framework for fast and accurate data extraction from identity documents'
|
|
5
|
+
s.license = {
|
|
6
|
+
type: 'commercial',
|
|
7
|
+
text: <<-LICENSE
|
|
8
|
+
© 2024 RegulaForensics. All rights reserved.
|
|
9
|
+
LICENSE
|
|
10
|
+
}
|
|
11
|
+
s.homepage = 'https://mobile.regulaforensics.com'
|
|
12
|
+
s.author = { 'RegulaForensics' => 'support@regulaforensics.com' }
|
|
13
|
+
s.source = { http: 'https://pods.regulaforensics.com/DocumentReader/5.6.0/DocumentReader-5.6.0.zip' }
|
|
14
|
+
s.platform = :ios
|
|
15
|
+
s.weak_frameworks = 'CoreNFC'
|
|
16
|
+
s.ios.deployment_target = '11.0.0'
|
|
17
|
+
s.ios.vendored_frameworks = 'DocumentReader.xcframework'
|
|
18
|
+
s.dependency 'RegulaCommon', '5.6.0'
|
|
19
|
+
end
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Pod::Spec.new do |s|
|
|
2
|
+
s.name = 'FaceSDK'
|
|
3
|
+
s.version = '5.6.2'
|
|
4
|
+
s.summary = 'Framework for face matching, face recognition, and liveness detection'
|
|
5
|
+
s.license = {
|
|
6
|
+
type: 'commercial',
|
|
7
|
+
text: <<-LICENSE
|
|
8
|
+
© 2024 RegulaForensics. All rights reserved.
|
|
9
|
+
LICENSE
|
|
10
|
+
}
|
|
11
|
+
s.homepage = 'https://mobile.regulaforensics.com'
|
|
12
|
+
s.author = { 'RegulaForensics' => 'support@regulaforensics.com' }
|
|
13
|
+
s.source = { http: 'https://pods.regulaforensics.com/FaceSDK/5.6.2/FaceSDK-5.6.2.zip' }
|
|
14
|
+
s.platform = :ios
|
|
15
|
+
s.ios.deployment_target = '11.0.0'
|
|
16
|
+
s.ios.vendored_frameworks = 'FaceSDK.xcframework'
|
|
17
|
+
s.dependency 'RegulaCommon', '5.6.2'
|
|
18
|
+
end
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Pod::Spec.new do |s|
|
|
2
|
+
s.name = 'FaceSDKBeta'
|
|
3
|
+
s.version = '5.6.1'
|
|
4
|
+
s.summary = 'Framework for face matching, face recognition, and liveness detection'
|
|
5
|
+
s.license = {
|
|
6
|
+
type: 'commercial',
|
|
7
|
+
text: <<-LICENSE
|
|
8
|
+
© 2024 RegulaForensics. All rights reserved.
|
|
9
|
+
LICENSE
|
|
10
|
+
}
|
|
11
|
+
s.homepage = 'https://mobile.regulaforensics.com'
|
|
12
|
+
s.author = { 'RegulaForensics' => 'support@regulaforensics.com' }
|
|
13
|
+
s.source = { http: 'https://pods.regulaforensics.com/FaceSDKBeta/5.6.1/FaceSDKBeta-5.6.1.zip' }
|
|
14
|
+
s.platform = :ios
|
|
15
|
+
s.ios.deployment_target = '11.0.0'
|
|
16
|
+
s.ios.vendored_frameworks = 'FaceSDK.xcframework'
|
|
17
|
+
s.dependency 'RegulaCommonBeta', '5.6.1'
|
|
18
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Pod::Spec.new do |s|
|
|
2
|
+
s.name = 'IRS'
|
|
3
|
+
s.version = '5.4.2'
|
|
4
|
+
s.summary = 'Databases of travel documents, banknotes, driver\'s licenses and vehicle registration certificates'
|
|
5
|
+
s.license = {
|
|
6
|
+
type: 'commercial',
|
|
7
|
+
text: <<-LICENSE
|
|
8
|
+
© 2024 RegulaForensics. All rights reserved.
|
|
9
|
+
LICENSE
|
|
10
|
+
}
|
|
11
|
+
s.homepage = 'https://mobile.regulaforensics.com'
|
|
12
|
+
s.author = { 'RegulaForensics' => 'support@regulaforensics.com' }
|
|
13
|
+
s.source = { http: 'https://pods.regulaforensics.com/IRS/5.4.2/IRS-5.4.2.zip' }
|
|
14
|
+
s.platform = :ios
|
|
15
|
+
s.ios.deployment_target = '13.0.0'
|
|
16
|
+
s.ios.vendored_frameworks = 'IRS.xcframework'
|
|
17
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Pod::Spec.new do |s|
|
|
2
|
+
s.name = 'IRSBeta'
|
|
3
|
+
s.version = '5.4.1'
|
|
4
|
+
s.summary = 'Databases of travel documents, banknotes, driver\'s licenses and vehicle registration certificates'
|
|
5
|
+
s.license = {
|
|
6
|
+
type: 'commercial',
|
|
7
|
+
text: <<-LICENSE
|
|
8
|
+
© 2024 RegulaForensics. All rights reserved.
|
|
9
|
+
LICENSE
|
|
10
|
+
}
|
|
11
|
+
s.homepage = 'https://mobile.regulaforensics.com'
|
|
12
|
+
s.author = { 'RegulaForensics' => 'support@regulaforensics.com' }
|
|
13
|
+
s.source = { http: 'https://pods.regulaforensics.com/IRSBeta/5.4.1/IRSBeta-5.4.1.zip' }
|
|
14
|
+
s.platform = :ios
|
|
15
|
+
s.ios.deployment_target = '13.0.0'
|
|
16
|
+
s.ios.vendored_frameworks = 'IRS.xcframework'
|
|
17
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Pod::Spec.new do |s|
|
|
2
|
+
s.name = 'RegulaCommon'
|
|
3
|
+
s.version = '5.4.1'
|
|
4
|
+
s.summary = 'Collection of shared code and modules for Regula solutions.'
|
|
5
|
+
s.license = {
|
|
6
|
+
type: 'commercial',
|
|
7
|
+
text: <<-LICENSE
|
|
8
|
+
© 2024 RegulaForensics. All rights reserved.
|
|
9
|
+
LICENSE
|
|
10
|
+
}
|
|
11
|
+
s.homepage = 'https://mobile.regulaforensics.com'
|
|
12
|
+
s.author = { 'RegulaForensics' => 'support@regulaforensics.com' }
|
|
13
|
+
s.source = { http: 'https://pods.regulaforensics.com/RegulaCommon/5.4.1/RegulaCommon-5.4.1.zip' }
|
|
14
|
+
s.platform = :ios
|
|
15
|
+
s.ios.deployment_target = '11.0.0'
|
|
16
|
+
s.ios.vendored_frameworks = 'RegulaCommon.xcframework'
|
|
17
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Pod::Spec.new do |s|
|
|
2
|
+
s.name = 'RegulaCommonBeta'
|
|
3
|
+
s.version = '5.4.1'
|
|
4
|
+
s.summary = 'Collection of shared code and modules for Regula solutions.'
|
|
5
|
+
s.license = {
|
|
6
|
+
type: 'commercial',
|
|
7
|
+
text: <<-LICENSE
|
|
8
|
+
© 2024 RegulaForensics. All rights reserved.
|
|
9
|
+
LICENSE
|
|
10
|
+
}
|
|
11
|
+
s.homepage = 'https://mobile.regulaforensics.com'
|
|
12
|
+
s.author = { 'RegulaForensics' => 'support@regulaforensics.com' }
|
|
13
|
+
s.source = { http: 'https://pods.regulaforensics.com/RegulaCommonBeta/5.4.1/RegulaCommonBeta-5.4.1.zip' }
|
|
14
|
+
s.platform = :ios
|
|
15
|
+
s.ios.deployment_target = '11.0.0'
|
|
16
|
+
s.ios.vendored_frameworks = 'RegulaCommon.xcframework'
|
|
17
|
+
end
|