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.27"
".": "0.1.0-beta.28"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 110
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stigg/stigg-a3b1cb64a010bc54278d208eb9ef309cb7c31e9099c45470fa3d032b1f4a17f6.yml
openapi_spec_hash: 09e5366c0f3dd1ea84dadb90e7cbf762
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stigg/stigg-7dccccd9c809d3fcc5f0ba477228a67b5f1fc5352b282081131f9fa0d90577d4.yml
openapi_spec_hash: 43d3823a6e045c2fd0b832877f2d8739
config_hash: 0eca08dde117ac62155a012abb0ecac7
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.28 (2026-06-23)

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

### Features

* **api:** add usage_period_end field to usage report response ([56d4cfc](https://github.com/stiggio/stigg-python/commit/56d4cfc4ebb6c08357780469d129fe371bd52515))

## 0.1.0-beta.27 (2026-06-23)

Full Changelog: [v0.1.0-beta.26...v0.1.0-beta.27](https://github.com/stiggio/stigg-python/compare/v0.1.0-beta.26...v0.1.0-beta.27)
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.27"
version = "0.1.0-beta.28"
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.27" # x-release-please-version
__version__ = "0.1.0-beta.28" # x-release-please-version
6 changes: 6 additions & 0 deletions src/stigg/types/v1/usage_report_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ class DataCredit(BaseModel):
usage_limit: float = FieldInfo(alias="usageLimit")
"""The total credits granted"""

usage_period_end: Optional[datetime] = FieldInfo(alias="usagePeriodEnd", default=None)
"""
End of the current credit grant period (when recurring credits reset), if
applicable
"""


class Data(BaseModel):
"""Recorded usage with period info"""
Expand Down