From ba03ffc1addb08f9aacdebafc967f886334f7aa1 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 4 Sep 2026 21:28:26 +0000 Subject: [PATCH 1/7] codegen metadata --- .stats.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 63ca9a9..722747e 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 41 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/surge/surge-b0be84bbd2acb3b1441eedd973161e22d633387c0919c52cbecdaf964c1e5980.yml -openapi_spec_hash: 402af89d33c0accd114958a9d4fb74d2 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/surge/surge-34ff20e9a04f0ce004902ffdbcef9fe179dc19c343afc843b45df98ecdd9ef44.yml +openapi_spec_hash: 92cae7e57b2598c7c8b36c04a058528e config_hash: 6cd48b2a1ecc5f0cf0903e70c0c6260e From bbaabd54fcf26f6be4b80a287e0cf19724f03b4a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 4 Sep 2026 21:47:02 +0000 Subject: [PATCH 2/7] docs(api): add note about links in messages for campaigns --- .stats.yml | 4 ++-- src/surge/types/campaign.py | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.stats.yml b/.stats.yml index 722747e..2cde457 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 41 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/surge/surge-34ff20e9a04f0ce004902ffdbcef9fe179dc19c343afc843b45df98ecdd9ef44.yml -openapi_spec_hash: 92cae7e57b2598c7c8b36c04a058528e +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/surge/surge-dd4862e666bca99e2d97edb3489954405a0910763921f4283b836b56af9c9f6a.yml +openapi_spec_hash: bbeedb6e2f8328d2263930610f05a0ed config_hash: 6cd48b2a1ecc5f0cf0903e70c0c6260e diff --git a/src/surge/types/campaign.py b/src/surge/types/campaign.py index 2e1e9b0..23335f3 100644 --- a/src/surge/types/campaign.py +++ b/src/surge/types/campaign.py @@ -122,10 +122,10 @@ class Campaign(BaseModel): link_sample: Optional[str] = None """A sample link that might be sent by this campaign. - If links from other domains are sent through this campaign, they are much more - likely to be filtered by the carriers. If link shortening is enabled for the - account, the link shortener URL will be used instead of what is provided. Reach - out to support if you would like to disable automatic link shortening. + This is required when `includes` contains `links`. Provide the same URL or + domain that the campaign will use in production. If links from other domains are + sent through this campaign, they are much more likely to be filtered by the + carriers. """ terms_and_conditions_url: Optional[str] = None From 8659b97758ebf0d1d912d209ad418302f14c7360 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 4 Sep 2026 21:50:20 +0000 Subject: [PATCH 3/7] feat(api): add status to messages --- .stats.yml | 4 ++-- src/surge/types/campaign.py | 2 +- src/surge/types/message.py | 3 +++ src/surge/types/message_delivered_webhook_event.py | 3 +++ src/surge/types/message_failed_webhook_event.py | 3 +++ src/surge/types/message_received_webhook_event.py | 3 +++ src/surge/types/message_sent_webhook_event.py | 3 +++ 7 files changed, 18 insertions(+), 3 deletions(-) diff --git a/.stats.yml b/.stats.yml index 2cde457..18d20f9 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 41 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/surge/surge-dd4862e666bca99e2d97edb3489954405a0910763921f4283b836b56af9c9f6a.yml -openapi_spec_hash: bbeedb6e2f8328d2263930610f05a0ed +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/surge/surge-f23dfd1370fa614124e6ac8d4ab63037e6e554238ad22b5792d5ee6d87613275.yml +openapi_spec_hash: 9c6d0401f38144589f05cddc73bdea4d config_hash: 6cd48b2a1ecc5f0cf0903e70c0c6260e diff --git a/src/surge/types/campaign.py b/src/surge/types/campaign.py index 23335f3..b8f7224 100644 --- a/src/surge/types/campaign.py +++ b/src/surge/types/campaign.py @@ -61,7 +61,7 @@ class Campaign(BaseModel): users when they opt in to messaging. """ - status: Literal["active", "canceled", "created", "deactivated", "in_review"] + status: Literal["active", "canceled", "rejected", "created", "deactivated", "in_review"] """The current status of the campaign.""" use_cases: List[ diff --git a/src/surge/types/message.py b/src/surge/types/message.py index f8ad0ed..1fc0314 100644 --- a/src/surge/types/message.py +++ b/src/surge/types/message.py @@ -73,3 +73,6 @@ class Message(BaseModel): metadata: Optional[Dict[str, str]] = None """Set of key-value pairs that will be stored with the object.""" + + status: Optional[Literal["pending", "received", "sent", "delivered", "failed"]] = None + """The current status of the message.""" diff --git a/src/surge/types/message_delivered_webhook_event.py b/src/surge/types/message_delivered_webhook_event.py index ef1c93f..a521605 100644 --- a/src/surge/types/message_delivered_webhook_event.py +++ b/src/surge/types/message_delivered_webhook_event.py @@ -53,6 +53,9 @@ class Data(BaseModel): metadata: Dict[str, str] """Set of key-value pairs that will be stored with the object.""" + status: Literal["delivered"] + """The message status represented by this event""" + attachments: Optional[List[DataAttachment]] = None """Attachments included with the message""" diff --git a/src/surge/types/message_failed_webhook_event.py b/src/surge/types/message_failed_webhook_event.py index 8738161..91c6852 100644 --- a/src/surge/types/message_failed_webhook_event.py +++ b/src/surge/types/message_failed_webhook_event.py @@ -56,6 +56,9 @@ class Data(BaseModel): metadata: Dict[str, str] """Set of key-value pairs that will be stored with the object.""" + status: Literal["failed"] + """The message status represented by this event""" + attachments: Optional[List[DataAttachment]] = None """Attachments included with the message""" diff --git a/src/surge/types/message_received_webhook_event.py b/src/surge/types/message_received_webhook_event.py index 6d28aa5..2779c52 100644 --- a/src/surge/types/message_received_webhook_event.py +++ b/src/surge/types/message_received_webhook_event.py @@ -53,6 +53,9 @@ class Data(BaseModel): received_at: datetime """When the message was received""" + status: Literal["received"] + """The message status represented by this event""" + attachments: Optional[List[DataAttachment]] = None """Attachments included with the message""" diff --git a/src/surge/types/message_sent_webhook_event.py b/src/surge/types/message_sent_webhook_event.py index a97d1f9..759199d 100644 --- a/src/surge/types/message_sent_webhook_event.py +++ b/src/surge/types/message_sent_webhook_event.py @@ -53,6 +53,9 @@ class Data(BaseModel): sent_at: datetime """When the message was sent""" + status: Literal["sent"] + """The message status represented by this event""" + attachments: Optional[List[DataAttachment]] = None """Attachments included with the message""" From 54504f83fedb8e3b9fe033bb628eb4ca5bbc7e84 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 4 Sep 2026 21:52:00 +0000 Subject: [PATCH 4/7] docs(api): add note about links in messages for campaigns (continued) --- .stats.yml | 4 +-- src/surge/resources/campaigns.py | 36 ++++++++++------------- src/surge/types/campaign_create_params.py | 8 ++--- src/surge/types/campaign_update_params.py | 8 ++--- 4 files changed, 26 insertions(+), 30 deletions(-) diff --git a/.stats.yml b/.stats.yml index 18d20f9..b774b2a 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 41 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/surge/surge-f23dfd1370fa614124e6ac8d4ab63037e6e554238ad22b5792d5ee6d87613275.yml -openapi_spec_hash: 9c6d0401f38144589f05cddc73bdea4d +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/surge/surge-ff522098fc889934e8dfa5608e17f64cb0e2c3af2e0ee699cfbd8c3a65b709cd.yml +openapi_spec_hash: 2e45559287acd06b708937531931c5bf config_hash: 6cd48b2a1ecc5f0cf0903e70c0c6260e diff --git a/src/surge/resources/campaigns.py b/src/surge/resources/campaigns.py index 7f3ea0d..3e7db89 100644 --- a/src/surge/resources/campaigns.py +++ b/src/surge/resources/campaigns.py @@ -160,11 +160,10 @@ def create( - `direct_lending` - whether the campaign contains content related to direct lending or other loan arrangements - link_sample: A sample link that might be sent by this campaign. If links from other domains - are sent through this campaign, they are much more likely to be filtered by the - carriers. If link shortening is enabled for the account, the link shortener URL - will be used instead of what is provided. Reach out to support if you would like - to disable automatic link shortening. + link_sample: A sample link that might be sent by this campaign. This is required when + `includes` contains `links`. Provide the same URL or domain that the campaign + will use in production. If links from other domains are sent through this + campaign, they are much more likely to be filtered by the carriers. extra_headers: Send extra headers @@ -432,11 +431,10 @@ def update( - `direct_lending` - whether the campaign contains content related to direct lending or other loan arrangements - link_sample: A sample link that might be sent by this campaign. If links from other domains - are sent through this campaign, they are much more likely to be filtered by the - carriers. If link shortening is enabled for the account, the link shortener URL - will be used instead of what is provided. Reach out to support if you would like - to disable automatic link shortening. + link_sample: A sample link that might be sent by this campaign. This is required when + `includes` contains `links`. Provide the same URL or domain that the campaign + will use in production. If links from other domains are sent through this + campaign, they are much more likely to be filtered by the carriers. extra_headers: Send extra headers @@ -778,11 +776,10 @@ async def create( - `direct_lending` - whether the campaign contains content related to direct lending or other loan arrangements - link_sample: A sample link that might be sent by this campaign. If links from other domains - are sent through this campaign, they are much more likely to be filtered by the - carriers. If link shortening is enabled for the account, the link shortener URL - will be used instead of what is provided. Reach out to support if you would like - to disable automatic link shortening. + link_sample: A sample link that might be sent by this campaign. This is required when + `includes` contains `links`. Provide the same URL or domain that the campaign + will use in production. If links from other domains are sent through this + campaign, they are much more likely to be filtered by the carriers. extra_headers: Send extra headers @@ -1050,11 +1047,10 @@ async def update( - `direct_lending` - whether the campaign contains content related to direct lending or other loan arrangements - link_sample: A sample link that might be sent by this campaign. If links from other domains - are sent through this campaign, they are much more likely to be filtered by the - carriers. If link shortening is enabled for the account, the link shortener URL - will be used instead of what is provided. Reach out to support if you would like - to disable automatic link shortening. + link_sample: A sample link that might be sent by this campaign. This is required when + `includes` contains `links`. Provide the same URL or domain that the campaign + will use in production. If links from other domains are sent through this + campaign, they are much more likely to be filtered by the carriers. extra_headers: Send extra headers diff --git a/src/surge/types/campaign_create_params.py b/src/surge/types/campaign_create_params.py index 859eb9a..a8cd373 100644 --- a/src/surge/types/campaign_create_params.py +++ b/src/surge/types/campaign_create_params.py @@ -124,10 +124,10 @@ class StandardCampaignParams(TypedDict, total=False): link_sample: str """A sample link that might be sent by this campaign. - If links from other domains are sent through this campaign, they are much more - likely to be filtered by the carriers. If link shortening is enabled for the - account, the link shortener URL will be used instead of what is provided. Reach - out to support if you would like to disable automatic link shortening. + This is required when `includes` contains `links`. Provide the same URL or + domain that the campaign will use in production. If links from other domains are + sent through this campaign, they are much more likely to be filtered by the + carriers. """ diff --git a/src/surge/types/campaign_update_params.py b/src/surge/types/campaign_update_params.py index 6c30974..3f3f517 100644 --- a/src/surge/types/campaign_update_params.py +++ b/src/surge/types/campaign_update_params.py @@ -124,10 +124,10 @@ class StandardCampaignParams(TypedDict, total=False): link_sample: str """A sample link that might be sent by this campaign. - If links from other domains are sent through this campaign, they are much more - likely to be filtered by the carriers. If link shortening is enabled for the - account, the link shortener URL will be used instead of what is provided. Reach - out to support if you would like to disable automatic link shortening. + This is required when `includes` contains `links`. Provide the same URL or + domain that the campaign will use in production. If links from other domains are + sent through this campaign, they are much more likely to be filtered by the + carriers. """ From 0a80fa5557c9071a0462c02c6050af3cde05c6b5 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 4 Sep 2026 21:52:26 +0000 Subject: [PATCH 5/7] feat(api): add toll free messaging capability to accounts --- .stats.yml | 4 ++-- src/surge/resources/accounts.py | 4 ++-- src/surge/types/account_retrieve_status_params.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.stats.yml b/.stats.yml index b774b2a..7fb6975 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 41 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/surge/surge-ff522098fc889934e8dfa5608e17f64cb0e2c3af2e0ee699cfbd8c3a65b709cd.yml -openapi_spec_hash: 2e45559287acd06b708937531931c5bf +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/surge/surge-3b4ce3e87f95100cbfddd1aec546a43a64f5214ba55051ebc9f5a95f9e3a58be.yml +openapi_spec_hash: b6216a03f7b33f69184ba97ed5f923f8 config_hash: 6cd48b2a1ecc5f0cf0903e70c0c6260e diff --git a/src/surge/resources/accounts.py b/src/surge/resources/accounts.py index cd30c37..68c519c 100644 --- a/src/surge/resources/accounts.py +++ b/src/surge/resources/accounts.py @@ -297,7 +297,7 @@ def retrieve_status( self, account_id: str, *, - capabilities: List[Literal["local_messaging"]] | Omit = omit, + capabilities: List[Literal["local_messaging", "toll_free_messaging"]] | Omit = omit, # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs. # The extra values given here take precedence over values defined on the client or passed to this method. extra_headers: Headers | None = None, @@ -609,7 +609,7 @@ async def retrieve_status( self, account_id: str, *, - capabilities: List[Literal["local_messaging"]] | Omit = omit, + capabilities: List[Literal["local_messaging", "toll_free_messaging"]] | Omit = omit, # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs. # The extra values given here take precedence over values defined on the client or passed to this method. extra_headers: Headers | None = None, diff --git a/src/surge/types/account_retrieve_status_params.py b/src/surge/types/account_retrieve_status_params.py index cb3ec06..fa1fc3a 100644 --- a/src/surge/types/account_retrieve_status_params.py +++ b/src/surge/types/account_retrieve_status_params.py @@ -9,5 +9,5 @@ class AccountRetrieveStatusParams(TypedDict, total=False): - capabilities: List[Literal["local_messaging"]] + capabilities: List[Literal["local_messaging", "toll_free_messaging"]] """capabilities about which to check the status""" From d95045674c38c98b86c525a5784f8e0bd8c206d7 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 4 Sep 2026 21:53:01 +0000 Subject: [PATCH 6/7] feat(api): phone number imported webhook event --- .stats.yml | 4 +- api.md | 1 + src/surge/types/__init__.py | 1 + .../phone_number_imported_webhook_event.py | 58 +++++++++++++++++++ src/surge/types/unwrap_webhook_event.py | 2 + 5 files changed, 64 insertions(+), 2 deletions(-) create mode 100644 src/surge/types/phone_number_imported_webhook_event.py diff --git a/.stats.yml b/.stats.yml index 7fb6975..f033c1d 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 41 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/surge/surge-3b4ce3e87f95100cbfddd1aec546a43a64f5214ba55051ebc9f5a95f9e3a58be.yml -openapi_spec_hash: b6216a03f7b33f69184ba97ed5f923f8 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/surge/surge-ffd563fe3318efc4a305510ec4ae66fea4a32d96ed34abd985b44692edb3535e.yml +openapi_spec_hash: fd58e5b23f677b6de74244fcf1669d8d config_hash: 6cd48b2a1ecc5f0cf0903e70c0c6260e diff --git a/api.md b/api.md index 5ac05a2..6aef0e3 100644 --- a/api.md +++ b/api.md @@ -188,6 +188,7 @@ from surge.types import ( MessageReceivedWebhookEvent, MessageSentWebhookEvent, PhoneNumberAttachedToCampaignWebhookEvent, + PhoneNumberImportedWebhookEvent, RecordingCompletedWebhookEvent, VoicemailReceivedWebhookEvent, UnwrapWebhookEvent, diff --git a/src/surge/types/__init__.py b/src/surge/types/__init__.py index f6b315d..1ade643 100644 --- a/src/surge/types/__init__.py +++ b/src/surge/types/__init__.py @@ -60,6 +60,7 @@ from .voicemail_received_webhook_event import VoicemailReceivedWebhookEvent as VoicemailReceivedWebhookEvent from .recording_completed_webhook_event import RecordingCompletedWebhookEvent as RecordingCompletedWebhookEvent from .conversation_created_webhook_event import ConversationCreatedWebhookEvent as ConversationCreatedWebhookEvent +from .phone_number_imported_webhook_event import PhoneNumberImportedWebhookEvent as PhoneNumberImportedWebhookEvent from .phone_number_list_available_numbers_params import ( PhoneNumberListAvailableNumbersParams as PhoneNumberListAvailableNumbersParams, ) diff --git a/src/surge/types/phone_number_imported_webhook_event.py b/src/surge/types/phone_number_imported_webhook_event.py new file mode 100644 index 0000000..6c53562 --- /dev/null +++ b/src/surge/types/phone_number_imported_webhook_event.py @@ -0,0 +1,58 @@ +# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +from typing import Optional +from datetime import datetime +from typing_extensions import Literal + +from .._models import BaseModel + +__all__ = ["PhoneNumberImportedWebhookEvent", "Data", "DataCampaign"] + + +class DataCampaign(BaseModel): + """Campaign attachment details for a domestic local phone number""" + + id: str + """The unique identifier of the campaign this phone number is attached to""" + + attachment_status: Literal["attached", "attachment_pending", "detached", "detachment_pending"] + """The current campaign attachment status for this phone number.""" + + +class Data(BaseModel): + """The data associated with the event""" + + id: str + """The unique identifier for the phone number""" + + campaign: Optional[DataCampaign] = None + """Campaign attachment details for a domestic local phone number""" + + campaign_id: Optional[str] = None + """Deprecated. + + The unique identifier of the campaign this phone number is attached to + """ + + name: Optional[str] = None + """A human-readable name for the phone number""" + + number: str + """The phone number in E.164 format""" + + type: Literal["local", "short_code", "toll_free"] + """Whether the phone number is local, toll-free, or short code""" + + +class PhoneNumberImportedWebhookEvent(BaseModel): + account_id: str + """The ID of the account in which this event occurred""" + + data: Data + """The data associated with the event""" + + timestamp: datetime + """The timestamp when this event occurred, in ISO8601 format""" + + type: Literal["phone_number.imported"] + """The type of the event. Always `phone_number.imported` for this event.""" diff --git a/src/surge/types/unwrap_webhook_event.py b/src/surge/types/unwrap_webhook_event.py index 5ae84db..c889bec 100644 --- a/src/surge/types/unwrap_webhook_event.py +++ b/src/surge/types/unwrap_webhook_event.py @@ -16,6 +16,7 @@ from .voicemail_received_webhook_event import VoicemailReceivedWebhookEvent from .recording_completed_webhook_event import RecordingCompletedWebhookEvent from .conversation_created_webhook_event import ConversationCreatedWebhookEvent +from .phone_number_imported_webhook_event import PhoneNumberImportedWebhookEvent from .phone_number_attached_to_campaign_webhook_event import PhoneNumberAttachedToCampaignWebhookEvent __all__ = ["UnwrapWebhookEvent"] @@ -33,6 +34,7 @@ MessageReceivedWebhookEvent, MessageSentWebhookEvent, PhoneNumberAttachedToCampaignWebhookEvent, + PhoneNumberImportedWebhookEvent, RecordingCompletedWebhookEvent, VoicemailReceivedWebhookEvent, ], From cddf5fd4e468d824241aa5a69db654483043b4ee Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 4 Sep 2026 21:53:25 +0000 Subject: [PATCH 7/7] release: 0.27.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 16 ++++++++++++++++ pyproject.toml | 2 +- src/surge/_version.py | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index caf5ca3..59acac4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.26.0" + ".": "0.27.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index d6d7b4a..377cc40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## 0.27.0 (2026-09-04) + +Full Changelog: [v0.26.0...v0.27.0](https://github.com/surgeapi/python-sdk/compare/v0.26.0...v0.27.0) + +### Features + +* **api:** add status to messages ([8659b97](https://github.com/surgeapi/python-sdk/commit/8659b97758ebf0d1d912d209ad418302f14c7360)) +* **api:** add toll free messaging capability to accounts ([0a80fa5](https://github.com/surgeapi/python-sdk/commit/0a80fa5557c9071a0462c02c6050af3cde05c6b5)) +* **api:** phone number imported webhook event ([d950456](https://github.com/surgeapi/python-sdk/commit/d95045674c38c98b86c525a5784f8e0bd8c206d7)) + + +### Documentation + +* **api:** add note about links in messages for campaigns ([bbaabd5](https://github.com/surgeapi/python-sdk/commit/bbaabd54fcf26f6be4b80a287e0cf19724f03b4a)) +* **api:** add note about links in messages for campaigns (continued) ([54504f8](https://github.com/surgeapi/python-sdk/commit/54504f83fedb8e3b9fe033bb628eb4ca5bbc7e84)) + ## 0.26.0 (2026-08-19) Full Changelog: [v0.25.0...v0.26.0](https://github.com/surgeapi/python-sdk/compare/v0.25.0...v0.26.0) diff --git a/pyproject.toml b/pyproject.toml index ced218c..4d4e0a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "surge-sdk" -version = "0.26.0" +version = "0.27.0" description = "The official Python library for the surge API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/surge/_version.py b/src/surge/_version.py index bb66de1..0cccd4d 100644 --- a/src/surge/_version.py +++ b/src/surge/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "surge" -__version__ = "0.26.0" # x-release-please-version +__version__ = "0.27.0" # x-release-please-version