fuse_client 1.0.5 → 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 (63) 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/FuseApi.md +4 -4
  10. data/docs/GetAssetReportResponse.md +3 -1
  11. data/docs/GetEntityResponse.md +3 -1
  12. data/docs/GetFinancialConnectionsAccountBalanceResponse.md +3 -1
  13. data/docs/GetFinancialConnectionsAccountDetailsResponse.md +3 -1
  14. data/docs/GetFinancialConnectionsAccountsResponse.md +3 -1
  15. data/docs/GetFinancialConnectionsOwnersResponseAccountsInner.md +3 -1
  16. data/docs/GetFinancialInstitutionResponse.md +20 -0
  17. data/docs/GetInvestmentHoldingsResponse.md +3 -1
  18. data/docs/GetInvestmentTransactionsResponse.md +3 -1
  19. data/docs/GetLiabilitiesResponse.md +3 -1
  20. data/docs/GetTransactionsResponse.md +3 -1
  21. data/docs/SyncFinancialConnectionsDataResponse.md +3 -1
  22. data/docs/SyncTransactionsResponse.md +3 -1
  23. data/docs/UpdateEntityResponse.md +3 -1
  24. data/lib/fuse_client/api/fuse_api.rb +3 -3
  25. data/lib/fuse_client/models/create_asset_report_response.rb +14 -4
  26. data/lib/fuse_client/models/create_entity_response.rb +14 -4
  27. data/lib/fuse_client/models/create_link_token_response.rb +1 -1
  28. data/lib/fuse_client/models/create_session_response.rb +1 -1
  29. data/lib/fuse_client/models/exchange_financial_connections_public_token_response.rb +1 -1
  30. data/lib/fuse_client/models/get_asset_report_response.rb +14 -4
  31. data/lib/fuse_client/models/get_entity_response.rb +14 -4
  32. data/lib/fuse_client/models/get_financial_connections_account_balance_response.rb +14 -4
  33. data/lib/fuse_client/models/get_financial_connections_account_details_response.rb +14 -4
  34. data/lib/fuse_client/models/get_financial_connections_accounts_response.rb +14 -4
  35. data/lib/fuse_client/models/get_financial_connections_owners_response_accounts_inner.rb +14 -4
  36. data/lib/fuse_client/models/get_financial_institution_response.rb +229 -0
  37. data/lib/fuse_client/models/get_investment_holdings_response.rb +14 -4
  38. data/lib/fuse_client/models/get_investment_transactions_response.rb +14 -4
  39. data/lib/fuse_client/models/get_liabilities_response.rb +14 -4
  40. data/lib/fuse_client/models/get_transactions_response.rb +14 -4
  41. data/lib/fuse_client/models/sync_financial_connections_data_response.rb +14 -4
  42. data/lib/fuse_client/models/sync_transactions_response.rb +14 -4
  43. data/lib/fuse_client/models/update_entity_response.rb +14 -4
  44. data/lib/fuse_client/version.rb +1 -1
  45. data/lib/fuse_client.rb +1 -0
  46. data/spec/api/fuse_api_spec.rb +1 -1
  47. data/spec/models/create_asset_report_response_spec.rb +6 -0
  48. data/spec/models/create_entity_response_spec.rb +6 -0
  49. data/spec/models/get_asset_report_response_spec.rb +6 -0
  50. data/spec/models/get_entity_response_spec.rb +6 -0
  51. data/spec/models/get_financial_connections_account_balance_response_spec.rb +6 -0
  52. data/spec/models/get_financial_connections_account_details_response_spec.rb +6 -0
  53. data/spec/models/get_financial_connections_accounts_response_spec.rb +6 -0
  54. data/spec/models/get_financial_connections_owners_response_accounts_inner_spec.rb +6 -0
  55. data/spec/models/get_financial_institution_response_spec.rb +40 -0
  56. data/spec/models/get_investment_holdings_response_spec.rb +6 -0
  57. data/spec/models/get_investment_transactions_response_spec.rb +6 -0
  58. data/spec/models/get_liabilities_response_spec.rb +6 -0
  59. data/spec/models/get_transactions_response_spec.rb +6 -0
  60. data/spec/models/sync_financial_connections_data_response_spec.rb +6 -0
  61. data/spec/models/sync_transactions_response_spec.rb +6 -0
  62. data/spec/models/update_entity_response_spec.rb +6 -0
  63. metadata +6 -2
@@ -17,10 +17,14 @@ module FuseClient
17
17
  class GetLiabilitiesResponse
18
18
  attr_accessor :liabilities
19
19
 
20
+ # An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues.
21
+ attr_accessor :request_id
22
+
20
23
  # Attribute mapping from ruby-style variable name to JSON key.
21
24
  def self.attribute_map
22
25
  {
23
- :'liabilities' => :'liabilities'
26
+ :'liabilities' => :'liabilities',
27
+ :'request_id' => :'request_id'
24
28
  }
25
29
  end
26
30
 
@@ -32,7 +36,8 @@ module FuseClient
32
36
  # Attribute type mapping.
33
37
  def self.openapi_types
34
38
  {
35
- :'liabilities' => :'Array<FinancialConnectionsAccountLiability>'
39
+ :'liabilities' => :'Array<FinancialConnectionsAccountLiability>',
40
+ :'request_id' => :'String'
36
41
  }
37
42
  end
38
43
 
@@ -62,6 +67,10 @@ module FuseClient
62
67
  self.liabilities = value
63
68
  end
64
69
  end
70
+
71
+ if attributes.key?(:'request_id')
72
+ self.request_id = attributes[:'request_id']
73
+ end
65
74
  end
66
75
 
67
76
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -82,7 +91,8 @@ module FuseClient
82
91
  def ==(o)
83
92
  return true if self.equal?(o)
84
93
  self.class == o.class &&
85
- liabilities == o.liabilities
94
+ liabilities == o.liabilities &&
95
+ request_id == o.request_id
86
96
  end
87
97
 
88
98
  # @see the `==` method
@@ -94,7 +104,7 @@ module FuseClient
94
104
  # Calculates hash code according to all attributes.
95
105
  # @return [Integer] Hash code
96
106
  def hash
97
- [liabilities].hash
107
+ [liabilities, request_id].hash
98
108
  end
99
109
 
100
110
  # Builds the object from hash
@@ -23,12 +23,16 @@ module FuseClient
23
23
  # Indicates if there are more pages to navigate through
24
24
  attr_accessor :has_next
25
25
 
26
+ # An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues.
27
+ attr_accessor :request_id
28
+
26
29
  # Attribute mapping from ruby-style variable name to JSON key.
27
30
  def self.attribute_map
28
31
  {
29
32
  :'data' => :'data',
30
33
  :'cursor' => :'cursor',
31
- :'has_next' => :'has_next'
34
+ :'has_next' => :'has_next',
35
+ :'request_id' => :'request_id'
32
36
  }
33
37
  end
34
38
 
@@ -42,7 +46,8 @@ module FuseClient
42
46
  {
43
47
  :'data' => :'Array<GetTransactionsResponseDataInner>',
44
48
  :'cursor' => :'String',
45
- :'has_next' => :'Boolean'
49
+ :'has_next' => :'Boolean',
50
+ :'request_id' => :'String'
46
51
  }
47
52
  end
48
53
 
@@ -80,6 +85,10 @@ module FuseClient
80
85
  if attributes.key?(:'has_next')
81
86
  self.has_next = attributes[:'has_next']
82
87
  end
88
+
89
+ if attributes.key?(:'request_id')
90
+ self.request_id = attributes[:'request_id']
91
+ end
83
92
  end
84
93
 
85
94
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -102,7 +111,8 @@ module FuseClient
102
111
  self.class == o.class &&
103
112
  data == o.data &&
104
113
  cursor == o.cursor &&
105
- has_next == o.has_next
114
+ has_next == o.has_next &&
115
+ request_id == o.request_id
106
116
  end
107
117
 
108
118
  # @see the `==` method
@@ -114,7 +124,7 @@ module FuseClient
114
124
  # Calculates hash code according to all attributes.
115
125
  # @return [Integer] Hash code
116
126
  def hash
117
- [data, cursor, has_next].hash
127
+ [data, cursor, has_next, request_id].hash
118
128
  end
119
129
 
120
130
  # Builds the object from hash
@@ -18,10 +18,14 @@ module FuseClient
18
18
  # Response message
19
19
  attr_accessor :message
20
20
 
21
+ # An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues.
22
+ attr_accessor :request_id
23
+
21
24
  # Attribute mapping from ruby-style variable name to JSON key.
22
25
  def self.attribute_map
23
26
  {
24
- :'message' => :'message'
27
+ :'message' => :'message',
28
+ :'request_id' => :'request_id'
25
29
  }
26
30
  end
27
31
 
@@ -33,7 +37,8 @@ module FuseClient
33
37
  # Attribute type mapping.
34
38
  def self.openapi_types
35
39
  {
36
- :'message' => :'String'
40
+ :'message' => :'String',
41
+ :'request_id' => :'String'
37
42
  }
38
43
  end
39
44
 
@@ -61,6 +66,10 @@ module FuseClient
61
66
  if attributes.key?(:'message')
62
67
  self.message = attributes[:'message']
63
68
  end
69
+
70
+ if attributes.key?(:'request_id')
71
+ self.request_id = attributes[:'request_id']
72
+ end
64
73
  end
65
74
 
66
75
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -81,7 +90,8 @@ module FuseClient
81
90
  def ==(o)
82
91
  return true if self.equal?(o)
83
92
  self.class == o.class &&
84
- message == o.message
93
+ message == o.message &&
94
+ request_id == o.request_id
85
95
  end
86
96
 
87
97
  # @see the `==` method
@@ -93,7 +103,7 @@ module FuseClient
93
103
  # Calculates hash code according to all attributes.
94
104
  # @return [Integer] Hash code
95
105
  def hash
96
- [message].hash
106
+ [message, request_id].hash
97
107
  end
98
108
 
99
109
  # Builds the object from hash
@@ -30,6 +30,9 @@ module FuseClient
30
30
  # Represents if more than requested count of transaction updates exist. If true, the additional updates can be fetched by making an additional request with `cursor` set to `next_cursor`. If `has_next` is true, it's important to pull all available pages, to make it less likely for underlying data changes to conflict with pagination.
31
31
  attr_accessor :has_next
32
32
 
33
+ # An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues.
34
+ attr_accessor :request_id
35
+
33
36
  # Attribute mapping from ruby-style variable name to JSON key.
34
37
  def self.attribute_map
35
38
  {
@@ -37,7 +40,8 @@ module FuseClient
37
40
  :'modified' => :'modified',
38
41
  :'removed' => :'removed',
39
42
  :'next_cursor' => :'next_cursor',
40
- :'has_next' => :'has_next'
43
+ :'has_next' => :'has_next',
44
+ :'request_id' => :'request_id'
41
45
  }
42
46
  end
43
47
 
@@ -53,7 +57,8 @@ module FuseClient
53
57
  :'modified' => :'Array<TransactionCommonModel>',
54
58
  :'removed' => :'Array<SyncTransactionsResponseRemovedInner>',
55
59
  :'next_cursor' => :'String',
56
- :'has_next' => :'Boolean'
60
+ :'has_next' => :'Boolean',
61
+ :'request_id' => :'String'
57
62
  }
58
63
  end
59
64
 
@@ -103,6 +108,10 @@ module FuseClient
103
108
  if attributes.key?(:'has_next')
104
109
  self.has_next = attributes[:'has_next']
105
110
  end
111
+
112
+ if attributes.key?(:'request_id')
113
+ self.request_id = attributes[:'request_id']
114
+ end
106
115
  end
107
116
 
108
117
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -127,7 +136,8 @@ module FuseClient
127
136
  modified == o.modified &&
128
137
  removed == o.removed &&
129
138
  next_cursor == o.next_cursor &&
130
- has_next == o.has_next
139
+ has_next == o.has_next &&
140
+ request_id == o.request_id
131
141
  end
132
142
 
133
143
  # @see the `==` method
@@ -139,7 +149,7 @@ module FuseClient
139
149
  # Calculates hash code according to all attributes.
140
150
  # @return [Integer] Hash code
141
151
  def hash
142
- [added, modified, removed, next_cursor, has_next].hash
152
+ [added, modified, removed, next_cursor, has_next, request_id].hash
143
153
  end
144
154
 
145
155
  # Builds the object from hash
@@ -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.5'
14
+ VERSION = '1.0.7'
15
15
  end
data/lib/fuse_client.rb CHANGED
@@ -74,6 +74,7 @@ require 'fuse_client/models/get_financial_connections_balance_request'
74
74
  require 'fuse_client/models/get_financial_connections_owners_request'
75
75
  require 'fuse_client/models/get_financial_connections_owners_response'
76
76
  require 'fuse_client/models/get_financial_connections_owners_response_accounts_inner'
77
+ require 'fuse_client/models/get_financial_institution_response'
77
78
  require 'fuse_client/models/get_investment_holdings_request'
78
79
  require 'fuse_client/models/get_investment_holdings_response'
79
80
  require 'fuse_client/models/get_investment_transactions_request'
@@ -169,7 +169,7 @@ describe 'FuseApi' do
169
169
  # Receive metadata for a financial institution
170
170
  # @param institution_id
171
171
  # @param [Hash] opts the optional parameters
172
- # @return [FinancialInstitution]
172
+ # @return [GetFinancialInstitutionResponse]
173
173
  describe 'get_financial_institution test' do
174
174
  it 'should work' do
175
175
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -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
@@ -0,0 +1,40 @@
1
+ =begin
2
+ #Fuse
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 6.3.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FuseClient::GetFinancialInstitutionResponse
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FuseClient::GetFinancialInstitutionResponse do
21
+ let(:instance) { FuseClient::GetFinancialInstitutionResponse.new }
22
+
23
+ describe 'test an instance of GetFinancialInstitutionResponse' do
24
+ it 'should create an instance of GetFinancialInstitutionResponse' do
25
+ expect(instance).to be_instance_of(FuseClient::GetFinancialInstitutionResponse)
26
+ end
27
+ end
28
+ describe 'test attribute "financial_institution"' 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
+
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
+
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.5
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
@@ -120,6 +120,7 @@ files:
120
120
  - docs/GetFinancialConnectionsOwnersRequest.md
121
121
  - docs/GetFinancialConnectionsOwnersResponse.md
122
122
  - docs/GetFinancialConnectionsOwnersResponseAccountsInner.md
123
+ - docs/GetFinancialInstitutionResponse.md
123
124
  - docs/GetInvestmentHoldingsRequest.md
124
125
  - docs/GetInvestmentHoldingsResponse.md
125
126
  - docs/GetInvestmentTransactionsRequest.md
@@ -203,6 +204,7 @@ files:
203
204
  - lib/fuse_client/models/get_financial_connections_owners_request.rb
204
205
  - lib/fuse_client/models/get_financial_connections_owners_response.rb
205
206
  - lib/fuse_client/models/get_financial_connections_owners_response_accounts_inner.rb
207
+ - lib/fuse_client/models/get_financial_institution_response.rb
206
208
  - lib/fuse_client/models/get_investment_holdings_request.rb
207
209
  - lib/fuse_client/models/get_investment_holdings_response.rb
208
210
  - lib/fuse_client/models/get_investment_transactions_request.rb
@@ -283,6 +285,7 @@ files:
283
285
  - spec/models/get_financial_connections_owners_request_spec.rb
284
286
  - spec/models/get_financial_connections_owners_response_accounts_inner_spec.rb
285
287
  - spec/models/get_financial_connections_owners_response_spec.rb
288
+ - spec/models/get_financial_institution_response_spec.rb
286
289
  - spec/models/get_investment_holdings_request_spec.rb
287
290
  - spec/models/get_investment_holdings_response_spec.rb
288
291
  - spec/models/get_investment_transactions_request_spec.rb
@@ -344,6 +347,7 @@ test_files:
344
347
  - spec/models/financial_connections_investment_account_spec.rb
345
348
  - spec/models/financial_connections_account_details_spec.rb
346
349
  - spec/models/financial_connections_account_balance_spec.rb
350
+ - spec/models/get_financial_institution_response_spec.rb
347
351
  - spec/models/create_link_token_request_spec.rb
348
352
  - spec/models/product_spec.rb
349
353
  - spec/models/financial_connections_account_spec.rb