mx-platform-ruby 0.13.2 → 0.14.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.
@@ -27,12 +27,16 @@ module MxPlatformRuby
27
27
 
28
28
  attr_accessor :disable_institution_search
29
29
 
30
+ attr_accessor :include_identity
31
+
30
32
  attr_accessor :include_transactions
31
33
 
32
34
  attr_accessor :is_mobile_webview
33
35
 
34
36
  attr_accessor :mode
35
37
 
38
+ attr_accessor :oauth_referral_source
39
+
36
40
  attr_accessor :ui_message_version
37
41
 
38
42
  attr_accessor :ui_message_webview_url_scheme
@@ -50,9 +54,11 @@ module MxPlatformRuby
50
54
  :'current_institution_guid' => :'current_institution_guid',
51
55
  :'current_member_guid' => :'current_member_guid',
52
56
  :'disable_institution_search' => :'disable_institution_search',
57
+ :'include_identity' => :'include_identity',
53
58
  :'include_transactions' => :'include_transactions',
54
59
  :'is_mobile_webview' => :'is_mobile_webview',
55
60
  :'mode' => :'mode',
61
+ :'oauth_referral_source' => :'oauth_referral_source',
56
62
  :'ui_message_version' => :'ui_message_version',
57
63
  :'ui_message_webview_url_scheme' => :'ui_message_webview_url_scheme',
58
64
  :'update_credentials' => :'update_credentials',
@@ -74,9 +80,11 @@ module MxPlatformRuby
74
80
  :'current_institution_guid' => :'String',
75
81
  :'current_member_guid' => :'String',
76
82
  :'disable_institution_search' => :'Boolean',
83
+ :'include_identity' => :'Boolean',
77
84
  :'include_transactions' => :'Boolean',
78
85
  :'is_mobile_webview' => :'Boolean',
79
86
  :'mode' => :'String',
87
+ :'oauth_referral_source' => :'String',
80
88
  :'ui_message_version' => :'Integer',
81
89
  :'ui_message_webview_url_scheme' => :'String',
82
90
  :'update_credentials' => :'Boolean',
@@ -129,6 +137,10 @@ module MxPlatformRuby
129
137
  self.disable_institution_search = attributes[:'disable_institution_search']
130
138
  end
131
139
 
140
+ if attributes.key?(:'include_identity')
141
+ self.include_identity = attributes[:'include_identity']
142
+ end
143
+
132
144
  if attributes.key?(:'include_transactions')
133
145
  self.include_transactions = attributes[:'include_transactions']
134
146
  end
@@ -141,6 +153,10 @@ module MxPlatformRuby
141
153
  self.mode = attributes[:'mode']
142
154
  end
143
155
 
156
+ if attributes.key?(:'oauth_referral_source')
157
+ self.oauth_referral_source = attributes[:'oauth_referral_source']
158
+ end
159
+
144
160
  if attributes.key?(:'ui_message_version')
145
161
  self.ui_message_version = attributes[:'ui_message_version']
146
162
  end
@@ -187,9 +203,11 @@ module MxPlatformRuby
187
203
  current_institution_guid == o.current_institution_guid &&
188
204
  current_member_guid == o.current_member_guid &&
189
205
  disable_institution_search == o.disable_institution_search &&
206
+ include_identity == o.include_identity &&
190
207
  include_transactions == o.include_transactions &&
191
208
  is_mobile_webview == o.is_mobile_webview &&
192
209
  mode == o.mode &&
210
+ oauth_referral_source == o.oauth_referral_source &&
193
211
  ui_message_version == o.ui_message_version &&
194
212
  ui_message_webview_url_scheme == o.ui_message_webview_url_scheme &&
195
213
  update_credentials == o.update_credentials &&
@@ -205,7 +223,7 @@ module MxPlatformRuby
205
223
  # Calculates hash code according to all attributes.
206
224
  # @return [Integer] Hash code
207
225
  def hash
208
- [client_redirect_url, color_scheme, current_institution_code, current_institution_guid, current_member_guid, disable_institution_search, include_transactions, is_mobile_webview, mode, ui_message_version, ui_message_webview_url_scheme, update_credentials, widget_type].hash
226
+ [client_redirect_url, color_scheme, current_institution_code, current_institution_guid, current_member_guid, disable_institution_search, include_identity, include_transactions, is_mobile_webview, mode, oauth_referral_source, ui_message_version, ui_message_webview_url_scheme, update_credentials, widget_type].hash
209
227
  end
210
228
 
211
229
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 5.4.0
11
11
  =end
12
12
 
13
13
  module MxPlatformRuby
14
- VERSION = '0.13.2'
14
+ VERSION = '0.14.0'
15
15
  end
data/openapi/config.yml CHANGED
@@ -6,6 +6,6 @@ gemHomepage: https://github.com/mxenabled/mx-platform-ruby
6
6
  gemLicense: MIT
7
7
  gemName: mx-platform-ruby
8
8
  gemRequiredRubyVersion: ">= 2.6"
9
- gemVersion: 0.13.2
9
+ gemVersion: 0.14.0
10
10
  library: faraday
11
11
  moduleName: MxPlatformRuby
@@ -600,6 +600,22 @@ describe 'MxPlatformApi' do
600
600
  end
601
601
  end
602
602
 
603
+ # unit tests for list_member_accounts
604
+ # List accounts by member
605
+ # This endpoint returns a list of all the accounts associated with the specified `member`.
606
+ # @param user_guid The unique id for a `user`.
607
+ # @param member_guid The unique id for a `member`.
608
+ # @param [Hash] opts the optional parameters
609
+ # @option opts [Boolean] :member_is_managed_by_user List only accounts whose member is managed by the user.
610
+ # @option opts [Integer] :page Specify current page.
611
+ # @option opts [Integer] :records_per_page Specify records per page.
612
+ # @return [AccountsResponseBody]
613
+ describe 'list_member_accounts test' do
614
+ it 'should work' do
615
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
616
+ end
617
+ end
618
+
603
619
  # unit tests for list_member_challenges
604
620
  # List member challenges
605
621
  # Use this endpoint for information on what multi-factor authentication challenges need to be answered in order to aggregate a member. If the aggregation is not challenged, i.e., the member does not have a connection status of `CHALLENGED`, then code `204 No Content` will be returned. If the aggregation has been challenged, i.e., the member does have a connection status of `CHALLENGED`, then code `200 OK` will be returned - along with the corresponding credentials.
@@ -786,6 +802,7 @@ describe 'MxPlatformApi' do
786
802
  # This endpoint returns a list of all the accounts associated with the specified `user`.
787
803
  # @param user_guid The unique id for a `user`.
788
804
  # @param [Hash] opts the optional parameters
805
+ # @option opts [Boolean] :member_is_managed_by_user List only accounts whose member is managed by the user.
789
806
  # @option opts [Integer] :page Specify current page.
790
807
  # @option opts [Integer] :records_per_page Specify records per page.
791
808
  # @return [AccountsResponseBody]
@@ -801,6 +818,9 @@ describe 'MxPlatformApi' do
801
818
  # @param [Hash] opts the optional parameters
802
819
  # @option opts [Integer] :page Specify current page.
803
820
  # @option opts [Integer] :records_per_page Specify records per page.
821
+ # @option opts [String] :id The user `id` to search for.
822
+ # @option opts [String] :email The user `email` to search for.
823
+ # @option opts [Boolean] :is_disabled Search for users that are diabled.
804
824
  # @return [UsersResponseBody]
805
825
  describe 'list_users test' do
806
826
  it 'should work' do
@@ -821,6 +841,20 @@ describe 'MxPlatformApi' do
821
841
  end
822
842
  end
823
843
 
844
+ # unit tests for read_account_by_member
845
+ # Read account by member
846
+ # This endpoint allows you to read the attributes of an `account` resource.
847
+ # @param account_guid The unique id for an `account`.
848
+ # @param member_guid The unique id for a `member`.
849
+ # @param user_guid The unique id for a `user`.
850
+ # @param [Hash] opts the optional parameters
851
+ # @return [AccountResponseBody]
852
+ describe 'read_account_by_member test' do
853
+ it 'should work' do
854
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
855
+ end
856
+ end
857
+
824
858
  # unit tests for read_category
825
859
  # Read a custom category
826
860
  # Use this endpoint to read the attributes of either a default category or a custom category.
@@ -55,6 +55,12 @@ describe MxPlatformRuby::AccountNumberResponse do
55
55
  end
56
56
  end
57
57
 
58
+ describe 'test attribute "passed_validation"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
58
64
  describe 'test attribute "routing_number"' do
59
65
  it 'should work' do
60
66
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -55,12 +55,24 @@ describe MxPlatformRuby::AccountOwnerResponse do
55
55
  end
56
56
  end
57
57
 
58
+ describe 'test attribute "first_name"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
58
64
  describe 'test attribute "guid"' do
59
65
  it 'should work' do
60
66
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
67
  end
62
68
  end
63
69
 
70
+ describe 'test attribute "last_name"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
73
+ end
74
+ end
75
+
64
76
  describe 'test attribute "member_guid"' do
65
77
  it 'should work' do
66
78
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -49,12 +49,24 @@ describe MxPlatformRuby::ConnectWidgetRequest do
49
49
  end
50
50
  end
51
51
 
52
+ describe 'test attribute "disable_background_agg"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
52
58
  describe 'test attribute "disable_institution_search"' do
53
59
  it 'should work' do
54
60
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
61
  end
56
62
  end
57
63
 
64
+ describe 'test attribute "include_identity"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
+ end
68
+ end
69
+
58
70
  describe 'test attribute "include_transactions"' do
59
71
  it 'should work' do
60
72
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -73,6 +85,12 @@ describe MxPlatformRuby::ConnectWidgetRequest do
73
85
  end
74
86
  end
75
87
 
88
+ describe 'test attribute "oauth_referral_source"' do
89
+ it 'should work' do
90
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
91
+ end
92
+ end
93
+
76
94
  describe 'test attribute "ui_message_version"' do
77
95
  it 'should work' do
78
96
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -25,6 +25,12 @@ describe MxPlatformRuby::MemberCreateRequestBody do
25
25
  expect(instance).to be_instance_of(MxPlatformRuby::MemberCreateRequestBody)
26
26
  end
27
27
  end
28
+ describe 'test attribute "client_redirect_url"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
28
34
  describe 'test attribute "member"' do
29
35
  it 'should work' do
30
36
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -31,12 +31,6 @@ describe MxPlatformRuby::MemberCreateRequest do
31
31
  end
32
32
  end
33
33
 
34
- describe 'test attribute "client_redirect_url"' do
35
- it 'should work' do
36
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
- end
38
- end
39
-
40
34
  describe 'test attribute "credentials"' do
41
35
  it 'should work' do
42
36
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -31,6 +31,12 @@ describe MxPlatformRuby::MemberResponse do
31
31
  end
32
32
  end
33
33
 
34
+ describe 'test attribute "background_aggregation_is_disabled"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
34
40
  describe 'test attribute "connection_status"' do
35
41
  it 'should work' do
36
42
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -61,6 +61,12 @@ describe MxPlatformRuby::WidgetRequest do
61
61
  end
62
62
  end
63
63
 
64
+ describe 'test attribute "include_identity"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
+ end
68
+ end
69
+
64
70
  describe 'test attribute "include_transactions"' do
65
71
  it 'should work' do
66
72
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -79,6 +85,12 @@ describe MxPlatformRuby::WidgetRequest do
79
85
  end
80
86
  end
81
87
 
88
+ describe 'test attribute "oauth_referral_source"' do
89
+ it 'should work' do
90
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
91
+ end
92
+ end
93
+
82
94
  describe 'test attribute "ui_message_version"' do
83
95
  it 'should work' do
84
96
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mx-platform-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.2
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - MX
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-21 00:00:00.000000000 Z
11
+ date: 2023-03-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -405,7 +405,7 @@ homepage: https://github.com/mxenabled/mx-platform-ruby
405
405
  licenses:
406
406
  - MIT
407
407
  metadata: {}
408
- post_install_message:
408
+ post_install_message:
409
409
  rdoc_options: []
410
410
  require_paths:
411
411
  - lib
@@ -421,119 +421,119 @@ required_rubygems_version: !ruby/object:Gem::Requirement
421
421
  version: '0'
422
422
  requirements: []
423
423
  rubygems_version: 3.0.3.1
424
- signing_key:
424
+ signing_key:
425
425
  specification_version: 4
426
426
  summary: MX Platform API Ruby Gem
427
427
  test_files:
428
428
  - spec/api/mx_platform_api_spec.rb
429
429
  - spec/api_client_spec.rb
430
430
  - spec/configuration_spec.rb
431
- - spec/models/holding_response_spec.rb
432
- - spec/models/holdings_response_body_spec.rb
433
- - spec/models/category_response_body_spec.rb
434
- - spec/models/o_auth_window_response_body_spec.rb
435
- - spec/models/managed_member_update_request_body_spec.rb
436
- - spec/models/transaction_update_request_body_spec.rb
437
- - spec/models/category_create_request_spec.rb
438
- - spec/models/user_response_body_spec.rb
439
- - spec/models/holding_response_body_spec.rb
440
- - spec/models/managed_member_update_request_spec.rb
431
+ - spec/models/transaction_rules_response_body_spec.rb
432
+ - spec/models/transaction_update_request_spec.rb
433
+ - spec/models/merchant_location_response_body_spec.rb
434
+ - spec/models/transaction_rule_create_request_body_spec.rb
435
+ - spec/models/managed_member_create_request_body_spec.rb
436
+ - spec/models/transaction_rule_update_request_body_spec.rb
441
437
  - spec/models/account_owner_response_spec.rb
442
- - spec/models/tag_update_request_body_spec.rb
443
- - spec/models/members_response_body_spec.rb
444
- - spec/models/tag_create_request_spec.rb
445
- - spec/models/categories_response_body_spec.rb
446
- - spec/models/enhance_transactions_request_body_spec.rb
438
+ - spec/models/tagging_response_body_spec.rb
447
439
  - spec/models/tagging_create_request_spec.rb
448
- - spec/models/merchant_response_spec.rb
449
- - spec/models/account_update_request_body_spec.rb
450
- - spec/models/category_response_spec.rb
451
- - spec/models/transaction_rule_update_request_body_spec.rb
452
440
  - spec/models/member_status_response_spec.rb
453
- - spec/models/user_create_request_body_spec.rb
454
- - spec/models/merchant_location_response_body_spec.rb
455
- - spec/models/tagging_response_spec.rb
456
- - spec/models/member_update_request_body_spec.rb
457
- - spec/models/managed_account_create_request_spec.rb
458
- - spec/models/connect_widget_request_body_spec.rb
459
441
  - spec/models/user_update_request_spec.rb
460
- - spec/models/tag_response_spec.rb
461
- - spec/models/users_response_body_spec.rb
462
- - spec/models/account_owners_response_body_spec.rb
463
- - spec/models/managed_transaction_update_request_body_spec.rb
464
- - spec/models/image_option_response_spec.rb
465
- - spec/models/transaction_rule_response_body_spec.rb
466
- - spec/models/merchant_response_body_spec.rb
467
- - spec/models/managed_member_create_request_spec.rb
468
- - spec/models/member_create_request_body_spec.rb
469
- - spec/models/statement_response_spec.rb
470
- - spec/models/tagging_response_body_spec.rb
442
+ - spec/models/transaction_response_body_spec.rb
443
+ - spec/models/account_update_request_body_spec.rb
471
444
  - spec/models/user_response_spec.rb
472
- - spec/models/connect_widget_response_body_spec.rb
473
- - spec/models/member_status_response_body_spec.rb
474
- - spec/models/managed_member_create_request_body_spec.rb
475
- - spec/models/member_resume_request_body_spec.rb
476
- - spec/models/enhance_transaction_response_spec.rb
477
- - spec/models/category_update_request_body_spec.rb
478
- - spec/models/taggings_response_body_spec.rb
479
- - spec/models/accounts_response_body_spec.rb
480
- - spec/models/option_response_spec.rb
481
- - spec/models/challenge_response_spec.rb
482
- - spec/models/widget_request_body_spec.rb
483
- - spec/models/member_response_body_spec.rb
484
- - spec/models/account_numbers_response_body_spec.rb
485
445
  - spec/models/credential_response_spec.rb
486
- - spec/models/account_update_request_spec.rb
487
- - spec/models/transaction_rule_create_request_spec.rb
488
- - spec/models/transaction_update_request_spec.rb
446
+ - spec/models/tagging_response_spec.rb
447
+ - spec/models/account_number_response_spec.rb
448
+ - spec/models/account_numbers_response_body_spec.rb
449
+ - spec/models/institution_response_spec.rb
450
+ - spec/models/member_status_response_body_spec.rb
451
+ - spec/models/member_update_request_spec.rb
489
452
  - spec/models/challenges_response_body_spec.rb
490
- - spec/models/merchant_location_response_spec.rb
491
- - spec/models/transactions_response_body_spec.rb
492
- - spec/models/managed_transaction_create_request_spec.rb
453
+ - spec/models/account_owners_response_body_spec.rb
454
+ - spec/models/member_response_body_spec.rb
455
+ - spec/models/connect_widget_request_body_spec.rb
456
+ - spec/models/member_update_request_body_spec.rb
493
457
  - spec/models/merchants_response_body_spec.rb
494
- - spec/models/member_update_request_spec.rb
495
- - spec/models/managed_transaction_create_request_body_spec.rb
458
+ - spec/models/user_create_request_spec.rb
459
+ - spec/models/pagination_response_spec.rb
460
+ - spec/models/category_update_request_body_spec.rb
461
+ - spec/models/managed_transaction_create_request_spec.rb
462
+ - spec/models/managed_member_update_request_body_spec.rb
496
463
  - spec/models/tag_update_request_spec.rb
497
- - spec/models/managed_account_update_request_spec.rb
464
+ - spec/models/taggings_response_body_spec.rb
465
+ - spec/models/member_create_request_spec.rb
466
+ - spec/models/enhance_transactions_request_body_spec.rb
467
+ - spec/models/transaction_rule_update_request_spec.rb
498
468
  - spec/models/statements_response_body_spec.rb
499
- - spec/models/transaction_rule_create_request_body_spec.rb
500
- - spec/models/transaction_rules_response_body_spec.rb
501
- - spec/models/credential_request_spec.rb
502
- - spec/models/category_update_request_spec.rb
503
- - spec/models/connect_widget_request_spec.rb
504
- - spec/models/category_create_request_body_spec.rb
469
+ - spec/models/categories_response_body_spec.rb
470
+ - spec/models/holding_response_spec.rb
471
+ - spec/models/tags_response_body_spec.rb
505
472
  - spec/models/managed_account_create_request_body_spec.rb
506
- - spec/models/enhance_transactions_response_body_spec.rb
507
- - spec/models/transaction_response_spec.rb
508
- - spec/models/pagination_response_spec.rb
509
- - spec/models/transaction_response_body_spec.rb
510
473
  - spec/models/credentials_response_body_spec.rb
511
474
  - spec/models/tag_create_request_body_spec.rb
475
+ - spec/models/account_response_body_spec.rb
476
+ - spec/models/tag_response_spec.rb
477
+ - spec/models/member_resume_request_spec.rb
478
+ - spec/models/widget_request_body_spec.rb
479
+ - spec/models/widget_request_spec.rb
512
480
  - spec/models/widget_response_spec.rb
513
- - spec/models/tags_response_body_spec.rb
514
- - spec/models/statement_response_body_spec.rb
515
- - spec/models/account_number_response_spec.rb
516
- - spec/models/tagging_update_request_body_spec.rb
517
- - spec/models/tagging_create_request_body_spec.rb
481
+ - spec/models/member_response_spec.rb
482
+ - spec/models/user_create_request_body_spec.rb
483
+ - spec/models/managed_member_update_request_spec.rb
484
+ - spec/models/member_resume_request_body_spec.rb
518
485
  - spec/models/o_auth_window_response_spec.rb
486
+ - spec/models/tag_response_body_spec.rb
487
+ - spec/models/widget_response_body_spec.rb
488
+ - spec/models/enhance_transactions_response_body_spec.rb
489
+ - spec/models/transaction_rule_response_body_spec.rb
490
+ - spec/models/managed_member_create_request_spec.rb
491
+ - spec/models/challenge_response_spec.rb
492
+ - spec/models/transaction_response_spec.rb
493
+ - spec/models/connect_widget_request_spec.rb
519
494
  - spec/models/account_response_spec.rb
520
495
  - spec/models/institutions_response_body_spec.rb
521
- - spec/models/institution_response_spec.rb
522
- - spec/models/transaction_rule_update_request_spec.rb
523
- - spec/models/widget_response_body_spec.rb
524
- - spec/models/member_create_request_spec.rb
525
- - spec/models/tag_response_body_spec.rb
526
- - spec/models/managed_account_update_request_body_spec.rb
527
- - spec/models/transaction_rule_response_spec.rb
528
- - spec/models/widget_request_spec.rb
529
- - spec/models/enhance_transactions_request_spec.rb
530
- - spec/models/user_create_request_spec.rb
531
- - spec/models/institution_response_body_spec.rb
532
- - spec/models/connect_widget_response_spec.rb
533
- - spec/models/member_resume_request_spec.rb
534
- - spec/models/account_response_body_spec.rb
496
+ - spec/models/merchant_location_response_spec.rb
535
497
  - spec/models/tagging_update_request_spec.rb
536
- - spec/models/member_response_spec.rb
498
+ - spec/models/statement_response_spec.rb
499
+ - spec/models/managed_transaction_create_request_body_spec.rb
500
+ - spec/models/credential_request_spec.rb
537
501
  - spec/models/user_update_request_body_spec.rb
502
+ - spec/models/account_update_request_spec.rb
503
+ - spec/models/transaction_rule_create_request_spec.rb
504
+ - spec/models/tagging_create_request_body_spec.rb
505
+ - spec/models/enhance_transactions_request_spec.rb
506
+ - spec/models/tag_create_request_spec.rb
507
+ - spec/models/category_create_request_spec.rb
508
+ - spec/models/category_response_spec.rb
509
+ - spec/models/connect_widget_response_spec.rb
510
+ - spec/models/members_response_body_spec.rb
511
+ - spec/models/managed_account_create_request_spec.rb
512
+ - spec/models/category_update_request_spec.rb
513
+ - spec/models/tag_update_request_body_spec.rb
514
+ - spec/models/accounts_response_body_spec.rb
515
+ - spec/models/category_response_body_spec.rb
516
+ - spec/models/managed_transaction_update_request_body_spec.rb
517
+ - spec/models/holdings_response_body_spec.rb
518
+ - spec/models/merchant_response_body_spec.rb
519
+ - spec/models/merchant_response_spec.rb
520
+ - spec/models/managed_account_update_request_body_spec.rb
521
+ - spec/models/institution_response_body_spec.rb
522
+ - spec/models/holding_response_body_spec.rb
523
+ - spec/models/category_create_request_body_spec.rb
524
+ - spec/models/managed_account_update_request_spec.rb
525
+ - spec/models/user_response_body_spec.rb
526
+ - spec/models/member_create_request_body_spec.rb
538
527
  - spec/models/managed_transaction_update_request_spec.rb
528
+ - spec/models/image_option_response_spec.rb
529
+ - spec/models/transaction_rule_response_spec.rb
530
+ - spec/models/o_auth_window_response_body_spec.rb
531
+ - spec/models/transactions_response_body_spec.rb
532
+ - spec/models/connect_widget_response_body_spec.rb
533
+ - spec/models/statement_response_body_spec.rb
534
+ - spec/models/tagging_update_request_body_spec.rb
535
+ - spec/models/users_response_body_spec.rb
536
+ - spec/models/transaction_update_request_body_spec.rb
537
+ - spec/models/option_response_spec.rb
538
+ - spec/models/enhance_transaction_response_spec.rb
539
539
  - spec/spec_helper.rb