Skip to content
Open
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
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.6 - 2025-12-22
* SDK regeneration
* Unable to analyze changes with AI, incrementing PATCH version.

## 1.1.5 - 2025-12-19
* SDK regeneration
* Unable to analyze changes with AI, incrementing PATCH version.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dynamic = ["version"]

[tool.poetry]
name = "schematichq"
version = "1.1.5"
version = "1.1.6"
description = ""
readme = "README.md"
authors = []
Expand Down
4 changes: 2 additions & 2 deletions reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -3112,7 +3112,7 @@ client.billing.list_billing_products(
<dl>
<dd>

**is_active:** `typing.Optional[bool]` — Filter products that are active
**is_active:** `typing.Optional[bool]` — Filter products that are active. Defaults to true if not specified

</dd>
</dl>
Expand Down Expand Up @@ -3266,7 +3266,7 @@ client.billing.count_billing_products(
<dl>
<dd>

**is_active:** `typing.Optional[bool]` — Filter products that are active
**is_active:** `typing.Optional[bool]` — Filter products that are active. Defaults to true if not specified

</dd>
</dl>
Expand Down
8 changes: 4 additions & 4 deletions src/schematic/billing/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1219,7 +1219,7 @@ def list_billing_products(
ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]

is_active : typing.Optional[bool]
Filter products that are active
Filter products that are active. Defaults to true if not specified

name : typing.Optional[str]

Expand Down Expand Up @@ -1316,7 +1316,7 @@ def count_billing_products(
ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]

is_active : typing.Optional[bool]
Filter products that are active
Filter products that are active. Defaults to true if not specified

name : typing.Optional[str]

Expand Down Expand Up @@ -2849,7 +2849,7 @@ async def list_billing_products(
ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]

is_active : typing.Optional[bool]
Filter products that are active
Filter products that are active. Defaults to true if not specified

name : typing.Optional[str]

Expand Down Expand Up @@ -2954,7 +2954,7 @@ async def count_billing_products(
ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]

is_active : typing.Optional[bool]
Filter products that are active
Filter products that are active. Defaults to true if not specified

name : typing.Optional[str]

Expand Down
8 changes: 4 additions & 4 deletions src/schematic/billing/raw_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -2280,7 +2280,7 @@ def list_billing_products(
ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]

is_active : typing.Optional[bool]
Filter products that are active
Filter products that are active. Defaults to true if not specified

name : typing.Optional[str]

Expand Down Expand Up @@ -2432,7 +2432,7 @@ def count_billing_products(
ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]

is_active : typing.Optional[bool]
Filter products that are active
Filter products that are active. Defaults to true if not specified

name : typing.Optional[str]

Expand Down Expand Up @@ -4973,7 +4973,7 @@ async def list_billing_products(
ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]

is_active : typing.Optional[bool]
Filter products that are active
Filter products that are active. Defaults to true if not specified

name : typing.Optional[str]

Expand Down Expand Up @@ -5125,7 +5125,7 @@ async def count_billing_products(
ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]

is_active : typing.Optional[bool]
Filter products that are active
Filter products that are active. Defaults to true if not specified

name : typing.Optional[str]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class CountBillingProductsParams(UniversalBaseModel):
ids: typing.Optional[typing.List[str]] = None
is_active: typing.Optional[bool] = pydantic.Field(default=None)
"""
Filter products that are active
Filter products that are active. Defaults to true if not specified
"""

limit: typing.Optional[int] = pydantic.Field(default=None)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class ListBillingProductsParams(UniversalBaseModel):
ids: typing.Optional[typing.List[str]] = None
is_active: typing.Optional[bool] = pydantic.Field(default=None)
"""
Filter products that are active
Filter products that are active. Defaults to true if not specified
"""

limit: typing.Optional[int] = pydantic.Field(default=None)
Expand Down
2 changes: 1 addition & 1 deletion src/schematic/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def get_headers(self) -> typing.Dict[str, str]:
"User-Agent": "schematichq/AUTO",
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "schematichq",
"X-Fern-SDK-Version": "1.1.5",
"X-Fern-SDK-Version": "1.1.6",
**(self.get_custom_headers() or {}),
}
headers["X-Schematic-Api-Key"] = self.api_key
Expand Down
Loading