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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.17.0"
".": "0.18.0"
}
8 changes: 4 additions & 4 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 40
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/ark%2Fark-628db0b9b7c9da594fa6ad6ce9d95f4ecad92c9e0313f2f1f9977216494dbc5d.yml
openapi_spec_hash: 1773341fbff31b84d2cbcdb37eaad877
config_hash: b090c2bdd7a719c56c825edddc587737
configured_endpoints: 58
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/ark%2Fark-ee4b9d190e3aaa146b08bc0ffed1c802dc353c3fdc37fc0097f2350ab3714b70.yml
openapi_spec_hash: 0dad8b2e562ba7ce879425ab92169d85
config_hash: b70b11b10fc614f91f1c6f028b40780f
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 0.18.0 (2026-02-05)

Full Changelog: [v0.17.0...v0.18.0](https://github.com/ArkHQ-io/ark-python/compare/v0.17.0...v0.18.0)

### Features

* **api:** add Credentials endpoint ([0ff55ca](https://github.com/ArkHQ-io/ark-python/commit/0ff55caabeb38ad0046cf489c28f8dad3caddfc2))
* **api:** add Platform webhooks ([f0a53a7](https://github.com/ArkHQ-io/ark-python/commit/f0a53a79606bece5fd5cf9b2dad7a580b8bae94e))
* **api:** endpoint updates ([0e54a04](https://github.com/ArkHQ-io/ark-python/commit/0e54a042195b1134b7c5cba9ee2ca4b98f35b361))
* **api:** standardization improvements ([b52928d](https://github.com/ArkHQ-io/ark-python/commit/b52928d6147770b7c3a68001dad6d3861ff43967))
* **api:** tenant usage ([09a4d02](https://github.com/ArkHQ-io/ark-python/commit/09a4d02d5acdb3b2a20ca62930e7c644bc5968c9))

## 0.17.0 (2026-02-03)

Full Changelog: [v0.16.0...v0.17.0](https://github.com/ArkHQ-io/ark-python/compare/v0.16.0...v0.17.0)
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ response = client.emails.send(
to=["user@example.com"],
html="<h1>Welcome!</h1>",
metadata={
"user_id": "usr_123",
"user_id": "usr_123456",
"campaign": "onboarding",
},
tag="welcome",
Expand Down Expand Up @@ -81,7 +81,7 @@ async def main() -> None:
to=["user@example.com"],
html="<h1>Welcome!</h1>",
metadata={
"user_id": "usr_123",
"user_id": "usr_123456",
"campaign": "onboarding",
},
tag="welcome",
Expand Down Expand Up @@ -125,7 +125,7 @@ async def main() -> None:
to=["user@example.com"],
html="<h1>Welcome!</h1>",
metadata={
"user_id": "usr_123",
"user_id": "usr_123456",
"campaign": "onboarding",
},
tag="welcome",
Expand Down Expand Up @@ -242,7 +242,7 @@ try:
to=["user@example.com"],
html="<h1>Welcome!</h1>",
metadata={
"user_id": "usr_123",
"user_id": "usr_123456",
"campaign": "onboarding",
},
tag="welcome",
Expand Down Expand Up @@ -295,7 +295,7 @@ client.with_options(max_retries=5).emails.send(
to=["user@example.com"],
html="<h1>Welcome!</h1>",
metadata={
"user_id": "usr_123",
"user_id": "usr_123456",
"campaign": "onboarding",
},
tag="welcome",
Expand Down Expand Up @@ -328,7 +328,7 @@ client.with_options(timeout=5.0).emails.send(
to=["user@example.com"],
html="<h1>Welcome!</h1>",
metadata={
"user_id": "usr_123",
"user_id": "usr_123456",
"campaign": "onboarding",
},
tag="welcome",
Expand Down Expand Up @@ -379,7 +379,7 @@ response = client.emails.with_raw_response.send(
to=["user@example.com"],
html="<h1>Welcome!</h1>",
metadata={
"user_id": "usr_123",
"user_id": "usr_123456",
"campaign": "onboarding",
},
tag="welcome",
Expand Down Expand Up @@ -407,7 +407,7 @@ with client.emails.with_streaming_response.send(
to=["user@example.com"],
html="<h1>Welcome!</h1>",
metadata={
"user_id": "usr_123",
"user_id": "usr_123456",
"campaign": "onboarding",
},
tag="welcome",
Expand Down
217 changes: 154 additions & 63 deletions api.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ark-email"
version = "0.17.0"
version = "0.18.0"
description = "The official Python library for the ark API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
Loading
Loading