atrium-ruby 2.8.5 → 2.10.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -2
  3. data/docs/Account.md +3 -0
  4. data/docs/AccountNumber.md +2 -0
  5. data/docs/ConnectWidgetRequestBody.md +4 -0
  6. data/docs/Member.md +1 -0
  7. data/docs/MemberCreateRequest.md +4 -1
  8. data/docs/MembersApi.md +44 -0
  9. data/docs/MerchantLocation.md +17 -0
  10. data/docs/MerchantLocationResponseBody.md +8 -0
  11. data/docs/MerchantLocationsResponseBody.md +9 -0
  12. data/docs/MerchantsApi.md +107 -2
  13. data/docs/MerchantsResponseBody.md +9 -0
  14. data/docs/Transaction.md +1 -0
  15. data/lib/atrium-ruby.rb +4 -0
  16. data/lib/atrium-ruby/api/members_api.rb +64 -0
  17. data/lib/atrium-ruby/api/merchants_api.rb +156 -0
  18. data/lib/atrium-ruby/models/account.rb +28 -1
  19. data/lib/atrium-ruby/models/account_number.rb +19 -1
  20. data/lib/atrium-ruby/models/connect_widget_request_body.rb +40 -4
  21. data/lib/atrium-ruby/models/member.rb +10 -1
  22. data/lib/atrium-ruby/models/member_create_request.rb +31 -9
  23. data/lib/atrium-ruby/models/merchant_location.rb +260 -0
  24. data/lib/atrium-ruby/models/merchant_location_response_body.rb +179 -0
  25. data/lib/atrium-ruby/models/merchant_locations_response_body.rb +190 -0
  26. data/lib/atrium-ruby/models/merchants_response_body.rb +190 -0
  27. data/lib/atrium-ruby/models/transaction.rb +10 -1
  28. data/lib/atrium-ruby/version.rb +1 -1
  29. data/spec/api/members_api_spec.rb +15 -0
  30. data/spec/api/merchants_api_spec.rb +36 -0
  31. data/spec/models/account_number_spec.rb +12 -0
  32. data/spec/models/account_spec.rb +18 -0
  33. data/spec/models/connect_widget_request_body_spec.rb +24 -0
  34. data/spec/models/member_create_request_spec.rb +18 -0
  35. data/spec/models/member_spec.rb +6 -0
  36. data/spec/models/merchant_location_response_body_spec.rb +36 -0
  37. data/spec/models/merchant_location_spec.rb +90 -0
  38. data/spec/models/merchant_locations_response_body_spec.rb +42 -0
  39. data/spec/models/merchants_response_body_spec.rb +42 -0
  40. data/spec/models/transaction_spec.rb +6 -0
  41. metadata +52 -37
@@ -27,6 +27,29 @@ describe 'MerchantsApi' do
27
27
  end
28
28
  end
29
29
 
30
+ # unit tests for list_merchant_locations
31
+ # List merchant locations
32
+ # Returns a list of all the merchant locations associated with a merchant, including physical location, latitude, longitude, etc.
33
+ # @param merchant_guid The unique identifier for a `merchant`.
34
+ # @param [Hash] opts the optional parameters
35
+ # @return [MerchantLocationsResponseBody]
36
+ describe 'list_merchant_locations test' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
39
+ end
40
+ end
41
+
42
+ # unit tests for list_merchants
43
+ # List merchants
44
+ # Returns a list of merchnants.
45
+ # @param [Hash] opts the optional parameters
46
+ # @return [MerchantsResponseBody]
47
+ describe 'list_merchants test' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
30
53
  # unit tests for read_merchant
31
54
  # Read merchant
32
55
  # Returns information about a particular merchant, such as a logo, name, and website.
@@ -39,4 +62,17 @@ describe 'MerchantsApi' do
39
62
  end
40
63
  end
41
64
 
65
+ # unit tests for read_merchant_location
66
+ # Read merchant location
67
+ # Retuns a specific location associated with a merchant, including physical location, latitude, longitude, etc.
68
+ # @param merchant_guid The unique identifier for a `merchant`.
69
+ # @param merchant_location_guid The unique identifier for a `merchant_location`.
70
+ # @param [Hash] opts the optional parameters
71
+ # @return [MerchantLocationResponseBody]
72
+ describe 'read_merchant_location test' do
73
+ it 'should work' do
74
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
75
+ end
76
+ end
77
+
42
78
  end
@@ -39,6 +39,12 @@ describe 'AccountNumber' do
39
39
  end
40
40
  end
41
41
 
42
+ describe 'test attribute "institution_number"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
45
+ end
46
+ end
47
+
42
48
  describe 'test attribute "member_guid"' do
43
49
  it 'should work' do
44
50
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -51,6 +57,12 @@ describe 'AccountNumber' do
51
57
  end
52
58
  end
53
59
 
60
+ describe 'test attribute "transit_number"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
63
+ end
64
+ end
65
+
54
66
  describe 'test attribute "user_guid"' do
55
67
  it 'should work' do
56
68
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -117,6 +117,12 @@ describe 'Account' do
117
117
  end
118
118
  end
119
119
 
120
+ describe 'test attribute "insured_name"' do
121
+ it 'should work' do
122
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
123
+ end
124
+ end
125
+
120
126
  describe 'test attribute "institution_code"' do
121
127
  it 'should work' do
122
128
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -195,6 +201,18 @@ describe 'Account' do
195
201
  end
196
202
  end
197
203
 
204
+ describe 'test attribute "pay_out_amount"' do
205
+ it 'should work' do
206
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
207
+ end
208
+ end
209
+
210
+ describe 'test attribute "premium_amount"' do
211
+ it 'should work' do
212
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
213
+ end
214
+ end
215
+
198
216
  describe 'test attribute "started_on"' do
199
217
  it 'should work' do
200
218
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -33,6 +33,12 @@ describe 'ConnectWidgetRequestBody' do
33
33
  end
34
34
  end
35
35
 
36
+ describe 'test attribute "color_scheme"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
39
+ end
40
+ end
41
+
36
42
  describe 'test attribute "current_institution_code"' do
37
43
  it 'should work' do
38
44
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -51,6 +57,12 @@ describe 'ConnectWidgetRequestBody' do
51
57
  end
52
58
  end
53
59
 
60
+ describe 'test attribute "include_transactions"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
63
+ end
64
+ end
65
+
54
66
  describe 'test attribute "mode"' do
55
67
  it 'should work' do
56
68
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -63,10 +75,22 @@ describe 'ConnectWidgetRequestBody' do
63
75
  end
64
76
  end
65
77
 
78
+ describe 'test attribute "ui_message_webview_url_scheme"' do
79
+ it 'should work' do
80
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
81
+ end
82
+ end
83
+
66
84
  describe 'test attribute "update_credentials"' do
67
85
  it 'should work' do
68
86
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
69
87
  end
70
88
  end
71
89
 
90
+ describe 'test attribute "wait_for_full_aggregation"' do
91
+ it 'should work' do
92
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
93
+ end
94
+ end
95
+
72
96
  end
@@ -39,6 +39,12 @@ describe 'MemberCreateRequest' do
39
39
  end
40
40
  end
41
41
 
42
+ describe 'test attribute "is_oauth"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
45
+ end
46
+ end
47
+
42
48
  describe 'test attribute "institution_code"' do
43
49
  it 'should work' do
44
50
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -51,10 +57,22 @@ describe 'MemberCreateRequest' do
51
57
  end
52
58
  end
53
59
 
60
+ describe 'test attribute "referral_source"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
63
+ end
64
+ end
65
+
54
66
  describe 'test attribute "skip_aggregation"' do
55
67
  it 'should work' do
56
68
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
57
69
  end
58
70
  end
59
71
 
72
+ describe 'test attribute "ui_message_webview_url_scheme"' do
73
+ it 'should work' do
74
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
75
+ end
76
+ end
77
+
60
78
  end
@@ -75,6 +75,12 @@ describe 'Member' do
75
75
  end
76
76
  end
77
77
 
78
+ describe 'test attribute "oauth_window_uri"' do
79
+ it 'should work' do
80
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
81
+ end
82
+ end
83
+
78
84
  describe 'test attribute "status"' do
79
85
  it 'should work' do
80
86
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -0,0 +1,36 @@
1
+ =begin
2
+ #MX API
3
+
4
+ #The MX Atrium API supports over 48,000 data connections to thousands of financial institutions. It provides secure access to your users' accounts and transactions with industry-leading cleansing, categorization, and classification. Atrium is designed according to resource-oriented REST architecture and responds with JSON bodies and HTTP response codes. Use Atrium's development environment, vestibule.mx.com, to quickly get up and running. The development environment limits are 100 users, 25 members per user, and access to the top 15 institutions. Contact MX to purchase production access.
5
+
6
+
7
+ =end
8
+
9
+ require 'spec_helper'
10
+ require 'json'
11
+ require 'date'
12
+
13
+ # Unit tests for Atrium::MerchantLocationResponseBody
14
+ # Please update as you see appropriate
15
+ describe 'MerchantLocationResponseBody' do
16
+ before do
17
+ # run before each test
18
+ @instance = Atrium::MerchantLocationResponseBody.new
19
+ end
20
+
21
+ after do
22
+ # run after each test
23
+ end
24
+
25
+ describe 'test an instance of MerchantLocationResponseBody' do
26
+ it 'should create an instance of MerchantLocationResponseBody' do
27
+ expect(@instance).to be_instance_of(Atrium::MerchantLocationResponseBody)
28
+ end
29
+ end
30
+ describe 'test attribute "merchant_location"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
33
+ end
34
+ end
35
+
36
+ end
@@ -0,0 +1,90 @@
1
+ =begin
2
+ #MX API
3
+
4
+ #The MX Atrium API supports over 48,000 data connections to thousands of financial institutions. It provides secure access to your users' accounts and transactions with industry-leading cleansing, categorization, and classification. Atrium is designed according to resource-oriented REST architecture and responds with JSON bodies and HTTP response codes. Use Atrium's development environment, vestibule.mx.com, to quickly get up and running. The development environment limits are 100 users, 25 members per user, and access to the top 15 institutions. Contact MX to purchase production access.
5
+
6
+
7
+ =end
8
+
9
+ require 'spec_helper'
10
+ require 'json'
11
+ require 'date'
12
+
13
+ # Unit tests for Atrium::MerchantLocation
14
+ # Please update as you see appropriate
15
+ describe 'MerchantLocation' do
16
+ before do
17
+ # run before each test
18
+ @instance = Atrium::MerchantLocation.new
19
+ end
20
+
21
+ after do
22
+ # run after each test
23
+ end
24
+
25
+ describe 'test an instance of MerchantLocation' do
26
+ it 'should create an instance of MerchantLocation' do
27
+ expect(@instance).to be_instance_of(Atrium::MerchantLocation)
28
+ end
29
+ end
30
+ describe 'test attribute "city"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "guid"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "latitude"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "longitude"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
51
+ end
52
+ end
53
+
54
+ describe 'test attribute "merchant_guid"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
57
+ end
58
+ end
59
+
60
+ describe 'test attribute "phone_number"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
63
+ end
64
+ end
65
+
66
+ describe 'test attribute "postal_code"' do
67
+ it 'should work' do
68
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
69
+ end
70
+ end
71
+
72
+ describe 'test attribute "state"' do
73
+ it 'should work' do
74
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
75
+ end
76
+ end
77
+
78
+ describe 'test attribute "store_number"' do
79
+ it 'should work' do
80
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
81
+ end
82
+ end
83
+
84
+ describe 'test attribute "street_address"' do
85
+ it 'should work' do
86
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
87
+ end
88
+ end
89
+
90
+ end
@@ -0,0 +1,42 @@
1
+ =begin
2
+ #MX API
3
+
4
+ #The MX Atrium API supports over 48,000 data connections to thousands of financial institutions. It provides secure access to your users' accounts and transactions with industry-leading cleansing, categorization, and classification. Atrium is designed according to resource-oriented REST architecture and responds with JSON bodies and HTTP response codes. Use Atrium's development environment, vestibule.mx.com, to quickly get up and running. The development environment limits are 100 users, 25 members per user, and access to the top 15 institutions. Contact MX to purchase production access.
5
+
6
+
7
+ =end
8
+
9
+ require 'spec_helper'
10
+ require 'json'
11
+ require 'date'
12
+
13
+ # Unit tests for Atrium::MerchantLocationsResponseBody
14
+ # Please update as you see appropriate
15
+ describe 'MerchantLocationsResponseBody' do
16
+ before do
17
+ # run before each test
18
+ @instance = Atrium::MerchantLocationsResponseBody.new
19
+ end
20
+
21
+ after do
22
+ # run after each test
23
+ end
24
+
25
+ describe 'test an instance of MerchantLocationsResponseBody' do
26
+ it 'should create an instance of MerchantLocationsResponseBody' do
27
+ expect(@instance).to be_instance_of(Atrium::MerchantLocationsResponseBody)
28
+ end
29
+ end
30
+ describe 'test attribute "merchant_locations"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "pagination"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
39
+ end
40
+ end
41
+
42
+ end
@@ -0,0 +1,42 @@
1
+ =begin
2
+ #MX API
3
+
4
+ #The MX Atrium API supports over 48,000 data connections to thousands of financial institutions. It provides secure access to your users' accounts and transactions with industry-leading cleansing, categorization, and classification. Atrium is designed according to resource-oriented REST architecture and responds with JSON bodies and HTTP response codes. Use Atrium's development environment, vestibule.mx.com, to quickly get up and running. The development environment limits are 100 users, 25 members per user, and access to the top 15 institutions. Contact MX to purchase production access.
5
+
6
+
7
+ =end
8
+
9
+ require 'spec_helper'
10
+ require 'json'
11
+ require 'date'
12
+
13
+ # Unit tests for Atrium::MerchantsResponseBody
14
+ # Please update as you see appropriate
15
+ describe 'MerchantsResponseBody' do
16
+ before do
17
+ # run before each test
18
+ @instance = Atrium::MerchantsResponseBody.new
19
+ end
20
+
21
+ after do
22
+ # run after each test
23
+ end
24
+
25
+ describe 'test an instance of MerchantsResponseBody' do
26
+ it 'should create an instance of MerchantsResponseBody' do
27
+ expect(@instance).to be_instance_of(Atrium::MerchantsResponseBody)
28
+ end
29
+ end
30
+ describe 'test attribute "merchants"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "pagination"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
39
+ end
40
+ end
41
+
42
+ end
@@ -135,6 +135,12 @@ describe 'Transaction' do
135
135
  end
136
136
  end
137
137
 
138
+ describe 'test attribute "is_subscription"' do
139
+ it 'should work' do
140
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
141
+ end
142
+ end
143
+
138
144
  describe 'test attribute "latitude"' do
139
145
  it 'should work' do
140
146
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
metadata CHANGED
@@ -1,16 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: atrium-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.5
4
+ version: 2.10.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - MX
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-12-05 00:00:00.000000000 Z
11
+ date: 2021-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
+ name: typhoeus
14
15
  requirement: !ruby/object:Gem::Requirement
15
16
  requirements:
16
17
  - - "~>"
@@ -19,9 +20,8 @@ dependencies:
19
20
  - - ">="
20
21
  - !ruby/object:Gem::Version
21
22
  version: 1.0.1
22
- name: typhoeus
23
- prerelease: false
24
23
  type: :runtime
24
+ prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - "~>"
@@ -31,46 +31,47 @@ dependencies:
31
31
  - !ruby/object:Gem::Version
32
32
  version: 1.0.1
33
33
  - !ruby/object:Gem::Dependency
34
+ name: json
34
35
  requirement: !ruby/object:Gem::Requirement
35
36
  requirements:
36
- - - "~>"
37
- - !ruby/object:Gem::Version
38
- version: '2.1'
39
37
  - - ">="
40
38
  - !ruby/object:Gem::Version
41
39
  version: 2.1.0
42
- name: json
43
- prerelease: false
44
- type: :runtime
45
- version_requirements: !ruby/object:Gem::Requirement
46
- requirements:
47
40
  - - "~>"
48
41
  - !ruby/object:Gem::Version
49
42
  version: '2.1'
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
50
47
  - - ">="
51
48
  - !ruby/object:Gem::Version
52
49
  version: 2.1.0
50
+ - - "~>"
51
+ - !ruby/object:Gem::Version
52
+ version: '2.1'
53
53
  - !ruby/object:Gem::Dependency
54
+ name: rspec
54
55
  requirement: !ruby/object:Gem::Requirement
55
56
  requirements:
56
- - - "~>"
57
- - !ruby/object:Gem::Version
58
- version: '3.6'
59
57
  - - ">="
60
58
  - !ruby/object:Gem::Version
61
59
  version: 3.6.0
62
- name: rspec
63
- prerelease: false
64
- type: :development
65
- version_requirements: !ruby/object:Gem::Requirement
66
- requirements:
67
60
  - - "~>"
68
61
  - !ruby/object:Gem::Version
69
62
  version: '3.6'
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
70
67
  - - ">="
71
68
  - !ruby/object:Gem::Version
72
69
  version: 3.6.0
70
+ - - "~>"
71
+ - !ruby/object:Gem::Version
72
+ version: '3.6'
73
73
  - !ruby/object:Gem::Dependency
74
+ name: vcr
74
75
  requirement: !ruby/object:Gem::Requirement
75
76
  requirements:
76
77
  - - "~>"
@@ -79,9 +80,8 @@ dependencies:
79
80
  - - ">="
80
81
  - !ruby/object:Gem::Version
81
82
  version: 3.0.1
82
- name: vcr
83
- prerelease: false
84
83
  type: :development
84
+ prerelease: false
85
85
  version_requirements: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - "~>"
@@ -91,6 +91,7 @@ dependencies:
91
91
  - !ruby/object:Gem::Version
92
92
  version: 3.0.1
93
93
  - !ruby/object:Gem::Dependency
94
+ name: webmock
94
95
  requirement: !ruby/object:Gem::Requirement
95
96
  requirements:
96
97
  - - "~>"
@@ -99,9 +100,8 @@ dependencies:
99
100
  - - ">="
100
101
  - !ruby/object:Gem::Version
101
102
  version: 1.24.3
102
- name: webmock
103
- prerelease: false
104
103
  type: :development
104
+ prerelease: false
105
105
  version_requirements: !ruby/object:Gem::Requirement
106
106
  requirements:
107
107
  - - "~>"
@@ -111,6 +111,7 @@ dependencies:
111
111
  - !ruby/object:Gem::Version
112
112
  version: 1.24.3
113
113
  - !ruby/object:Gem::Dependency
114
+ name: autotest
114
115
  requirement: !ruby/object:Gem::Requirement
115
116
  requirements:
116
117
  - - "~>"
@@ -119,9 +120,8 @@ dependencies:
119
120
  - - ">="
120
121
  - !ruby/object:Gem::Version
121
122
  version: 4.4.6
122
- name: autotest
123
- prerelease: false
124
123
  type: :development
124
+ prerelease: false
125
125
  version_requirements: !ruby/object:Gem::Requirement
126
126
  requirements:
127
127
  - - "~>"
@@ -131,6 +131,7 @@ dependencies:
131
131
  - !ruby/object:Gem::Version
132
132
  version: 4.4.6
133
133
  - !ruby/object:Gem::Dependency
134
+ name: autotest-rails-pure
134
135
  requirement: !ruby/object:Gem::Requirement
135
136
  requirements:
136
137
  - - "~>"
@@ -139,9 +140,8 @@ dependencies:
139
140
  - - ">="
140
141
  - !ruby/object:Gem::Version
141
142
  version: 4.1.2
142
- name: autotest-rails-pure
143
- prerelease: false
144
143
  type: :development
144
+ prerelease: false
145
145
  version_requirements: !ruby/object:Gem::Requirement
146
146
  requirements:
147
147
  - - "~>"
@@ -151,6 +151,7 @@ dependencies:
151
151
  - !ruby/object:Gem::Version
152
152
  version: 4.1.2
153
153
  - !ruby/object:Gem::Dependency
154
+ name: autotest-growl
154
155
  requirement: !ruby/object:Gem::Requirement
155
156
  requirements:
156
157
  - - "~>"
@@ -159,9 +160,8 @@ dependencies:
159
160
  - - ">="
160
161
  - !ruby/object:Gem::Version
161
162
  version: 0.2.16
162
- name: autotest-growl
163
- prerelease: false
164
163
  type: :development
164
+ prerelease: false
165
165
  version_requirements: !ruby/object:Gem::Requirement
166
166
  requirements:
167
167
  - - "~>"
@@ -171,6 +171,7 @@ dependencies:
171
171
  - !ruby/object:Gem::Version
172
172
  version: 0.2.16
173
173
  - !ruby/object:Gem::Dependency
174
+ name: autotest-fsevent
174
175
  requirement: !ruby/object:Gem::Requirement
175
176
  requirements:
176
177
  - - "~>"
@@ -179,9 +180,8 @@ dependencies:
179
180
  - - ">="
180
181
  - !ruby/object:Gem::Version
181
182
  version: 0.2.12
182
- name: autotest-fsevent
183
- prerelease: false
184
183
  type: :development
184
+ prerelease: false
185
185
  version_requirements: !ruby/object:Gem::Requirement
186
186
  requirements:
187
187
  - - "~>"
@@ -244,8 +244,12 @@ files:
244
244
  - docs/MembersApi.md
245
245
  - docs/MembersResponseBody.md
246
246
  - docs/Merchant.md
247
+ - docs/MerchantLocation.md
248
+ - docs/MerchantLocationResponseBody.md
249
+ - docs/MerchantLocationsResponseBody.md
247
250
  - docs/MerchantResponseBody.md
248
251
  - docs/MerchantsApi.md
252
+ - docs/MerchantsResponseBody.md
249
253
  - docs/Pagination.md
250
254
  - docs/Statement.md
251
255
  - docs/StatementResponseBody.md
@@ -319,7 +323,11 @@ files:
319
323
  - lib/atrium-ruby/models/member_update_request_body.rb
320
324
  - lib/atrium-ruby/models/members_response_body.rb
321
325
  - lib/atrium-ruby/models/merchant.rb
326
+ - lib/atrium-ruby/models/merchant_location.rb
327
+ - lib/atrium-ruby/models/merchant_location_response_body.rb
328
+ - lib/atrium-ruby/models/merchant_locations_response_body.rb
322
329
  - lib/atrium-ruby/models/merchant_response_body.rb
330
+ - lib/atrium-ruby/models/merchants_response_body.rb
323
331
  - lib/atrium-ruby/models/pagination.rb
324
332
  - lib/atrium-ruby/models/statement.rb
325
333
  - lib/atrium-ruby/models/statement_response_body.rb
@@ -385,8 +393,12 @@ files:
385
393
  - spec/models/member_update_request_body_spec.rb
386
394
  - spec/models/member_update_request_spec.rb
387
395
  - spec/models/members_response_body_spec.rb
396
+ - spec/models/merchant_location_response_body_spec.rb
397
+ - spec/models/merchant_location_spec.rb
398
+ - spec/models/merchant_locations_response_body_spec.rb
388
399
  - spec/models/merchant_response_body_spec.rb
389
400
  - spec/models/merchant_spec.rb
401
+ - spec/models/merchants_response_body_spec.rb
390
402
  - spec/models/pagination_spec.rb
391
403
  - spec/models/statement_response_body_spec.rb
392
404
  - spec/models/statement_spec.rb
@@ -408,7 +420,7 @@ homepage: https://atrium.mx.com
408
420
  licenses:
409
421
  - MIT
410
422
  metadata: {}
411
- post_install_message:
423
+ post_install_message:
412
424
  rdoc_options: []
413
425
  require_paths:
414
426
  - lib
@@ -423,9 +435,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
423
435
  - !ruby/object:Gem::Version
424
436
  version: '0'
425
437
  requirements: []
426
- rubyforge_project:
427
- rubygems_version: 2.7.6
428
- signing_key:
438
+ rubygems_version: 3.0.4
439
+ signing_key:
429
440
  specification_version: 4
430
441
  summary: Ruby wrapper for the Atrium API by MX
431
442
  test_files:
@@ -453,10 +464,12 @@ test_files:
453
464
  - spec/models/challenge_option_spec.rb
454
465
  - spec/models/connect_widget_request_body_spec.rb
455
466
  - spec/models/challenge_image_option_spec.rb
467
+ - spec/models/merchant_locations_response_body_spec.rb
456
468
  - spec/models/institution_spec.rb
457
469
  - spec/models/credential_option_spec.rb
458
470
  - spec/models/statements_response_body_spec.rb
459
471
  - spec/models/account_number_spec.rb
472
+ - spec/models/merchant_location_response_body_spec.rb
460
473
  - spec/models/members_response_body_spec.rb
461
474
  - spec/models/transactions_response_body_spec.rb
462
475
  - spec/models/transactions_cleanse_and_categorize_response_body_spec.rb
@@ -464,6 +477,7 @@ test_files:
464
477
  - spec/models/institution_response_body_spec.rb
465
478
  - spec/models/institutions_response_body_spec.rb
466
479
  - spec/models/holding_response_body_spec.rb
480
+ - spec/models/merchants_response_body_spec.rb
467
481
  - spec/models/member_resume_request_spec.rb
468
482
  - spec/models/challenges_response_body_spec.rb
469
483
  - spec/models/account_numbers_response_body_spec.rb
@@ -482,6 +496,7 @@ test_files:
482
496
  - spec/models/statement_response_body_spec.rb
483
497
  - spec/models/user_create_request_body_spec.rb
484
498
  - spec/models/user_update_request_body_spec.rb
499
+ - spec/models/merchant_location_spec.rb
485
500
  - spec/models/merchant_spec.rb
486
501
  - spec/models/transaction_cleanse_and_categorize_response_spec.rb
487
502
  - spec/models/member_connection_status_response_body_spec.rb