finnhub_ruby 1.1.8 → 1.1.12
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.
- checksums.yaml +4 -4
- data/README.md +18 -4
- data/docs/CompanyESG.md +3 -3
- data/docs/CompanyEarningsQualityScore.md +22 -0
- data/docs/CompanyEarningsQualityScoreData.md +30 -0
- data/docs/CompanyProfile.md +4 -4
- data/docs/CountryMetadata.md +5 -1
- data/docs/CryptoProfile.md +38 -0
- data/docs/DefaultApi.md +391 -10
- data/docs/EbitEstimates.md +22 -0
- data/docs/EbitEstimatesInfo.md +26 -0
- data/docs/EbitdaEstimates.md +22 -0
- data/docs/EbitdaEstimatesInfo.md +26 -0
- data/docs/MutualFundProfileData.md +9 -1
- data/docs/StockSymbol.md +7 -1
- data/docs/Transactions.md +2 -0
- data/docs/UsptoPatent.md +34 -0
- data/docs/UsptoPatentResult.md +20 -0
- data/finnhub_ruby-1.1.10.gem +0 -0
- data/finnhub_ruby-1.1.11.gem +0 -0
- data/finnhub_ruby-1.1.8.gem +0 -0
- data/finnhub_ruby-1.1.9.gem +0 -0
- data/lib/finnhub_ruby/api/default_api.rb +361 -8
- data/lib/finnhub_ruby/models/company_earnings_quality_score.rb +241 -0
- data/lib/finnhub_ruby/models/company_earnings_quality_score_data.rb +279 -0
- data/lib/finnhub_ruby/models/company_esg.rb +3 -3
- data/lib/finnhub_ruby/models/company_profile.rb +4 -4
- data/lib/finnhub_ruby/models/country_metadata.rb +24 -4
- data/lib/finnhub_ruby/models/crypto_profile.rb +319 -0
- data/lib/finnhub_ruby/models/ebit_estimates.rb +241 -0
- data/lib/finnhub_ruby/models/ebit_estimates_info.rb +259 -0
- data/lib/finnhub_ruby/models/ebitda_estimates.rb +241 -0
- data/lib/finnhub_ruby/models/ebitda_estimates_info.rb +259 -0
- data/lib/finnhub_ruby/models/mutual_fund_profile_data.rb +44 -4
- data/lib/finnhub_ruby/models/stock_symbol.rb +34 -4
- data/lib/finnhub_ruby/models/transactions.rb +11 -1
- data/lib/finnhub_ruby/models/uspto_patent.rb +301 -0
- data/lib/finnhub_ruby/models/uspto_patent_result.rb +231 -0
- data/lib/finnhub_ruby/version.rb +1 -1
- data/lib/finnhub_ruby.rb +9 -0
- data/spec/models/company_earnings_quality_score_data_spec.rb +70 -0
- data/spec/models/company_earnings_quality_score_spec.rb +46 -0
- data/spec/models/crypto_profile_spec.rb +94 -0
- data/spec/models/ebit_estimates_info_spec.rb +58 -0
- data/spec/models/ebit_estimates_spec.rb +46 -0
- data/spec/models/ebitda_estimates_info_spec.rb +58 -0
- data/spec/models/ebitda_estimates_spec.rb +46 -0
- data/spec/models/uspto_patent_result_spec.rb +40 -0
- data/spec/models/uspto_patent_spec.rb +82 -0
- metadata +42 -2
@@ -0,0 +1,94 @@
|
|
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::CryptoProfile
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe FinnhubRuby::CryptoProfile do
|
21
|
+
let(:instance) { FinnhubRuby::CryptoProfile.new }
|
22
|
+
|
23
|
+
describe 'test an instance of CryptoProfile' do
|
24
|
+
it 'should create an instance of CryptoProfile' do
|
25
|
+
expect(instance).to be_instance_of(FinnhubRuby::CryptoProfile)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "long_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 "name"' 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 "description"' 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 "website"' 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 "market_cap"' 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 "total_supply"' 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
|
+
describe 'test attribute "max_supply"' 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
|
+
|
70
|
+
describe 'test attribute "circulating_supply"' 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
|
+
|
76
|
+
describe 'test attribute "logo"' do
|
77
|
+
it 'should work' do
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
describe 'test attribute "launch_date"' do
|
83
|
+
it 'should work' do
|
84
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
describe 'test attribute "proof_type"' 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
|
+
|
94
|
+
end
|
@@ -0,0 +1,58 @@
|
|
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::EbitEstimatesInfo
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe FinnhubRuby::EbitEstimatesInfo do
|
21
|
+
let(:instance) { FinnhubRuby::EbitEstimatesInfo.new }
|
22
|
+
|
23
|
+
describe 'test an instance of EbitEstimatesInfo' do
|
24
|
+
it 'should create an instance of EbitEstimatesInfo' do
|
25
|
+
expect(instance).to be_instance_of(FinnhubRuby::EbitEstimatesInfo)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "ebit_avg"' 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 "ebit_high"' 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 "ebit_low"' 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 "number_analysts"' 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 "period"' 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
|
+
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::EbitEstimates
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe FinnhubRuby::EbitEstimates do
|
21
|
+
let(:instance) { FinnhubRuby::EbitEstimates.new }
|
22
|
+
|
23
|
+
describe 'test an instance of EbitEstimates' do
|
24
|
+
it 'should create an instance of EbitEstimates' do
|
25
|
+
expect(instance).to be_instance_of(FinnhubRuby::EbitEstimates)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "data"' 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 "freq"' 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 "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,58 @@
|
|
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::EbitdaEstimatesInfo
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe FinnhubRuby::EbitdaEstimatesInfo do
|
21
|
+
let(:instance) { FinnhubRuby::EbitdaEstimatesInfo.new }
|
22
|
+
|
23
|
+
describe 'test an instance of EbitdaEstimatesInfo' do
|
24
|
+
it 'should create an instance of EbitdaEstimatesInfo' do
|
25
|
+
expect(instance).to be_instance_of(FinnhubRuby::EbitdaEstimatesInfo)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "ebitda_avg"' 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 "ebitda_high"' 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 "ebitda_low"' 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 "number_analysts"' 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 "period"' 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
|
+
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::EbitdaEstimates
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe FinnhubRuby::EbitdaEstimates do
|
21
|
+
let(:instance) { FinnhubRuby::EbitdaEstimates.new }
|
22
|
+
|
23
|
+
describe 'test an instance of EbitdaEstimates' do
|
24
|
+
it 'should create an instance of EbitdaEstimates' do
|
25
|
+
expect(instance).to be_instance_of(FinnhubRuby::EbitdaEstimates)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "data"' 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 "freq"' 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 "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,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::UsptoPatentResult
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe FinnhubRuby::UsptoPatentResult do
|
21
|
+
let(:instance) { FinnhubRuby::UsptoPatentResult.new }
|
22
|
+
|
23
|
+
describe 'test an instance of UsptoPatentResult' do
|
24
|
+
it 'should create an instance of UsptoPatentResult' do
|
25
|
+
expect(instance).to be_instance_of(FinnhubRuby::UsptoPatentResult)
|
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,82 @@
|
|
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::UsptoPatent
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe FinnhubRuby::UsptoPatent do
|
21
|
+
let(:instance) { FinnhubRuby::UsptoPatent.new }
|
22
|
+
|
23
|
+
describe 'test an instance of UsptoPatent' do
|
24
|
+
it 'should create an instance of UsptoPatent' do
|
25
|
+
expect(instance).to be_instance_of(FinnhubRuby::UsptoPatent)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "application_number"' 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 "company_filing_name"' 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 "filing_date"' 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 "description"' 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 "filing_status"' 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 "patent_number"' 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
|
+
describe 'test attribute "publication_date"' 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
|
+
|
70
|
+
describe 'test attribute "patent_type"' 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
|
+
|
76
|
+
describe 'test attribute "url"' do
|
77
|
+
it 'should work' do
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
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.
|
4
|
+
version: 1.1.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -66,6 +66,8 @@ files:
|
|
66
66
|
- docs/BreakdownItem.md
|
67
67
|
- docs/Company.md
|
68
68
|
- docs/CompanyESG.md
|
69
|
+
- docs/CompanyEarningsQualityScore.md
|
70
|
+
- docs/CompanyEarningsQualityScoreData.md
|
69
71
|
- docs/CompanyExecutive.md
|
70
72
|
- docs/CompanyNews.md
|
71
73
|
- docs/CompanyNewsStatistics.md
|
@@ -74,6 +76,7 @@ files:
|
|
74
76
|
- docs/CountryMetadata.md
|
75
77
|
- docs/CovidInfo.md
|
76
78
|
- docs/CryptoCandles.md
|
79
|
+
- docs/CryptoProfile.md
|
77
80
|
- docs/CryptoSymbol.md
|
78
81
|
- docs/DefaultApi.md
|
79
82
|
- docs/Development.md
|
@@ -96,6 +99,10 @@ files:
|
|
96
99
|
- docs/EarningsCallTranscriptsList.md
|
97
100
|
- docs/EarningsEstimates.md
|
98
101
|
- docs/EarningsEstimatesInfo.md
|
102
|
+
- docs/EbitEstimates.md
|
103
|
+
- docs/EbitEstimatesInfo.md
|
104
|
+
- docs/EbitdaEstimates.md
|
105
|
+
- docs/EbitdaEstimatesInfo.md
|
99
106
|
- docs/EconomicCalendar.md
|
100
107
|
- docs/EconomicCode.md
|
101
108
|
- docs/EconomicData.md
|
@@ -168,7 +175,13 @@ files:
|
|
168
175
|
- docs/Trend.md
|
169
176
|
- docs/TwitterSentimentContent.md
|
170
177
|
- docs/UpgradeDowngrade.md
|
178
|
+
- docs/UsptoPatent.md
|
179
|
+
- docs/UsptoPatentResult.md
|
180
|
+
- finnhub_ruby-1.1.10.gem
|
181
|
+
- finnhub_ruby-1.1.11.gem
|
171
182
|
- finnhub_ruby-1.1.7.gem
|
183
|
+
- finnhub_ruby-1.1.8.gem
|
184
|
+
- finnhub_ruby-1.1.9.gem
|
172
185
|
- finnhub_ruby.gemspec
|
173
186
|
- git_push.sh
|
174
187
|
- lib/finnhub_ruby.rb
|
@@ -180,6 +193,8 @@ files:
|
|
180
193
|
- lib/finnhub_ruby/models/basic_financials.rb
|
181
194
|
- lib/finnhub_ruby/models/breakdown_item.rb
|
182
195
|
- lib/finnhub_ruby/models/company.rb
|
196
|
+
- lib/finnhub_ruby/models/company_earnings_quality_score.rb
|
197
|
+
- lib/finnhub_ruby/models/company_earnings_quality_score_data.rb
|
183
198
|
- lib/finnhub_ruby/models/company_esg.rb
|
184
199
|
- lib/finnhub_ruby/models/company_executive.rb
|
185
200
|
- lib/finnhub_ruby/models/company_news.rb
|
@@ -189,6 +204,7 @@ files:
|
|
189
204
|
- lib/finnhub_ruby/models/country_metadata.rb
|
190
205
|
- lib/finnhub_ruby/models/covid_info.rb
|
191
206
|
- lib/finnhub_ruby/models/crypto_candles.rb
|
207
|
+
- lib/finnhub_ruby/models/crypto_profile.rb
|
192
208
|
- lib/finnhub_ruby/models/crypto_symbol.rb
|
193
209
|
- lib/finnhub_ruby/models/development.rb
|
194
210
|
- lib/finnhub_ruby/models/dividends.rb
|
@@ -203,6 +219,10 @@ files:
|
|
203
219
|
- lib/finnhub_ruby/models/earnings_call_transcripts_list.rb
|
204
220
|
- lib/finnhub_ruby/models/earnings_estimates.rb
|
205
221
|
- lib/finnhub_ruby/models/earnings_estimates_info.rb
|
222
|
+
- lib/finnhub_ruby/models/ebit_estimates.rb
|
223
|
+
- lib/finnhub_ruby/models/ebit_estimates_info.rb
|
224
|
+
- lib/finnhub_ruby/models/ebitda_estimates.rb
|
225
|
+
- lib/finnhub_ruby/models/ebitda_estimates_info.rb
|
206
226
|
- lib/finnhub_ruby/models/economic_calendar.rb
|
207
227
|
- lib/finnhub_ruby/models/economic_code.rb
|
208
228
|
- lib/finnhub_ruby/models/economic_data.rb
|
@@ -297,6 +317,8 @@ files:
|
|
297
317
|
- lib/finnhub_ruby/models/trend.rb
|
298
318
|
- lib/finnhub_ruby/models/twitter_sentiment_content.rb
|
299
319
|
- lib/finnhub_ruby/models/upgrade_downgrade.rb
|
320
|
+
- lib/finnhub_ruby/models/uspto_patent.rb
|
321
|
+
- lib/finnhub_ruby/models/uspto_patent_result.rb
|
300
322
|
- lib/finnhub_ruby/version.rb
|
301
323
|
- release.sh
|
302
324
|
- spec/api/default_api_spec.rb
|
@@ -305,6 +327,8 @@ files:
|
|
305
327
|
- spec/models/aggregate_indicators_spec.rb
|
306
328
|
- spec/models/basic_financials_spec.rb
|
307
329
|
- spec/models/breakdown_item_spec.rb
|
330
|
+
- spec/models/company_earnings_quality_score_data_spec.rb
|
331
|
+
- spec/models/company_earnings_quality_score_spec.rb
|
308
332
|
- spec/models/company_esg_spec.rb
|
309
333
|
- spec/models/company_executive_spec.rb
|
310
334
|
- spec/models/company_news_spec.rb
|
@@ -315,6 +339,7 @@ files:
|
|
315
339
|
- spec/models/country_metadata_spec.rb
|
316
340
|
- spec/models/covid_info_spec.rb
|
317
341
|
- spec/models/crypto_candles_spec.rb
|
342
|
+
- spec/models/crypto_profile_spec.rb
|
318
343
|
- spec/models/crypto_symbol_spec.rb
|
319
344
|
- spec/models/development_spec.rb
|
320
345
|
- spec/models/dividends2_info_spec.rb
|
@@ -328,6 +353,10 @@ files:
|
|
328
353
|
- spec/models/earnings_call_transcripts_spec.rb
|
329
354
|
- spec/models/earnings_estimates_info_spec.rb
|
330
355
|
- spec/models/earnings_estimates_spec.rb
|
356
|
+
- spec/models/ebit_estimates_info_spec.rb
|
357
|
+
- spec/models/ebit_estimates_spec.rb
|
358
|
+
- spec/models/ebitda_estimates_info_spec.rb
|
359
|
+
- spec/models/ebitda_estimates_spec.rb
|
331
360
|
- spec/models/economic_calendar_spec.rb
|
332
361
|
- spec/models/economic_code_spec.rb
|
333
362
|
- spec/models/economic_data_info_spec.rb
|
@@ -408,6 +437,8 @@ files:
|
|
408
437
|
- spec/models/trend_spec.rb
|
409
438
|
- spec/models/twitter_sentiment_content_spec.rb
|
410
439
|
- spec/models/upgrade_downgrade_spec.rb
|
440
|
+
- spec/models/uspto_patent_result_spec.rb
|
441
|
+
- spec/models/uspto_patent_spec.rb
|
411
442
|
- spec/spec_helper.rb
|
412
443
|
homepage: https://openapi-generator.tech
|
413
444
|
licenses:
|
@@ -446,6 +477,7 @@ test_files:
|
|
446
477
|
- spec/models/revenue_estimates_spec.rb
|
447
478
|
- spec/models/etf_holdings_data_spec.rb
|
448
479
|
- spec/models/stock_transcripts_spec.rb
|
480
|
+
- spec/models/ebit_estimates_info_spec.rb
|
449
481
|
- spec/models/development_spec.rb
|
450
482
|
- spec/models/social_sentiment_spec.rb
|
451
483
|
- spec/models/company_news_statistics_spec.rb
|
@@ -471,7 +503,10 @@ test_files:
|
|
471
503
|
- spec/models/revenue_breakdown_spec.rb
|
472
504
|
- spec/models/company_spec.rb
|
473
505
|
- spec/models/investment_theme_portfolio_spec.rb
|
506
|
+
- spec/models/ebit_estimates_spec.rb
|
507
|
+
- spec/models/crypto_profile_spec.rb
|
474
508
|
- spec/models/etf_country_exposure_data_spec.rb
|
509
|
+
- spec/models/company_earnings_quality_score_data_spec.rb
|
475
510
|
- spec/models/earnings_estimates_info_spec.rb
|
476
511
|
- spec/models/forex_symbol_spec.rb
|
477
512
|
- spec/models/key_customers_suppliers_spec.rb
|
@@ -500,6 +535,7 @@ test_files:
|
|
500
535
|
- spec/models/etfs_profile_spec.rb
|
501
536
|
- spec/models/financials_as_reported_spec.rb
|
502
537
|
- spec/models/mutual_fund_holdings_data_spec.rb
|
538
|
+
- spec/models/ebitda_estimates_spec.rb
|
503
539
|
- spec/models/earnings_calendar_spec.rb
|
504
540
|
- spec/models/symbol_lookup_spec.rb
|
505
541
|
- spec/models/press_release_spec.rb
|
@@ -530,13 +566,17 @@ test_files:
|
|
530
566
|
- spec/models/economic_data_spec.rb
|
531
567
|
- spec/models/crypto_symbol_spec.rb
|
532
568
|
- spec/models/mutual_fund_profile_spec.rb
|
569
|
+
- spec/models/ebitda_estimates_info_spec.rb
|
533
570
|
- spec/models/investment_themes_spec.rb
|
534
571
|
- spec/models/financial_statements_spec.rb
|
535
572
|
- spec/models/ipo_calendar_spec.rb
|
573
|
+
- spec/models/company_earnings_quality_score_spec.rb
|
536
574
|
- spec/models/dividends_spec.rb
|
537
575
|
- spec/models/transcript_content_spec.rb
|
538
576
|
- spec/models/international_filing_spec.rb
|
577
|
+
- spec/models/uspto_patent_result_spec.rb
|
539
578
|
- spec/models/reddit_sentiment_content_spec.rb
|
579
|
+
- spec/models/uspto_patent_spec.rb
|
540
580
|
- spec/models/fund_ownership_spec.rb
|
541
581
|
- spec/models/sec_sentiment_analysis_spec.rb
|
542
582
|
- spec/models/twitter_sentiment_content_spec.rb
|