smile-identity-core 2.1.0 → 2.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +1 -1
- data/lib/smile-identity-core/constants/job_type.rb +15 -2
- data/lib/smile-identity-core/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cfb7b18b264e3489d0e51f3f9cae6c8557ef535fbf3b348e6b843695c748d76f
|
4
|
+
data.tar.gz: 0f1c92749d1a139f02bd8216136eab00842d718425e45a5ffbe7174a69d1cf8a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d66bd0c015e777468b738e58116219ae48dfa99a98ef2b8a8d53abe2c7d6cc07804e23316aeb39aa0affc1c8be03307d4378c088831e37bb5084910d180713c
|
7
|
+
data.tar.gz: 5eec195935a7fbd2eaf0f85930f8ebbe5578a6be874ff7288b7cc43c120cae9e2666f40eaf043245824657bee3988a4deda19fc93fd59f35def7bb60430454ab
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [2.1.1] - 2022-12-13
|
10
|
+
### Added
|
11
|
+
- Adds UPDATE_PHOTO and COMPARE_USER_INFO to JobType
|
12
|
+
### Changed
|
13
|
+
- Fix wrong constant values for JobType SMART_SELFIE_AUTHENTICATION and SMART_SELFIE_REGISTRATION
|
14
|
+
|
9
15
|
# [2.1.0] - 2022-10-28
|
10
16
|
## Changed
|
11
17
|
- Moved Business verification to IDApi
|
data/Gemfile.lock
CHANGED
@@ -2,12 +2,25 @@
|
|
2
2
|
|
3
3
|
module SmileIdentityCore
|
4
4
|
module JobType
|
5
|
+
# Compares a selfie to a selfie on file.
|
5
6
|
BIOMETRIC_KYC = 1
|
6
|
-
|
7
|
-
SMART_SELFIE_AUTHENTICATION =
|
7
|
+
# Compares a selfie to a selfie on file.
|
8
|
+
SMART_SELFIE_AUTHENTICATION = 2
|
9
|
+
# Creates an enrollee, associates a selfie with a partner_id, user_id
|
10
|
+
SMART_SELFIE_REGISTRATION = 4
|
11
|
+
# Verifies identity information of a person with their personal
|
12
|
+
# information and ID number from one of our supported ID Types.
|
8
13
|
BASIC_KYC = 5
|
14
|
+
# Queries Identity Information of user using ID_number.
|
9
15
|
ENHANCED_KYC = 5
|
16
|
+
# Verifies user info retrieved from the ID issuing authority.
|
10
17
|
DOCUMENT_VERIFICATION = 6
|
18
|
+
# Verifies authenticity of Document IDs, confirms it's linked to the user
|
19
|
+
# using facial biometrics.
|
11
20
|
BUSINESS_VERIFICATION = 7
|
21
|
+
# Updates the photo on file for an enrolled user
|
22
|
+
UPDATE_PHOTO = 8
|
23
|
+
# Compares document verification to an id check
|
24
|
+
COMPARE_USER_INFO = 9
|
12
25
|
end
|
13
26
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: smile-identity-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Smile Identity
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-12-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|