fuse_client 1.0.6 → 1.0.7

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.
Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/README.md +82 -1
  4. data/docs/CreateAssetReportResponse.md +3 -1
  5. data/docs/CreateEntityResponse.md +3 -1
  6. data/docs/CreateLinkTokenResponse.md +1 -1
  7. data/docs/CreateSessionResponse.md +1 -1
  8. data/docs/ExchangeFinancialConnectionsPublicTokenResponse.md +1 -1
  9. data/docs/GetAssetReportResponse.md +3 -1
  10. data/docs/GetEntityResponse.md +3 -1
  11. data/docs/GetFinancialConnectionsAccountBalanceResponse.md +3 -1
  12. data/docs/GetFinancialConnectionsAccountDetailsResponse.md +3 -1
  13. data/docs/GetFinancialConnectionsAccountsResponse.md +3 -1
  14. data/docs/GetFinancialConnectionsOwnersResponseAccountsInner.md +3 -1
  15. data/docs/GetFinancialInstitutionResponse.md +3 -1
  16. data/docs/GetInvestmentHoldingsResponse.md +3 -1
  17. data/docs/GetInvestmentTransactionsResponse.md +3 -1
  18. data/docs/GetLiabilitiesResponse.md +3 -1
  19. data/docs/GetTransactionsResponse.md +3 -1
  20. data/docs/SyncFinancialConnectionsDataResponse.md +3 -1
  21. data/docs/SyncTransactionsResponse.md +3 -1
  22. data/docs/UpdateEntityResponse.md +3 -1
  23. data/lib/fuse_client/models/create_asset_report_response.rb +14 -4
  24. data/lib/fuse_client/models/create_entity_response.rb +14 -4
  25. data/lib/fuse_client/models/create_link_token_response.rb +1 -1
  26. data/lib/fuse_client/models/create_session_response.rb +1 -1
  27. data/lib/fuse_client/models/exchange_financial_connections_public_token_response.rb +1 -1
  28. data/lib/fuse_client/models/get_asset_report_response.rb +14 -4
  29. data/lib/fuse_client/models/get_entity_response.rb +14 -4
  30. data/lib/fuse_client/models/get_financial_connections_account_balance_response.rb +14 -4
  31. data/lib/fuse_client/models/get_financial_connections_account_details_response.rb +14 -4
  32. data/lib/fuse_client/models/get_financial_connections_accounts_response.rb +14 -4
  33. data/lib/fuse_client/models/get_financial_connections_owners_response_accounts_inner.rb +14 -4
  34. data/lib/fuse_client/models/get_financial_institution_response.rb +14 -4
  35. data/lib/fuse_client/models/get_investment_holdings_response.rb +14 -4
  36. data/lib/fuse_client/models/get_investment_transactions_response.rb +14 -4
  37. data/lib/fuse_client/models/get_liabilities_response.rb +14 -4
  38. data/lib/fuse_client/models/get_transactions_response.rb +14 -4
  39. data/lib/fuse_client/models/sync_financial_connections_data_response.rb +14 -4
  40. data/lib/fuse_client/models/sync_transactions_response.rb +14 -4
  41. data/lib/fuse_client/models/update_entity_response.rb +14 -4
  42. data/lib/fuse_client/version.rb +1 -1
  43. data/spec/models/create_asset_report_response_spec.rb +6 -0
  44. data/spec/models/create_entity_response_spec.rb +6 -0
  45. data/spec/models/get_asset_report_response_spec.rb +6 -0
  46. data/spec/models/get_entity_response_spec.rb +6 -0
  47. data/spec/models/get_financial_connections_account_balance_response_spec.rb +6 -0
  48. data/spec/models/get_financial_connections_account_details_response_spec.rb +6 -0
  49. data/spec/models/get_financial_connections_accounts_response_spec.rb +6 -0
  50. data/spec/models/get_financial_connections_owners_response_accounts_inner_spec.rb +6 -0
  51. data/spec/models/get_financial_institution_response_spec.rb +6 -0
  52. data/spec/models/get_investment_holdings_response_spec.rb +6 -0
  53. data/spec/models/get_investment_transactions_response_spec.rb +6 -0
  54. data/spec/models/get_liabilities_response_spec.rb +6 -0
  55. data/spec/models/get_transactions_response_spec.rb +6 -0
  56. data/spec/models/sync_financial_connections_data_response_spec.rb +6 -0
  57. data/spec/models/sync_transactions_response_spec.rb +6 -0
  58. data/spec/models/update_entity_response_spec.rb +6 -0
  59. metadata +2 -2
@@ -26,13 +26,17 @@ module FuseClient
26
26
 
27
27
  attr_accessor :institution_ids
28
28
 
29
+ # An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues.
30
+ attr_accessor :request_id
31
+
29
32
  # Attribute mapping from ruby-style variable name to JSON key.
30
33
  def self.attribute_map
31
34
  {
32
35
  :'id' => :'id',
33
36
  :'email' => :'email',
34
37
  :'aggregators' => :'aggregators',
35
- :'institution_ids' => :'institution_ids'
38
+ :'institution_ids' => :'institution_ids',
39
+ :'request_id' => :'request_id'
36
40
  }
37
41
  end
38
42
 
@@ -47,7 +51,8 @@ module FuseClient
47
51
  :'id' => :'String',
48
52
  :'email' => :'String',
49
53
  :'aggregators' => :'Array<Aggregator>',
50
- :'institution_ids' => :'Array<String>'
54
+ :'institution_ids' => :'Array<String>',
55
+ :'request_id' => :'String'
51
56
  }
52
57
  end
53
58
 
@@ -91,6 +96,10 @@ module FuseClient
91
96
  self.institution_ids = value
92
97
  end
93
98
  end
99
+
100
+ if attributes.key?(:'request_id')
101
+ self.request_id = attributes[:'request_id']
102
+ end
94
103
  end
95
104
 
96
105
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -129,7 +138,8 @@ module FuseClient
129
138
  id == o.id &&
130
139
  email == o.email &&
131
140
  aggregators == o.aggregators &&
132
- institution_ids == o.institution_ids
141
+ institution_ids == o.institution_ids &&
142
+ request_id == o.request_id
133
143
  end
134
144
 
135
145
  # @see the `==` method
@@ -141,7 +151,7 @@ module FuseClient
141
151
  # Calculates hash code according to all attributes.
142
152
  # @return [Integer] Hash code
143
153
  def hash
144
- [id, email, aggregators, institution_ids].hash
154
+ [id, email, aggregators, institution_ids, request_id].hash
145
155
  end
146
156
 
147
157
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.3.0
11
11
  =end
12
12
 
13
13
  module FuseClient
14
- VERSION = '1.0.6'
14
+ VERSION = '1.0.7'
15
15
  end
@@ -37,4 +37,10 @@ describe FuseClient::CreateAssetReportResponse do
37
37
  end
38
38
  end
39
39
 
40
+ describe 'test attribute "request_id"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
40
46
  end
@@ -49,4 +49,10 @@ describe FuseClient::CreateEntityResponse do
49
49
  end
50
50
  end
51
51
 
52
+ describe 'test attribute "request_id"' 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
  end
@@ -31,4 +31,10 @@ describe FuseClient::GetAssetReportResponse do
31
31
  end
32
32
  end
33
33
 
34
+ describe 'test attribute "request_id"' 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
  end
@@ -49,4 +49,10 @@ describe FuseClient::GetEntityResponse do
49
49
  end
50
50
  end
51
51
 
52
+ describe 'test attribute "request_id"' 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
  end
@@ -31,4 +31,10 @@ describe FuseClient::GetFinancialConnectionsAccountBalanceResponse do
31
31
  end
32
32
  end
33
33
 
34
+ describe 'test attribute "request_id"' 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
  end
@@ -37,4 +37,10 @@ describe FuseClient::GetFinancialConnectionsAccountDetailsResponse do
37
37
  end
38
38
  end
39
39
 
40
+ describe 'test attribute "request_id"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
40
46
  end
@@ -37,4 +37,10 @@ describe FuseClient::GetFinancialConnectionsAccountsResponse do
37
37
  end
38
38
  end
39
39
 
40
+ describe 'test attribute "request_id"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
40
46
  end
@@ -37,4 +37,10 @@ describe FuseClient::GetFinancialConnectionsOwnersResponseAccountsInner do
37
37
  end
38
38
  end
39
39
 
40
+ describe 'test attribute "request_id"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
40
46
  end
@@ -31,4 +31,10 @@ describe FuseClient::GetFinancialInstitutionResponse do
31
31
  end
32
32
  end
33
33
 
34
+ describe 'test attribute "request_id"' 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
  end
@@ -43,4 +43,10 @@ describe FuseClient::GetInvestmentHoldingsResponse do
43
43
  end
44
44
  end
45
45
 
46
+ describe 'test attribute "request_id"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
46
52
  end
@@ -43,4 +43,10 @@ describe FuseClient::GetInvestmentTransactionsResponse do
43
43
  end
44
44
  end
45
45
 
46
+ describe 'test attribute "request_id"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
46
52
  end
@@ -31,4 +31,10 @@ describe FuseClient::GetLiabilitiesResponse do
31
31
  end
32
32
  end
33
33
 
34
+ describe 'test attribute "request_id"' 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
  end
@@ -43,4 +43,10 @@ describe FuseClient::GetTransactionsResponse do
43
43
  end
44
44
  end
45
45
 
46
+ describe 'test attribute "request_id"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
46
52
  end
@@ -31,4 +31,10 @@ describe FuseClient::SyncFinancialConnectionsDataResponse do
31
31
  end
32
32
  end
33
33
 
34
+ describe 'test attribute "request_id"' 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
  end
@@ -55,4 +55,10 @@ describe FuseClient::SyncTransactionsResponse do
55
55
  end
56
56
  end
57
57
 
58
+ describe 'test attribute "request_id"' 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
  end
@@ -49,4 +49,10 @@ describe FuseClient::UpdateEntityResponse do
49
49
  end
50
50
  end
51
51
 
52
+ describe 'test attribute "request_id"' 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
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fuse_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-14 00:00:00.000000000 Z
11
+ date: 2023-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus