@brickninjaapi/fetch 0.0.19 → 0.0.24

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 +36 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # @brickninjaapi/fetch
2
2
 
3
+ ## 0.0.24
4
+
5
+ ### Patch Changes
6
+
7
+ - 515105d: fix(types): remove some languages
8
+
9
+ ## 0.0.23
10
+
11
+ ### Patch Changes
12
+
13
+ - 06e285a: fix(gha): update publish config
14
+
15
+ ## 0.0.22
16
+
17
+ ### Patch Changes
18
+
19
+ - f6c3e57: Bump versions
20
+
21
+ ## 0.0.21
22
+
23
+ ### Patch Changes
24
+
25
+ - Bump versions
26
+
27
+ ## 0.0.20
28
+
29
+ ### Patch Changes
30
+
31
+ - Migrate to pnpm
32
+
33
+ ## 0.0.20
34
+
35
+ ### Patch Changes
36
+
37
+ - Update versions
38
+
3
39
  ## 0.0.19
4
40
 
5
41
  ### Patch Changes
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@brickninjaapi/fetch",
3
- "version": "0.0.19",
3
+ "version": "0.0.24",
4
4
  "description": "Tiny wrapper around fetch that returns type-safe responses",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/brickninja-org/brickninjaapi-ts.git",
10
+ "url": "git+https://github.com/brickninja-org/brickninja-api-ts.git",
11
11
  "directory": "packages/fetch"
12
12
  },
13
13
  "keywords": [
@@ -16,17 +16,17 @@
16
16
  "brickninja",
17
17
  "api"
18
18
  ],
19
- "scripts": {
20
- "test": "tsc --noEmit",
21
- "build": "tsc"
22
- },
23
19
  "devDependencies": {
24
- "typescript": "5.8.3"
20
+ "typescript": "5.9.3"
25
21
  },
26
22
  "peerDependencies": {
27
- "@brickninjaapi/types": "~0.0.25"
23
+ "@brickninjaapi/types": "~0.0.26"
28
24
  },
29
25
  "publishConfig": {
30
26
  "access": "public"
27
+ },
28
+ "scripts": {
29
+ "test": "tsc --noEmit",
30
+ "build": "tsc"
31
31
  }
32
32
  }