mx-platform-ruby 0.16.0 → 0.17.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4eff14f0a51cfe9dbcb2e702c6c43413d9f42e053e159f00f7999ab14d34353c
4
- data.tar.gz: f39ec4117371eb80dd70823f5a952ca748103dc4b17d027ec4f388788b69b1b2
3
+ metadata.gz: b936e81b35f1be7e58438403e10793c9288707645830a58687b31297198211f0
4
+ data.tar.gz: 4e6242f67b061afbb56ae5dd269f312cfda00ca00e4109abb3b2dfa7484a1b1d
5
5
  SHA512:
6
- metadata.gz: a5fb07e26676d150e492d7d709acb83fea930e31f662486d641d68ba3f43663b51f1ddab3a6ff26225420c32450db3d9b762cdd8a5f1894d11cc9384dfa8ac00
7
- data.tar.gz: 78d177ac61797a9866be291612ff2025fbd6e338f8363c73e92fff46326bdfc496cc84d25160c094da50e3c4263c745a94ef550b0ff832ea5598c2dd7b126b7d
6
+ metadata.gz: 387337d17b600182887959e099bb19a10412c5d5c26146fdb0367ba61ea8ffc2c53d45ae3e860f590310be7246323b8edda3c2cdd7f8fde462a21933dd52109e
7
+ data.tar.gz: 8e026569511052e4404604a3483aa7636991d642d23835db35ebb72abe08ded9db655f8c0a09e6c10e8d3cc20dfd4e5f4e17777c489dc9ab04cec41c12bcb16e
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- mx-platform-ruby (0.16.0)
4
+ mx-platform-ruby (0.17.0)
5
5
  faraday (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
@@ -5,6 +5,8 @@
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **code** | **String** | | [optional] |
8
+ | **forgot_password_url** | **String** | | [optional] |
9
+ | **forgot_username_url** | **String** | | [optional] |
8
10
  | **instructional_text** | **String** | | [optional] |
9
11
  | **medium_logo_url** | **String** | | [optional] |
10
12
  | **name** | **String** | | [optional] |
@@ -14,6 +16,7 @@
14
16
  | **supports_account_verification** | **Boolean** | | [optional] |
15
17
  | **supports_oauth** | **Boolean** | | [optional] |
16
18
  | **supports_transaction_history** | **Boolean** | | [optional] |
19
+ | **trouble_signing_in_url** | **String** | | [optional] |
17
20
  | **url** | **String** | | [optional] |
18
21
 
19
22
  ## Example
@@ -23,6 +26,8 @@ require 'mx-platform-ruby'
23
26
 
24
27
  instance = MxPlatformRuby::InstitutionResponse.new(
25
28
  code: chase,
29
+ forgot_password_url: https://example.url.chase.com/forgot-password,
30
+ forgot_username_url: https://example.url.chase.com/forgot-username,
26
31
  instructional_text: Some instructional text <a href="https://example.url.chase.com/instructions" id="instructional_text">for end users</a>.,
27
32
  medium_logo_url: https://content.moneydesktop.com/storage/MD_Assets/Ipad%20Logos/100x100/default_100x100.png,
28
33
  name: Chase Bank,
@@ -32,6 +37,7 @@ instance = MxPlatformRuby::InstitutionResponse.new(
32
37
  supports_account_verification: true,
33
38
  supports_oauth: true,
34
39
  supports_transaction_history: true,
40
+ trouble_signing_in_url: https://example.url.chase.com/login-trouble,
35
41
  url: https://www.chase.com
36
42
  )
37
43
  ```
@@ -17,6 +17,10 @@ module MxPlatformRuby
17
17
  class InstitutionResponse
18
18
  attr_accessor :code
19
19
 
20
+ attr_accessor :forgot_password_url
21
+
22
+ attr_accessor :forgot_username_url
23
+
20
24
  attr_accessor :instructional_text
21
25
 
22
26
  attr_accessor :medium_logo_url
@@ -35,12 +39,16 @@ module MxPlatformRuby
35
39
 
36
40
  attr_accessor :supports_transaction_history
37
41
 
42
+ attr_accessor :trouble_signing_in_url
43
+
38
44
  attr_accessor :url
39
45
 
40
46
  # Attribute mapping from ruby-style variable name to JSON key.
41
47
  def self.attribute_map
42
48
  {
43
49
  :'code' => :'code',
50
+ :'forgot_password_url' => :'forgot_password_url',
51
+ :'forgot_username_url' => :'forgot_username_url',
44
52
  :'instructional_text' => :'instructional_text',
45
53
  :'medium_logo_url' => :'medium_logo_url',
46
54
  :'name' => :'name',
@@ -50,6 +58,7 @@ module MxPlatformRuby
50
58
  :'supports_account_verification' => :'supports_account_verification',
51
59
  :'supports_oauth' => :'supports_oauth',
52
60
  :'supports_transaction_history' => :'supports_transaction_history',
61
+ :'trouble_signing_in_url' => :'trouble_signing_in_url',
53
62
  :'url' => :'url'
54
63
  }
55
64
  end
@@ -63,6 +72,8 @@ module MxPlatformRuby
63
72
  def self.openapi_types
64
73
  {
65
74
  :'code' => :'String',
75
+ :'forgot_password_url' => :'String',
76
+ :'forgot_username_url' => :'String',
66
77
  :'instructional_text' => :'String',
67
78
  :'medium_logo_url' => :'String',
68
79
  :'name' => :'String',
@@ -72,6 +83,7 @@ module MxPlatformRuby
72
83
  :'supports_account_verification' => :'Boolean',
73
84
  :'supports_oauth' => :'Boolean',
74
85
  :'supports_transaction_history' => :'Boolean',
86
+ :'trouble_signing_in_url' => :'String',
75
87
  :'url' => :'String'
76
88
  }
77
89
  end
@@ -80,6 +92,8 @@ module MxPlatformRuby
80
92
  def self.openapi_nullable
81
93
  Set.new([
82
94
  :'code',
95
+ :'forgot_password_url',
96
+ :'forgot_username_url',
83
97
  :'instructional_text',
84
98
  :'medium_logo_url',
85
99
  :'name',
@@ -89,6 +103,7 @@ module MxPlatformRuby
89
103
  :'supports_account_verification',
90
104
  :'supports_oauth',
91
105
  :'supports_transaction_history',
106
+ :'trouble_signing_in_url',
92
107
  :'url'
93
108
  ])
94
109
  end
@@ -112,6 +127,14 @@ module MxPlatformRuby
112
127
  self.code = attributes[:'code']
113
128
  end
114
129
 
130
+ if attributes.key?(:'forgot_password_url')
131
+ self.forgot_password_url = attributes[:'forgot_password_url']
132
+ end
133
+
134
+ if attributes.key?(:'forgot_username_url')
135
+ self.forgot_username_url = attributes[:'forgot_username_url']
136
+ end
137
+
115
138
  if attributes.key?(:'instructional_text')
116
139
  self.instructional_text = attributes[:'instructional_text']
117
140
  end
@@ -148,6 +171,10 @@ module MxPlatformRuby
148
171
  self.supports_transaction_history = attributes[:'supports_transaction_history']
149
172
  end
150
173
 
174
+ if attributes.key?(:'trouble_signing_in_url')
175
+ self.trouble_signing_in_url = attributes[:'trouble_signing_in_url']
176
+ end
177
+
151
178
  if attributes.key?(:'url')
152
179
  self.url = attributes[:'url']
153
180
  end
@@ -172,6 +199,8 @@ module MxPlatformRuby
172
199
  return true if self.equal?(o)
173
200
  self.class == o.class &&
174
201
  code == o.code &&
202
+ forgot_password_url == o.forgot_password_url &&
203
+ forgot_username_url == o.forgot_username_url &&
175
204
  instructional_text == o.instructional_text &&
176
205
  medium_logo_url == o.medium_logo_url &&
177
206
  name == o.name &&
@@ -181,6 +210,7 @@ module MxPlatformRuby
181
210
  supports_account_verification == o.supports_account_verification &&
182
211
  supports_oauth == o.supports_oauth &&
183
212
  supports_transaction_history == o.supports_transaction_history &&
213
+ trouble_signing_in_url == o.trouble_signing_in_url &&
184
214
  url == o.url
185
215
  end
186
216
 
@@ -193,7 +223,7 @@ module MxPlatformRuby
193
223
  # Calculates hash code according to all attributes.
194
224
  # @return [Integer] Hash code
195
225
  def hash
196
- [code, instructional_text, medium_logo_url, name, small_logo_url, supports_account_identification, supports_account_statement, supports_account_verification, supports_oauth, supports_transaction_history, url].hash
226
+ [code, forgot_password_url, forgot_username_url, instructional_text, medium_logo_url, name, small_logo_url, supports_account_identification, supports_account_statement, supports_account_verification, supports_oauth, supports_transaction_history, trouble_signing_in_url, url].hash
197
227
  end
198
228
 
199
229
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 5.4.0
11
11
  =end
12
12
 
13
13
  module MxPlatformRuby
14
- VERSION = '0.16.0'
14
+ VERSION = '0.17.0'
15
15
  end
data/openapi/config.yml CHANGED
@@ -6,6 +6,6 @@ gemHomepage: https://github.com/mxenabled/mx-platform-ruby
6
6
  gemLicense: MIT
7
7
  gemName: mx-platform-ruby
8
8
  gemRequiredRubyVersion: ">= 2.6"
9
- gemVersion: 0.16.0
9
+ gemVersion: 0.17.0
10
10
  library: faraday
11
11
  moduleName: MxPlatformRuby
@@ -31,6 +31,18 @@ describe MxPlatformRuby::InstitutionResponse do
31
31
  end
32
32
  end
33
33
 
34
+ describe 'test attribute "forgot_password_url"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "forgot_username_url"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
34
46
  describe 'test attribute "instructional_text"' do
35
47
  it 'should work' do
36
48
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -85,6 +97,12 @@ describe MxPlatformRuby::InstitutionResponse do
85
97
  end
86
98
  end
87
99
 
100
+ describe 'test attribute "trouble_signing_in_url"' do
101
+ it 'should work' do
102
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
103
+ end
104
+ end
105
+
88
106
  describe 'test attribute "url"' do
89
107
  it 'should work' do
90
108
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mx-platform-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - MX
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-02 00:00:00.000000000 Z
11
+ date: 2023-05-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday