snaptrade 1.10.0 → 1.11.0

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: e9cfe431fd52adac8613ffb6b6c0ac9f099b875aa7995c44dc45f4e64eac2ca8
4
- data.tar.gz: 2b42cdfe6a0a081d859353101de245045724b0e6f6afdd3108643f608c2fbbd8
3
+ metadata.gz: cedcc631a644ed26cc5bec004b166d8619bc18c35af5aa8d7cd847cc0a29bf60
4
+ data.tar.gz: c3747bef1d74929e1ca263aa6e935542019e4dea159541813a7e6b312f3c4d0b
5
5
  SHA512:
6
- metadata.gz: 65717c6345160fbfd306fc7ab6c9e4a00fec8ee1185dbeb3a26da5556975a05e9bb0d6efbd88d74e898ef0a1742711e50161bc80d2afb703f1fe1d28465706f2
7
- data.tar.gz: 10b451314143cbe8e22ae4164675fe88afa4ee83c5119469627f366f7ac72a7fd8afe60ebb96bea329fc655104dbd15e7b3c28f3fa73aea083191bbab0733333
6
+ metadata.gz: 6e2ac1f322b9b0b2296711cbea419ebe4b4e61e34e884a623a71c50d3a903761a52bd8c666e09100725bb4bb59768d358edfabd12f979130dc0a5947edf09bbc
7
+ data.tar.gz: 709f8c2e95ea81a0d50c097ed9aa2f72fd61ccba913ffb0c7d3f850fc087d46314b678037094602a4808e29f10fa244a8a2c5d2fa69987959b2f6575a6e573ce
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- snaptrade (1.10.0)
4
+ snaptrade (1.11.0)
5
5
  faraday (>= 1.0.1, < 3.0)
6
6
  faraday-multipart (~> 1.0, >= 1.0.4)
7
7
 
data/README.md CHANGED
@@ -9,7 +9,7 @@ For more information, please visit [https://snaptrade.com/](https://snaptrade.co
9
9
  Add to Gemfile:
10
10
 
11
11
  ```ruby
12
- gem 'snaptrade', '~> 1.10.0'
12
+ gem 'snaptrade', '~> 1.11.0'
13
13
  ```
14
14
 
15
15
  ## Getting Started
data/docs/OptionsApi.md CHANGED
@@ -287,7 +287,7 @@ begin
287
287
  )
288
288
  p status_code # => 2xx
289
289
  p headers # => { ... }
290
- p data # => Array<OptionsHoldings>
290
+ p data # => Array<OptionsPosition>
291
291
  rescue SnapTrade::ApiError => e
292
292
  puts "Exception when calling SnapTrade::Options.list_option_holdings: #{e}"
293
293
  end
@@ -303,7 +303,7 @@ end
303
303
 
304
304
  ### Return type
305
305
 
306
- [**Array&lt;OptionsHoldings&gt;**](OptionsHoldings.md)
306
+ [**Array&lt;OptionsPosition&gt;**](OptionsPosition.md)
307
307
 
308
308
  ## place_option_strategy
309
309
 
@@ -381,7 +381,7 @@ module SnapTrade
381
381
  # @param user_secret [String]
382
382
  # @param account_id [String] The ID of the account get positions.
383
383
  # @param [Hash] opts the optional parameters
384
- # @return [Array<OptionsHoldings>]
384
+ # @return [Array<OptionsPosition>]
385
385
  def list_option_holdings_impl(user_id, user_secret, account_id, opts = {})
386
386
  data, _status_code, _headers = list_option_holdings_with_http_info(user_id, user_secret, account_id, opts)
387
387
  data
@@ -392,7 +392,7 @@ module SnapTrade
392
392
  # @param user_secret [String]
393
393
  # @param account_id [String] The ID of the account get positions.
394
394
  # @param [Hash] opts the optional parameters
395
- # @return [Array<(Array<OptionsHoldings>, Integer, Hash)>] Array<OptionsHoldings> data, response status code and response headers
395
+ # @return [Array<(Array<OptionsPosition>, Integer, Hash)>] Array<OptionsPosition> data, response status code and response headers
396
396
  def list_option_holdings_with_http_info_impl(user_id, user_secret, account_id, opts = {})
397
397
  if @api_client.config.debugging
398
398
  @api_client.config.logger.debug 'Calling API: OptionsApi.list_option_holdings ...'
@@ -429,7 +429,7 @@ module SnapTrade
429
429
  post_body = opts[:debug_body]
430
430
 
431
431
  # return_type
432
- return_type = opts[:debug_return_type] || 'Array<OptionsHoldings>'
432
+ return_type = opts[:debug_return_type] || 'Array<OptionsPosition>'
433
433
 
434
434
  # auth_names
435
435
  auth_names = opts[:debug_auth_names] || ['PartnerClientId', 'PartnerSignature', 'PartnerTimestamp']
@@ -9,5 +9,5 @@ Contact: api@snaptrade.com
9
9
  =end
10
10
 
11
11
  module SnapTrade
12
- VERSION = '1.10.0'
12
+ VERSION = '1.11.0'
13
13
  end
@@ -76,7 +76,7 @@ describe 'OptionsApi' do
76
76
  # @param user_secret
77
77
  # @param account_id The ID of the account get positions.
78
78
  # @param [Hash] opts the optional parameters
79
- # @return [Array<OptionsHoldings>]
79
+ # @return [Array<OptionsPosition>]
80
80
  describe 'list_option_holdings test' do
81
81
  it 'should work' do
82
82
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: snaptrade
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - SnapTrade
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-31 00:00:00.000000000 Z
11
+ date: 2023-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday