@eclipse-glsp-examples/workflow-server-bundled 2.3.0-next.108 → 2.3.0-next.109
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 +6 -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.109+70e8ce0",
|
|
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": "70e8ce07cf45450c1e15bf960529925cb90b65c8"
|
|
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
|
/***/ }),
|
|
@@ -53354,9 +53329,12 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
53354
53329
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
53355
53330
|
};
|
|
53356
53331
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
53332
|
+
const protocol_1 = __webpack_require__(/*! @eclipse-glsp/protocol */ "../../node_modules/@eclipse-glsp/protocol/lib/index.js");
|
|
53333
|
+
const inversify_1 = __webpack_require__(/*! inversify */ "../../node_modules/inversify/es/inversify.js");
|
|
53357
53334
|
__exportStar(__webpack_require__(/*! @eclipse-glsp/graph */ "../../packages/graph/lib/index.js"), exports);
|
|
53358
53335
|
__exportStar(__webpack_require__(/*! @eclipse-glsp/protocol */ "../../node_modules/@eclipse-glsp/protocol/lib/index.js"), exports);
|
|
53359
53336
|
__exportStar(__webpack_require__(/*! @eclipse-glsp/protocol/lib/di */ "../../node_modules/@eclipse-glsp/protocol/lib/di/index.js"), exports);
|
|
53337
|
+
(0, inversify_1.decorate)((0, inversify_1.injectable)(), protocol_1.JsonrpcClientProxy);
|
|
53360
53338
|
|
|
53361
53339
|
|
|
53362
53340
|
/***/ }),
|