@brickset-api/types 0.0.17 → 0.0.18

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/CHANGELOG.md +6 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @brickset-api/types
2
2
 
3
+ ## 0.0.18
4
+
5
+ ### Patch Changes
6
+
7
+ - 9d3d46f: Standardize pnpm workspace scripts, improve TypeScript 6 compatibility, and harden fetch error handling.
8
+
3
9
  ## 0.0.17
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brickset-api/types",
3
- "version": "0.0.17",
3
+ "version": "0.0.18",
4
4
  "description": "TypeScript types for all datastructures used by the Brickset API",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -23,14 +23,14 @@
23
23
  "api",
24
24
  "typescript"
25
25
  ],
26
- "scripts": {
27
- "test": "tsc",
28
- "build": "tsc"
29
- },
30
26
  "devDependencies": {
31
- "typescript": "5.6.2"
27
+ "typescript": "6.0.3"
32
28
  },
33
29
  "publishConfig": {
34
30
  "access": "public"
31
+ },
32
+ "scripts": {
33
+ "test": "tsc",
34
+ "build": "tsc"
35
35
  }
36
36
  }