Skip to content

Commit be0e659

Browse files
committed
add new field
1 parent 087c293 commit be0e659

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "stackcoin"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "Python library for the StackCoin API"
55
readme = "README.md"
66
requires-python = ">=3.13"

src/stackcoin/models.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# generated by datamodel-codegen:
22
# filename: openapi.json
3-
# timestamp: 2026-03-07T01:20:04+00:00
3+
# timestamp: 2026-03-15T03:11:07+00:00
44

55
from __future__ import annotations
66

@@ -134,6 +134,7 @@ class RequestCreatedEvent(BaseModel):
134134

135135

136136
class RequestDeniedData(BaseModel):
137+
denied_by_id: int = Field(..., description="User ID that denied the request")
137138
request_id: int = Field(..., description="Request ID")
138139
status: str = Field(..., description="New request status")
139140

0 commit comments

Comments
 (0)