snaptrade 2.0.116 → 2.0.117

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: 286bc72cce7d1cedbfdbb66011245dfdca9ad4d1639aeb1fccd7321bfbc991a3
4
- data.tar.gz: 3f3cd48fa580c1045df50c4a9cfef7375d023bcdc6dbf1da7d5d0886c58ed03b
3
+ metadata.gz: ef8201400909485368df1fdff26fabb434749cfa6475781b2c84a6cb378184d5
4
+ data.tar.gz: e7b8fd71649e94331387ba7fd07ddebd598925fb75f3632a2c6082786673fc58
5
5
  SHA512:
6
- metadata.gz: f64fb103fde2f463dce48793529c00452040b1f4b5d204c27e6687b0823a12b998a4b0fc4896d9506036b99a7e02fc58b4ad5095a6c540194a679aa901ff5e86
7
- data.tar.gz: e171eb9563c35a6006e90d1579e2b10c51c520957151ab524aa8b19b6d2230406849f73a60730ea5db35b717233e3ce040b969b8f746fa9a3d9842713306093c
6
+ metadata.gz: 3ffc04aaf4004e7ab947e6bd01d8ff42a90203e4e59a711c3cf155410da61b6a72f7d5e05b4a4c009fd406822d2038229d46b1b1073431a49266c0bd9180cb05
7
+ data.tar.gz: 14194d51f2342ec95993408cf0f067047d554f46db5fdc65ea78be9d001ce8487ea1f2270f410e6a1391c8c00a06a008e7bec3afe1737086eebc2957929f9ac9
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- snaptrade (2.0.116)
4
+ snaptrade (2.0.117)
5
5
  faraday (>= 1.0.1, < 3.0)
6
6
  faraday-multipart (~> 1.0, >= 1.0.4)
7
7
 
@@ -29,7 +29,7 @@ GEM
29
29
  method_source (1.1.0)
30
30
  multipart-post (2.4.1)
31
31
  parallel (1.27.0)
32
- parser (3.3.8.0)
32
+ parser (3.3.9.0)
33
33
  ast (~> 2.4.1)
34
34
  racc
35
35
  prism (1.4.0)
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.116-blue)](https://rubygems.org/gems/snaptrade/versions/2.0.116)
9
+ [![npm](https://img.shields.io/badge/gem-v2.0.117-blue)](https://rubygems.org/gems/snaptrade/versions/2.0.117)
10
10
  [![More Info](https://img.shields.io/badge/More%20Info-Click%20Here-orange)](https://snaptrade.com/)
11
11
 
12
12
  </div>
@@ -82,7 +82,7 @@ Connect brokerage accounts to your app for live positions and trading
82
82
  Add to Gemfile:
83
83
 
84
84
  ```ruby
85
- gem 'snaptrade', '~> 2.0.116'
85
+ gem 'snaptrade', '~> 2.0.117'
86
86
  ```
87
87
 
88
88
  ## Getting Started<a id="getting-started"></a>
@@ -1603,13 +1603,16 @@ p result
1603
1603
  ##### user_secret: `String`<a id="user_secret-string"></a>
1604
1604
  ##### account_id: `String`<a id="account_id-string"></a>
1605
1605
  ##### brokerage_order_id: `String`<a id="brokerage_order_id-string"></a>
1606
+ Order ID returned by brokerage. This is the unique identifier for the order in
1607
+ the brokerage system.
1608
+
1606
1609
  #### 🔄 Return<a id="🔄-return"></a>
1607
1610
 
1608
- [OrderUpdatedResponse](./lib/snaptrade/models/order_updated_response.rb)
1611
+ [CancelOrderResponse](./lib/snaptrade/models/cancel_order_response.rb)
1609
1612
 
1610
1613
  #### 🌐 Endpoint<a id="🌐-endpoint"></a>
1611
1614
 
1612
- `/accounts/{accountId}/trading/simple/{brokerageOrderId}/cancel` `POST`
1615
+ `/accounts/{accountId}/trading/cancel` `POST`
1613
1616
 
1614
1617
  [🔙 **Back to Table of Contents**](#table-of-contents)
1615
1618
 
@@ -17,55 +17,63 @@ module SnapTrade
17
17
  @api_client = api_client
18
18
  end
19
19
 
20
- # Cancel crypto order
20
+ # Cancel order
21
21
  #
22
22
  # Cancels an order in the specified account.
23
23
  #
24
24
  # @param user_id [String]
25
25
  # @param user_secret [String]
26
26
  # @param account_id [String]
27
- # @param brokerage_order_id [String]
27
+ # @param brokerage_order_id [String] Order ID returned by brokerage. This is the unique identifier for the order in the brokerage system.
28
+ # @param body [TradingCancelUserAccountOrderRequest]
28
29
  # @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
29
- def cancel_order(user_id:, user_secret:, account_id:, brokerage_order_id:, extra: {})
30
- data, _status_code, _headers = cancel_order_with_http_info_impl(user_id, user_secret, account_id, brokerage_order_id, extra)
30
+ def cancel_order(user_id:, user_secret:, account_id:, brokerage_order_id: SENTINEL, extra: {})
31
+ _body = {}
32
+ _body[:brokerage_order_id] = brokerage_order_id if brokerage_order_id != SENTINEL
33
+ trading_cancel_user_account_order_request = _body
34
+ data, _status_code, _headers = cancel_order_with_http_info_impl(user_id, user_secret, account_id, trading_cancel_user_account_order_request, extra)
31
35
  data
32
36
  end
33
37
 
34
- # Cancel crypto order
38
+ # Cancel order
35
39
  #
36
40
  # Cancels an order in the specified account.
37
41
  #
38
42
  # @param user_id [String]
39
43
  # @param user_secret [String]
40
44
  # @param account_id [String]
41
- # @param brokerage_order_id [String]
45
+ # @param brokerage_order_id [String] Order ID returned by brokerage. This is the unique identifier for the order in the brokerage system.
46
+ # @param body [TradingCancelUserAccountOrderRequest]
42
47
  # @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
43
- def cancel_order_with_http_info(user_id:, user_secret:, account_id:, brokerage_order_id:, extra: {})
44
- cancel_order_with_http_info_impl(user_id, user_secret, account_id, brokerage_order_id, extra)
48
+ def cancel_order_with_http_info(user_id:, user_secret:, account_id:, brokerage_order_id: SENTINEL, extra: {})
49
+ _body = {}
50
+ _body[:brokerage_order_id] = brokerage_order_id if brokerage_order_id != SENTINEL
51
+ trading_cancel_user_account_order_request = _body
52
+ cancel_order_with_http_info_impl(user_id, user_secret, account_id, trading_cancel_user_account_order_request, extra)
45
53
  end
46
54
 
47
- # Cancel crypto order
55
+ # Cancel order
48
56
  # Cancels an order in the specified account.
49
57
  # @param user_id [String]
50
58
  # @param user_secret [String]
51
59
  # @param account_id [String]
52
- # @param brokerage_order_id [String]
60
+ # @param trading_cancel_user_account_order_request [TradingCancelUserAccountOrderRequest]
53
61
  # @param [Hash] opts the optional parameters
54
- # @return [OrderUpdatedResponse]
55
- private def cancel_order_impl(user_id, user_secret, account_id, brokerage_order_id, opts = {})
56
- data, _status_code, _headers = cancel_order_with_http_info(user_id, user_secret, account_id, brokerage_order_id, opts)
62
+ # @return [CancelOrderResponse]
63
+ private def cancel_order_impl(user_id, user_secret, account_id, trading_cancel_user_account_order_request, opts = {})
64
+ data, _status_code, _headers = cancel_order_with_http_info(user_id, user_secret, account_id, trading_cancel_user_account_order_request, opts)
57
65
  data
58
66
  end
59
67
 
60
- # Cancel crypto order
68
+ # Cancel order
61
69
  # Cancels an order in the specified account.
62
70
  # @param user_id [String]
63
71
  # @param user_secret [String]
64
72
  # @param account_id [String]
65
- # @param brokerage_order_id [String]
73
+ # @param trading_cancel_user_account_order_request [TradingCancelUserAccountOrderRequest]
66
74
  # @param [Hash] opts the optional parameters
67
- # @return [Array<(OrderUpdatedResponse, Integer, Hash)>] OrderUpdatedResponse data, response status code and response headers
68
- private def cancel_order_with_http_info_impl(user_id, user_secret, account_id, brokerage_order_id, opts = {})
75
+ # @return [Array<(CancelOrderResponse, Integer, Hash)>] CancelOrderResponse data, response status code and response headers
76
+ private def cancel_order_with_http_info_impl(user_id, user_secret, account_id, trading_cancel_user_account_order_request, opts = {})
69
77
  if @api_client.config.debugging
70
78
  @api_client.config.logger.debug 'Calling API: TradingApi.cancel_order ...'
71
79
  end
@@ -81,12 +89,12 @@ module SnapTrade
81
89
  if @api_client.config.client_side_validation && account_id.nil?
82
90
  fail ArgumentError, "Missing the required parameter 'account_id' when calling TradingApi.cancel_order"
83
91
  end
84
- # verify the required parameter 'brokerage_order_id' is set
85
- if @api_client.config.client_side_validation && brokerage_order_id.nil?
86
- fail ArgumentError, "Missing the required parameter 'brokerage_order_id' when calling TradingApi.cancel_order"
92
+ # verify the required parameter 'trading_cancel_user_account_order_request' is set
93
+ if @api_client.config.client_side_validation && trading_cancel_user_account_order_request.nil?
94
+ fail ArgumentError, "Missing the required parameter 'trading_cancel_user_account_order_request' when calling TradingApi.cancel_order"
87
95
  end
88
96
  # resource path
89
- local_var_path = '/accounts/{accountId}/trading/simple/{brokerageOrderId}/cancel'.sub('{' + 'accountId' + '}', CGI.escape(account_id.to_s)).sub('{' + 'brokerageOrderId' + '}', CGI.escape(brokerage_order_id.to_s))
97
+ local_var_path = '/accounts/{accountId}/trading/cancel'.sub('{' + 'accountId' + '}', CGI.escape(account_id.to_s))
90
98
 
91
99
  # query parameters
92
100
  query_params = opts[:query_params] || {}
@@ -97,15 +105,20 @@ module SnapTrade
97
105
  header_params = opts[:header_params] || {}
98
106
  # HTTP header 'Accept' (if needed)
99
107
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
108
+ # HTTP header 'Content-Type'
109
+ content_type = @api_client.select_header_content_type(['application/json'])
110
+ if !content_type.nil?
111
+ header_params['Content-Type'] = content_type
112
+ end
100
113
 
101
114
  # form parameters
102
115
  form_params = opts[:form_params] || {}
103
116
 
104
117
  # http body (model)
105
- post_body = opts[:debug_body]
118
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(trading_cancel_user_account_order_request)
106
119
 
107
120
  # return_type
108
- return_type = opts[:debug_return_type] || 'OrderUpdatedResponse'
121
+ return_type = opts[:debug_return_type] || 'CancelOrderResponse'
109
122
 
110
123
  # auth_names
111
124
  auth_names = opts[:debug_auth_names] || ['PartnerClientId', 'PartnerSignature', 'PartnerTimestamp']
@@ -0,0 +1,235 @@
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
+ class CancelOrderResponse
15
+ # Order ID returned by brokerage. This is the unique identifier for the order in the brokerage system.
16
+ attr_accessor :brokerage_order_id
17
+
18
+ # The raw response from the brokerage.
19
+ attr_accessor :raw_response
20
+
21
+ # Attribute mapping from ruby-style variable name to JSON key.
22
+ def self.attribute_map
23
+ {
24
+ :'brokerage_order_id' => :'brokerage_order_id',
25
+ :'raw_response' => :'raw_response'
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
+ :'brokerage_order_id' => :'String',
38
+ :'raw_response' => :'Hash<String, Object>'
39
+ }
40
+ end
41
+
42
+ # List of attributes with nullable: true
43
+ def self.openapi_nullable
44
+ Set.new([
45
+ :'raw_response'
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::CancelOrderResponse` 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::CancelOrderResponse`. 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?(:'brokerage_order_id')
65
+ self.brokerage_order_id = attributes[:'brokerage_order_id']
66
+ end
67
+
68
+ if attributes.key?(:'raw_response')
69
+ if (value = attributes[:'raw_response']).is_a?(Hash)
70
+ self.raw_response = value
71
+ end
72
+ end
73
+ end
74
+
75
+ # Show invalid properties with the reasons. Usually used together with valid?
76
+ # @return Array for valid properties with the reasons
77
+ def list_invalid_properties
78
+ invalid_properties = Array.new
79
+ if @brokerage_order_id.nil?
80
+ invalid_properties.push('invalid value for "brokerage_order_id", brokerage_order_id cannot be nil.')
81
+ end
82
+
83
+ invalid_properties
84
+ end
85
+
86
+ # Check to see if the all the properties in the model are valid
87
+ # @return true if the model is valid
88
+ def valid?
89
+ return false if @brokerage_order_id.nil?
90
+ true
91
+ end
92
+
93
+ # Checks equality by comparing each attribute.
94
+ # @param [Object] Object to be compared
95
+ def ==(o)
96
+ return true if self.equal?(o)
97
+ self.class == o.class &&
98
+ brokerage_order_id == o.brokerage_order_id &&
99
+ raw_response == o.raw_response
100
+ end
101
+
102
+ # @see the `==` method
103
+ # @param [Object] Object to be compared
104
+ def eql?(o)
105
+ self == o
106
+ end
107
+
108
+ # Calculates hash code according to all attributes.
109
+ # @return [Integer] Hash code
110
+ def hash
111
+ [brokerage_order_id, raw_response].hash
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 self.build_from_hash(attributes)
118
+ new.build_from_hash(attributes)
119
+ end
120
+
121
+ # Builds the object from hash
122
+ # @param [Hash] attributes Model attributes in the form of hash
123
+ # @return [Object] Returns the model itself
124
+ def build_from_hash(attributes)
125
+ return nil unless attributes.is_a?(Hash)
126
+ attributes = attributes.transform_keys(&:to_sym)
127
+ self.class.openapi_types.each_pair do |key, type|
128
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
129
+ self.send("#{key}=", nil)
130
+ elsif type =~ /\AArray<(.*)>/i
131
+ # check to ensure the input is an array given that the attribute
132
+ # is documented as an array but the input is not
133
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
134
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
135
+ end
136
+ elsif !attributes[self.class.attribute_map[key]].nil?
137
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
138
+ end
139
+ end
140
+
141
+ self
142
+ end
143
+
144
+ # Deserializes the data based on type
145
+ # @param string type Data type
146
+ # @param string value Value to be deserialized
147
+ # @return [Object] Deserialized data
148
+ def _deserialize(type, value)
149
+ case type.to_sym
150
+ when :Time
151
+ Time.parse(value)
152
+ when :Date
153
+ Date.parse(value)
154
+ when :String
155
+ value.to_s
156
+ when :Integer
157
+ value.to_i
158
+ when :Float
159
+ value.to_f
160
+ when :Boolean
161
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
162
+ true
163
+ else
164
+ false
165
+ end
166
+ when :Object
167
+ # generic object (usually a Hash), return directly
168
+ value
169
+ when /\AArray<(?<inner_type>.+)>\z/
170
+ inner_type = Regexp.last_match[:inner_type]
171
+ value.map { |v| _deserialize(inner_type, v) }
172
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
173
+ k_type = Regexp.last_match[:k_type]
174
+ v_type = Regexp.last_match[:v_type]
175
+ {}.tap do |hash|
176
+ value.each do |k, v|
177
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
178
+ end
179
+ end
180
+ else # model
181
+ # models (e.g. Pet) or oneOf
182
+ klass = SnapTrade.const_get(type)
183
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
184
+ end
185
+ end
186
+
187
+ # Returns the string representation of the object
188
+ # @return [String] String presentation of the object
189
+ def to_s
190
+ to_hash.to_s
191
+ end
192
+
193
+ # to_body is an alias to to_hash (backward compatibility)
194
+ # @return [Hash] Returns the object in the form of hash
195
+ def to_body
196
+ to_hash
197
+ end
198
+
199
+ # Returns the object in the form of hash
200
+ # @return [Hash] Returns the object in the form of hash
201
+ def to_hash
202
+ hash = {}
203
+ self.class.attribute_map.each_pair do |attr, param|
204
+ value = self.send(attr)
205
+ if value.nil?
206
+ is_nullable = self.class.openapi_nullable.include?(attr)
207
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
208
+ end
209
+
210
+ hash[param] = _to_hash(value)
211
+ end
212
+ hash
213
+ end
214
+
215
+ # Outputs non-array value in the form of hash
216
+ # For object, use to_hash. Otherwise, just return the value
217
+ # @param [Object] value Any valid value
218
+ # @return [Hash] Returns the value in the form of hash
219
+ def _to_hash(value)
220
+ if value.is_a?(Array)
221
+ value.compact.map { |v| _to_hash(v) }
222
+ elsif value.is_a?(Hash)
223
+ {}.tap do |hash|
224
+ value.each { |k, v| hash[k] = _to_hash(v) }
225
+ end
226
+ elsif value.respond_to? :to_hash
227
+ value.to_hash
228
+ else
229
+ value
230
+ end
231
+ end
232
+
233
+ end
234
+
235
+ end
@@ -8,5 +8,5 @@ Contact: api@snaptrade.com
8
8
  =end
9
9
 
10
10
  module SnapTrade
11
- VERSION = '2.0.116'
11
+ VERSION = '2.0.117'
12
12
  end
data/lib/snaptrade.rb CHANGED
@@ -48,6 +48,7 @@ require 'snaptrade/models/brokerage_authorization_refresh_confirmation'
48
48
  require 'snaptrade/models/brokerage_authorization_type_read_only'
49
49
  require 'snaptrade/models/brokerage_authorization_type_read_only_brokerage'
50
50
  require 'snaptrade/models/brokerage_type'
51
+ require 'snaptrade/models/cancel_order_response'
51
52
  require 'snaptrade/models/child_brokerage_order_ids'
52
53
  require 'snaptrade/models/connection_portal_version'
53
54
  require 'snaptrade/models/connection_type'
@@ -28,14 +28,14 @@ describe 'TradingApi' do
28
28
  end
29
29
 
30
30
  # unit tests for cancel_order
31
- # Cancel crypto order
31
+ # Cancel order
32
32
  # Cancels an order in the specified account.
33
33
  # @param user_id
34
34
  # @param user_secret
35
35
  # @param account_id
36
- # @param brokerage_order_id
36
+ # @param trading_cancel_user_account_order_request
37
37
  # @param [Hash] opts the optional parameters
38
- # @return [OrderUpdatedResponse]
38
+ # @return [CancelOrderResponse]
39
39
  describe 'cancel_order test' do
40
40
  it 'should work' do
41
41
  # 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::CancelOrderResponse
15
+ describe SnapTrade::CancelOrderResponse do
16
+ let(:instance) { SnapTrade::CancelOrderResponse.new }
17
+
18
+ describe 'test an instance of CancelOrderResponse' do
19
+ it 'should create an instance of CancelOrderResponse' do
20
+ expect(instance).to be_instance_of(SnapTrade::CancelOrderResponse)
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 "raw_response"' 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.116
4
+ version: 2.0.117
5
5
  platform: ruby
6
6
  authors:
7
7
  - SnapTrade
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-07-23 00:00:00.000000000 Z
11
+ date: 2025-07-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -127,6 +127,7 @@ files:
127
127
  - lib/snaptrade/models/brokerage_authorization_type_read_only.rb
128
128
  - lib/snaptrade/models/brokerage_authorization_type_read_only_brokerage.rb
129
129
  - lib/snaptrade/models/brokerage_type.rb
130
+ - lib/snaptrade/models/cancel_order_response.rb
130
131
  - lib/snaptrade/models/child_brokerage_order_ids.rb
131
132
  - lib/snaptrade/models/connection_portal_version.rb
132
133
  - lib/snaptrade/models/connection_type.rb
@@ -288,6 +289,7 @@ files:
288
289
  - spec/models/brokerage_authorization_type_read_only_spec.rb
289
290
  - spec/models/brokerage_spec.rb
290
291
  - spec/models/brokerage_type_spec.rb
292
+ - spec/models/cancel_order_response_spec.rb
291
293
  - spec/models/child_brokerage_order_ids_spec.rb
292
294
  - spec/models/connection_portal_version_spec.rb
293
295
  - spec/models/connection_type_spec.rb
@@ -449,6 +451,7 @@ test_files:
449
451
  - spec/models/trading_search_cryptocurrency_pair_instruments200_response_spec.rb
450
452
  - spec/models/account_order_record_quote_universal_symbol_spec.rb
451
453
  - spec/models/session_event_spec.rb
454
+ - spec/models/cancel_order_response_spec.rb
452
455
  - spec/models/manual_trade_impact_spec.rb
453
456
  - spec/models/manual_trade_form_notional_value_spec.rb
454
457
  - spec/models/symbol_query_spec.rb