From dfb42e546441992f09a8d8cc0b43c83f55730be0 Mon Sep 17 00:00:00 2001 From: Soon Huat Date: Thu, 24 Feb 2022 19:15:39 +0800 Subject: [PATCH] services specific additional information (#1311) Co-authored-by: Soon Huat --- src/@types/DDO/Service.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/@types/DDO/Service.ts b/src/@types/DDO/Service.ts index 7df168579..178d5b5d8 100644 --- a/src/@types/DDO/Service.ts +++ b/src/@types/DDO/Service.ts @@ -142,4 +142,10 @@ export interface Service { * @type {ServiceComputeOptions} */ compute?: ServiceComputeOptions + + /** + * Stores service specific additional information, this is customizable by publisher + * @type {any} + */ + additionalInformation?: any }