atrium-ruby 1.3.2 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Gemfile +5 -2
- data/README.md +132 -66
- data/Rakefile +7 -4
- data/atrium-ruby.gemspec +40 -32
- data/docs/Account.md +35 -0
- data/docs/AccountNumber.md +12 -0
- data/docs/AccountNumbersResponseBody.md +8 -0
- data/docs/AccountOwner.md +18 -0
- data/docs/AccountOwnersResponseBody.md +8 -0
- data/docs/AccountResponseBody.md +8 -0
- data/docs/AccountsApi.md +174 -0
- data/docs/AccountsResponseBody.md +9 -0
- data/docs/Challenge.md +13 -0
- data/docs/ChallengeOption.md +10 -0
- data/docs/ChallengesResponseBody.md +8 -0
- data/docs/ConnectWidget.md +9 -0
- data/docs/ConnectWidgetApi.md +44 -0
- data/docs/ConnectWidgetRequestBody.md +11 -0
- data/docs/ConnectWidgetResponseBody.md +8 -0
- data/docs/CredentialOption.md +9 -0
- data/docs/CredentialRequest.md +9 -0
- data/docs/CredentialResponse.md +12 -0
- data/docs/CredentialsResponseBody.md +8 -0
- data/docs/IdentityApi.md +82 -0
- data/docs/Institution.md +14 -0
- data/docs/InstitutionResponseBody.md +8 -0
- data/docs/InstitutionsApi.md +120 -0
- data/docs/InstitutionsResponseBody.md +9 -0
- data/docs/Member.md +18 -0
- data/docs/MemberConnectionStatus.md +16 -0
- data/docs/MemberConnectionStatusResponseBody.md +8 -0
- data/docs/MemberCreateRequest.md +11 -0
- data/docs/MemberCreateRequestBody.md +8 -0
- data/docs/MemberResponseBody.md +8 -0
- data/docs/MemberResumeRequest.md +8 -0
- data/docs/MemberResumeRequestBody.md +8 -0
- data/docs/MemberUpdateRequest.md +10 -0
- data/docs/MemberUpdateRequestBody.md +8 -0
- data/docs/MembersApi.md +487 -0
- data/docs/MembersResponseBody.md +9 -0
- data/docs/Pagination.md +11 -0
- data/docs/Transaction.md +38 -0
- data/docs/TransactionCleanseAndCategorizeRequest.md +11 -0
- data/docs/TransactionCleanseAndCategorizeResponse.md +20 -0
- data/docs/TransactionResponseBody.md +8 -0
- data/docs/TransactionsApi.md +126 -0
- data/docs/TransactionsCleanseAndCategorizeRequestBody.md +8 -0
- data/docs/TransactionsCleanseAndCategorizeResponseBody.md +8 -0
- data/docs/TransactionsResponseBody.md +9 -0
- data/docs/User.md +11 -0
- data/docs/UserCreateRequestBody.md +8 -0
- data/docs/UserResponseBody.md +8 -0
- data/docs/UserUpdateRequestBody.md +8 -0
- data/docs/UsersApi.md +193 -0
- data/docs/UsersResponseBody.md +9 -0
- data/docs/VerificationApi.md +120 -0
- data/git_push.sh +49 -0
- data/lib/atrium-ruby.rb +88 -0
- data/lib/atrium-ruby/api/accounts_api.rb +272 -0
- data/lib/atrium-ruby/api/atrium_client.rb +28 -0
- data/lib/atrium-ruby/api/connect_widget_api.rb +82 -0
- data/lib/atrium-ruby/api/identity_api.rb +140 -0
- data/lib/atrium-ruby/api/institutions_api.rb +181 -0
- data/lib/atrium-ruby/api/members_api.rb +749 -0
- data/lib/atrium-ruby/api/transactions_api.rb +198 -0
- data/lib/atrium-ruby/api/users_api.rb +287 -0
- data/lib/atrium-ruby/api/verification_api.rb +198 -0
- data/lib/atrium-ruby/api_client.rb +384 -0
- data/lib/atrium-ruby/api_error.rb +34 -0
- data/lib/atrium-ruby/configuration.rb +212 -0
- data/lib/atrium-ruby/models/account.rb +422 -0
- data/lib/atrium-ruby/models/account_number.rb +215 -0
- data/lib/atrium-ruby/models/account_numbers_response_body.rb +181 -0
- data/lib/atrium-ruby/models/account_owner.rb +269 -0
- data/lib/atrium-ruby/models/account_owners_response_body.rb +181 -0
- data/lib/atrium-ruby/models/account_response_body.rb +179 -0
- data/lib/atrium-ruby/models/accounts_response_body.rb +190 -0
- data/lib/atrium-ruby/models/challenge.rb +226 -0
- data/lib/atrium-ruby/models/challenge_option.rb +197 -0
- data/lib/atrium-ruby/models/challenges_response_body.rb +181 -0
- data/lib/atrium-ruby/models/connect_widget.rb +188 -0
- data/lib/atrium-ruby/models/connect_widget_request_body.rb +206 -0
- data/lib/atrium-ruby/models/connect_widget_response_body.rb +179 -0
- data/lib/atrium-ruby/models/credential_option.rb +188 -0
- data/lib/atrium-ruby/models/credential_request.rb +188 -0
- data/lib/atrium-ruby/models/credential_response.rb +217 -0
- data/lib/atrium-ruby/models/credentials_response_body.rb +181 -0
- data/lib/atrium-ruby/models/institution.rb +233 -0
- data/lib/atrium-ruby/models/institution_response_body.rb +179 -0
- data/lib/atrium-ruby/models/institutions_response_body.rb +190 -0
- data/lib/atrium-ruby/models/member.rb +269 -0
- data/lib/atrium-ruby/models/member_connection_status.rb +253 -0
- data/lib/atrium-ruby/models/member_connection_status_response_body.rb +179 -0
- data/lib/atrium-ruby/models/member_create_request.rb +218 -0
- data/lib/atrium-ruby/models/member_create_request_body.rb +179 -0
- data/lib/atrium-ruby/models/member_response_body.rb +179 -0
- data/lib/atrium-ruby/models/member_resume_request.rb +181 -0
- data/lib/atrium-ruby/models/member_resume_request_body.rb +179 -0
- data/lib/atrium-ruby/models/member_update_request.rb +199 -0
- data/lib/atrium-ruby/models/member_update_request_body.rb +179 -0
- data/lib/atrium-ruby/models/members_response_body.rb +190 -0
- data/lib/atrium-ruby/models/pagination.rb +206 -0
- data/lib/atrium-ruby/models/transaction.rb +449 -0
- data/lib/atrium-ruby/models/transaction_cleanse_and_categorize_request.rb +206 -0
- data/lib/atrium-ruby/models/transaction_cleanse_and_categorize_response.rb +287 -0
- data/lib/atrium-ruby/models/transaction_response_body.rb +179 -0
- data/lib/atrium-ruby/models/transactions_cleanse_and_categorize_request_body.rb +181 -0
- data/lib/atrium-ruby/models/transactions_cleanse_and_categorize_response_body.rb +181 -0
- data/lib/atrium-ruby/models/transactions_response_body.rb +190 -0
- data/lib/atrium-ruby/models/user.rb +206 -0
- data/lib/atrium-ruby/models/user_create_request_body.rb +179 -0
- data/lib/atrium-ruby/models/user_response_body.rb +179 -0
- data/lib/atrium-ruby/models/user_update_request_body.rb +179 -0
- data/lib/atrium-ruby/models/users_response_body.rb +190 -0
- data/lib/atrium-ruby/version.rb +11 -0
- data/spec/api/accounts_api_spec.rb +88 -0
- data/spec/api/connect_widget_api_spec.rb +43 -0
- data/spec/api/identity_api_spec.rb +56 -0
- data/spec/api/institutions_api_spec.rb +68 -0
- data/spec/api/members_api_spec.rb +195 -0
- data/spec/api/transactions_api_spec.rb +71 -0
- data/spec/api/users_api_spec.rb +92 -0
- data/spec/api/verification_api_spec.rb +69 -0
- data/spec/api_client_spec.rb +222 -0
- data/spec/configuration_spec.rb +38 -0
- data/spec/models/account_number_spec.rb +60 -0
- data/spec/models/account_numbers_response_body_spec.rb +36 -0
- data/spec/models/account_owner_spec.rb +96 -0
- data/spec/models/account_owners_response_body_spec.rb +36 -0
- data/spec/models/account_response_body_spec.rb +36 -0
- data/spec/models/account_spec.rb +198 -0
- data/spec/models/accounts_response_body_spec.rb +42 -0
- data/spec/models/challenge_option_spec.rb +48 -0
- data/spec/models/challenge_spec.rb +66 -0
- data/spec/models/challenges_response_body_spec.rb +36 -0
- data/spec/models/connect_widget_request_body_spec.rb +54 -0
- data/spec/models/connect_widget_response_body_spec.rb +36 -0
- data/spec/models/connect_widget_spec.rb +42 -0
- data/spec/models/credential_option_spec.rb +42 -0
- data/spec/models/credential_request_spec.rb +42 -0
- data/spec/models/credential_response_spec.rb +60 -0
- data/spec/models/credentials_response_body_spec.rb +36 -0
- data/spec/models/institution_response_body_spec.rb +36 -0
- data/spec/models/institution_spec.rb +72 -0
- data/spec/models/institutions_response_body_spec.rb +42 -0
- data/spec/models/member_connection_status_response_body_spec.rb +36 -0
- data/spec/models/member_connection_status_spec.rb +84 -0
- data/spec/models/member_create_request_body_spec.rb +36 -0
- data/spec/models/member_create_request_spec.rb +54 -0
- data/spec/models/member_response_body_spec.rb +36 -0
- data/spec/models/member_resume_request_body_spec.rb +36 -0
- data/spec/models/member_resume_request_spec.rb +36 -0
- data/spec/models/member_spec.rb +96 -0
- data/spec/models/member_update_request_body_spec.rb +36 -0
- data/spec/models/member_update_request_spec.rb +48 -0
- data/spec/models/members_response_body_spec.rb +42 -0
- data/spec/models/pagination_spec.rb +54 -0
- data/spec/models/transaction_cleanse_and_categorize_request_spec.rb +54 -0
- data/spec/models/transaction_cleanse_and_categorize_response_spec.rb +108 -0
- data/spec/models/transaction_response_body_spec.rb +36 -0
- data/spec/models/transaction_spec.rb +216 -0
- data/spec/models/transactions_cleanse_and_categorize_request_body_spec.rb +36 -0
- data/spec/models/transactions_cleanse_and_categorize_response_body_spec.rb +36 -0
- data/spec/models/transactions_response_body_spec.rb +42 -0
- data/spec/models/user_create_request_body_spec.rb +36 -0
- data/spec/models/user_response_body_spec.rb +36 -0
- data/spec/models/user_spec.rb +54 -0
- data/spec/models/user_update_request_body_spec.rb +36 -0
- data/spec/models/users_response_body_spec.rb +42 -0
- data/spec/spec_helper.rb +107 -0
- metadata +323 -91
- data/.gitignore +0 -10
- data/.rubocop.yml +0 -12
- data/.travis.yml +0 -12
- data/bin/console +0 -14
- data/bin/demo +0 -49
- data/bin/setup +0 -8
- data/examples/accounts_and_transactions.rb +0 -49
- data/examples/all_endpoints.rb +0 -226
- data/examples/example_workflow.rb +0 -176
- data/examples/multi_factor_authentication.rb +0 -57
- data/examples/update_credentials.rb +0 -58
- data/examples/user_and_member_creation.rb +0 -53
- data/lib/atrium.rb +0 -40
- data/lib/atrium/account.rb +0 -100
- data/lib/atrium/account_number.rb +0 -13
- data/lib/atrium/account_owner.rb +0 -19
- data/lib/atrium/challenge.rb +0 -13
- data/lib/atrium/client.rb +0 -51
- data/lib/atrium/connect.rb +0 -34
- data/lib/atrium/credential.rb +0 -11
- data/lib/atrium/error.rb +0 -4
- data/lib/atrium/institution.rb +0 -38
- data/lib/atrium/member.rb +0 -264
- data/lib/atrium/pageable.rb +0 -74
- data/lib/atrium/paginate.rb +0 -92
- data/lib/atrium/ruby.rb +0 -3
- data/lib/atrium/transaction.rb +0 -74
- data/lib/atrium/user.rb +0 -150
- data/lib/atrium/version.rb +0 -3
@@ -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::UserUpdateRequestBody
|
14
|
+
# Please update as you see appropriate
|
15
|
+
describe 'UserUpdateRequestBody' do
|
16
|
+
before do
|
17
|
+
# run before each test
|
18
|
+
@instance = Atrium::UserUpdateRequestBody.new
|
19
|
+
end
|
20
|
+
|
21
|
+
after do
|
22
|
+
# run after each test
|
23
|
+
end
|
24
|
+
|
25
|
+
describe 'test an instance of UserUpdateRequestBody' do
|
26
|
+
it 'should create an instance of UserUpdateRequestBody' do
|
27
|
+
expect(@instance).to be_instance_of(Atrium::UserUpdateRequestBody)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
describe 'test attribute "user"' 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,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::UsersResponseBody
|
14
|
+
# Please update as you see appropriate
|
15
|
+
describe 'UsersResponseBody' do
|
16
|
+
before do
|
17
|
+
# run before each test
|
18
|
+
@instance = Atrium::UsersResponseBody.new
|
19
|
+
end
|
20
|
+
|
21
|
+
after do
|
22
|
+
# run after each test
|
23
|
+
end
|
24
|
+
|
25
|
+
describe 'test an instance of UsersResponseBody' do
|
26
|
+
it 'should create an instance of UsersResponseBody' do
|
27
|
+
expect(@instance).to be_instance_of(Atrium::UsersResponseBody)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
describe 'test attribute "users"' 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
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,107 @@
|
|
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
|
+
# load the gem
|
10
|
+
require 'atrium-ruby'
|
11
|
+
|
12
|
+
# The following was generated by the `rspec --init` command. Conventionally, all
|
13
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
14
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
15
|
+
# this file to always be loaded, without a need to explicitly require it in any
|
16
|
+
# files.
|
17
|
+
#
|
18
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
19
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
20
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
21
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
22
|
+
# a separate helper file that requires the additional dependencies and performs
|
23
|
+
# the additional setup, and require it from the spec files that actually need
|
24
|
+
# it.
|
25
|
+
#
|
26
|
+
# The `.rspec` file also contains a few flags that are not defaults but that
|
27
|
+
# users commonly want.
|
28
|
+
#
|
29
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
30
|
+
RSpec.configure do |config|
|
31
|
+
# rspec-expectations config goes here. You can use an alternate
|
32
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
33
|
+
# assertions if you prefer.
|
34
|
+
config.expect_with :rspec do |expectations|
|
35
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
36
|
+
# and `failure_message` of custom matchers include text for helper methods
|
37
|
+
# defined using `chain`, e.g.:
|
38
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
39
|
+
# # => "be bigger than 2 and smaller than 4"
|
40
|
+
# ...rather than:
|
41
|
+
# # => "be bigger than 2"
|
42
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
43
|
+
end
|
44
|
+
|
45
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
46
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
47
|
+
config.mock_with :rspec do |mocks|
|
48
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
49
|
+
# a real object. This is generally recommended, and will default to
|
50
|
+
# `true` in RSpec 4.
|
51
|
+
mocks.verify_partial_doubles = true
|
52
|
+
end
|
53
|
+
|
54
|
+
# The settings below are suggested to provide a good initial experience
|
55
|
+
# with RSpec, but feel free to customize to your heart's content.
|
56
|
+
=begin
|
57
|
+
# These two settings work together to allow you to limit a spec run
|
58
|
+
# to individual examples or groups you care about by tagging them with
|
59
|
+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
60
|
+
# get run.
|
61
|
+
config.filter_run :focus
|
62
|
+
config.run_all_when_everything_filtered = true
|
63
|
+
|
64
|
+
# Allows RSpec to persist some state between runs in order to support
|
65
|
+
# the `--only-failures` and `--next-failure` CLI options. We recommend
|
66
|
+
# you configure your source control system to ignore this file.
|
67
|
+
config.example_status_persistence_file_path = "spec/examples.txt"
|
68
|
+
|
69
|
+
# Limits the available syntax to the non-monkey patched syntax that is
|
70
|
+
# recommended. For more details, see:
|
71
|
+
# - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
|
72
|
+
# - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
73
|
+
# - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
|
74
|
+
config.disable_monkey_patching!
|
75
|
+
|
76
|
+
# This setting enables warnings. It's recommended, but in some cases may
|
77
|
+
# be too noisy due to issues in dependencies.
|
78
|
+
config.warnings = true
|
79
|
+
|
80
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
81
|
+
# file, and it's useful to allow more verbose output when running an
|
82
|
+
# individual spec file.
|
83
|
+
if config.files_to_run.one?
|
84
|
+
# Use the documentation formatter for detailed output,
|
85
|
+
# unless a formatter has already been configured
|
86
|
+
# (e.g. via a command-line flag).
|
87
|
+
config.default_formatter = 'doc'
|
88
|
+
end
|
89
|
+
|
90
|
+
# Print the 10 slowest examples and example groups at the
|
91
|
+
# end of the spec run, to help surface which specs are running
|
92
|
+
# particularly slow.
|
93
|
+
config.profile_examples = 10
|
94
|
+
|
95
|
+
# Run specs in random order to surface order dependencies. If you find an
|
96
|
+
# order dependency and want to debug it, you can fix the order by providing
|
97
|
+
# the seed, which is printed after each run.
|
98
|
+
# --seed 1234
|
99
|
+
config.order = :random
|
100
|
+
|
101
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
102
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
103
|
+
# test failures related to randomization by passing the same `--seed` value
|
104
|
+
# as the one that triggered the failure.
|
105
|
+
Kernel.srand config.seed
|
106
|
+
=end
|
107
|
+
end
|
metadata
CHANGED
@@ -1,200 +1,377 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: atrium-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
8
|
-
autorequire:
|
9
|
-
bindir:
|
7
|
+
- MX
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-12-
|
11
|
+
date: 2018-12-19 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:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.0'
|
16
20
|
- - ">="
|
17
21
|
- !ruby/object:Gem::Version
|
18
|
-
version:
|
19
|
-
name: active_attr
|
20
|
-
prerelease: false
|
22
|
+
version: 1.0.1
|
21
23
|
type: :runtime
|
24
|
+
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.0'
|
24
30
|
- - ">="
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 1.0.1
|
27
33
|
- !ruby/object:Gem::Dependency
|
34
|
+
name: json
|
28
35
|
requirement: !ruby/object:Gem::Requirement
|
29
36
|
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '2.1'
|
30
40
|
- - ">="
|
31
41
|
- !ruby/object:Gem::Version
|
32
|
-
version:
|
33
|
-
name: httpclient
|
34
|
-
prerelease: false
|
42
|
+
version: 2.1.0
|
35
43
|
type: :runtime
|
44
|
+
prerelease: false
|
36
45
|
version_requirements: !ruby/object:Gem::Requirement
|
37
46
|
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '2.1'
|
38
50
|
- - ">="
|
39
51
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
52
|
+
version: 2.1.0
|
41
53
|
- !ruby/object:Gem::Dependency
|
54
|
+
name: rspec
|
42
55
|
requirement: !ruby/object:Gem::Requirement
|
43
56
|
requirements:
|
44
57
|
- - "~>"
|
45
58
|
- !ruby/object:Gem::Version
|
46
|
-
version: '
|
47
|
-
name: bundler
|
48
|
-
prerelease: false
|
49
|
-
type: :development
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '1.12'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
requirement: !ruby/object:Gem::Requirement
|
57
|
-
requirements:
|
59
|
+
version: '3.6'
|
58
60
|
- - ">="
|
59
61
|
- !ruby/object:Gem::Version
|
60
|
-
version:
|
61
|
-
name: pry
|
62
|
-
prerelease: false
|
62
|
+
version: 3.6.0
|
63
63
|
type: :development
|
64
|
+
prerelease: false
|
64
65
|
version_requirements: !ruby/object:Gem::Requirement
|
65
66
|
requirements:
|
67
|
+
- - "~>"
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '3.6'
|
66
70
|
- - ">="
|
67
71
|
- !ruby/object:Gem::Version
|
68
|
-
version:
|
72
|
+
version: 3.6.0
|
69
73
|
- !ruby/object:Gem::Dependency
|
74
|
+
name: vcr
|
70
75
|
requirement: !ruby/object:Gem::Requirement
|
71
76
|
requirements:
|
72
77
|
- - "~>"
|
73
78
|
- !ruby/object:Gem::Version
|
74
|
-
version: '
|
75
|
-
|
76
|
-
|
79
|
+
version: '3.0'
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 3.0.1
|
77
83
|
type: :development
|
84
|
+
prerelease: false
|
78
85
|
version_requirements: !ruby/object:Gem::Requirement
|
79
86
|
requirements:
|
80
87
|
- - "~>"
|
81
88
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
89
|
+
version: '3.0'
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: 3.0.1
|
83
93
|
- !ruby/object:Gem::Dependency
|
94
|
+
name: webmock
|
84
95
|
requirement: !ruby/object:Gem::Requirement
|
85
96
|
requirements:
|
97
|
+
- - "~>"
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '1.24'
|
86
100
|
- - ">="
|
87
101
|
- !ruby/object:Gem::Version
|
88
|
-
version:
|
89
|
-
name: rspec
|
90
|
-
prerelease: false
|
102
|
+
version: 1.24.3
|
91
103
|
type: :development
|
104
|
+
prerelease: false
|
92
105
|
version_requirements: !ruby/object:Gem::Requirement
|
93
106
|
requirements:
|
107
|
+
- - "~>"
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '1.24'
|
94
110
|
- - ">="
|
95
111
|
- !ruby/object:Gem::Version
|
96
|
-
version:
|
112
|
+
version: 1.24.3
|
97
113
|
- !ruby/object:Gem::Dependency
|
114
|
+
name: autotest
|
98
115
|
requirement: !ruby/object:Gem::Requirement
|
99
116
|
requirements:
|
117
|
+
- - "~>"
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: '4.4'
|
100
120
|
- - ">="
|
101
121
|
- !ruby/object:Gem::Version
|
102
|
-
version:
|
103
|
-
name: simplecov
|
104
|
-
prerelease: false
|
122
|
+
version: 4.4.6
|
105
123
|
type: :development
|
124
|
+
prerelease: false
|
106
125
|
version_requirements: !ruby/object:Gem::Requirement
|
107
126
|
requirements:
|
127
|
+
- - "~>"
|
128
|
+
- !ruby/object:Gem::Version
|
129
|
+
version: '4.4'
|
108
130
|
- - ">="
|
109
131
|
- !ruby/object:Gem::Version
|
110
|
-
version:
|
132
|
+
version: 4.4.6
|
111
133
|
- !ruby/object:Gem::Dependency
|
134
|
+
name: autotest-rails-pure
|
112
135
|
requirement: !ruby/object:Gem::Requirement
|
113
136
|
requirements:
|
137
|
+
- - "~>"
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: '4.1'
|
114
140
|
- - ">="
|
115
141
|
- !ruby/object:Gem::Version
|
116
|
-
version:
|
117
|
-
name: vcr
|
118
|
-
prerelease: false
|
142
|
+
version: 4.1.2
|
119
143
|
type: :development
|
144
|
+
prerelease: false
|
120
145
|
version_requirements: !ruby/object:Gem::Requirement
|
121
146
|
requirements:
|
147
|
+
- - "~>"
|
148
|
+
- !ruby/object:Gem::Version
|
149
|
+
version: '4.1'
|
122
150
|
- - ">="
|
123
151
|
- !ruby/object:Gem::Version
|
124
|
-
version:
|
152
|
+
version: 4.1.2
|
125
153
|
- !ruby/object:Gem::Dependency
|
154
|
+
name: autotest-growl
|
126
155
|
requirement: !ruby/object:Gem::Requirement
|
127
156
|
requirements:
|
157
|
+
- - "~>"
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '0.2'
|
128
160
|
- - ">="
|
129
161
|
- !ruby/object:Gem::Version
|
130
|
-
version:
|
131
|
-
name: webmock
|
132
|
-
prerelease: false
|
162
|
+
version: 0.2.16
|
133
163
|
type: :development
|
164
|
+
prerelease: false
|
134
165
|
version_requirements: !ruby/object:Gem::Requirement
|
135
166
|
requirements:
|
167
|
+
- - "~>"
|
168
|
+
- !ruby/object:Gem::Version
|
169
|
+
version: '0.2'
|
136
170
|
- - ">="
|
137
171
|
- !ruby/object:Gem::Version
|
138
|
-
version:
|
172
|
+
version: 0.2.16
|
139
173
|
- !ruby/object:Gem::Dependency
|
174
|
+
name: autotest-fsevent
|
140
175
|
requirement: !ruby/object:Gem::Requirement
|
141
176
|
requirements:
|
177
|
+
- - "~>"
|
178
|
+
- !ruby/object:Gem::Version
|
179
|
+
version: '0.2'
|
142
180
|
- - ">="
|
143
181
|
- !ruby/object:Gem::Version
|
144
|
-
version:
|
145
|
-
name: mad_rubocop
|
146
|
-
prerelease: false
|
182
|
+
version: 0.2.12
|
147
183
|
type: :development
|
184
|
+
prerelease: false
|
148
185
|
version_requirements: !ruby/object:Gem::Requirement
|
149
186
|
requirements:
|
187
|
+
- - "~>"
|
188
|
+
- !ruby/object:Gem::Version
|
189
|
+
version: '0.2'
|
150
190
|
- - ">="
|
151
191
|
- !ruby/object:Gem::Version
|
152
|
-
version:
|
153
|
-
description:
|
192
|
+
version: 0.2.12
|
193
|
+
description: A ruby wrapper for the MX API.
|
154
194
|
email:
|
155
|
-
-
|
195
|
+
- atrium.api@mx.com
|
156
196
|
executables: []
|
157
197
|
extensions: []
|
158
198
|
extra_rdoc_files: []
|
159
199
|
files:
|
160
|
-
- ".gitignore"
|
161
|
-
- ".rubocop.yml"
|
162
|
-
- ".travis.yml"
|
163
200
|
- Gemfile
|
164
201
|
- README.md
|
165
202
|
- Rakefile
|
166
203
|
- atrium-ruby.gemspec
|
167
|
-
-
|
168
|
-
-
|
169
|
-
-
|
170
|
-
-
|
171
|
-
-
|
172
|
-
-
|
173
|
-
-
|
174
|
-
-
|
175
|
-
-
|
176
|
-
-
|
177
|
-
-
|
178
|
-
-
|
179
|
-
-
|
180
|
-
-
|
181
|
-
-
|
182
|
-
-
|
183
|
-
-
|
184
|
-
-
|
185
|
-
-
|
186
|
-
-
|
187
|
-
-
|
188
|
-
-
|
189
|
-
-
|
190
|
-
-
|
191
|
-
-
|
192
|
-
-
|
193
|
-
|
204
|
+
- docs/Account.md
|
205
|
+
- docs/AccountNumber.md
|
206
|
+
- docs/AccountNumbersResponseBody.md
|
207
|
+
- docs/AccountOwner.md
|
208
|
+
- docs/AccountOwnersResponseBody.md
|
209
|
+
- docs/AccountResponseBody.md
|
210
|
+
- docs/AccountsApi.md
|
211
|
+
- docs/AccountsResponseBody.md
|
212
|
+
- docs/Challenge.md
|
213
|
+
- docs/ChallengeOption.md
|
214
|
+
- docs/ChallengesResponseBody.md
|
215
|
+
- docs/ConnectWidget.md
|
216
|
+
- docs/ConnectWidgetApi.md
|
217
|
+
- docs/ConnectWidgetRequestBody.md
|
218
|
+
- docs/ConnectWidgetResponseBody.md
|
219
|
+
- docs/CredentialOption.md
|
220
|
+
- docs/CredentialRequest.md
|
221
|
+
- docs/CredentialResponse.md
|
222
|
+
- docs/CredentialsResponseBody.md
|
223
|
+
- docs/IdentityApi.md
|
224
|
+
- docs/Institution.md
|
225
|
+
- docs/InstitutionResponseBody.md
|
226
|
+
- docs/InstitutionsApi.md
|
227
|
+
- docs/InstitutionsResponseBody.md
|
228
|
+
- docs/Member.md
|
229
|
+
- docs/MemberConnectionStatus.md
|
230
|
+
- docs/MemberConnectionStatusResponseBody.md
|
231
|
+
- docs/MemberCreateRequest.md
|
232
|
+
- docs/MemberCreateRequestBody.md
|
233
|
+
- docs/MemberResponseBody.md
|
234
|
+
- docs/MemberResumeRequest.md
|
235
|
+
- docs/MemberResumeRequestBody.md
|
236
|
+
- docs/MemberUpdateRequest.md
|
237
|
+
- docs/MemberUpdateRequestBody.md
|
238
|
+
- docs/MembersApi.md
|
239
|
+
- docs/MembersResponseBody.md
|
240
|
+
- docs/Pagination.md
|
241
|
+
- docs/Transaction.md
|
242
|
+
- docs/TransactionCleanseAndCategorizeRequest.md
|
243
|
+
- docs/TransactionCleanseAndCategorizeResponse.md
|
244
|
+
- docs/TransactionResponseBody.md
|
245
|
+
- docs/TransactionsApi.md
|
246
|
+
- docs/TransactionsCleanseAndCategorizeRequestBody.md
|
247
|
+
- docs/TransactionsCleanseAndCategorizeResponseBody.md
|
248
|
+
- docs/TransactionsResponseBody.md
|
249
|
+
- docs/User.md
|
250
|
+
- docs/UserCreateRequestBody.md
|
251
|
+
- docs/UserResponseBody.md
|
252
|
+
- docs/UserUpdateRequestBody.md
|
253
|
+
- docs/UsersApi.md
|
254
|
+
- docs/UsersResponseBody.md
|
255
|
+
- docs/VerificationApi.md
|
256
|
+
- git_push.sh
|
257
|
+
- lib/atrium-ruby.rb
|
258
|
+
- lib/atrium-ruby/api/accounts_api.rb
|
259
|
+
- lib/atrium-ruby/api/atrium_client.rb
|
260
|
+
- lib/atrium-ruby/api/connect_widget_api.rb
|
261
|
+
- lib/atrium-ruby/api/identity_api.rb
|
262
|
+
- lib/atrium-ruby/api/institutions_api.rb
|
263
|
+
- lib/atrium-ruby/api/members_api.rb
|
264
|
+
- lib/atrium-ruby/api/transactions_api.rb
|
265
|
+
- lib/atrium-ruby/api/users_api.rb
|
266
|
+
- lib/atrium-ruby/api/verification_api.rb
|
267
|
+
- lib/atrium-ruby/api_client.rb
|
268
|
+
- lib/atrium-ruby/api_error.rb
|
269
|
+
- lib/atrium-ruby/configuration.rb
|
270
|
+
- lib/atrium-ruby/models/account.rb
|
271
|
+
- lib/atrium-ruby/models/account_number.rb
|
272
|
+
- lib/atrium-ruby/models/account_numbers_response_body.rb
|
273
|
+
- lib/atrium-ruby/models/account_owner.rb
|
274
|
+
- lib/atrium-ruby/models/account_owners_response_body.rb
|
275
|
+
- lib/atrium-ruby/models/account_response_body.rb
|
276
|
+
- lib/atrium-ruby/models/accounts_response_body.rb
|
277
|
+
- lib/atrium-ruby/models/challenge.rb
|
278
|
+
- lib/atrium-ruby/models/challenge_option.rb
|
279
|
+
- lib/atrium-ruby/models/challenges_response_body.rb
|
280
|
+
- lib/atrium-ruby/models/connect_widget.rb
|
281
|
+
- lib/atrium-ruby/models/connect_widget_request_body.rb
|
282
|
+
- lib/atrium-ruby/models/connect_widget_response_body.rb
|
283
|
+
- lib/atrium-ruby/models/credential_option.rb
|
284
|
+
- lib/atrium-ruby/models/credential_request.rb
|
285
|
+
- lib/atrium-ruby/models/credential_response.rb
|
286
|
+
- lib/atrium-ruby/models/credentials_response_body.rb
|
287
|
+
- lib/atrium-ruby/models/institution.rb
|
288
|
+
- lib/atrium-ruby/models/institution_response_body.rb
|
289
|
+
- lib/atrium-ruby/models/institutions_response_body.rb
|
290
|
+
- lib/atrium-ruby/models/member.rb
|
291
|
+
- lib/atrium-ruby/models/member_connection_status.rb
|
292
|
+
- lib/atrium-ruby/models/member_connection_status_response_body.rb
|
293
|
+
- lib/atrium-ruby/models/member_create_request.rb
|
294
|
+
- lib/atrium-ruby/models/member_create_request_body.rb
|
295
|
+
- lib/atrium-ruby/models/member_response_body.rb
|
296
|
+
- lib/atrium-ruby/models/member_resume_request.rb
|
297
|
+
- lib/atrium-ruby/models/member_resume_request_body.rb
|
298
|
+
- lib/atrium-ruby/models/member_update_request.rb
|
299
|
+
- lib/atrium-ruby/models/member_update_request_body.rb
|
300
|
+
- lib/atrium-ruby/models/members_response_body.rb
|
301
|
+
- lib/atrium-ruby/models/pagination.rb
|
302
|
+
- lib/atrium-ruby/models/transaction.rb
|
303
|
+
- lib/atrium-ruby/models/transaction_cleanse_and_categorize_request.rb
|
304
|
+
- lib/atrium-ruby/models/transaction_cleanse_and_categorize_response.rb
|
305
|
+
- lib/atrium-ruby/models/transaction_response_body.rb
|
306
|
+
- lib/atrium-ruby/models/transactions_cleanse_and_categorize_request_body.rb
|
307
|
+
- lib/atrium-ruby/models/transactions_cleanse_and_categorize_response_body.rb
|
308
|
+
- lib/atrium-ruby/models/transactions_response_body.rb
|
309
|
+
- lib/atrium-ruby/models/user.rb
|
310
|
+
- lib/atrium-ruby/models/user_create_request_body.rb
|
311
|
+
- lib/atrium-ruby/models/user_response_body.rb
|
312
|
+
- lib/atrium-ruby/models/user_update_request_body.rb
|
313
|
+
- lib/atrium-ruby/models/users_response_body.rb
|
314
|
+
- lib/atrium-ruby/version.rb
|
315
|
+
- spec/api/accounts_api_spec.rb
|
316
|
+
- spec/api/connect_widget_api_spec.rb
|
317
|
+
- spec/api/identity_api_spec.rb
|
318
|
+
- spec/api/institutions_api_spec.rb
|
319
|
+
- spec/api/members_api_spec.rb
|
320
|
+
- spec/api/transactions_api_spec.rb
|
321
|
+
- spec/api/users_api_spec.rb
|
322
|
+
- spec/api/verification_api_spec.rb
|
323
|
+
- spec/api_client_spec.rb
|
324
|
+
- spec/configuration_spec.rb
|
325
|
+
- spec/models/account_number_spec.rb
|
326
|
+
- spec/models/account_numbers_response_body_spec.rb
|
327
|
+
- spec/models/account_owner_spec.rb
|
328
|
+
- spec/models/account_owners_response_body_spec.rb
|
329
|
+
- spec/models/account_response_body_spec.rb
|
330
|
+
- spec/models/account_spec.rb
|
331
|
+
- spec/models/accounts_response_body_spec.rb
|
332
|
+
- spec/models/challenge_option_spec.rb
|
333
|
+
- spec/models/challenge_spec.rb
|
334
|
+
- spec/models/challenges_response_body_spec.rb
|
335
|
+
- spec/models/connect_widget_request_body_spec.rb
|
336
|
+
- spec/models/connect_widget_response_body_spec.rb
|
337
|
+
- spec/models/connect_widget_spec.rb
|
338
|
+
- spec/models/credential_option_spec.rb
|
339
|
+
- spec/models/credential_request_spec.rb
|
340
|
+
- spec/models/credential_response_spec.rb
|
341
|
+
- spec/models/credentials_response_body_spec.rb
|
342
|
+
- spec/models/institution_response_body_spec.rb
|
343
|
+
- spec/models/institution_spec.rb
|
344
|
+
- spec/models/institutions_response_body_spec.rb
|
345
|
+
- spec/models/member_connection_status_response_body_spec.rb
|
346
|
+
- spec/models/member_connection_status_spec.rb
|
347
|
+
- spec/models/member_create_request_body_spec.rb
|
348
|
+
- spec/models/member_create_request_spec.rb
|
349
|
+
- spec/models/member_response_body_spec.rb
|
350
|
+
- spec/models/member_resume_request_body_spec.rb
|
351
|
+
- spec/models/member_resume_request_spec.rb
|
352
|
+
- spec/models/member_spec.rb
|
353
|
+
- spec/models/member_update_request_body_spec.rb
|
354
|
+
- spec/models/member_update_request_spec.rb
|
355
|
+
- spec/models/members_response_body_spec.rb
|
356
|
+
- spec/models/pagination_spec.rb
|
357
|
+
- spec/models/transaction_cleanse_and_categorize_request_spec.rb
|
358
|
+
- spec/models/transaction_cleanse_and_categorize_response_spec.rb
|
359
|
+
- spec/models/transaction_response_body_spec.rb
|
360
|
+
- spec/models/transaction_spec.rb
|
361
|
+
- spec/models/transactions_cleanse_and_categorize_request_body_spec.rb
|
362
|
+
- spec/models/transactions_cleanse_and_categorize_response_body_spec.rb
|
363
|
+
- spec/models/transactions_response_body_spec.rb
|
364
|
+
- spec/models/user_create_request_body_spec.rb
|
365
|
+
- spec/models/user_response_body_spec.rb
|
366
|
+
- spec/models/user_spec.rb
|
367
|
+
- spec/models/user_update_request_body_spec.rb
|
368
|
+
- spec/models/users_response_body_spec.rb
|
369
|
+
- spec/spec_helper.rb
|
370
|
+
homepage: https://atrium.mx.com
|
194
371
|
licenses:
|
195
372
|
- MIT
|
196
373
|
metadata: {}
|
197
|
-
post_install_message:
|
374
|
+
post_install_message:
|
198
375
|
rdoc_options: []
|
199
376
|
require_paths:
|
200
377
|
- lib
|
@@ -202,16 +379,71 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
202
379
|
requirements:
|
203
380
|
- - ">="
|
204
381
|
- !ruby/object:Gem::Version
|
205
|
-
version: '
|
382
|
+
version: '1.9'
|
206
383
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
207
384
|
requirements:
|
208
385
|
- - ">="
|
209
386
|
- !ruby/object:Gem::Version
|
210
387
|
version: '0'
|
211
388
|
requirements: []
|
212
|
-
rubyforge_project:
|
213
|
-
rubygems_version: 2.6.
|
214
|
-
signing_key:
|
389
|
+
rubyforge_project:
|
390
|
+
rubygems_version: 2.6.14
|
391
|
+
signing_key:
|
215
392
|
specification_version: 4
|
216
393
|
summary: Ruby wrapper for the Atrium API by MX
|
217
|
-
test_files:
|
394
|
+
test_files:
|
395
|
+
- spec/api/identity_api_spec.rb
|
396
|
+
- spec/api/members_api_spec.rb
|
397
|
+
- spec/api/verification_api_spec.rb
|
398
|
+
- spec/api/transactions_api_spec.rb
|
399
|
+
- spec/api/connect_widget_api_spec.rb
|
400
|
+
- spec/api/institutions_api_spec.rb
|
401
|
+
- spec/api/accounts_api_spec.rb
|
402
|
+
- spec/api/users_api_spec.rb
|
403
|
+
- spec/api_client_spec.rb
|
404
|
+
- spec/configuration_spec.rb
|
405
|
+
- spec/models/user_response_body_spec.rb
|
406
|
+
- spec/models/member_response_body_spec.rb
|
407
|
+
- spec/models/account_owners_response_body_spec.rb
|
408
|
+
- spec/models/transaction_response_body_spec.rb
|
409
|
+
- spec/models/account_spec.rb
|
410
|
+
- spec/models/credential_request_spec.rb
|
411
|
+
- spec/models/challenge_option_spec.rb
|
412
|
+
- spec/models/connect_widget_request_body_spec.rb
|
413
|
+
- spec/models/institution_spec.rb
|
414
|
+
- spec/models/credential_option_spec.rb
|
415
|
+
- spec/models/account_number_spec.rb
|
416
|
+
- spec/models/members_response_body_spec.rb
|
417
|
+
- spec/models/transactions_response_body_spec.rb
|
418
|
+
- spec/models/transactions_cleanse_and_categorize_response_body_spec.rb
|
419
|
+
- spec/models/credential_response_spec.rb
|
420
|
+
- spec/models/institution_response_body_spec.rb
|
421
|
+
- spec/models/institutions_response_body_spec.rb
|
422
|
+
- spec/models/member_resume_request_spec.rb
|
423
|
+
- spec/models/challenges_response_body_spec.rb
|
424
|
+
- spec/models/account_numbers_response_body_spec.rb
|
425
|
+
- spec/models/credentials_response_body_spec.rb
|
426
|
+
- spec/models/member_update_request_body_spec.rb
|
427
|
+
- spec/models/member_create_request_body_spec.rb
|
428
|
+
- spec/models/transaction_spec.rb
|
429
|
+
- spec/models/member_connection_status_spec.rb
|
430
|
+
- spec/models/connect_widget_response_body_spec.rb
|
431
|
+
- spec/models/users_response_body_spec.rb
|
432
|
+
- spec/models/challenge_spec.rb
|
433
|
+
- spec/models/member_create_request_spec.rb
|
434
|
+
- spec/models/member_resume_request_body_spec.rb
|
435
|
+
- spec/models/pagination_spec.rb
|
436
|
+
- spec/models/user_create_request_body_spec.rb
|
437
|
+
- spec/models/user_update_request_body_spec.rb
|
438
|
+
- spec/models/transaction_cleanse_and_categorize_response_spec.rb
|
439
|
+
- spec/models/member_connection_status_response_body_spec.rb
|
440
|
+
- spec/models/accounts_response_body_spec.rb
|
441
|
+
- spec/models/transaction_cleanse_and_categorize_request_spec.rb
|
442
|
+
- spec/models/connect_widget_spec.rb
|
443
|
+
- spec/models/account_owner_spec.rb
|
444
|
+
- spec/models/member_update_request_spec.rb
|
445
|
+
- spec/models/account_response_body_spec.rb
|
446
|
+
- spec/models/user_spec.rb
|
447
|
+
- spec/models/transactions_cleanse_and_categorize_request_body_spec.rb
|
448
|
+
- spec/models/member_spec.rb
|
449
|
+
- spec/spec_helper.rb
|