finnhub_ruby 1.1.17 → 1.1.18

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 (52) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/docs/BondTickData.md +34 -0
  4. data/docs/DefaultApi.md +543 -7
  5. data/docs/ETFProfileData.md +8 -2
  6. data/docs/InstitutionalOwnership.md +22 -0
  7. data/docs/InstitutionalOwnershipGroup.md +20 -0
  8. data/docs/InstitutionalOwnershipInfo.md +36 -0
  9. data/docs/InstitutionalPortfolio.md +22 -0
  10. data/docs/InstitutionalPortfolioGroup.md +22 -0
  11. data/docs/InstitutionalPortfolioInfo.md +38 -0
  12. data/docs/InstitutionalProfile.md +20 -0
  13. data/docs/InstitutionalProfileInfo.md +28 -0
  14. data/docs/IsinChange.md +22 -0
  15. data/docs/IsinChangeInfo.md +22 -0
  16. data/docs/PriceMetrics.md +20 -0
  17. data/docs/SymbolChange.md +22 -0
  18. data/docs/SymbolChangeInfo.md +22 -0
  19. data/finnhub_ruby-1.1.17.gem +0 -0
  20. data/lib/finnhub_ruby/api/default_api.rb +534 -4
  21. data/lib/finnhub_ruby/models/bond_tick_data.rb +311 -0
  22. data/lib/finnhub_ruby/models/etf_profile_data.rb +35 -5
  23. data/lib/finnhub_ruby/models/institutional_ownership.rb +241 -0
  24. data/lib/finnhub_ruby/models/institutional_ownership_group.rb +231 -0
  25. data/lib/finnhub_ruby/models/institutional_ownership_info.rb +309 -0
  26. data/lib/finnhub_ruby/models/institutional_portfolio.rb +241 -0
  27. data/lib/finnhub_ruby/models/institutional_portfolio_group.rb +241 -0
  28. data/lib/finnhub_ruby/models/institutional_portfolio_info.rb +319 -0
  29. data/lib/finnhub_ruby/models/institutional_profile.rb +231 -0
  30. data/lib/finnhub_ruby/models/institutional_profile_info.rb +269 -0
  31. data/lib/finnhub_ruby/models/isin_change.rb +241 -0
  32. data/lib/finnhub_ruby/models/isin_change_info.rb +239 -0
  33. data/lib/finnhub_ruby/models/price_metrics.rb +228 -0
  34. data/lib/finnhub_ruby/models/symbol_change.rb +241 -0
  35. data/lib/finnhub_ruby/models/symbol_change_info.rb +239 -0
  36. data/lib/finnhub_ruby/version.rb +1 -1
  37. data/lib/finnhub_ruby.rb +14 -0
  38. data/spec/models/bond_tick_data_spec.rb +82 -0
  39. data/spec/models/institutional_ownership_group_spec.rb +40 -0
  40. data/spec/models/institutional_ownership_info_spec.rb +88 -0
  41. data/spec/models/institutional_ownership_spec.rb +46 -0
  42. data/spec/models/institutional_portfolio_group_spec.rb +46 -0
  43. data/spec/models/institutional_portfolio_info_spec.rb +94 -0
  44. data/spec/models/institutional_portfolio_spec.rb +46 -0
  45. data/spec/models/institutional_profile_info_spec.rb +64 -0
  46. data/spec/models/institutional_profile_spec.rb +40 -0
  47. data/spec/models/isin_change_info_spec.rb +46 -0
  48. data/spec/models/isin_change_spec.rb +46 -0
  49. data/spec/models/price_metrics_spec.rb +40 -0
  50. data/spec/models/symbol_change_info_spec.rb +46 -0
  51. data/spec/models/symbol_change_spec.rb +46 -0
  52. metadata +59 -2
@@ -0,0 +1,46 @@
1
+ =begin
2
+ #Finnhub API
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: 5.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::InstitutionalPortfolio
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FinnhubRuby::InstitutionalPortfolio do
21
+ let(:instance) { FinnhubRuby::InstitutionalPortfolio.new }
22
+
23
+ describe 'test an instance of InstitutionalPortfolio' do
24
+ it 'should create an instance of InstitutionalPortfolio' do
25
+ expect(instance).to be_instance_of(FinnhubRuby::InstitutionalPortfolio)
26
+ end
27
+ end
28
+ describe 'test attribute "name"' 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 "cik"' 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
+ describe 'test attribute "data"' 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
+
46
+ end
@@ -0,0 +1,64 @@
1
+ =begin
2
+ #Finnhub API
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: 5.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::InstitutionalProfileInfo
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FinnhubRuby::InstitutionalProfileInfo do
21
+ let(:instance) { FinnhubRuby::InstitutionalProfileInfo.new }
22
+
23
+ describe 'test an instance of InstitutionalProfileInfo' do
24
+ it 'should create an instance of InstitutionalProfileInfo' do
25
+ expect(instance).to be_instance_of(FinnhubRuby::InstitutionalProfileInfo)
26
+ end
27
+ end
28
+ describe 'test attribute "cik"' 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 "firm_type"' 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
+ describe 'test attribute "manager"' 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
+
46
+ describe 'test attribute "philosophy"' 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
+
52
+ describe 'test attribute "profile"' 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
+
58
+ describe 'test attribute "profile_img"' 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
+
64
+ end
@@ -0,0 +1,40 @@
1
+ =begin
2
+ #Finnhub API
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: 5.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::InstitutionalProfile
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FinnhubRuby::InstitutionalProfile do
21
+ let(:instance) { FinnhubRuby::InstitutionalProfile.new }
22
+
23
+ describe 'test an instance of InstitutionalProfile' do
24
+ it 'should create an instance of InstitutionalProfile' do
25
+ expect(instance).to be_instance_of(FinnhubRuby::InstitutionalProfile)
26
+ end
27
+ end
28
+ describe 'test attribute "cik"' 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 "data"' 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
@@ -0,0 +1,46 @@
1
+ =begin
2
+ #Finnhub API
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: 5.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::IsinChangeInfo
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FinnhubRuby::IsinChangeInfo do
21
+ let(:instance) { FinnhubRuby::IsinChangeInfo.new }
22
+
23
+ describe 'test an instance of IsinChangeInfo' do
24
+ it 'should create an instance of IsinChangeInfo' do
25
+ expect(instance).to be_instance_of(FinnhubRuby::IsinChangeInfo)
26
+ end
27
+ end
28
+ describe 'test attribute "at_date"' 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 "old_isin"' 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
+ describe 'test attribute "new_isin"' 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
+
46
+ end
@@ -0,0 +1,46 @@
1
+ =begin
2
+ #Finnhub API
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: 5.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::IsinChange
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FinnhubRuby::IsinChange do
21
+ let(:instance) { FinnhubRuby::IsinChange.new }
22
+
23
+ describe 'test an instance of IsinChange' do
24
+ it 'should create an instance of IsinChange' do
25
+ expect(instance).to be_instance_of(FinnhubRuby::IsinChange)
26
+ end
27
+ end
28
+ describe 'test attribute "from_date"' 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 "to_date"' 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
+ describe 'test attribute "data"' 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
+
46
+ end
@@ -0,0 +1,40 @@
1
+ =begin
2
+ #Finnhub API
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: 5.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::PriceMetrics
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FinnhubRuby::PriceMetrics do
21
+ let(:instance) { FinnhubRuby::PriceMetrics.new }
22
+
23
+ describe 'test an instance of PriceMetrics' do
24
+ it 'should create an instance of PriceMetrics' do
25
+ expect(instance).to be_instance_of(FinnhubRuby::PriceMetrics)
26
+ end
27
+ end
28
+ describe 'test attribute "symbol"' 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 "data"' 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
@@ -0,0 +1,46 @@
1
+ =begin
2
+ #Finnhub API
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: 5.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::SymbolChangeInfo
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FinnhubRuby::SymbolChangeInfo do
21
+ let(:instance) { FinnhubRuby::SymbolChangeInfo.new }
22
+
23
+ describe 'test an instance of SymbolChangeInfo' do
24
+ it 'should create an instance of SymbolChangeInfo' do
25
+ expect(instance).to be_instance_of(FinnhubRuby::SymbolChangeInfo)
26
+ end
27
+ end
28
+ describe 'test attribute "at_date"' 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 "old_symbol"' 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
+ describe 'test attribute "new_symbol"' 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
+
46
+ end
@@ -0,0 +1,46 @@
1
+ =begin
2
+ #Finnhub API
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: 5.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::SymbolChange
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FinnhubRuby::SymbolChange do
21
+ let(:instance) { FinnhubRuby::SymbolChange.new }
22
+
23
+ describe 'test an instance of SymbolChange' do
24
+ it 'should create an instance of SymbolChange' do
25
+ expect(instance).to be_instance_of(FinnhubRuby::SymbolChange)
26
+ end
27
+ end
28
+ describe 'test attribute "from_date"' 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 "to_date"' 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
+ describe 'test attribute "data"' 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
+
46
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: finnhub_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.17
4
+ version: 1.1.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-13 00:00:00.000000000 Z
11
+ date: 2022-10-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -65,6 +65,7 @@ files:
65
65
  - docs/BasicFinancials.md
66
66
  - docs/BondCandles.md
67
67
  - docs/BondProfile.md
68
+ - docs/BondTickData.md
68
69
  - docs/BreakdownItem.md
69
70
  - docs/Company.md
70
71
  - docs/CompanyESG.md
@@ -131,9 +132,19 @@ files:
131
132
  - docs/InsiderSentiments.md
132
133
  - docs/InsiderSentimentsData.md
133
134
  - docs/InsiderTransactions.md
135
+ - docs/InstitutionalOwnership.md
136
+ - docs/InstitutionalOwnershipGroup.md
137
+ - docs/InstitutionalOwnershipInfo.md
138
+ - docs/InstitutionalPortfolio.md
139
+ - docs/InstitutionalPortfolioGroup.md
140
+ - docs/InstitutionalPortfolioInfo.md
141
+ - docs/InstitutionalProfile.md
142
+ - docs/InstitutionalProfileInfo.md
134
143
  - docs/InternationalFiling.md
135
144
  - docs/InvestmentThemePortfolio.md
136
145
  - docs/InvestmentThemes.md
146
+ - docs/IsinChange.md
147
+ - docs/IsinChangeInfo.md
137
148
  - docs/KeyCustomersSuppliers.md
138
149
  - docs/LastBidAsk.md
139
150
  - docs/LobbyingData.md
@@ -152,6 +163,7 @@ files:
152
163
  - docs/OwnershipInfo.md
153
164
  - docs/PatternRecognition.md
154
165
  - docs/PressRelease.md
166
+ - docs/PriceMetrics.md
155
167
  - docs/PriceTarget.md
156
168
  - docs/Quote.md
157
169
  - docs/RecommendationTrend.md
@@ -173,6 +185,8 @@ files:
173
185
  - docs/StockTranscripts.md
174
186
  - docs/SupplyChainRelationships.md
175
187
  - docs/SupportResistance.md
188
+ - docs/SymbolChange.md
189
+ - docs/SymbolChangeInfo.md
176
190
  - docs/SymbolLookup.md
177
191
  - docs/SymbolLookupInfo.md
178
192
  - docs/TechnicalAnalysis.md
@@ -196,6 +210,7 @@ files:
196
210
  - finnhub_ruby-1.1.14.gem
197
211
  - finnhub_ruby-1.1.15.gem
198
212
  - finnhub_ruby-1.1.16.gem
213
+ - finnhub_ruby-1.1.17.gem
199
214
  - finnhub_ruby-1.1.7.gem
200
215
  - finnhub_ruby-1.1.8.gem
201
216
  - finnhub_ruby-1.1.9.gem
@@ -210,6 +225,7 @@ files:
210
225
  - lib/finnhub_ruby/models/basic_financials.rb
211
226
  - lib/finnhub_ruby/models/bond_candles.rb
212
227
  - lib/finnhub_ruby/models/bond_profile.rb
228
+ - lib/finnhub_ruby/models/bond_tick_data.rb
213
229
  - lib/finnhub_ruby/models/breakdown_item.rb
214
230
  - lib/finnhub_ruby/models/company.rb
215
231
  - lib/finnhub_ruby/models/company_earnings_quality_score.rb
@@ -278,6 +294,14 @@ files:
278
294
  - lib/finnhub_ruby/models/insider_sentiments.rb
279
295
  - lib/finnhub_ruby/models/insider_sentiments_data.rb
280
296
  - lib/finnhub_ruby/models/insider_transactions.rb
297
+ - lib/finnhub_ruby/models/institutional_ownership.rb
298
+ - lib/finnhub_ruby/models/institutional_ownership_group.rb
299
+ - lib/finnhub_ruby/models/institutional_ownership_info.rb
300
+ - lib/finnhub_ruby/models/institutional_portfolio.rb
301
+ - lib/finnhub_ruby/models/institutional_portfolio_group.rb
302
+ - lib/finnhub_ruby/models/institutional_portfolio_info.rb
303
+ - lib/finnhub_ruby/models/institutional_profile.rb
304
+ - lib/finnhub_ruby/models/institutional_profile_info.rb
281
305
  - lib/finnhub_ruby/models/international_filing.rb
282
306
  - lib/finnhub_ruby/models/investment_theme_portfolio.rb
283
307
  - lib/finnhub_ruby/models/investment_themes.rb
@@ -286,6 +310,8 @@ files:
286
310
  - lib/finnhub_ruby/models/investors_ownership.rb
287
311
  - lib/finnhub_ruby/models/ipo_calendar.rb
288
312
  - lib/finnhub_ruby/models/ipo_event.rb
313
+ - lib/finnhub_ruby/models/isin_change.rb
314
+ - lib/finnhub_ruby/models/isin_change_info.rb
289
315
  - lib/finnhub_ruby/models/key_customers_suppliers.rb
290
316
  - lib/finnhub_ruby/models/last_bid_ask.rb
291
317
  - lib/finnhub_ruby/models/lobbying_data.rb
@@ -310,6 +336,7 @@ files:
310
336
  - lib/finnhub_ruby/models/ownership_info.rb
311
337
  - lib/finnhub_ruby/models/pattern_recognition.rb
312
338
  - lib/finnhub_ruby/models/press_release.rb
339
+ - lib/finnhub_ruby/models/price_metrics.rb
313
340
  - lib/finnhub_ruby/models/price_target.rb
314
341
  - lib/finnhub_ruby/models/quote.rb
315
342
  - lib/finnhub_ruby/models/recommendation_trend.rb
@@ -332,6 +359,8 @@ files:
332
359
  - lib/finnhub_ruby/models/stock_transcripts.rb
333
360
  - lib/finnhub_ruby/models/supply_chain_relationships.rb
334
361
  - lib/finnhub_ruby/models/support_resistance.rb
362
+ - lib/finnhub_ruby/models/symbol_change.rb
363
+ - lib/finnhub_ruby/models/symbol_change_info.rb
335
364
  - lib/finnhub_ruby/models/symbol_lookup.rb
336
365
  - lib/finnhub_ruby/models/symbol_lookup_info.rb
337
366
  - lib/finnhub_ruby/models/technical_analysis.rb
@@ -357,6 +386,7 @@ files:
357
386
  - spec/models/basic_financials_spec.rb
358
387
  - spec/models/bond_candles_spec.rb
359
388
  - spec/models/bond_profile_spec.rb
389
+ - spec/models/bond_tick_data_spec.rb
360
390
  - spec/models/breakdown_item_spec.rb
361
391
  - spec/models/company_earnings_quality_score_data_spec.rb
362
392
  - spec/models/company_earnings_quality_score_spec.rb
@@ -420,11 +450,21 @@ files:
420
450
  - spec/models/insider_sentiments_data_spec.rb
421
451
  - spec/models/insider_sentiments_spec.rb
422
452
  - spec/models/insider_transactions_spec.rb
453
+ - spec/models/institutional_ownership_group_spec.rb
454
+ - spec/models/institutional_ownership_info_spec.rb
455
+ - spec/models/institutional_ownership_spec.rb
456
+ - spec/models/institutional_portfolio_group_spec.rb
457
+ - spec/models/institutional_portfolio_info_spec.rb
458
+ - spec/models/institutional_portfolio_spec.rb
459
+ - spec/models/institutional_profile_info_spec.rb
460
+ - spec/models/institutional_profile_spec.rb
423
461
  - spec/models/international_filing_spec.rb
424
462
  - spec/models/investment_theme_portfolio_spec.rb
425
463
  - spec/models/investment_themes_spec.rb
426
464
  - spec/models/ipo_calendar_spec.rb
427
465
  - spec/models/ipo_event_spec.rb
466
+ - spec/models/isin_change_info_spec.rb
467
+ - spec/models/isin_change_spec.rb
428
468
  - spec/models/key_customers_suppliers_spec.rb
429
469
  - spec/models/last_bid_ask_spec.rb
430
470
  - spec/models/lobbying_data_spec.rb
@@ -443,6 +483,7 @@ files:
443
483
  - spec/models/ownership_spec.rb
444
484
  - spec/models/pattern_recognition_spec.rb
445
485
  - spec/models/press_release_spec.rb
486
+ - spec/models/price_metrics_spec.rb
446
487
  - spec/models/price_target_spec.rb
447
488
  - spec/models/quote_spec.rb
448
489
  - spec/models/recommendation_trend_spec.rb
@@ -464,6 +505,8 @@ files:
464
505
  - spec/models/stock_transcripts_spec.rb
465
506
  - spec/models/supply_chain_relationships_spec.rb
466
507
  - spec/models/support_resistance_spec.rb
508
+ - spec/models/symbol_change_info_spec.rb
509
+ - spec/models/symbol_change_spec.rb
467
510
  - spec/models/symbol_lookup_info_spec.rb
468
511
  - spec/models/symbol_lookup_spec.rb
469
512
  - spec/models/technical_analysis_spec.rb
@@ -529,6 +572,7 @@ test_files:
529
572
  - spec/models/company_esg_spec.rb
530
573
  - spec/models/insider_transactions_spec.rb
531
574
  - spec/models/ipo_event_spec.rb
575
+ - spec/models/institutional_portfolio_spec.rb
532
576
  - spec/models/basic_financials_spec.rb
533
577
  - spec/models/crypto_candles_spec.rb
534
578
  - spec/models/index_historical_constituent_spec.rb
@@ -549,11 +593,13 @@ test_files:
549
593
  - spec/models/investment_theme_portfolio_spec.rb
550
594
  - spec/models/ebit_estimates_spec.rb
551
595
  - spec/models/crypto_profile_spec.rb
596
+ - spec/models/institutional_ownership_info_spec.rb
552
597
  - spec/models/etf_country_exposure_data_spec.rb
553
598
  - spec/models/company_earnings_quality_score_data_spec.rb
554
599
  - spec/models/earnings_estimates_info_spec.rb
555
600
  - spec/models/forex_symbol_spec.rb
556
601
  - spec/models/sector_metric_spec.rb
602
+ - spec/models/symbol_change_info_spec.rb
557
603
  - spec/models/key_customers_suppliers_spec.rb
558
604
  - spec/models/symbol_lookup_info_spec.rb
559
605
  - spec/models/lobbying_data_spec.rb
@@ -561,6 +607,7 @@ test_files:
561
607
  - spec/models/earning_estimate_spec.rb
562
608
  - spec/models/company_executive_spec.rb
563
609
  - spec/models/earning_release_spec.rb
610
+ - spec/models/isin_change_info_spec.rb
564
611
  - spec/models/mutual_fund_profile_data_spec.rb
565
612
  - spec/models/etfs_country_exposure_spec.rb
566
613
  - spec/models/economic_code_spec.rb
@@ -574,12 +621,16 @@ test_files:
574
621
  - spec/models/bond_candles_spec.rb
575
622
  - spec/models/etf_profile_data_spec.rb
576
623
  - spec/models/country_metadata_spec.rb
624
+ - spec/models/institutional_portfolio_info_spec.rb
577
625
  - spec/models/news_sentiment_spec.rb
626
+ - spec/models/institutional_profile_spec.rb
578
627
  - spec/models/insider_sentiments_data_spec.rb
579
628
  - spec/models/forex_candles_spec.rb
580
629
  - spec/models/dividends2_info_spec.rb
581
630
  - spec/models/tick_data_spec.rb
631
+ - spec/models/price_metrics_spec.rb
582
632
  - spec/models/mutual_fund_country_exposure_data_spec.rb
633
+ - spec/models/isin_change_spec.rb
583
634
  - spec/models/fund_ownership_info_spec.rb
584
635
  - spec/models/etfs_profile_spec.rb
585
636
  - spec/models/insider_sentiments_spec.rb
@@ -588,7 +639,9 @@ test_files:
588
639
  - spec/models/ebitda_estimates_spec.rb
589
640
  - spec/models/earnings_calendar_spec.rb
590
641
  - spec/models/symbol_lookup_spec.rb
642
+ - spec/models/bond_tick_data_spec.rb
591
643
  - spec/models/press_release_spec.rb
644
+ - spec/models/symbol_change_spec.rb
592
645
  - spec/models/pattern_recognition_spec.rb
593
646
  - spec/models/stock_symbol_spec.rb
594
647
  - spec/models/forexrates_spec.rb
@@ -596,9 +649,12 @@ test_files:
596
649
  - spec/models/breakdown_item_spec.rb
597
650
  - spec/models/last_bid_ask_spec.rb
598
651
  - spec/models/indicator_spec.rb
652
+ - spec/models/institutional_portfolio_group_spec.rb
599
653
  - spec/models/usa_spending_result_spec.rb
600
654
  - spec/models/ownership_spec.rb
601
655
  - spec/models/revenue_estimates_info_spec.rb
656
+ - spec/models/institutional_profile_info_spec.rb
657
+ - spec/models/institutional_ownership_group_spec.rb
602
658
  - spec/models/sentiment_spec.rb
603
659
  - spec/models/similarity_index_info_spec.rb
604
660
  - spec/models/company_profile_spec.rb
@@ -620,6 +676,7 @@ test_files:
620
676
  - spec/models/crypto_symbol_spec.rb
621
677
  - spec/models/mutual_fund_profile_spec.rb
622
678
  - spec/models/ebitda_estimates_info_spec.rb
679
+ - spec/models/institutional_ownership_spec.rb
623
680
  - spec/models/investment_themes_spec.rb
624
681
  - spec/models/financial_statements_spec.rb
625
682
  - spec/models/ipo_calendar_spec.rb