@likec4/leanix-bridge 1.56.0 → 1.58.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.
- package/dist/index.mjs +2 -0
- package/package.json +8 -8
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.
|
|
3
|
+
"version": "1.58.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"bugs": "https://github.com/likec4/likec4/issues",
|
|
6
6
|
"homepage": "https://likec4.dev",
|
|
@@ -37,16 +37,16 @@
|
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"remeda": "^2.
|
|
41
|
-
"@likec4/core": "1.
|
|
40
|
+
"remeda": "^2.37.0",
|
|
41
|
+
"@likec4/core": "1.58.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@types/node": "~22.19.
|
|
45
|
-
"typescript": "
|
|
44
|
+
"@types/node": "~22.19.19",
|
|
45
|
+
"typescript": "6.0.3",
|
|
46
46
|
"obuild": "0.4.31",
|
|
47
|
-
"vitest": "4.1.
|
|
48
|
-
"@likec4/
|
|
49
|
-
"@likec4/
|
|
47
|
+
"vitest": "4.1.8",
|
|
48
|
+
"@likec4/devops": "1.58.0",
|
|
49
|
+
"@likec4/tsconfig": "1.58.0"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"typecheck": "tsc -b --verbose",
|