snaptrade 2.0.84 → 2.0.86
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 +6 -4
- data/README.md +12 -12
- data/lib/snaptrade/api/crypto_spot_trading_api.rb +18 -18
- data/lib/snaptrade/models/account_order_record.rb +19 -1
- data/lib/snaptrade/models/account_order_record_quote_currency.rb +245 -0
- data/lib/snaptrade/models/account_order_record_quote_universal_symbol.rb +346 -0
- data/lib/snaptrade/models/cryptocurrency_pair.rb +2 -2
- data/lib/snaptrade/models/order_updated_response.rb +231 -0
- data/lib/snaptrade/models/trading_crypto_spot_place_order_request.rb +1 -1
- data/lib/snaptrade/version.rb +1 -1
- data/lib/snaptrade.rb +3 -0
- data/spec/api/crypto_spot_trading_api_spec.rb +4 -4
- data/spec/models/account_order_record_quote_currency_spec.rb +41 -0
- data/spec/models/account_order_record_quote_universal_symbol_spec.rb +83 -0
- data/spec/models/account_order_record_spec.rb +12 -0
- data/spec/models/order_updated_response_spec.rb +35 -0
- metadata +11 -2
@@ -0,0 +1,41 @@
|
|
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::AccountOrderRecordQuoteCurrency
|
15
|
+
describe SnapTrade::AccountOrderRecordQuoteCurrency do
|
16
|
+
let(:instance) { SnapTrade::AccountOrderRecordQuoteCurrency.new }
|
17
|
+
|
18
|
+
describe 'test an instance of AccountOrderRecordQuoteCurrency' do
|
19
|
+
it 'should create an instance of AccountOrderRecordQuoteCurrency' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::AccountOrderRecordQuoteCurrency)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "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
|
+
describe 'test attribute "code"' 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 "name"' 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
|
+
end
|
@@ -0,0 +1,83 @@
|
|
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::AccountOrderRecordQuoteUniversalSymbol
|
15
|
+
describe SnapTrade::AccountOrderRecordQuoteUniversalSymbol do
|
16
|
+
let(:instance) { SnapTrade::AccountOrderRecordQuoteUniversalSymbol.new }
|
17
|
+
|
18
|
+
describe 'test an instance of AccountOrderRecordQuoteUniversalSymbol' do
|
19
|
+
it 'should create an instance of AccountOrderRecordQuoteUniversalSymbol' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::AccountOrderRecordQuoteUniversalSymbol)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "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
|
+
describe 'test attribute "symbol"' 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 "raw_symbol"' 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 "description"' 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 "currency"' 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 "exchange"' 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 "type"' 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 "figi_code"' 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 "figi_instrument"' 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
|
+
describe 'test attribute "currencies"' do
|
78
|
+
it 'should work' do
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
end
|
@@ -44,6 +44,18 @@ describe SnapTrade::AccountOrderRecord do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
+
describe 'test attribute "quote_universal_symbol"' 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 "quote_currency"' 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
|
+
|
47
59
|
describe 'test attribute "action"' do
|
48
60
|
it 'should work' do
|
49
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -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::OrderUpdatedResponse
|
15
|
+
describe SnapTrade::OrderUpdatedResponse do
|
16
|
+
let(:instance) { SnapTrade::OrderUpdatedResponse.new }
|
17
|
+
|
18
|
+
describe 'test an instance of OrderUpdatedResponse' do
|
19
|
+
it 'should create an instance of OrderUpdatedResponse' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::OrderUpdatedResponse)
|
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
|
+
describe 'test attribute "order"' 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
|
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.86
|
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-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -104,6 +104,8 @@ files:
|
|
104
104
|
- lib/snaptrade/models/account_order_record.rb
|
105
105
|
- lib/snaptrade/models/account_order_record_child_brokerage_order_ids.rb
|
106
106
|
- lib/snaptrade/models/account_order_record_option_symbol.rb
|
107
|
+
- lib/snaptrade/models/account_order_record_quote_currency.rb
|
108
|
+
- lib/snaptrade/models/account_order_record_quote_universal_symbol.rb
|
107
109
|
- lib/snaptrade/models/account_order_record_status.rb
|
108
110
|
- lib/snaptrade/models/account_order_record_universal_symbol.rb
|
109
111
|
- lib/snaptrade/models/account_simple.rb
|
@@ -182,6 +184,7 @@ files:
|
|
182
184
|
- lib/snaptrade/models/options_position_currency.rb
|
183
185
|
- lib/snaptrade/models/options_symbol.rb
|
184
186
|
- lib/snaptrade/models/order_type_strict.rb
|
187
|
+
- lib/snaptrade/models/order_updated_response.rb
|
185
188
|
- lib/snaptrade/models/paginated_universal_activity.rb
|
186
189
|
- lib/snaptrade/models/pagination_details.rb
|
187
190
|
- lib/snaptrade/models/partner_data.rb
|
@@ -250,6 +253,8 @@ files:
|
|
250
253
|
- spec/models/account_holdings_spec.rb
|
251
254
|
- spec/models/account_order_record_child_brokerage_order_ids_spec.rb
|
252
255
|
- spec/models/account_order_record_option_symbol_spec.rb
|
256
|
+
- spec/models/account_order_record_quote_currency_spec.rb
|
257
|
+
- spec/models/account_order_record_quote_universal_symbol_spec.rb
|
253
258
|
- spec/models/account_order_record_spec.rb
|
254
259
|
- spec/models/account_order_record_status_spec.rb
|
255
260
|
- spec/models/account_order_record_universal_symbol_spec.rb
|
@@ -330,6 +335,7 @@ files:
|
|
330
335
|
- spec/models/options_position_spec.rb
|
331
336
|
- spec/models/options_symbol_spec.rb
|
332
337
|
- spec/models/order_type_strict_spec.rb
|
338
|
+
- spec/models/order_updated_response_spec.rb
|
333
339
|
- spec/models/paginated_universal_activity_spec.rb
|
334
340
|
- spec/models/pagination_details_spec.rb
|
335
341
|
- spec/models/partner_data_spec.rb
|
@@ -486,10 +492,12 @@ test_files:
|
|
486
492
|
- spec/models/universal_activity_spec.rb
|
487
493
|
- spec/models/account_order_record_spec.rb
|
488
494
|
- spec/models/symbol_figi_instrument_spec.rb
|
495
|
+
- spec/models/order_updated_response_spec.rb
|
489
496
|
- spec/models/strategy_quotes_spec.rb
|
490
497
|
- spec/models/monthly_dividends_spec.rb
|
491
498
|
- spec/models/trading_crypto_spot_place_order_request_spec.rb
|
492
499
|
- spec/models/snap_trade_register_user_request_body_spec.rb
|
500
|
+
- spec/models/account_order_record_quote_currency_spec.rb
|
493
501
|
- spec/models/crypto_spot_order_preview_spec.rb
|
494
502
|
- spec/models/status_spec.rb
|
495
503
|
- spec/models/account_sync_status_spec.rb
|
@@ -550,5 +558,6 @@ test_files:
|
|
550
558
|
- spec/models/brokerage_authorization_type_read_only_spec.rb
|
551
559
|
- spec/models/option_brokerage_symbol_spec.rb
|
552
560
|
- spec/models/crypto_spot_quote_spec.rb
|
561
|
+
- spec/models/account_order_record_quote_universal_symbol_spec.rb
|
553
562
|
- spec/models/manual_trade_symbol_spec.rb
|
554
563
|
- spec/spec_helper.rb
|