snaptrade 2.0.42 → 2.0.43

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: ef0e42437344c3de95a109e8b65a5297915515a37230c0aa443eaeace9213dab
4
- data.tar.gz: 0d6217ba0036003029c403384e8355b2785a485e98443b6bc07513b47f482d9c
3
+ metadata.gz: 23a2e3fed05b3c17d3f7ab8dac5541766ba2a112c6d1f14ac5e4f0f9b2ed5c29
4
+ data.tar.gz: 609e612c05e085c990ef3bfe195d62eb9849111a409c85e0b8c58f50760c9947
5
5
  SHA512:
6
- metadata.gz: ff422a9c92ce394d98e1d0de8aeaee6f73e07864d8e369551be867ebd1af291aac78ac5461969e605f8b21045c269f485b1233b6b787426258991c8a6a2ea68d
7
- data.tar.gz: f1a5b614e521789000a54df2252ca23191043f60ee9ee5a3a748e53683ba34a70ca555588b4d2f15de83785ec6a294389c7986b1416a4547cc1b01e32fd60642
6
+ metadata.gz: 7badc683104a2fe4bc32db98ae561c2865433d4fc861d3c0b73420f850757a4cecdb5fb4be78f7efdbe1bcea1839437e9c05e3f9446eeef6d9dde879ed5ab7af
7
+ data.tar.gz: 3277c3fc4f7367d6f55c699dbd27bc7abfc0b71ff67a4af619eee0ffbef9801d5805c04af1aa252d8cda41f89199b5ca7bd257eab0ed18d3ec3df5be081db038
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- snaptrade (2.0.42)
4
+ snaptrade (2.0.43)
5
5
  faraday (>= 1.0.1, < 3.0)
6
6
  faraday-multipart (~> 1.0, >= 1.0.4)
7
7
 
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.42-blue)](https://rubygems.org/gems/snaptrade/versions/2.0.42)
9
+ [![npm](https://img.shields.io/badge/gem-v2.0.43-blue)](https://rubygems.org/gems/snaptrade/versions/2.0.43)
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.42'
73
+ gem 'snaptrade', '~> 2.0.43'
74
74
  ```
75
75
 
76
76
  ## Getting Started<a id="getting-started"></a>
@@ -1089,7 +1089,7 @@ A currency pair based on currency code for example, {CAD-USD}
1089
1089
 
1090
1090
  ### `snaptrade.reference_data.get_partner_info`<a id="snaptradereference_dataget_partner_info"></a>
1091
1091
 
1092
- Returns useful data related to the specified ClientID, including allowed brokerages and data access.
1092
+ Returns configurations for your SnapTrade Client ID, including allowed brokerages and data access.
1093
1093
 
1094
1094
  #### 🛠️ Usage<a id="🛠️-usage"></a>
1095
1095
 
@@ -1113,7 +1113,7 @@ p result
1113
1113
 
1114
1114
  ### `snaptrade.reference_data.get_security_types`<a id="snaptradereference_dataget_security_types"></a>
1115
1115
 
1116
- List security types available on SnapTrade.
1116
+ Return all available security types supported by SnapTrade.
1117
1117
 
1118
1118
  #### 🛠️ Usage<a id="🛠️-usage"></a>
1119
1119
 
@@ -102,9 +102,9 @@ module SnapTrade
102
102
  end
103
103
 
104
104
 
105
- # Get metadata related to Snaptrade partner
105
+ # Get Client Info
106
106
  #
107
- # Returns useful data related to the specified ClientID, including allowed brokerages and data access.
107
+ # Returns configurations for your SnapTrade Client ID, including allowed brokerages and data access.
108
108
  #
109
109
  # @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
110
110
  def get_partner_info(extra: {})
@@ -112,17 +112,17 @@ module SnapTrade
112
112
  data
113
113
  end
114
114
 
115
- # Get metadata related to Snaptrade partner
115
+ # Get Client Info
116
116
  #
117
- # Returns useful data related to the specified ClientID, including allowed brokerages and data access.
117
+ # Returns configurations for your SnapTrade Client ID, including allowed brokerages and data access.
118
118
  #
119
119
  # @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
120
120
  def get_partner_info_with_http_info(extra: {})
121
121
  get_partner_info_with_http_info_impl(extra)
122
122
  end
123
123
 
124
- # Get metadata related to Snaptrade partner
125
- # Returns useful data related to the specified ClientID, including allowed brokerages and data access.
124
+ # Get Client Info
125
+ # Returns configurations for your SnapTrade Client ID, including allowed brokerages and data access.
126
126
  # @param [Hash] opts the optional parameters
127
127
  # @return [PartnerData]
128
128
  private def get_partner_info_impl(opts = {})
@@ -130,8 +130,8 @@ module SnapTrade
130
130
  data
131
131
  end
132
132
 
133
- # Get metadata related to Snaptrade partner
134
- # Returns useful data related to the specified ClientID, including allowed brokerages and data access.
133
+ # Get Client Info
134
+ # Returns configurations for your SnapTrade Client ID, including allowed brokerages and data access.
135
135
  # @param [Hash] opts the optional parameters
136
136
  # @return [Array<(PartnerData, Integer, Hash)>] PartnerData data, response status code and response headers
137
137
  private def get_partner_info_with_http_info_impl(opts = {})
@@ -179,9 +179,9 @@ module SnapTrade
179
179
  end
180
180
 
181
181
 
182
- # List of all security types
182
+ # List security types
183
183
  #
184
- # List security types available on SnapTrade.
184
+ # Return all available security types supported by SnapTrade.
185
185
  #
186
186
  # @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
187
187
  def get_security_types(extra: {})
@@ -189,17 +189,17 @@ module SnapTrade
189
189
  data
190
190
  end
191
191
 
192
- # List of all security types
192
+ # List security types
193
193
  #
194
- # List security types available on SnapTrade.
194
+ # Return all available security types supported by SnapTrade.
195
195
  #
196
196
  # @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
197
197
  def get_security_types_with_http_info(extra: {})
198
198
  get_security_types_with_http_info_impl(extra)
199
199
  end
200
200
 
201
- # List of all security types
202
- # List security types available on SnapTrade.
201
+ # List security types
202
+ # Return all available security types supported by SnapTrade.
203
203
  # @param [Hash] opts the optional parameters
204
204
  # @return [Array<SecurityType>]
205
205
  private def get_security_types_impl(opts = {})
@@ -207,8 +207,8 @@ module SnapTrade
207
207
  data
208
208
  end
209
209
 
210
- # List of all security types
211
- # List security types available on SnapTrade.
210
+ # List security types
211
+ # Return all available security types supported by SnapTrade.
212
212
  # @param [Hash] opts the optional parameters
213
213
  # @return [Array<(Array<SecurityType>, Integer, Hash)>] Array<SecurityType> data, response status code and response headers
214
214
  private def get_security_types_with_http_info_impl(opts = {})
@@ -11,59 +11,59 @@ require 'date'
11
11
  require 'time'
12
12
 
13
13
  module SnapTrade
14
- # SnapTrade Partner metadata
14
+ # Configurations for your SnapTrade Client ID, including allowed brokerages and data access.
15
15
  class PartnerData
16
- # URI to redirect user back to after user is done adding brokerage connections
17
- attr_accessor :redirect_uri
18
-
19
- # Brokerages that can be accessed by partners
20
- attr_accessor :allowed_brokerages
16
+ # A short, unique identifier for your company or product.
17
+ attr_accessor :slug
21
18
 
22
- # Name of Snaptrade Partner
19
+ # Your company or product name.
23
20
  attr_accessor :name
24
21
 
25
- # Slug of Snaptrade Partner
26
- attr_accessor :slug
27
-
28
- # URL to partner's logo
22
+ # URL to your company or product logo.
29
23
  attr_accessor :logo_url
30
24
 
31
- # Shows if pin is required by users to access connection page
32
- attr_accessor :pin_required
25
+ # Brokerages that can be accessed by your Client ID.
26
+ attr_accessor :allowed_brokerages
33
27
 
34
- # Shows if users of Snaptrade partners can access trade endpoints
28
+ # Whether trading is enabled for your SnapTrade Client ID.
35
29
  attr_accessor :can_access_trades
36
30
 
37
- # Shows if Snaptrade partners can get user holdings data
31
+ # Whether holdings data is enabled for your SnapTrade Client ID.
38
32
  attr_accessor :can_access_holdings
39
33
 
40
- # Shows if Snaptrade partners can get users account history data
34
+ # Whether account historical transactions is enabled for your SnapTrade Client ID.
41
35
  attr_accessor :can_access_account_history
42
36
 
43
- # Shows if Snaptrade partners can get users holdings data
37
+ # Whether reference data is enabled for your SnapTrade Client ID.
44
38
  attr_accessor :can_access_reference_data
45
39
 
46
- # Shows if users Snaptrade partners can access portfolio group management features
40
+ # Whether portfolio management is enabled for your SnapTrade Client ID.
47
41
  attr_accessor :can_access_portfolio_management
48
42
 
49
- # Shows if Snaptrade partners can get users account order history
43
+ # Whether recent order history is enabled for your SnapTrade Client ID.
50
44
  attr_accessor :can_access_orders
51
45
 
46
+ # URI to redirect user back to after user is done adding brokerage connections.
47
+ attr_accessor :redirect_uri
48
+
49
+ # Shows if pin is required by users to access connection page. This field has been deprecated.
50
+ attr_accessor :pin_required
51
+
52
52
  # Attribute mapping from ruby-style variable name to JSON key.
53
53
  def self.attribute_map
54
54
  {
55
- :'redirect_uri' => :'redirect_uri',
56
- :'allowed_brokerages' => :'allowed_brokerages',
57
- :'name' => :'name',
58
55
  :'slug' => :'slug',
56
+ :'name' => :'name',
59
57
  :'logo_url' => :'logo_url',
60
- :'pin_required' => :'pin_required',
58
+ :'allowed_brokerages' => :'allowed_brokerages',
61
59
  :'can_access_trades' => :'can_access_trades',
62
60
  :'can_access_holdings' => :'can_access_holdings',
63
61
  :'can_access_account_history' => :'can_access_account_history',
64
62
  :'can_access_reference_data' => :'can_access_reference_data',
65
63
  :'can_access_portfolio_management' => :'can_access_portfolio_management',
66
- :'can_access_orders' => :'can_access_orders'
64
+ :'can_access_orders' => :'can_access_orders',
65
+ :'redirect_uri' => :'redirect_uri',
66
+ :'pin_required' => :'pin_required'
67
67
  }
68
68
  end
69
69
 
@@ -75,18 +75,18 @@ module SnapTrade
75
75
  # Attribute type mapping.
76
76
  def self.openapi_types
77
77
  {
78
- :'redirect_uri' => :'String',
79
- :'allowed_brokerages' => :'Array<Brokerage>',
80
- :'name' => :'String',
81
78
  :'slug' => :'String',
79
+ :'name' => :'String',
82
80
  :'logo_url' => :'String',
83
- :'pin_required' => :'Boolean',
81
+ :'allowed_brokerages' => :'Array<Brokerage>',
84
82
  :'can_access_trades' => :'Boolean',
85
83
  :'can_access_holdings' => :'Boolean',
86
84
  :'can_access_account_history' => :'Boolean',
87
85
  :'can_access_reference_data' => :'Boolean',
88
86
  :'can_access_portfolio_management' => :'Boolean',
89
- :'can_access_orders' => :'Boolean'
87
+ :'can_access_orders' => :'Boolean',
88
+ :'redirect_uri' => :'String',
89
+ :'pin_required' => :'Boolean'
90
90
  }
91
91
  end
92
92
 
@@ -111,30 +111,22 @@ module SnapTrade
111
111
  h[k.to_sym] = v
112
112
  }
113
113
 
114
- if attributes.key?(:'redirect_uri')
115
- self.redirect_uri = attributes[:'redirect_uri']
116
- end
117
-
118
- if attributes.key?(:'allowed_brokerages')
119
- if (value = attributes[:'allowed_brokerages']).is_a?(Array)
120
- self.allowed_brokerages = value
121
- end
114
+ if attributes.key?(:'slug')
115
+ self.slug = attributes[:'slug']
122
116
  end
123
117
 
124
118
  if attributes.key?(:'name')
125
119
  self.name = attributes[:'name']
126
120
  end
127
121
 
128
- if attributes.key?(:'slug')
129
- self.slug = attributes[:'slug']
130
- end
131
-
132
122
  if attributes.key?(:'logo_url')
133
123
  self.logo_url = attributes[:'logo_url']
134
124
  end
135
125
 
136
- if attributes.key?(:'pin_required')
137
- self.pin_required = attributes[:'pin_required']
126
+ if attributes.key?(:'allowed_brokerages')
127
+ if (value = attributes[:'allowed_brokerages']).is_a?(Array)
128
+ self.allowed_brokerages = value
129
+ end
138
130
  end
139
131
 
140
132
  if attributes.key?(:'can_access_trades')
@@ -160,6 +152,14 @@ module SnapTrade
160
152
  if attributes.key?(:'can_access_orders')
161
153
  self.can_access_orders = attributes[:'can_access_orders']
162
154
  end
155
+
156
+ if attributes.key?(:'redirect_uri')
157
+ self.redirect_uri = attributes[:'redirect_uri']
158
+ end
159
+
160
+ if attributes.key?(:'pin_required')
161
+ self.pin_required = attributes[:'pin_required']
162
+ end
163
163
  end
164
164
 
165
165
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -180,18 +180,18 @@ module SnapTrade
180
180
  def ==(o)
181
181
  return true if self.equal?(o)
182
182
  self.class == o.class &&
183
- redirect_uri == o.redirect_uri &&
184
- allowed_brokerages == o.allowed_brokerages &&
185
- name == o.name &&
186
183
  slug == o.slug &&
184
+ name == o.name &&
187
185
  logo_url == o.logo_url &&
188
- pin_required == o.pin_required &&
186
+ allowed_brokerages == o.allowed_brokerages &&
189
187
  can_access_trades == o.can_access_trades &&
190
188
  can_access_holdings == o.can_access_holdings &&
191
189
  can_access_account_history == o.can_access_account_history &&
192
190
  can_access_reference_data == o.can_access_reference_data &&
193
191
  can_access_portfolio_management == o.can_access_portfolio_management &&
194
- can_access_orders == o.can_access_orders
192
+ can_access_orders == o.can_access_orders &&
193
+ redirect_uri == o.redirect_uri &&
194
+ pin_required == o.pin_required
195
195
  end
196
196
 
197
197
  # @see the `==` method
@@ -203,7 +203,7 @@ module SnapTrade
203
203
  # Calculates hash code according to all attributes.
204
204
  # @return [Integer] Hash code
205
205
  def hash
206
- [redirect_uri, allowed_brokerages, name, slug, logo_url, pin_required, can_access_trades, can_access_holdings, can_access_account_history, can_access_reference_data, can_access_portfolio_management, can_access_orders].hash
206
+ [slug, name, logo_url, allowed_brokerages, can_access_trades, can_access_holdings, can_access_account_history, can_access_reference_data, can_access_portfolio_management, can_access_orders, redirect_uri, pin_required].hash
207
207
  end
208
208
 
209
209
  # Builds the object from hash
@@ -8,5 +8,5 @@ Contact: api@snaptrade.com
8
8
  =end
9
9
 
10
10
  module SnapTrade
11
- VERSION = '2.0.42'
11
+ VERSION = '2.0.43'
12
12
  end
@@ -40,8 +40,8 @@ describe 'ReferenceDataApi' do
40
40
  end
41
41
 
42
42
  # unit tests for get_partner_info
43
- # Get metadata related to Snaptrade partner
44
- # Returns useful data related to the specified ClientID, including allowed brokerages and data access.
43
+ # Get Client Info
44
+ # Returns configurations for your SnapTrade Client ID, including allowed brokerages and data access.
45
45
  # @param [Hash] opts the optional parameters
46
46
  # @return [PartnerData]
47
47
  describe 'get_partner_info test' do
@@ -51,8 +51,8 @@ describe 'ReferenceDataApi' do
51
51
  end
52
52
 
53
53
  # unit tests for get_security_types
54
- # List of all security types
55
- # List security types available on SnapTrade.
54
+ # List security types
55
+ # Return all available security types supported by SnapTrade.
56
56
  # @param [Hash] opts the optional parameters
57
57
  # @return [Array<SecurityType>]
58
58
  describe 'get_security_types test' do
@@ -20,73 +20,73 @@ describe SnapTrade::PartnerData do
20
20
  expect(instance).to be_instance_of(SnapTrade::PartnerData)
21
21
  end
22
22
  end
23
- describe 'test attribute "redirect_uri"' do
23
+ describe 'test attribute "slug"' do
24
24
  it 'should work' do
25
25
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
26
26
  end
27
27
  end
28
28
 
29
- describe 'test attribute "allowed_brokerages"' do
29
+ describe 'test attribute "name"' do
30
30
  it 'should work' do
31
31
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
32
32
  end
33
33
  end
34
34
 
35
- describe 'test attribute "name"' do
35
+ describe 'test attribute "logo_url"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "slug"' do
41
+ describe 'test attribute "allowed_brokerages"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "logo_url"' do
47
+ describe 'test attribute "can_access_trades"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "pin_required"' do
53
+ describe 'test attribute "can_access_holdings"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "can_access_trades"' do
59
+ describe 'test attribute "can_access_account_history"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "can_access_holdings"' do
65
+ describe 'test attribute "can_access_reference_data"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "can_access_account_history"' do
71
+ describe 'test attribute "can_access_portfolio_management"' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
74
  end
75
75
  end
76
76
 
77
- describe 'test attribute "can_access_reference_data"' do
77
+ describe 'test attribute "can_access_orders"' do
78
78
  it 'should work' do
79
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
80
  end
81
81
  end
82
82
 
83
- describe 'test attribute "can_access_portfolio_management"' do
83
+ describe 'test attribute "redirect_uri"' do
84
84
  it 'should work' do
85
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
86
  end
87
87
  end
88
88
 
89
- describe 'test attribute "can_access_orders"' do
89
+ describe 'test attribute "pin_required"' do
90
90
  it 'should work' do
91
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
92
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: snaptrade
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.42
4
+ version: 2.0.43
5
5
  platform: ruby
6
6
  authors:
7
7
  - SnapTrade