finnhub_ruby 1.0.1 → 1.1.2

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 (53) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +21 -2
  3. data/docs/CompanyProfile.md +1 -1
  4. data/docs/DefaultApi.md +394 -3
  5. data/docs/ETFCountryExposureData.md +19 -0
  6. data/docs/ETFHoldingsData.md +21 -0
  7. data/docs/ETFSectorExposureData.md +19 -0
  8. data/docs/ETFsCountryExposure.md +19 -0
  9. data/docs/ETFsHoldings.md +19 -0
  10. data/docs/ETFsIndustryExposure.md +19 -0
  11. data/docs/ETFsProfile.md +19 -0
  12. data/docs/IndexHistoricalConstituent.md +21 -0
  13. data/docs/IndicesConstituents.md +19 -0
  14. data/docs/IndicesHistoricalConstituents.md +19 -0
  15. data/docs/SimilarityIndex.md +21 -0
  16. data/docs/Stock.md +5 -1
  17. data/docs/Trend.md +3 -1
  18. data/lib/finnhub_ruby.rb +11 -0
  19. data/lib/finnhub_ruby/api/default_api.rb +447 -4
  20. data/lib/finnhub_ruby/api_client.rb +1 -2
  21. data/lib/finnhub_ruby/models/company_profile.rb +1 -1
  22. data/lib/finnhub_ruby/models/et_fs_country_exposure.rb +219 -0
  23. data/lib/finnhub_ruby/models/et_fs_holdings.rb +219 -0
  24. data/lib/finnhub_ruby/models/et_fs_industry_exposure.rb +219 -0
  25. data/lib/finnhub_ruby/models/et_fs_profile.rb +216 -0
  26. data/lib/finnhub_ruby/models/etf_country_exposure_data.rb +217 -0
  27. data/lib/finnhub_ruby/models/etf_holdings_data.rb +227 -0
  28. data/lib/finnhub_ruby/models/etf_sector_exposure_data.rb +217 -0
  29. data/lib/finnhub_ruby/models/index_historical_constituent.rb +227 -0
  30. data/lib/finnhub_ruby/models/indices_constituents.rb +219 -0
  31. data/lib/finnhub_ruby/models/indices_historical_constituents.rb +219 -0
  32. data/lib/finnhub_ruby/models/similarity_index.rb +229 -0
  33. data/lib/finnhub_ruby/models/stock.rb +24 -4
  34. data/lib/finnhub_ruby/models/trend.rb +14 -4
  35. data/lib/finnhub_ruby/version.rb +1 -1
  36. data/release.sh +1 -1
  37. data/spec/api/default_api_spec.rb +88 -2
  38. data/spec/models/et_fs_country_exposure_spec.rb +47 -0
  39. data/spec/models/et_fs_holdings_spec.rb +47 -0
  40. data/spec/models/et_fs_industry_exposure_spec.rb +47 -0
  41. data/spec/models/et_fs_profile_spec.rb +47 -0
  42. data/spec/models/etf_country_exposure_data_spec.rb +47 -0
  43. data/spec/models/etf_holdings_data_spec.rb +53 -0
  44. data/spec/models/etf_sector_exposure_data_spec.rb +47 -0
  45. data/spec/models/index_historical_constituent_spec.rb +53 -0
  46. data/spec/models/indices_constituents_spec.rb +47 -0
  47. data/spec/models/indices_historical_constituents_spec.rb +47 -0
  48. data/spec/models/similarity_index_spec.rb +53 -0
  49. data/spec/models/stock_spec.rb +12 -0
  50. data/spec/models/trend_spec.rb +6 -0
  51. data/test.rb +18 -0
  52. metadata +46 -3
  53. data/finnhub_ruby-1.0.0.gem +0 -0
@@ -0,0 +1,47 @@
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: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::ETFCountryExposureData
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'ETFCountryExposureData' do
21
+ before do
22
+ # run before each test
23
+ @instance = FinnhubRuby::ETFCountryExposureData.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of ETFCountryExposureData' do
31
+ it 'should create an instance of ETFCountryExposureData' do
32
+ expect(@instance).to be_instance_of(FinnhubRuby::ETFCountryExposureData)
33
+ end
34
+ end
35
+ describe 'test attribute "country"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "exposure"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ end
@@ -0,0 +1,53 @@
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: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::ETFHoldingsData
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'ETFHoldingsData' do
21
+ before do
22
+ # run before each test
23
+ @instance = FinnhubRuby::ETFHoldingsData.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of ETFHoldingsData' do
31
+ it 'should create an instance of ETFHoldingsData' do
32
+ expect(@instance).to be_instance_of(FinnhubRuby::ETFHoldingsData)
33
+ end
34
+ end
35
+ describe 'test attribute "symbol"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "share"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "percent"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ end
@@ -0,0 +1,47 @@
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: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::ETFSectorExposureData
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'ETFSectorExposureData' do
21
+ before do
22
+ # run before each test
23
+ @instance = FinnhubRuby::ETFSectorExposureData.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of ETFSectorExposureData' do
31
+ it 'should create an instance of ETFSectorExposureData' do
32
+ expect(@instance).to be_instance_of(FinnhubRuby::ETFSectorExposureData)
33
+ end
34
+ end
35
+ describe 'test attribute "industry"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "exposure"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ end
@@ -0,0 +1,53 @@
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: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::IndexHistoricalConstituent
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'IndexHistoricalConstituent' do
21
+ before do
22
+ # run before each test
23
+ @instance = FinnhubRuby::IndexHistoricalConstituent.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of IndexHistoricalConstituent' do
31
+ it 'should create an instance of IndexHistoricalConstituent' do
32
+ expect(@instance).to be_instance_of(FinnhubRuby::IndexHistoricalConstituent)
33
+ end
34
+ end
35
+ describe 'test attribute "symbol"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "action"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "date"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ end
@@ -0,0 +1,47 @@
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: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::IndicesConstituents
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'IndicesConstituents' do
21
+ before do
22
+ # run before each test
23
+ @instance = FinnhubRuby::IndicesConstituents.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of IndicesConstituents' do
31
+ it 'should create an instance of IndicesConstituents' do
32
+ expect(@instance).to be_instance_of(FinnhubRuby::IndicesConstituents)
33
+ end
34
+ end
35
+ describe 'test attribute "symbol"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "constituents"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ end
@@ -0,0 +1,47 @@
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: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::IndicesHistoricalConstituents
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'IndicesHistoricalConstituents' do
21
+ before do
22
+ # run before each test
23
+ @instance = FinnhubRuby::IndicesHistoricalConstituents.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of IndicesHistoricalConstituents' do
31
+ it 'should create an instance of IndicesHistoricalConstituents' do
32
+ expect(@instance).to be_instance_of(FinnhubRuby::IndicesHistoricalConstituents)
33
+ end
34
+ end
35
+ describe 'test attribute "symbol"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "historical_constituents"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ end
@@ -0,0 +1,53 @@
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: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::SimilarityIndex
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'SimilarityIndex' do
21
+ before do
22
+ # run before each test
23
+ @instance = FinnhubRuby::SimilarityIndex.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of SimilarityIndex' do
31
+ it 'should create an instance of SimilarityIndex' do
32
+ expect(@instance).to be_instance_of(FinnhubRuby::SimilarityIndex)
33
+ end
34
+ end
35
+ describe 'test attribute "symbol"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "cik"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "similarity"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ end
@@ -50,4 +50,16 @@ describe 'Stock' do
50
50
  end
51
51
  end
52
52
 
53
+ describe 'test attribute "type"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "currency"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
53
65
  end
@@ -38,4 +38,10 @@ describe 'Trend' do
38
38
  end
39
39
  end
40
40
 
41
+ describe 'test attribute "trending"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
41
47
  end
data/test.rb CHANGED
@@ -137,3 +137,21 @@ puts(finnhub_client.stock_tick_with_http_info('AAPL', '2020-03-25', 500, 0))
137
137
 
138
138
  # Technical Indicator
139
139
  puts(finnhub_client.technical_indicator("AAPL", 'D', 1583098857, 1584308457, 'rsi', {"timeperiod": 3}))
140
+
141
+ # Indices Constituents
142
+ puts(finnhub_client.indices_constituents("^GSPC"))
143
+
144
+ # Indices Historical Constituents
145
+ puts(finnhub_client.indices_historical_constituents("^GSPC"))
146
+
147
+ # ETFs Profile
148
+ puts(finnhub_client.etfs_profile('SPY'))
149
+
150
+ # ETFs Holdings
151
+ puts(finnhub_client.etfs_holdings('SPY'))
152
+
153
+ # ETFs Industry Exposure
154
+ puts(finnhub_client.etfs_industry_exposure('SPY'))
155
+
156
+ # ETFs Country Exposure
157
+ puts(finnhub_client.etfs_country_exposure('SPY'))
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.0.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Finnhub
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-05 00:00:00.000000000 Z
11
+ date: 2020-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -95,6 +95,13 @@ files:
95
95
  - docs/DefaultApi.md
96
96
  - docs/Development.md
97
97
  - docs/Dividends.md
98
+ - docs/ETFCountryExposureData.md
99
+ - docs/ETFHoldingsData.md
100
+ - docs/ETFSectorExposureData.md
101
+ - docs/ETFsCountryExposure.md
102
+ - docs/ETFsHoldings.md
103
+ - docs/ETFsIndustryExposure.md
104
+ - docs/ETFsProfile.md
98
105
  - docs/EarningEstimate.md
99
106
  - docs/EarningRelease.md
100
107
  - docs/EarningResult.md
@@ -116,7 +123,10 @@ files:
116
123
  - docs/FundOwnership.md
117
124
  - docs/IPOCalendar.md
118
125
  - docs/IPOEvent.md
126
+ - docs/IndexHistoricalConstituent.md
119
127
  - docs/Indicator.md
128
+ - docs/IndicesConstituents.md
129
+ - docs/IndicesHistoricalConstituents.md
120
130
  - docs/Investor.md
121
131
  - docs/InvestorsOwnership.md
122
132
  - docs/LastBidAsk.md
@@ -130,6 +140,7 @@ files:
130
140
  - docs/Report.md
131
141
  - docs/RevenueEstimates.md
132
142
  - docs/Sentiment.md
143
+ - docs/SimilarityIndex.md
133
144
  - docs/Split.md
134
145
  - docs/Stock.md
135
146
  - docs/StockCandles.md
@@ -141,7 +152,6 @@ files:
141
152
  - docs/TranscriptParticipant.md
142
153
  - docs/Trend.md
143
154
  - docs/UpgradeDowngrade.md
144
- - finnhub_ruby-1.0.0.gem
145
155
  - finnhub_ruby.gemspec
146
156
  - git_push.sh
147
157
  - lib/finnhub_ruby.rb
@@ -174,6 +184,13 @@ files:
174
184
  - lib/finnhub_ruby/models/economic_data.rb
175
185
  - lib/finnhub_ruby/models/economic_event.rb
176
186
  - lib/finnhub_ruby/models/estimate.rb
187
+ - lib/finnhub_ruby/models/et_fs_country_exposure.rb
188
+ - lib/finnhub_ruby/models/et_fs_holdings.rb
189
+ - lib/finnhub_ruby/models/et_fs_industry_exposure.rb
190
+ - lib/finnhub_ruby/models/et_fs_profile.rb
191
+ - lib/finnhub_ruby/models/etf_country_exposure_data.rb
192
+ - lib/finnhub_ruby/models/etf_holdings_data.rb
193
+ - lib/finnhub_ruby/models/etf_sector_exposure_data.rb
177
194
  - lib/finnhub_ruby/models/filing.rb
178
195
  - lib/finnhub_ruby/models/financial_statements.rb
179
196
  - lib/finnhub_ruby/models/financials_as_reported.rb
@@ -181,7 +198,10 @@ files:
181
198
  - lib/finnhub_ruby/models/forex_symbol.rb
182
199
  - lib/finnhub_ruby/models/forexrates.rb
183
200
  - lib/finnhub_ruby/models/fund_ownership.rb
201
+ - lib/finnhub_ruby/models/index_historical_constituent.rb
184
202
  - lib/finnhub_ruby/models/indicator.rb
203
+ - lib/finnhub_ruby/models/indices_constituents.rb
204
+ - lib/finnhub_ruby/models/indices_historical_constituents.rb
185
205
  - lib/finnhub_ruby/models/investor.rb
186
206
  - lib/finnhub_ruby/models/investors_ownership.rb
187
207
  - lib/finnhub_ruby/models/ipo_calendar.rb
@@ -197,6 +217,7 @@ files:
197
217
  - lib/finnhub_ruby/models/report.rb
198
218
  - lib/finnhub_ruby/models/revenue_estimates.rb
199
219
  - lib/finnhub_ruby/models/sentiment.rb
220
+ - lib/finnhub_ruby/models/similarity_index.rb
200
221
  - lib/finnhub_ruby/models/split.rb
201
222
  - lib/finnhub_ruby/models/stock.rb
202
223
  - lib/finnhub_ruby/models/stock_candles.rb
@@ -238,6 +259,13 @@ files:
238
259
  - spec/models/economic_data_spec.rb
239
260
  - spec/models/economic_event_spec.rb
240
261
  - spec/models/estimate_spec.rb
262
+ - spec/models/et_fs_country_exposure_spec.rb
263
+ - spec/models/et_fs_holdings_spec.rb
264
+ - spec/models/et_fs_industry_exposure_spec.rb
265
+ - spec/models/et_fs_profile_spec.rb
266
+ - spec/models/etf_country_exposure_data_spec.rb
267
+ - spec/models/etf_holdings_data_spec.rb
268
+ - spec/models/etf_sector_exposure_data_spec.rb
241
269
  - spec/models/filing_spec.rb
242
270
  - spec/models/financial_statements_spec.rb
243
271
  - spec/models/financials_as_reported_spec.rb
@@ -245,7 +273,10 @@ files:
245
273
  - spec/models/forex_symbol_spec.rb
246
274
  - spec/models/forexrates_spec.rb
247
275
  - spec/models/fund_ownership_spec.rb
276
+ - spec/models/index_historical_constituent_spec.rb
248
277
  - spec/models/indicator_spec.rb
278
+ - spec/models/indices_constituents_spec.rb
279
+ - spec/models/indices_historical_constituents_spec.rb
249
280
  - spec/models/investor_spec.rb
250
281
  - spec/models/investors_ownership_spec.rb
251
282
  - spec/models/ipo_calendar_spec.rb
@@ -261,6 +292,7 @@ files:
261
292
  - spec/models/report_spec.rb
262
293
  - spec/models/revenue_estimates_spec.rb
263
294
  - spec/models/sentiment_spec.rb
295
+ - spec/models/similarity_index_spec.rb
264
296
  - spec/models/split_spec.rb
265
297
  - spec/models/stock_candles_spec.rb
266
298
  - spec/models/stock_spec.rb
@@ -305,6 +337,7 @@ test_files:
305
337
  - spec/models/economic_calendar_spec.rb
306
338
  - spec/models/filing_spec.rb
307
339
  - spec/models/revenue_estimates_spec.rb
340
+ - spec/models/etf_holdings_data_spec.rb
308
341
  - spec/models/stock_transcripts_spec.rb
309
342
  - spec/models/development_spec.rb
310
343
  - spec/models/company_news_statistics_spec.rb
@@ -312,17 +345,22 @@ test_files:
312
345
  - spec/models/ipo_event_spec.rb
313
346
  - spec/models/basic_financials_spec.rb
314
347
  - spec/models/crypto_candles_spec.rb
348
+ - spec/models/index_historical_constituent_spec.rb
315
349
  - spec/models/report_spec.rb
316
350
  - spec/models/recommendation_trend_spec.rb
351
+ - spec/models/indices_historical_constituents_spec.rb
352
+ - spec/models/indices_constituents_spec.rb
317
353
  - spec/models/trend_spec.rb
318
354
  - spec/models/company_profile2_spec.rb
319
355
  - spec/models/earnings_estimates_spec.rb
320
356
  - spec/models/transcript_participant_spec.rb
321
357
  - spec/models/company_spec.rb
358
+ - spec/models/etf_country_exposure_data_spec.rb
322
359
  - spec/models/major_developments_spec.rb
323
360
  - spec/models/forex_symbol_spec.rb
324
361
  - spec/models/news_spec.rb
325
362
  - spec/models/investor_spec.rb
363
+ - spec/models/et_fs_profile_spec.rb
326
364
  - spec/models/earning_estimate_spec.rb
327
365
  - spec/models/company_executive_spec.rb
328
366
  - spec/models/earning_release_spec.rb
@@ -330,6 +368,7 @@ test_files:
330
368
  - spec/models/earnings_call_transcripts_spec.rb
331
369
  - spec/models/earning_result_spec.rb
332
370
  - spec/models/aggregate_indicators_spec.rb
371
+ - spec/models/similarity_index_spec.rb
333
372
  - spec/models/country_metadata_spec.rb
334
373
  - spec/models/news_sentiment_spec.rb
335
374
  - spec/models/forex_candles_spec.rb
@@ -342,18 +381,22 @@ test_files:
342
381
  - spec/models/split_spec.rb
343
382
  - spec/models/last_bid_ask_spec.rb
344
383
  - spec/models/indicator_spec.rb
384
+ - spec/models/et_fs_industry_exposure_spec.rb
345
385
  - spec/models/investors_ownership_spec.rb
346
386
  - spec/models/sentiment_spec.rb
347
387
  - spec/models/company_profile_spec.rb
348
388
  - spec/models/estimate_spec.rb
349
389
  - spec/models/economic_event_spec.rb
390
+ - spec/models/etf_sector_exposure_data_spec.rb
350
391
  - spec/models/quote_spec.rb
351
392
  - spec/models/upgrade_downgrade_spec.rb
393
+ - spec/models/et_fs_country_exposure_spec.rb
352
394
  - spec/models/covid_info_spec.rb
353
395
  - spec/models/technical_analysis_spec.rb
354
396
  - spec/models/stock_candles_spec.rb
355
397
  - spec/models/earnings_call_transcripts_list_spec.rb
356
398
  - spec/models/economic_data_spec.rb
399
+ - spec/models/et_fs_holdings_spec.rb
357
400
  - spec/models/crypto_symbol_spec.rb
358
401
  - spec/models/financial_statements_spec.rb
359
402
  - spec/models/ipo_calendar_spec.rb