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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0256a5d5a35915153e433d6bef6c697a4e5670ed25014b21c184253f5b8cea31
4
- data.tar.gz: 311bcb8052308ba0d543fa7d23f557b3e49555c31436b1cfe22833bf96d09c39
3
+ metadata.gz: cfb7b18b264e3489d0e51f3f9cae6c8557ef535fbf3b348e6b843695c748d76f
4
+ data.tar.gz: 0f1c92749d1a139f02bd8216136eab00842d718425e45a5ffbe7174a69d1cf8a
5
5
  SHA512:
6
- metadata.gz: 5892d83748e2c5a320e99dcfa639de14a0a701f3fe39192173600f264c7b0d466873b6752728b57e5cf83d06f1ab1ce3535cd511d6be9d1c148e18a50b7e75ca
7
- data.tar.gz: 4876f4872cddb222bbf354dc050902d4c92d36c73a88f6b9ee40eadc41996aae72f7a5b844b269366dbbb514f586fbafbf28226f96efc9249451cf74567a670c
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- smile-identity-core (2.1.0)
4
+ smile-identity-core (2.1.1)
5
5
  rubyzip (~> 1.2, >= 1.2.3)
6
6
  typhoeus (~> 1.0, >= 1.0.1)
7
7
 
@@ -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
- SMART_SELFIE_REGISTRATION = 2
7
- SMART_SELFIE_AUTHENTICATION = 4
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
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SmileIdentityCore
4
- VERSION = '2.1.0'
4
+ VERSION = '2.1.1'
5
5
  SOURCE_SDK = 'Ruby'
6
6
  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.0
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-28 00:00:00.000000000 Z
11
+ date: 2022-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler