Skip to content

Commit fdf06d6

Browse files
first commit
1 parent 8e85054 commit fdf06d6

File tree

3 files changed

+15
-0
lines changed
  • packages/models-library/src/models_library/api_schemas_long_running_tasks
  • services

3 files changed

+15
-0
lines changed

packages/models-library/src/models_library/api_schemas_long_running_tasks/tasks.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ class TaskStatus(BaseModel):
1212
task_progress: TaskProgress
1313
done: bool
1414
started: datetime | None
15+
tmp_result: Any | None = None
1516

1617

1718
class TaskResult(BaseModel):

services/api-server/openapi.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11582,6 +11582,15 @@
1158211582
}
1158311583
],
1158411584
"title": "Started"
11585+
},
11586+
"tmp_result": {
11587+
"anyOf": [
11588+
{},
11589+
{
11590+
"type": "null"
11591+
}
11592+
],
11593+
"title": "Tmp Result"
1158511594
}
1158611595
},
1158711596
"type": "object",

services/web/server/src/simcore_service_webserver/api/v0/openapi.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17467,6 +17467,11 @@ components:
1746717467
format: date-time
1746817468
- type: 'null'
1746917469
title: Started
17470+
tmp_result:
17471+
anyOf:
17472+
- {}
17473+
- type: 'null'
17474+
title: Tmp Result
1747017475
type: object
1747117476
required:
1747217477
- task_progress

0 commit comments

Comments
 (0)