Skip to content

Commit 65a47bc

Browse files
## Summary
1 parent 2c7cbac commit 65a47bc

3 files changed

Lines changed: 3 additions & 3 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 = "tofupilot"
3-
version = "2.13.0"
3+
version = "2.13.1"
44
description = "Official Python client for TofuPilot with OpenHTF integration, real-time streaming and file attachment support"
55
authors = [
66
{ name = "TofuPilot Team", email = "hello@tofupilot.com" },

tofupilot/v2/models/deployment_getop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class DeploymentGetRequest(BaseModel):
2424
DeploymentGetEnvironment = Literal["production", "preview", "development"]
2525
r"""Deployment environment."""
2626

27-
DeploymentGetTrigger = Literal["auto", "manual"]
27+
DeploymentGetTrigger = Literal["auto", "manual", "cli"]
2828
r"""How the deployment was triggered."""
2929

3030
DeploymentGetStatus = Literal["pending", "building", "ready", "failed"]

tofupilot/v2/models/deployment_listop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class DeploymentListRequest(BaseModel):
9292
DataEnvironment = Literal["production", "preview", "development"]
9393
r"""Deployment environment."""
9494

95-
DeploymentListTrigger = Literal["auto", "manual"]
95+
DeploymentListTrigger = Literal["auto", "manual", "cli"]
9696
r"""How the deployment was triggered."""
9797

9898
DeploymentListStatus = Literal["pending", "building", "ready", "failed"]

0 commit comments

Comments
 (0)