snaptrade 2.0.26 → 2.0.28
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +6 -7
- data/lib/snaptrade/api/authentication_api.rb +8 -8
- data/lib/snaptrade/models/account_sync_status.rb +13 -4
- data/lib/snaptrade/models/holdings_status.rb +228 -0
- data/lib/snaptrade/models/transactions_status.rb +16 -5
- data/lib/snaptrade/models/user_i_dand_secret.rb +1 -1
- data/lib/snaptrade/version.rb +1 -1
- data/lib/snaptrade.rb +1 -0
- data/spec/api/authentication_api_spec.rb +1 -1
- data/spec/models/account_sync_status_spec.rb +6 -0
- data/spec/models/holdings_status_spec.rb +35 -0
- data/spec/models/transactions_status_spec.rb +6 -0
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2fe92620a58d056da38b520075900fca5e87dba39e7672055d1dc2c3b4397615
|
4
|
+
data.tar.gz: ca4859a220b98ede43621daaa2fe68d957abe9c082b13c08b69d1b208e86382b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34e441cc2e218a54300ccbce4e4c4259f75fe4d134cc2f3b0cd7f4bdb8d5ab507ca1c6886fcb248883cbd8d6e321efb78d900099056279747c2a11a35e0e6bab
|
7
|
+
data.tar.gz: 5197c3ad9f01759083ae79c142a96383dfa3e20dbcd052efea58c260e9e7f5797436576c86dcf784e20d9668c02ff203c9896e03509152abdda192f46dd72987
|
data/Gemfile.lock
CHANGED
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.
|
9
|
+
[![npm](https://img.shields.io/badge/gem-v2.0.28-blue)](https://rubygems.org/gems/snaptrade/versions/2.0.28)
|
10
10
|
[![More Info](https://img.shields.io/badge/More%20Info-Click%20Here-orange)](https://snaptrade.com/)
|
11
11
|
|
12
12
|
</div>
|
@@ -71,7 +71,7 @@ Connect brokerage accounts to your app for live positions and trading
|
|
71
71
|
Add to Gemfile:
|
72
72
|
|
73
73
|
```ruby
|
74
|
-
gem 'snaptrade', '~> 2.0.
|
74
|
+
gem 'snaptrade', '~> 2.0.28'
|
75
75
|
```
|
76
76
|
|
77
77
|
## Getting Started<a id="getting-started"></a>
|
@@ -606,8 +606,8 @@ immutable.
|
|
606
606
|
|
607
607
|
### `snaptrade.authentication.reset_snap_trade_user_secret`<a id="snaptradeauthenticationreset_snap_trade_user_secret"></a>
|
608
608
|
|
609
|
-
This API is used to
|
610
|
-
is
|
609
|
+
This API is used to rotate the secret for a SnapTrade user. You might use this if a userSecret
|
610
|
+
is compromised. Please note that if you call this endpoint and fail to save the new secret, you'll no longer be able to access any data for this user, and your only option will be to delete and recreate the user, then ask them to reconnect.
|
611
611
|
|
612
612
|
|
613
613
|
#### 🛠️ Usage<a id="🛠️-usage"></a>
|
@@ -629,9 +629,8 @@ NOT use email addresses for this property because they are usually not
|
|
629
629
|
immutable.
|
630
630
|
|
631
631
|
##### userSecret: `String`<a id="usersecret-string"></a>
|
632
|
-
SnapTrade User Secret randomly generated by SnapTrade. This
|
633
|
-
|
634
|
-
SnapTrade user.
|
632
|
+
SnapTrade User Secret randomly generated by SnapTrade. This is privileged
|
633
|
+
information and if compromised, should be rotated via the SnapTrade API.
|
635
634
|
|
636
635
|
#### 🔄 Return<a id="🔄-return"></a>
|
637
636
|
|
@@ -511,11 +511,11 @@ module SnapTrade
|
|
511
511
|
|
512
512
|
# Obtain a new user secret for a user
|
513
513
|
#
|
514
|
-
# This API is used to
|
515
|
-
# is
|
514
|
+
# This API is used to rotate the secret for a SnapTrade user. You might use this if a userSecret
|
515
|
+
# is compromised. Please note that if you call this endpoint and fail to save the new secret, you'll no longer be able to access any data for this user, and your only option will be to delete and recreate the user, then ask them to reconnect.
|
516
516
|
#
|
517
517
|
# @param user_id [String] SnapTrade User ID. This is chosen by the API partner and can be any string that is a) unique to the user, and b) immutable for the user. It is recommended to NOT use email addresses for this property because they are usually not immutable.
|
518
|
-
# @param user_secret [String] SnapTrade User Secret randomly generated by SnapTrade. This
|
518
|
+
# @param user_secret [String] SnapTrade User Secret randomly generated by SnapTrade. This is privileged information and if compromised, should be rotated via the SnapTrade API.
|
519
519
|
# @param body [UserIDandSecret]
|
520
520
|
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
|
521
521
|
def reset_snap_trade_user_secret(user_id: SENTINEL, user_secret: SENTINEL, extra: {})
|
@@ -529,11 +529,11 @@ module SnapTrade
|
|
529
529
|
|
530
530
|
# Obtain a new user secret for a user
|
531
531
|
#
|
532
|
-
# This API is used to
|
533
|
-
# is
|
532
|
+
# This API is used to rotate the secret for a SnapTrade user. You might use this if a userSecret
|
533
|
+
# is compromised. Please note that if you call this endpoint and fail to save the new secret, you'll no longer be able to access any data for this user, and your only option will be to delete and recreate the user, then ask them to reconnect.
|
534
534
|
#
|
535
535
|
# @param user_id [String] SnapTrade User ID. This is chosen by the API partner and can be any string that is a) unique to the user, and b) immutable for the user. It is recommended to NOT use email addresses for this property because they are usually not immutable.
|
536
|
-
# @param user_secret [String] SnapTrade User Secret randomly generated by SnapTrade. This
|
536
|
+
# @param user_secret [String] SnapTrade User Secret randomly generated by SnapTrade. This is privileged information and if compromised, should be rotated via the SnapTrade API.
|
537
537
|
# @param body [UserIDandSecret]
|
538
538
|
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
|
539
539
|
def reset_snap_trade_user_secret_with_http_info(user_id: SENTINEL, user_secret: SENTINEL, extra: {})
|
@@ -545,7 +545,7 @@ module SnapTrade
|
|
545
545
|
end
|
546
546
|
|
547
547
|
# Obtain a new user secret for a user
|
548
|
-
# This API is used to
|
548
|
+
# This API is used to rotate the secret for a SnapTrade user. You might use this if a userSecret is compromised. Please note that if you call this endpoint and fail to save the new secret, you'll no longer be able to access any data for this user, and your only option will be to delete and recreate the user, then ask them to reconnect.
|
549
549
|
# @param user_i_dand_secret [UserIDandSecret]
|
550
550
|
# @param [Hash] opts the optional parameters
|
551
551
|
# @return [UserIDandSecret]
|
@@ -555,7 +555,7 @@ module SnapTrade
|
|
555
555
|
end
|
556
556
|
|
557
557
|
# Obtain a new user secret for a user
|
558
|
-
# This API is used to
|
558
|
+
# This API is used to rotate the secret for a SnapTrade user. You might use this if a userSecret is compromised. Please note that if you call this endpoint and fail to save the new secret, you'll no longer be able to access any data for this user, and your only option will be to delete and recreate the user, then ask them to reconnect.
|
559
559
|
# @param user_i_dand_secret [UserIDandSecret]
|
560
560
|
# @param [Hash] opts the optional parameters
|
561
561
|
# @return [Array<(UserIDandSecret, Integer, Hash)>] UserIDandSecret data, response status code and response headers
|
@@ -15,10 +15,13 @@ module SnapTrade
|
|
15
15
|
class AccountSyncStatus
|
16
16
|
attr_accessor :transactions
|
17
17
|
|
18
|
+
attr_accessor :holdings
|
19
|
+
|
18
20
|
# Attribute mapping from ruby-style variable name to JSON key.
|
19
21
|
def self.attribute_map
|
20
22
|
{
|
21
|
-
:'transactions' => :'transactions'
|
23
|
+
:'transactions' => :'transactions',
|
24
|
+
:'holdings' => :'holdings'
|
22
25
|
}
|
23
26
|
end
|
24
27
|
|
@@ -30,7 +33,8 @@ module SnapTrade
|
|
30
33
|
# Attribute type mapping.
|
31
34
|
def self.openapi_types
|
32
35
|
{
|
33
|
-
:'transactions' => :'TransactionsStatus'
|
36
|
+
:'transactions' => :'TransactionsStatus',
|
37
|
+
:'holdings' => :'HoldingsStatus'
|
34
38
|
}
|
35
39
|
end
|
36
40
|
|
@@ -58,6 +62,10 @@ module SnapTrade
|
|
58
62
|
if attributes.key?(:'transactions')
|
59
63
|
self.transactions = attributes[:'transactions']
|
60
64
|
end
|
65
|
+
|
66
|
+
if attributes.key?(:'holdings')
|
67
|
+
self.holdings = attributes[:'holdings']
|
68
|
+
end
|
61
69
|
end
|
62
70
|
|
63
71
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -78,7 +86,8 @@ module SnapTrade
|
|
78
86
|
def ==(o)
|
79
87
|
return true if self.equal?(o)
|
80
88
|
self.class == o.class &&
|
81
|
-
transactions == o.transactions
|
89
|
+
transactions == o.transactions &&
|
90
|
+
holdings == o.holdings
|
82
91
|
end
|
83
92
|
|
84
93
|
# @see the `==` method
|
@@ -90,7 +99,7 @@ module SnapTrade
|
|
90
99
|
# Calculates hash code according to all attributes.
|
91
100
|
# @return [Integer] Hash code
|
92
101
|
def hash
|
93
|
-
[transactions].hash
|
102
|
+
[transactions, holdings].hash
|
94
103
|
end
|
95
104
|
|
96
105
|
# Builds the object from hash
|
@@ -0,0 +1,228 @@
|
|
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 'date'
|
11
|
+
require 'time'
|
12
|
+
|
13
|
+
module SnapTrade
|
14
|
+
# Status of account holdings sync
|
15
|
+
class HoldingsStatus
|
16
|
+
attr_accessor :initial_sync_completed
|
17
|
+
|
18
|
+
# Date in ISO 8601 format or null (YYYY-MM-DD HH:MM:SS.mmmmmmTZ)
|
19
|
+
attr_accessor :last_successful_sync
|
20
|
+
|
21
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
22
|
+
def self.attribute_map
|
23
|
+
{
|
24
|
+
:'initial_sync_completed' => :'initial_sync_completed',
|
25
|
+
:'last_successful_sync' => :'last_successful_sync'
|
26
|
+
}
|
27
|
+
end
|
28
|
+
|
29
|
+
# Returns all the JSON keys this model knows about
|
30
|
+
def self.acceptable_attributes
|
31
|
+
attribute_map.values
|
32
|
+
end
|
33
|
+
|
34
|
+
# Attribute type mapping.
|
35
|
+
def self.openapi_types
|
36
|
+
{
|
37
|
+
:'initial_sync_completed' => :'Boolean',
|
38
|
+
:'last_successful_sync' => :'String'
|
39
|
+
}
|
40
|
+
end
|
41
|
+
|
42
|
+
# List of attributes with nullable: true
|
43
|
+
def self.openapi_nullable
|
44
|
+
Set.new([
|
45
|
+
:'last_successful_sync'
|
46
|
+
])
|
47
|
+
end
|
48
|
+
|
49
|
+
# Initializes the object
|
50
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
51
|
+
def initialize(attributes = {})
|
52
|
+
if (!attributes.is_a?(Hash))
|
53
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `SnapTrade::HoldingsStatus` initialize method"
|
54
|
+
end
|
55
|
+
|
56
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
57
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
58
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
59
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `SnapTrade::HoldingsStatus`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
60
|
+
end
|
61
|
+
h[k.to_sym] = v
|
62
|
+
}
|
63
|
+
|
64
|
+
if attributes.key?(:'initial_sync_completed')
|
65
|
+
self.initial_sync_completed = attributes[:'initial_sync_completed']
|
66
|
+
end
|
67
|
+
|
68
|
+
if attributes.key?(:'last_successful_sync')
|
69
|
+
self.last_successful_sync = attributes[:'last_successful_sync']
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
74
|
+
# @return Array for valid properties with the reasons
|
75
|
+
def list_invalid_properties
|
76
|
+
invalid_properties = Array.new
|
77
|
+
invalid_properties
|
78
|
+
end
|
79
|
+
|
80
|
+
# Check to see if the all the properties in the model are valid
|
81
|
+
# @return true if the model is valid
|
82
|
+
def valid?
|
83
|
+
true
|
84
|
+
end
|
85
|
+
|
86
|
+
# Checks equality by comparing each attribute.
|
87
|
+
# @param [Object] Object to be compared
|
88
|
+
def ==(o)
|
89
|
+
return true if self.equal?(o)
|
90
|
+
self.class == o.class &&
|
91
|
+
initial_sync_completed == o.initial_sync_completed &&
|
92
|
+
last_successful_sync == o.last_successful_sync
|
93
|
+
end
|
94
|
+
|
95
|
+
# @see the `==` method
|
96
|
+
# @param [Object] Object to be compared
|
97
|
+
def eql?(o)
|
98
|
+
self == o
|
99
|
+
end
|
100
|
+
|
101
|
+
# Calculates hash code according to all attributes.
|
102
|
+
# @return [Integer] Hash code
|
103
|
+
def hash
|
104
|
+
[initial_sync_completed, last_successful_sync].hash
|
105
|
+
end
|
106
|
+
|
107
|
+
# Builds the object from hash
|
108
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
109
|
+
# @return [Object] Returns the model itself
|
110
|
+
def self.build_from_hash(attributes)
|
111
|
+
new.build_from_hash(attributes)
|
112
|
+
end
|
113
|
+
|
114
|
+
# Builds the object from hash
|
115
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
116
|
+
# @return [Object] Returns the model itself
|
117
|
+
def build_from_hash(attributes)
|
118
|
+
return nil unless attributes.is_a?(Hash)
|
119
|
+
attributes = attributes.transform_keys(&:to_sym)
|
120
|
+
self.class.openapi_types.each_pair do |key, type|
|
121
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
122
|
+
self.send("#{key}=", nil)
|
123
|
+
elsif type =~ /\AArray<(.*)>/i
|
124
|
+
# check to ensure the input is an array given that the attribute
|
125
|
+
# is documented as an array but the input is not
|
126
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
127
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
128
|
+
end
|
129
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
130
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
131
|
+
end
|
132
|
+
end
|
133
|
+
|
134
|
+
self
|
135
|
+
end
|
136
|
+
|
137
|
+
# Deserializes the data based on type
|
138
|
+
# @param string type Data type
|
139
|
+
# @param string value Value to be deserialized
|
140
|
+
# @return [Object] Deserialized data
|
141
|
+
def _deserialize(type, value)
|
142
|
+
case type.to_sym
|
143
|
+
when :Time
|
144
|
+
Time.parse(value)
|
145
|
+
when :Date
|
146
|
+
Date.parse(value)
|
147
|
+
when :String
|
148
|
+
value.to_s
|
149
|
+
when :Integer
|
150
|
+
value.to_i
|
151
|
+
when :Float
|
152
|
+
value.to_f
|
153
|
+
when :Boolean
|
154
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
155
|
+
true
|
156
|
+
else
|
157
|
+
false
|
158
|
+
end
|
159
|
+
when :Object
|
160
|
+
# generic object (usually a Hash), return directly
|
161
|
+
value
|
162
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
163
|
+
inner_type = Regexp.last_match[:inner_type]
|
164
|
+
value.map { |v| _deserialize(inner_type, v) }
|
165
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
166
|
+
k_type = Regexp.last_match[:k_type]
|
167
|
+
v_type = Regexp.last_match[:v_type]
|
168
|
+
{}.tap do |hash|
|
169
|
+
value.each do |k, v|
|
170
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
171
|
+
end
|
172
|
+
end
|
173
|
+
else # model
|
174
|
+
# models (e.g. Pet) or oneOf
|
175
|
+
klass = SnapTrade.const_get(type)
|
176
|
+
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
177
|
+
end
|
178
|
+
end
|
179
|
+
|
180
|
+
# Returns the string representation of the object
|
181
|
+
# @return [String] String presentation of the object
|
182
|
+
def to_s
|
183
|
+
to_hash.to_s
|
184
|
+
end
|
185
|
+
|
186
|
+
# to_body is an alias to to_hash (backward compatibility)
|
187
|
+
# @return [Hash] Returns the object in the form of hash
|
188
|
+
def to_body
|
189
|
+
to_hash
|
190
|
+
end
|
191
|
+
|
192
|
+
# Returns the object in the form of hash
|
193
|
+
# @return [Hash] Returns the object in the form of hash
|
194
|
+
def to_hash
|
195
|
+
hash = {}
|
196
|
+
self.class.attribute_map.each_pair do |attr, param|
|
197
|
+
value = self.send(attr)
|
198
|
+
if value.nil?
|
199
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
200
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
201
|
+
end
|
202
|
+
|
203
|
+
hash[param] = _to_hash(value)
|
204
|
+
end
|
205
|
+
hash
|
206
|
+
end
|
207
|
+
|
208
|
+
# Outputs non-array value in the form of hash
|
209
|
+
# For object, use to_hash. Otherwise, just return the value
|
210
|
+
# @param [Object] value Any valid value
|
211
|
+
# @return [Hash] Returns the value in the form of hash
|
212
|
+
def _to_hash(value)
|
213
|
+
if value.is_a?(Array)
|
214
|
+
value.compact.map { |v| _to_hash(v) }
|
215
|
+
elsif value.is_a?(Hash)
|
216
|
+
{}.tap do |hash|
|
217
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
218
|
+
end
|
219
|
+
elsif value.respond_to? :to_hash
|
220
|
+
value.to_hash
|
221
|
+
else
|
222
|
+
value
|
223
|
+
end
|
224
|
+
end
|
225
|
+
|
226
|
+
end
|
227
|
+
|
228
|
+
end
|
@@ -18,11 +18,15 @@ module SnapTrade
|
|
18
18
|
# Date in YYYY-MM-DD format or null
|
19
19
|
attr_accessor :last_successful_sync
|
20
20
|
|
21
|
+
# Date in YYYY-MM-DD format or null
|
22
|
+
attr_accessor :first_transaction_date
|
23
|
+
|
21
24
|
# Attribute mapping from ruby-style variable name to JSON key.
|
22
25
|
def self.attribute_map
|
23
26
|
{
|
24
27
|
:'initial_sync_completed' => :'initial_sync_completed',
|
25
|
-
:'last_successful_sync' => :'last_successful_sync'
|
28
|
+
:'last_successful_sync' => :'last_successful_sync',
|
29
|
+
:'first_transaction_date' => :'first_transaction_date'
|
26
30
|
}
|
27
31
|
end
|
28
32
|
|
@@ -35,14 +39,16 @@ module SnapTrade
|
|
35
39
|
def self.openapi_types
|
36
40
|
{
|
37
41
|
:'initial_sync_completed' => :'Boolean',
|
38
|
-
:'last_successful_sync' => :'Date'
|
42
|
+
:'last_successful_sync' => :'Date',
|
43
|
+
:'first_transaction_date' => :'Date'
|
39
44
|
}
|
40
45
|
end
|
41
46
|
|
42
47
|
# List of attributes with nullable: true
|
43
48
|
def self.openapi_nullable
|
44
49
|
Set.new([
|
45
|
-
:'last_successful_sync'
|
50
|
+
:'last_successful_sync',
|
51
|
+
:'first_transaction_date'
|
46
52
|
])
|
47
53
|
end
|
48
54
|
|
@@ -68,6 +74,10 @@ module SnapTrade
|
|
68
74
|
if attributes.key?(:'last_successful_sync')
|
69
75
|
self.last_successful_sync = attributes[:'last_successful_sync']
|
70
76
|
end
|
77
|
+
|
78
|
+
if attributes.key?(:'first_transaction_date')
|
79
|
+
self.first_transaction_date = attributes[:'first_transaction_date']
|
80
|
+
end
|
71
81
|
end
|
72
82
|
|
73
83
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -89,7 +99,8 @@ module SnapTrade
|
|
89
99
|
return true if self.equal?(o)
|
90
100
|
self.class == o.class &&
|
91
101
|
initial_sync_completed == o.initial_sync_completed &&
|
92
|
-
last_successful_sync == o.last_successful_sync
|
102
|
+
last_successful_sync == o.last_successful_sync &&
|
103
|
+
first_transaction_date == o.first_transaction_date
|
93
104
|
end
|
94
105
|
|
95
106
|
# @see the `==` method
|
@@ -101,7 +112,7 @@ module SnapTrade
|
|
101
112
|
# Calculates hash code according to all attributes.
|
102
113
|
# @return [Integer] Hash code
|
103
114
|
def hash
|
104
|
-
[initial_sync_completed, last_successful_sync].hash
|
115
|
+
[initial_sync_completed, last_successful_sync, first_transaction_date].hash
|
105
116
|
end
|
106
117
|
|
107
118
|
# Builds the object from hash
|
@@ -16,7 +16,7 @@ module SnapTrade
|
|
16
16
|
# SnapTrade User ID. This is chosen by the API partner and can be any string that is a) unique to the user, and b) immutable for the user. It is recommended to NOT use email addresses for this property because they are usually not immutable.
|
17
17
|
attr_accessor :user_id
|
18
18
|
|
19
|
-
# SnapTrade User Secret randomly generated by SnapTrade. This
|
19
|
+
# SnapTrade User Secret randomly generated by SnapTrade. This is privileged information and if compromised, should be rotated via the SnapTrade API.
|
20
20
|
attr_accessor :user_secret
|
21
21
|
|
22
22
|
# Attribute mapping from ruby-style variable name to JSON key.
|
data/lib/snaptrade/version.rb
CHANGED
data/lib/snaptrade.rb
CHANGED
@@ -57,6 +57,7 @@ require 'snaptrade/models/exchange'
|
|
57
57
|
require 'snaptrade/models/exchange_rate_pairs'
|
58
58
|
require 'snaptrade/models/excluded_asset'
|
59
59
|
require 'snaptrade/models/figi_instrument'
|
60
|
+
require 'snaptrade/models/holdings_status'
|
60
61
|
require 'snaptrade/models/jwt'
|
61
62
|
require 'snaptrade/models/login_redirect_uri'
|
62
63
|
require 'snaptrade/models/manual_trade'
|
@@ -91,7 +91,7 @@ describe 'AuthenticationApi' do
|
|
91
91
|
|
92
92
|
# unit tests for reset_snap_trade_user_secret
|
93
93
|
# Obtain a new user secret for a user
|
94
|
-
# This API is used to
|
94
|
+
# This API is used to rotate the secret for a SnapTrade user. You might use this if a userSecret is compromised. Please note that if you call this endpoint and fail to save the new secret, you'll no longer be able to access any data for this user, and your only option will be to delete and recreate the user, then ask them to reconnect.
|
95
95
|
# @param user_i_dand_secret
|
96
96
|
# @param [Hash] opts the optional parameters
|
97
97
|
# @return [UserIDandSecret]
|
@@ -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::HoldingsStatus
|
15
|
+
describe SnapTrade::HoldingsStatus do
|
16
|
+
let(:instance) { SnapTrade::HoldingsStatus.new }
|
17
|
+
|
18
|
+
describe 'test an instance of HoldingsStatus' do
|
19
|
+
it 'should create an instance of HoldingsStatus' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::HoldingsStatus)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "initial_sync_completed"' 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 "last_successful_sync"' 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
|
@@ -32,4 +32,10 @@ describe SnapTrade::TransactionsStatus do
|
|
32
32
|
end
|
33
33
|
end
|
34
34
|
|
35
|
+
describe 'test attribute "first_transaction_date"' 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
|
+
|
35
41
|
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.28
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- SnapTrade
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -136,6 +136,7 @@ files:
|
|
136
136
|
- lib/snaptrade/models/exchange_rate_pairs.rb
|
137
137
|
- lib/snaptrade/models/excluded_asset.rb
|
138
138
|
- lib/snaptrade/models/figi_instrument.rb
|
139
|
+
- lib/snaptrade/models/holdings_status.rb
|
139
140
|
- lib/snaptrade/models/jwt.rb
|
140
141
|
- lib/snaptrade/models/login_redirect_uri.rb
|
141
142
|
- lib/snaptrade/models/manual_trade.rb
|
@@ -289,6 +290,7 @@ files:
|
|
289
290
|
- spec/models/exchange_spec.rb
|
290
291
|
- spec/models/excluded_asset_spec.rb
|
291
292
|
- spec/models/figi_instrument_spec.rb
|
293
|
+
- spec/models/holdings_status_spec.rb
|
292
294
|
- spec/models/jwt_spec.rb
|
293
295
|
- spec/models/login_redirect_uri_spec.rb
|
294
296
|
- spec/models/manual_trade_and_impact_spec.rb
|
@@ -464,6 +466,7 @@ test_files:
|
|
464
466
|
- spec/models/model500_unexpected_exception_response_spec.rb
|
465
467
|
- spec/models/brokerage_authorization_type_read_only_type_spec.rb
|
466
468
|
- spec/models/manual_trade_symbol_spec.rb
|
469
|
+
- spec/models/holdings_status_spec.rb
|
467
470
|
- spec/models/position_spec.rb
|
468
471
|
- spec/models/notional_value_spec.rb
|
469
472
|
- spec/models/trade_action_spec.rb
|