atrium-ruby 2.0.0 → 2.1.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/README.md +12 -2
- data/docs/Holding.md +23 -0
- data/docs/HoldingResponseBody.md +8 -0
- data/docs/HoldingsApi.md +156 -0
- data/docs/HoldingsResponseBody.md +9 -0
- data/docs/Merchant.md +13 -0
- data/docs/MerchantResponseBody.md +8 -0
- data/docs/MerchantsApi.md +42 -0
- data/lib/atrium-ruby.rb +7 -0
- data/lib/atrium-ruby/api/atrium_client.rb +4 -0
- data/lib/atrium-ruby/api/holdings_api.rb +248 -0
- data/lib/atrium-ruby/api/merchants_api.rb +74 -0
- data/lib/atrium-ruby/models/holding.rb +314 -0
- data/lib/atrium-ruby/models/holding_response_body.rb +179 -0
- data/lib/atrium-ruby/models/holdings_response_body.rb +190 -0
- data/lib/atrium-ruby/models/merchant.rb +224 -0
- data/lib/atrium-ruby/models/merchant_response_body.rb +179 -0
- data/lib/atrium-ruby/version.rb +1 -1
- data/spec/api/holdings_api_spec.rb +81 -0
- data/spec/api/merchants_api_spec.rb +42 -0
- data/spec/models/holding_response_body_spec.rb +36 -0
- data/spec/models/holding_spec.rb +126 -0
- data/spec/models/holdings_response_body_spec.rb +42 -0
- data/spec/models/merchant_response_body_spec.rb +36 -0
- data/spec/models/merchant_spec.rb +66 -0
- metadata +30 -2
data/lib/atrium-ruby/version.rb
CHANGED
@@ -0,0 +1,81 @@
|
|
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
|
+
|
12
|
+
# Unit tests for Atrium::HoldingsApi
|
13
|
+
# Please update as you see appropriate
|
14
|
+
describe 'HoldingsApi' do
|
15
|
+
before do
|
16
|
+
# run before each test
|
17
|
+
@instance = Atrium::HoldingsApi.new
|
18
|
+
end
|
19
|
+
|
20
|
+
after do
|
21
|
+
# run after each test
|
22
|
+
end
|
23
|
+
|
24
|
+
describe 'test an instance of HoldingsApi' do
|
25
|
+
it 'should create an instance of HoldingsApi' do
|
26
|
+
expect(@instance).to be_instance_of(Atrium::HoldingsApi)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
# unit tests for list_holdings
|
31
|
+
# List holdings
|
32
|
+
# Use this endpoint to read all holdings associated with a specific user.
|
33
|
+
# @param user_guid The unique identifier for a `user`.
|
34
|
+
# @param [Hash] opts the optional parameters
|
35
|
+
# @return [HoldingsResponseBody]
|
36
|
+
describe 'list_holdings 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_holdings_by_account
|
43
|
+
# List holdings by account
|
44
|
+
# Use this endpoint to read all holdings associated with a specific account.
|
45
|
+
# @param account_guid The unique identifier for an `account`.
|
46
|
+
# @param user_guid The unique identifier for a `user`.
|
47
|
+
# @param [Hash] opts the optional parameters
|
48
|
+
# @return [HoldingsResponseBody]
|
49
|
+
describe 'list_holdings_by_account test' do
|
50
|
+
it 'should work' do
|
51
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
# unit tests for list_holdings_by_member
|
56
|
+
# List holdings by member
|
57
|
+
# Use this endpoint to read all holdings associated with a specific member.
|
58
|
+
# @param member_guid The unique identifier for a `member`.
|
59
|
+
# @param user_guid The unique identifier for a `user`.
|
60
|
+
# @param [Hash] opts the optional parameters
|
61
|
+
# @return [HoldingsResponseBody]
|
62
|
+
describe 'list_holdings_by_member test' do
|
63
|
+
it 'should work' do
|
64
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
# unit tests for read_holding
|
69
|
+
# Read holding
|
70
|
+
# Use this endpoint to read the attributes of a specific holding.
|
71
|
+
# @param holding_guid The unique identifier for a `holding`.
|
72
|
+
# @param user_guid The unique identifier for a `user`.
|
73
|
+
# @param [Hash] opts the optional parameters
|
74
|
+
# @return [HoldingResponseBody]
|
75
|
+
describe 'read_holding test' do
|
76
|
+
it 'should work' do
|
77
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
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
|
+
|
12
|
+
# Unit tests for Atrium::MerchantsApi
|
13
|
+
# Please update as you see appropriate
|
14
|
+
describe 'MerchantsApi' do
|
15
|
+
before do
|
16
|
+
# run before each test
|
17
|
+
@instance = Atrium::MerchantsApi.new
|
18
|
+
end
|
19
|
+
|
20
|
+
after do
|
21
|
+
# run after each test
|
22
|
+
end
|
23
|
+
|
24
|
+
describe 'test an instance of MerchantsApi' do
|
25
|
+
it 'should create an instance of MerchantsApi' do
|
26
|
+
expect(@instance).to be_instance_of(Atrium::MerchantsApi)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
# unit tests for read_merchant
|
31
|
+
# Read merchant
|
32
|
+
# Returns information about a particular merchant, such as a logo, name, and website.
|
33
|
+
# @param merchant_guid The unique identifier for a `merchant`.
|
34
|
+
# @param [Hash] opts the optional parameters
|
35
|
+
# @return [MerchantResponseBody]
|
36
|
+
describe 'read_merchant 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
|
+
end
|
@@ -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::HoldingResponseBody
|
14
|
+
# Please update as you see appropriate
|
15
|
+
describe 'HoldingResponseBody' do
|
16
|
+
before do
|
17
|
+
# run before each test
|
18
|
+
@instance = Atrium::HoldingResponseBody.new
|
19
|
+
end
|
20
|
+
|
21
|
+
after do
|
22
|
+
# run after each test
|
23
|
+
end
|
24
|
+
|
25
|
+
describe 'test an instance of HoldingResponseBody' do
|
26
|
+
it 'should create an instance of HoldingResponseBody' do
|
27
|
+
expect(@instance).to be_instance_of(Atrium::HoldingResponseBody)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
describe 'test attribute "holding"' 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,126 @@
|
|
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::Holding
|
14
|
+
# Please update as you see appropriate
|
15
|
+
describe 'Holding' do
|
16
|
+
before do
|
17
|
+
# run before each test
|
18
|
+
@instance = Atrium::Holding.new
|
19
|
+
end
|
20
|
+
|
21
|
+
after do
|
22
|
+
# run after each test
|
23
|
+
end
|
24
|
+
|
25
|
+
describe 'test an instance of Holding' do
|
26
|
+
it 'should create an instance of Holding' do
|
27
|
+
expect(@instance).to be_instance_of(Atrium::Holding)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
describe 'test attribute "account_guid"' 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 "cost_basis"' 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 "created_at"' 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 "currency_code"' 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 "cusip"' 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 "daily_change"' 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 "description"' 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 "guid"' 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 "holding_type"' 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 "market_value"' 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
|
+
describe 'test attribute "member_guid"' 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
|
+
|
96
|
+
describe 'test attribute "purchase_price"' do
|
97
|
+
it 'should work' do
|
98
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
describe 'test attribute "shares"' do
|
103
|
+
it 'should work' do
|
104
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
describe 'test attribute "symbol"' do
|
109
|
+
it 'should work' do
|
110
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
describe 'test attribute "updated_at"' do
|
115
|
+
it 'should work' do
|
116
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
120
|
+
describe 'test attribute "user_guid"' 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
|
+
|
126
|
+
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::HoldingsResponseBody
|
14
|
+
# Please update as you see appropriate
|
15
|
+
describe 'HoldingsResponseBody' do
|
16
|
+
before do
|
17
|
+
# run before each test
|
18
|
+
@instance = Atrium::HoldingsResponseBody.new
|
19
|
+
end
|
20
|
+
|
21
|
+
after do
|
22
|
+
# run after each test
|
23
|
+
end
|
24
|
+
|
25
|
+
describe 'test an instance of HoldingsResponseBody' do
|
26
|
+
it 'should create an instance of HoldingsResponseBody' do
|
27
|
+
expect(@instance).to be_instance_of(Atrium::HoldingsResponseBody)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
describe 'test attribute "holdings"' 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,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::MerchantResponseBody
|
14
|
+
# Please update as you see appropriate
|
15
|
+
describe 'MerchantResponseBody' do
|
16
|
+
before do
|
17
|
+
# run before each test
|
18
|
+
@instance = Atrium::MerchantResponseBody.new
|
19
|
+
end
|
20
|
+
|
21
|
+
after do
|
22
|
+
# run after each test
|
23
|
+
end
|
24
|
+
|
25
|
+
describe 'test an instance of MerchantResponseBody' do
|
26
|
+
it 'should create an instance of MerchantResponseBody' do
|
27
|
+
expect(@instance).to be_instance_of(Atrium::MerchantResponseBody)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
describe 'test attribute "merchant"' 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,66 @@
|
|
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::Merchant
|
14
|
+
# Please update as you see appropriate
|
15
|
+
describe 'Merchant' do
|
16
|
+
before do
|
17
|
+
# run before each test
|
18
|
+
@instance = Atrium::Merchant.new
|
19
|
+
end
|
20
|
+
|
21
|
+
after do
|
22
|
+
# run after each test
|
23
|
+
end
|
24
|
+
|
25
|
+
describe 'test an instance of Merchant' do
|
26
|
+
it 'should create an instance of Merchant' do
|
27
|
+
expect(@instance).to be_instance_of(Atrium::Merchant)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
describe 'test attribute "created_at"' 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 "logo_url"' 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 "name"' 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 "updated_at"' 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 "website_url"' 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
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: atrium-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MX
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-01-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -220,6 +220,10 @@ files:
|
|
220
220
|
- docs/CredentialRequest.md
|
221
221
|
- docs/CredentialResponse.md
|
222
222
|
- docs/CredentialsResponseBody.md
|
223
|
+
- docs/Holding.md
|
224
|
+
- docs/HoldingResponseBody.md
|
225
|
+
- docs/HoldingsApi.md
|
226
|
+
- docs/HoldingsResponseBody.md
|
223
227
|
- docs/IdentityApi.md
|
224
228
|
- docs/Institution.md
|
225
229
|
- docs/InstitutionResponseBody.md
|
@@ -237,6 +241,9 @@ files:
|
|
237
241
|
- docs/MemberUpdateRequestBody.md
|
238
242
|
- docs/MembersApi.md
|
239
243
|
- docs/MembersResponseBody.md
|
244
|
+
- docs/Merchant.md
|
245
|
+
- docs/MerchantResponseBody.md
|
246
|
+
- docs/MerchantsApi.md
|
240
247
|
- docs/Pagination.md
|
241
248
|
- docs/Transaction.md
|
242
249
|
- docs/TransactionCleanseAndCategorizeRequest.md
|
@@ -258,9 +265,11 @@ files:
|
|
258
265
|
- lib/atrium-ruby/api/accounts_api.rb
|
259
266
|
- lib/atrium-ruby/api/atrium_client.rb
|
260
267
|
- lib/atrium-ruby/api/connect_widget_api.rb
|
268
|
+
- lib/atrium-ruby/api/holdings_api.rb
|
261
269
|
- lib/atrium-ruby/api/identity_api.rb
|
262
270
|
- lib/atrium-ruby/api/institutions_api.rb
|
263
271
|
- lib/atrium-ruby/api/members_api.rb
|
272
|
+
- lib/atrium-ruby/api/merchants_api.rb
|
264
273
|
- lib/atrium-ruby/api/transactions_api.rb
|
265
274
|
- lib/atrium-ruby/api/users_api.rb
|
266
275
|
- lib/atrium-ruby/api/verification_api.rb
|
@@ -284,6 +293,9 @@ files:
|
|
284
293
|
- lib/atrium-ruby/models/credential_request.rb
|
285
294
|
- lib/atrium-ruby/models/credential_response.rb
|
286
295
|
- lib/atrium-ruby/models/credentials_response_body.rb
|
296
|
+
- lib/atrium-ruby/models/holding.rb
|
297
|
+
- lib/atrium-ruby/models/holding_response_body.rb
|
298
|
+
- lib/atrium-ruby/models/holdings_response_body.rb
|
287
299
|
- lib/atrium-ruby/models/institution.rb
|
288
300
|
- lib/atrium-ruby/models/institution_response_body.rb
|
289
301
|
- lib/atrium-ruby/models/institutions_response_body.rb
|
@@ -298,6 +310,8 @@ files:
|
|
298
310
|
- lib/atrium-ruby/models/member_update_request.rb
|
299
311
|
- lib/atrium-ruby/models/member_update_request_body.rb
|
300
312
|
- lib/atrium-ruby/models/members_response_body.rb
|
313
|
+
- lib/atrium-ruby/models/merchant.rb
|
314
|
+
- lib/atrium-ruby/models/merchant_response_body.rb
|
301
315
|
- lib/atrium-ruby/models/pagination.rb
|
302
316
|
- lib/atrium-ruby/models/transaction.rb
|
303
317
|
- lib/atrium-ruby/models/transaction_cleanse_and_categorize_request.rb
|
@@ -314,9 +328,11 @@ files:
|
|
314
328
|
- lib/atrium-ruby/version.rb
|
315
329
|
- spec/api/accounts_api_spec.rb
|
316
330
|
- spec/api/connect_widget_api_spec.rb
|
331
|
+
- spec/api/holdings_api_spec.rb
|
317
332
|
- spec/api/identity_api_spec.rb
|
318
333
|
- spec/api/institutions_api_spec.rb
|
319
334
|
- spec/api/members_api_spec.rb
|
335
|
+
- spec/api/merchants_api_spec.rb
|
320
336
|
- spec/api/transactions_api_spec.rb
|
321
337
|
- spec/api/users_api_spec.rb
|
322
338
|
- spec/api/verification_api_spec.rb
|
@@ -339,6 +355,9 @@ files:
|
|
339
355
|
- spec/models/credential_request_spec.rb
|
340
356
|
- spec/models/credential_response_spec.rb
|
341
357
|
- spec/models/credentials_response_body_spec.rb
|
358
|
+
- spec/models/holding_response_body_spec.rb
|
359
|
+
- spec/models/holding_spec.rb
|
360
|
+
- spec/models/holdings_response_body_spec.rb
|
342
361
|
- spec/models/institution_response_body_spec.rb
|
343
362
|
- spec/models/institution_spec.rb
|
344
363
|
- spec/models/institutions_response_body_spec.rb
|
@@ -353,6 +372,8 @@ files:
|
|
353
372
|
- spec/models/member_update_request_body_spec.rb
|
354
373
|
- spec/models/member_update_request_spec.rb
|
355
374
|
- spec/models/members_response_body_spec.rb
|
375
|
+
- spec/models/merchant_response_body_spec.rb
|
376
|
+
- spec/models/merchant_spec.rb
|
356
377
|
- spec/models/pagination_spec.rb
|
357
378
|
- spec/models/transaction_cleanse_and_categorize_request_spec.rb
|
358
379
|
- spec/models/transaction_cleanse_and_categorize_response_spec.rb
|
@@ -400,14 +421,18 @@ test_files:
|
|
400
421
|
- spec/api/institutions_api_spec.rb
|
401
422
|
- spec/api/accounts_api_spec.rb
|
402
423
|
- spec/api/users_api_spec.rb
|
424
|
+
- spec/api/merchants_api_spec.rb
|
425
|
+
- spec/api/holdings_api_spec.rb
|
403
426
|
- spec/api_client_spec.rb
|
404
427
|
- spec/configuration_spec.rb
|
405
428
|
- spec/models/user_response_body_spec.rb
|
406
429
|
- spec/models/member_response_body_spec.rb
|
430
|
+
- spec/models/holdings_response_body_spec.rb
|
407
431
|
- spec/models/account_owners_response_body_spec.rb
|
408
432
|
- spec/models/transaction_response_body_spec.rb
|
409
433
|
- spec/models/account_spec.rb
|
410
434
|
- spec/models/credential_request_spec.rb
|
435
|
+
- spec/models/merchant_response_body_spec.rb
|
411
436
|
- spec/models/challenge_option_spec.rb
|
412
437
|
- spec/models/connect_widget_request_body_spec.rb
|
413
438
|
- spec/models/institution_spec.rb
|
@@ -419,10 +444,12 @@ test_files:
|
|
419
444
|
- spec/models/credential_response_spec.rb
|
420
445
|
- spec/models/institution_response_body_spec.rb
|
421
446
|
- spec/models/institutions_response_body_spec.rb
|
447
|
+
- spec/models/holding_response_body_spec.rb
|
422
448
|
- spec/models/member_resume_request_spec.rb
|
423
449
|
- spec/models/challenges_response_body_spec.rb
|
424
450
|
- spec/models/account_numbers_response_body_spec.rb
|
425
451
|
- spec/models/credentials_response_body_spec.rb
|
452
|
+
- spec/models/holding_spec.rb
|
426
453
|
- spec/models/member_update_request_body_spec.rb
|
427
454
|
- spec/models/member_create_request_body_spec.rb
|
428
455
|
- spec/models/transaction_spec.rb
|
@@ -435,6 +462,7 @@ test_files:
|
|
435
462
|
- spec/models/pagination_spec.rb
|
436
463
|
- spec/models/user_create_request_body_spec.rb
|
437
464
|
- spec/models/user_update_request_body_spec.rb
|
465
|
+
- spec/models/merchant_spec.rb
|
438
466
|
- spec/models/transaction_cleanse_and_categorize_response_spec.rb
|
439
467
|
- spec/models/member_connection_status_response_body_spec.rb
|
440
468
|
- spec/models/accounts_response_body_spec.rb
|