snaptrade 2.0.83 → 2.0.84
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/Gemfile.lock +5 -5
- data/README.md +285 -2
- data/lib/snaptrade/api/crypto_spot_trading_api.rb +698 -0
- data/lib/snaptrade/models/brokerage_authorization_type_read_only.rb +1 -1
- data/lib/snaptrade/models/brokerage_authorization_type_read_only_type.rb +37 -0
- data/lib/snaptrade/models/crypto_spot_order_preview.rb +217 -0
- data/lib/snaptrade/models/crypto_spot_order_preview_estimated_fee.rb +237 -0
- data/lib/snaptrade/models/crypto_spot_order_request_body_time_in_force.rb +39 -0
- data/lib/snaptrade/models/crypto_spot_quote.rb +257 -0
- data/lib/snaptrade/models/cryptocurrency_pair.rb +238 -0
- data/lib/snaptrade/models/trading_crypto_spot_cancel_order_request.rb +222 -0
- data/lib/snaptrade/models/trading_crypto_spot_place_order_request.rb +321 -0
- data/lib/snaptrade/models/trading_crypto_spot_symbols200_response.rb +224 -0
- data/lib/snaptrade/models/type.rb +7 -3
- data/lib/snaptrade/version.rb +1 -1
- data/lib/snaptrade.rb +12 -0
- data/spec/api/crypto_spot_trading_api_spec.rb +107 -0
- data/spec/models/brokerage_authorization_type_read_only_type_spec.rb +23 -0
- data/spec/models/crypto_spot_order_preview_estimated_fee_spec.rb +35 -0
- data/spec/models/crypto_spot_order_preview_spec.rb +29 -0
- data/spec/models/crypto_spot_order_request_body_time_in_force_spec.rb +23 -0
- data/spec/models/crypto_spot_quote_spec.rb +47 -0
- data/spec/models/cryptocurrency_pair_spec.rb +35 -0
- data/spec/models/trading_crypto_spot_cancel_order_request_spec.rb +29 -0
- data/spec/models/trading_crypto_spot_place_order_request_spec.rb +77 -0
- data/spec/models/trading_crypto_spot_symbols200_response_spec.rb +29 -0
- metadata +32 -2
@@ -0,0 +1,107 @@
|
|
1
|
+
=begin
|
2
|
+
#SnapTrade
|
3
|
+
|
4
|
+
#Connect brokerage accounts to your app for live positions and trading
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: api@snaptrade.com
|
8
|
+
=end
|
9
|
+
|
10
|
+
require 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
|
13
|
+
# Unit tests for SnapTrade::CryptoSpotTradingApi
|
14
|
+
describe 'CryptoSpotTradingApi' do
|
15
|
+
before do
|
16
|
+
# run before each test
|
17
|
+
@api_instance = SnapTrade::CryptoSpotTradingApi.new
|
18
|
+
end
|
19
|
+
|
20
|
+
after do
|
21
|
+
# run after each test
|
22
|
+
end
|
23
|
+
|
24
|
+
describe 'test an instance of CryptoSpotTradingApi' do
|
25
|
+
it 'should create an instance of CryptoSpotTradingApi' do
|
26
|
+
expect(@api_instance).to be_instance_of(SnapTrade::CryptoSpotTradingApi)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
# unit tests for crypto_spot_cancel_order
|
31
|
+
# Cancel a crypto spot order.
|
32
|
+
# Cancels a cryptocurrency spot order in the specified account.
|
33
|
+
# @param user_id
|
34
|
+
# @param user_secret
|
35
|
+
# @param account_id
|
36
|
+
# @param trading_crypto_spot_cancel_order_request
|
37
|
+
# @param [Hash] opts the optional parameters
|
38
|
+
# @return [AccountOrderRecord]
|
39
|
+
describe 'crypto_spot_cancel_order test' do
|
40
|
+
it 'should work' do
|
41
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
# unit tests for crypto_spot_place_order
|
46
|
+
# Place a spot order on a crypto exchange
|
47
|
+
# Places a spot cryptocurrency order in the specified account. This endpoint does not compute the impact to the account balance from the order before submitting the order to the exchange.
|
48
|
+
# @param user_id
|
49
|
+
# @param user_secret
|
50
|
+
# @param account_id
|
51
|
+
# @param trading_crypto_spot_place_order_request
|
52
|
+
# @param [Hash] opts the optional parameters
|
53
|
+
# @return [AccountOrderRecord]
|
54
|
+
describe 'crypto_spot_place_order test' do
|
55
|
+
it 'should work' do
|
56
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
# unit tests for crypto_spot_preview_order
|
61
|
+
# Place a spot order on a crypto exchange
|
62
|
+
# Previews a cryptocurrency spot order using the specified account.
|
63
|
+
# @param user_id
|
64
|
+
# @param user_secret
|
65
|
+
# @param account_id
|
66
|
+
# @param trading_crypto_spot_place_order_request
|
67
|
+
# @param [Hash] opts the optional parameters
|
68
|
+
# @return [CryptoSpotOrderPreview]
|
69
|
+
describe 'crypto_spot_preview_order test' do
|
70
|
+
it 'should work' do
|
71
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
# unit tests for crypto_spot_quote
|
76
|
+
# Get a quote for a cyrptocurrency market
|
77
|
+
# Gets a quote for the specified account.
|
78
|
+
# @param user_id
|
79
|
+
# @param user_secret
|
80
|
+
# @param account_id
|
81
|
+
# @param base
|
82
|
+
# @param quote
|
83
|
+
# @param [Hash] opts the optional parameters
|
84
|
+
# @return [CryptoSpotQuote]
|
85
|
+
describe 'crypto_spot_quote test' do
|
86
|
+
it 'should work' do
|
87
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
# unit tests for crypto_spot_symbols
|
92
|
+
# Search crypto spot symbols
|
93
|
+
# Searches cryptocurrency spot symbols accessible to the specified account.
|
94
|
+
# @param user_id
|
95
|
+
# @param user_secret
|
96
|
+
# @param account_id
|
97
|
+
# @param [Hash] opts the optional parameters
|
98
|
+
# @option opts [String] :base
|
99
|
+
# @option opts [String] :quote
|
100
|
+
# @return [TradingCryptoSpotSymbols200Response]
|
101
|
+
describe 'crypto_spot_symbols test' do
|
102
|
+
it 'should work' do
|
103
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
=begin
|
2
|
+
#SnapTrade
|
3
|
+
|
4
|
+
#Connect brokerage accounts to your app for live positions and trading
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: api@snaptrade.com
|
8
|
+
=end
|
9
|
+
|
10
|
+
require 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::BrokerageAuthorizationTypeReadOnlyType
|
15
|
+
describe SnapTrade::BrokerageAuthorizationTypeReadOnlyType do
|
16
|
+
let(:instance) { SnapTrade::BrokerageAuthorizationTypeReadOnlyType.new }
|
17
|
+
|
18
|
+
describe 'test an instance of BrokerageAuthorizationTypeReadOnlyType' do
|
19
|
+
it 'should create an instance of BrokerageAuthorizationTypeReadOnlyType' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::BrokerageAuthorizationTypeReadOnlyType)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
=begin
|
2
|
+
#SnapTrade
|
3
|
+
|
4
|
+
#Connect brokerage accounts to your app for live positions and trading
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: api@snaptrade.com
|
8
|
+
=end
|
9
|
+
|
10
|
+
require 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::CryptoSpotOrderPreviewEstimatedFee
|
15
|
+
describe SnapTrade::CryptoSpotOrderPreviewEstimatedFee do
|
16
|
+
let(:instance) { SnapTrade::CryptoSpotOrderPreviewEstimatedFee.new }
|
17
|
+
|
18
|
+
describe 'test an instance of CryptoSpotOrderPreviewEstimatedFee' do
|
19
|
+
it 'should create an instance of CryptoSpotOrderPreviewEstimatedFee' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::CryptoSpotOrderPreviewEstimatedFee)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "currency"' do
|
24
|
+
it 'should work' do
|
25
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test attribute "amount"' do
|
30
|
+
it 'should work' do
|
31
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
=begin
|
2
|
+
#SnapTrade
|
3
|
+
|
4
|
+
#Connect brokerage accounts to your app for live positions and trading
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: api@snaptrade.com
|
8
|
+
=end
|
9
|
+
|
10
|
+
require 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::CryptoSpotOrderPreview
|
15
|
+
describe SnapTrade::CryptoSpotOrderPreview do
|
16
|
+
let(:instance) { SnapTrade::CryptoSpotOrderPreview.new }
|
17
|
+
|
18
|
+
describe 'test an instance of CryptoSpotOrderPreview' do
|
19
|
+
it 'should create an instance of CryptoSpotOrderPreview' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::CryptoSpotOrderPreview)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "estimated_fee"' do
|
24
|
+
it 'should work' do
|
25
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
=begin
|
2
|
+
#SnapTrade
|
3
|
+
|
4
|
+
#Connect brokerage accounts to your app for live positions and trading
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: api@snaptrade.com
|
8
|
+
=end
|
9
|
+
|
10
|
+
require 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::CryptoSpotOrderRequestBodyTimeInForce
|
15
|
+
describe SnapTrade::CryptoSpotOrderRequestBodyTimeInForce do
|
16
|
+
let(:instance) { SnapTrade::CryptoSpotOrderRequestBodyTimeInForce.new }
|
17
|
+
|
18
|
+
describe 'test an instance of CryptoSpotOrderRequestBodyTimeInForce' do
|
19
|
+
it 'should create an instance of CryptoSpotOrderRequestBodyTimeInForce' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::CryptoSpotOrderRequestBodyTimeInForce)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
=begin
|
2
|
+
#SnapTrade
|
3
|
+
|
4
|
+
#Connect brokerage accounts to your app for live positions and trading
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: api@snaptrade.com
|
8
|
+
=end
|
9
|
+
|
10
|
+
require 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::CryptoSpotQuote
|
15
|
+
describe SnapTrade::CryptoSpotQuote do
|
16
|
+
let(:instance) { SnapTrade::CryptoSpotQuote.new }
|
17
|
+
|
18
|
+
describe 'test an instance of CryptoSpotQuote' do
|
19
|
+
it 'should create an instance of CryptoSpotQuote' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::CryptoSpotQuote)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "bid"' do
|
24
|
+
it 'should work' do
|
25
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test attribute "ask"' do
|
30
|
+
it 'should work' do
|
31
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
describe 'test attribute "mid"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "timestamp"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
=begin
|
2
|
+
#SnapTrade
|
3
|
+
|
4
|
+
#Connect brokerage accounts to your app for live positions and trading
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: api@snaptrade.com
|
8
|
+
=end
|
9
|
+
|
10
|
+
require 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::CryptocurrencyPair
|
15
|
+
describe SnapTrade::CryptocurrencyPair do
|
16
|
+
let(:instance) { SnapTrade::CryptocurrencyPair.new }
|
17
|
+
|
18
|
+
describe 'test an instance of CryptocurrencyPair' do
|
19
|
+
it 'should create an instance of CryptocurrencyPair' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::CryptocurrencyPair)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "base"' do
|
24
|
+
it 'should work' do
|
25
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test attribute "quote"' do
|
30
|
+
it 'should work' do
|
31
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
=begin
|
2
|
+
#SnapTrade
|
3
|
+
|
4
|
+
#Connect brokerage accounts to your app for live positions and trading
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: api@snaptrade.com
|
8
|
+
=end
|
9
|
+
|
10
|
+
require 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::TradingCryptoSpotCancelOrderRequest
|
15
|
+
describe SnapTrade::TradingCryptoSpotCancelOrderRequest do
|
16
|
+
let(:instance) { SnapTrade::TradingCryptoSpotCancelOrderRequest.new }
|
17
|
+
|
18
|
+
describe 'test an instance of TradingCryptoSpotCancelOrderRequest' do
|
19
|
+
it 'should create an instance of TradingCryptoSpotCancelOrderRequest' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::TradingCryptoSpotCancelOrderRequest)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "brokerage_order_id"' do
|
24
|
+
it 'should work' do
|
25
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
@@ -0,0 +1,77 @@
|
|
1
|
+
=begin
|
2
|
+
#SnapTrade
|
3
|
+
|
4
|
+
#Connect brokerage accounts to your app for live positions and trading
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: api@snaptrade.com
|
8
|
+
=end
|
9
|
+
|
10
|
+
require 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::TradingCryptoSpotPlaceOrderRequest
|
15
|
+
describe SnapTrade::TradingCryptoSpotPlaceOrderRequest do
|
16
|
+
let(:instance) { SnapTrade::TradingCryptoSpotPlaceOrderRequest.new }
|
17
|
+
|
18
|
+
describe 'test an instance of TradingCryptoSpotPlaceOrderRequest' do
|
19
|
+
it 'should create an instance of TradingCryptoSpotPlaceOrderRequest' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::TradingCryptoSpotPlaceOrderRequest)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "symbol"' do
|
24
|
+
it 'should work' do
|
25
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test attribute "side"' do
|
30
|
+
it 'should work' do
|
31
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
describe 'test attribute "type"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "time_in_force"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "amount"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "limit_price"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe 'test attribute "stop_price"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
describe 'test attribute "post_only"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
describe 'test attribute "expiration_date"' do
|
72
|
+
it 'should work' do
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
=begin
|
2
|
+
#SnapTrade
|
3
|
+
|
4
|
+
#Connect brokerage accounts to your app for live positions and trading
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: api@snaptrade.com
|
8
|
+
=end
|
9
|
+
|
10
|
+
require 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::TradingCryptoSpotSymbols200Response
|
15
|
+
describe SnapTrade::TradingCryptoSpotSymbols200Response do
|
16
|
+
let(:instance) { SnapTrade::TradingCryptoSpotSymbols200Response.new }
|
17
|
+
|
18
|
+
describe 'test an instance of TradingCryptoSpotSymbols200Response' do
|
19
|
+
it 'should create an instance of TradingCryptoSpotSymbols200Response' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::TradingCryptoSpotSymbols200Response)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "items"' do
|
24
|
+
it 'should work' do
|
25
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
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.
|
4
|
+
version: 2.0.84
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- SnapTrade
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -87,6 +87,7 @@ files:
|
|
87
87
|
- lib/snaptrade/api/api_status_api.rb
|
88
88
|
- lib/snaptrade/api/authentication_api.rb
|
89
89
|
- lib/snaptrade/api/connections_api.rb
|
90
|
+
- lib/snaptrade/api/crypto_spot_trading_api.rb
|
90
91
|
- lib/snaptrade/api/options_api.rb
|
91
92
|
- lib/snaptrade/api/reference_data_api.rb
|
92
93
|
- lib/snaptrade/api/trading_api.rb
|
@@ -123,11 +124,17 @@ files:
|
|
123
124
|
- lib/snaptrade/models/brokerage_authorization_refresh_confirmation.rb
|
124
125
|
- lib/snaptrade/models/brokerage_authorization_type_read_only.rb
|
125
126
|
- lib/snaptrade/models/brokerage_authorization_type_read_only_brokerage.rb
|
127
|
+
- lib/snaptrade/models/brokerage_authorization_type_read_only_type.rb
|
126
128
|
- lib/snaptrade/models/brokerage_type.rb
|
127
129
|
- lib/snaptrade/models/child_brokerage_order_ids.rb
|
128
130
|
- lib/snaptrade/models/connection_portal_version.rb
|
129
131
|
- lib/snaptrade/models/connection_type.rb
|
130
132
|
- lib/snaptrade/models/connections_session_events200_response_inner.rb
|
133
|
+
- lib/snaptrade/models/crypto_spot_order_preview.rb
|
134
|
+
- lib/snaptrade/models/crypto_spot_order_preview_estimated_fee.rb
|
135
|
+
- lib/snaptrade/models/crypto_spot_order_request_body_time_in_force.rb
|
136
|
+
- lib/snaptrade/models/crypto_spot_quote.rb
|
137
|
+
- lib/snaptrade/models/cryptocurrency_pair.rb
|
131
138
|
- lib/snaptrade/models/currency.rb
|
132
139
|
- lib/snaptrade/models/delete_user_response.rb
|
133
140
|
- lib/snaptrade/models/dividend_at_date.rb
|
@@ -210,6 +217,9 @@ files:
|
|
210
217
|
- lib/snaptrade/models/time_in_force_strict.rb
|
211
218
|
- lib/snaptrade/models/timeframe.rb
|
212
219
|
- lib/snaptrade/models/trading_cancel_user_account_order_request.rb
|
220
|
+
- lib/snaptrade/models/trading_crypto_spot_cancel_order_request.rb
|
221
|
+
- lib/snaptrade/models/trading_crypto_spot_place_order_request.rb
|
222
|
+
- lib/snaptrade/models/trading_crypto_spot_symbols200_response.rb
|
213
223
|
- lib/snaptrade/models/transactions_status.rb
|
214
224
|
- lib/snaptrade/models/type.rb
|
215
225
|
- lib/snaptrade/models/underlying_symbol.rb
|
@@ -226,6 +236,7 @@ files:
|
|
226
236
|
- spec/api/api_status_api_spec.rb
|
227
237
|
- spec/api/authentication_api_spec.rb
|
228
238
|
- spec/api/connections_api_spec.rb
|
239
|
+
- spec/api/crypto_spot_trading_api_spec.rb
|
229
240
|
- spec/api/options_api_spec.rb
|
230
241
|
- spec/api/reference_data_api_spec.rb
|
231
242
|
- spec/api/trading_api_spec.rb
|
@@ -260,12 +271,18 @@ files:
|
|
260
271
|
- spec/models/brokerage_authorization_spec.rb
|
261
272
|
- spec/models/brokerage_authorization_type_read_only_brokerage_spec.rb
|
262
273
|
- spec/models/brokerage_authorization_type_read_only_spec.rb
|
274
|
+
- spec/models/brokerage_authorization_type_read_only_type_spec.rb
|
263
275
|
- spec/models/brokerage_spec.rb
|
264
276
|
- spec/models/brokerage_type_spec.rb
|
265
277
|
- spec/models/child_brokerage_order_ids_spec.rb
|
266
278
|
- spec/models/connection_portal_version_spec.rb
|
267
279
|
- spec/models/connection_type_spec.rb
|
268
280
|
- spec/models/connections_session_events200_response_inner_spec.rb
|
281
|
+
- spec/models/crypto_spot_order_preview_estimated_fee_spec.rb
|
282
|
+
- spec/models/crypto_spot_order_preview_spec.rb
|
283
|
+
- spec/models/crypto_spot_order_request_body_time_in_force_spec.rb
|
284
|
+
- spec/models/crypto_spot_quote_spec.rb
|
285
|
+
- spec/models/cryptocurrency_pair_spec.rb
|
269
286
|
- spec/models/currency_spec.rb
|
270
287
|
- spec/models/delete_user_response_spec.rb
|
271
288
|
- spec/models/dividend_at_date_spec.rb
|
@@ -348,6 +365,9 @@ files:
|
|
348
365
|
- spec/models/time_in_force_strict_spec.rb
|
349
366
|
- spec/models/timeframe_spec.rb
|
350
367
|
- spec/models/trading_cancel_user_account_order_request_spec.rb
|
368
|
+
- spec/models/trading_crypto_spot_cancel_order_request_spec.rb
|
369
|
+
- spec/models/trading_crypto_spot_place_order_request_spec.rb
|
370
|
+
- spec/models/trading_crypto_spot_symbols200_response_spec.rb
|
351
371
|
- spec/models/transactions_status_spec.rb
|
352
372
|
- spec/models/type_spec.rb
|
353
373
|
- spec/models/underlying_symbol_exchange_spec.rb
|
@@ -387,6 +407,7 @@ summary: SnapTrade Ruby Gem
|
|
387
407
|
test_files:
|
388
408
|
- spec/api/options_api_spec.rb
|
389
409
|
- spec/api/transactions_and_reporting_api_spec.rb
|
410
|
+
- spec/api/crypto_spot_trading_api_spec.rb
|
390
411
|
- spec/api/account_information_api_spec.rb
|
391
412
|
- spec/api/connections_api_spec.rb
|
392
413
|
- spec/api/api_status_api_spec.rb
|
@@ -415,9 +436,11 @@ test_files:
|
|
415
436
|
- spec/models/options_position_currency_spec.rb
|
416
437
|
- spec/models/manual_trade_and_impact_spec.rb
|
417
438
|
- spec/models/validated_trade_body_spec.rb
|
439
|
+
- spec/models/trading_crypto_spot_symbols200_response_spec.rb
|
418
440
|
- spec/models/exchange_rate_pairs_spec.rb
|
419
441
|
- spec/models/strategy_order_record_spec.rb
|
420
442
|
- spec/models/option_chain_inner_chain_per_root_inner_spec.rb
|
443
|
+
- spec/models/crypto_spot_order_request_body_time_in_force_spec.rb
|
421
444
|
- spec/models/model425_failed_request_response_spec.rb
|
422
445
|
- spec/models/underlying_symbol_exchange_spec.rb
|
423
446
|
- spec/models/symbol_exchange_spec.rb
|
@@ -454,6 +477,7 @@ test_files:
|
|
454
477
|
- spec/models/past_value_spec.rb
|
455
478
|
- spec/models/account_order_record_universal_symbol_spec.rb
|
456
479
|
- spec/models/us_exchange_spec.rb
|
480
|
+
- spec/models/cryptocurrency_pair_spec.rb
|
457
481
|
- spec/models/model500_unexpected_exception_response_spec.rb
|
458
482
|
- spec/models/session_event_spec.rb
|
459
483
|
- spec/models/account_holdings_spec.rb
|
@@ -464,10 +488,13 @@ test_files:
|
|
464
488
|
- spec/models/symbol_figi_instrument_spec.rb
|
465
489
|
- spec/models/strategy_quotes_spec.rb
|
466
490
|
- spec/models/monthly_dividends_spec.rb
|
491
|
+
- spec/models/trading_crypto_spot_place_order_request_spec.rb
|
467
492
|
- spec/models/snap_trade_register_user_request_body_spec.rb
|
493
|
+
- spec/models/crypto_spot_order_preview_spec.rb
|
468
494
|
- spec/models/status_spec.rb
|
469
495
|
- spec/models/account_sync_status_spec.rb
|
470
496
|
- spec/models/account_balance_total_spec.rb
|
497
|
+
- spec/models/trading_crypto_spot_cancel_order_request_spec.rb
|
471
498
|
- spec/models/take_profit_spec.rb
|
472
499
|
- spec/models/balance_currency_spec.rb
|
473
500
|
- spec/models/option_type_spec.rb
|
@@ -504,10 +531,12 @@ test_files:
|
|
504
531
|
- spec/models/position_spec.rb
|
505
532
|
- spec/models/holdings_status_spec.rb
|
506
533
|
- spec/models/recent_orders_response_spec.rb
|
534
|
+
- spec/models/crypto_spot_order_preview_estimated_fee_spec.rb
|
507
535
|
- spec/models/encrypted_response_encrypted_message_data_spec.rb
|
508
536
|
- spec/models/manual_trade_form_notional_value_spec.rb
|
509
537
|
- spec/models/dividend_at_date_spec.rb
|
510
538
|
- spec/models/option_chain_inner_spec.rb
|
539
|
+
- spec/models/brokerage_authorization_type_read_only_type_spec.rb
|
511
540
|
- spec/models/connection_portal_version_spec.rb
|
512
541
|
- spec/models/figi_instrument_spec.rb
|
513
542
|
- spec/models/order_type_strict_spec.rb
|
@@ -520,5 +549,6 @@ test_files:
|
|
520
549
|
- spec/models/manual_trade_spec.rb
|
521
550
|
- spec/models/brokerage_authorization_type_read_only_spec.rb
|
522
551
|
- spec/models/option_brokerage_symbol_spec.rb
|
552
|
+
- spec/models/crypto_spot_quote_spec.rb
|
523
553
|
- spec/models/manual_trade_symbol_spec.rb
|
524
554
|
- spec/spec_helper.rb
|