From 6589f4522298759d9219b79465d52e0328a0d377 Mon Sep 17 00:00:00 2001
From: vkovtun <viktor.kovtun@id.ethz.ch>
Date: Tue, 19 Dec 2023 11:38:38 +0100
Subject: [PATCH] BIS-772: Fixing the merge error that cause the JS tests to
 fail.

---
 api-openbis-javascript/src/v3/openbis.js | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/api-openbis-javascript/src/v3/openbis.js b/api-openbis-javascript/src/v3/openbis.js
index a0348294970..020529fb065 100644
--- a/api-openbis-javascript/src/v3/openbis.js
+++ b/api-openbis-javascript/src/v3/openbis.js
@@ -2369,6 +2369,17 @@ define([ 'jquery', 'util/Json', 'as/dto/datastore/search/DataStoreSearchCriteria
 			});
 		}
 
+		this.executeExport = function(exportData, exportOptions) {
+			var thisFacade = this;
+			return thisFacade._private.ajaxRequest({
+				url : openbisUrl,
+				data : {
+					"method" : "executeExport",
+					"params" : [ thisFacade._private.sessionToken, exportData, exportOptions ]
+				}
+			});
+		}
+
         this.isSessionActive = function() {
             var thisFacade = this;
             return thisFacade._private.ajaxRequest({
-- 
GitLab