mx-platform-ruby 0.8.2 → 0.8.6
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/Gemfile.lock +4 -4
- data/README.md +6 -3
- data/docs/MxPlatformApi.md +83 -0
- data/lib/mx-platform-ruby/api/mx_platform_api.rb +81 -0
- data/lib/mx-platform-ruby/version.rb +1 -1
- data/openapi/config.yml +9 -9
- data/openapi/templates/README.mustache +6 -3
- data/openapitools.json +7 -0
- data/spec/api/mx_platform_api_spec.rb +17 -0
- metadata +94 -93
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 13988b012c37eecb0a0cc8a50fb2a2a607d2f778e7f005af3a9f5349e001e5e9
|
4
|
+
data.tar.gz: e9b91b05d931d91036aa31e76f192cda96e05ad201c499256304fa530239775a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da732186145704d494db672dcc748d4243e76188a3f3ac9908105e46d4a1fb72dd5f0c8339702d7f36952c70abebf34e8cb4519b67e23624f3b626823017dfbd
|
7
|
+
data.tar.gz: 0e1ebc68f6b138d80c7e8d666947f66445dcbba03bdeaa82a5015903bae8880e2a3c7d2ae95bbdcefb2100110dae93a5bf82206ebb443c5fc996997dd910a65b
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
mx-platform-ruby (0.8.
|
4
|
+
mx-platform-ruby (0.8.6)
|
5
5
|
faraday (~> 1.0, >= 1.0.1)
|
6
6
|
|
7
7
|
GEM
|
@@ -54,12 +54,12 @@ GEM
|
|
54
54
|
rspec-core (~> 3.10.0)
|
55
55
|
rspec-expectations (~> 3.10.0)
|
56
56
|
rspec-mocks (~> 3.10.0)
|
57
|
-
rspec-core (3.10.
|
57
|
+
rspec-core (3.10.2)
|
58
58
|
rspec-support (~> 3.10.0)
|
59
59
|
rspec-expectations (3.10.2)
|
60
60
|
diff-lcs (>= 1.2.0, < 2.0)
|
61
61
|
rspec-support (~> 3.10.0)
|
62
|
-
rspec-mocks (3.10.
|
62
|
+
rspec-mocks (3.10.3)
|
63
63
|
diff-lcs (>= 1.2.0, < 2.0)
|
64
64
|
rspec-support (~> 3.10.0)
|
65
65
|
rspec-support (3.10.3)
|
@@ -87,4 +87,4 @@ DEPENDENCIES
|
|
87
87
|
rubocop (~> 0.66.0)
|
88
88
|
|
89
89
|
BUNDLED WITH
|
90
|
-
2.3.
|
90
|
+
2.3.6
|
data/README.md
CHANGED
@@ -47,7 +47,10 @@ MxPlatformRuby.configure do |config|
|
|
47
47
|
config.server_index = 1
|
48
48
|
end
|
49
49
|
|
50
|
-
|
50
|
+
api_client = ::MxPlatformRuby::ApiClient.new
|
51
|
+
api_client.default_headers['Accept'] = 'application/vnd.mx.api.v1+json'
|
52
|
+
mx_platform_api = ::MxPlatformRuby::MxPlatformApi.new(api_client)
|
53
|
+
|
51
54
|
user_create_request_body = MxPlatformRuby::UserCreateRequestBody.new(
|
52
55
|
user: MxPlatformRuby::UserCreateRequest.new(
|
53
56
|
metadata: "Creating a user!"
|
@@ -66,10 +69,10 @@ end
|
|
66
69
|
|
67
70
|
This project was generated by the [OpenAPI Generator](https://openapi-generator.tech). To generate this library, verify you have the latest version of the `openapi-generator-cli` found [here.](https://github.com/OpenAPITools/openapi-generator#17---npm)
|
68
71
|
|
69
|
-
Running the following command in this repo's directory will generate this library using the [MX Platform API OpenAPI spec](https://github.com/mxenabled/openapi/blob/master/openapi/
|
72
|
+
Running the following command in this repo's directory will generate this library using the [MX Platform API OpenAPI spec](https://github.com/mxenabled/openapi/blob/master/openapi/mx_platform_api.yml) with our [configuration and templates.](https://github.com/mxenabled/mx-platform-ruby/tree/master/openapi)
|
70
73
|
```shell
|
71
74
|
openapi-generator-cli generate \
|
72
|
-
-i https://raw.githubusercontent.com/mxenabled/openapi/master/openapi/
|
75
|
+
-i https://raw.githubusercontent.com/mxenabled/openapi/master/openapi/mx_platform_api.yml \
|
73
76
|
-g ruby \
|
74
77
|
-c ./openapi/config.yml \
|
75
78
|
-t ./openapi/templates
|
data/docs/MxPlatformApi.md
CHANGED
@@ -37,6 +37,7 @@ All URIs are relative to *https://api.mx.com*
|
|
37
37
|
| [**list_default_categories_by_user**](MxPlatformApi.md#list_default_categories_by_user) | **GET** /users/{user_guid}/categories/default | List default categories by user |
|
38
38
|
| [**list_favorite_institutions**](MxPlatformApi.md#list_favorite_institutions) | **GET** /institutions/favorites | List favorite institutions |
|
39
39
|
| [**list_holdings**](MxPlatformApi.md#list_holdings) | **GET** /users/{user_guid}/holdings | List holdings |
|
40
|
+
| [**list_holdings_by_account**](MxPlatformApi.md#list_holdings_by_account) | **GET** /users/{user_guid}/accounts/{account_guid}/holdings | List holdings by account |
|
40
41
|
| [**list_holdings_by_member**](MxPlatformApi.md#list_holdings_by_member) | **GET** /users/{user_guid}/members/{member_guid}/holdings | List holdings by member |
|
41
42
|
| [**list_institution_credentials**](MxPlatformApi.md#list_institution_credentials) | **GET** /institutions/{institution_code}/credentials | List institution credentials |
|
42
43
|
| [**list_institutions**](MxPlatformApi.md#list_institutions) | **GET** /institutions | List institutions |
|
@@ -2503,6 +2504,88 @@ end
|
|
2503
2504
|
- **Accept**: application/vnd.mx.api.v1+json
|
2504
2505
|
|
2505
2506
|
|
2507
|
+
## list_holdings_by_account
|
2508
|
+
|
2509
|
+
> <HoldingsResponseBody> list_holdings_by_account(account_guid, user_guid, opts)
|
2510
|
+
|
2511
|
+
List holdings by account
|
2512
|
+
|
2513
|
+
This endpoint returns all holdings associated with the specified `account`.
|
2514
|
+
|
2515
|
+
### Examples
|
2516
|
+
|
2517
|
+
```ruby
|
2518
|
+
require 'time'
|
2519
|
+
require 'mx-platform-ruby'
|
2520
|
+
# setup authorization
|
2521
|
+
MxPlatformRuby.configure do |config|
|
2522
|
+
# Configure HTTP basic authorization: basicAuth
|
2523
|
+
config.username = 'YOUR USERNAME'
|
2524
|
+
config.password = 'YOUR PASSWORD'
|
2525
|
+
end
|
2526
|
+
|
2527
|
+
api_instance = MxPlatformRuby::MxPlatformApi.new
|
2528
|
+
account_guid = 'ACT-7c6f361b-e582-15b6-60c0-358f12466b4b' # String | The unique id for the `account`.
|
2529
|
+
user_guid = 'USR-fa7537f3-48aa-a683-a02a-b18940482f54' # String | The unique id for the `user`.
|
2530
|
+
opts = {
|
2531
|
+
from_date: '2015-09-20', # String | Filter holdings from this date.
|
2532
|
+
page: 1, # Integer | Specify current page.
|
2533
|
+
records_per_page: 10, # Integer | Specify records per page.
|
2534
|
+
to_date: '2019-10-20' # String | Filter holdings to this date.
|
2535
|
+
}
|
2536
|
+
|
2537
|
+
begin
|
2538
|
+
# List holdings by account
|
2539
|
+
result = api_instance.list_holdings_by_account(account_guid, user_guid, opts)
|
2540
|
+
p result
|
2541
|
+
rescue MxPlatformRuby::ApiError => e
|
2542
|
+
puts "Error when calling MxPlatformApi->list_holdings_by_account: #{e}"
|
2543
|
+
end
|
2544
|
+
```
|
2545
|
+
|
2546
|
+
#### Using the list_holdings_by_account_with_http_info variant
|
2547
|
+
|
2548
|
+
This returns an Array which contains the response data, status code and headers.
|
2549
|
+
|
2550
|
+
> <Array(<HoldingsResponseBody>, Integer, Hash)> list_holdings_by_account_with_http_info(account_guid, user_guid, opts)
|
2551
|
+
|
2552
|
+
```ruby
|
2553
|
+
begin
|
2554
|
+
# List holdings by account
|
2555
|
+
data, status_code, headers = api_instance.list_holdings_by_account_with_http_info(account_guid, user_guid, opts)
|
2556
|
+
p status_code # => 2xx
|
2557
|
+
p headers # => { ... }
|
2558
|
+
p data # => <HoldingsResponseBody>
|
2559
|
+
rescue MxPlatformRuby::ApiError => e
|
2560
|
+
puts "Error when calling MxPlatformApi->list_holdings_by_account_with_http_info: #{e}"
|
2561
|
+
end
|
2562
|
+
```
|
2563
|
+
|
2564
|
+
### Parameters
|
2565
|
+
|
2566
|
+
| Name | Type | Description | Notes |
|
2567
|
+
| ---- | ---- | ----------- | ----- |
|
2568
|
+
| **account_guid** | **String** | The unique id for the `account`. | |
|
2569
|
+
| **user_guid** | **String** | The unique id for the `user`. | |
|
2570
|
+
| **from_date** | **String** | Filter holdings from this date. | [optional] |
|
2571
|
+
| **page** | **Integer** | Specify current page. | [optional] |
|
2572
|
+
| **records_per_page** | **Integer** | Specify records per page. | [optional] |
|
2573
|
+
| **to_date** | **String** | Filter holdings to this date. | [optional] |
|
2574
|
+
|
2575
|
+
### Return type
|
2576
|
+
|
2577
|
+
[**HoldingsResponseBody**](HoldingsResponseBody.md)
|
2578
|
+
|
2579
|
+
### Authorization
|
2580
|
+
|
2581
|
+
[basicAuth](../README.md#basicAuth)
|
2582
|
+
|
2583
|
+
### HTTP request headers
|
2584
|
+
|
2585
|
+
- **Content-Type**: Not defined
|
2586
|
+
- **Accept**: application/vnd.mx.api.v1+json
|
2587
|
+
|
2588
|
+
|
2506
2589
|
## list_holdings_by_member
|
2507
2590
|
|
2508
2591
|
> <HoldingsResponseBody> list_holdings_by_member(member_guid, user_guid, opts)
|
@@ -2352,6 +2352,87 @@ module MxPlatformRuby
|
|
2352
2352
|
return data, status_code, headers
|
2353
2353
|
end
|
2354
2354
|
|
2355
|
+
# List holdings by account
|
2356
|
+
# This endpoint returns all holdings associated with the specified `account`.
|
2357
|
+
# @param account_guid [String] The unique id for the `account`.
|
2358
|
+
# @param user_guid [String] The unique id for the `user`.
|
2359
|
+
# @param [Hash] opts the optional parameters
|
2360
|
+
# @option opts [String] :from_date Filter holdings from this date.
|
2361
|
+
# @option opts [Integer] :page Specify current page.
|
2362
|
+
# @option opts [Integer] :records_per_page Specify records per page.
|
2363
|
+
# @option opts [String] :to_date Filter holdings to this date.
|
2364
|
+
# @return [HoldingsResponseBody]
|
2365
|
+
def list_holdings_by_account(account_guid, user_guid, opts = {})
|
2366
|
+
data, _status_code, _headers = list_holdings_by_account_with_http_info(account_guid, user_guid, opts)
|
2367
|
+
data
|
2368
|
+
end
|
2369
|
+
|
2370
|
+
# List holdings by account
|
2371
|
+
# This endpoint returns all holdings associated with the specified `account`.
|
2372
|
+
# @param account_guid [String] The unique id for the `account`.
|
2373
|
+
# @param user_guid [String] The unique id for the `user`.
|
2374
|
+
# @param [Hash] opts the optional parameters
|
2375
|
+
# @option opts [String] :from_date Filter holdings from this date.
|
2376
|
+
# @option opts [Integer] :page Specify current page.
|
2377
|
+
# @option opts [Integer] :records_per_page Specify records per page.
|
2378
|
+
# @option opts [String] :to_date Filter holdings to this date.
|
2379
|
+
# @return [Array<(HoldingsResponseBody, Integer, Hash)>] HoldingsResponseBody data, response status code and response headers
|
2380
|
+
def list_holdings_by_account_with_http_info(account_guid, user_guid, opts = {})
|
2381
|
+
if @api_client.config.debugging
|
2382
|
+
@api_client.config.logger.debug 'Calling API: MxPlatformApi.list_holdings_by_account ...'
|
2383
|
+
end
|
2384
|
+
# verify the required parameter 'account_guid' is set
|
2385
|
+
if @api_client.config.client_side_validation && account_guid.nil?
|
2386
|
+
fail ArgumentError, "Missing the required parameter 'account_guid' when calling MxPlatformApi.list_holdings_by_account"
|
2387
|
+
end
|
2388
|
+
# verify the required parameter 'user_guid' is set
|
2389
|
+
if @api_client.config.client_side_validation && user_guid.nil?
|
2390
|
+
fail ArgumentError, "Missing the required parameter 'user_guid' when calling MxPlatformApi.list_holdings_by_account"
|
2391
|
+
end
|
2392
|
+
# resource path
|
2393
|
+
local_var_path = '/users/{user_guid}/accounts/{account_guid}/holdings'.sub('{' + 'account_guid' + '}', CGI.escape(account_guid.to_s)).sub('{' + 'user_guid' + '}', CGI.escape(user_guid.to_s))
|
2394
|
+
|
2395
|
+
# query parameters
|
2396
|
+
query_params = opts[:query_params] || {}
|
2397
|
+
query_params[:'from_date'] = opts[:'from_date'] if !opts[:'from_date'].nil?
|
2398
|
+
query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
|
2399
|
+
query_params[:'records_per_page'] = opts[:'records_per_page'] if !opts[:'records_per_page'].nil?
|
2400
|
+
query_params[:'to_date'] = opts[:'to_date'] if !opts[:'to_date'].nil?
|
2401
|
+
|
2402
|
+
# header parameters
|
2403
|
+
header_params = opts[:header_params] || {}
|
2404
|
+
# HTTP header 'Accept' (if needed)
|
2405
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/vnd.mx.api.v1+json'])
|
2406
|
+
|
2407
|
+
# form parameters
|
2408
|
+
form_params = opts[:form_params] || {}
|
2409
|
+
|
2410
|
+
# http body (model)
|
2411
|
+
post_body = opts[:debug_body]
|
2412
|
+
|
2413
|
+
# return_type
|
2414
|
+
return_type = opts[:debug_return_type] || 'HoldingsResponseBody'
|
2415
|
+
|
2416
|
+
# auth_names
|
2417
|
+
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
2418
|
+
|
2419
|
+
new_options = opts.merge(
|
2420
|
+
:operation => :"MxPlatformApi.list_holdings_by_account",
|
2421
|
+
:header_params => header_params,
|
2422
|
+
:query_params => query_params,
|
2423
|
+
:form_params => form_params,
|
2424
|
+
:body => post_body,
|
2425
|
+
:auth_names => auth_names,
|
2426
|
+
:return_type => return_type
|
2427
|
+
)
|
2428
|
+
|
2429
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
2430
|
+
if @api_client.config.debugging
|
2431
|
+
@api_client.config.logger.debug "API called: MxPlatformApi#list_holdings_by_account\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
2432
|
+
end
|
2433
|
+
return data, status_code, headers
|
2434
|
+
end
|
2435
|
+
|
2355
2436
|
# List holdings by member
|
2356
2437
|
# This endpoint returns all holdings associated with the specified `member` across all accounts.
|
2357
2438
|
# @param member_guid [String] The unique id for a `member`.
|
data/openapi/config.yml
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
---
|
2
|
-
gemAuthor:
|
3
|
-
gemAuthorEmail:
|
4
|
-
gemDescription:
|
5
|
-
gemHomepage:
|
6
|
-
gemLicense:
|
7
|
-
gemName:
|
2
|
+
gemAuthor: MX
|
3
|
+
gemAuthorEmail: devexperience@mx.com
|
4
|
+
gemDescription: A Ruby library for the MX Platform API.
|
5
|
+
gemHomepage: https://github.com/mxenabled/mx-platform-ruby
|
6
|
+
gemLicense: MIT
|
7
|
+
gemName: mx-platform-ruby
|
8
8
|
gemRequiredRubyVersion: ">= 2.6"
|
9
|
-
gemVersion:
|
10
|
-
library:
|
11
|
-
moduleName:
|
9
|
+
gemVersion: 0.8.6
|
10
|
+
library: faraday
|
11
|
+
moduleName: MxPlatformRuby
|
@@ -47,7 +47,10 @@ MxPlatformRuby.configure do |config|
|
|
47
47
|
config.server_index = 1
|
48
48
|
end
|
49
49
|
|
50
|
-
|
50
|
+
api_client = ::MxPlatformRuby::ApiClient.new
|
51
|
+
api_client.default_headers['Accept'] = 'application/vnd.mx.api.v1+json'
|
52
|
+
mx_platform_api = ::MxPlatformRuby::MxPlatformApi.new(api_client)
|
53
|
+
|
51
54
|
user_create_request_body = MxPlatformRuby::UserCreateRequestBody.new(
|
52
55
|
user: MxPlatformRuby::UserCreateRequest.new(
|
53
56
|
metadata: "Creating a user!"
|
@@ -66,10 +69,10 @@ end
|
|
66
69
|
|
67
70
|
This project was generated by the [OpenAPI Generator](https://openapi-generator.tech). To generate this library, verify you have the latest version of the `openapi-generator-cli` found [here.](https://github.com/OpenAPITools/openapi-generator#17---npm)
|
68
71
|
|
69
|
-
Running the following command in this repo's directory will generate this library using the [MX Platform API OpenAPI spec](https://github.com/mxenabled/openapi/blob/master/openapi/
|
72
|
+
Running the following command in this repo's directory will generate this library using the [MX Platform API OpenAPI spec](https://github.com/mxenabled/openapi/blob/master/openapi/mx_platform_api.yml) with our [configuration and templates.](https://github.com/mxenabled/mx-platform-ruby/tree/master/openapi)
|
70
73
|
```shell
|
71
74
|
openapi-generator-cli generate \
|
72
|
-
-i https://raw.githubusercontent.com/mxenabled/openapi/master/openapi/
|
75
|
+
-i https://raw.githubusercontent.com/mxenabled/openapi/master/openapi/mx_platform_api.yml \
|
73
76
|
-g ruby \
|
74
77
|
-c ./openapi/config.yml \
|
75
78
|
-t ./openapi/templates
|
data/openapitools.json
ADDED
@@ -474,6 +474,23 @@ describe 'MxPlatformApi' do
|
|
474
474
|
end
|
475
475
|
end
|
476
476
|
|
477
|
+
# unit tests for list_holdings_by_account
|
478
|
+
# List holdings by account
|
479
|
+
# This endpoint returns all holdings associated with the specified `account`.
|
480
|
+
# @param account_guid The unique id for the `account`.
|
481
|
+
# @param user_guid The unique id for the `user`.
|
482
|
+
# @param [Hash] opts the optional parameters
|
483
|
+
# @option opts [String] :from_date Filter holdings from this date.
|
484
|
+
# @option opts [Integer] :page Specify current page.
|
485
|
+
# @option opts [Integer] :records_per_page Specify records per page.
|
486
|
+
# @option opts [String] :to_date Filter holdings to this date.
|
487
|
+
# @return [HoldingsResponseBody]
|
488
|
+
describe 'list_holdings_by_account test' do
|
489
|
+
it 'should work' do
|
490
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
491
|
+
end
|
492
|
+
end
|
493
|
+
|
477
494
|
# unit tests for list_holdings_by_member
|
478
495
|
# List holdings by member
|
479
496
|
# This endpoint returns all holdings associated with the specified `member` across all accounts.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mx-platform-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MX
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-02-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -288,6 +288,7 @@ files:
|
|
288
288
|
- mx-platform-ruby.gemspec
|
289
289
|
- openapi/config.yml
|
290
290
|
- openapi/templates/README.mustache
|
291
|
+
- openapitools.json
|
291
292
|
- spec/api/mx_platform_api_spec.rb
|
292
293
|
- spec/api_client_spec.rb
|
293
294
|
- spec/configuration_spec.rb
|
@@ -427,112 +428,112 @@ test_files:
|
|
427
428
|
- spec/api/mx_platform_api_spec.rb
|
428
429
|
- spec/api_client_spec.rb
|
429
430
|
- spec/configuration_spec.rb
|
430
|
-
- spec/models/managed_member_create_request_spec.rb
|
431
|
-
- spec/models/pagination_response_spec.rb
|
432
|
-
- spec/models/user_response_body_spec.rb
|
433
|
-
- spec/models/managed_member_update_request_body_spec.rb
|
434
|
-
- spec/models/account_number_response_spec.rb
|
435
|
-
- spec/models/tags_response_body_spec.rb
|
436
|
-
- spec/models/enhance_transactions_request_body_spec.rb
|
437
|
-
- spec/models/widget_request_spec.rb
|
438
|
-
- spec/models/member_status_response_spec.rb
|
439
|
-
- spec/models/o_auth_window_response_body_spec.rb
|
440
|
-
- spec/models/connect_widget_request_spec.rb
|
441
|
-
- spec/models/widget_response_spec.rb
|
442
|
-
- spec/models/transaction_rule_update_request_spec.rb
|
443
|
-
- spec/models/enhance_transactions_response_body_spec.rb
|
444
|
-
- spec/models/transaction_response_spec.rb
|
445
|
-
- spec/models/statement_response_body_spec.rb
|
446
|
-
- spec/models/managed_member_create_request_body_spec.rb
|
447
|
-
- spec/models/member_create_request_spec.rb
|
448
431
|
- spec/models/category_update_request_spec.rb
|
449
|
-
- spec/models/
|
450
|
-
- spec/models/
|
451
|
-
- spec/models/
|
452
|
-
- spec/models/
|
432
|
+
- spec/models/member_create_request_spec.rb
|
433
|
+
- spec/models/category_response_body_spec.rb
|
434
|
+
- spec/models/category_create_request_spec.rb
|
435
|
+
- spec/models/transaction_rule_update_request_spec.rb
|
436
|
+
- spec/models/tagging_update_request_body_spec.rb
|
437
|
+
- spec/models/credentials_response_body_spec.rb
|
438
|
+
- spec/models/account_response_spec.rb
|
439
|
+
- spec/models/managed_member_update_request_spec.rb
|
453
440
|
- spec/models/holdings_response_body_spec.rb
|
441
|
+
- spec/models/transaction_rule_create_request_spec.rb
|
442
|
+
- spec/models/enhance_transactions_request_body_spec.rb
|
443
|
+
- spec/models/challenge_response_spec.rb
|
444
|
+
- spec/models/category_create_request_body_spec.rb
|
445
|
+
- spec/models/member_resume_request_body_spec.rb
|
446
|
+
- spec/models/tag_response_spec.rb
|
447
|
+
- spec/models/o_auth_window_response_spec.rb
|
448
|
+
- spec/models/connect_widget_response_spec.rb
|
454
449
|
- spec/models/account_owners_response_body_spec.rb
|
450
|
+
- spec/models/merchant_location_response_body_spec.rb
|
451
|
+
- spec/models/transaction_rule_update_request_body_spec.rb
|
452
|
+
- spec/models/institutions_response_body_spec.rb
|
453
|
+
- spec/models/connect_widget_request_spec.rb
|
454
|
+
- spec/models/tagging_response_spec.rb
|
455
|
+
- spec/models/transaction_rules_response_body_spec.rb
|
456
|
+
- spec/models/option_response_spec.rb
|
457
|
+
- spec/models/connect_widget_response_body_spec.rb
|
458
|
+
- spec/models/user_update_request_spec.rb
|
459
|
+
- spec/models/merchant_location_response_spec.rb
|
460
|
+
- spec/models/tag_response_body_spec.rb
|
461
|
+
- spec/models/user_response_body_spec.rb
|
462
|
+
- spec/models/tagging_create_request_body_spec.rb
|
463
|
+
- spec/models/credential_request_spec.rb
|
464
|
+
- spec/models/managed_member_create_request_spec.rb
|
465
|
+
- spec/models/taggings_response_body_spec.rb
|
466
|
+
- spec/models/statements_response_body_spec.rb
|
467
|
+
- spec/models/managed_account_create_request_body_spec.rb
|
468
|
+
- spec/models/merchant_response_spec.rb
|
469
|
+
- spec/models/member_response_body_spec.rb
|
470
|
+
- spec/models/transaction_response_body_spec.rb
|
471
|
+
- spec/models/member_status_response_body_spec.rb
|
472
|
+
- spec/models/challenges_response_body_spec.rb
|
473
|
+
- spec/models/tag_create_request_body_spec.rb
|
474
|
+
- spec/models/account_update_request_spec.rb
|
475
|
+
- spec/models/institution_response_spec.rb
|
455
476
|
- spec/models/tag_update_request_body_spec.rb
|
456
|
-
- spec/models/
|
477
|
+
- spec/models/member_response_spec.rb
|
478
|
+
- spec/models/managed_transaction_create_request_body_spec.rb
|
479
|
+
- spec/models/categories_response_body_spec.rb
|
480
|
+
- spec/models/managed_member_create_request_body_spec.rb
|
481
|
+
- spec/models/widget_request_body_spec.rb
|
482
|
+
- spec/models/managed_account_create_request_spec.rb
|
483
|
+
- spec/models/transaction_rule_response_body_spec.rb
|
457
484
|
- spec/models/members_response_body_spec.rb
|
458
|
-
- spec/models/
|
459
|
-
- spec/models/
|
485
|
+
- spec/models/tagging_create_request_spec.rb
|
486
|
+
- spec/models/image_option_response_spec.rb
|
487
|
+
- spec/models/transactions_response_body_spec.rb
|
488
|
+
- spec/models/user_create_request_spec.rb
|
489
|
+
- spec/models/member_status_response_spec.rb
|
490
|
+
- spec/models/tag_create_request_spec.rb
|
491
|
+
- spec/models/user_response_spec.rb
|
492
|
+
- spec/models/member_update_request_spec.rb
|
493
|
+
- spec/models/widget_request_spec.rb
|
460
494
|
- spec/models/tag_update_request_spec.rb
|
495
|
+
- spec/models/statement_response_spec.rb
|
496
|
+
- spec/models/managed_transaction_create_request_spec.rb
|
497
|
+
- spec/models/managed_account_update_request_body_spec.rb
|
498
|
+
- spec/models/transaction_update_request_spec.rb
|
461
499
|
- spec/models/tagging_response_body_spec.rb
|
462
|
-
- spec/models/
|
463
|
-
- spec/models/transaction_rule_response_body_spec.rb
|
500
|
+
- spec/models/account_number_response_spec.rb
|
464
501
|
- spec/models/account_numbers_response_body_spec.rb
|
465
|
-
- spec/models/
|
466
|
-
- spec/models/
|
467
|
-
- spec/models/
|
502
|
+
- spec/models/users_response_body_spec.rb
|
503
|
+
- spec/models/user_create_request_body_spec.rb
|
504
|
+
- spec/models/managed_account_update_request_spec.rb
|
505
|
+
- spec/models/member_create_request_body_spec.rb
|
506
|
+
- spec/models/accounts_response_body_spec.rb
|
507
|
+
- spec/models/tags_response_body_spec.rb
|
508
|
+
- spec/models/member_resume_request_spec.rb
|
509
|
+
- spec/models/managed_transaction_update_request_spec.rb
|
510
|
+
- spec/models/pagination_response_spec.rb
|
511
|
+
- spec/models/transaction_rule_response_spec.rb
|
468
512
|
- spec/models/merchant_response_body_spec.rb
|
469
|
-
- spec/models/
|
470
|
-
- spec/models/connect_widget_request_body_spec.rb
|
471
|
-
- spec/models/transaction_update_request_body_spec.rb
|
472
|
-
- spec/models/taggings_response_body_spec.rb
|
473
|
-
- spec/models/o_auth_window_response_spec.rb
|
474
|
-
- spec/models/institutions_response_body_spec.rb
|
475
|
-
- spec/models/tagging_update_request_spec.rb
|
476
|
-
- spec/models/statements_response_body_spec.rb
|
477
|
-
- spec/models/connect_widget_response_spec.rb
|
513
|
+
- spec/models/managed_member_update_request_body_spec.rb
|
478
514
|
- spec/models/account_owner_response_spec.rb
|
479
|
-
- spec/models/account_response_body_spec.rb
|
480
|
-
- spec/models/merchants_response_body_spec.rb
|
481
|
-
- spec/models/category_create_request_body_spec.rb
|
482
|
-
- spec/models/transaction_update_request_spec.rb
|
483
|
-
- spec/models/category_update_request_body_spec.rb
|
484
515
|
- spec/models/category_response_spec.rb
|
485
|
-
- spec/models/
|
486
|
-
- spec/models/
|
487
|
-
- spec/models/
|
488
|
-
- spec/models/widget_response_body_spec.rb
|
489
|
-
- spec/models/merchant_location_response_body_spec.rb
|
490
|
-
- spec/models/member_create_request_body_spec.rb
|
491
|
-
- spec/models/managed_account_update_request_body_spec.rb
|
492
|
-
- spec/models/transaction_response_body_spec.rb
|
493
|
-
- spec/models/connect_widget_response_body_spec.rb
|
494
|
-
- spec/models/account_update_request_spec.rb
|
495
|
-
- spec/models/tag_create_request_spec.rb
|
496
|
-
- spec/models/transaction_rule_create_request_body_spec.rb
|
516
|
+
- spec/models/connect_widget_request_body_spec.rb
|
517
|
+
- spec/models/transaction_response_spec.rb
|
518
|
+
- spec/models/category_update_request_body_spec.rb
|
497
519
|
- spec/models/managed_transaction_update_request_body_spec.rb
|
498
|
-
- spec/models/
|
520
|
+
- spec/models/account_response_body_spec.rb
|
521
|
+
- spec/models/user_update_request_body_spec.rb
|
522
|
+
- spec/models/account_update_request_body_spec.rb
|
523
|
+
- spec/models/widget_response_spec.rb
|
524
|
+
- spec/models/enhance_transactions_response_body_spec.rb
|
525
|
+
- spec/models/o_auth_window_response_body_spec.rb
|
526
|
+
- spec/models/widget_response_body_spec.rb
|
527
|
+
- spec/models/enhance_transaction_response_spec.rb
|
528
|
+
- spec/models/institution_response_body_spec.rb
|
529
|
+
- spec/models/tagging_update_request_spec.rb
|
499
530
|
- spec/models/enhance_transactions_request_spec.rb
|
500
|
-
- spec/models/credential_request_spec.rb
|
501
|
-
- spec/models/credentials_response_body_spec.rb
|
502
|
-
- spec/models/transaction_rule_update_request_body_spec.rb
|
503
531
|
- spec/models/credential_response_spec.rb
|
504
|
-
- spec/models/
|
505
|
-
- spec/models/tagging_response_spec.rb
|
506
|
-
- spec/models/managed_account_update_request_spec.rb
|
507
|
-
- spec/models/merchant_location_response_spec.rb
|
508
|
-
- spec/models/member_response_spec.rb
|
509
|
-
- spec/models/managed_account_create_request_spec.rb
|
510
|
-
- spec/models/users_response_body_spec.rb
|
511
|
-
- spec/models/user_response_spec.rb
|
512
|
-
- spec/models/category_create_request_spec.rb
|
513
|
-
- spec/models/tag_response_body_spec.rb
|
514
|
-
- spec/models/transaction_rule_response_spec.rb
|
532
|
+
- spec/models/statement_response_body_spec.rb
|
515
533
|
- spec/models/member_update_request_body_spec.rb
|
534
|
+
- spec/models/merchants_response_body_spec.rb
|
535
|
+
- spec/models/transaction_rule_create_request_body_spec.rb
|
516
536
|
- spec/models/holding_response_body_spec.rb
|
517
|
-
- spec/models/managed_member_update_request_spec.rb
|
518
|
-
- spec/models/widget_request_body_spec.rb
|
519
|
-
- spec/models/transaction_rules_response_body_spec.rb
|
520
|
-
- spec/models/user_create_request_spec.rb
|
521
|
-
- spec/models/categories_response_body_spec.rb
|
522
|
-
- spec/models/enhance_transaction_response_spec.rb
|
523
|
-
- spec/models/institution_response_spec.rb
|
524
|
-
- spec/models/image_option_response_spec.rb
|
525
|
-
- spec/models/member_status_response_body_spec.rb
|
526
|
-
- spec/models/merchant_response_spec.rb
|
527
|
-
- spec/models/tag_create_request_body_spec.rb
|
528
|
-
- spec/models/member_response_body_spec.rb
|
529
|
-
- spec/models/tagging_create_request_body_spec.rb
|
530
|
-
- spec/models/option_response_spec.rb
|
531
|
-
- spec/models/transactions_response_body_spec.rb
|
532
|
-
- spec/models/transaction_rule_create_request_spec.rb
|
533
|
-
- spec/models/user_update_request_body_spec.rb
|
534
537
|
- spec/models/holding_response_spec.rb
|
535
|
-
- spec/models/
|
536
|
-
- spec/models/managed_transaction_create_request_body_spec.rb
|
537
|
-
- spec/models/account_response_spec.rb
|
538
|
+
- spec/models/transaction_update_request_body_spec.rb
|
538
539
|
- spec/spec_helper.rb
|