@pod-os/core 0.20.1-rc.4c5bdf8.0 → 0.20.1-rc.85d0b38.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pod-os/core",
3
- "version": "0.20.1-rc.4c5bdf8.0",
3
+ "version": "0.20.1-rc.85d0b38.0",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./types/index.d.ts",
6
6
  "files": [
@@ -29,22 +29,22 @@
29
29
  "devDependencies": {
30
30
  "@babel/preset-env": "^7.28.5",
31
31
  "@babel/preset-typescript": "^7.28.5",
32
- "@eslint/js": "^9.38.0",
32
+ "@eslint/js": "^9.39.1",
33
33
  "@types/jest": "^30.0.0",
34
34
  "@types/jest-when": "^3.5.5",
35
35
  "@types/sparqljs": "^3.1.12",
36
- "esbuild": "^0.25.11",
37
- "eslint": "^9.38.0",
36
+ "esbuild": "^0.25.12",
37
+ "eslint": "^9.39.1",
38
38
  "jest": "^30.2.0",
39
39
  "jest-when": "^3.7.0",
40
40
  "npm-run-all": "^4.1.5",
41
41
  "prettier": "^3.6.2",
42
- "rimraf": "^6.0.1",
42
+ "rimraf": "^6.1.0",
43
43
  "sparqljs": "^3.7.3",
44
44
  "typedoc": "^0.28.14",
45
45
  "typedoc-plugin-markdown": "^4.9.0",
46
46
  "typescript": "5.9.3",
47
- "typescript-eslint": "^8.46.2"
47
+ "typescript-eslint": "^8.46.3"
48
48
  },
49
49
  "dependencies": {
50
50
  "@solid-data-modules/contacts-rdflib": "^0.7.1",
@@ -5,7 +5,6 @@
5
5
  export interface Problem {
6
6
  type: string;
7
7
  title: string;
8
- status?: number;
9
8
  detail?: string;
10
9
  }
11
10
  export interface NetworkProblem extends Problem {
@@ -13,6 +12,7 @@ export interface NetworkProblem extends Problem {
13
12
  }
14
13
  export interface HttpProblem extends Problem {
15
14
  type: "http";
15
+ status: number;
16
16
  }
17
17
  export declare function httpProblem(title: string, response: Response): HttpProblem;
18
18
  export declare function networkProblem(title: string, cause: Error): NetworkProblem;