From 51c241eed4b36e76c673f3debb778edbd58a46f5 Mon Sep 17 00:00:00 2001 From: Alex Coseru Date: Tue, 13 Apr 2021 21:25:15 +0300 Subject: [PATCH] add inputDID & algoDID (#735) --- src/ocean/interfaces/Compute.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ocean/interfaces/Compute.ts b/src/ocean/interfaces/Compute.ts index 927aad8f..dc2a82d9 100644 --- a/src/ocean/interfaces/Compute.ts +++ b/src/ocean/interfaces/Compute.ts @@ -4,7 +4,7 @@ import { MetadataAlgorithm } from '../../ddo/interfaces/MetadataAlgorithm' export interface ComputeJob { owner: string - did: string + did?: string jobId: string dateCreated: string dateFinished: string @@ -13,6 +13,8 @@ export interface ComputeJob { algorithmLogUrl: string resultsUrl: string[] resultsDid?: DID + inputDID?: string[] + algoDID?: string } export interface ComputeOutput {