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 @@
{
".": "0.1.0-beta.19"
".": "0.1.0-beta.20"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 108
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stigg/stigg-4b036ae37ac7dc36a2dd01f48a5913d32202264b3c4b4d221c9cc8dd2af02913.yml
openapi_spec_hash: e597fd274819cafb888ca653d5e8f3e5
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stigg/stigg-d6413c8603e1ea1fb4e01d498ae95fcde66332ba5e979bf3446b441f9200959f.yml
openapi_spec_hash: c2a40b8b8f84af2843b0648b69ee2db5
config_hash: da19ab71a4a80274895d7b4b295c08af
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.1.0-beta.20 (2026-06-11)

Full Changelog: [v0.1.0-beta.19...v0.1.0-beta.20](https://github.com/stiggio/stigg-python/compare/v0.1.0-beta.19...v0.1.0-beta.20)

### Features

* **api:** add scope_entity_ids field to entitlement check response ([13c0877](https://github.com/stiggio/stigg-python/commit/13c08771374295828bea912e7ea5f800a0e15c39))

## 0.1.0-beta.19 (2026-06-10)

Full Changelog: [v0.1.0-beta.18...v0.1.0-beta.19](https://github.com/stiggio/stigg-python/compare/v0.1.0-beta.18...v0.1.0-beta.19)
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 = "stigg"
version = "0.1.0-beta.19"
version = "0.1.0-beta.20"
description = "The official Python library for the stigg API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/stigg/_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__ = "stigg"
__version__ = "0.1.0-beta.19" # x-release-please-version
__version__ = "0.1.0-beta.20" # x-release-please-version
16 changes: 16 additions & 0 deletions src/stigg/types/v1_beta/customers/entitlement_check_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,14 @@ class DataFeatureChain(BaseModel):
is_granted: bool = FieldInfo(alias="isGranted")
"""Whether this node alone permits the requested usage."""

scope_entity_ids: List[str] = FieldInfo(alias="scopeEntityIds")
"""External ids of the entities this budget is scoped to.

Empty (`[]`) is the node-wide budget; a non-empty set is the dimension-scoped
budget that matched this request — use it to tell apart multiple budgets on the
same entity.
"""

usage_limit: Optional[float] = FieldInfo(alias="usageLimit", default=None)
"""Hard usage limit for this node; null when no assignment is configured."""

Expand Down Expand Up @@ -158,6 +166,14 @@ class DataCreditChain(BaseModel):
is_granted: bool = FieldInfo(alias="isGranted")
"""Whether this node alone permits the requested usage."""

scope_entity_ids: List[str] = FieldInfo(alias="scopeEntityIds")
"""External ids of the entities this budget is scoped to.

Empty (`[]`) is the node-wide budget; a non-empty set is the dimension-scoped
budget that matched this request — use it to tell apart multiple budgets on the
same entity.
"""

usage_limit: Optional[float] = FieldInfo(alias="usageLimit", default=None)
"""Hard usage limit for this node; null when no assignment is configured."""

Expand Down