ebiose-cloud-sdk 0.1.338.dev0__tar.gz → 0.1.415.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ebiose-cloud-sdk
3
- Version: 0.1.338.dev0
3
+ Version: 0.1.415.dev0
4
4
  Summary: Auto-generated Pydantic models for the Ebiose Cloud Backend API.
5
5
  Author: Ebiose
6
6
  Requires-Python: >=3.12
@@ -163,6 +163,19 @@ class EventSummaryResponse(BaseModel):
163
163
  occurred_at: AwareDatetime | None = None
164
164
 
165
165
 
166
+ class EvolutionCycleGlobalListItemDto(BaseModel):
167
+ model_config = ConfigDict(
168
+ extra="forbid",
169
+ )
170
+ cycle_id: str | None = None
171
+ ended_at: AwareDatetime | None = None
172
+ forge_id: str | None = None
173
+ forge_name: str | None = None
174
+ n_candidates: int | None = None
175
+ started_at: AwareDatetime | None = None
176
+ status: CycleStatus | None = None
177
+
178
+
166
179
  class EvolutionCycleListItemDto(BaseModel):
167
180
  model_config = ConfigDict(
168
181
  extra="forbid",
@@ -219,6 +232,14 @@ class ListAgentsResponse(BaseModel):
219
232
  next_cursor: str | None = None
220
233
 
221
234
 
235
+ class ListAllEvolutionCyclesResponse(BaseModel):
236
+ model_config = ConfigDict(
237
+ extra="forbid",
238
+ )
239
+ items: list[EvolutionCycleGlobalListItemDto] | None = None
240
+ next_cursor: str | None = None
241
+
242
+
222
243
  class ListEventsResponse(BaseModel):
223
244
  model_config = ConfigDict(
224
245
  extra="forbid",
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ebiose-cloud-sdk"
3
- version = "0.1.338.dev0"
3
+ version = "0.1.415.dev0"
4
4
  description = "Auto-generated Pydantic models for the Ebiose Cloud Backend API."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"