From 2ecc79ebfe4bef4f67e3f9c873fde1882e1d016d Mon Sep 17 00:00:00 2001
From: VIAUD Nathan <nathan.viaud@inria.fr>
Date: Tue, 30 Jan 2024 13:45:43 +0100
Subject: [PATCH] Adding editorVersion to EpocMetadata

---
 src/v1/epoc.ts | 1 +
 src/v2/epoc.ts | 5 +++++
 2 files changed, 6 insertions(+)

diff --git a/src/v1/epoc.ts b/src/v1/epoc.ts
index c8f6790..00126b1 100644
--- a/src/v1/epoc.ts
+++ b/src/v1/epoc.ts
@@ -6,6 +6,7 @@ import {Badge} from './badge';
 
 export interface EpocMetadata {
     lastModif : string;
+    editorVersion: string;
     version : string;
     id: string;
     title: string;
diff --git a/src/v2/epoc.ts b/src/v2/epoc.ts
index 776e753..343d969 100644
--- a/src/v2/epoc.ts
+++ b/src/v2/epoc.ts
@@ -7,6 +7,11 @@ import {Badge} from './badge';
 * Contains all the ePoc metadata that can be retrieved from the library API 
 */
 export interface EpocMetadata {
+    /**
+     * Specifies the ePoc editor version for debug purpose
+     */
+    editorVersion: string;
+    
     /**
      * Specifies the ePoc data format version for backward compatibility
      */
-- 
GitLab