sumsub-ruby-sdk 0.2.0 → 0.2.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9413196d575bbddc26d58047d48137b768f70aa7b257187073338b468c109068
4
- data.tar.gz: 6a291133d2e3a5417ec4f83ca3f30f24130d2e2018f3d768e068345ecf20198d
3
+ metadata.gz: bb0e5ceef811ac7ad232fe0fef90925856a308d531e58b9766fa18bb73fde87a
4
+ data.tar.gz: af6848516f45cc3aa6bdc0bf923e70ab7086852c6e95eec88dbc5c1bf7066031
5
5
  SHA512:
6
- metadata.gz: bda4bb1f88238b57859559b6fcf740550b92225a0290b764a6c29560e6567da41fc5b994b9caac0ec5d273304108abc800d8da2fb5a4d536c2cf2553a75beebd
7
- data.tar.gz: f36d963aae4ef9416227e85893fcb58369d40a9302916ddd74eeca8e2c532ada9608ac12296a7625525b8123f70f8607812ae8b54829ac9b63df63d08620bacc
6
+ metadata.gz: 796f27260f9f4049e5a3925550d9dd6ebc44663a8235beb67beea0d8c412c7d8810c31130873f7195530e1a2346b841fe36d3de347aeaa737eba31c6dbcdacc2
7
+ data.tar.gz: feb4186b84ea89ba6eab461221d5ed16e5715e917c6b0a37842a78abaea1284874e021ba4549ba84e35559bb35aae88bf745805f7b741f54aee468a3b6641b81
data/CHANGELOG.md CHANGED
@@ -4,9 +4,12 @@
4
4
  ### 0.1.3
5
5
  - Require level name as argument in `get_access_token` of `Sumsub::Request`. This change makes the method compatible with the [recent updates in the Sumsub SDK](https://developers.sumsub.com/migrations/sdk.html#sdk-migration-guide).
6
6
 
7
- ### 0.2.0
7
+ ### 0.1.4
8
8
  - General minor fixes (don't require dev gems in the production build, add extra ignored files in `.gitignore`, etc);
9
9
  - Move the `require 'dry-struct'` to the `lib/sumsub.rb`, so we don't need to always require it in our structs;
10
10
  - Add [`generate_external_link`](https://developers.sumsub.com/api-reference/additional-methods.html#generating-websdk-external-link-for-particular-user);
11
11
  - Updated structs with new fields;
12
12
  - Add `WebhookSender` with `get_payload` class method to format the payload before informing it to the `verify_webhook_sender` method (those strange string transformations are necessary in order to receive the right answer from Sumsub).
13
+
14
+ ### 0.2.1
15
+ - New rejection labels ([PR](ydakuka:replace-old-reject-label-with-new-ones))
data/lib/sumsub/types.rb CHANGED
@@ -51,7 +51,9 @@ module Sumsub
51
51
  RejectLabels = Types::Strict::Symbol
52
52
  .constructor(&:to_sym)
53
53
  .enum(
54
- :FORGERY,
54
+ :FORCED_VERIFICATION,
55
+ :LIVENESS_WITH_PHONE,
56
+ :DEEPFAKE,
55
57
  :DOCUMENT_TEMPLATE,
56
58
  :LOW_QUALITY,
57
59
  :SPAM,
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Sumsub
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sumsub-ruby-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rodrigo W. Ehresmann
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-03-14 00:00:00.000000000 Z
11
+ date: 2024-12-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: http
@@ -153,7 +153,7 @@ metadata:
153
153
  homepage_uri: https://github.com/rwehresmann/sumsub-ruby-sdk
154
154
  source_code_uri: https://github.com/rwehresmann/sumsub-ruby-sdk
155
155
  changelog_uri: https://github.com/rwehresmann/sumsub-ruby-sdk/blob/master/CHANGELOG.md
156
- post_install_message:
156
+ post_install_message:
157
157
  rdoc_options: []
158
158
  require_paths:
159
159
  - lib
@@ -168,8 +168,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
168
168
  - !ruby/object:Gem::Version
169
169
  version: '0'
170
170
  requirements: []
171
- rubygems_version: 3.0.9
172
- signing_key:
171
+ rubygems_version: 3.3.7
172
+ signing_key:
173
173
  specification_version: 4
174
174
  summary: SumSub Ruby SDK
175
175
  test_files: []