Skip to content

Commit 743bf91

Browse files
authored
Merge pull request #21 from ArkHQ-io/release-please--branches--main--changes--next
release: 0.18.0
2 parents f9591aa + 5a4c3a3 commit 743bf91

117 files changed

Lines changed: 8301 additions & 1282 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.17.0"
2+
".": "0.18.0"
33
}

.stats.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 40
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/ark%2Fark-628db0b9b7c9da594fa6ad6ce9d95f4ecad92c9e0313f2f1f9977216494dbc5d.yml
3-
openapi_spec_hash: 1773341fbff31b84d2cbcdb37eaad877
4-
config_hash: b090c2bdd7a719c56c825edddc587737
1+
configured_endpoints: 58
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/ark%2Fark-ee4b9d190e3aaa146b08bc0ffed1c802dc353c3fdc37fc0097f2350ab3714b70.yml
3+
openapi_spec_hash: 0dad8b2e562ba7ce879425ab92169d85
4+
config_hash: b70b11b10fc614f91f1c6f028b40780f

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 0.18.0 (2026-02-05)
4+
5+
Full Changelog: [v0.17.0...v0.18.0](https://github.com/ArkHQ-io/ark-python/compare/v0.17.0...v0.18.0)
6+
7+
### Features
8+
9+
* **api:** add Credentials endpoint ([0ff55ca](https://github.com/ArkHQ-io/ark-python/commit/0ff55caabeb38ad0046cf489c28f8dad3caddfc2))
10+
* **api:** add Platform webhooks ([f0a53a7](https://github.com/ArkHQ-io/ark-python/commit/f0a53a79606bece5fd5cf9b2dad7a580b8bae94e))
11+
* **api:** endpoint updates ([0e54a04](https://github.com/ArkHQ-io/ark-python/commit/0e54a042195b1134b7c5cba9ee2ca4b98f35b361))
12+
* **api:** standardization improvements ([b52928d](https://github.com/ArkHQ-io/ark-python/commit/b52928d6147770b7c3a68001dad6d3861ff43967))
13+
* **api:** tenant usage ([09a4d02](https://github.com/ArkHQ-io/ark-python/commit/09a4d02d5acdb3b2a20ca62930e7c644bc5968c9))
14+
315
## 0.17.0 (2026-02-03)
416

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

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ response = client.emails.send(
4747
to=["user@example.com"],
4848
html="<h1>Welcome!</h1>",
4949
metadata={
50-
"user_id": "usr_123",
50+
"user_id": "usr_123456",
5151
"campaign": "onboarding",
5252
},
5353
tag="welcome",
@@ -81,7 +81,7 @@ async def main() -> None:
8181
to=["user@example.com"],
8282
html="<h1>Welcome!</h1>",
8383
metadata={
84-
"user_id": "usr_123",
84+
"user_id": "usr_123456",
8585
"campaign": "onboarding",
8686
},
8787
tag="welcome",
@@ -125,7 +125,7 @@ async def main() -> None:
125125
to=["user@example.com"],
126126
html="<h1>Welcome!</h1>",
127127
metadata={
128-
"user_id": "usr_123",
128+
"user_id": "usr_123456",
129129
"campaign": "onboarding",
130130
},
131131
tag="welcome",
@@ -242,7 +242,7 @@ try:
242242
to=["user@example.com"],
243243
html="<h1>Welcome!</h1>",
244244
metadata={
245-
"user_id": "usr_123",
245+
"user_id": "usr_123456",
246246
"campaign": "onboarding",
247247
},
248248
tag="welcome",
@@ -295,7 +295,7 @@ client.with_options(max_retries=5).emails.send(
295295
to=["user@example.com"],
296296
html="<h1>Welcome!</h1>",
297297
metadata={
298-
"user_id": "usr_123",
298+
"user_id": "usr_123456",
299299
"campaign": "onboarding",
300300
},
301301
tag="welcome",
@@ -328,7 +328,7 @@ client.with_options(timeout=5.0).emails.send(
328328
to=["user@example.com"],
329329
html="<h1>Welcome!</h1>",
330330
metadata={
331-
"user_id": "usr_123",
331+
"user_id": "usr_123456",
332332
"campaign": "onboarding",
333333
},
334334
tag="welcome",
@@ -379,7 +379,7 @@ response = client.emails.with_raw_response.send(
379379
to=["user@example.com"],
380380
html="<h1>Welcome!</h1>",
381381
metadata={
382-
"user_id": "usr_123",
382+
"user_id": "usr_123456",
383383
"campaign": "onboarding",
384384
},
385385
tag="welcome",
@@ -407,7 +407,7 @@ with client.emails.with_streaming_response.send(
407407
to=["user@example.com"],
408408
html="<h1>Welcome!</h1>",
409409
metadata={
410-
"user_id": "usr_123",
410+
"user_id": "usr_123456",
411411
"campaign": "onboarding",
412412
},
413413
tag="welcome",

api.md

Lines changed: 154 additions & 63 deletions
Large diffs are not rendered by default.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ark-email"
3-
version = "0.17.0"
3+
version = "0.18.0"
44
description = "The official Python library for the ark API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)