ebiose-cloud-sdk 0.1.282.dev0__tar.gz → 0.1.289.dev0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ebiose_cloud_sdk-0.1.282.dev0 → ebiose_cloud_sdk-0.1.289.dev0}/.gitignore +4 -0
- {ebiose_cloud_sdk-0.1.282.dev0 → ebiose_cloud_sdk-0.1.289.dev0}/PKG-INFO +1 -1
- {ebiose_cloud_sdk-0.1.282.dev0 → ebiose_cloud_sdk-0.1.289.dev0}/ebiose_cloud_sdk/models.py +2 -0
- {ebiose_cloud_sdk-0.1.282.dev0 → ebiose_cloud_sdk-0.1.289.dev0}/pyproject.toml +1 -1
- {ebiose_cloud_sdk-0.1.282.dev0 → ebiose_cloud_sdk-0.1.289.dev0}/README.md +0 -0
- {ebiose_cloud_sdk-0.1.282.dev0 → ebiose_cloud_sdk-0.1.289.dev0}/ebiose_cloud_sdk/__init__.py +0 -0
|
@@ -406,6 +406,10 @@ Website/.env*.local
|
|
|
406
406
|
.dev/*
|
|
407
407
|
!.dev/project/
|
|
408
408
|
!.dev/backup-old-workflow/
|
|
409
|
+
# Scratch runs (/scratch) stay local & uncommitted — only the seed template is tracked.
|
|
410
|
+
!.dev/scratch/
|
|
411
|
+
.dev/scratch/*
|
|
412
|
+
!.dev/scratch/_template/
|
|
409
413
|
data/
|
|
410
414
|
# Re-include committed test fixtures that live under a `data/` folder.
|
|
411
415
|
!ebiose-core/tests/**/data/
|
|
@@ -100,6 +100,7 @@ class CycleStatus(StrEnum):
|
|
|
100
100
|
running = "running"
|
|
101
101
|
completed = "completed"
|
|
102
102
|
failed = "failed"
|
|
103
|
+
expired = "expired"
|
|
103
104
|
|
|
104
105
|
|
|
105
106
|
class EndCycleRequest(BaseModel):
|
|
@@ -107,6 +108,7 @@ class EndCycleRequest(BaseModel):
|
|
|
107
108
|
extra="forbid",
|
|
108
109
|
)
|
|
109
110
|
best_agent_ids: list[str]
|
|
111
|
+
outcome: str = Field(..., min_length=1)
|
|
110
112
|
|
|
111
113
|
|
|
112
114
|
class EventDetailsResponse(BaseModel):
|
|
File without changes
|
{ebiose_cloud_sdk-0.1.282.dev0 → ebiose_cloud_sdk-0.1.289.dev0}/ebiose_cloud_sdk/__init__.py
RENAMED
|
File without changes
|