@likec4/leanix-bridge 1.56.0 → 1.57.0

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.
Files changed (2) hide show
  1. package/dist/index.mjs +2 -0
  2. package/package.json +5 -5
package/dist/index.mjs CHANGED
@@ -271,6 +271,8 @@ const DEFAULT_BASE_URL = "https://app.leanix.net";
271
271
  const DEFAULT_DELAY_MS = 200;
272
272
  /** Thrown when the LeanIX API returns errors or non-OK HTTP. */
273
273
  var LeanixApiError = class extends Error {
274
+ statusCode;
275
+ graphqlErrors;
274
276
  constructor(message, statusCode, graphqlErrors) {
275
277
  super(message);
276
278
  this.statusCode = statusCode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@likec4/leanix-bridge",
3
- "version": "1.56.0",
3
+ "version": "1.57.0",
4
4
  "license": "MIT",
5
5
  "bugs": "https://github.com/likec4/likec4/issues",
6
6
  "homepage": "https://likec4.dev",
@@ -38,15 +38,15 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "remeda": "^2.33.7",
41
- "@likec4/core": "1.56.0"
41
+ "@likec4/core": "1.57.0"
42
42
  },
43
43
  "devDependencies": {
44
- "@types/node": "~22.19.17",
44
+ "@types/node": "~22.19.19",
45
45
  "typescript": "5.9.3",
46
46
  "obuild": "0.4.31",
47
47
  "vitest": "4.1.3",
48
- "@likec4/tsconfig": "1.56.0",
49
- "@likec4/devops": "1.42.0"
48
+ "@likec4/tsconfig": "1.57.0",
49
+ "@likec4/devops": "1.57.0"
50
50
  },
51
51
  "scripts": {
52
52
  "typecheck": "tsc -b --verbose",