spec/api/filing_api_spec.rb in intrinio-sdk-3.0.0 vs spec/api/filing_api_spec.rb in intrinio-sdk-3.1.0
- old
+ new
@@ -1,11 +1,11 @@
=begin
#Intrinio API
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
-OpenAPI spec version: 2.6.2
+OpenAPI spec version: 2.7.0
Generated by: https://github.com/swagger-api/swagger-codegen.git
Swagger Codegen version: 2.3.0-SNAPSHOT
=end
@@ -35,11 +35,11 @@
# unit tests for get_all_filings
# All Filings
# Returns all Filings. Returns Filings matching parameters when supplied.
# @param company Filings for the given `company` identifier (ticker, CIK, LEI, Intrinio ID)
# @param [Hash] opts the optional parameters
- # @option opts [String] :report_type Filter by report type. Separate values with commas to return multiple report types.
+ # @option opts [String] :report_type Filter by report type. Separate values with commas to return multiple The filing <a href=\"/documentation/sec_filing_report_types\" target=\"_blank\">report types</a>.
# @option opts [Date] :start_date Filed on or after the given date
# @option opts [Date] :end_date Filed before or after the given date
# @option opts [Integer] :page_size The number of results to return
# @option opts [String] :next_page Gets the next page of data from a previous API call
# @return [ApiResponseFilings]
@@ -52,11 +52,11 @@
# unit tests for get_all_notes
# All Filing Notes
# Return all Notes from all Filings, most-recent first. Returns notes matching parameters when supplied.
# @param [Hash] opts the optional parameters
# @option opts [String] :company A Company identifier (Ticker, CIK, LEI, Intrinio ID)
- # @option opts [String] :report_type Notes contained in filings that match the given report type
+ # @option opts [String] :report_type Notes contained in filings that match the given <a href=\"/documentation/sec_filing_report_types\" target=\"_blank\">report type</a>
# @option opts [Date] :filing_start_date Limit search to filings on or after this date
# @option opts [Date] :filing_end_date Limit search to filings on or before this date
# @option opts [Date] :period_ended_start_date Limit search to filings with a period end date on or after this date
# @option opts [Date] :period_ended_end_date Limit search to filings with a period end date on or before this date
# @option opts [Integer] :page_size The number of results to return
@@ -73,9 +73,28 @@
# Returns the Filing with the given `identifier`
# @param id The Intrinio ID of the Filing
# @param [Hash] opts the optional parameters
# @return [Filing]
describe 'get_filing_by_id test' do
+ it "should work" do
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
+ end
+ end
+
+ # unit tests for get_filing_fundamentals
+ # All Fundamentals by Filing
+ # Returns all Fundamentals for the SEC Filing with the given `identifier`. Returns Fundamentals matching parameters when supplied.
+ # @param identifier A Filing identifier
+ # @param [Hash] opts the optional parameters
+ # @option opts [String] :statement_code Filters fundamentals by statement code
+ # @option opts [String] :type Filters fundamentals by type
+ # @option opts [Integer] :fiscal_year Filters fundamentals by fiscal year
+ # @option opts [String] :fiscal_period Filters fundamentals by fiscal period
+ # @option opts [Date] :start_date Returns fundamentals on or after the given date
+ # @option opts [Date] :end_date Returns fundamentals on or before the given date
+ # @option opts [String] :next_page Gets the next page of data from a previous API call
+ # @return [ApiResponseFilingFundamentals]
+ describe 'get_filing_fundamentals test' do
it "should work" do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
end
end