Skip to content

Commit 8e215d3

Browse files
committed
merge
2 parents 8a53f57 + 7ba9069 commit 8e215d3

4 files changed

Lines changed: 14 additions & 7 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 94
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/knock%2Fknock-3e8f3a4664d48b3d546339018b451a356f8e20c223a2d21e7c3824fad4cddc7b.yml
3-
openapi_spec_hash: c2b6637451a63e39c1f1042c6a7cc7f7
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/knock%2Fknock-4b8499dddbc5ac767491c492be1629f4f10a17442cf84e13e10fe38b7dcb713c.yml
3+
openapi_spec_hash: 98edfca809c07521259de151d3fc5684
44
config_hash: 2008af3064bfaa2ba7828708de5d97a8

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
# Changelog
22

3-
## 1.25.0 (2026-04-21)
3+
## 1.25.0 (2026-04-22)
44

55
Full Changelog: [v1.24.1...v1.25.0](https://github.com/knocklabs/knock-python/compare/v1.24.1...v1.25.0)
66

77
### Features
88

99
* **api:** added new unset preferences methods ([519404b](https://github.com/knocklabs/knock-python/commit/519404bee37ce267e3e43ef65067c8172f95219f))
10+
* **api:** api update ([8d2a780](https://github.com/knocklabs/knock-python/commit/8d2a780c8ddbd78858570bb97a5907f34329d5fd))
1011
* **api:** api update ([f0c9120](https://github.com/knocklabs/knock-python/commit/f0c9120cefcd5905de5b0a208ae1bc5b35452acd))
1112
* **api:** api update ([5d9ba46](https://github.com/knocklabs/knock-python/commit/5d9ba46e6ab6200bba7d6a7fed0f87582b2ad34e))
1213
* **internal:** implement indices array format for query and form serialization ([e7db532](https://github.com/knocklabs/knock-python/commit/e7db532103b42156c58ea021d78ae97f71b8c0bd))
@@ -29,6 +30,10 @@ Full Changelog: [v1.24.1...v1.25.0](https://github.com/knocklabs/knock-python/co
2930
### Chores
3031

3132
* **ci:** skip lint on metadata-only changes ([64c3c93](https://github.com/knocklabs/knock-python/commit/64c3c93d337ee63ea4b81c23bbefd9d7c12a7e7b))
33+
<<<<<<< HEAD
34+
=======
35+
* **internal:** more robust bootstrap script ([6f7de4e](https://github.com/knocklabs/knock-python/commit/6f7de4e88c3f990e94753a8c347cc72a509acca0))
36+
>>>>>>> 7ba90690e96c07891740b3fc39bc38590a13e703
3237
* **internal:** tweak CI branches ([4c01647](https://github.com/knocklabs/knock-python/commit/4c016474b315185a18ec577ea79e0b3115607dd3))
3338
* **internal:** update gitignore ([e5e89f5](https://github.com/knocklabs/knock-python/commit/e5e89f5f97e9170e602a836907a68987756b82f8))
3439
* **tests:** bump steady to v0.19.4 ([1b211c0](https://github.com/knocklabs/knock-python/commit/1b211c0a547eff991969ddfb57418b9797cb5f10))

scripts/bootstrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44

55
cd "$(dirname "$0")/.."
66

7-
if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ] && [ "$SKIP_BREW" != "1" ] && [ -t 0 ]; then
7+
if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ] && [ "${SKIP_BREW:-}" != "1" ] && [ -t 0 ]; then
88
brew bundle check >/dev/null 2>&1 || {
99
echo -n "==> Install Homebrew dependencies? (y/N): "
1010
read -r response

src/knockapi/types/workflow_recipient_run.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from pydantic import Field as FieldInfo
88

99
from .._models import BaseModel
10-
from .recipient import Recipient
1110
from .recipient_reference import RecipientReference
1211

1312
__all__ = ["WorkflowRecipientRun", "TriggerSource"]
@@ -74,8 +73,11 @@ class WorkflowRecipientRun(BaseModel):
7473
single trigger.
7574
"""
7675

77-
actor: Optional[Recipient] = None
78-
"""A recipient of a notification, which is either a user or an object."""
76+
actor: Optional[RecipientReference] = None
77+
"""
78+
A reference to a recipient, either a user identifier (string) or an object
79+
reference (ID, collection).
80+
"""
7981

8082
error_count: Optional[int] = None
8183
"""The number of errors encountered during the workflow recipient run."""

0 commit comments

Comments
 (0)