intrinio-sdk 6.26.4 → 6.26.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 49e46fa91eafc6aab7c89a7da2247ebc9f2af7bb39481e7261e46cb7ea147f6c
4
- data.tar.gz: fd6067f3226c43be43f7eb9c9c19256dd81515081d1b6d82f05c6209d7d58894
3
+ metadata.gz: 6ae5ccd6079f52cda52bd577529a844df7f999b7d4cd3f027c88b5606ba637df
4
+ data.tar.gz: d2011d83eeee77a6241aff2cd26ab992a5121e655dc9cfe5073a7f73445bfb5b
5
5
  SHA512:
6
- metadata.gz: 210569951752467b9469d4617d19db8bbb1ee57da5bbf57e1178af112ce8714638f612978125fc64ac1b26a5c4fc80d32d67371f21d3d7a03022b5ae7f631301
7
- data.tar.gz: 76f7f518aa009c6012be2975e56656e793572045361db83cfb12ecc148d30033d980c8e1741b07a57fd18ad8a3d2f7b37f077089e65635e539349df14cdc26f4
6
+ metadata.gz: 4108d4cc6b2c11993dbae6c2a83fbafe2352b7de449f36ee54897b0f40f6aae8d6324e5c8ba6580154c7d75df83e88df5da0f13c572d1296afea992ca6e5737f
7
+ data.tar.gz: 71ec1d2e892c0b1b33281db7716c1c8029efd7c2a3faa4624fb776144cd515d271489c86cc3fb10ed29592a140035cecde01347ae93622a33c04b8124bf431db
data/README.md CHANGED
@@ -9,7 +9,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a
9
9
  This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
10
10
 
11
11
  - API version: 2.48.1
12
- - Package version: 6.26.4
12
+ - Package version: 6.26.5
13
13
 
14
14
 
15
15
  ## Installation
data/docs/OptionsApi.md CHANGED
@@ -1418,10 +1418,10 @@ body = {
1418
1418
 
1419
1419
  opts = {
1420
1420
  source: nil,
1421
- show_extended_price: nil,
1421
+ show_stats: nil,
1422
1422
  stock_price_source: nil,
1423
1423
  model: nil,
1424
- show_extended_price2: nil
1424
+ show_extended_price: nil
1425
1425
  }
1426
1426
 
1427
1427
  result = options_api.get_options_prices_batch_realtime(body, opts)
@@ -1441,10 +1441,10 @@ Name | Type | Description | Notes
1441
1441
  ------------- | ------------- | ------------- | -------------
1442
1442
  **body** | [**OptionContractsList**](OptionContractsList.md)| The contract symbols for which to return options prices for. |  
1443
1443
  **source** | String| Realtime or 15-minute delayed contracts. | [optional]  
1444
- **show_extended_price** | BOOLEAN| Whether to include open close high low type fields. | [optional]  
1444
+ **show_stats** | BOOLEAN| Whether to include Greek calculations or not. | [optional]  
1445
1445
  **stock_price_source** | String| Source for underlying price for calculating Greeks. | [optional]  
1446
1446
  **model** | String| Model for calculating Greek values. Default is black_scholes. | [optional]  
1447
- **show_extended_price2** | BOOLEAN| Whether to include open close high low type fields. | [optional]  
1447
+ **show_extended_price** | BOOLEAN| Whether to include open close high low type fields. | [optional]  
1448
1448
 
1449
1449
  [//]: # (END_PARAMETERS)
1450
1450
 
@@ -1102,10 +1102,10 @@ module Intrinio
1102
1102
  # @param body The contract symbols for which to return options prices for.
1103
1103
  # @param [Hash] opts the optional parameters
1104
1104
  # @option opts [String] :source Realtime or 15-minute delayed contracts.
1105
- # @option opts [BOOLEAN] :show_extended_price Whether to include open close high low type fields.
1105
+ # @option opts [BOOLEAN] :show_stats Whether to include Greek calculations or not.
1106
1106
  # @option opts [String] :stock_price_source Source for underlying price for calculating Greeks.
1107
1107
  # @option opts [String] :model Model for calculating Greek values. Default is black_scholes.
1108
- # @option opts [BOOLEAN] :show_extended_price2 Whether to include open close high low type fields.
1108
+ # @option opts [BOOLEAN] :show_extended_price Whether to include open close high low type fields.
1109
1109
  # @return [ApiResponseOptionsPricesBatchRealtime]
1110
1110
  def get_options_prices_batch_realtime(body, opts = {})
1111
1111
  data, _status_code, _headers = get_options_prices_batch_realtime_with_http_info(body, opts)
@@ -1117,10 +1117,10 @@ module Intrinio
1117
1117
  # @param body The contract symbols for which to return options prices for.
1118
1118
  # @param [Hash] opts the optional parameters
1119
1119
  # @option opts [String] :source Realtime or 15-minute delayed contracts.
1120
- # @option opts [BOOLEAN] :show_extended_price Whether to include open close high low type fields.
1120
+ # @option opts [BOOLEAN] :show_stats Whether to include Greek calculations or not.
1121
1121
  # @option opts [String] :stock_price_source Source for underlying price for calculating Greeks.
1122
1122
  # @option opts [String] :model Model for calculating Greek values. Default is black_scholes.
1123
- # @option opts [BOOLEAN] :show_extended_price2 Whether to include open close high low type fields.
1123
+ # @option opts [BOOLEAN] :show_extended_price Whether to include open close high low type fields.
1124
1124
  # @return [Array<(ApiResponseOptionsPricesBatchRealtime, Fixnum, Hash)>] ApiResponseOptionsPricesBatchRealtime data, response status code and response headers
1125
1125
  def get_options_prices_batch_realtime_with_http_info(body, opts = {})
1126
1126
  if @api_client.config.debugging
@@ -1145,10 +1145,10 @@ module Intrinio
1145
1145
  # query parameters
1146
1146
  query_params = {}
1147
1147
  query_params[:'source'] = opts[:'source'] if !opts[:'source'].nil?
1148
- query_params[:'show_extended_price'] = opts[:'show_extended_price'] if !opts[:'show_extended_price'].nil?
1148
+ query_params[:'show_stats'] = opts[:'show_stats'] if !opts[:'show_stats'].nil?
1149
1149
  query_params[:'stock_price_source'] = opts[:'stock_price_source'] if !opts[:'stock_price_source'].nil?
1150
1150
  query_params[:'model'] = opts[:'model'] if !opts[:'model'].nil?
1151
- query_params[:'show_extended_price'] = opts[:'show_extended_price2'] if !opts[:'show_extended_price2'].nil?
1151
+ query_params[:'show_extended_price'] = opts[:'show_extended_price'] if !opts[:'show_extended_price'].nil?
1152
1152
 
1153
1153
  # header parameters
1154
1154
  header_params = {}
@@ -11,5 +11,5 @@ Swagger Codegen version: unset
11
11
  =end
12
12
 
13
13
  module Intrinio
14
- VERSION = "6.26.4"
14
+ VERSION = "6.26.5"
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: intrinio-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.26.4
4
+ version: 6.26.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Intrinio
@@ -523,7 +523,6 @@ files:
523
523
  - docs/ZacksSalesSurpriseSummary.md
524
524
  - docs/ZacksTargetPriceConsensus.md
525
525
  - git_push.sh
526
- - intrinio-sdk-6.26.3.gem
527
526
  - intrinio-sdk.gemspec
528
527
  - lib/intrinio-sdk.rb
529
528
  - lib/intrinio-sdk/api/bulk_downloads_api.rb
Binary file