onfido 3.3.0 → 3.3.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: 8b1b0a9b1f5e69e278fc7001f2cbbce7c86dbf87857592f0d484f995a30060e7
4
- data.tar.gz: 558baf4a305a2834ccbe70e70b9170d22bcb5078fa95137b473362913a7512b4
3
+ metadata.gz: 8220f819286762cde423d812d5af82889eb458337092618fa2a56ed424ae5278
4
+ data.tar.gz: 8be8b6ae86a4efba145d227016e5d702a7e8fccea3eab7462de8e91b453ca2e6
5
5
  SHA512:
6
- metadata.gz: 1f27173db1bf62e097539f20aac439d28b313d430756e44fee5ab981cc5c540cd1e8292546716db9e43946712361d3434ab20e2388349e2988f89a958f9c235e
7
- data.tar.gz: c9edc6a9e9ad038140954efca57e884fa46139e27922ffddfe2be8f1a74aa66afbfd224a6d93bd5cda3d9372facffcdd5cc8c0c7f5ad28dcb60d155292ed099c
6
+ metadata.gz: 22655a021ed1df16e53b6ddfb4a6b39c88977fda5e6bf49971dd107980e04f23d76838324460c879d037d3590c92d2e6d2375103159860338a7af79a3b897d11
7
+ data.tar.gz: aa4cb4e7c81e8dc15ece62bf00a7c9697973209b79e9889e4115d23110e75913b063e50baf0fa4510c5fc49150e713007cd78e10b107a732106f2b57127320c4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## v3.3.0 24th July 2024
4
+
5
+ - Release based on Onfido OpenAPI spec version [v3.3.0](https://github.com/onfido/onfido-openapi-spec/releases/tag/v3.3.0):
6
+ - Expose `customer_user_id` in `workflow_runs`
7
+ - Add `sdk_token` to workflow run schema
8
+
3
9
  ## v3.2.0 18th July 2024
4
10
 
5
11
  - Release based on Onfido OpenAPI spec version [v3.2.0](https://github.com/onfido/onfido-openapi-spec/releases/tag/v3.2.0):
data/README.md CHANGED
@@ -14,7 +14,7 @@ This version uses Onfido API v3.6. Refer to our [API versioning guide](https://d
14
14
  ### Installation
15
15
 
16
16
  ```ruby
17
- gem onfido, '~> 3.3.0'
17
+ gem onfido, '~> 3.3.1'
18
18
  ```
19
19
 
20
20
  Configure with your API token, region and optional timeout (default value is 30):
@@ -34,7 +34,7 @@ module Onfido
34
34
  # @option config [Configuration] Configuration for initializing the object, default to Configuration.default
35
35
  def initialize(config = Configuration.default)
36
36
  @config = config
37
- @user_agent = "onfido-ruby/3.3.0"
37
+ @user_agent = "onfido-ruby/3.3.1"
38
38
  @default_headers = {
39
39
  'Content-Type' => 'application/json',
40
40
  'User-Agent' => @user_agent
@@ -11,5 +11,5 @@ Generator version: 7.6.0
11
11
  =end
12
12
 
13
13
  module Onfido
14
- VERSION = '3.3.0'
14
+ VERSION = '3.3.1'
15
15
  end
data/onfido.gemspec CHANGED
@@ -29,6 +29,7 @@ Gem::Specification.new do |s|
29
29
  s.metadata = {}
30
30
 
31
31
  s.add_runtime_dependency 'faraday', '>= 1.0.1', '< 3.0'
32
+ s.add_runtime_dependency 'faraday-follow_redirects', '~> 0.3.0'
32
33
  s.add_runtime_dependency 'faraday-multipart'
33
34
  s.add_runtime_dependency 'marcel'
34
35
  s.add_runtime_dependency 'openssl'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: onfido
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.0
4
+ version: 3.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-24 00:00:00.000000000 Z
11
+ date: 2024-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -30,6 +30,20 @@ dependencies:
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: '3.0'
33
+ - !ruby/object:Gem::Dependency
34
+ name: faraday-follow_redirects
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: 0.3.0
40
+ type: :runtime
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: 0.3.0
33
47
  - !ruby/object:Gem::Dependency
34
48
  name: faraday-multipart
35
49
  requirement: !ruby/object:Gem::Requirement
@@ -453,31 +467,31 @@ signing_key:
453
467
  specification_version: 4
454
468
  summary: The official Ruby library for integrating with the Onfido API.
455
469
  test_files:
470
+ - spec/integrations/document_spec.rb
471
+ - spec/integrations/address_picker_spec.rb
472
+ - spec/integrations/motion_capture_spec.rb
473
+ - spec/integrations/webhook_spec.rb
474
+ - spec/integrations/live_video_spec.rb
456
475
  - spec/integrations/live_photo_spec.rb
476
+ - spec/integrations/qualified_electronic_signature_spec.rb
477
+ - spec/integrations/check_spec.rb
478
+ - spec/integrations/tasks_spec.rb
457
479
  - spec/integrations/sdk_token_spec.rb
480
+ - spec/integrations/workflow_run_output_spec.rb
481
+ - spec/integrations/report_schema_spec.rb
458
482
  - spec/integrations/watchlist_monitor_spec.rb
459
- - spec/integrations/live_video_spec.rb
460
- - spec/integrations/qualified_electronic_signature_spec.rb
461
483
  - spec/integrations/workflow_run_spec.rb
462
484
  - spec/integrations/applicant_spec.rb
463
- - spec/integrations/check_spec.rb
464
- - spec/integrations/motion_capture_spec.rb
465
- - spec/integrations/extraction_spec.rb
466
- - spec/integrations/webhook_spec.rb
467
- - spec/integrations/address_picker_spec.rb
468
- - spec/integrations/report_schema_spec.rb
469
- - spec/integrations/media/sample_photo.png
470
485
  - spec/integrations/media/sample_driving_licence.png
471
- - spec/integrations/report_spec.rb
472
- - spec/integrations/tasks_spec.rb
473
- - spec/integrations/document_spec.rb
486
+ - spec/integrations/media/sample_photo.png
474
487
  - spec/integrations/id_photo_spec.rb
475
- - spec/integrations/workflow_run_output_spec.rb
488
+ - spec/integrations/report_spec.rb
489
+ - spec/integrations/extraction_spec.rb
476
490
  - spec/shared_contexts/with_applicant.rb
477
- - spec/shared_contexts/with_document.rb
478
- - spec/shared_contexts/with_onfido.rb
479
491
  - spec/shared_contexts/with_live_photo.rb
492
+ - spec/shared_contexts/with_document.rb
480
493
  - spec/shared_contexts/with_check.rb
481
494
  - spec/shared_contexts/with_workflow_run.rb
495
+ - spec/shared_contexts/with_onfido.rb
482
496
  - spec/spec_helper.rb
483
497
  - spec/webhook_event_verifier_spec.rb