snaptrade-python-sdk 11.0.142__py3-none-any.whl → 11.0.144__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 (49) 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 -0
  4. snaptrade_client/apis/paths/accounts_account_id_orders_v2.py +7 -0
  5. snaptrade_client/apis/paths/accounts_account_id_recent_orders_v2.py +7 -0
  6. snaptrade_client/apis/tag_to_api.py +3 -0
  7. snaptrade_client/apis/tags/__init__.py +1 -0
  8. snaptrade_client/apis/tags/experimental_endpoints_api.py +6 -0
  9. snaptrade_client/apis/tags/experimental_endpoints_api_generated.py +23 -0
  10. snaptrade_client/client.py +2 -0
  11. snaptrade_client/client.pyi +2 -0
  12. snaptrade_client/configuration.py +1 -1
  13. snaptrade_client/model/account_order_record_leg.py +252 -0
  14. snaptrade_client/model/account_order_record_leg.pyi +252 -0
  15. snaptrade_client/model/account_order_record_leg_instrument.py +137 -0
  16. snaptrade_client/model/account_order_record_leg_instrument.pyi +137 -0
  17. snaptrade_client/model/account_order_record_status.py +18 -0
  18. snaptrade_client/model/account_order_record_status.pyi +18 -0
  19. snaptrade_client/model/account_order_record_status_v2.py +90 -0
  20. snaptrade_client/model/account_order_record_status_v2.pyi +75 -0
  21. snaptrade_client/model/account_order_record_status_v2_nullable.py +105 -0
  22. snaptrade_client/model/account_order_record_status_v2_nullable.pyi +105 -0
  23. snaptrade_client/model/account_order_record_v2.py +309 -0
  24. snaptrade_client/model/account_order_record_v2.pyi +309 -0
  25. snaptrade_client/model/account_orders_v2_response.py +110 -0
  26. snaptrade_client/model/account_orders_v2_response.pyi +110 -0
  27. snaptrade_client/model/action_strict_v2.py +25 -0
  28. snaptrade_client/model/action_strict_v2.pyi +25 -0
  29. snaptrade_client/models/__init__.py +7 -0
  30. snaptrade_client/operation_parameter_map.py +35 -0
  31. snaptrade_client/paths/__init__.py +2 -0
  32. snaptrade_client/paths/accounts_account_id_orders_v2/__init__.py +7 -0
  33. snaptrade_client/paths/accounts_account_id_orders_v2/get.py +592 -0
  34. snaptrade_client/paths/accounts_account_id_orders_v2/get.pyi +569 -0
  35. snaptrade_client/paths/accounts_account_id_recent_orders_v2/__init__.py +7 -0
  36. snaptrade_client/paths/accounts_account_id_recent_orders_v2/get.py +561 -0
  37. snaptrade_client/paths/accounts_account_id_recent_orders_v2/get.pyi +549 -0
  38. snaptrade_client/type/account_order_record_leg.py +48 -0
  39. snaptrade_client/type/account_order_record_leg_instrument.py +39 -0
  40. snaptrade_client/type/account_order_record_status_v2.py +19 -0
  41. snaptrade_client/type/account_order_record_status_v2_nullable.py +19 -0
  42. snaptrade_client/type/account_order_record_v2.py +58 -0
  43. snaptrade_client/type/account_orders_v2_response.py +28 -0
  44. snaptrade_client/type/account_universal_activity.py +1 -1
  45. snaptrade_client/type/action_strict_v2.py +19 -0
  46. {snaptrade_python_sdk-11.0.142.dist-info → snaptrade_python_sdk-11.0.144.dist-info}/METADATA +103 -4
  47. {snaptrade_python_sdk-11.0.142.dist-info → snaptrade_python_sdk-11.0.144.dist-info}/RECORD +49 -18
  48. {snaptrade_python_sdk-11.0.142.dist-info → snaptrade_python_sdk-11.0.144.dist-info}/LICENSE +0 -0
  49. {snaptrade_python_sdk-11.0.142.dist-info → snaptrade_python_sdk-11.0.144.dist-info}/WHEEL +0 -0
@@ -0,0 +1,58 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ SnapTrade
5
+
6
+ Connect brokerage accounts to your app for live positions and trading
7
+
8
+ The version of the OpenAPI document: 1.0.0
9
+ Contact: api@snaptrade.com
10
+ Created by: https://snaptrade.com/
11
+ """
12
+
13
+ from datetime import datetime, date
14
+ import typing
15
+ from enum import Enum
16
+ from typing_extensions import TypedDict, Literal, TYPE_CHECKING
17
+
18
+ from snaptrade_client.type.account_order_record_leg import AccountOrderRecordLeg
19
+ from snaptrade_client.type.account_order_record_status import AccountOrderRecordStatus
20
+
21
+ class RequiredAccountOrderRecordV2(TypedDict):
22
+ pass
23
+
24
+ class OptionalAccountOrderRecordV2(TypedDict, total=False):
25
+ # Order ID returned by brokerage. This is the unique identifier for the order in the brokerage system.
26
+ brokerage_order_id: str
27
+
28
+ status: AccountOrderRecordStatus
29
+
30
+ # The type of order placed. - `MARKET` - `LIMIT` - `STOP` - `STOP_LIMIT`
31
+ order_type: typing.Optional[str]
32
+
33
+ # The Time in Force type for the order. This field indicates how long the order will remain active before it is executed or expires. We try our best to map brokerage time in force values to the following. When mapping fails, we will return the brokerage's time in force value. - `DAY` - Day. The order is valid only for the trading day on which it is placed. - `GTC` - Good Til Canceled. The order is valid until it is executed or canceled. - `FOK` - Fill Or Kill. The order must be executed in its entirety immediately or be canceled completely. - `IOC` - Immediate Or Cancel. The order must be executed immediately. Any portion of the order that cannot be filled immediately will be canceled. - `GTD` - Good Til Date. The order is valid until the specified date. - `MOO` - Market On Open. The order is to be executed at the day's opening price. - `EHP` - Extended Hours P.M. The order is to be placed during extended hour trading, after markets close.
34
+ time_in_force: str
35
+
36
+ # The time the order was placed. This is the time the order was submitted to the brokerage.
37
+ time_placed: datetime
38
+
39
+ # The time the order was executed in the brokerage system. This value is not always available from the brokerage.
40
+ time_executed: typing.Optional[datetime]
41
+
42
+ # Quote currency code for the order.
43
+ quote_currency: str
44
+
45
+ # The price at which the order was executed.
46
+ execution_price: typing.Optional[typing.Union[int, float]]
47
+
48
+ # The limit price is maximum price one is willing to pay for a buy order or the minimum price one is willing to accept for a sell order. Should only apply to `Limit` and `StopLimit` orders.
49
+ limit_price: typing.Optional[typing.Union[int, float]]
50
+
51
+ # The stop price is the price at which a stop order is triggered. Should only apply to `Stop` and `StopLimit` orders.
52
+ stop_price: typing.Optional[typing.Union[int, float]]
53
+
54
+ # List of legs that make up the order.
55
+ legs: typing.List[AccountOrderRecordLeg]
56
+
57
+ class AccountOrderRecordV2(RequiredAccountOrderRecordV2, OptionalAccountOrderRecordV2):
58
+ pass
@@ -0,0 +1,28 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ SnapTrade
5
+
6
+ Connect brokerage accounts to your app for live positions and trading
7
+
8
+ The version of the OpenAPI document: 1.0.0
9
+ Contact: api@snaptrade.com
10
+ Created by: https://snaptrade.com/
11
+ """
12
+
13
+ from datetime import datetime, date
14
+ import typing
15
+ from enum import Enum
16
+ from typing_extensions import TypedDict, Literal, TYPE_CHECKING
17
+
18
+ from snaptrade_client.type.account_order_record_v2 import AccountOrderRecordV2
19
+
20
+ class RequiredAccountOrdersV2Response(TypedDict):
21
+ # List of orders returned by the endpoint.
22
+ orders: typing.List[AccountOrderRecordV2]
23
+
24
+ class OptionalAccountOrdersV2Response(TypedDict, total=False):
25
+ pass
26
+
27
+ class AccountOrdersV2Response(RequiredAccountOrdersV2Response, OptionalAccountOrdersV2Response):
28
+ pass
@@ -42,7 +42,7 @@ class OptionalAccountUniversalActivity(TypedDict, total=False):
42
42
  # The currency in which the transaction `price` and `amount` is denominated.
43
43
  currency: Currency
44
44
 
45
- # A string representing the type of transaction. SnapTrade does a best effort to categorize the brokerage transaction types into a common set of values. Here are some of the most popular values: - `BUY` - Asset bought. - `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment. - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from the account. - `OPTIONEXPIRATION` - Option expiration event. `option_symbol` contains the related option contract info. - `OPTIONASSIGNMENT` - Option assignment event. `option_symbol` contains the related option contract info. - `OPTIONEXERCISE` - Option exercise event. `option_symbol` contains the related option contract info.
45
+ # A string representing the type of transaction. SnapTrade does a best effort to categorize the brokerage transaction types into a common set of values. Here are some of the most popular values: - `BUY` - Asset bought. - `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment. - `STOCK_DIVIDEND` - A type of dividend where a company distributes shares instead of cash - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from the account. - `TAX`` - A tax related fee. - `OPTIONEXPIRATION` - Option expiration event. - `OPTIONASSIGNMENT` - Option assignment event. - `OPTIONEXERCISE` - Option exercise event. - `TRANSFER` - Transfer of assets from one account to another. - `SPLIT` - A stock share split.
46
46
  type: str
47
47
 
48
48
  # If an option `BUY` or `SELL` transaction, this further specifies the type of action. The possible values are: - BUY_TO_OPEN - BUY_TO_CLOSE - SELL_TO_OPEN - SELL_TO_CLOSE
@@ -0,0 +1,19 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ SnapTrade
5
+
6
+ Connect brokerage accounts to your app for live positions and trading
7
+
8
+ The version of the OpenAPI document: 1.0.0
9
+ Contact: api@snaptrade.com
10
+ Created by: https://snaptrade.com/
11
+ """
12
+
13
+ from datetime import datetime, date
14
+ import typing
15
+ from enum import Enum
16
+ from typing_extensions import TypedDict, Literal, TYPE_CHECKING
17
+
18
+
19
+ ActionStrictV2 = str
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: snaptrade-python-sdk
3
- Version: 11.0.142
3
+ Version: 11.0.144
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.142-blue)](https://pypi.org/project/snaptrade-python-sdk/11.0.142)
33
+ [![PyPI](https://img.shields.io/badge/PyPI-v11.0.144-blue)](https://pypi.org/project/snaptrade-python-sdk/11.0.144)
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
 
@@ -70,6 +70,8 @@ Connect brokerage accounts to your app for live positions and trading
70
70
  * [`snaptrade.connections.remove_brokerage_authorization`](#snaptradeconnectionsremove_brokerage_authorization)
71
71
  * [`snaptrade.connections.return_rates`](#snaptradeconnectionsreturn_rates)
72
72
  * [`snaptrade.connections.session_events`](#snaptradeconnectionssession_events)
73
+ * [`snaptrade.experimental_endpoints.get_user_account_orders_v2`](#snaptradeexperimental_endpointsget_user_account_orders_v2)
74
+ * [`snaptrade.experimental_endpoints.get_user_account_recent_orders_v2`](#snaptradeexperimental_endpointsget_user_account_recent_orders_v2)
73
75
  * [`snaptrade.options.get_options_chain`](#snaptradeoptionsget_options_chain)
74
76
  * [`snaptrade.options.list_option_holdings`](#snaptradeoptionslist_option_holdings)
75
77
  * [`snaptrade.reference_data.get_currency_exchange_rate_pair`](#snaptradereference_dataget_currency_exchange_rate_pair)
@@ -109,7 +111,7 @@ Python >=3.8
109
111
  ## Installation<a id="installation"></a>
110
112
 
111
113
  ```sh
112
- pip install snaptrade-python-sdk==11.0.142
114
+ pip install snaptrade-python-sdk==11.0.144
113
115
  ```
114
116
 
115
117
  ## Getting Started<a id="getting-started"></a>
@@ -268,7 +270,7 @@ An integer that specifies the maximum number of transactions to return. Default
268
270
 
269
271
  ##### type: `str`<a id="type-str"></a>
270
272
 
271
- Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - `BUY` - Asset bought. - `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment. - `STOCK_DIVIDEND` - A type of dividend where a company distributes shares instead of cash - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from the account. - `OPTIONEXPIRATION` - Option expiration event. - `OPTIONASSIGNMENT` - Option assignment event. - `OPTIONEXERCISE` - Option exercise event. - `TRANSFER` - Transfer of assets from one account to another
273
+ Optional comma separated list of transaction types to filter by. SnapTrade does a best effort to categorize brokerage transaction types into a common set of values. Here are some of the most popular values: - `BUY` - Asset bought. - `SELL` - Asset sold. - `DIVIDEND` - Dividend payout. - `CONTRIBUTION` - Cash contribution. - `WITHDRAWAL` - Cash withdrawal. - `REI` - Dividend reinvestment. - `STOCK_DIVIDEND` - A type of dividend where a company distributes shares instead of cash - `INTEREST` - Interest deposited into the account. - `FEE` - Fee withdrawn from the account. - `TAX`` - A tax related fee. - `OPTIONEXPIRATION` - Option expiration event. - `OPTIONASSIGNMENT` - Option assignment event. - `OPTIONEXERCISE` - Option exercise event. - `TRANSFER` - Transfer of assets from one account to another. - `SPLIT` - A stock share split.
272
274
 
273
275
  #### 🔄 Return<a id="🔄-return"></a>
274
276
 
@@ -1209,6 +1211,103 @@ Optional comma separated list of session IDs used to filter the request on speci
1209
1211
 
1210
1212
  ---
1211
1213
 
1214
+ ### `snaptrade.experimental_endpoints.get_user_account_orders_v2`<a id="snaptradeexperimental_endpointsget_user_account_orders_v2"></a>
1215
+
1216
+ Returns a list of recent orders in the specified account.
1217
+
1218
+ The V2 order response format will include all legs of each order in the `legs` list field. If the order is single legged, `legs` will be a list of one leg.
1219
+
1220
+ If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection.
1221
+
1222
+
1223
+ #### 🛠️ Usage<a id="🛠️-usage"></a>
1224
+
1225
+ ```python
1226
+ get_user_account_orders_v2_response = (
1227
+ snaptrade.experimental_endpoints.get_user_account_orders_v2(
1228
+ user_id="snaptrade-user-123",
1229
+ user_secret="adf2aa34-8219-40f7-a6b3-60156985cc61",
1230
+ account_id="917c8734-8470-4a3e-a18f-57c3f2ee6631",
1231
+ state="all",
1232
+ days=30,
1233
+ )
1234
+ )
1235
+ ```
1236
+
1237
+ #### ⚙️ Parameters<a id="⚙️-parameters"></a>
1238
+
1239
+ ##### user_id: `str`<a id="user_id-str"></a>
1240
+
1241
+ ##### user_secret: `str`<a id="user_secret-str"></a>
1242
+
1243
+ ##### account_id: `str`<a id="account_id-str"></a>
1244
+
1245
+ ##### state: `str`<a id="state-str"></a>
1246
+
1247
+ defaults value is set to \"all\"
1248
+
1249
+ ##### days: `int`<a id="days-int"></a>
1250
+
1251
+ Number of days in the past to fetch the most recent orders. Defaults to the last 30 days if no value is passed in.
1252
+
1253
+ #### 🔄 Return<a id="🔄-return"></a>
1254
+
1255
+ [`AccountOrdersV2Response`](./snaptrade_client/type/account_orders_v2_response.py)
1256
+
1257
+ #### 🌐 Endpoint<a id="🌐-endpoint"></a>
1258
+
1259
+ `/accounts/{accountId}/orders/v2` `get`
1260
+
1261
+ [🔙 **Back to Table of Contents**](#table-of-contents)
1262
+
1263
+ ---
1264
+
1265
+ ### `snaptrade.experimental_endpoints.get_user_account_recent_orders_v2`<a id="snaptradeexperimental_endpointsget_user_account_recent_orders_v2"></a>
1266
+
1267
+ A lightweight endpoint that returns a list of orders executed in the last 24 hours in the specified account using the V2 order format.
1268
+ This endpoint is realtime and can be used to quickly check if account state has recently changed due to an execution, or check status of recently placed orders.
1269
+ Differs from /orders in that it is realtime, and only checks the last 24 hours as opposed to the last 30 days.
1270
+ By default only returns executed orders, but that can be changed by setting *only_executed* to false.
1271
+ **Because of the cost of realtime requests, each call to this endpoint incurs an additional charge. You can find the exact cost for your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing)**
1272
+
1273
+
1274
+ #### 🛠️ Usage<a id="🛠️-usage"></a>
1275
+
1276
+ ```python
1277
+ get_user_account_recent_orders_v2_response = (
1278
+ snaptrade.experimental_endpoints.get_user_account_recent_orders_v2(
1279
+ user_id="snaptrade-user-123",
1280
+ user_secret="adf2aa34-8219-40f7-a6b3-60156985cc61",
1281
+ account_id="917c8734-8470-4a3e-a18f-57c3f2ee6631",
1282
+ only_executed=True,
1283
+ )
1284
+ )
1285
+ ```
1286
+
1287
+ #### ⚙️ Parameters<a id="⚙️-parameters"></a>
1288
+
1289
+ ##### user_id: `str`<a id="user_id-str"></a>
1290
+
1291
+ ##### user_secret: `str`<a id="user_secret-str"></a>
1292
+
1293
+ ##### account_id: `str`<a id="account_id-str"></a>
1294
+
1295
+ ##### only_executed: `bool`<a id="only_executed-bool"></a>
1296
+
1297
+ Defaults to true. Indicates if request should fetch only executed orders. Set to false to retrieve non executed orders as well
1298
+
1299
+ #### 🔄 Return<a id="🔄-return"></a>
1300
+
1301
+ [`AccountOrdersV2Response`](./snaptrade_client/type/account_orders_v2_response.py)
1302
+
1303
+ #### 🌐 Endpoint<a id="🌐-endpoint"></a>
1304
+
1305
+ `/accounts/{accountId}/recentOrders/v2` `get`
1306
+
1307
+ [🔙 **Back to Table of Contents**](#table-of-contents)
1308
+
1309
+ ---
1310
+
1212
1311
  ### `snaptrade.options.get_options_chain`<a id="snaptradeoptionsget_options_chain"></a>
1213
1312
 
1214
1313
  Returns the option chain for the specified symbol in the specified account.
@@ -1,8 +1,8 @@
1
- snaptrade_client/__init__.py,sha256=tD7SZ-K-I9itrRJhWFxq7sDKubyAzq49VuPj0VS57Ug,820
2
- snaptrade_client/api_client.py,sha256=JlvhQQZQnWVsrjpOOFPHAyh_3tkxsS4MnMU6si7xH9s,73975
1
+ snaptrade_client/__init__.py,sha256=oNQOHo3jadGEBhg5PEpUiakmRPjaFOU9jG_lm8gxiI4,820
2
+ snaptrade_client/api_client.py,sha256=Gamf8ZioWh_W9SIKdUss0zxayYawB0XJp32H_lYT5iY,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=4kldxcVXHcyd6XM8UFe7zlFSHj02tf9s3TFXDZwfEHY,12312
5
+ snaptrade_client/apis/path_to_api.py,sha256=U2W6P3ea6gIUTB16bJ16y4fIBuaOF_TqUyGmuFF6STM,12851
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
@@ -14,9 +14,11 @@ snaptrade_client/apis/paths/accounts_account_id_options_chain.py,sha256=0x2p_tMU
14
14
  snaptrade_client/apis/paths/accounts_account_id_orders.py,sha256=2rP-vnv9VQm1Acdw0d8iaFYGFI5XqiP0XBYXeJ9kHaw,136
15
15
  snaptrade_client/apis/paths/accounts_account_id_orders_cancel.py,sha256=JPwBTe7P9cKjrJzw0vfApfYBZXwtWExU7xpTgV50zKE,152
16
16
  snaptrade_client/apis/paths/accounts_account_id_orders_details.py,sha256=CN3IJK-lgcfT00uJIQjJMu82S58fFGwg3gR7QRNnOn0,154
17
+ snaptrade_client/apis/paths/accounts_account_id_orders_v2.py,sha256=M3R_rOJ8LnyOyomildPh38bBSba1B3giWrK0FqvuBXc,141
17
18
  snaptrade_client/apis/paths/accounts_account_id_positions.py,sha256=ovywLJiI569NLjYSgCcl1_6QGBeUT_02OAYYTHLq8Cc,142
18
19
  snaptrade_client/apis/paths/accounts_account_id_quotes.py,sha256=_2v0DiUngr6a-Mi1EUrCfOn94e45pDhnH5Q9RdquIMA,136
19
20
  snaptrade_client/apis/paths/accounts_account_id_recent_orders.py,sha256=EeY-phJr21kpUIrZ-wBc2y6v4qP75R5t54hSqlqmw6k,149
21
+ snaptrade_client/apis/paths/accounts_account_id_recent_orders_v2.py,sha256=OZIxblzZEdFZGNr7BM5Svb0Kz3TeLxQzSZTlG3gf2zc,154
20
22
  snaptrade_client/apis/paths/accounts_account_id_return_rates.py,sha256=2SjRXGvVAuR8JRGSBr_sFYBTM6VJiC1QamBonvmuI80,147
21
23
  snaptrade_client/apis/paths/accounts_account_id_symbols.py,sha256=_ol99FPuyBGqr7jPZt6ktaWOE3rB73271UX2D51mVFY,141
22
24
  snaptrade_client/apis/paths/accounts_account_id_trading_bracket.py,sha256=YmDB1r26n-xXHkwsAmj0zyPqJQPk3PD3Us2gXFd4OkA,156
@@ -56,8 +58,8 @@ snaptrade_client/apis/paths/symbols_query.py,sha256=A8docGGmlT-C-DqhATL5eXMP2WEQ
56
58
  snaptrade_client/apis/paths/trade_impact.py,sha256=IPndLeDc_GS9wJmB5jTpnRZhJAdbbNiCf58CyLzDN-k,113
57
59
  snaptrade_client/apis/paths/trade_place.py,sha256=ejaerOFMV2hpLsWk7f5-jq_xNN8v2ekuwpGKeZ7yDbE,111
58
60
  snaptrade_client/apis/paths/trade_trade_id.py,sha256=obGSPVLZRpWmozwuCrxnDL2NQzNNUMJ_QppjrljIjKo,116
59
- snaptrade_client/apis/tag_to_api.py,sha256=4kBzm9kk13yI5s3At61eiaZ-B6suxtPv9Oq1z--nBks,1601
60
- snaptrade_client/apis/tags/__init__.py,sha256=0gw9bF8gMwlrWqLRqYHijltHnho9T8l83Pobtm194pw,585
61
+ snaptrade_client/apis/tag_to_api.py,sha256=vCAHSp5uBEMRkEN5BfF_viLOI_lC-9AT7tSkDL3XfWo,1828
62
+ snaptrade_client/apis/tags/__init__.py,sha256=ELack-84JFnQhy2t58qDvXQveRDXXhcO8WuVZTD1Eb0,639
61
63
  snaptrade_client/apis/tags/account_information_api.py,sha256=lbGNEG6xu9Y7xjiQnNKxafMIMwx2NA-kJraqymyd-j4,192
62
64
  snaptrade_client/apis/tags/account_information_api_generated.py,sha256=jueUAgDMo1XuHPrWXuy4w7wDuFEVd9aImNmUfe88Vac,1726
63
65
  snaptrade_client/apis/tags/api_status_api.py,sha256=N4rdI4EmxVg5mxhu-Q2UVkIKgDKrZWhRmO7R_T1IkZw,156
@@ -66,6 +68,8 @@ snaptrade_client/apis/tags/authentication_api.py,sha256=9QKQmKP326PcQusLJaW5XDaC
66
68
  snaptrade_client/apis/tags/authentication_api_generated.py,sha256=Gt6muDG-vWm-Z8tkCPG3Ae2Dh0C-LhuTMG33czSpl9I,921
67
69
  snaptrade_client/apis/tags/connections_api.py,sha256=pNGuSjvX2Fg2IJymMvM3DcoUllKUmUQQpTtLVbY2Yi8,163
68
70
  snaptrade_client/apis/tags/connections_api_generated.py,sha256=inWc0qR9q4SFyTWsfw_iI8foMNGaQ6oeZ1LaQy_qnjQ,1242
71
+ snaptrade_client/apis/tags/experimental_endpoints_api.py,sha256=eyniA9I0b58Ns-Uz55a2yQnuwr39BMiW0W1SaLS8MgY,204
72
+ snaptrade_client/apis/tags/experimental_endpoints_api_generated.py,sha256=z183cw7FXcGixI2UN2hgfsxIZpSBApCBO8v8RzocWt0,635
69
73
  snaptrade_client/apis/tags/options_api.py,sha256=tl2HI1JChvEGrE5mcSLN85Ah5AHtjVa4n8Hx7GY-ZNA,147
70
74
  snaptrade_client/apis/tags/options_api_generated.py,sha256=cZibnPAKx1t5eoDBuMrjE1Gty5Kso9jqzTsUhE-M4Jg,582
71
75
  snaptrade_client/apis/tags/reference_data_api.py,sha256=DdmRsoiG7nLk8EgXWT1KvurcQnPYAlr1Dz0kdpdWGRQ,172
@@ -74,10 +78,10 @@ snaptrade_client/apis/tags/trading_api.py,sha256=J0L9w7V4uoH3_fkvmJhpVQTIUQCACBg
74
78
  snaptrade_client/apis/tags/trading_api_generated.py,sha256=dbNWUjGnGVNg_ZFEPI0yw7EF4_DjonpEjhjBU5lsfQc,1898
75
79
  snaptrade_client/apis/tags/transactions_and_reporting_api.py,sha256=4qC3MPU73Cj2ePSxD_GIjrvvxLbjEEsan2VcDqVZXd4,217
76
80
  snaptrade_client/apis/tags/transactions_and_reporting_api_generated.py,sha256=Tw43o6-dzwGDnD5hPtc5Vz2f7EdM-yFw8FQkLI5suak,573
77
- snaptrade_client/client.py,sha256=goDwWRv9909OPXDnGGYst_mr53bg6RUs4PwIvnrl_kE,2116
78
- snaptrade_client/client.pyi,sha256=goDwWRv9909OPXDnGGYst_mr53bg6RUs4PwIvnrl_kE,2116
81
+ snaptrade_client/client.py,sha256=p-1j4DS7DHuwClS8Kh4VHbTFB7jf-DMpkrh5PcCmYTg,2308
82
+ snaptrade_client/client.pyi,sha256=p-1j4DS7DHuwClS8Kh4VHbTFB7jf-DMpkrh5PcCmYTg,2308
79
83
  snaptrade_client/client_custom.py,sha256=Jx9ulCzelMFlESjzVFQSjBlYcH4dWxSJJWZDMPLyetM,745
80
- snaptrade_client/configuration.py,sha256=RQR9pMlQ_-tXZYWuDI7-vMm7ZA0p6NZqVNhzqCXKey4,19262
84
+ snaptrade_client/configuration.py,sha256=ZbolgdXwENZRZg7cT74YTLOIeyK775zQARp0xId7d7M,19262
81
85
  snaptrade_client/exceptions.py,sha256=X0apI_sgQpGpa-qIqPUClReCdHAxeSuA6GW0YH_RsWg,7771
82
86
  snaptrade_client/exceptions_base.py,sha256=LAQkaC5C61-SdBLfyMjb0K7AYJkWVuLmg2uCvHa71FM,2274
83
87
  snaptrade_client/model/__init__.py,sha256=ayi2MIzcf0eAIsY13ToiNplV9tW-pMBFrC0I9yckGM8,350
@@ -99,8 +103,20 @@ snaptrade_client/model/account_meta.py,sha256=DinCJws8L_EvoyL0TaZ3mxqmF7WHP8qdgj
99
103
  snaptrade_client/model/account_meta.pyi,sha256=DinCJws8L_EvoyL0TaZ3mxqmF7WHP8qdgjmQpMMuyVM,1877
100
104
  snaptrade_client/model/account_order_record.py,sha256=8iJAzCQm73UqoVmMr3bNlc1cMzk4_S90qAIbs4ZnBWA,31710
101
105
  snaptrade_client/model/account_order_record.pyi,sha256=8iJAzCQm73UqoVmMr3bNlc1cMzk4_S90qAIbs4ZnBWA,31710
102
- snaptrade_client/model/account_order_record_status.py,sha256=LO2hNdzRtyeMklQe_9eF9NzCqU3AGNTtHmaTaYO4re0,3481
103
- snaptrade_client/model/account_order_record_status.pyi,sha256=6Za57NOSn68EAfsTrbSo5ON82lKHuu7LRkpTXI2id2Q,2636
106
+ snaptrade_client/model/account_order_record_leg.py,sha256=Zgqrj6UmF3mknjtppSUjcKJDCMkpx83AC02zNrNRo0U,10571
107
+ snaptrade_client/model/account_order_record_leg.pyi,sha256=Zgqrj6UmF3mknjtppSUjcKJDCMkpx83AC02zNrNRo0U,10571
108
+ snaptrade_client/model/account_order_record_leg_instrument.py,sha256=zzJVJo4Utc4WQqrqdc_NhFoajpBnTaqUSUzCVe2N_7Y,5661
109
+ snaptrade_client/model/account_order_record_leg_instrument.pyi,sha256=zzJVJo4Utc4WQqrqdc_NhFoajpBnTaqUSUzCVe2N_7Y,5661
110
+ snaptrade_client/model/account_order_record_status.py,sha256=TaZl_CIulyjOpUj6qfl5e1lVZincJOkqyhyEvDlzbwU,3727
111
+ snaptrade_client/model/account_order_record_status.pyi,sha256=9DRPTVdVxnRZtLu4fFHr7hC-KAREWyXomZz-m6XG8jc,2882
112
+ snaptrade_client/model/account_order_record_status_v2.py,sha256=c03lnNl7zXZ0nQxl8IUSSi8RN3JtSCcIdsnlmnL5mLE,2255
113
+ snaptrade_client/model/account_order_record_status_v2.pyi,sha256=vQMRYiu5juuYND6W5caqWu_EDcm922NveU_jz6rvljM,1774
114
+ snaptrade_client/model/account_order_record_status_v2_nullable.py,sha256=gEgtXtJInnWd6IbeOYD9XiOLP5OQVqLAHuEPFom3Fi0,2642
115
+ snaptrade_client/model/account_order_record_status_v2_nullable.pyi,sha256=gEgtXtJInnWd6IbeOYD9XiOLP5OQVqLAHuEPFom3Fi0,2642
116
+ snaptrade_client/model/account_order_record_v2.py,sha256=WIjkNTeT5ky38zjz2EIM486Rfh2UsBHC5bBzrvP5CUU,13438
117
+ snaptrade_client/model/account_order_record_v2.pyi,sha256=WIjkNTeT5ky38zjz2EIM486Rfh2UsBHC5bBzrvP5CUU,13438
118
+ snaptrade_client/model/account_orders_v2_response.py,sha256=7YFT2nka9j0Q1inXk0ZL9UNYlMaqtOQ7piXszMQddmU,3573
119
+ snaptrade_client/model/account_orders_v2_response.pyi,sha256=7YFT2nka9j0Q1inXk0ZL9UNYlMaqtOQ7piXszMQddmU,3573
104
120
  snaptrade_client/model/account_simple.py,sha256=wn9QxG5mIsGTRA10XWCJGUsJ8x_CUyYFRcP2DzVUMyE,4291
105
121
  snaptrade_client/model/account_simple.pyi,sha256=wn9QxG5mIsGTRA10XWCJGUsJ8x_CUyYFRcP2DzVUMyE,4291
106
122
  snaptrade_client/model/account_sync_status.py,sha256=YGFS1jThbDrDQu7HemWOWDNR9Y9zytv-MS5PLe7I0g8,3438
@@ -111,6 +127,8 @@ snaptrade_client/model/action.py,sha256=ghW1AlJ_opoTqpz2Af0WV3NSoMSqOwe5P1TvLOtj
111
127
  snaptrade_client/model/action.pyi,sha256=ghW1AlJ_opoTqpz2Af0WV3NSoMSqOwe5P1TvLOtjgXI,596
112
128
  snaptrade_client/model/action_strict.py,sha256=RDqCwM5SU8ZX_WojgH3xHCZSEKBMjSQ2uQk0ZSfQiiE,1082
113
129
  snaptrade_client/model/action_strict.pyi,sha256=t9mulK4IvbwkuIqgf1HNZii-MUK0NKLjVWkBqeQAY98,965
130
+ snaptrade_client/model/action_strict_v2.py,sha256=cxhxY7v7luKBTuF4HX82Py1PGqZAe6XnTk5BXa9lH7Q,604
131
+ snaptrade_client/model/action_strict_v2.pyi,sha256=cxhxY7v7luKBTuF4HX82Py1PGqZAe6XnTk5BXa9lH7Q,604
114
132
  snaptrade_client/model/action_strict_with_options.py,sha256=JUxd1JzC17RlWc9VymBQLHSQnGyCJq5MHSxDB8aZFCs,1744
115
133
  snaptrade_client/model/action_strict_with_options.pyi,sha256=TmKZHWsdn8dwXP3h_D38l0Ev-e0imo7iLXTLyU3DePg,1451
116
134
  snaptrade_client/model/balance.py,sha256=twGYvYvG1Ltay7cj3oVzwS4LGAEwgfMZTXwqKVGC_Po,6901
@@ -423,9 +441,9 @@ snaptrade_client/model/user_secret.py,sha256=7xf__S566WtTq7VthmdVtrCBIfgpnYWYqE9
423
441
  snaptrade_client/model/user_secret.pyi,sha256=7xf__S566WtTq7VthmdVtrCBIfgpnYWYqE9cmz9vBMc,600
424
442
  snaptrade_client/model/validated_trade_body.py,sha256=NkTel1ulgSjBd6K7vur6puEbfrg3u1vdmtUKArOu8ws,3085
425
443
  snaptrade_client/model/validated_trade_body.pyi,sha256=NkTel1ulgSjBd6K7vur6puEbfrg3u1vdmtUKArOu8ws,3085
426
- snaptrade_client/models/__init__.py,sha256=ckAiBjzyY3TI5A3xEBBVr4yy18bkwPiNgMQrdqG2vo8,13378
427
- snaptrade_client/operation_parameter_map.py,sha256=efEFBOivV1dnQ4iuMRp3uKU6ngh-boYx38MoUO7dL7Q,18319
428
- snaptrade_client/paths/__init__.py,sha256=_AIs8vbi_zgRHbgZ2k64V6waRP3RiZuyL4nRaZbpLMY,3519
444
+ snaptrade_client/models/__init__.py,sha256=eCdmaEzyV2CT4K3PKgsBWDTBs4JmW4DsB9BCb2gRjeo,13999
445
+ snaptrade_client/operation_parameter_map.py,sha256=8DEC0BfPisWdf9-TncvKm8bxar5Ze-J2rIYUc5hqk1Q,19073
446
+ snaptrade_client/paths/__init__.py,sha256=O5AyZd3nQk5HAoQSp2mwdtnBGBmnOhYS6m3JBRk244c,3672
429
447
  snaptrade_client/paths/accounts/__init__.py,sha256=_Bqi6B13A-kgd0AOpqmcE1vTxJDfoz-r3Hwf-AmwW6A,307
430
448
  snaptrade_client/paths/accounts/get.py,sha256=MDE_4VCylBroYDkMQe9II1qCGf6gTTDGCShFyGLXf00,16463
431
449
  snaptrade_client/paths/accounts/get.pyi,sha256=gna7qIU-95WqOFl6qTsP18ZY7SKi9CYEBAbARPAPPF4,16261
@@ -458,6 +476,9 @@ snaptrade_client/paths/accounts_account_id_orders_cancel/post.pyi,sha256=7rGmsso
458
476
  snaptrade_client/paths/accounts_account_id_orders_details/__init__.py,sha256=6PWLMs5Y6WxEM5h99FQSSpvq7Btg4dfrgMkWk3mhBYo,359
459
477
  snaptrade_client/paths/accounts_account_id_orders_details/post.py,sha256=sKlgBkbf_3AYG1i-Te5DNON5B74Lp_I7tMNYzT0gwiI,25690
460
478
  snaptrade_client/paths/accounts_account_id_orders_details/post.pyi,sha256=UDhFYZKTQJ47rIh37A2cbiVVwmNjJbDZaOJ9Y5pwEx4,25436
479
+ snaptrade_client/paths/accounts_account_id_orders_v2/__init__.py,sha256=bLxvW4BvuS8smxB8nP-1X0-OjS-Mcty5RRl1Bbe2AVE,349
480
+ snaptrade_client/paths/accounts_account_id_orders_v2/get.py,sha256=bNxhD1o7ZWyCAxXbElbRkX_zSZ107nwBbfyjoVSzsU4,21226
481
+ snaptrade_client/paths/accounts_account_id_orders_v2/get.pyi,sha256=xuyziqQ2H4YxTYnyLLeyaRO6M0nakQNth9LZqJtBYQo,20811
461
482
  snaptrade_client/paths/accounts_account_id_positions/__init__.py,sha256=UB-B0t2OnlP8QvI9ptBNhqYsywmYsFZz9G8NJkVZBTM,349
462
483
  snaptrade_client/paths/accounts_account_id_positions/get.py,sha256=9eTq-zfndu4c7fTjE3EEkSvRrF2VZDufeo7YVnC3kXQ,20708
463
484
  snaptrade_client/paths/accounts_account_id_positions/get.pyi,sha256=HsxNb3oIo8GTp-S1dud9dwNZk3hfWZMPls02kNBLw7c,20506
@@ -467,6 +488,9 @@ snaptrade_client/paths/accounts_account_id_quotes/get.pyi,sha256=xsIXCJCcHZ8aCS-
467
488
  snaptrade_client/paths/accounts_account_id_recent_orders/__init__.py,sha256=9ZDFg99fFJZ_6RAxHQkzGxuUu5HjiU25zdIc3huER-c,357
468
489
  snaptrade_client/paths/accounts_account_id_recent_orders/get.py,sha256=84L0viTmOUCXL0N5HjYNpvdTtOLeAbvTb7GaBMR3AOM,21657
469
490
  snaptrade_client/paths/accounts_account_id_recent_orders/get.pyi,sha256=tuVF4yvT-SuGmssaNoEI-_DzbXdC_tQC7_8Rg4UXEtY,21433
491
+ snaptrade_client/paths/accounts_account_id_recent_orders_v2/__init__.py,sha256=3K2mIfhY1oJOi2Dh8VB4JIVmm7d_ycX84OIJrIeA6GI,363
492
+ snaptrade_client/paths/accounts_account_id_recent_orders_v2/get.py,sha256=Y6ojHr2wzxogyQJE74RiO8gmgS0vVCnq2Q_NSZ_cK1Q,21796
493
+ snaptrade_client/paths/accounts_account_id_recent_orders_v2/get.pyi,sha256=25qOuNimxw0x2CB6Mn9tL1FduTa27vtZuvEa-QVMvl8,21572
470
494
  snaptrade_client/paths/accounts_account_id_return_rates/__init__.py,sha256=oxMvoGv1lRCOvfyU2kAcqTig8iFDZY_QJ_I-r_afYD0,355
471
495
  snaptrade_client/paths/accounts_account_id_return_rates/get.py,sha256=ZeigsPa2MX9GU0PXo2Fto_QdQr_9Wqo4cnkkBotKkok,19616
472
496
  snaptrade_client/paths/accounts_account_id_return_rates/get.pyi,sha256=T1v2xFhH6S96FaggQQa6jN9qAYDCyUBUmv_rizUXhZA,19392
@@ -602,12 +626,19 @@ snaptrade_client/type/account_id.py,sha256=6xYSAdrRj15wXu1OIXIgpS_bhxXaLNT-bAYW1
602
626
  snaptrade_client/type/account_ids.py,sha256=tD7-0yhINoqozMbLIKQ_XTVVQdNOTXMvhATvjAP4OCs,388
603
627
  snaptrade_client/type/account_meta.py,sha256=LuUXBeqct8pJwTvL-BlRhxHqn5IMLqlfguCUPSGnLz0,390
604
628
  snaptrade_client/type/account_order_record.py,sha256=fR62IbSHjdeZBXnWMUhqk400fLy6racYQcLYdI05UR0,5731
629
+ snaptrade_client/type/account_order_record_leg.py,sha256=8uq6kFuaeMoSwIRrGmJnBpynZfw4dzJj2ORWnQUWnlk,1717
630
+ snaptrade_client/type/account_order_record_leg_instrument.py,sha256=7l94hunOiq2MH3_cEwZAU1YQefY4TfzuH2JsXoNZ8CQ,1076
605
631
  snaptrade_client/type/account_order_record_status.py,sha256=7UCcPLIE_QVcBm488PfbuIwnQFetCu7wANTmsrg_NMg,677
632
+ snaptrade_client/type/account_order_record_status_v2.py,sha256=xIQ2rrNfsN_TLY0qJz3bYjGyz75VUxHwjFybzYcV5tU,557
633
+ snaptrade_client/type/account_order_record_status_v2_nullable.py,sha256=BHfryYJTaw5GCd5CCvU-S5YCfSIERS8BbLVlNWSKa_0,565
634
+ snaptrade_client/type/account_order_record_v2.py,sha256=NTXb_MdxQpisEDff7Agl_oaDk0YARV0HIKnSnkbpd_M,3038
635
+ snaptrade_client/type/account_orders_v2_response.py,sha256=HD_kh69S73Cd7zKLxaMyTZrIV0KqDEfhgt0DhoIUTAA,773
606
636
  snaptrade_client/type/account_simple.py,sha256=4vmKftyvxG72FXtiS0wG4IK81rfBvjcFcGO0j1NVvDo,1133
607
637
  snaptrade_client/type/account_sync_status.py,sha256=i85qixRiLAFDJo0sYiSATocIuPv-ZEgwPkZaiMjKD58,776
608
- snaptrade_client/type/account_universal_activity.py,sha256=bP78hviUIUYYkpOE-AWkCHGV5G36k7kTe6-SxhUlh2w,4918
638
+ snaptrade_client/type/account_universal_activity.py,sha256=D0u1v5AyhYmCv8Fxo15bra7kKO7C3NF0CWmPoqzpYLk,4966
609
639
  snaptrade_client/type/action.py,sha256=BzULR2JGyYNDNh6nVrwt3TFY0t-sJHAcudzC0UFxio4,384
610
640
  snaptrade_client/type/action_strict.py,sha256=9My8RBJY53S5Ou7fqF8n_yOw0exE02uCqQ1kz45dwUg,409
641
+ snaptrade_client/type/action_strict_v2.py,sha256=7vKcG-RLpVYIXV5aNH99mC3XwTeZLSvB7NSQhqj6wC4,392
611
642
  snaptrade_client/type/action_strict_with_options.py,sha256=Rz_Mp9hZrod2wr2fc6sqg0vIQM-uBtJ3n_3CycUOMpY,484
612
643
  snaptrade_client/type/balance.py,sha256=E3uLbXAZBLu5f8Zoy3d2_CIweg8vqUHddXO1sGQ-WOs,1086
613
644
  snaptrade_client/type/brokerage.py,sha256=hf2lpZ7w7Ldh8f46DIY5KGZqHGPB7N1cKB-q0xLFuvQ,2489
@@ -766,7 +797,7 @@ snaptrade_client/type/user_secret.py,sha256=pKCVhqf1rROHwa6tvoyA5OAKXCBAmNDvIQCf
766
797
  snaptrade_client/type/validated_trade_body.py,sha256=ZIPBQWii_a-9zHaBCJ6bQtmL1_I7AG0zwuvkY-ZQ6R4,890
767
798
  snaptrade_client/type_util.py,sha256=JIrMYgJzd4IJ8Ne2vqcahlPA9dVmphL9sn8gwccCB4Y,563
768
799
  snaptrade_client/validation_metadata.py,sha256=VTN5y-NudHXok1X468J4PnGze_tGEAcs1v3gsXmcrb0,3172
769
- snaptrade_python_sdk-11.0.142.dist-info/LICENSE,sha256=W_1kcxEzOnZXIYJ1GVUipbmUu6dNLt-Pc-OI55h3k-A,1081
770
- snaptrade_python_sdk-11.0.142.dist-info/METADATA,sha256=uU35a3FeZXUBSl30ItdqyeK53j1tyNXq6otWnHGoKzU,95457
771
- snaptrade_python_sdk-11.0.142.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
772
- snaptrade_python_sdk-11.0.142.dist-info/RECORD,,
800
+ snaptrade_python_sdk-11.0.144.dist-info/LICENSE,sha256=W_1kcxEzOnZXIYJ1GVUipbmUu6dNLt-Pc-OI55h3k-A,1081
801
+ snaptrade_python_sdk-11.0.144.dist-info/METADATA,sha256=vtxMO0ZA_AkxiznLJrj03ngZBRFly4ttHB6qXy_nwKw,99433
802
+ snaptrade_python_sdk-11.0.144.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
803
+ snaptrade_python_sdk-11.0.144.dist-info/RECORD,,