@eclipse-glsp-examples/workflow-server-bundled 2.3.0-next.108 → 2.3.0-next.110
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/wf-glsp-server-node.js +37 -28
- package/wf-glsp-server-node.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eclipse-glsp-examples/workflow-server-bundled",
|
|
3
|
-
"version": "2.3.0-next.
|
|
3
|
+
"version": "2.3.0-next.110+cc51d17",
|
|
4
4
|
"description": "GLSP node server for the workflow example (bundled)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eclipse",
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"publishConfig": {
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "cc51d17af4ce31e52bcb17394b47ae044952f11f"
|
|
53
53
|
}
|
package/wf-glsp-server-node.js
CHANGED
|
@@ -5749,34 +5749,12 @@ exports.GLSPClientProxy = Symbol('GLSPClientProxy');
|
|
|
5749
5749
|
/*!****************************************************************************************************************!*\
|
|
5750
5750
|
!*** ../../node_modules/@eclipse-glsp/protocol/lib/client-server-protocol/jsonrpc/base-jsonrpc-glsp-client.js ***!
|
|
5751
5751
|
\****************************************************************************************************************/
|
|
5752
|
-
/***/ (
|
|
5752
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
5753
5753
|
|
|
5754
5754
|
"use strict";
|
|
5755
5755
|
|
|
5756
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
5757
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
5758
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5759
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5760
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
5761
|
-
};
|
|
5762
5756
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
5763
5757
|
exports.JsonrpcClientProxy = exports.BaseJsonrpcGLSPClient = void 0;
|
|
5764
|
-
/********************************************************************************
|
|
5765
|
-
* Copyright (c) 2019-2024 EclipseSource and others.
|
|
5766
|
-
*
|
|
5767
|
-
* This program and the accompanying materials are made available under the
|
|
5768
|
-
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
5769
|
-
* http://www.eclipse.org/legal/epl-2.0.
|
|
5770
|
-
*
|
|
5771
|
-
* This Source Code may also be made available under the following Secondary
|
|
5772
|
-
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
5773
|
-
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
5774
|
-
* with the GNU Classpath Exception which is available at
|
|
5775
|
-
* https://www.gnu.org/software/classpath/license.html.
|
|
5776
|
-
*
|
|
5777
|
-
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
5778
|
-
********************************************************************************/
|
|
5779
|
-
const inversify_1 = __webpack_require__(/*! inversify */ "../../node_modules/inversify/es/inversify.js");
|
|
5780
5758
|
const event_1 = __webpack_require__(/*! ../../utils/event */ "../../node_modules/@eclipse-glsp/protocol/lib/utils/event.js");
|
|
5781
5759
|
const glsp_client_1 = __webpack_require__(/*! ../glsp-client */ "../../node_modules/@eclipse-glsp/protocol/lib/client-server-protocol/glsp-client.js");
|
|
5782
5760
|
const glsp_jsonrpc_client_1 = __webpack_require__(/*! ./glsp-jsonrpc-client */ "../../node_modules/@eclipse-glsp/protocol/lib/client-server-protocol/jsonrpc/glsp-jsonrpc-client.js");
|
|
@@ -5908,7 +5886,7 @@ exports.BaseJsonrpcGLSPClient = BaseJsonrpcGLSPClient;
|
|
|
5908
5886
|
/**
|
|
5909
5887
|
* Default {@link GLSPClientProxy} implementation for jsonrpc-based client-server communication with typescript based servers.
|
|
5910
5888
|
*/
|
|
5911
|
-
|
|
5889
|
+
class JsonrpcClientProxy {
|
|
5912
5890
|
initialize(clientConnection, enableLogging = false) {
|
|
5913
5891
|
this.clientConnection = clientConnection;
|
|
5914
5892
|
this.enableLogging = enableLogging;
|
|
@@ -5920,11 +5898,8 @@ let JsonrpcClientProxy = class JsonrpcClientProxy {
|
|
|
5920
5898
|
}
|
|
5921
5899
|
(_a = this.clientConnection) === null || _a === void 0 ? void 0 : _a.sendNotification(glsp_jsonrpc_client_1.JsonrpcGLSPClient.ActionMessageNotification, message);
|
|
5922
5900
|
}
|
|
5923
|
-
}
|
|
5901
|
+
}
|
|
5924
5902
|
exports.JsonrpcClientProxy = JsonrpcClientProxy;
|
|
5925
|
-
exports.JsonrpcClientProxy = JsonrpcClientProxy = __decorate([
|
|
5926
|
-
(0, inversify_1.injectable)()
|
|
5927
|
-
], JsonrpcClientProxy);
|
|
5928
5903
|
|
|
5929
5904
|
|
|
5930
5905
|
/***/ }),
|
|
@@ -6620,6 +6595,7 @@ __exportStar(__webpack_require__(/*! ./container-configuration */ "../../node_mo
|
|
|
6620
6595
|
__exportStar(__webpack_require__(/*! ./feature-module */ "../../node_modules/@eclipse-glsp/protocol/lib/di/feature-module.js"), exports);
|
|
6621
6596
|
__exportStar(__webpack_require__(/*! ./inversify-util */ "../../node_modules/@eclipse-glsp/protocol/lib/di/inversify-util.js"), exports);
|
|
6622
6597
|
__exportStar(__webpack_require__(/*! ./lazy-injector */ "../../node_modules/@eclipse-glsp/protocol/lib/di/lazy-injector.js"), exports);
|
|
6598
|
+
__exportStar(__webpack_require__(/*! ./re-decorate */ "../../node_modules/@eclipse-glsp/protocol/lib/di/re-decorate.js"), exports);
|
|
6623
6599
|
|
|
6624
6600
|
|
|
6625
6601
|
/***/ }),
|
|
@@ -6796,6 +6772,39 @@ function bindLazyInjector(context) {
|
|
|
6796
6772
|
exports.bindLazyInjector = bindLazyInjector;
|
|
6797
6773
|
|
|
6798
6774
|
|
|
6775
|
+
/***/ }),
|
|
6776
|
+
|
|
6777
|
+
/***/ "../../node_modules/@eclipse-glsp/protocol/lib/di/re-decorate.js":
|
|
6778
|
+
/*!***********************************************************************!*\
|
|
6779
|
+
!*** ../../node_modules/@eclipse-glsp/protocol/lib/di/re-decorate.js ***!
|
|
6780
|
+
\***********************************************************************/
|
|
6781
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
6782
|
+
|
|
6783
|
+
"use strict";
|
|
6784
|
+
|
|
6785
|
+
/********************************************************************************
|
|
6786
|
+
* Copyright (c) 2024 EclipseSource and others.
|
|
6787
|
+
*
|
|
6788
|
+
* This program and the accompanying materials are made available under the
|
|
6789
|
+
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
6790
|
+
* http://www.eclipse.org/legal/epl-2.0.
|
|
6791
|
+
*
|
|
6792
|
+
* This Source Code may also be made available under the following Secondary
|
|
6793
|
+
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
6794
|
+
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
6795
|
+
* with the GNU Classpath Exception which is available at
|
|
6796
|
+
* https://www.gnu.org/software/classpath/license.html.
|
|
6797
|
+
*
|
|
6798
|
+
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
6799
|
+
********************************************************************************/
|
|
6800
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
6801
|
+
const inversify_1 = __webpack_require__(/*! inversify */ "../../node_modules/inversify/es/inversify.js");
|
|
6802
|
+
const base_jsonrpc_glsp_client_1 = __webpack_require__(/*! ../client-server-protocol/jsonrpc/base-jsonrpc-glsp-client */ "../../node_modules/@eclipse-glsp/protocol/lib/client-server-protocol/jsonrpc/base-jsonrpc-glsp-client.js");
|
|
6803
|
+
// Decorate `JsonrpcClientProxy` as injectable for anyone who imports the di functionality, such as the client package,
|
|
6804
|
+
// the Theia integration package and the server package.
|
|
6805
|
+
(0, inversify_1.decorate)((0, inversify_1.injectable)(), base_jsonrpc_glsp_client_1.JsonrpcClientProxy);
|
|
6806
|
+
|
|
6807
|
+
|
|
6799
6808
|
/***/ }),
|
|
6800
6809
|
|
|
6801
6810
|
/***/ "../../node_modules/@eclipse-glsp/protocol/lib/index.js":
|