From 75e4f25fcca33bae792841c978ea66c29b8db61a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 05:46:19 +0000 Subject: [PATCH 1/3] chore(internal): bump pyright (#71) --- requirements-dev.lock | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements-dev.lock b/requirements-dev.lock index b5bc035..0df92fe 100644 --- a/requirements-dev.lock +++ b/requirements-dev.lock @@ -68,7 +68,7 @@ pydantic-core==2.23.4 # via pydantic pygments==2.18.0 # via rich -pyright==1.1.380 +pyright==1.1.389 pytest==8.3.3 # via pytest-asyncio pytest-asyncio==0.24.0 @@ -97,6 +97,7 @@ typing-extensions==4.12.2 # via mypy # via pydantic # via pydantic-core + # via pyright virtualenv==20.24.5 # via nox zipp==3.17.0 From c91236de909214b523701b83e10eb3366a7ec426 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 14:11:47 +0000 Subject: [PATCH 2/3] feat(api): account number support (#74) --- .stats.yml | 2 +- src/studio_sdk/resources/accounts/accounts.py | 4 ++-- .../resources/accounts/bulk_orders.py | 4 ++-- .../resources/accounts/easy_borrows.py | 4 ++-- src/studio_sdk/resources/accounts/holdings.py | 4 ++-- .../resources/accounts/inventories.py | 4 ++-- .../resources/accounts/locate_orders.py | 16 ++++++------- src/studio_sdk/resources/accounts/orders.py | 24 +++++++++---------- .../resources/accounts/pnl_details.py | 4 ++-- .../resources/accounts/pnl_summary.py | 4 ++-- src/studio_sdk/resources/accounts/pnl_sums.py | 4 ++-- .../resources/accounts/positions.py | 12 +++++----- src/studio_sdk/resources/accounts/trades.py | 8 +++---- src/studio_sdk/types/account.py | 3 +++ .../types/accounts/holding_list_response.py | 3 +++ .../accounts/inventory_retrieve_response.py | 3 +++ .../accounts/locate_order_update_params.py | 2 +- .../types/accounts/order_patch_params.py | 2 +- .../accounts/pnl_detail_list_response.py | 3 +++ .../types/accounts/pnl_sum_list_response.py | 3 +++ src/studio_sdk/types/shared/locate_order.py | 3 +++ src/studio_sdk/types/shared/order.py | 3 +++ src/studio_sdk/types/shared/position.py | 3 +++ src/studio_sdk/types/shared/trade.py | 3 +++ 24 files changed, 76 insertions(+), 49 deletions(-) diff --git a/.stats.yml b/.stats.yml index e6f8ff0..a5829a7 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 31 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/clear-street%2Fstudio-sdk-5efb317738842339f6e8bd32592691a65d19a54adc34bfa319d6bac2404404a7.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/clear-street%2Fstudio-sdk-507601d533175bf3b74a3b04c29d55029c585b24a4ec873bc43d93fe76528076.yml diff --git a/src/studio_sdk/resources/accounts/accounts.py b/src/studio_sdk/resources/accounts/accounts.py index 76c4752..daeaf2d 100644 --- a/src/studio_sdk/resources/accounts/accounts.py +++ b/src/studio_sdk/resources/accounts/accounts.py @@ -184,7 +184,7 @@ def retrieve( timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN, ) -> Account: """ - Get an account by its ID. + Get an account by its ID or number. Args: account_id: Account ID for the account. @@ -303,7 +303,7 @@ async def retrieve( timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN, ) -> Account: """ - Get an account by its ID. + Get an account by its ID or number. Args: account_id: Account ID for the account. diff --git a/src/studio_sdk/resources/accounts/bulk_orders.py b/src/studio_sdk/resources/accounts/bulk_orders.py index 0ac61b4..239850a 100644 --- a/src/studio_sdk/resources/accounts/bulk_orders.py +++ b/src/studio_sdk/resources/accounts/bulk_orders.py @@ -75,7 +75,7 @@ def create( downstream venues. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to create orders for. orders: An array of orders to create. @@ -148,7 +148,7 @@ async def create( downstream venues. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to create orders for. orders: An array of orders to create. diff --git a/src/studio_sdk/resources/accounts/easy_borrows.py b/src/studio_sdk/resources/accounts/easy_borrows.py index eed4cb5..119d271 100644 --- a/src/studio_sdk/resources/accounts/easy_borrows.py +++ b/src/studio_sdk/resources/accounts/easy_borrows.py @@ -56,7 +56,7 @@ def list( daily. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to list easy borrows for. extra_headers: Send extra headers @@ -114,7 +114,7 @@ async def list( daily. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to list easy borrows for. extra_headers: Send extra headers diff --git a/src/studio_sdk/resources/accounts/holdings.py b/src/studio_sdk/resources/accounts/holdings.py index 074ad5f..a6557c7 100644 --- a/src/studio_sdk/resources/accounts/holdings.py +++ b/src/studio_sdk/resources/accounts/holdings.py @@ -66,7 +66,7 @@ def list( regardless of where trades occur. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to list holdings for. date: The historical date to get holdings for. If omitted, current real-time holdings will be returned. @@ -136,7 +136,7 @@ async def list( regardless of where trades occur. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to list holdings for. date: The historical date to get holdings for. If omitted, current real-time holdings will be returned. diff --git a/src/studio_sdk/resources/accounts/inventories.py b/src/studio_sdk/resources/accounts/inventories.py index 304c841..ca95c98 100644 --- a/src/studio_sdk/resources/accounts/inventories.py +++ b/src/studio_sdk/resources/accounts/inventories.py @@ -55,7 +55,7 @@ def retrieve( Get located inventory for a symbol. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to get the inventory for. extra_headers: Send extra headers @@ -114,7 +114,7 @@ async def retrieve( Get located inventory for a symbol. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to get the inventory for. extra_headers: Send extra headers diff --git a/src/studio_sdk/resources/accounts/locate_orders.py b/src/studio_sdk/resources/accounts/locate_orders.py index 84fb751..bebc146 100644 --- a/src/studio_sdk/resources/accounts/locate_orders.py +++ b/src/studio_sdk/resources/accounts/locate_orders.py @@ -65,7 +65,7 @@ def create( Create locate order to borrow inventory for short-selling. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to create the locate order for. mpid: The market participant where the locate will be sent. @@ -119,7 +119,7 @@ def retrieve( Get locate order by its unique locate order ID. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to get the locate order for. locate_order_id: Locate order ID to get. @@ -160,7 +160,7 @@ def update( Accept or decline locate order that has been offered. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to update the locate order for. locate_order_id: Unique locate ID assigned by us. @@ -203,7 +203,7 @@ def list( List all locate orders Args: - account_id: Account ID for the account. + account_id: The account ID or account number to list locate orders for. extra_headers: Send extra headers @@ -264,7 +264,7 @@ async def create( Create locate order to borrow inventory for short-selling. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to create the locate order for. mpid: The market participant where the locate will be sent. @@ -318,7 +318,7 @@ async def retrieve( Get locate order by its unique locate order ID. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to get the locate order for. locate_order_id: Locate order ID to get. @@ -359,7 +359,7 @@ async def update( Accept or decline locate order that has been offered. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to update the locate order for. locate_order_id: Unique locate ID assigned by us. @@ -402,7 +402,7 @@ async def list( List all locate orders Args: - account_id: Account ID for the account. + account_id: The account ID or account number to list locate orders for. extra_headers: Send extra headers diff --git a/src/studio_sdk/resources/accounts/orders.py b/src/studio_sdk/resources/accounts/orders.py index 4fa686e..1fa734b 100644 --- a/src/studio_sdk/resources/accounts/orders.py +++ b/src/studio_sdk/resources/accounts/orders.py @@ -80,7 +80,7 @@ def create( utilize our WebSocket APIs to listen for changes in order lifecycle events. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to create the order for. order_type: The type of order, can be one of the following: @@ -174,7 +174,7 @@ def retrieve( Get an order that was previously created. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to get the order for. order_id: Unique order ID assigned by us. @@ -218,7 +218,7 @@ def list( given query parameters. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to list orders for. from_: Milliseconds since epoch timestamp. This will constrain the search for orders created after this timestamp, inclusively. Timestamps for orders prior the @@ -281,7 +281,7 @@ def delete( cannot be guaranteed as there might be in-flight executions. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to cancel orders for. symbol: Cancel orders only for this specific symbol. If this is omitted, all open orders will be cancelled. @@ -334,7 +334,7 @@ def cancel( as there might be in-flight executions. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to attempt to cancel the order for. order_id: Unique order ID assigned by us. @@ -380,7 +380,7 @@ def patch( order's attributes, for example price and quantity. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to attempt to update the order for. order_id: Unique order ID assigned by us. @@ -470,7 +470,7 @@ async def create( utilize our WebSocket APIs to listen for changes in order lifecycle events. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to create the order for. order_type: The type of order, can be one of the following: @@ -564,7 +564,7 @@ async def retrieve( Get an order that was previously created. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to get the order for. order_id: Unique order ID assigned by us. @@ -608,7 +608,7 @@ async def list( given query parameters. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to list orders for. from_: Milliseconds since epoch timestamp. This will constrain the search for orders created after this timestamp, inclusively. Timestamps for orders prior the @@ -671,7 +671,7 @@ async def delete( cannot be guaranteed as there might be in-flight executions. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to cancel orders for. symbol: Cancel orders only for this specific symbol. If this is omitted, all open orders will be cancelled. @@ -724,7 +724,7 @@ async def cancel( as there might be in-flight executions. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to attempt to cancel the order for. order_id: Unique order ID assigned by us. @@ -770,7 +770,7 @@ async def patch( order's attributes, for example price and quantity. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to attempt to update the order for. order_id: Unique order ID assigned by us. diff --git a/src/studio_sdk/resources/accounts/pnl_details.py b/src/studio_sdk/resources/accounts/pnl_details.py index d541bc8..365fc2f 100644 --- a/src/studio_sdk/resources/accounts/pnl_details.py +++ b/src/studio_sdk/resources/accounts/pnl_details.py @@ -54,7 +54,7 @@ def list( List PNL details for a given account. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to list PNL details for. extra_headers: Send extra headers @@ -110,7 +110,7 @@ async def list( List PNL details for a given account. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to list PNL details for. extra_headers: Send extra headers diff --git a/src/studio_sdk/resources/accounts/pnl_summary.py b/src/studio_sdk/resources/accounts/pnl_summary.py index a31e3e7..020de72 100644 --- a/src/studio_sdk/resources/accounts/pnl_summary.py +++ b/src/studio_sdk/resources/accounts/pnl_summary.py @@ -54,7 +54,7 @@ def retrieve( Get PNL summary for a given account. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to get a PNL summary for. extra_headers: Send extra headers @@ -110,7 +110,7 @@ async def retrieve( Get PNL summary for a given account. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to get a PNL summary for. extra_headers: Send extra headers diff --git a/src/studio_sdk/resources/accounts/pnl_sums.py b/src/studio_sdk/resources/accounts/pnl_sums.py index c2e1882..8b5d7e3 100644 --- a/src/studio_sdk/resources/accounts/pnl_sums.py +++ b/src/studio_sdk/resources/accounts/pnl_sums.py @@ -64,7 +64,7 @@ def list( filtered on the given query parameters. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to list PNL sums for. ending_date: The ending date to accumulate PNL data for, inclusive. @@ -146,7 +146,7 @@ async def list( filtered on the given query parameters. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to list PNL sums for. ending_date: The ending date to accumulate PNL data for, inclusive. diff --git a/src/studio_sdk/resources/accounts/positions.py b/src/studio_sdk/resources/accounts/positions.py index 32ce447..aee697e 100644 --- a/src/studio_sdk/resources/accounts/positions.py +++ b/src/studio_sdk/resources/accounts/positions.py @@ -58,10 +58,10 @@ def retrieve( timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN, ) -> Position: """ - Get current positions for a given account for a given symbol. + Get current position for a given account for a given symbol. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to get the position for. symbol: Symbol to get position for. @@ -102,7 +102,7 @@ def list( List current positions for a given account. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to list positions for. page_size: Number of positions to return per page. @@ -170,10 +170,10 @@ async def retrieve( timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN, ) -> Position: """ - Get current positions for a given account for a given symbol. + Get current position for a given account for a given symbol. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to get the position for. symbol: Symbol to get position for. @@ -214,7 +214,7 @@ async def list( List current positions for a given account. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to list positions for. page_size: Number of positions to return per page. diff --git a/src/studio_sdk/resources/accounts/trades.py b/src/studio_sdk/resources/accounts/trades.py index f7e41b1..404d163 100644 --- a/src/studio_sdk/resources/accounts/trades.py +++ b/src/studio_sdk/resources/accounts/trades.py @@ -61,7 +61,7 @@ def retrieve( Get trade a trade by its unique trade ID. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to get the trade for. trade_id: Unique trade ID assigned by us. @@ -102,7 +102,7 @@ def list( List trades for a given account for the current trading day. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to list trades for. page_size: Number of trades to return per page. @@ -173,7 +173,7 @@ async def retrieve( Get trade a trade by its unique trade ID. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to get the trade for. trade_id: Unique trade ID assigned by us. @@ -214,7 +214,7 @@ async def list( List trades for a given account for the current trading day. Args: - account_id: Account ID for the account. + account_id: The account ID or account number to list trades for. page_size: Number of trades to return per page. diff --git a/src/studio_sdk/types/account.py b/src/studio_sdk/types/account.py index a08883e..da02934 100644 --- a/src/studio_sdk/types/account.py +++ b/src/studio_sdk/types/account.py @@ -10,6 +10,9 @@ class Account(BaseModel): account_id: str """Account ID for the account.""" + account_number: str + """Account number for the account.""" + entity_id: str """Entity ID for the legal entity.""" diff --git a/src/studio_sdk/types/accounts/holding_list_response.py b/src/studio_sdk/types/accounts/holding_list_response.py index d0bee2f..7fe1225 100644 --- a/src/studio_sdk/types/accounts/holding_list_response.py +++ b/src/studio_sdk/types/accounts/holding_list_response.py @@ -32,6 +32,9 @@ class HoldingListResponse(BaseModel): account_id: str """Account ID for the account.""" + account_number: str + """Account number for the account.""" + data: List[Data] date: int diff --git a/src/studio_sdk/types/accounts/inventory_retrieve_response.py b/src/studio_sdk/types/accounts/inventory_retrieve_response.py index 7b9d796..9dc2a36 100644 --- a/src/studio_sdk/types/accounts/inventory_retrieve_response.py +++ b/src/studio_sdk/types/accounts/inventory_retrieve_response.py @@ -11,6 +11,9 @@ class InventoryRetrieveResponse(BaseModel): account_id: Optional[str] = None """Account ID for the account.""" + account_number: Optional[str] = None + """Account number for the account.""" + available: Optional[str] = None """String representation of quantity.""" diff --git a/src/studio_sdk/types/accounts/locate_order_update_params.py b/src/studio_sdk/types/accounts/locate_order_update_params.py index aa1f48c..3d510e7 100644 --- a/src/studio_sdk/types/accounts/locate_order_update_params.py +++ b/src/studio_sdk/types/accounts/locate_order_update_params.py @@ -9,7 +9,7 @@ class LocateOrderUpdateParams(TypedDict, total=False): account_id: Required[str] - """Account ID for the account.""" + """The account ID or account number to update the locate order for.""" accept: Required[bool] """Accept or decline the locate order.""" diff --git a/src/studio_sdk/types/accounts/order_patch_params.py b/src/studio_sdk/types/accounts/order_patch_params.py index 54f050c..a685de2 100644 --- a/src/studio_sdk/types/accounts/order_patch_params.py +++ b/src/studio_sdk/types/accounts/order_patch_params.py @@ -9,7 +9,7 @@ class OrderPatchParams(TypedDict, total=False): account_id: Required[str] - """Account ID for the account.""" + """The account ID or account number to attempt to update the order for.""" quantity: Required[str] """The maximum quantity to be executed.""" diff --git a/src/studio_sdk/types/accounts/pnl_detail_list_response.py b/src/studio_sdk/types/accounts/pnl_detail_list_response.py index b655b3d..29e9273 100644 --- a/src/studio_sdk/types/accounts/pnl_detail_list_response.py +++ b/src/studio_sdk/types/accounts/pnl_detail_list_response.py @@ -12,6 +12,9 @@ class Data(BaseModel): account_id: str """Account ID for the account.""" + account_number: str + """Account number for the account.""" + asset_class: Literal["other", "currency", "equity", "option", "debt", "fund"] """The asset class of the symbol.""" diff --git a/src/studio_sdk/types/accounts/pnl_sum_list_response.py b/src/studio_sdk/types/accounts/pnl_sum_list_response.py index 420366f..435acaa 100644 --- a/src/studio_sdk/types/accounts/pnl_sum_list_response.py +++ b/src/studio_sdk/types/accounts/pnl_sum_list_response.py @@ -48,6 +48,9 @@ class PnlSumListResponse(BaseModel): account_id: Optional[str] = None """Account ID for the account.""" + account_number: Optional[str] = None + """Account number for the account.""" + data: Optional[List[Data]] = None day_pnl: Optional[float] = None diff --git a/src/studio_sdk/types/shared/locate_order.py b/src/studio_sdk/types/shared/locate_order.py index 5fb4d12..23d2027 100644 --- a/src/studio_sdk/types/shared/locate_order.py +++ b/src/studio_sdk/types/shared/locate_order.py @@ -12,6 +12,9 @@ class LocateOrder(BaseModel): account_id: str """Account ID for the account.""" + account_number: str + """Account number for the account.""" + locate_order_id: str """Unique locate ID assigned by us.""" diff --git a/src/studio_sdk/types/shared/order.py b/src/studio_sdk/types/shared/order.py index d12a418..12ff20d 100644 --- a/src/studio_sdk/types/shared/order.py +++ b/src/studio_sdk/types/shared/order.py @@ -13,6 +13,9 @@ class Order(BaseModel): account_id: str """Account ID for the account.""" + account_number: str + """Account number for the account.""" + created_at: int """When the order was created in milliseconds since epoch.""" diff --git a/src/studio_sdk/types/shared/position.py b/src/studio_sdk/types/shared/position.py index 87df26c..01ae7d6 100644 --- a/src/studio_sdk/types/shared/position.py +++ b/src/studio_sdk/types/shared/position.py @@ -11,6 +11,9 @@ class Position(BaseModel): account_id: Optional[str] = None """Account ID for the account.""" + account_number: Optional[str] = None + """Account number for the account.""" + quantity: Optional[str] = None """String representation of quantity.""" diff --git a/src/studio_sdk/types/shared/trade.py b/src/studio_sdk/types/shared/trade.py index 0e16d27..a53dab4 100644 --- a/src/studio_sdk/types/shared/trade.py +++ b/src/studio_sdk/types/shared/trade.py @@ -33,5 +33,8 @@ class Trade(BaseModel): account_id: Optional[str] = None """Account ID for the account.""" + account_number: Optional[str] = None + """Account number for the account.""" + symbol: Optional[str] = None """The symbol this trade was for.""" From 0be68f99b04044dd95e4868f7c28aef0849ecd7d Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 14:12:08 +0000 Subject: [PATCH 3/3] release: 0.1.0-alpha.15 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ pyproject.toml | 2 +- src/studio_sdk/_version.py | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b069996..08e82c4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.14" + ".": "0.1.0-alpha.15" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index d66e708..d70889b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.1.0-alpha.15 (2024-12-09) + +Full Changelog: [v0.1.0-alpha.14...v0.1.0-alpha.15](https://github.com/clear-street/studio-sdk-python/compare/v0.1.0-alpha.14...v0.1.0-alpha.15) + +### Features + +* **api:** account number support ([#74](https://github.com/clear-street/studio-sdk-python/issues/74)) ([c91236d](https://github.com/clear-street/studio-sdk-python/commit/c91236de909214b523701b83e10eb3366a7ec426)) + + +### Chores + +* **internal:** bump pyright ([#71](https://github.com/clear-street/studio-sdk-python/issues/71)) ([75e4f25](https://github.com/clear-street/studio-sdk-python/commit/75e4f25fcca33bae792841c978ea66c29b8db61a)) + ## 0.1.0-alpha.14 (2024-11-29) Full Changelog: [v0.1.0-alpha.13...v0.1.0-alpha.14](https://github.com/clear-street/studio-sdk-python/compare/v0.1.0-alpha.13...v0.1.0-alpha.14) diff --git a/pyproject.toml b/pyproject.toml index 7c270ef..845b1af 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "clear-street-studio-sdk" -version = "0.1.0-alpha.14" +version = "0.1.0-alpha.15" description = "The official Python library for the studio-sdk API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/studio_sdk/_version.py b/src/studio_sdk/_version.py index 50433a3..c4d2c9e 100644 --- a/src/studio_sdk/_version.py +++ b/src/studio_sdk/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "studio_sdk" -__version__ = "0.1.0-alpha.14" # x-release-please-version +__version__ = "0.1.0-alpha.15" # x-release-please-version