dilisense_pep_client 0.1.1 → 0.2.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 +37 -0
- data/dilisense_pep_client.gemspec +2 -2
- data/lib/dilisense_pep_client/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 810fbade2d9ed6ba5be2d186b81d504964f9dbaa81d6989ccc4532240e00a3bb
|
|
4
|
+
data.tar.gz: 714c777f988613501442216e120fcec26fac09f748bbf3700136bcba13494c7e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c9d6a3ad3f2c83426968738206c3131963b0b074d5959e62f87b7cc9abacec43af095dbd075e7e3548e5a4fa99c743698ee76d0ccaae790bfc077a67297aa8f1
|
|
7
|
+
data.tar.gz: '01280cbfb143f990217ac3282f379429f714481669971887d0ade752d141414cdf89c1ac188e5746cdebc787ab7ac18b6df1456e18cbcfd7a4c4c3b96f15739f'
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [0.1.1] - 2025-08-10
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Fixed test suite configuration issues that were causing test failures
|
|
12
|
+
- Corrected configuration accessor methods in tests (removed incorrect `.config` method calls)
|
|
13
|
+
- Resolved API key loading issues in test environment
|
|
14
|
+
- All test suites now pass correctly (18 runs, 37 assertions, 0 failures, 0 errors, 0 skips)
|
|
15
|
+
- Improved test reliability and stability
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- Enhanced test helper setup to properly handle environment variable loading
|
|
19
|
+
- Streamlined test execution by removing unnecessary API availability checks
|
|
20
|
+
|
|
21
|
+
## [0.1.0] - 2025-08-10
|
|
22
|
+
|
|
23
|
+
### Added
|
|
24
|
+
- Initial release of DilisensePepClient Ruby gem
|
|
25
|
+
- Support for PEP (Politically Exposed Persons) screening via Dilisense API
|
|
26
|
+
- Support for entity/company sanctions screening
|
|
27
|
+
- Individual person screening with multiple parameters:
|
|
28
|
+
- Name-based searches
|
|
29
|
+
- Date of birth filtering
|
|
30
|
+
- Gender filtering
|
|
31
|
+
- Fuzzy search capabilities (distance 1 and 2)
|
|
32
|
+
- Search all functionality
|
|
33
|
+
- Entity screening with fuzzy search support
|
|
34
|
+
- Comprehensive response formatting with grouped results
|
|
35
|
+
- Full test coverage with integration, unit, and fuzzy search tests
|
|
36
|
+
- MIT license
|
|
37
|
+
- Detailed documentation and usage examples
|
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.email = ["angelos@sorbet.ee"]
|
|
10
10
|
|
|
11
11
|
spec.summary = "Enterprise Ruby client for Dilisense PEP and sanctions screening API"
|
|
12
|
-
spec.description = "Industrial-grade Ruby client for Dilisense's PEP (Politically Exposed Persons) and sanctions screening API. Designed for Estonian financial institutions and FinTech companies requiring AML/KYC compliance with comprehensive error handling, audit logging, and security features.
|
|
12
|
+
spec.description = "Industrial-grade Ruby client for Dilisense's PEP (Politically Exposed Persons) and sanctions screening API. Designed for Estonian financial institutions and FinTech companies requiring AML/KYC compliance with comprehensive error handling, audit logging, and security features."
|
|
13
13
|
spec.homepage = "https://github.com/sorbet-ee/dilisense_PEP_client"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
spec.required_ruby_version = ">= 2.7.0"
|
|
@@ -34,7 +34,7 @@ Gem::Specification.new do |spec|
|
|
|
34
34
|
|
|
35
35
|
# Runtime dependencies
|
|
36
36
|
spec.add_dependency "faraday", "~> 2.0"
|
|
37
|
-
spec.add_dependency "dotenv", "~>
|
|
37
|
+
spec.add_dependency "dotenv", "~> 3.1"
|
|
38
38
|
spec.add_dependency "semantic_logger", "~> 4.0"
|
|
39
39
|
spec.add_dependency "dry-validation", "~> 1.10"
|
|
40
40
|
spec.add_dependency "concurrent-ruby", "~> 1.2"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dilisense_pep_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sorbeet Payments OU
|
|
@@ -29,14 +29,14 @@ dependencies:
|
|
|
29
29
|
requirements:
|
|
30
30
|
- - "~>"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: '
|
|
32
|
+
version: '3.1'
|
|
33
33
|
type: :runtime
|
|
34
34
|
prerelease: false
|
|
35
35
|
version_requirements: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
37
|
- - "~>"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: '
|
|
39
|
+
version: '3.1'
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: semantic_logger
|
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -194,8 +194,7 @@ dependencies:
|
|
|
194
194
|
description: Industrial-grade Ruby client for Dilisense's PEP (Politically Exposed
|
|
195
195
|
Persons) and sanctions screening API. Designed for Estonian financial institutions
|
|
196
196
|
and FinTech companies requiring AML/KYC compliance with comprehensive error handling,
|
|
197
|
-
audit logging, and security features.
|
|
198
|
-
and configuration fixes.
|
|
197
|
+
audit logging, and security features.
|
|
199
198
|
email:
|
|
200
199
|
- angelos@sorbet.ee
|
|
201
200
|
executables: []
|
|
@@ -203,6 +202,7 @@ extensions: []
|
|
|
203
202
|
extra_rdoc_files: []
|
|
204
203
|
files:
|
|
205
204
|
- ".env.example"
|
|
205
|
+
- CHANGELOG.md
|
|
206
206
|
- CLAUDE.md
|
|
207
207
|
- LICENSE
|
|
208
208
|
- Makefile
|