snaptrade-python-sdk 11.0.126__py3-none-any.whl → 11.0.128__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 (25) 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 +6 -6
  4. snaptrade_client/apis/paths/accounts_account_id_orders_details.py +7 -0
  5. snaptrade_client/apis/paths/brokerages_slug_instruments.py +7 -0
  6. snaptrade_client/apis/tags/account_information_api_generated.py +1 -1
  7. snaptrade_client/apis/tags/reference_data_api_generated.py +1 -1
  8. snaptrade_client/configuration.py +1 -1
  9. snaptrade_client/model/brokerage_instrument.py +7 -2
  10. snaptrade_client/model/brokerage_instrument.pyi +7 -2
  11. snaptrade_client/operation_parameter_map.py +7 -7
  12. snaptrade_client/paths/__init__.py +2 -2
  13. snaptrade_client/paths/{brokerages_brokerage_id_instruments → accounts_account_id_orders_details}/__init__.py +2 -2
  14. snaptrade_client/paths/{accounts_account_id_orders_brokerage_order_id/get.py → accounts_account_id_orders_details/post.py} +167 -37
  15. snaptrade_client/paths/{accounts_account_id_orders_brokerage_order_id/get.pyi → accounts_account_id_orders_details/post.pyi} +166 -37
  16. snaptrade_client/paths/{accounts_account_id_orders_brokerage_order_id → brokerages_slug_instruments}/__init__.py +2 -2
  17. snaptrade_client/paths/{brokerages_brokerage_id_instruments → brokerages_slug_instruments}/get.py +20 -20
  18. snaptrade_client/paths/{brokerages_brokerage_id_instruments → brokerages_slug_instruments}/get.pyi +20 -20
  19. snaptrade_client/type/brokerage_instrument.py +2 -3
  20. {snaptrade_python_sdk-11.0.126.dist-info → snaptrade_python_sdk-11.0.128.dist-info}/METADATA +20 -13
  21. {snaptrade_python_sdk-11.0.126.dist-info → snaptrade_python_sdk-11.0.128.dist-info}/RECORD +23 -23
  22. snaptrade_client/apis/paths/accounts_account_id_orders_brokerage_order_id.py +0 -7
  23. snaptrade_client/apis/paths/brokerages_brokerage_id_instruments.py +0 -7
  24. {snaptrade_python_sdk-11.0.126.dist-info → snaptrade_python_sdk-11.0.128.dist-info}/LICENSE +0 -0
  25. {snaptrade_python_sdk-11.0.126.dist-info → snaptrade_python_sdk-11.0.128.dist-info}/WHEEL +0 -0
@@ -37,11 +37,11 @@ from snaptrade_client.model.brokerage_instruments_response import BrokerageInstr
37
37
  from snaptrade_client.type.brokerage_instruments_response import BrokerageInstrumentsResponse
38
38
 
39
39
  # Path params
40
- BrokerageIdSchema = schemas.UUIDSchema
40
+ SlugSchema = schemas.StrSchema
41
41
  RequestRequiredPathParams = typing_extensions.TypedDict(
42
42
  'RequestRequiredPathParams',
43
43
  {
44
- 'brokerageId': typing.Union[BrokerageIdSchema, str, uuid.UUID, ],
44
+ 'slug': typing.Union[SlugSchema, str, ],
45
45
  }
46
46
  )
47
47
  RequestOptionalPathParams = typing_extensions.TypedDict(
@@ -56,10 +56,10 @@ class RequestPathParams(RequestRequiredPathParams, RequestOptionalPathParams):
56
56
  pass
57
57
 
58
58
 
59
- request_path_brokerage_id = api_client.PathParameter(
60
- name="brokerageId",
59
+ request_path_slug = api_client.PathParameter(
60
+ name="slug",
61
61
  style=api_client.ParameterStyle.SIMPLE,
62
- schema=BrokerageIdSchema,
62
+ schema=SlugSchema,
63
63
  required=True,
64
64
  )
65
65
  SchemaFor200ResponseBodyApplicationJson = BrokerageInstrumentsResponseSchema
@@ -107,13 +107,13 @@ class BaseApi(api_client.Api):
107
107
 
108
108
  def _list_all_brokerage_instruments_mapped_args(
109
109
  self,
110
- brokerage_id: typing.Optional[str] = None,
110
+ slug: typing.Optional[str] = None,
111
111
  path_params: typing.Optional[dict] = {},
112
112
  ) -> api_client.MappedArgs:
113
113
  args: api_client.MappedArgs = api_client.MappedArgs()
114
114
  _path_params = {}
115
- if brokerage_id is not None:
116
- _path_params["brokerageId"] = brokerage_id
115
+ if slug is not None:
116
+ _path_params["slug"] = slug
117
117
  args.path = path_params if path_params else _path_params
118
118
  return args
119
119
 
@@ -142,7 +142,7 @@ class BaseApi(api_client.Api):
142
142
 
143
143
  _path_params = {}
144
144
  for parameter in (
145
- request_path_brokerage_id,
145
+ request_path_slug,
146
146
  ):
147
147
  parameter_data = path_params.get(parameter.name, schemas.unset)
148
148
  if parameter_data is schemas.unset:
@@ -163,7 +163,7 @@ class BaseApi(api_client.Api):
163
163
  resource_path=used_path,
164
164
  method=method,
165
165
  configuration=self.api_client.configuration,
166
- path_template='/brokerages/{brokerageId}/instruments',
166
+ path_template='/brokerages/{slug}/instruments',
167
167
  auth_settings=_auth,
168
168
  headers=_headers,
169
169
  )
@@ -259,7 +259,7 @@ class BaseApi(api_client.Api):
259
259
 
260
260
  _path_params = {}
261
261
  for parameter in (
262
- request_path_brokerage_id,
262
+ request_path_slug,
263
263
  ):
264
264
  parameter_data = path_params.get(parameter.name, schemas.unset)
265
265
  if parameter_data is schemas.unset:
@@ -280,7 +280,7 @@ class BaseApi(api_client.Api):
280
280
  resource_path=used_path,
281
281
  method=method,
282
282
  configuration=self.api_client.configuration,
283
- path_template='/brokerages/{brokerageId}/instruments',
283
+ path_template='/brokerages/{slug}/instruments',
284
284
  auth_settings=_auth,
285
285
  headers=_headers,
286
286
  )
@@ -327,7 +327,7 @@ class ListAllBrokerageInstruments(BaseApi):
327
327
 
328
328
  async def alist_all_brokerage_instruments(
329
329
  self,
330
- brokerage_id: typing.Optional[str] = None,
330
+ slug: typing.Optional[str] = None,
331
331
  path_params: typing.Optional[dict] = {},
332
332
  **kwargs,
333
333
  ) -> typing.Union[
@@ -338,7 +338,7 @@ class ListAllBrokerageInstruments(BaseApi):
338
338
  ]:
339
339
  args = self._list_all_brokerage_instruments_mapped_args(
340
340
  path_params=path_params,
341
- brokerage_id=brokerage_id,
341
+ slug=slug,
342
342
  )
343
343
  return await self._alist_all_brokerage_instruments_oapg(
344
344
  path_params=args.path,
@@ -347,7 +347,7 @@ class ListAllBrokerageInstruments(BaseApi):
347
347
 
348
348
  def list_all_brokerage_instruments(
349
349
  self,
350
- brokerage_id: typing.Optional[str] = None,
350
+ slug: typing.Optional[str] = None,
351
351
  path_params: typing.Optional[dict] = {},
352
352
  ) -> typing.Union[
353
353
  ApiResponseFor200,
@@ -357,7 +357,7 @@ class ListAllBrokerageInstruments(BaseApi):
357
357
  """ Returns a list of all brokerage instruments available for a given brokerage. Not all brokerages support this. The ones that don't will return an empty list. """
358
358
  args = self._list_all_brokerage_instruments_mapped_args(
359
359
  path_params=path_params,
360
- brokerage_id=brokerage_id,
360
+ slug=slug,
361
361
  )
362
362
  return self._list_all_brokerage_instruments_oapg(
363
363
  path_params=args.path,
@@ -368,7 +368,7 @@ class ApiForget(BaseApi):
368
368
 
369
369
  async def aget(
370
370
  self,
371
- brokerage_id: typing.Optional[str] = None,
371
+ slug: typing.Optional[str] = None,
372
372
  path_params: typing.Optional[dict] = {},
373
373
  **kwargs,
374
374
  ) -> typing.Union[
@@ -379,7 +379,7 @@ class ApiForget(BaseApi):
379
379
  ]:
380
380
  args = self._list_all_brokerage_instruments_mapped_args(
381
381
  path_params=path_params,
382
- brokerage_id=brokerage_id,
382
+ slug=slug,
383
383
  )
384
384
  return await self._alist_all_brokerage_instruments_oapg(
385
385
  path_params=args.path,
@@ -388,7 +388,7 @@ class ApiForget(BaseApi):
388
388
 
389
389
  def get(
390
390
  self,
391
- brokerage_id: typing.Optional[str] = None,
391
+ slug: typing.Optional[str] = None,
392
392
  path_params: typing.Optional[dict] = {},
393
393
  ) -> typing.Union[
394
394
  ApiResponseFor200,
@@ -398,7 +398,7 @@ class ApiForget(BaseApi):
398
398
  """ Returns a list of all brokerage instruments available for a given brokerage. Not all brokerages support this. The ones that don't will return an empty list. """
399
399
  args = self._list_all_brokerage_instruments_mapped_args(
400
400
  path_params=path_params,
401
- brokerage_id=brokerage_id,
401
+ slug=slug,
402
402
  )
403
403
  return self._list_all_brokerage_instruments_oapg(
404
404
  path_params=args.path,
@@ -17,12 +17,11 @@ from typing_extensions import TypedDict, Literal, TYPE_CHECKING
17
17
 
18
18
 
19
19
  class RequiredBrokerageInstrument(TypedDict):
20
- pass
21
-
22
- class OptionalBrokerageInstrument(TypedDict, total=False):
23
20
  # The instrument's trading symbol / ticker.
24
21
  symbol: str
25
22
 
23
+
24
+ class OptionalBrokerageInstrument(TypedDict, total=False):
26
25
  # The MIC code of the exchange where the instrument is traded.
27
26
  exchange_mic: typing.Optional[str]
28
27
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: snaptrade-python-sdk
3
- Version: 11.0.126
3
+ Version: 11.0.128
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.126-blue)](https://pypi.org/project/snaptrade-python-sdk/11.0.126)
33
+ [![PyPI](https://img.shields.io/badge/PyPI-v11.0.128-blue)](https://pypi.org/project/snaptrade-python-sdk/11.0.128)
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
 
@@ -109,7 +109,7 @@ Python >=3.8
109
109
  ## Installation<a id="installation"></a>
110
110
 
111
111
  ```sh
112
- pip install snaptrade-python-sdk==11.0.126
112
+ pip install snaptrade-python-sdk==11.0.128
113
113
  ```
114
114
 
115
115
  ## Getting Started<a id="getting-started"></a>
@@ -401,7 +401,7 @@ get_user_account_details_response = (
401
401
 
402
402
  ### `snaptrade.account_information.get_user_account_order_detail`<a id="snaptradeaccount_informationget_user_account_order_detail"></a>
403
403
 
404
- Returns the detail of a single order in the specified account.
404
+ Returns the detail of a single order using the external order ID provided in the request body.
405
405
 
406
406
  This endpoint is always realtime and does not rely on cached data.
407
407
 
@@ -413,31 +413,36 @@ This endpoint only returns orders placed through SnapTrade. In other words, orde
413
413
  ```python
414
414
  get_user_account_order_detail_response = (
415
415
  snaptrade.account_information.get_user_account_order_detail(
416
+ external_order_id="66a033fa-da74-4fcf-b527-feefdec9257e",
417
+ account_id="917c8734-8470-4a3e-a18f-57c3f2ee6631",
416
418
  user_id="snaptrade-user-123",
417
419
  user_secret="adf2aa34-8219-40f7-a6b3-60156985cc61",
418
- account_id="917c8734-8470-4a3e-a18f-57c3f2ee6631",
419
- brokerage_order_id="66a033fa-da74-4fcf-b527-feefdec9257e",
420
420
  )
421
421
  )
422
422
  ```
423
423
 
424
424
  #### ⚙️ Parameters<a id="⚙️-parameters"></a>
425
425
 
426
- ##### user_id: `str`<a id="user_id-str"></a>
426
+ ##### external_order_id: `str`<a id="external_order_id-str"></a>
427
427
 
428
- ##### user_secret: `str`<a id="user_secret-str"></a>
428
+ Order ID returned by brokerage. This is the unique identifier for the order in the brokerage system.
429
429
 
430
430
  ##### account_id: `str`<a id="account_id-str"></a>
431
431
 
432
- ##### brokerage_order_id: `str`<a id="brokerage_order_id-str"></a>
432
+ ##### user_id: `str`<a id="user_id-str"></a>
433
433
 
434
+ ##### user_secret: `str`<a id="user_secret-str"></a>
435
+
436
+ #### ⚙️ Request Body<a id="⚙️-request-body"></a>
437
+
438
+ [`Any`](./snaptrade_client/type/typing_any.py)
434
439
  #### 🔄 Return<a id="🔄-return"></a>
435
440
 
436
441
  [`AccountOrderRecord`](./snaptrade_client/type/account_order_record.py)
437
442
 
438
443
  #### 🌐 Endpoint<a id="🌐-endpoint"></a>
439
444
 
440
- `/accounts/{accountId}/orders/{brokerageOrderId}` `get`
445
+ `/accounts/{accountId}/orders/details` `post`
441
446
 
442
447
  [🔙 **Back to Table of Contents**](#table-of-contents)
443
448
 
@@ -1467,14 +1472,16 @@ Returns a list of all brokerage instruments available for a given brokerage. Not
1467
1472
  ```python
1468
1473
  list_all_brokerage_instruments_response = (
1469
1474
  snaptrade.reference_data.list_all_brokerage_instruments(
1470
- brokerage_id="87b24961-b51e-4db8-9226-f198f6518a89",
1475
+ slug="QUESTRADE",
1471
1476
  )
1472
1477
  )
1473
1478
  ```
1474
1479
 
1475
1480
  #### ⚙️ Parameters<a id="⚙️-parameters"></a>
1476
1481
 
1477
- ##### brokerage_id: `str`<a id="brokerage_id-str"></a>
1482
+ ##### slug: `str`<a id="slug-str"></a>
1483
+
1484
+ A short, unique identifier for the brokerage. It is usually the name of the brokerage in capital letters and will never change.
1478
1485
 
1479
1486
  #### 🔄 Return<a id="🔄-return"></a>
1480
1487
 
@@ -1482,7 +1489,7 @@ list_all_brokerage_instruments_response = (
1482
1489
 
1483
1490
  #### 🌐 Endpoint<a id="🌐-endpoint"></a>
1484
1491
 
1485
- `/brokerages/{brokerageId}/instruments` `get`
1492
+ `/brokerages/{slug}/instruments` `get`
1486
1493
 
1487
1494
  [🔙 **Back to Table of Contents**](#table-of-contents)
1488
1495
 
@@ -1,8 +1,8 @@
1
- snaptrade_client/__init__.py,sha256=x_eTlSA2EUTpP7T1XTxqJ0XSaX0bVA-UNPAE94kcOyY,820
2
- snaptrade_client/api_client.py,sha256=oDU6wjp6-MOr9IMV06TuvW-tNAolJ5zTWIKE55_W2Kc,73975
1
+ snaptrade_client/__init__.py,sha256=IrvbrIP2a8GkNcimo0iZNX2Un-C0D6H-Imx3ZBhFwc8,820
2
+ snaptrade_client/api_client.py,sha256=eanovE9Jezv26Tc0Pd_DWENU3gHCpZEY5W1aQRPU76w,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=TAkgurFDUikq9Y0iZNyipgF_-Lz2RQtesp80-ZRw1C0,12417
5
+ snaptrade_client/apis/path_to_api.py,sha256=4kldxcVXHcyd6XM8UFe7zlFSHj02tf9s3TFXDZwfEHY,12312
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
@@ -12,8 +12,8 @@ snaptrade_client/apis/paths/accounts_account_id_holdings.py,sha256=QCqmgaPTw1Ahl
12
12
  snaptrade_client/apis/paths/accounts_account_id_options.py,sha256=Q2BpJm_phHSqbhC-fSqsnCkL2GTGhaoHuVC51x_pLoI,138
13
13
  snaptrade_client/apis/paths/accounts_account_id_options_chain.py,sha256=0x2p_tMUy8K8Kx1R0KQVdp5M03qwddDufPS2aZbtqO8,149
14
14
  snaptrade_client/apis/paths/accounts_account_id_orders.py,sha256=2rP-vnv9VQm1Acdw0d8iaFYGFI5XqiP0XBYXeJ9kHaw,136
15
- snaptrade_client/apis/paths/accounts_account_id_orders_brokerage_order_id.py,sha256=uvxoSTzbz8KmS9YGAc0fhs8h2nrWOVw8Z2iEzSTbGfU,171
16
15
  snaptrade_client/apis/paths/accounts_account_id_orders_cancel.py,sha256=JPwBTe7P9cKjrJzw0vfApfYBZXwtWExU7xpTgV50zKE,152
16
+ snaptrade_client/apis/paths/accounts_account_id_orders_details.py,sha256=CN3IJK-lgcfT00uJIQjJMu82S58fFGwg3gR7QRNnOn0,154
17
17
  snaptrade_client/apis/paths/accounts_account_id_positions.py,sha256=ovywLJiI569NLjYSgCcl1_6QGBeUT_02OAYYTHLq8Cc,142
18
18
  snaptrade_client/apis/paths/accounts_account_id_quotes.py,sha256=_2v0DiUngr6a-Mi1EUrCfOn94e45pDhnH5Q9RdquIMA,136
19
19
  snaptrade_client/apis/paths/accounts_account_id_recent_orders.py,sha256=EeY-phJr21kpUIrZ-wBc2y6v4qP75R5t54hSqlqmw6k,149
@@ -35,7 +35,7 @@ snaptrade_client/apis/paths/authorizations_authorization_id_refresh.py,sha256=YB
35
35
  snaptrade_client/apis/paths/authorizations_authorization_id_return_rates.py,sha256=1_ZsryO5M4dV9eWfIa1PPq2fG8fnzYtc5hmuelKVXt8,171
36
36
  snaptrade_client/apis/paths/brokerage_authorization_types.py,sha256=A0HApWnSB9hR_D7AQ41urD5Lke3dtKosKOnScgStu7o,143
37
37
  snaptrade_client/apis/paths/brokerages.py,sha256=LKV9KzmXT0e2tJzbeXPf80fcDR6XeuPtP-ZJ0RYfudQ,107
38
- snaptrade_client/apis/paths/brokerages_brokerage_id_instruments.py,sha256=ri5ruKNZRbzXJZAliok-HnXT9vizYgS5j6NOqQTQkFw,154
38
+ snaptrade_client/apis/paths/brokerages_slug_instruments.py,sha256=b_S8sYo9HdC_HbdRXIAX-Bmd_zKnchX0J2YK5mDLyxk,139
39
39
  snaptrade_client/apis/paths/currencies.py,sha256=MQhS7U36AQnyQ454yUUuNCCbgel-v8x4g7DQebzAYaM,107
40
40
  snaptrade_client/apis/paths/currencies_rates.py,sha256=C4UyuGNlgJf7doYKpp4AfjQ4-QPvGtrm1kV4ln42zmE,118
41
41
  snaptrade_client/apis/paths/currencies_rates_currency_pair.py,sha256=yzm9l8jNuQU6vXIp4rVR69DTv89J6TIwFx-sc5ugBhA,144
@@ -59,7 +59,7 @@ snaptrade_client/apis/paths/trade_trade_id.py,sha256=obGSPVLZRpWmozwuCrxnDL2NQzN
59
59
  snaptrade_client/apis/tag_to_api.py,sha256=4kBzm9kk13yI5s3At61eiaZ-B6suxtPv9Oq1z--nBks,1601
60
60
  snaptrade_client/apis/tags/__init__.py,sha256=0gw9bF8gMwlrWqLRqYHijltHnho9T8l83Pobtm194pw,585
61
61
  snaptrade_client/apis/tags/account_information_api.py,sha256=lbGNEG6xu9Y7xjiQnNKxafMIMwx2NA-kJraqymyd-j4,192
62
- snaptrade_client/apis/tags/account_information_api_generated.py,sha256=qnlEUhHAt9OI6ismMOLY4JHIkfWO3qP6MgkjTQboQN8,1736
62
+ snaptrade_client/apis/tags/account_information_api_generated.py,sha256=jueUAgDMo1XuHPrWXuy4w7wDuFEVd9aImNmUfe88Vac,1726
63
63
  snaptrade_client/apis/tags/api_status_api.py,sha256=N4rdI4EmxVg5mxhu-Q2UVkIKgDKrZWhRmO7R_T1IkZw,156
64
64
  snaptrade_client/apis/tags/api_status_api_generated.py,sha256=fc7Ei4Aka6gYmg1StN-TfoL77kSIh8hZhtIvb5OM2Nk,425
65
65
  snaptrade_client/apis/tags/authentication_api.py,sha256=9QKQmKP326PcQusLJaW5XDaCb7EF0chuVDQmgo5QMGo,175
@@ -69,7 +69,7 @@ snaptrade_client/apis/tags/connections_api_generated.py,sha256=inWc0qR9q4SFyTWsf
69
69
  snaptrade_client/apis/tags/options_api.py,sha256=tl2HI1JChvEGrE5mcSLN85Ah5AHtjVa4n8Hx7GY-ZNA,147
70
70
  snaptrade_client/apis/tags/options_api_generated.py,sha256=cZibnPAKx1t5eoDBuMrjE1Gty5Kso9jqzTsUhE-M4Jg,582
71
71
  snaptrade_client/apis/tags/reference_data_api.py,sha256=DdmRsoiG7nLk8EgXWT1KvurcQnPYAlr1Dz0kdpdWGRQ,172
72
- snaptrade_client/apis/tags/reference_data_api_generated.py,sha256=F5uv2WsIYX7z8P86b8W8gjMjJU46L6GWs6WFJjKW17Y,1635
72
+ snaptrade_client/apis/tags/reference_data_api_generated.py,sha256=dgkjVRiqL6xGnW-ji3iG4D9qqPd-QqPqBMsrt4EUbmc,1627
73
73
  snaptrade_client/apis/tags/trading_api.py,sha256=J0L9w7V4uoH3_fkvmJhpVQTIUQCACBgrb_QQ7VTILqI,147
74
74
  snaptrade_client/apis/tags/trading_api_generated.py,sha256=dbNWUjGnGVNg_ZFEPI0yw7EF4_DjonpEjhjBU5lsfQc,1898
75
75
  snaptrade_client/apis/tags/transactions_and_reporting_api.py,sha256=4qC3MPU73Cj2ePSxD_GIjrvvxLbjEEsan2VcDqVZXd4,217
@@ -77,7 +77,7 @@ snaptrade_client/apis/tags/transactions_and_reporting_api_generated.py,sha256=Tw
77
77
  snaptrade_client/client.py,sha256=goDwWRv9909OPXDnGGYst_mr53bg6RUs4PwIvnrl_kE,2116
78
78
  snaptrade_client/client.pyi,sha256=goDwWRv9909OPXDnGGYst_mr53bg6RUs4PwIvnrl_kE,2116
79
79
  snaptrade_client/client_custom.py,sha256=Jx9ulCzelMFlESjzVFQSjBlYcH4dWxSJJWZDMPLyetM,745
80
- snaptrade_client/configuration.py,sha256=ffrgwQXPNyukD7nkkXmRxtQywSj4A8sUCtI_qASgPoY,19262
80
+ snaptrade_client/configuration.py,sha256=w6QTi9HxTK_jw0GFOE0vS5DgmJejx8sCFW52do9-KLo,19262
81
81
  snaptrade_client/exceptions.py,sha256=X0apI_sgQpGpa-qIqPUClReCdHAxeSuA6GW0YH_RsWg,7771
82
82
  snaptrade_client/exceptions_base.py,sha256=LAQkaC5C61-SdBLfyMjb0K7AYJkWVuLmg2uCvHa71FM,2274
83
83
  snaptrade_client/model/__init__.py,sha256=ayi2MIzcf0eAIsY13ToiNplV9tW-pMBFrC0I9yckGM8,350
@@ -137,8 +137,8 @@ snaptrade_client/model/brokerage_exchanges.py,sha256=pCbQ6uDHKBHPJBiVRdnyOV8iqZQ
137
137
  snaptrade_client/model/brokerage_exchanges.pyi,sha256=pCbQ6uDHKBHPJBiVRdnyOV8iqZQvCKgfyx8i7ok6xnE,1624
138
138
  snaptrade_client/model/brokerage_id.py,sha256=B8Y6_fjztI3b-UyGfqTXYZTF90_DFS4Gib3ZKnC3fkY,602
139
139
  snaptrade_client/model/brokerage_id.pyi,sha256=B8Y6_fjztI3b-UyGfqTXYZTF90_DFS4Gib3ZKnC3fkY,602
140
- snaptrade_client/model/brokerage_instrument.py,sha256=rK7nGHcoFkyyI38YPipmz_lVXQ9bPKRKI1u6CalGTBY,7639
141
- snaptrade_client/model/brokerage_instrument.pyi,sha256=rK7nGHcoFkyyI38YPipmz_lVXQ9bPKRKI1u6CalGTBY,7639
140
+ snaptrade_client/model/brokerage_instrument.py,sha256=uA-H42uh_Dt5ps9YoxCY2rVfBEa4WCYv38AEiasFLU0,7678
141
+ snaptrade_client/model/brokerage_instrument.pyi,sha256=uA-H42uh_Dt5ps9YoxCY2rVfBEa4WCYv38AEiasFLU0,7678
142
142
  snaptrade_client/model/brokerage_instruments_response.py,sha256=k0boWyLlnpaKDPntIrv8rcpJk5eG7rwDWnA4BZUjzKI,3535
143
143
  snaptrade_client/model/brokerage_instruments_response.pyi,sha256=k0boWyLlnpaKDPntIrv8rcpJk5eG7rwDWnA4BZUjzKI,3535
144
144
  snaptrade_client/model/brokerage_order_id.py,sha256=7MQACuFY1z1zyd31KkUVjwboCh6efSCrOxbHzzWpha0,606
@@ -422,8 +422,8 @@ snaptrade_client/model/user_secret.pyi,sha256=7xf__S566WtTq7VthmdVtrCBIfgpnYWYqE
422
422
  snaptrade_client/model/validated_trade_body.py,sha256=NkTel1ulgSjBd6K7vur6puEbfrg3u1vdmtUKArOu8ws,3085
423
423
  snaptrade_client/model/validated_trade_body.pyi,sha256=NkTel1ulgSjBd6K7vur6puEbfrg3u1vdmtUKArOu8ws,3085
424
424
  snaptrade_client/models/__init__.py,sha256=nEO5bHCM19h-AQp0rl6XNHrTZ4Aw4ffqVOPRYOPOr_I,13312
425
- snaptrade_client/operation_parameter_map.py,sha256=aXkhPW_v25cynvWzMJv_wU1sC9jXILRekK0kXdg4s1E,18261
426
- snaptrade_client/paths/__init__.py,sha256=pcsKbVvTXfw8DZBrryYmzOi4vIFJc9ZPjdYk9Z2NWVc,3556
425
+ snaptrade_client/operation_parameter_map.py,sha256=lZoHmeI4jeRyxSzIUX4iBJqKPXJ8eezrA7K7tmEPk74,18238
426
+ snaptrade_client/paths/__init__.py,sha256=_AIs8vbi_zgRHbgZ2k64V6waRP3RiZuyL4nRaZbpLMY,3519
427
427
  snaptrade_client/paths/accounts/__init__.py,sha256=_Bqi6B13A-kgd0AOpqmcE1vTxJDfoz-r3Hwf-AmwW6A,307
428
428
  snaptrade_client/paths/accounts/get.py,sha256=MDE_4VCylBroYDkMQe9II1qCGf6gTTDGCShFyGLXf00,16463
429
429
  snaptrade_client/paths/accounts/get.pyi,sha256=gna7qIU-95WqOFl6qTsP18ZY7SKi9CYEBAbARPAPPF4,16261
@@ -450,12 +450,12 @@ snaptrade_client/paths/accounts_account_id_options_chain/get.pyi,sha256=7qu-rIKE
450
450
  snaptrade_client/paths/accounts_account_id_orders/__init__.py,sha256=zHuTi8F_iUeJNBtI08jQZe2-gAFrIDAYEl1B5y0XpTM,343
451
451
  snaptrade_client/paths/accounts_account_id_orders/get.py,sha256=G995P3DYTYjlbOmqO1iyJSPjtO6KmFUOfGCBaozjeUU,21877
452
452
  snaptrade_client/paths/accounts_account_id_orders/get.pyi,sha256=N23jjsdpQiilZqFXOF5Gj31PLdOXqEpKytqUwiB_AiI,21462
453
- snaptrade_client/paths/accounts_account_id_orders_brokerage_order_id/__init__.py,sha256=HRMFYdm8PGjoYJ-0S1O80PZjXt3H4SBbiPvfGFFB9M0,381
454
- snaptrade_client/paths/accounts_account_id_orders_brokerage_order_id/get.py,sha256=cY-r37PYauAK3_7rH3ZIy3k9qvyW15F1R3vSr1u6XvU,20819
455
- snaptrade_client/paths/accounts_account_id_orders_brokerage_order_id/get.pyi,sha256=rkDYVT-32--8_hC3vzgaXCvKFEddTpD83nhCAyHiKxA,20595
456
453
  snaptrade_client/paths/accounts_account_id_orders_cancel/__init__.py,sha256=UIeHlsXhxZyqf4ADkLxYxJUH6ChCcSkpeML1XWjxGdI,357
457
454
  snaptrade_client/paths/accounts_account_id_orders_cancel/post.py,sha256=PipHEDsFEytBeeXn5ydOnD5bCTHcDfW5EWmaRuuWQyQ,24559
458
455
  snaptrade_client/paths/accounts_account_id_orders_cancel/post.pyi,sha256=r1JJmy3TEKzeu7WAXPGP5RocDF6dDwFScC_-ffesP9E,24335
456
+ snaptrade_client/paths/accounts_account_id_orders_details/__init__.py,sha256=6PWLMs5Y6WxEM5h99FQSSpvq7Btg4dfrgMkWk3mhBYo,359
457
+ snaptrade_client/paths/accounts_account_id_orders_details/post.py,sha256=Y2OQbjd9MsJMCCqkVIeN5cQ9iYxs_brMeUUZf9VP5EU,25418
458
+ snaptrade_client/paths/accounts_account_id_orders_details/post.pyi,sha256=rZzDqLhRILvEoGiRyXQfY6W-UnJ_iPMdhuMg8Ir1dRo,25164
459
459
  snaptrade_client/paths/accounts_account_id_positions/__init__.py,sha256=UB-B0t2OnlP8QvI9ptBNhqYsywmYsFZz9G8NJkVZBTM,349
460
460
  snaptrade_client/paths/accounts_account_id_positions/get.py,sha256=mT1qThSd9z8ggJa0uXGdWA_N8cs0NH_ijLRsPIVnuWY,20204
461
461
  snaptrade_client/paths/accounts_account_id_positions/get.pyi,sha256=wHZruGOsjMfVd6GW3qB8jPhMQNfr2dP4TbB71taNUVk,20002
@@ -521,9 +521,9 @@ snaptrade_client/paths/brokerage_authorization_types/get.pyi,sha256=QH-Le2FQ3lEw
521
521
  snaptrade_client/paths/brokerages/__init__.py,sha256=iSOrQi0W3HabeDgu9IRT-PYS_bYZvd2o05hfhFgyqpw,311
522
522
  snaptrade_client/paths/brokerages/get.py,sha256=C9ygoXqROqHL58spj0nISr13o9mXMLUE6tmUiK6i-eQ,11862
523
523
  snaptrade_client/paths/brokerages/get.pyi,sha256=s3n13JswLTx30uVTItV8eUVDa0cpJSrcUOOQ8SSgOdo,11660
524
- snaptrade_client/paths/brokerages_brokerage_id_instruments/__init__.py,sha256=VWl2ZJ5JNeTtYHcavRnLjDKfQ7PsLTh7z1EyYzlhG44,361
525
- snaptrade_client/paths/brokerages_brokerage_id_instruments/get.py,sha256=zl3IhD7ERu0R5ERDw-FYiPBnf8VTF2iDZhHceWAnXps,14779
526
- snaptrade_client/paths/brokerages_brokerage_id_instruments/get.pyi,sha256=2b4RaF0owgMO0Tj2wu3krAVGEE6YH7ju8bxWqzQUA4w,14577
524
+ snaptrade_client/paths/brokerages_slug_instruments/__init__.py,sha256=OF4dWGJpsrigtIdVoEIvQpgLUS3KDM3Uwia1-NnXoOQ,345
525
+ snaptrade_client/paths/brokerages_slug_instruments/get.py,sha256=69TUDYcJrmvF2HBU7OozcmTtRinwaaGlE8RSaEv1oPA,14567
526
+ snaptrade_client/paths/brokerages_slug_instruments/get.pyi,sha256=IEfuDsB2QLc0cmqXksLL9bVZHfLoVvhYRZoOCZ0N618,14365
527
527
  snaptrade_client/paths/currencies/__init__.py,sha256=E_ExjRD9lsd051A5rYxbZjMI8EuzoNNqca6NnHUmGGg,311
528
528
  snaptrade_client/paths/currencies/get.py,sha256=T6INxssyN58AqwmlhUy363i9YRezc-xVnoqWeRMgkco,11848
529
529
  snaptrade_client/paths/currencies/get.pyi,sha256=NeZH1if9QF_KPdhEME-vuJV-JTILX2CuG9wNSs9MXMA,11646
@@ -619,7 +619,7 @@ snaptrade_client/type/brokerage_authorization_type_read_only.py,sha256=s8LO8_UrS
619
619
  snaptrade_client/type/brokerage_authorization_type_read_only_brokerage.py,sha256=CifzEt7S-UupSXMVloKz-ZdX7LeNG60btZ7nQhVOW_o,905
620
620
  snaptrade_client/type/brokerage_exchanges.py,sha256=qKMI9-B8MQPz3W3fnAVJNrZmdFK6ehfhH6FJmiI3Mk0,475
621
621
  snaptrade_client/type/brokerage_id.py,sha256=9lFbHF4p5urF89zSBsedK_2PHtqD86b0TOV0Snp5FrY,389
622
- snaptrade_client/type/brokerage_instrument.py,sha256=G5Jjf3-_ziIBtyGMq-RLFOvRXKUN7c4WUHBc_KcGQEg,1199
622
+ snaptrade_client/type/brokerage_instrument.py,sha256=QJiSO-aTfCWyOUOENCHh4TcPOYcULLrrCWsNSoSh0u8,1190
623
623
  snaptrade_client/type/brokerage_instruments_response.py,sha256=flNX8_TLme4kZ_JxfYvHt09zt9hlMvNg-N9N-Vde65c,751
624
624
  snaptrade_client/type/brokerage_order_id.py,sha256=oE2d-GYvZjKRLR-eKg2iMVR3ESXhw7qEKC2w6ld4ldQ,394
625
625
  snaptrade_client/type/brokerage_symbol_id.py,sha256=nR9N24PrsaUx1AsjtLRg7-Jay5zqWxvYukw3Xj9SrXY,395
@@ -763,7 +763,7 @@ snaptrade_client/type/user_secret.py,sha256=pKCVhqf1rROHwa6tvoyA5OAKXCBAmNDvIQCf
763
763
  snaptrade_client/type/validated_trade_body.py,sha256=ZIPBQWii_a-9zHaBCJ6bQtmL1_I7AG0zwuvkY-ZQ6R4,890
764
764
  snaptrade_client/type_util.py,sha256=JIrMYgJzd4IJ8Ne2vqcahlPA9dVmphL9sn8gwccCB4Y,563
765
765
  snaptrade_client/validation_metadata.py,sha256=VTN5y-NudHXok1X468J4PnGze_tGEAcs1v3gsXmcrb0,3172
766
- snaptrade_python_sdk-11.0.126.dist-info/LICENSE,sha256=W_1kcxEzOnZXIYJ1GVUipbmUu6dNLt-Pc-OI55h3k-A,1081
767
- snaptrade_python_sdk-11.0.126.dist-info/METADATA,sha256=JahjhH1IfBaefSPscmskF21R5O3xLiJohqnsGJHED2c,92661
768
- snaptrade_python_sdk-11.0.126.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
769
- snaptrade_python_sdk-11.0.126.dist-info/RECORD,,
766
+ snaptrade_python_sdk-11.0.128.dist-info/LICENSE,sha256=W_1kcxEzOnZXIYJ1GVUipbmUu6dNLt-Pc-OI55h3k-A,1081
767
+ snaptrade_python_sdk-11.0.128.dist-info/METADATA,sha256=CBXY3oianO1MRBiREyyoPtnbDLiVEXCZPEAe5CPfO1w,92958
768
+ snaptrade_python_sdk-11.0.128.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
769
+ snaptrade_python_sdk-11.0.128.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- from snaptrade_client.paths.accounts_account_id_orders_brokerage_order_id.get import ApiForget
2
-
3
-
4
- class AccountsAccountIdOrdersBrokerageOrderId(
5
- ApiForget,
6
- ):
7
- pass
@@ -1,7 +0,0 @@
1
- from snaptrade_client.paths.brokerages_brokerage_id_instruments.get import ApiForget
2
-
3
-
4
- class BrokeragesBrokerageIdInstruments(
5
- ApiForget,
6
- ):
7
- pass