Skip to content

Commit bf44e96

Browse files
SDK regeneration
1 parent 17ee81a commit bf44e96

11 files changed

Lines changed: 111 additions & 99 deletions

File tree

.fern/metadata.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"cliVersion": "4.43.1",
2+
"cliVersion": "4.46.0",
33
"generatorName": "fernapi/fern-python-sdk",
44
"generatorVersion": "4.64.1",
55
"generatorConfig": {
@@ -18,6 +18,6 @@
1818
"skip_validation": true
1919
}
2020
},
21-
"originGitCommit": "7d08ac3fbe2aa66ba3d56077e8582739d530298b",
22-
"sdkVersion": "4.0.8"
21+
"originGitCommit": "f25a5c52b4f8c7fb0eab7532cf4d3032bce1c05c",
22+
"sdkVersion": "4.0.9"
2323
}

poetry.lock

Lines changed: 48 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dynamic = ["version"]
44

55
[tool.poetry]
66
name = "brevo-python"
7-
version = "4.0.8"
7+
version = "4.0.9"
88
description = ""
99
readme = "README.md"
1010
authors = []

reference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6261,7 +6261,7 @@ client.contacts.get_contacts()
62616261
</dl>
62626262
</details>
62636263

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

@@ -9639,7 +9639,7 @@ client.ecommerce.get_categories()
96399639
</dl>
96409640
</details>
96419641

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

@@ -10735,7 +10735,7 @@ client.ecommerce.get_products()
1073510735
</dl>
1073610736
</details>
1073710737

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

src/brevo/contacts/client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def create_contact(
151151
smtp_blacklist_sender: typing.Optional[typing.Sequence[str]] = OMIT,
152152
update_enabled: typing.Optional[bool] = OMIT,
153153
request_options: typing.Optional[RequestOptions] = None,
154-
) -> CreateContactResponse:
154+
) -> typing.Optional[CreateContactResponse]:
155155
"""
156156
<Note>Follow this format when passing a "SMS" phone number as an attribute.
157157
Accepted Number Formats 91xxxxxxxxxx +91xxxxxxxxxx 0091xxxxxxxxxx</Note>
@@ -188,7 +188,7 @@ def create_contact(
188188
189189
Returns
190190
-------
191-
CreateContactResponse
191+
typing.Optional[CreateContactResponse]
192192
Contact created
193193
194194
Examples
@@ -1627,7 +1627,7 @@ async def create_contact(
16271627
smtp_blacklist_sender: typing.Optional[typing.Sequence[str]] = OMIT,
16281628
update_enabled: typing.Optional[bool] = OMIT,
16291629
request_options: typing.Optional[RequestOptions] = None,
1630-
) -> CreateContactResponse:
1630+
) -> typing.Optional[CreateContactResponse]:
16311631
"""
16321632
<Note>Follow this format when passing a "SMS" phone number as an attribute.
16331633
Accepted Number Formats 91xxxxxxxxxx +91xxxxxxxxxx 0091xxxxxxxxxx</Note>
@@ -1664,7 +1664,7 @@ async def create_contact(
16641664
16651665
Returns
16661666
-------
1667-
CreateContactResponse
1667+
typing.Optional[CreateContactResponse]
16681668
Contact created
16691669
16701670
Examples

0 commit comments

Comments
 (0)