sendly 3.34.0__tar.gz → 3.35.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {sendly-3.34.0 → sendly-3.35.0}/PKG-INFO +1 -1
- {sendly-3.34.0 → sendly-3.35.0}/pyproject.toml +1 -1
- {sendly-3.34.0 → sendly-3.35.0}/sendly/types.py +15 -0
- {sendly-3.34.0 → sendly-3.35.0}/.github/header.svg +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/.gitignore +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/CHANGELOG.md +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/README.md +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/examples/async_example.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/examples/error_handling.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/examples/send_sms.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/__init__.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/client.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/errors.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/resources/__init__.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/resources/account.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/resources/business_upgrade.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/resources/campaigns.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/resources/contacts.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/resources/conversations.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/resources/drafts.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/resources/enterprise.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/resources/labels.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/resources/media.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/resources/messages.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/resources/numbers.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/resources/rules.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/resources/templates.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/resources/verify.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/resources/webhooks.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/utils/__init__.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/utils/http.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/utils/validation.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/sendly/webhooks.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/tests/conftest.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/tests/test_async_client.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/tests/test_client.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/tests/test_errors.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/tests/test_http_body_kwarg.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/tests/test_messages.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/tests/test_messages.py.bak +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/tests/test_messages_batch.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/tests/test_messages_schedule.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/tests/test_numbers.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/tests/test_validation.py +0 -0
- {sendly-3.34.0 → sendly-3.35.0}/tests/test_webhooks.py +0 -0
|
@@ -1730,6 +1730,21 @@ class OwnedNumber(BaseModel):
|
|
|
1730
1730
|
monthly_cost_cents: int = Field(
|
|
1731
1731
|
..., alias="monthlyCostCents", description="Monthly cost in cents, already customer-priced"
|
|
1732
1732
|
)
|
|
1733
|
+
requirements_submitted_at: Optional[str] = Field(
|
|
1734
|
+
default=None,
|
|
1735
|
+
alias="requirementsSubmittedAt",
|
|
1736
|
+
description="When regulatory documents were submitted for carrier review; null if still required",
|
|
1737
|
+
)
|
|
1738
|
+
pending_cancellation: bool = Field(
|
|
1739
|
+
default=False,
|
|
1740
|
+
alias="pendingCancellation",
|
|
1741
|
+
description="Whether the number is scheduled for release at period end",
|
|
1742
|
+
)
|
|
1743
|
+
scheduled_release_at: Optional[str] = Field(
|
|
1744
|
+
default=None,
|
|
1745
|
+
alias="scheduledReleaseAt",
|
|
1746
|
+
description="When the number is scheduled to be released; null if not scheduled",
|
|
1747
|
+
)
|
|
1733
1748
|
|
|
1734
1749
|
model_config = ConfigDict(populate_by_name=True)
|
|
1735
1750
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|