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 @@
{
".": "1.26.0"
".": "1.27.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 94
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/knock/knock-b42896ed120111c98cea7e588b382fdce0ff587b92a779e1eff1e585c3f77039.yml
openapi_spec_hash: 7b326a46e026aabfb75a66d7dfd3010b
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/knock/knock-14c218ec8463fb69d63b8ee69062164612e9d3d6d3c6701c6565c44d3bb8614d.yml
openapi_spec_hash: 9e8e363a5977d37212acc4d7404dec25
config_hash: 625db64572b7ee0ee1dd00546e53fc5f
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 1.27.0 (2026-07-02)

Full Changelog: [v1.26.0...v1.27.0](https://github.com/knocklabs/knock-python/compare/v1.26.0...v1.27.0)

### Features

* **api:** api update ([1d45388](https://github.com/knocklabs/knock-python/commit/1d45388d4a81f16dc6bb309c1fa1269695829d41))
* **api:** api update ([925e91e](https://github.com/knocklabs/knock-python/commit/925e91edb81684491556ca72133b1ee17cfdd82f))

## 1.26.0 (2026-06-29)

Full Changelog: [v1.25.0...v1.26.0](https://github.com/knocklabs/knock-python/compare/v1.25.0...v1.26.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "knockapi"
version = "1.26.0"
version = "1.27.0"
description = "The official Python library for the knock API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/knockapi/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "knockapi"
__version__ = "1.26.0" # x-release-please-version
__version__ = "1.27.0" # x-release-please-version
18 changes: 18 additions & 0 deletions src/knockapi/types/tenant.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,24 @@
class SettingsBranding(BaseModel):
"""The branding for the tenant."""

dark_icon_url: Optional[str] = None
"""The icon URL for the tenant in dark mode. Falls back to `icon_url` if unset."""

dark_logo_url: Optional[str] = None
"""The logo URL for the tenant in dark mode. Falls back to `logo_url` if unset."""

dark_primary_color: Optional[str] = None
"""The primary color for the tenant in dark mode, provided as a hex value.

Defaults to `#FFFFFF`.
"""

dark_primary_color_contrast: Optional[str] = None
"""The primary color contrast for the tenant in dark mode, provided as a hex value.

Defaults to `#000000`.
"""

icon_url: Optional[str] = None
"""The icon URL for the tenant.

Expand Down
18 changes: 18 additions & 0 deletions src/knockapi/types/tenant_request_param.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,24 @@
class SettingsBranding(TypedDict, total=False):
"""The branding for the tenant."""

dark_icon_url: Optional[str]
"""The icon URL for the tenant in dark mode. Falls back to `icon_url` if unset."""

dark_logo_url: Optional[str]
"""The logo URL for the tenant in dark mode. Falls back to `logo_url` if unset."""

dark_primary_color: Optional[str]
"""The primary color for the tenant in dark mode, provided as a hex value.

Defaults to `#FFFFFF`.
"""

dark_primary_color_contrast: Optional[str]
"""The primary color contrast for the tenant in dark mode, provided as a hex value.

Defaults to `#000000`.
"""

icon_url: Optional[str]
"""The icon URL for the tenant.

Expand Down