snaptrade 2.0.43 → 2.0.45

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 23a2e3fed05b3c17d3f7ab8dac5541766ba2a112c6d1f14ac5e4f0f9b2ed5c29
4
- data.tar.gz: 609e612c05e085c990ef3bfe195d62eb9849111a409c85e0b8c58f50760c9947
3
+ metadata.gz: fd7125790c84e8e44aba10d60913ff137e061e6db99bf7e530c4dc8c25467d37
4
+ data.tar.gz: 3a8080c128eaa83b08cdc9c624ff1b526699adeb5751bb14b6dabcf23b44a506
5
5
  SHA512:
6
- metadata.gz: 7badc683104a2fe4bc32db98ae561c2865433d4fc861d3c0b73420f850757a4cecdb5fb4be78f7efdbe1bcea1839437e9c05e3f9446eeef6d9dde879ed5ab7af
7
- data.tar.gz: 3277c3fc4f7367d6f55c699dbd27bc7abfc0b71ff67a4af619eee0ffbef9801d5805c04af1aa252d8cda41f89199b5ca7bd257eab0ed18d3ec3df5be081db038
6
+ metadata.gz: aea0aed32390f082fe6bf769cde8ff33715b354f750fdad75014226969e31bc60b8a686f28c64a8755c782234eba362755ee11336421e26cf47f8384751ff100
7
+ data.tar.gz: '028b9ccca43fbe6d7391dd24283a585ba6e1232f18a89fec3f5533716e100dacf29f18cecf73360125bfc5cfb832afa362910d433f77bb7f671599473ae50961'
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- snaptrade (2.0.43)
4
+ snaptrade (2.0.45)
5
5
  faraday (>= 1.0.1, < 3.0)
6
6
  faraday-multipart (~> 1.0, >= 1.0.4)
7
7
 
@@ -51,7 +51,7 @@ GEM
51
51
  rspec-mocks (~> 3.13.0)
52
52
  rspec-core (3.13.1)
53
53
  rspec-support (~> 3.13.0)
54
- rspec-expectations (3.13.2)
54
+ rspec-expectations (3.13.3)
55
55
  diff-lcs (>= 1.2.0, < 2.0)
56
56
  rspec-support (~> 3.13.0)
57
57
  rspec-mocks (3.13.1)
@@ -71,7 +71,7 @@ GEM
71
71
  parser (>= 3.3.1.0)
72
72
  ruby-progressbar (1.13.0)
73
73
  ruby2_keywords (0.0.5)
74
- unicode-display_width (2.5.0)
74
+ unicode-display_width (2.6.0)
75
75
 
76
76
  PLATFORMS
77
77
  x86_64-linux
data/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  Connect brokerage accounts to your app for live positions and trading
8
8
 
9
- [![npm](https://img.shields.io/badge/gem-v2.0.43-blue)](https://rubygems.org/gems/snaptrade/versions/2.0.43)
9
+ [![npm](https://img.shields.io/badge/gem-v2.0.45-blue)](https://rubygems.org/gems/snaptrade/versions/2.0.45)
10
10
  [![More Info](https://img.shields.io/badge/More%20Info-Click%20Here-orange)](https://snaptrade.com/)
11
11
 
12
12
  </div>
@@ -70,7 +70,7 @@ Connect brokerage accounts to your app for live positions and trading
70
70
  Add to Gemfile:
71
71
 
72
72
  ```ruby
73
- gem 'snaptrade', '~> 2.0.43'
73
+ gem 'snaptrade', '~> 2.0.45'
74
74
  ```
75
75
 
76
76
  ## Getting Started<a id="getting-started"></a>
@@ -1697,8 +1697,11 @@ parameter takes precedence over the `accounts` parameter.
1697
1697
  ##### type: `String`<a id="type-string"></a>
1698
1698
  Optional comma separated list of transaction types to filter by. SnapTrade does
1699
1699
  a best effort to categorize brokerage transaction types into a common set of
1700
- values. Here are some of the most popular values: - BUY - SELL - DIVIDEND -
1701
- CONTRIBUTION - WITHDRAWAL - REI - INTEREST - FEE
1700
+ values. Here are some of the most popular values: - `BUY` - Asset bought. -
1701
+ `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash
1702
+ contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment.
1703
+ - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from
1704
+ the account.
1702
1705
 
1703
1706
  #### 🔄 Return<a id="🔄-return"></a>
1704
1707
 
@@ -31,7 +31,7 @@ module SnapTrade
31
31
  # @param end_date [Date] The end date (inclusive) of the transaction history to retrieve. If not provided, the default is the last transaction known to SnapTrade based on `trade_date`.
32
32
  # @param accounts [String] Optional comma separated list of SnapTrade Account IDs used to filter the request to specific accounts. If not provided, the default is all known brokerage accounts for the user. The `brokerageAuthorizations` parameter takes precedence over this parameter.
33
33
  # @param brokerage_authorizations [String] Optional comma separated list of SnapTrade Connection (Brokerage Authorization) IDs used to filter the request to only accounts that belong to those connections. If not provided, the default is all connections for the user. This parameter takes precedence over the `accounts` parameter.
34
- # @param type [String] Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - BUY - SELL - DIVIDEND - CONTRIBUTION - WITHDRAWAL - REI - INTEREST - FEE
34
+ # @param type [String] Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - `BUY` - Asset bought. - `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment. - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from the account.
35
35
  # @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
36
36
  def get_activities(user_id:, user_secret:, start_date: SENTINEL, end_date: SENTINEL, accounts: SENTINEL, brokerage_authorizations: SENTINEL, type: SENTINEL, extra: {})
37
37
  extra[:start_date] = start_date if start_date != SENTINEL
@@ -57,7 +57,7 @@ module SnapTrade
57
57
  # @param end_date [Date] The end date (inclusive) of the transaction history to retrieve. If not provided, the default is the last transaction known to SnapTrade based on `trade_date`.
58
58
  # @param accounts [String] Optional comma separated list of SnapTrade Account IDs used to filter the request to specific accounts. If not provided, the default is all known brokerage accounts for the user. The `brokerageAuthorizations` parameter takes precedence over this parameter.
59
59
  # @param brokerage_authorizations [String] Optional comma separated list of SnapTrade Connection (Brokerage Authorization) IDs used to filter the request to only accounts that belong to those connections. If not provided, the default is all connections for the user. This parameter takes precedence over the `accounts` parameter.
60
- # @param type [String] Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - BUY - SELL - DIVIDEND - CONTRIBUTION - WITHDRAWAL - REI - INTEREST - FEE
60
+ # @param type [String] Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - `BUY` - Asset bought. - `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment. - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from the account.
61
61
  # @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
62
62
  def get_activities_with_http_info(user_id:, user_secret:, start_date: SENTINEL, end_date: SENTINEL, accounts: SENTINEL, brokerage_authorizations: SENTINEL, type: SENTINEL, extra: {})
63
63
  extra[:start_date] = start_date if start_date != SENTINEL
@@ -77,7 +77,7 @@ module SnapTrade
77
77
  # @option opts [Date] :end_date The end date (inclusive) of the transaction history to retrieve. If not provided, the default is the last transaction known to SnapTrade based on `trade_date`.
78
78
  # @option opts [String] :accounts Optional comma separated list of SnapTrade Account IDs used to filter the request to specific accounts. If not provided, the default is all known brokerage accounts for the user. The `brokerageAuthorizations` parameter takes precedence over this parameter.
79
79
  # @option opts [String] :brokerage_authorizations Optional comma separated list of SnapTrade Connection (Brokerage Authorization) IDs used to filter the request to only accounts that belong to those connections. If not provided, the default is all connections for the user. This parameter takes precedence over the `accounts` parameter.
80
- # @option opts [String] :type Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - BUY - SELL - DIVIDEND - CONTRIBUTION - WITHDRAWAL - REI - INTEREST - FEE
80
+ # @option opts [String] :type Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - `BUY` - Asset bought. - `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment. - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from the account.
81
81
  # @return [Array<UniversalActivity>]
82
82
  private def get_activities_impl(user_id, user_secret, opts = {})
83
83
  data, _status_code, _headers = get_activities_with_http_info(user_id, user_secret, opts)
@@ -93,7 +93,7 @@ module SnapTrade
93
93
  # @option opts [Date] :end_date The end date (inclusive) of the transaction history to retrieve. If not provided, the default is the last transaction known to SnapTrade based on `trade_date`.
94
94
  # @option opts [String] :accounts Optional comma separated list of SnapTrade Account IDs used to filter the request to specific accounts. If not provided, the default is all known brokerage accounts for the user. The `brokerageAuthorizations` parameter takes precedence over this parameter.
95
95
  # @option opts [String] :brokerage_authorizations Optional comma separated list of SnapTrade Connection (Brokerage Authorization) IDs used to filter the request to only accounts that belong to those connections. If not provided, the default is all connections for the user. This parameter takes precedence over the `accounts` parameter.
96
- # @option opts [String] :type Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - BUY - SELL - DIVIDEND - CONTRIBUTION - WITHDRAWAL - REI - INTEREST - FEE
96
+ # @option opts [String] :type Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - `BUY` - Asset bought. - `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment. - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from the account.
97
97
  # @return [Array<(Array<UniversalActivity>, Integer, Hash)>] Array<UniversalActivity> data, response status code and response headers
98
98
  private def get_activities_with_http_info_impl(user_id, user_secret, opts = {})
99
99
  if @api_client.config.debugging
@@ -33,7 +33,7 @@ module SnapTrade
33
33
 
34
34
  attr_accessor :currency
35
35
 
36
- # A string representing the type of transaction. SnapTrade does a best effort to categorize the brokerage transaction types into a common set of values. Here are some of the most popular values: - BUY - SELL - DIVIDEND - CONTRIBUTION - WITHDRAWAL - REI - INTEREST - FEE
36
+ # A string representing the type of transaction. SnapTrade does a best effort to categorize the brokerage transaction types into a common set of values. Here are some of the most popular values: - `BUY` - Asset bought. - `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment. - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from the account.
37
37
  attr_accessor :type
38
38
 
39
39
  # If an option `BUY` or `SELL` transaction, this further specifies the type of action. The possible values are: - BUY_TO_OPEN - BUY_TO_CLOSE - SELL_TO_OPEN - SELL_TO_CLOSE
@@ -8,5 +8,5 @@ Contact: api@snaptrade.com
8
8
  =end
9
9
 
10
10
  module SnapTrade
11
- VERSION = '2.0.43'
11
+ VERSION = '2.0.45'
12
12
  end
@@ -37,7 +37,7 @@ describe 'TransactionsAndReportingApi' do
37
37
  # @option opts [Date] :end_date The end date (inclusive) of the transaction history to retrieve. If not provided, the default is the last transaction known to SnapTrade based on &#x60;trade_date&#x60;.
38
38
  # @option opts [String] :accounts Optional comma separated list of SnapTrade Account IDs used to filter the request to specific accounts. If not provided, the default is all known brokerage accounts for the user. The &#x60;brokerageAuthorizations&#x60; parameter takes precedence over this parameter.
39
39
  # @option opts [String] :brokerage_authorizations Optional comma separated list of SnapTrade Connection (Brokerage Authorization) IDs used to filter the request to only accounts that belong to those connections. If not provided, the default is all connections for the user. This parameter takes precedence over the &#x60;accounts&#x60; parameter.
40
- # @option opts [String] :type Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - BUY - SELL - DIVIDEND - CONTRIBUTION - WITHDRAWAL - REI - INTEREST - FEE
40
+ # @option opts [String] :type Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - &#x60;BUY&#x60; - Asset bought. - &#x60;SELL&#x60; - Asset sold. - &#x60;DIVIDEND&#x60; - Dividend payout. - &#x60;CONTRIBUTION&#x60; - Cash contribution. - &#x60;WITHDRAWAL&#x60; - Cash withdrawal. - &#x60;REI&#x60; - Dividend reinvestment. - &#x60;INTEREST&#x60; - Interest deposited into the account. - &#x60;FEE&#x60; - Fee withdrawn from the account.
41
41
  # @return [Array<UniversalActivity>]
42
42
  describe 'get_activities test' do
43
43
  it 'should work' do
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: 2.0.43
4
+ version: 2.0.45
5
5
  platform: ruby
6
6
  authors:
7
7
  - SnapTrade
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-05 00:00:00.000000000 Z
11
+ date: 2024-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -355,125 +355,125 @@ signing_key:
355
355
  specification_version: 4
356
356
  summary: SnapTrade Ruby Gem
357
357
  test_files:
358
+ - spec/api/account_information_api_spec.rb
359
+ - spec/api/api_status_api_spec.rb
358
360
  - spec/api/trading_api_spec.rb
359
- - spec/api/connections_api_spec.rb
361
+ - spec/api/reference_data_api_spec.rb
360
362
  - spec/api/authentication_api_spec.rb
361
363
  - spec/api/transactions_and_reporting_api_spec.rb
362
- - spec/api/account_information_api_spec.rb
363
364
  - spec/api/options_api_spec.rb
364
- - spec/api/api_status_api_spec.rb
365
- - spec/api/reference_data_api_spec.rb
365
+ - spec/api/connections_api_spec.rb
366
366
  - spec/api_client_spec.rb
367
367
  - spec/configuration_spec.rb
368
368
  - spec/getting_started_spec.rb
369
- - spec/models/validated_trade_body_spec.rb
370
- - spec/models/connections_session_events200_response_inner_spec.rb
371
- - spec/models/option_leg_spec.rb
369
+ - spec/models/account_order_record_status_spec.rb
370
+ - spec/models/exchange_rate_pairs_spec.rb
371
+ - spec/models/snap_trade_holdings_account_spec.rb
372
+ - spec/models/account_holdings_account_spec.rb
373
+ - spec/models/brokerage_authorization_type_read_only_brokerage_spec.rb
374
+ - spec/models/user_i_dand_secret_spec.rb
375
+ - spec/models/transactions_status_spec.rb
376
+ - spec/models/model403_feature_not_enabled_response_spec.rb
377
+ - spec/models/action_strict_spec.rb
378
+ - spec/models/manual_trade_balance_spec.rb
379
+ - spec/models/encrypted_response_encrypted_message_data_spec.rb
380
+ - spec/models/model500_unexpected_exception_response_spec.rb
372
381
  - spec/models/currency_spec.rb
373
- - spec/models/model404_failed_request_response_spec.rb
374
- - spec/models/sub_period_return_rate_spec.rb
375
- - spec/models/options_symbol_spec.rb
376
- - spec/models/account_holdings_spec.rb
377
- - spec/models/manual_trade_form_notional_value_spec.rb
378
- - spec/models/brokerage_type_spec.rb
379
- - spec/models/encrypted_response_spec.rb
380
- - spec/models/account_order_record_spec.rb
382
+ - spec/models/net_contributions_spec.rb
383
+ - spec/models/auth_type_spec.rb
384
+ - spec/models/model400_failed_request_response_spec.rb
381
385
  - spec/models/snap_trade_register_user_request_body_spec.rb
382
- - spec/models/dividend_at_date_spec.rb
383
- - spec/models/option_leg_action_spec.rb
384
- - spec/models/manual_trade_impact_spec.rb
385
- - spec/models/options_position_spec.rb
386
- - spec/models/option_strategy_spec.rb
387
- - spec/models/us_exchange_spec.rb
388
- - spec/models/model402_brokerage_auth_disabled_response_spec.rb
389
- - spec/models/manual_trade_balance_spec.rb
390
- - spec/models/login_redirect_uri_spec.rb
391
386
  - spec/models/account_order_record_option_symbol_spec.rb
392
- - spec/models/account_order_record_universal_symbol_spec.rb
393
- - spec/models/option_chain_inner_chain_per_root_inner_spec.rb
394
- - spec/models/brokerage_authorization_refresh_confirmation_spec.rb
395
- - spec/models/manual_trade_symbol_spec.rb
396
- - spec/models/account_spec.rb
397
- - spec/models/snap_trade_holdings_total_value_spec.rb
398
- - spec/models/account_simple_spec.rb
399
- - spec/models/option_chain_inner_spec.rb
400
- - spec/models/brokerage_authorization_type_read_only_spec.rb
401
- - spec/models/snap_trade_login_user_request_body_spec.rb
402
- - spec/models/strategy_quotes_spec.rb
403
- - spec/models/net_dividend_spec.rb
404
- - spec/models/symbol_query_spec.rb
405
- - spec/models/authentication_login_snap_trade_user200_response_spec.rb
406
- - spec/models/brokerage_authorization_spec.rb
407
- - spec/models/connection_type_spec.rb
408
- - spec/models/model403_failed_request_response_spec.rb
409
- - spec/models/universal_activity_spec.rb
410
387
  - spec/models/manual_trade_form_spec.rb
411
- - spec/models/snap_trade_holdings_account_spec.rb
412
- - spec/models/position_spec.rb
413
- - spec/models/trading_cancel_user_account_order_request_spec.rb
414
- - spec/models/symbols_quotes_inner_spec.rb
415
- - spec/models/model402_brokerage_auth_already_disabled_exception_spec.rb
416
- - spec/models/options_place_option_strategy_request_spec.rb
388
+ - spec/models/validated_trade_body_spec.rb
389
+ - spec/models/brokerage_spec.rb
390
+ - spec/models/balance_spec.rb
417
391
  - spec/models/account_balance_spec.rb
418
- - spec/models/universal_activity_symbol_spec.rb
419
- - spec/models/partner_data_spec.rb
420
- - spec/models/action_strict_spec.rb
421
- - spec/models/model401_failed_request_response_spec.rb
422
- - spec/models/symbol_spec.rb
423
- - spec/models/options_position_currency_spec.rb
424
- - spec/models/option_type_spec.rb
425
- - spec/models/holdings_status_spec.rb
426
- - spec/models/session_event_type_spec.rb
427
- - spec/models/figi_instrument_spec.rb
428
- - spec/models/model403_feature_not_enabled_response_spec.rb
429
- - spec/models/net_contributions_spec.rb
430
- - spec/models/auth_type_spec.rb
392
+ - spec/models/snap_trade_holdings_total_value_spec.rb
393
+ - spec/models/options_symbol_spec.rb
394
+ - spec/models/options_position_spec.rb
431
395
  - spec/models/strategy_type_spec.rb
432
- - spec/models/manual_trade_spec.rb
433
- - spec/models/underlying_symbol_exchange_spec.rb
434
- - spec/models/account_order_record_status_spec.rb
435
- - spec/models/exchange_rate_pairs_spec.rb
436
- - spec/models/symbol_figi_instrument_spec.rb
437
- - spec/models/delete_user_response_spec.rb
438
396
  - spec/models/brokerage_authorization_disabled_confirmation_spec.rb
439
- - spec/models/order_type_strict_spec.rb
440
- - spec/models/options_get_option_strategy_request_spec.rb
441
- - spec/models/option_brokerage_symbol_spec.rb
442
- - spec/models/option_chain_inner_chain_per_root_inner_chain_per_strike_price_inner_spec.rb
443
- - spec/models/account_sync_status_spec.rb
444
- - spec/models/universal_activity_option_symbol_spec.rb
445
- - spec/models/model500_unexpected_exception_response_spec.rb
446
- - spec/models/manual_trade_and_impact_spec.rb
447
- - spec/models/connection_portal_version_spec.rb
448
- - spec/models/underlying_symbol_type_spec.rb
449
- - spec/models/balance_spec.rb
450
- - spec/models/universal_activity_currency_spec.rb
397
+ - spec/models/encrypted_response_spec.rb
398
+ - spec/models/option_type_spec.rb
451
399
  - spec/models/type_spec.rb
452
- - spec/models/symbol_exchange_spec.rb
453
- - spec/models/exchange_spec.rb
454
- - spec/models/symbol_currency_spec.rb
400
+ - spec/models/underlying_symbol_type_spec.rb
401
+ - spec/models/account_order_record_universal_symbol_spec.rb
402
+ - spec/models/underlying_symbol_spec.rb
403
+ - spec/models/model401_failed_request_response_spec.rb
404
+ - spec/models/authentication_login_snap_trade_user200_response_spec.rb
405
+ - spec/models/model404_failed_request_response_spec.rb
406
+ - spec/models/balance_currency_spec.rb
455
407
  - spec/models/position_symbol_spec.rb
456
- - spec/models/performance_custom_spec.rb
408
+ - spec/models/universal_activity_currency_spec.rb
457
409
  - spec/models/status_spec.rb
458
- - spec/models/brokerage_spec.rb
459
- - spec/models/strategy_order_record_status_spec.rb
410
+ - spec/models/brokerage_authorization_spec.rb
411
+ - spec/models/account_balance_total_spec.rb
412
+ - spec/models/account_holdings_spec.rb
413
+ - spec/models/us_exchange_spec.rb
414
+ - spec/models/option_leg_action_spec.rb
415
+ - spec/models/holdings_status_spec.rb
416
+ - spec/models/time_in_force_strict_spec.rb
417
+ - spec/models/snap_trade_login_user_request_body_spec.rb
418
+ - spec/models/underlying_symbol_exchange_spec.rb
419
+ - spec/models/manual_trade_and_impact_spec.rb
460
420
  - spec/models/monthly_dividends_spec.rb
461
421
  - spec/models/strategy_order_record_spec.rb
462
- - spec/models/time_in_force_strict_spec.rb
463
- - spec/models/model400_failed_request_response_spec.rb
422
+ - spec/models/account_simple_spec.rb
423
+ - spec/models/universal_symbol_spec.rb
424
+ - spec/models/options_position_currency_spec.rb
425
+ - spec/models/security_type_spec.rb
426
+ - spec/models/sub_period_return_rate_spec.rb
427
+ - spec/models/account_sync_status_spec.rb
428
+ - spec/models/manual_trade_spec.rb
429
+ - spec/models/performance_custom_spec.rb
430
+ - spec/models/strategy_order_record_status_spec.rb
431
+ - spec/models/universal_activity_symbol_spec.rb
432
+ - spec/models/option_chain_inner_chain_per_root_inner_chain_per_strike_price_inner_spec.rb
433
+ - spec/models/strategy_quotes_spec.rb
434
+ - spec/models/manual_trade_symbol_spec.rb
435
+ - spec/models/option_brokerage_symbol_spec.rb
436
+ - spec/models/universal_activity_option_symbol_spec.rb
437
+ - spec/models/exchange_spec.rb
438
+ - spec/models/figi_instrument_spec.rb
439
+ - spec/models/symbol_spec.rb
440
+ - spec/models/strategy_quotes_greek_spec.rb
441
+ - spec/models/symbol_exchange_spec.rb
442
+ - spec/models/option_strategy_spec.rb
443
+ - spec/models/option_leg_spec.rb
444
+ - spec/models/universal_activity_spec.rb
445
+ - spec/models/symbols_quotes_inner_spec.rb
446
+ - spec/models/option_chain_inner_spec.rb
447
+ - spec/models/order_type_strict_spec.rb
464
448
  - spec/models/past_value_spec.rb
465
- - spec/models/encrypted_response_encrypted_message_data_spec.rb
466
- - spec/models/account_holdings_account_spec.rb
449
+ - spec/models/manual_trade_impact_spec.rb
450
+ - spec/models/model402_brokerage_auth_disabled_response_spec.rb
451
+ - spec/models/account_order_record_spec.rb
452
+ - spec/models/connection_type_spec.rb
453
+ - spec/models/manual_trade_form_notional_value_spec.rb
454
+ - spec/models/dividend_at_date_spec.rb
455
+ - spec/models/login_redirect_uri_spec.rb
456
+ - spec/models/delete_user_response_spec.rb
467
457
  - spec/models/option_strategy_legs_inner_spec.rb
468
- - spec/models/account_balance_total_spec.rb
469
- - spec/models/transactions_status_spec.rb
470
- - spec/models/security_type_spec.rb
471
- - spec/models/balance_currency_spec.rb
472
- - spec/models/session_event_spec.rb
473
- - spec/models/brokerage_authorization_type_read_only_brokerage_spec.rb
458
+ - spec/models/model402_brokerage_auth_already_disabled_exception_spec.rb
459
+ - spec/models/position_spec.rb
474
460
  - spec/models/notional_value_spec.rb
475
- - spec/models/user_i_dand_secret_spec.rb
476
- - spec/models/universal_symbol_spec.rb
477
- - spec/models/underlying_symbol_spec.rb
478
- - spec/models/strategy_quotes_greek_spec.rb
461
+ - spec/models/options_get_option_strategy_request_spec.rb
462
+ - spec/models/option_chain_inner_chain_per_root_inner_spec.rb
463
+ - spec/models/trading_cancel_user_account_order_request_spec.rb
464
+ - spec/models/symbol_currency_spec.rb
465
+ - spec/models/connection_portal_version_spec.rb
466
+ - spec/models/session_event_type_spec.rb
467
+ - spec/models/model403_failed_request_response_spec.rb
468
+ - spec/models/symbol_query_spec.rb
469
+ - spec/models/brokerage_authorization_type_read_only_spec.rb
470
+ - spec/models/options_place_option_strategy_request_spec.rb
471
+ - spec/models/account_spec.rb
472
+ - spec/models/brokerage_authorization_refresh_confirmation_spec.rb
473
+ - spec/models/session_event_spec.rb
474
+ - spec/models/brokerage_type_spec.rb
475
+ - spec/models/connections_session_events200_response_inner_spec.rb
476
+ - spec/models/net_dividend_spec.rb
477
+ - spec/models/partner_data_spec.rb
478
+ - spec/models/symbol_figi_instrument_spec.rb
479
479
  - spec/spec_helper.rb