From bd74ca6676162768bcbc185466b557ac7126201c Mon Sep 17 00:00:00 2001
From: Dan Jones <dan.jones@noc.ac.uk>
Date: Thu, 2 Mar 2023 12:10:27 +0000
Subject: [PATCH] fix: switch off noAdditionalProperties on validate

---
 dist/protocol.esm.js  | 4 ++--
 dist/protocol.js      | 4 ++--
 src/protocol/index.js | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dist/protocol.esm.js b/dist/protocol.esm.js
index af2c4d3..12070d6 100644
--- a/dist/protocol.esm.js
+++ b/dist/protocol.esm.js
@@ -50,7 +50,7 @@ class GenericProtocol {
       this.schema.components.schemas.Message,
       this.schema.components.schemas,
       false,
-      true
+      false
     );
   }
 
@@ -152,7 +152,7 @@ class GenericSoarProtocol extends GenericProtocol {
       this.schema.components.schemas.MESSAGE,
       this.schema.components.schemas,
       false,
-      true
+      false
     );
   }
 }
diff --git a/dist/protocol.js b/dist/protocol.js
index 748120d..7242ff8 100644
--- a/dist/protocol.js
+++ b/dist/protocol.js
@@ -52,7 +52,7 @@ class GenericProtocol {
       this.schema.components.schemas.Message,
       this.schema.components.schemas,
       false,
-      true
+      false
     );
   }
 
@@ -154,7 +154,7 @@ class GenericSoarProtocol extends GenericProtocol {
       this.schema.components.schemas.MESSAGE,
       this.schema.components.schemas,
       false,
-      true
+      false
     );
   }
 }
diff --git a/src/protocol/index.js b/src/protocol/index.js
index a0bc8f7..1d7f69f 100644
--- a/src/protocol/index.js
+++ b/src/protocol/index.js
@@ -50,7 +50,7 @@ export class GenericProtocol {
       this.schema.components.schemas.Message,
       this.schema.components.schemas,
       false,
-      true
+      false
     );
   }
 
@@ -152,7 +152,7 @@ export class GenericSoarProtocol extends GenericProtocol {
       this.schema.components.schemas.MESSAGE,
       this.schema.components.schemas,
       false,
-      true
+      false
     );
   }
 }
\ No newline at end of file
-- 
GitLab