Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"cliVersion": "4.43.1",
"cliVersion": "4.46.0",
"generatorName": "fernapi/fern-python-sdk",
"generatorVersion": "4.64.1",
"generatorConfig": {
Expand All @@ -18,6 +18,6 @@
"skip_validation": true
}
},
"originGitCommit": "7d08ac3fbe2aa66ba3d56077e8582739d530298b",
"sdkVersion": "4.0.8"
"originGitCommit": "f25a5c52b4f8c7fb0eab7532cf4d3032bce1c05c",
"sdkVersion": "4.0.9"
}
96 changes: 48 additions & 48 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dynamic = ["version"]

[tool.poetry]
name = "brevo-python"
version = "4.0.8"
version = "4.0.9"
description = ""
readme = "README.md"
authors = []
Expand Down
6 changes: 3 additions & 3 deletions reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -6261,7 +6261,7 @@ client.contacts.get_contacts()
</dl>
</details>

<details><summary><code>client.contacts.<a href="src/brevo/contacts/client.py">create_contact</a>(...) -> CreateContactResponse</code></summary>
<details><summary><code>client.contacts.<a href="src/brevo/contacts/client.py">create_contact</a>(...) -> typing.Optional[CreateContactResponse]</code></summary>
<dl>
<dd>

Expand Down Expand Up @@ -9639,7 +9639,7 @@ client.ecommerce.get_categories()
</dl>
</details>

<details><summary><code>client.ecommerce.<a href="src/brevo/ecommerce/client.py">create_update_category</a>(...) -> CreateUpdateCategoryResponse</code></summary>
<details><summary><code>client.ecommerce.<a href="src/brevo/ecommerce/client.py">create_update_category</a>(...) -> typing.Optional[CreateUpdateCategoryResponse]</code></summary>
<dl>
<dd>

Expand Down Expand Up @@ -10735,7 +10735,7 @@ client.ecommerce.get_products()
</dl>
</details>

<details><summary><code>client.ecommerce.<a href="src/brevo/ecommerce/client.py">create_update_product</a>(...) -> CreateUpdateProductResponse</code></summary>
<details><summary><code>client.ecommerce.<a href="src/brevo/ecommerce/client.py">create_update_product</a>(...) -> typing.Optional[CreateUpdateProductResponse]</code></summary>
<dl>
<dd>

Expand Down
8 changes: 4 additions & 4 deletions src/brevo/contacts/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def create_contact(
smtp_blacklist_sender: typing.Optional[typing.Sequence[str]] = OMIT,
update_enabled: typing.Optional[bool] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> CreateContactResponse:
) -> typing.Optional[CreateContactResponse]:
"""
<Note>Follow this format when passing a "SMS" phone number as an attribute.
Accepted Number Formats 91xxxxxxxxxx +91xxxxxxxxxx 0091xxxxxxxxxx</Note>
Expand Down Expand Up @@ -188,7 +188,7 @@ def create_contact(

Returns
-------
CreateContactResponse
typing.Optional[CreateContactResponse]
Contact created

Examples
Expand Down Expand Up @@ -1627,7 +1627,7 @@ async def create_contact(
smtp_blacklist_sender: typing.Optional[typing.Sequence[str]] = OMIT,
update_enabled: typing.Optional[bool] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> CreateContactResponse:
) -> typing.Optional[CreateContactResponse]:
"""
<Note>Follow this format when passing a "SMS" phone number as an attribute.
Accepted Number Formats 91xxxxxxxxxx +91xxxxxxxxxx 0091xxxxxxxxxx</Note>
Expand Down Expand Up @@ -1664,7 +1664,7 @@ async def create_contact(

Returns
-------
CreateContactResponse
typing.Optional[CreateContactResponse]
Contact created

Examples
Expand Down
Loading
Loading