snaptrade-python-sdk 11.0.112__py3-none-any.whl → 11.0.114__py3-none-any.whl

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.
Files changed (29) hide show
  1. snaptrade_client/__init__.py +1 -1
  2. snaptrade_client/api_client.py +1 -1
  3. snaptrade_client/apis/path_to_api.py +15 -15
  4. snaptrade_client/configuration.py +1 -1
  5. snaptrade_client/paths/__init__.py +5 -5
  6. snaptrade_client/paths/accounts_account_id_orders_cancel/post.py +2 -2
  7. snaptrade_client/paths/accounts_account_id_orders_cancel/post.pyi +2 -2
  8. snaptrade_client/paths/accounts_account_id_quotes/get.py +2 -2
  9. snaptrade_client/paths/accounts_account_id_quotes/get.pyi +2 -2
  10. snaptrade_client/paths/accounts_account_id_trading_bracket/post.py +2 -2
  11. snaptrade_client/paths/accounts_account_id_trading_bracket/post.pyi +2 -2
  12. snaptrade_client/paths/accounts_account_id_trading_instruments_cryptocurrency_pairs/get.py +2 -2
  13. snaptrade_client/paths/accounts_account_id_trading_instruments_cryptocurrency_pairs/get.pyi +2 -2
  14. snaptrade_client/paths/accounts_account_id_trading_instruments_cryptocurrency_pairs_instrument_symbol_quote/get.py +2 -2
  15. snaptrade_client/paths/accounts_account_id_trading_instruments_cryptocurrency_pairs_instrument_symbol_quote/get.pyi +2 -2
  16. snaptrade_client/paths/accounts_account_id_trading_options/post.py +2 -2
  17. snaptrade_client/paths/accounts_account_id_trading_options/post.pyi +2 -2
  18. snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_replace/patch.py +2 -2
  19. snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_replace/patch.pyi +2 -2
  20. snaptrade_client/paths/trade_impact/post.py +2 -2
  21. snaptrade_client/paths/trade_impact/post.pyi +2 -2
  22. snaptrade_client/paths/trade_place/post.py +2 -2
  23. snaptrade_client/paths/trade_place/post.pyi +2 -2
  24. snaptrade_client/paths/trade_trade_id/post.py +2 -2
  25. snaptrade_client/paths/trade_trade_id/post.pyi +2 -2
  26. {snaptrade_python_sdk-11.0.112.dist-info → snaptrade_python_sdk-11.0.114.dist-info}/METADATA +3 -3
  27. {snaptrade_python_sdk-11.0.112.dist-info → snaptrade_python_sdk-11.0.114.dist-info}/RECORD +29 -29
  28. {snaptrade_python_sdk-11.0.112.dist-info → snaptrade_python_sdk-11.0.114.dist-info}/LICENSE +0 -0
  29. {snaptrade_python_sdk-11.0.112.dist-info → snaptrade_python_sdk-11.0.114.dist-info}/WHEEL +0 -0
@@ -12,7 +12,7 @@
12
12
  Created by: https://snaptrade.com/
13
13
  """
14
14
 
15
- __version__ = "11.0.112"
15
+ __version__ = "11.0.114"
16
16
 
17
17
  # import ApiClient
18
18
  from snaptrade_client.api_client import ApiClient
@@ -1155,7 +1155,7 @@ class ApiClient:
1155
1155
  self.default_headers[header_name] = header_value
1156
1156
  self.cookie = cookie
1157
1157
  # Set default User-Agent.
1158
- self.user_agent = 'Konfig/11.0.112/python'
1158
+ self.user_agent = 'Konfig/11.0.114/python'
1159
1159
 
1160
1160
  def __enter__(self):
1161
1161
  return self
@@ -36,13 +36,13 @@ from snaptrade_client.apis.paths.trade_trade_id import TradeTradeId
36
36
  from snaptrade_client.apis.paths.trade_place import TradePlace
37
37
  from snaptrade_client.apis.paths.accounts_account_id_orders_cancel import AccountsAccountIdOrdersCancel
38
38
  from snaptrade_client.apis.paths.accounts_account_id_trading_bracket import AccountsAccountIdTradingBracket
39
- from snaptrade_client.apis.paths.accounts_account_id_trading_simple_brokerage_order_id_replace import AccountsAccountIdTradingSimpleBrokerageOrderIdReplace
40
- from snaptrade_client.apis.paths.accounts_account_id_trading_simple import AccountsAccountIdTradingSimple
41
- from snaptrade_client.apis.paths.accounts_account_id_trading_simple_brokerage_order_id_cancel import AccountsAccountIdTradingSimpleBrokerageOrderIdCancel
42
- from snaptrade_client.apis.paths.accounts_account_id_trading_simple_preview import AccountsAccountIdTradingSimplePreview
39
+ from snaptrade_client.apis.paths.accounts_account_id_trading_options import AccountsAccountIdTradingOptions
43
40
  from snaptrade_client.apis.paths.accounts_account_id_trading_instruments_cryptocurrency_pairs import AccountsAccountIdTradingInstrumentsCryptocurrencyPairs
41
+ from snaptrade_client.apis.paths.accounts_account_id_trading_simple_preview import AccountsAccountIdTradingSimplePreview
44
42
  from snaptrade_client.apis.paths.accounts_account_id_trading_instruments_cryptocurrency_pairs_instrument_symbol_quote import AccountsAccountIdTradingInstrumentsCryptocurrencyPairsInstrumentSymbolQuote
45
- from snaptrade_client.apis.paths.accounts_account_id_trading_options import AccountsAccountIdTradingOptions
43
+ from snaptrade_client.apis.paths.accounts_account_id_trading_simple import AccountsAccountIdTradingSimple
44
+ from snaptrade_client.apis.paths.accounts_account_id_trading_simple_brokerage_order_id_replace import AccountsAccountIdTradingSimpleBrokerageOrderIdReplace
45
+ from snaptrade_client.apis.paths.accounts_account_id_trading_simple_brokerage_order_id_cancel import AccountsAccountIdTradingSimpleBrokerageOrderIdCancel
46
46
  from snaptrade_client.apis.paths.snap_trade_partners import SnapTradePartners
47
47
  from snaptrade_client.apis.paths.accounts_account_id_symbols import AccountsAccountIdSymbols
48
48
  from snaptrade_client.apis.paths.brokerages import Brokerages
@@ -93,13 +93,13 @@ PathToApi = typing_extensions.TypedDict(
93
93
  PathValues.TRADE_PLACE: TradePlace,
94
94
  PathValues.ACCOUNTS_ACCOUNT_ID_ORDERS_CANCEL: AccountsAccountIdOrdersCancel,
95
95
  PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_BRACKET: AccountsAccountIdTradingBracket,
96
- PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE_BROKERAGE_ORDER_ID_REPLACE: AccountsAccountIdTradingSimpleBrokerageOrderIdReplace,
97
- PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE: AccountsAccountIdTradingSimple,
98
- PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE_BROKERAGE_ORDER_ID_CANCEL: AccountsAccountIdTradingSimpleBrokerageOrderIdCancel,
99
- PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE_PREVIEW: AccountsAccountIdTradingSimplePreview,
96
+ PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_OPTIONS: AccountsAccountIdTradingOptions,
100
97
  PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_INSTRUMENTS_CRYPTOCURRENCY_PAIRS: AccountsAccountIdTradingInstrumentsCryptocurrencyPairs,
98
+ PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE_PREVIEW: AccountsAccountIdTradingSimplePreview,
101
99
  PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_INSTRUMENTS_CRYPTOCURRENCY_PAIRS_INSTRUMENT_SYMBOL_QUOTE: AccountsAccountIdTradingInstrumentsCryptocurrencyPairsInstrumentSymbolQuote,
102
- PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_OPTIONS: AccountsAccountIdTradingOptions,
100
+ PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE: AccountsAccountIdTradingSimple,
101
+ PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE_BROKERAGE_ORDER_ID_REPLACE: AccountsAccountIdTradingSimpleBrokerageOrderIdReplace,
102
+ PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE_BROKERAGE_ORDER_ID_CANCEL: AccountsAccountIdTradingSimpleBrokerageOrderIdCancel,
103
103
  PathValues.SNAP_TRADE_PARTNERS: SnapTradePartners,
104
104
  PathValues.ACCOUNTS_ACCOUNT_ID_SYMBOLS: AccountsAccountIdSymbols,
105
105
  PathValues.BROKERAGES: Brokerages,
@@ -151,13 +151,13 @@ path_to_api = PathToApi(
151
151
  PathValues.TRADE_PLACE: TradePlace,
152
152
  PathValues.ACCOUNTS_ACCOUNT_ID_ORDERS_CANCEL: AccountsAccountIdOrdersCancel,
153
153
  PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_BRACKET: AccountsAccountIdTradingBracket,
154
- PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE_BROKERAGE_ORDER_ID_REPLACE: AccountsAccountIdTradingSimpleBrokerageOrderIdReplace,
155
- PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE: AccountsAccountIdTradingSimple,
156
- PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE_BROKERAGE_ORDER_ID_CANCEL: AccountsAccountIdTradingSimpleBrokerageOrderIdCancel,
157
- PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE_PREVIEW: AccountsAccountIdTradingSimplePreview,
154
+ PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_OPTIONS: AccountsAccountIdTradingOptions,
158
155
  PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_INSTRUMENTS_CRYPTOCURRENCY_PAIRS: AccountsAccountIdTradingInstrumentsCryptocurrencyPairs,
156
+ PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE_PREVIEW: AccountsAccountIdTradingSimplePreview,
159
157
  PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_INSTRUMENTS_CRYPTOCURRENCY_PAIRS_INSTRUMENT_SYMBOL_QUOTE: AccountsAccountIdTradingInstrumentsCryptocurrencyPairsInstrumentSymbolQuote,
160
- PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_OPTIONS: AccountsAccountIdTradingOptions,
158
+ PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE: AccountsAccountIdTradingSimple,
159
+ PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE_BROKERAGE_ORDER_ID_REPLACE: AccountsAccountIdTradingSimpleBrokerageOrderIdReplace,
160
+ PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE_BROKERAGE_ORDER_ID_CANCEL: AccountsAccountIdTradingSimpleBrokerageOrderIdCancel,
161
161
  PathValues.SNAP_TRADE_PARTNERS: SnapTradePartners,
162
162
  PathValues.ACCOUNTS_ACCOUNT_ID_SYMBOLS: AccountsAccountIdSymbols,
163
163
  PathValues.BROKERAGES: Brokerages,
@@ -438,7 +438,7 @@ conf = snaptrade_client.Configuration(
438
438
  "OS: {env}\n"\
439
439
  "Python Version: {pyversion}\n"\
440
440
  "Version of the API: 1.0.0\n"\
441
- "SDK Package Version: 11.0.112".\
441
+ "SDK Package Version: 11.0.114".\
442
442
  format(env=sys.platform, pyversion=sys.version)
443
443
 
444
444
  def get_host_settings(self):
@@ -41,13 +41,13 @@ class PathValues(str, enum.Enum):
41
41
  TRADE_PLACE = "/trade/place"
42
42
  ACCOUNTS_ACCOUNT_ID_ORDERS_CANCEL = "/accounts/{accountId}/orders/cancel"
43
43
  ACCOUNTS_ACCOUNT_ID_TRADING_BRACKET = "/accounts/{accountId}/trading/bracket"
44
- ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE_BROKERAGE_ORDER_ID_REPLACE = "/accounts/{accountId}/trading/simple/{brokerageOrderId}/replace"
45
- ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE = "/accounts/{accountId}/trading/simple"
46
- ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE_BROKERAGE_ORDER_ID_CANCEL = "/accounts/{accountId}/trading/simple/{brokerageOrderId}/cancel"
47
- ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE_PREVIEW = "/accounts/{accountId}/trading/simple/preview"
44
+ ACCOUNTS_ACCOUNT_ID_TRADING_OPTIONS = "/accounts/{accountId}/trading/options"
48
45
  ACCOUNTS_ACCOUNT_ID_TRADING_INSTRUMENTS_CRYPTOCURRENCY_PAIRS = "/accounts/{accountId}/trading/instruments/cryptocurrencyPairs"
46
+ ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE_PREVIEW = "/accounts/{accountId}/trading/simple/preview"
49
47
  ACCOUNTS_ACCOUNT_ID_TRADING_INSTRUMENTS_CRYPTOCURRENCY_PAIRS_INSTRUMENT_SYMBOL_QUOTE = "/accounts/{accountId}/trading/instruments/cryptocurrencyPairs/{instrumentSymbol}/quote"
50
- ACCOUNTS_ACCOUNT_ID_TRADING_OPTIONS = "/accounts/{accountId}/trading/options"
48
+ ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE = "/accounts/{accountId}/trading/simple"
49
+ ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE_BROKERAGE_ORDER_ID_REPLACE = "/accounts/{accountId}/trading/simple/{brokerageOrderId}/replace"
50
+ ACCOUNTS_ACCOUNT_ID_TRADING_SIMPLE_BROKERAGE_ORDER_ID_CANCEL = "/accounts/{accountId}/trading/simple/{brokerageOrderId}/cancel"
51
51
  SNAP_TRADE_PARTNERS = "/snapTrade/partners"
52
52
  ACCOUNTS_ACCOUNT_ID_SYMBOLS = "/accounts/{accountId}/symbols"
53
53
  BROKERAGES = "/brokerages"
@@ -288,7 +288,7 @@ class BaseApi(api_client.Api):
288
288
  AsyncGeneratorResponse,
289
289
  ]:
290
290
  """
291
- Cancel order
291
+ Cancel equity order
292
292
  :param skip_deserialization: If true then api_response.response will be set but
293
293
  api_response.body and api_response.headers will not be deserialized into schema
294
294
  class instances
@@ -434,7 +434,7 @@ class BaseApi(api_client.Api):
434
434
  api_client.ApiResponseWithoutDeserialization,
435
435
  ]:
436
436
  """
437
- Cancel order
437
+ Cancel equity order
438
438
  :param skip_deserialization: If true then api_response.response will be set but
439
439
  api_response.body and api_response.headers will not be deserialized into schema
440
440
  class instances
@@ -276,7 +276,7 @@ class BaseApi(api_client.Api):
276
276
  AsyncGeneratorResponse,
277
277
  ]:
278
278
  """
279
- Cancel order
279
+ Cancel equity order
280
280
  :param skip_deserialization: If true then api_response.response will be set but
281
281
  api_response.body and api_response.headers will not be deserialized into schema
282
282
  class instances
@@ -422,7 +422,7 @@ class BaseApi(api_client.Api):
422
422
  api_client.ApiResponseWithoutDeserialization,
423
423
  ]:
424
424
  """
425
- Cancel order
425
+ Cancel equity order
426
426
  :param skip_deserialization: If true then api_response.response will be set but
427
427
  api_response.body and api_response.headers will not be deserialized into schema
428
428
  class instances
@@ -219,7 +219,7 @@ class BaseApi(api_client.Api):
219
219
  AsyncGeneratorResponse,
220
220
  ]:
221
221
  """
222
- Get symbol quotes
222
+ Get equity symbol quotes
223
223
  :param skip_deserialization: If true then api_response.response will be set but
224
224
  api_response.body and api_response.headers will not be deserialized into schema
225
225
  class instances
@@ -349,7 +349,7 @@ class BaseApi(api_client.Api):
349
349
  api_client.ApiResponseWithoutDeserialization,
350
350
  ]:
351
351
  """
352
- Get symbol quotes
352
+ Get equity symbol quotes
353
353
  :param skip_deserialization: If true then api_response.response will be set but
354
354
  api_response.body and api_response.headers will not be deserialized into schema
355
355
  class instances
@@ -208,7 +208,7 @@ class BaseApi(api_client.Api):
208
208
  AsyncGeneratorResponse,
209
209
  ]:
210
210
  """
211
- Get symbol quotes
211
+ Get equity symbol quotes
212
212
  :param skip_deserialization: If true then api_response.response will be set but
213
213
  api_response.body and api_response.headers will not be deserialized into schema
214
214
  class instances
@@ -338,7 +338,7 @@ class BaseApi(api_client.Api):
338
338
  api_client.ApiResponseWithoutDeserialization,
339
339
  ]:
340
340
  """
341
- Get symbol quotes
341
+ Get equity symbol quotes
342
342
  :param skip_deserialization: If true then api_response.response will be set but
343
343
  api_response.body and api_response.headers will not be deserialized into schema
344
344
  class instances
@@ -297,7 +297,7 @@ class BaseApi(api_client.Api):
297
297
  AsyncGeneratorResponse,
298
298
  ]:
299
299
  """
300
- Place a Bracket Order
300
+ Place bracket equity order
301
301
  :param skip_deserialization: If true then api_response.response will be set but
302
302
  api_response.body and api_response.headers will not be deserialized into schema
303
303
  class instances
@@ -443,7 +443,7 @@ class BaseApi(api_client.Api):
443
443
  api_client.ApiResponseWithoutDeserialization,
444
444
  ]:
445
445
  """
446
- Place a Bracket Order
446
+ Place bracket equity order
447
447
  :param skip_deserialization: If true then api_response.response will be set but
448
448
  api_response.body and api_response.headers will not be deserialized into schema
449
449
  class instances
@@ -284,7 +284,7 @@ class BaseApi(api_client.Api):
284
284
  AsyncGeneratorResponse,
285
285
  ]:
286
286
  """
287
- Place a Bracket Order
287
+ Place bracket equity order
288
288
  :param skip_deserialization: If true then api_response.response will be set but
289
289
  api_response.body and api_response.headers will not be deserialized into schema
290
290
  class instances
@@ -430,7 +430,7 @@ class BaseApi(api_client.Api):
430
430
  api_client.ApiResponseWithoutDeserialization,
431
431
  ]:
432
432
  """
433
- Place a Bracket Order
433
+ Place bracket equity order
434
434
  :param skip_deserialization: If true then api_response.response will be set but
435
435
  api_response.body and api_response.headers will not be deserialized into schema
436
436
  class instances
@@ -313,7 +313,7 @@ class BaseApi(api_client.Api):
313
313
  AsyncGeneratorResponse,
314
314
  ]:
315
315
  """
316
- Search cryptocurrency pairs instruments
316
+ Get crypto pairs
317
317
  :param skip_deserialization: If true then api_response.response will be set but
318
318
  api_response.body and api_response.headers will not be deserialized into schema
319
319
  class instances
@@ -443,7 +443,7 @@ class BaseApi(api_client.Api):
443
443
  api_client.ApiResponseWithoutDeserialization,
444
444
  ]:
445
445
  """
446
- Search cryptocurrency pairs instruments
446
+ Get crypto pairs
447
447
  :param skip_deserialization: If true then api_response.response will be set but
448
448
  api_response.body and api_response.headers will not be deserialized into schema
449
449
  class instances
@@ -301,7 +301,7 @@ class BaseApi(api_client.Api):
301
301
  AsyncGeneratorResponse,
302
302
  ]:
303
303
  """
304
- Search cryptocurrency pairs instruments
304
+ Get crypto pairs
305
305
  :param skip_deserialization: If true then api_response.response will be set but
306
306
  api_response.body and api_response.headers will not be deserialized into schema
307
307
  class instances
@@ -431,7 +431,7 @@ class BaseApi(api_client.Api):
431
431
  api_client.ApiResponseWithoutDeserialization,
432
432
  ]:
433
433
  """
434
- Search cryptocurrency pairs instruments
434
+ Get crypto pairs
435
435
  :param skip_deserialization: If true then api_response.response will be set but
436
436
  api_response.body and api_response.headers will not be deserialized into schema
437
437
  class instances
@@ -224,7 +224,7 @@ class BaseApi(api_client.Api):
224
224
  AsyncGeneratorResponse,
225
225
  ]:
226
226
  """
227
- Get cryptocurrency pair quote
227
+ Get crypto pair quote
228
228
  :param skip_deserialization: If true then api_response.response will be set but
229
229
  api_response.body and api_response.headers will not be deserialized into schema
230
230
  class instances
@@ -353,7 +353,7 @@ class BaseApi(api_client.Api):
353
353
  api_client.ApiResponseWithoutDeserialization,
354
354
  ]:
355
355
  """
356
- Get cryptocurrency pair quote
356
+ Get crypto pair quote
357
357
  :param skip_deserialization: If true then api_response.response will be set but
358
358
  api_response.body and api_response.headers will not be deserialized into schema
359
359
  class instances
@@ -212,7 +212,7 @@ class BaseApi(api_client.Api):
212
212
  AsyncGeneratorResponse,
213
213
  ]:
214
214
  """
215
- Get cryptocurrency pair quote
215
+ Get crypto pair quote
216
216
  :param skip_deserialization: If true then api_response.response will be set but
217
217
  api_response.body and api_response.headers will not be deserialized into schema
218
218
  class instances
@@ -341,7 +341,7 @@ class BaseApi(api_client.Api):
341
341
  api_client.ApiResponseWithoutDeserialization,
342
342
  ]:
343
343
  """
344
- Get cryptocurrency pair quote
344
+ Get crypto pair quote
345
345
  :param skip_deserialization: If true then api_response.response will be set but
346
346
  api_response.body and api_response.headers will not be deserialized into schema
347
347
  class instances
@@ -257,7 +257,7 @@ class BaseApi(api_client.Api):
257
257
  AsyncGeneratorResponse,
258
258
  ]:
259
259
  """
260
- Place multi-leg option order
260
+ Place option order
261
261
  :param skip_deserialization: If true then api_response.response will be set but
262
262
  api_response.body and api_response.headers will not be deserialized into schema
263
263
  class instances
@@ -403,7 +403,7 @@ class BaseApi(api_client.Api):
403
403
  api_client.ApiResponseWithoutDeserialization,
404
404
  ]:
405
405
  """
406
- Place multi-leg option order
406
+ Place option order
407
407
  :param skip_deserialization: If true then api_response.response will be set but
408
408
  api_response.body and api_response.headers will not be deserialized into schema
409
409
  class instances
@@ -245,7 +245,7 @@ class BaseApi(api_client.Api):
245
245
  AsyncGeneratorResponse,
246
246
  ]:
247
247
  """
248
- Place multi-leg option order
248
+ Place option order
249
249
  :param skip_deserialization: If true then api_response.response will be set but
250
250
  api_response.body and api_response.headers will not be deserialized into schema
251
251
  class instances
@@ -391,7 +391,7 @@ class BaseApi(api_client.Api):
391
391
  api_client.ApiResponseWithoutDeserialization,
392
392
  ]:
393
393
  """
394
- Place multi-leg option order
394
+ Place option order
395
395
  :param skip_deserialization: If true then api_response.response will be set but
396
396
  api_response.body and api_response.headers will not be deserialized into schema
397
397
  class instances
@@ -295,7 +295,7 @@ class BaseApi(api_client.Api):
295
295
  AsyncGeneratorResponse,
296
296
  ]:
297
297
  """
298
- Replace crypto order
298
+ Replace equity order
299
299
  :param skip_deserialization: If true then api_response.response will be set but
300
300
  api_response.body and api_response.headers will not be deserialized into schema
301
301
  class instances
@@ -442,7 +442,7 @@ class BaseApi(api_client.Api):
442
442
  api_client.ApiResponseWithoutDeserialization,
443
443
  ]:
444
444
  """
445
- Replace crypto order
445
+ Replace equity order
446
446
  :param skip_deserialization: If true then api_response.response will be set but
447
447
  api_response.body and api_response.headers will not be deserialized into schema
448
448
  class instances
@@ -282,7 +282,7 @@ class BaseApi(api_client.Api):
282
282
  AsyncGeneratorResponse,
283
283
  ]:
284
284
  """
285
- Replace crypto order
285
+ Replace equity order
286
286
  :param skip_deserialization: If true then api_response.response will be set but
287
287
  api_response.body and api_response.headers will not be deserialized into schema
288
288
  class instances
@@ -429,7 +429,7 @@ class BaseApi(api_client.Api):
429
429
  api_client.ApiResponseWithoutDeserialization,
430
430
  ]:
431
431
  """
432
- Replace crypto order
432
+ Replace equity order
433
433
  :param skip_deserialization: If true then api_response.response will be set but
434
434
  api_response.body and api_response.headers will not be deserialized into schema
435
435
  class instances
@@ -259,7 +259,7 @@ class BaseApi(api_client.Api):
259
259
  AsyncGeneratorResponse,
260
260
  ]:
261
261
  """
262
- Check order impact
262
+ Check equity order impact
263
263
  :param skip_deserialization: If true then api_response.response will be set but
264
264
  api_response.body and api_response.headers will not be deserialized into schema
265
265
  class instances
@@ -390,7 +390,7 @@ class BaseApi(api_client.Api):
390
390
  api_client.ApiResponseWithoutDeserialization,
391
391
  ]:
392
392
  """
393
- Check order impact
393
+ Check equity order impact
394
394
  :param skip_deserialization: If true then api_response.response will be set but
395
395
  api_response.body and api_response.headers will not be deserialized into schema
396
396
  class instances
@@ -246,7 +246,7 @@ class BaseApi(api_client.Api):
246
246
  AsyncGeneratorResponse,
247
247
  ]:
248
248
  """
249
- Check order impact
249
+ Check equity order impact
250
250
  :param skip_deserialization: If true then api_response.response will be set but
251
251
  api_response.body and api_response.headers will not be deserialized into schema
252
252
  class instances
@@ -377,7 +377,7 @@ class BaseApi(api_client.Api):
377
377
  api_client.ApiResponseWithoutDeserialization,
378
378
  ]:
379
379
  """
380
- Check order impact
380
+ Check equity order impact
381
381
  :param skip_deserialization: If true then api_response.response will be set but
382
382
  api_response.body and api_response.headers will not be deserialized into schema
383
383
  class instances
@@ -262,7 +262,7 @@ class BaseApi(api_client.Api):
262
262
  AsyncGeneratorResponse,
263
263
  ]:
264
264
  """
265
- Place order
265
+ Place equity order
266
266
  :param skip_deserialization: If true then api_response.response will be set but
267
267
  api_response.body and api_response.headers will not be deserialized into schema
268
268
  class instances
@@ -393,7 +393,7 @@ class BaseApi(api_client.Api):
393
393
  api_client.ApiResponseWithoutDeserialization,
394
394
  ]:
395
395
  """
396
- Place order
396
+ Place equity order
397
397
  :param skip_deserialization: If true then api_response.response will be set but
398
398
  api_response.body and api_response.headers will not be deserialized into schema
399
399
  class instances
@@ -249,7 +249,7 @@ class BaseApi(api_client.Api):
249
249
  AsyncGeneratorResponse,
250
250
  ]:
251
251
  """
252
- Place order
252
+ Place equity order
253
253
  :param skip_deserialization: If true then api_response.response will be set but
254
254
  api_response.body and api_response.headers will not be deserialized into schema
255
255
  class instances
@@ -380,7 +380,7 @@ class BaseApi(api_client.Api):
380
380
  api_client.ApiResponseWithoutDeserialization,
381
381
  ]:
382
382
  """
383
- Place order
383
+ Place equity order
384
384
  :param skip_deserialization: If true then api_response.response will be set but
385
385
  api_response.body and api_response.headers will not be deserialized into schema
386
386
  class instances
@@ -233,7 +233,7 @@ class BaseApi(api_client.Api):
233
233
  AsyncGeneratorResponse,
234
234
  ]:
235
235
  """
236
- Place checked order
236
+ Place checked equity order
237
237
  :param skip_deserialization: If true then api_response.response will be set but
238
238
  api_response.body and api_response.headers will not be deserialized into schema
239
239
  class instances
@@ -377,7 +377,7 @@ class BaseApi(api_client.Api):
377
377
  api_client.ApiResponseWithoutDeserialization,
378
378
  ]:
379
379
  """
380
- Place checked order
380
+ Place checked equity order
381
381
  :param skip_deserialization: If true then api_response.response will be set but
382
382
  api_response.body and api_response.headers will not be deserialized into schema
383
383
  class instances
@@ -221,7 +221,7 @@ class BaseApi(api_client.Api):
221
221
  AsyncGeneratorResponse,
222
222
  ]:
223
223
  """
224
- Place checked order
224
+ Place checked equity order
225
225
  :param skip_deserialization: If true then api_response.response will be set but
226
226
  api_response.body and api_response.headers will not be deserialized into schema
227
227
  class instances
@@ -365,7 +365,7 @@ class BaseApi(api_client.Api):
365
365
  api_client.ApiResponseWithoutDeserialization,
366
366
  ]:
367
367
  """
368
- Place checked order
368
+ Place checked equity order
369
369
  :param skip_deserialization: If true then api_response.response will be set but
370
370
  api_response.body and api_response.headers will not be deserialized into schema
371
371
  class instances
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: snaptrade-python-sdk
3
- Version: 11.0.112
3
+ Version: 11.0.114
4
4
  Summary: Client for SnapTrade
5
5
  License: MIT
6
6
  Author: SnapTrade
@@ -30,7 +30,7 @@ Description-Content-Type: text/markdown
30
30
  Connect brokerage accounts to your app for live positions and trading
31
31
 
32
32
 
33
- [![PyPI](https://img.shields.io/badge/PyPI-v11.0.112-blue)](https://pypi.org/project/snaptrade-python-sdk/11.0.112)
33
+ [![PyPI](https://img.shields.io/badge/PyPI-v11.0.114-blue)](https://pypi.org/project/snaptrade-python-sdk/11.0.114)
34
34
  [![README.md](https://img.shields.io/badge/README-Click%20Here-green)](https://github.com/passiv/snaptrade-sdks/tree/master/sdks/python#readme)
35
35
  [![More Info](https://img.shields.io/badge/More%20Info-Click%20Here-orange)](https://snaptrade.com/)
36
36
 
@@ -110,7 +110,7 @@ Python >=3.8
110
110
  ## Installation<a id="installation"></a>
111
111
 
112
112
  ```sh
113
- pip install snaptrade-python-sdk==11.0.112
113
+ pip install snaptrade-python-sdk==11.0.114
114
114
  ```
115
115
 
116
116
  ## Getting Started<a id="getting-started"></a>
@@ -1,8 +1,8 @@
1
- snaptrade_client/__init__.py,sha256=sEXEkhAFgUN3nNsNhrloY-3WshPNsC6-PNGN3r6RxOE,820
2
- snaptrade_client/api_client.py,sha256=RRP3axCNqNueVj6-SJ32YDYjfKI_ICs8fS4ropKi0rM,73975
1
+ snaptrade_client/__init__.py,sha256=mHLFpG7FUqmRNntNd39s0KEMWdiko0mAQuE9tof8ksc,820
2
+ snaptrade_client/api_client.py,sha256=D6fUd7IqyBnbPo497b4J_63Rl1T3Mr6coultgq-YqDg,73975
3
3
  snaptrade_client/api_response.py,sha256=mZn18p_TNr6OY0HXTZW5InL9iXfqsJWstYGeGD-euPA,663
4
4
  snaptrade_client/apis/__init__.py,sha256=RTosXhMn41tMsKPUjIy-VK-_efOWzhkKiuGggJ3A6E0,214
5
- snaptrade_client/apis/path_to_api.py,sha256=fDtFd8AqFO8oDYvdEAFTO9PrVL_qMSjlch1YRVeidlk,13189
5
+ snaptrade_client/apis/path_to_api.py,sha256=0d_51BaYWpIE-k7-qQ6dYXnaK05ABrPzYjcqIkjk6gc,13189
6
6
  snaptrade_client/apis/paths/__init__.py,sha256=oIb-tz_ei5m0RWOOB0qXTkBKu61nYtwOUlWvQbD5gFE,243
7
7
  snaptrade_client/apis/paths/accounts.py,sha256=aHSwrwNqPSa2ikmR-WP0dg2LbRBSNBB3n3_2OTCcxs4,103
8
8
  snaptrade_client/apis/paths/accounts_account_id.py,sha256=Xv0hHwov50tVcdtqCS-Np0BmqMhUwrvjIQLaa9yPF3U,207
@@ -78,7 +78,7 @@ snaptrade_client/apis/tags/transactions_and_reporting_api_generated.py,sha256=Tw
78
78
  snaptrade_client/client.py,sha256=goDwWRv9909OPXDnGGYst_mr53bg6RUs4PwIvnrl_kE,2116
79
79
  snaptrade_client/client.pyi,sha256=goDwWRv9909OPXDnGGYst_mr53bg6RUs4PwIvnrl_kE,2116
80
80
  snaptrade_client/client_custom.py,sha256=Jx9ulCzelMFlESjzVFQSjBlYcH4dWxSJJWZDMPLyetM,745
81
- snaptrade_client/configuration.py,sha256=R_rnFHrgApeCz5ivpURrG7XTvp7_jqr8ux715pBVmnw,19262
81
+ snaptrade_client/configuration.py,sha256=EpK3OlNRKWbKhusYp3C0y0IN-8SO8w8hOPdU_xX3z-w,19262
82
82
  snaptrade_client/exceptions.py,sha256=X0apI_sgQpGpa-qIqPUClReCdHAxeSuA6GW0YH_RsWg,7771
83
83
  snaptrade_client/exceptions_base.py,sha256=LAQkaC5C61-SdBLfyMjb0K7AYJkWVuLmg2uCvHa71FM,2274
84
84
  snaptrade_client/model/__init__.py,sha256=ayi2MIzcf0eAIsY13ToiNplV9tW-pMBFrC0I9yckGM8,350
@@ -410,7 +410,7 @@ snaptrade_client/model/validated_trade_body.py,sha256=NkTel1ulgSjBd6K7vur6puEbfr
410
410
  snaptrade_client/model/validated_trade_body.pyi,sha256=NkTel1ulgSjBd6K7vur6puEbfrg3u1vdmtUKArOu8ws,3085
411
411
  snaptrade_client/models/__init__.py,sha256=I1pwuDZgpx0vWGPJmEqsldM5F9Pd101iA31xsd9S7Oo,12749
412
412
  snaptrade_client/operation_parameter_map.py,sha256=O_ANBpVX1Bn3WgFNggL1sVZr4VuPbVJiF4YBwK_uleM,19229
413
- snaptrade_client/paths/__init__.py,sha256=K056tD_Vj-bOiQnxSdL8DBksTpYdcSykFS7dUclcdR4,3811
413
+ snaptrade_client/paths/__init__.py,sha256=xs6HB6_UnA45lsyzaUJSlm4rKetunQV6koPzs-Ogpc8,3811
414
414
  snaptrade_client/paths/accounts/__init__.py,sha256=_Bqi6B13A-kgd0AOpqmcE1vTxJDfoz-r3Hwf-AmwW6A,307
415
415
  snaptrade_client/paths/accounts/get.py,sha256=MDE_4VCylBroYDkMQe9II1qCGf6gTTDGCShFyGLXf00,16463
416
416
  snaptrade_client/paths/accounts/get.pyi,sha256=gna7qIU-95WqOFl6qTsP18ZY7SKi9CYEBAbARPAPPF4,16261
@@ -447,14 +447,14 @@ snaptrade_client/paths/accounts_account_id_orders/__init__.py,sha256=zHuTi8F_iUe
447
447
  snaptrade_client/paths/accounts_account_id_orders/get.py,sha256=G995P3DYTYjlbOmqO1iyJSPjtO6KmFUOfGCBaozjeUU,21877
448
448
  snaptrade_client/paths/accounts_account_id_orders/get.pyi,sha256=N23jjsdpQiilZqFXOF5Gj31PLdOXqEpKytqUwiB_AiI,21462
449
449
  snaptrade_client/paths/accounts_account_id_orders_cancel/__init__.py,sha256=UIeHlsXhxZyqf4ADkLxYxJUH6ChCcSkpeML1XWjxGdI,357
450
- snaptrade_client/paths/accounts_account_id_orders_cancel/post.py,sha256=ww3I5yxxpQRWiUmQEs07ZhGRBnrJP9bcxHOjTdEhMOg,24071
451
- snaptrade_client/paths/accounts_account_id_orders_cancel/post.pyi,sha256=z8SSVUG8VX_v2iIO8F7WxNg82ojLn1PlI7s1Bvk2Om4,23847
450
+ snaptrade_client/paths/accounts_account_id_orders_cancel/post.py,sha256=yezwLdueIcuRvUpKWLSGDho96NKV_2Z4ymwIeYz6ltE,24085
451
+ snaptrade_client/paths/accounts_account_id_orders_cancel/post.pyi,sha256=JlyQ_cpJ5Xz37VacvWEBe0FXzfaxU1KBDd4KAMHoljs,23861
452
452
  snaptrade_client/paths/accounts_account_id_positions/__init__.py,sha256=UB-B0t2OnlP8QvI9ptBNhqYsywmYsFZz9G8NJkVZBTM,349
453
453
  snaptrade_client/paths/accounts_account_id_positions/get.py,sha256=mT1qThSd9z8ggJa0uXGdWA_N8cs0NH_ijLRsPIVnuWY,20204
454
454
  snaptrade_client/paths/accounts_account_id_positions/get.pyi,sha256=wHZruGOsjMfVd6GW3qB8jPhMQNfr2dP4TbB71taNUVk,20002
455
455
  snaptrade_client/paths/accounts_account_id_quotes/__init__.py,sha256=_EWd0irMSNiZtx_chO_X9TCy_WWzFQoySf3yLEkAh2I,343
456
- snaptrade_client/paths/accounts_account_id_quotes/get.py,sha256=rM55RRxMqmzZY0gHGGdR0HoDME-kHfQqoqIFrxu_xyk,20491
457
- snaptrade_client/paths/accounts_account_id_quotes/get.pyi,sha256=kerqEJU0RQ9UqT7OtShIBV76Sr9cj6IQFDgpNgm9F28,20297
456
+ snaptrade_client/paths/accounts_account_id_quotes/get.py,sha256=08YO8GzSRhhA0CSrGalFusLdDjKanlbLDHrPN9P_oA4,20505
457
+ snaptrade_client/paths/accounts_account_id_quotes/get.pyi,sha256=Y-l0SAEfYSEWPIKrgBLOAJADLa1I-dDm4zGoG378-S8,20311
458
458
  snaptrade_client/paths/accounts_account_id_recent_orders/__init__.py,sha256=9ZDFg99fFJZ_6RAxHQkzGxuUu5HjiU25zdIc3huER-c,357
459
459
  snaptrade_client/paths/accounts_account_id_recent_orders/get.py,sha256=Zk0LjeDzTXQyPqdN7uFW3a0wX2gE8kAZw-kbLIMWAaE,21345
460
460
  snaptrade_client/paths/accounts_account_id_recent_orders/get.pyi,sha256=pmwZbqLBIRSQEE6RT0YFSgmxT8r_9gh_b42t9uIgE80,21121
@@ -465,17 +465,17 @@ snaptrade_client/paths/accounts_account_id_symbols/__init__.py,sha256=W4appqLUjn
465
465
  snaptrade_client/paths/accounts_account_id_symbols/post.py,sha256=lY_qckOwveAIspofejARKiQI4R4M-eA_sMrS1qgtIqE,22211
466
466
  snaptrade_client/paths/accounts_account_id_symbols/post.pyi,sha256=7BOOwzqpCb39oCxp_ZKSVpQx1fQjkwBpWGyjptFM1C0,22009
467
467
  snaptrade_client/paths/accounts_account_id_trading_bracket/__init__.py,sha256=QBPAt6nOa154uffyl5sircs20NaIQEyV_d3ZBDGFIDo,361
468
- snaptrade_client/paths/accounts_account_id_trading_bracket/post.py,sha256=HsdnQcxU0az8y_BPOtBT0Ay91BEeIpP8nw-My6oxyxA,28435
469
- snaptrade_client/paths/accounts_account_id_trading_bracket/post.pyi,sha256=i6fwr8OkCekB5J6_qHAWnMGzPXyalrJLU5oJRdPvxFw,28181
468
+ snaptrade_client/paths/accounts_account_id_trading_bracket/post.py,sha256=8ElBo2s3zq9UyL9vcQAkDoPXNejEYXVwojxFm2CDFRA,28445
469
+ snaptrade_client/paths/accounts_account_id_trading_bracket/post.pyi,sha256=HxHl2SLumpgimMpKRrNo6gMsjjlPfWGvupp8PvqiiCk,28191
470
470
  snaptrade_client/paths/accounts_account_id_trading_instruments_cryptocurrency_pairs/__init__.py,sha256=lahXV_MX3G5PheZJIbVfyjWukvODtPfgcDvjEaw2OkI,411
471
- snaptrade_client/paths/accounts_account_id_trading_instruments_cryptocurrency_pairs/get.py,sha256=FXJqQnt53iTDDjZxdzNWAuY_wmGZ3hJ5q4rDwVIh3is,23318
472
- snaptrade_client/paths/accounts_account_id_trading_instruments_cryptocurrency_pairs/get.pyi,sha256=ajbqTrGqRS_qZ_IDmZqq7HSO7kz6hQ8ccUFSbgCQTQ0,23094
471
+ snaptrade_client/paths/accounts_account_id_trading_instruments_cryptocurrency_pairs/get.py,sha256=fGE8EldxKTuR4eeAqJw2B8fKkKOIQ6hjxOeTUVErmVo,23272
472
+ snaptrade_client/paths/accounts_account_id_trading_instruments_cryptocurrency_pairs/get.pyi,sha256=bi6v_C2jqdetQuVd7zDN13KbAsOXtISvDRTPx9t-vnE,23048
473
473
  snaptrade_client/paths/accounts_account_id_trading_instruments_cryptocurrency_pairs_instrument_symbol_quote/__init__.py,sha256=lyXK-YUpVDrDKg0ASdcoD9VT6TFZ7dAfjLXiBGygU3k,459
474
- snaptrade_client/paths/accounts_account_id_trading_instruments_cryptocurrency_pairs_instrument_symbol_quote/get.py,sha256=oNzuvtIHAIpoFe8L7cg6ReqjZeR4NGCOrX4MGDQ7D9A,19938
475
- snaptrade_client/paths/accounts_account_id_trading_instruments_cryptocurrency_pairs_instrument_symbol_quote/get.pyi,sha256=DVoKhxO1njO4Z-f_mqdOqF1uhAn1D2jb-emqLKHp6lc,19714
474
+ snaptrade_client/paths/accounts_account_id_trading_instruments_cryptocurrency_pairs_instrument_symbol_quote/get.py,sha256=mP3NKgp6y1hqUBkjI2ZbVjQ88fqGxo6rHHsc5oNOK_g,19922
475
+ snaptrade_client/paths/accounts_account_id_trading_instruments_cryptocurrency_pairs_instrument_symbol_quote/get.pyi,sha256=fx9nA0UN0kLWP8P41ZoBeeALWaL4TtPOhEsdmucLWD8,19698
476
476
  snaptrade_client/paths/accounts_account_id_trading_options/__init__.py,sha256=W4DH_sVnEgWCOwhFuJ05O-L0iN0HNDQ3QmVhC4uTzxE,361
477
- snaptrade_client/paths/accounts_account_id_trading_options/post.py,sha256=PD0GAZs1vG9ModhGRDXL72e0BVxi47iHHXMw7HrmuO0,25375
478
- snaptrade_client/paths/accounts_account_id_trading_options/post.pyi,sha256=vVwgbPJYIz_qF38RBfJA3B65senCndjwCGnm_ZPNkRw,25151
477
+ snaptrade_client/paths/accounts_account_id_trading_options/post.py,sha256=LXlATF-SWj6cqOixY73JWNM0VGxCixdNBkswXRxiOfs,25355
478
+ snaptrade_client/paths/accounts_account_id_trading_options/post.pyi,sha256=nUHg-X1j6Oa9ZZX54SIweTKEBmgh7vIiOs_rKkUG45A,25131
479
479
  snaptrade_client/paths/accounts_account_id_trading_simple/__init__.py,sha256=1kfuRO4L1XUyRnv-XbLhv5SrvJ4UqjzjKDfRR9EIu9Y,359
480
480
  snaptrade_client/paths/accounts_account_id_trading_simple/post.py,sha256=tDI-5-LFAMPGmwjayMH66YGyDp4K6V1teu-esNcbFYU,25869
481
481
  snaptrade_client/paths/accounts_account_id_trading_simple/post.pyi,sha256=xJVttopVQwLJq-yApP6ioXGK2CQtC7y8ummgcLxqKlU,25645
@@ -483,8 +483,8 @@ snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_can
483
483
  snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_cancel/post.py,sha256=sKvRdujp_z9646vBYgJE8GeX0QasPjDj1dw6bPR8VOU,19639
484
484
  snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_cancel/post.pyi,sha256=13fLCJerlM2vEsX87hGxAWdvzekW-ZTDnwDiq1J_8s8,19415
485
485
  snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_replace/__init__.py,sha256=TL1dJxF1QEDBQVAYOCWuwb-vE21liUhT20nusDJnW14,413
486
- snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_replace/patch.py,sha256=7AM1y20_B-ZbkVWtFZpARnO2Y99s-7XZV4DypJURvr0,27740
487
- snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_replace/patch.pyi,sha256=Oj2TgDOsyM7soC7RSj-MxRStmde3hDA82HyhYUwyVTY,27486
486
+ snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_replace/patch.py,sha256=DRcB4aQvuZJYQh3h7sCN2rHN0el7LSnxJZspimYdvSw,27740
487
+ snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_replace/patch.pyi,sha256=693oA7dsRMLn-GF4pJEanfDa0PeFe1V-5lpl69zTc8s,27486
488
488
  snaptrade_client/paths/accounts_account_id_trading_simple_preview/__init__.py,sha256=e85yQ-g79CpD-OBNRqwmVKTYfuR_Dc9XmXqfZiJFJmg,375
489
489
  snaptrade_client/paths/accounts_account_id_trading_simple_preview/post.py,sha256=j-ARrAo-nkNB1EEAzScNL8dII6oAu1m6sE-3KBAzx5k,25693
490
490
  snaptrade_client/paths/accounts_account_id_trading_simple_preview/post.pyi,sha256=AQy3AuaWA2wqXhQKXm-4kFsGYKVHM9mXX0XRijN6sTU,25469
@@ -566,14 +566,14 @@ snaptrade_client/paths/symbols_query/__init__.py,sha256=hedadyN47N2GosnTRuCGQg3X
566
566
  snaptrade_client/paths/symbols_query/get.py,sha256=P9aY4mOb0KhBQPfZ3U52rXLbfVVZos-aJGVH1oaFkoQ,15922
567
567
  snaptrade_client/paths/symbols_query/get.pyi,sha256=Gh0CSgL08iS0MwTljYABcZegnWHGk3_CBa3SanV2CCo,15690
568
568
  snaptrade_client/paths/trade_impact/__init__.py,sha256=Ahc5LzJcfLoux_9jiEMVkF5c-6E11vH5ECTbvyz9FfQ,315
569
- snaptrade_client/paths/trade_impact/post.py,sha256=l1wSPMSAE2rcYMwuShYrMWaKOxTe56rqVuotayHWypw,25416
570
- snaptrade_client/paths/trade_impact/post.pyi,sha256=k8EYn7zQoOgH3k4fFb6AelS91B9AJhLQRLRWMl4CA4c,25162
569
+ snaptrade_client/paths/trade_impact/post.py,sha256=gycxVhNtjzsgEHaPfTruKOSufJuH5jAbwYP4YsTNaW0,25430
570
+ snaptrade_client/paths/trade_impact/post.pyi,sha256=-um0creYorDD-UH85zUbPnONXy9ZphqZEmIakUpdJCs,25176
571
571
  snaptrade_client/paths/trade_place/__init__.py,sha256=83mA3Q0syyXA7ghAZOOJMQumSWVhvpkP3etJxeLmZZY,313
572
- snaptrade_client/paths/trade_place/post.py,sha256=5R7MtNV1Jn6H_3lbpR_fucOui9ExQCmfwz_HJf53hqA,26758
573
- snaptrade_client/paths/trade_place/post.pyi,sha256=xDpMZweKxcSClPF-b0Ep6_THM1QFQF5EwHLU-Atukys,26504
572
+ snaptrade_client/paths/trade_place/post.py,sha256=y3UI93E_gYhGQ9d-KQfHM6r1xUelSjCNgqESju0HSnQ,26772
573
+ snaptrade_client/paths/trade_place/post.pyi,sha256=dWdAHMwm0hBkEqoNcm-s-eKZR75ryC-Vj-L6OW-9N-k,26518
574
574
  snaptrade_client/paths/trade_trade_id/__init__.py,sha256=EDXCsrx0SP8La12CshBpoPw_Ve9bBIF-EXx3FLBIDcc,319
575
- snaptrade_client/paths/trade_trade_id/post.py,sha256=20bYVklpdnUxopD3evWQ03O0pWi0mV7T3J_XOh9j7l4,22371
576
- snaptrade_client/paths/trade_trade_id/post.pyi,sha256=GaA-OQaTXm6OQaufwZ6D0EbIx0uhePYQ-Z6UGSMctFU,22147
575
+ snaptrade_client/paths/trade_trade_id/post.py,sha256=MU1ydQfvpuxrMmjluX887yjofWC32cm6bi6tHbCwF0k,22385
576
+ snaptrade_client/paths/trade_trade_id/post.pyi,sha256=bO40OO_iPO8XykRqox6CmvlNt01Cqh0ehHviaG50ZxY,22161
577
577
  snaptrade_client/pydantic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
578
578
  snaptrade_client/request_after_hook.py,sha256=mIeMACG9HFgbXwwwwrpW0v0pUsTVwevAWX3P_UbbRfg,1339
579
579
  snaptrade_client/request_before_hook.py,sha256=TN-NHrbDZaabNC5btHTu477wRts_wX7rq5REh1Xg2AU,631
@@ -746,7 +746,7 @@ snaptrade_client/type/user_secret.py,sha256=pKCVhqf1rROHwa6tvoyA5OAKXCBAmNDvIQCf
746
746
  snaptrade_client/type/validated_trade_body.py,sha256=ZIPBQWii_a-9zHaBCJ6bQtmL1_I7AG0zwuvkY-ZQ6R4,890
747
747
  snaptrade_client/type_util.py,sha256=JIrMYgJzd4IJ8Ne2vqcahlPA9dVmphL9sn8gwccCB4Y,563
748
748
  snaptrade_client/validation_metadata.py,sha256=VTN5y-NudHXok1X468J4PnGze_tGEAcs1v3gsXmcrb0,3172
749
- snaptrade_python_sdk-11.0.112.dist-info/LICENSE,sha256=W_1kcxEzOnZXIYJ1GVUipbmUu6dNLt-Pc-OI55h3k-A,1081
750
- snaptrade_python_sdk-11.0.112.dist-info/METADATA,sha256=z3nRLk6PyRBDQrH9MJGDZWPsWr-ko_8aI1CaDTIuPjM,94696
751
- snaptrade_python_sdk-11.0.112.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
752
- snaptrade_python_sdk-11.0.112.dist-info/RECORD,,
749
+ snaptrade_python_sdk-11.0.114.dist-info/LICENSE,sha256=W_1kcxEzOnZXIYJ1GVUipbmUu6dNLt-Pc-OI55h3k-A,1081
750
+ snaptrade_python_sdk-11.0.114.dist-info/METADATA,sha256=npHxfP1Fa4RmI_8hapr0mxcWoLr-KMniyPJXJukYqVA,94696
751
+ snaptrade_python_sdk-11.0.114.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
752
+ snaptrade_python_sdk-11.0.114.dist-info/RECORD,,