From 3048b66fc3bba46f7d562632daf2b149c7d008de Mon Sep 17 00:00:00 2001 From: activitysmith-bot Date: Tue, 18 Aug 2026 08:19:09 +0000 Subject: [PATCH] chore: regenerate SDK --- activitysmith_openapi/docs/LiveActivityLimitError.md | 2 +- .../docs/SendPushNotification429Response.md | 2 +- activitysmith_openapi/models/live_activity_limit_error.py | 6 +++--- .../test/test_live_activity_limit_error.py | 4 ++-- .../test/test_send_push_notification429_response.py | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/activitysmith_openapi/docs/LiveActivityLimitError.md b/activitysmith_openapi/docs/LiveActivityLimitError.md index d661fc6..f38515b 100644 --- a/activitysmith_openapi/docs/LiveActivityLimitError.md +++ b/activitysmith_openapi/docs/LiveActivityLimitError.md @@ -8,7 +8,7 @@ Name | Type | Description | Notes **error** | **str** | | **message** | **str** | | **limit** | **int** | | -**active** | **int** | Current number of active Live Activities. | +**blocked_devices** | **int** | Number of targeted devices that have reached the enforced iOS Live Activity concurrency threshold. | ## Example diff --git a/activitysmith_openapi/docs/SendPushNotification429Response.md b/activitysmith_openapi/docs/SendPushNotification429Response.md index e1738e1..1b80f0c 100644 --- a/activitysmith_openapi/docs/SendPushNotification429Response.md +++ b/activitysmith_openapi/docs/SendPushNotification429Response.md @@ -8,7 +8,7 @@ Name | Type | Description | Notes **error** | **str** | | **message** | **str** | | **limit** | **int** | | -**active** | **int** | Current number of active Live Activities. | +**blocked_devices** | **int** | Number of targeted devices that have reached the enforced iOS Live Activity concurrency threshold. | ## Example diff --git a/activitysmith_openapi/models/live_activity_limit_error.py b/activitysmith_openapi/models/live_activity_limit_error.py index f33b7e4..0ddf9f9 100644 --- a/activitysmith_openapi/models/live_activity_limit_error.py +++ b/activitysmith_openapi/models/live_activity_limit_error.py @@ -29,8 +29,8 @@ class LiveActivityLimitError(BaseModel): error: StrictStr message: StrictStr limit: StrictInt - active: StrictInt = Field(description="Current number of active Live Activities.") - __properties: ClassVar[List[str]] = ["error", "message", "limit", "active"] + blocked_devices: StrictInt = Field(description="Number of targeted devices that have reached the enforced iOS Live Activity concurrency threshold.") + __properties: ClassVar[List[str]] = ["error", "message", "limit", "blocked_devices"] model_config = ConfigDict( populate_by_name=True, @@ -86,7 +86,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "error": obj.get("error"), "message": obj.get("message"), "limit": obj.get("limit"), - "active": obj.get("active") + "blocked_devices": obj.get("blocked_devices") }) return _obj diff --git a/activitysmith_openapi/test/test_live_activity_limit_error.py b/activitysmith_openapi/test/test_live_activity_limit_error.py index c618fef..191f534 100644 --- a/activitysmith_openapi/test/test_live_activity_limit_error.py +++ b/activitysmith_openapi/test/test_live_activity_limit_error.py @@ -38,14 +38,14 @@ def make_instance(self, include_optional) -> LiveActivityLimitError: error = '', message = '', limit = 56, - active = 56 + blocked_devices = 56 ) else: return LiveActivityLimitError( error = '', message = '', limit = 56, - active = 56, + blocked_devices = 56, ) """ diff --git a/activitysmith_openapi/test/test_send_push_notification429_response.py b/activitysmith_openapi/test/test_send_push_notification429_response.py index 5466f95..3ea537d 100644 --- a/activitysmith_openapi/test/test_send_push_notification429_response.py +++ b/activitysmith_openapi/test/test_send_push_notification429_response.py @@ -38,14 +38,14 @@ def make_instance(self, include_optional) -> SendPushNotification429Response: error = '', message = '', limit = 56, - active = 56 + blocked_devices = 56 ) else: return SendPushNotification429Response( error = '', message = '', limit = 56, - active = 56, + blocked_devices = 56, ) """