From 48bf5b284dc387bd378dc29071da8c73da8edddb Mon Sep 17 00:00:00 2001 From: devexperience Date: Thu, 20 Jun 2024 17:14:49 +0000 Subject: [PATCH] Generated version 0.30.0 This pull request was automatically generated by a GitHub Action to generate version 0.30.0 of this library. --- docs/MemberStatusResponse.md | 2 ++ .../models/member_status_response.rb | 12 +++++++++++- lib/mx-platform-ruby/version.rb | 2 +- openapi/config.yml | 2 +- spec/models/member_status_response_spec.rb | 6 ++++++ 5 files changed, 21 insertions(+), 3 deletions(-) diff --git a/docs/MemberStatusResponse.md b/docs/MemberStatusResponse.md index 0bd8d00..d0de782 100644 --- a/docs/MemberStatusResponse.md +++ b/docs/MemberStatusResponse.md @@ -9,6 +9,7 @@ | **connection_status** | **String** | | [optional] | | **guid** | **String** | | [optional] | | **has_processed_accounts** | **Boolean** | | [optional] | +| **has_processed_account_numbers** | **Boolean** | | [optional] | | **has_processed_transactions** | **Boolean** | | [optional] | | **is_authenticated** | **Boolean** | | [optional] | | **is_being_aggregated** | **Boolean** | | [optional] | @@ -25,6 +26,7 @@ instance = MxPlatformRuby::MemberStatusResponse.new( connection_status: CONNECTED, guid: MBR-7c6f361b-e582-15b6-60c0-358f12466b4b, has_processed_accounts: true, + has_processed_account_numbers: true, has_processed_transactions: false, is_authenticated: false, is_being_aggregated: false, diff --git a/lib/mx-platform-ruby/models/member_status_response.rb b/lib/mx-platform-ruby/models/member_status_response.rb index bef6e71..d405017 100644 --- a/lib/mx-platform-ruby/models/member_status_response.rb +++ b/lib/mx-platform-ruby/models/member_status_response.rb @@ -25,6 +25,8 @@ class MemberStatusResponse attr_accessor :has_processed_accounts + attr_accessor :has_processed_account_numbers + attr_accessor :has_processed_transactions attr_accessor :is_authenticated @@ -41,6 +43,7 @@ def self.attribute_map :'connection_status' => :'connection_status', :'guid' => :'guid', :'has_processed_accounts' => :'has_processed_accounts', + :'has_processed_account_numbers' => :'has_processed_account_numbers', :'has_processed_transactions' => :'has_processed_transactions', :'is_authenticated' => :'is_authenticated', :'is_being_aggregated' => :'is_being_aggregated', @@ -61,6 +64,7 @@ def self.openapi_types :'connection_status' => :'String', :'guid' => :'String', :'has_processed_accounts' => :'Boolean', + :'has_processed_account_numbers' => :'Boolean', :'has_processed_transactions' => :'Boolean', :'is_authenticated' => :'Boolean', :'is_being_aggregated' => :'Boolean', @@ -75,6 +79,7 @@ def self.openapi_nullable :'connection_status', :'guid', :'has_processed_accounts', + :'has_processed_account_numbers', :'has_processed_transactions', :'is_authenticated', :'is_being_aggregated', @@ -119,6 +124,10 @@ def initialize(attributes = {}) self.has_processed_accounts = attributes[:'has_processed_accounts'] end + if attributes.key?(:'has_processed_account_numbers') + self.has_processed_account_numbers = attributes[:'has_processed_account_numbers'] + end + if attributes.key?(:'has_processed_transactions') self.has_processed_transactions = attributes[:'has_processed_transactions'] end @@ -161,6 +170,7 @@ def ==(o) connection_status == o.connection_status && guid == o.guid && has_processed_accounts == o.has_processed_accounts && + has_processed_account_numbers == o.has_processed_account_numbers && has_processed_transactions == o.has_processed_transactions && is_authenticated == o.is_authenticated && is_being_aggregated == o.is_being_aggregated && @@ -176,7 +186,7 @@ def eql?(o) # Calculates hash code according to all attributes. # @return [Integer] Hash code def hash - [aggregated_at, challenges, connection_status, guid, has_processed_accounts, has_processed_transactions, is_authenticated, is_being_aggregated, successfully_aggregated_at].hash + [aggregated_at, challenges, connection_status, guid, has_processed_accounts, has_processed_account_numbers, has_processed_transactions, is_authenticated, is_being_aggregated, successfully_aggregated_at].hash end # Builds the object from hash diff --git a/lib/mx-platform-ruby/version.rb b/lib/mx-platform-ruby/version.rb index 992ebb9..7e40ef8 100644 --- a/lib/mx-platform-ruby/version.rb +++ b/lib/mx-platform-ruby/version.rb @@ -11,5 +11,5 @@ =end module MxPlatformRuby - VERSION = '0.29.0' + VERSION = '0.30.0' end diff --git a/openapi/config.yml b/openapi/config.yml index a62df66..b2414f0 100644 --- a/openapi/config.yml +++ b/openapi/config.yml @@ -6,6 +6,6 @@ gemHomepage: https://github.com/mxenabled/mx-platform-ruby gemLicense: MIT gemName: mx-platform-ruby gemRequiredRubyVersion: ">= 2.6" -gemVersion: 0.29.0 +gemVersion: 0.30.0 library: faraday moduleName: MxPlatformRuby diff --git a/spec/models/member_status_response_spec.rb b/spec/models/member_status_response_spec.rb index 6d3fda8..0cacc76 100644 --- a/spec/models/member_status_response_spec.rb +++ b/spec/models/member_status_response_spec.rb @@ -55,6 +55,12 @@ end end + describe 'test attribute "has_processed_account_numbers"' do + it 'should work' do + # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/ + end + end + describe 'test attribute "has_processed_transactions"' do it 'should work' do # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/