diff --git a/apps/web/src/app/workspaces/model/capability-request.ts b/apps/web/src/app/workspaces/model/capability-request.ts index a45bbe10876704842d47c1364e96c3ba3bc18c8f..c8ca3f2a921d64078707f18cb8847fbaf675d825 100644 --- a/apps/web/src/app/workspaces/model/capability-request.ts +++ b/apps/web/src/app/workspaces/model/capability-request.ts @@ -7,6 +7,7 @@ export interface CapabilityRequest { state: string; parameters: JsonObject; current_execution: CapabilityExecution; + ingested: boolean; created_at: string; updated_at: string; type: string; diff --git a/shared/workspaces/workspaces/capability/schema.py b/shared/workspaces/workspaces/capability/schema.py index e0438c05f656618baa572d2b1d7ff5d395b2446e..5666addf7c139890603a6386550aac964b8483d8 100644 --- a/shared/workspaces/workspaces/capability/schema.py +++ b/shared/workspaces/workspaces/capability/schema.py @@ -171,6 +171,7 @@ class CapabilityRequest(Base, CapabilityRequestIF): "capability_name": self.capability_name, "state": self.state, "parameters": self.current_version.parameters if self.current_version else None, + "ingested": self.ingested, "created_at": self.created_at.isoformat(), "updated_at": self.updated_at.isoformat(), "current_execution": self.current_execution.__json__()