orionx-sdk-ruby 1.0.1 → 1.0.3

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: 18b32ffca43329c7f2658b3b07145acdbcf5fbe217aba2b1d76656028f02950e
4
- data.tar.gz: 7b6874333cf4b4869f93f1e464aec7295cae5f9355359cb63653b74cf18970dc
3
+ metadata.gz: ed75fd363d41aa13d784002114ba052927c8baa60aa3fcc55e1b6cefe63b76da
4
+ data.tar.gz: ba6b5e5a096c166dcae705e5e94884e783ab9f423e59cb143c7d89f70a492871
5
5
  SHA512:
6
- metadata.gz: f5511b6244c1ae7e6e11fab01c84a51e6915c5b865e8f419d7577a0ac59f767d76bf103b7a7916f04d9ab98116bdde9e6e71d561baef59bb891c0421736df95e
7
- data.tar.gz: e209bc481fcf1fbecb9ea307a4eb4ff48d9fd2479eac095369ded528255c689e3a849b139fc37ba7cb831692ec695f88ddfe331a8efbb3f99700cfc90187e957
6
+ metadata.gz: 15b74ecd18747983b8a3c12a18efcc6b66bba32e83a16a3aae9a93fcb3ffaa307eb285485aac134e231eab46a8c15abf4a84ad054314a8ae7da559ce4e723154
7
+ data.tar.gz: 7edac7d197f9dd3d55cc55a4bc6e20515aaf64cef70b0002ee4780d8baea1a9204e2cde875c8f1e8d38e5ff7b56e17b2871a12d04f34a24191c1400f43d8a8d5
data/CHANGELOG.md CHANGED
@@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.0.3] - 2025-10-03
9
+
10
+ ### Fixed
11
+ - Fixed GraphQL schema error: removed invalid verification fields (`kycVerified`, `phoneVerified`, `addressVerified`, `identityVerified`) from UserProfile query due to API schema inconsistencies
12
+ - Resolved "Cannot query field kycVerified on type UserProfile" and related verification field errors
13
+
14
+ ### Changed
15
+ - Updated User.me() method to query only confirmed working profile fields until verification field names can be determined from working API responses
16
+
17
+ ## [1.0.2] - 2025-10-03
18
+
19
+ ### Changed
20
+ - Corrected API endpoint from `https://api2.orionx.io/graphql` to `https://api2.orionx.com/graphql`
21
+ - Updated all configuration files, examples, tests, and documentation to use the correct endpoint
22
+
8
23
  ## [1.0.1] - 2025-10-03
9
24
 
10
25
  ### Changed
data/README.md CHANGED
@@ -343,7 +343,7 @@ bundle exec rubocop -A
343
343
 
344
344
  For detailed API documentation, visit:
345
345
  - [OrionX API Documentation](http://docs.orionx.com/)
346
- - [GraphQL Schema Reference](https://api2.orionx.io/graphql)
346
+ - [GraphQL Schema Reference](https://api2.orionx.com/graphql)
347
347
 
348
348
  ## Important Notes
349
349
 
@@ -7,7 +7,7 @@ module OrionX
7
7
  def initialize
8
8
  @api_key = nil
9
9
  @api_secret = nil
10
- @api_endpoint = "https://api2.orionx.io/graphql"
10
+ @api_endpoint = "https://api2.orionx.com/graphql"
11
11
  @debug = false
12
12
  @logger = nil
13
13
  @timeout = 30
@@ -17,7 +17,6 @@ module OrionX
17
17
  profile {
18
18
  fullName
19
19
  phone
20
- kycVerified
21
20
  birthdate
22
21
  countryCode
23
22
  occupation
@@ -7,7 +7,7 @@ RSpec.describe OrionX::Configuration do
7
7
 
8
8
  expect(config.api_key).to be_nil
9
9
  expect(config.api_secret).to be_nil
10
- expect(config.api_endpoint).to eq("https://api2.orionx.io/graphql")
10
+ expect(config.api_endpoint).to eq("https://api2.orionx.com/graphql")
11
11
  expect(config.debug).to be_falsey
12
12
  expect(config.timeout).to eq(30)
13
13
  expect(config.retries).to eq(3)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: orionx-sdk-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - PabloB07