onfido 5.6.0 → 5.7.0
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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/onfido/api/default_api.rb +681 -0
- data/lib/onfido/api_client.rb +1 -1
- data/lib/onfido/models/document_properties.rb +10 -1
- data/lib/onfido/models/document_with_driver_verification_report_all_of_properties.rb +10 -1
- data/lib/onfido/models/passkey.rb +317 -0
- data/lib/onfido/models/passkey_updater.rb +256 -0
- data/lib/onfido/models/passkeys_list.rb +223 -0
- data/lib/onfido/models/signing_document.rb +300 -0
- data/lib/onfido/models/signing_document_response.rb +282 -0
- data/lib/onfido/models/signing_document_shared.rb +215 -0
- data/lib/onfido/models/signing_documents_list.rb +223 -0
- data/lib/onfido/version.rb +1 -1
- data/lib/onfido.rb +7 -0
- data/spec/integrations/media/sample_signing_document.pdf +33 -0
- data/spec/integrations/passkey_spec.rb +63 -0
- data/spec/integrations/signing_document_spec.rb +61 -0
- data/spec/shared_contexts/with_signing_document.rb +15 -0
- metadata +17 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8c32f2b45f9b830c3081126c82f065a7933c92022c5f68d5f03517c03550cf7e
|
|
4
|
+
data.tar.gz: 02f2d9c639ab6159fef05d1dfc95db58a01a9ec202ef0095bd797656b8a681bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 232d7834ba21377430a1d4dd7e31e77e152c57c6eebe3c6295152db8b23858accf3bae8312febc8efb75655146f8fafb357bdc4ad1289a8cad26aebab1141c44
|
|
7
|
+
data.tar.gz: d2793dd67aab183621dd9f0afa329d83ccae70592c0cf9fc8ecacdb8e5f7fce34abe04d9352ef000c206b4e4b3c9a0fe04493bf5aa2f80ececbbdc0bbf7475c3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v5.6.0 15th January 2026
|
|
4
|
+
|
|
5
|
+
- Release based on Onfido OpenAPI spec version [v5.6.0](https://github.com/onfido/onfido-openapi-spec/releases/tag/v5.6.0):
|
|
6
|
+
- [SIG-3270] Update document_type supported by PoA
|
|
7
|
+
- [DEXTV2-9337] Update list of document subtypes for extraction
|
|
8
|
+
- [STUDIO-5634] Add timeline_file_download_url to the webhook event resource
|
|
9
|
+
- Update faraday-follow_redirects and unblock Ruby 4.0
|
|
10
|
+
|
|
3
11
|
## v5.5.0 22nd September 2025
|
|
4
12
|
|
|
5
13
|
- Release based on Onfido OpenAPI spec version [v5.5.0](https://github.com/onfido/onfido-openapi-spec/releases/tag/v5.5.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', '~> 5.
|
|
17
|
+
gem 'onfido', '~> 5.7.0'
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
Configure with your API token, region and optional timeout (default value is 30):
|