@eclipse-glsp-examples/workflow-server-bundled 2.7.0-next.11 → 2.7.0-next.14

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eclipse-glsp-examples/workflow-server-bundled",
3
- "version": "2.7.0-next.11+ea5b153",
3
+ "version": "2.7.0-next.14+0090132",
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": "ea5b15366a194a2cca2522f3b2011b03c9c85e6e"
52
+ "gitHead": "009013242e08e679f251b4bb7feceb05314d73b2"
53
53
  }
@@ -8887,7 +8887,7 @@ function equalUpTo(one, other, epsilon = Number.EPSILON) {
8887
8887
  * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
8888
8888
  ********************************************************************************/
8889
8889
  Object.defineProperty(exports, "__esModule", ({ value: true }));
8890
- exports.MaybeActions = exports.AnyObject = void 0;
8890
+ exports.MaybeActions = exports.MaybePromise = exports.AnyObject = void 0;
8891
8891
  exports.typeGuard = typeGuard;
8892
8892
  exports.typeGuardOr = typeGuardOr;
8893
8893
  exports.toTypeGuard = toTypeGuard;
@@ -8912,6 +8912,18 @@ var AnyObject;
8912
8912
  }
8913
8913
  AnyObject.is = is;
8914
8914
  })(AnyObject || (exports.AnyObject = AnyObject = {}));
8915
+ var MaybePromise;
8916
+ (function (MaybePromise) {
8917
+ /**
8918
+ * Type guard to check whether a given value is a {@link PromiseLike}.
8919
+ * @param value The value to check.
8920
+ * @returns `true` if the value is a `PromiseLike`.
8921
+ */
8922
+ function isPromise(value) {
8923
+ return AnyObject.is(value) && hasFunctionProp(value, 'then');
8924
+ }
8925
+ MaybePromise.isPromise = isPromise;
8926
+ })(MaybePromise || (exports.MaybePromise = MaybePromise = {}));
8915
8927
  /** Utility function to combine two type guards */
8916
8928
  function typeGuard(one, other) {
8917
8929
  return (element) => one(element) && other(element);
@@ -125849,7 +125861,7 @@ module.exports = /*#__PURE__*/JSON.parse('{"name":"winston","description":"A log
125849
125861
  /***/ ((module) => {
125850
125862
 
125851
125863
  "use strict";
125852
- module.exports = /*#__PURE__*/JSON.parse('{"name":"@eclipse-glsp/server-mcp","version":"2.7.0-next","description":"Model Context Protocol (MCP) server for the GLSP TypeScript server — runs on Node, browser, and Fetch-API runtimes","keywords":["eclipse","graphics","diagram","modeling","visualization","glsp","diagram editor","mcp"],"homepage":"https://www.eclipse.org/glsp/","bugs":"https://github.com/eclipse-glsp/glsp/issues","repository":{"type":"git","url":"https://github.com/eclipse-glsp/glsp-server-node.git"},"license":"(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)","author":{"name":"Eclipse GLSP"},"contributors":[{"name":"Eclipse GLSP Project","email":"glsp-dev@eclipse.org","url":"https://projects.eclipse.org/projects/ecd.glsp"}],"main":"lib/node/index","browser":{"lib/node/index":"./lib/browser/index"},"types":"lib/common/index","files":["lib","src","node.js","node.d.ts","browser.js","browser.d.ts","common.js","common.d.ts"],"scripts":{"build":"tsc -b","clean":"rimraf lib *.tsbuildinfo coverage .nyc_output","generate:index":"glsp generateIndex src/browser src/common src/node -f -s","lint":"eslint --ext .ts,.tsx ./src","test":"mocha --config ../../.mocharc \\"./src/**/*.spec.?(ts|tsx)\\"","test:ci":"yarn test --reporter mocha-ctrf-json-reporter","test:coverage":"nyc yarn test","watch":"tsc -w"},"dependencies":{"@eclipse-glsp/server":"2.7.0-next","@hono/node-server":"^1.19.9","@modelcontextprotocol/sdk":"^1.29.0"},"peerDependencies":{"inversify":"^6.1.3"},"publishConfig":{"access":"public"}}');
125864
+ module.exports = /*#__PURE__*/JSON.parse('{"name":"@eclipse-glsp/server-mcp","version":"2.7.0","description":"Model Context Protocol (MCP) server for the GLSP TypeScript server — runs on Node, browser, and Fetch-API runtimes","keywords":["eclipse","graphics","diagram","modeling","visualization","glsp","diagram editor","mcp"],"homepage":"https://www.eclipse.org/glsp/","bugs":"https://github.com/eclipse-glsp/glsp/issues","repository":{"type":"git","url":"https://github.com/eclipse-glsp/glsp-server-node.git"},"license":"(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)","author":{"name":"Eclipse GLSP"},"contributors":[{"name":"Eclipse GLSP Project","email":"glsp-dev@eclipse.org","url":"https://projects.eclipse.org/projects/ecd.glsp"}],"main":"lib/node/index","browser":{"lib/node/index":"./lib/browser/index"},"types":"lib/common/index","files":["lib","src","node.js","node.d.ts","browser.js","browser.d.ts","common.js","common.d.ts"],"scripts":{"build":"tsc -b","clean":"rimraf lib *.tsbuildinfo coverage .nyc_output","generate:index":"glsp generateIndex src/browser src/common src/node -f -s","lint":"eslint --ext .ts,.tsx ./src","test":"mocha --config ../../.mocharc \\"./src/**/*.spec.?(ts|tsx)\\"","test:ci":"yarn test --reporter mocha-ctrf-json-reporter","test:coverage":"nyc yarn test","watch":"tsc -w"},"dependencies":{"@eclipse-glsp/server":"2.7.0","@hono/node-server":"^1.19.9","@modelcontextprotocol/sdk":"^1.29.0"},"peerDependencies":{"inversify":"^6.1.3"},"publishConfig":{"access":"public"}}');
125853
125865
 
125854
125866
  /***/ })
125855
125867