gopadjs 3.2.3 → 3.3.1

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/.github/RELEASE CHANGED
@@ -1 +1 @@
1
- Mon Dec 22 08:16:24 UTC 2025
1
+ Mon Jan 26 08:17:38 UTC 2026
@@ -20,7 +20,7 @@ jobs:
20
20
  steps:
21
21
  - name: Generate token
22
22
  id: token
23
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2
23
+ uses: actions/create-github-app-token@v2
24
24
  with:
25
25
  app-id: ${{ secrets.TOKEN_EXCHANGE_APP }}
26
26
  private-key: ${{ secrets.TOKEN_EXCHANGE_KEY }}
@@ -29,7 +29,7 @@ jobs:
29
29
  permission-issues: write
30
30
 
31
31
  - name: Fetch metadata
32
- uses: dependabot/fetch-metadata@08eff52bf64351f401fb50d4972fa95b9f2c2d1b # v2
32
+ uses: dependabot/fetch-metadata@v2
33
33
  with:
34
34
  github-token: ${{ secrets.GITHUB_TOKEN }}
35
35
 
@@ -17,19 +17,19 @@ jobs:
17
17
  steps:
18
18
  - name: Generate token
19
19
  id: token
20
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2
20
+ uses: actions/create-github-app-token@v2
21
21
  with:
22
22
  app-id: ${{ secrets.TOKEN_EXCHANGE_APP }}
23
23
  private-key: ${{ secrets.TOKEN_EXCHANGE_KEY }}
24
24
  permission-contents: write
25
25
 
26
26
  - name: Checkout source
27
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
27
+ uses: actions/checkout@v6
28
28
  with:
29
29
  token: ${{ steps.token.outputs.token }}
30
30
 
31
31
  - name: Install nix
32
- uses: cachix/install-nix-action@4e002c8ec80594ecd40e759629461e26c8abed15 # v31
32
+ uses: cachix/install-nix-action@v31
33
33
 
34
34
  - name: Update flake
35
35
  run: nix flake update
@@ -38,7 +38,7 @@ jobs:
38
38
  run: git pull --autostash --rebase
39
39
 
40
40
  - name: Commit changes
41
- uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9
41
+ uses: EndBug/add-and-commit@v9
42
42
  with:
43
43
  author_name: GitHub Actions
44
44
  author_email: github@webhippie.de
@@ -19,10 +19,10 @@ jobs:
19
19
 
20
20
  steps:
21
21
  - name: Checkout source
22
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
22
+ uses: actions/checkout@v6
23
23
 
24
24
  - name: Setup nodejs
25
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6
25
+ uses: actions/setup-node@v6
26
26
  with:
27
27
  node-version: 24.x
28
28
  cache: 'npm'
@@ -18,7 +18,7 @@ jobs:
18
18
  steps:
19
19
  - name: Generate token
20
20
  id: token
21
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2
21
+ uses: actions/create-github-app-token@v2
22
22
  with:
23
23
  app-id: ${{ secrets.TOKEN_EXCHANGE_APP }}
24
24
  private-key: ${{ secrets.TOKEN_EXCHANGE_KEY }}
@@ -26,10 +26,10 @@ jobs:
26
26
  permission-pull-requests: write
27
27
 
28
28
  - name: Checkout source
29
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
29
+ uses: actions/checkout@v6
30
30
 
31
31
  - name: Setup nodejs
32
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6
32
+ uses: actions/setup-node@v6
33
33
  with:
34
34
  node-version: 24.x
35
35
  cache: 'npm'
@@ -46,7 +46,7 @@ jobs:
46
46
 
47
47
  - name: Create request
48
48
  id: pr
49
- uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8
49
+ uses: peter-evans/create-pull-request@v8
50
50
  with:
51
51
  commit-message: "feat: automated openapi client update"
52
52
  delete-branch: true
@@ -18,9 +18,14 @@ jobs:
18
18
  runs-on: ubuntu-latest
19
19
 
20
20
  steps:
21
+ - name: Setup nodejs
22
+ uses: actions/setup-node@v6
23
+ with:
24
+ node-version: lts/*
25
+
21
26
  - name: Generate token
22
27
  id: token
23
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2
28
+ uses: actions/create-github-app-token@v2
24
29
  with:
25
30
  app-id: ${{ secrets.TOKEN_EXCHANGE_APP }}
26
31
  private-key: ${{ secrets.TOKEN_EXCHANGE_KEY }}
@@ -29,12 +34,12 @@ jobs:
29
34
  permission-issues: write
30
35
 
31
36
  - name: Checkout source
32
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
37
+ uses: actions/checkout@v6
33
38
  with:
34
39
  token: ${{ steps.token.outputs.token }}
35
40
 
36
41
  - name: Setup nodejs
37
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6
42
+ uses: actions/setup-node@v6
38
43
  with:
39
44
  node-version: lts/*
40
45
  cache: npm
@@ -45,13 +50,13 @@ jobs:
45
50
  - name: Install releaser
46
51
  run: |
47
52
  npm install -g \
48
- conventional-changelog-conventionalcommits \
49
53
  semantic-release@25.0.2 \
50
54
  @semantic-release/changelog \
51
55
  @semantic-release/git \
52
56
  @semantic-release/github \
53
57
  @semantic-release/npm \
54
- semantic-release-replace-plugin
58
+ semantic-release-replace-plugin \
59
+ conventional-changelog-conventionalcommits
55
60
 
56
61
  - name: Run releaser
57
62
  env:
@@ -62,7 +67,7 @@ jobs:
62
67
  run: git pull --rebase --autostash
63
68
 
64
69
  - name: Commit changes
65
- uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9
70
+ uses: EndBug/add-and-commit@v9
66
71
  with:
67
72
  author_name: GitHub Actions
68
73
  author_email: github@webhippie.de
package/.releaserc CHANGED
@@ -56,29 +56,14 @@
56
56
  "type": "major",
57
57
  "section": "Features"
58
58
  },
59
- {
60
- "type": "deps",
61
- "scope": "major",
62
- "section": "Features"
63
- },
64
59
  {
65
60
  "type": "minor",
66
61
  "section": "Features"
67
62
  },
68
- {
69
- "type": "deps",
70
- "scope": "minor",
71
- "section": "Features"
72
- },
73
63
  {
74
64
  "type": "patch",
75
65
  "section": "Bugfixes"
76
66
  },
77
- {
78
- "type": "deps",
79
- "scope": "patch",
80
- "section": "Bugfixes"
81
- },
82
67
  {
83
68
  "type": "feat",
84
69
  "section": "Features"
@@ -87,9 +72,14 @@
87
72
  "type": "fix",
88
73
  "section": "Bugfixes"
89
74
  },
75
+ {
76
+ "type": "deps",
77
+ "section": "Dependencies"
78
+ },
90
79
  {
91
80
  "type": "chore",
92
- "hidden": true
81
+ "section": "Miscellaneous",
82
+ "hidden": false
93
83
  },
94
84
  {
95
85
  "type": "docs",
@@ -188,8 +178,9 @@
188
178
  [
189
179
  "@semantic-release/github",
190
180
  {
191
- "publish": true,
192
- "assets": "dist/*.tgz"
181
+ "assets": [
182
+ "dist/*.tgz"
183
+ ]
193
184
  }
194
185
  ]
195
186
  ]
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.3.1](https://github.com/gopad/gopad-js/compare/v3.3.0...v3.3.1) (2026-01-26)
4
+
5
+ ### Dependencies
6
+
7
+ * **patch:** update dependency prettier to v3.8.1 ([#248](https://github.com/gopad/gopad-js/issues/248)) ([73e2c02](https://github.com/gopad/gopad-js/commit/73e2c023cf38348d1c2ce6c922b715fc0f5f9a12))
8
+
9
+ ### Miscellaneous
10
+
11
+ * **flake:** updated lockfile [skip ci] ([f68b528](https://github.com/gopad/gopad-js/commit/f68b52820cbd25eb225403928ea9091b075650c5))
12
+
13
+ ## [3.3.0](https://github.com/gopad/gopad-js/compare/v3.2.3...v3.3.0) (2026-01-19)
14
+
15
+ ### Dependencies
16
+
17
+ * **minor:** update dependency prettier to v3.8.0 ([#246](https://github.com/gopad/gopad-js/issues/246)) ([bf4b69e](https://github.com/gopad/gopad-js/commit/bf4b69e530a5a2651e6d6d3bf4b17f9d0d1cdfd2))
18
+ * **patch:** update dependency @types/node to v24.10.5 ([#241](https://github.com/gopad/gopad-js/issues/241)) ([b6c005b](https://github.com/gopad/gopad-js/commit/b6c005b495137933dc06c16db072325a7ad20d38))
19
+ * **patch:** update dependency @types/node to v24.10.6 ([#242](https://github.com/gopad/gopad-js/issues/242)) ([793256e](https://github.com/gopad/gopad-js/commit/793256e955d9c569f70a45d56546bf5d0f62afea))
20
+ * **patch:** update dependency @types/node to v24.10.7 ([#243](https://github.com/gopad/gopad-js/issues/243)) ([befefc9](https://github.com/gopad/gopad-js/commit/befefc9cd9fd513907cba35908da2da2e2c4b9c7))
21
+ * **patch:** update dependency @types/node to v24.10.8 ([#245](https://github.com/gopad/gopad-js/issues/245)) ([1d238fb](https://github.com/gopad/gopad-js/commit/1d238fb57a82d65e1d0cb940c324beedf6b38caa))
22
+ * **patch:** update dependency @types/node to v24.10.9 ([#247](https://github.com/gopad/gopad-js/issues/247)) ([729db79](https://github.com/gopad/gopad-js/commit/729db79b2150768cf0429777d87ca43bd4240370))
23
+
24
+ ### Miscellaneous
25
+
26
+ * **flake:** updated lockfile [skip ci] ([87f0d4f](https://github.com/gopad/gopad-js/commit/87f0d4f26daed0676d1557f45bd1f25d1146ddc0))
27
+ * **flake:** updated lockfile [skip ci] ([ecde8a4](https://github.com/gopad/gopad-js/commit/ecde8a4387bdc8891b03ba62f708b7105c2bc840))
28
+ * **flake:** updated lockfile [skip ci] ([62554ac](https://github.com/gopad/gopad-js/commit/62554acc7e9def3a23ab97eec57abc812fb45e39))
29
+ * **flake:** updated lockfile [skip ci] ([b3ee9dc](https://github.com/gopad/gopad-js/commit/b3ee9dc1496fa2b8299ec5c372e7e3e37285a108))
30
+
3
31
  ## [3.2.3](https://github.com/gopad/gopad-js/compare/v3.2.2...v3.2.3) (2025-12-22)
4
32
 
5
33
  ### Bugfixes
package/README.md CHANGED
@@ -6,7 +6,7 @@ This repository provides a client SDK for Typescript/Javascript. This SDK is
6
6
  automatically generated by the [OpenAPI Generator][generator] project:
7
7
 
8
8
  - API version: 1.0.0-alpha1
9
- - Package version: 3.2.3
9
+ - Package version: 3.3.1
10
10
  - Build package: org.openapitools.codegen.languages.TypeScriptAxiosClientCodegen
11
11
 
12
12
  For more information, please visit [https://gopad.eu](https://gopad.eu)
@@ -39,7 +39,7 @@ the following command within your project directory, after that you can import
39
39
  it as other libraries:
40
40
 
41
41
  ```console
42
- npm install --save gopadjs@3.2.3
42
+ npm install --save gopadjs@3.3.1
43
43
  ```
44
44
 
45
45
  ### Installation with Git
package/flake.lock CHANGED
@@ -40,14 +40,15 @@
40
40
  "flake-parts": "flake-parts",
41
41
  "git-hooks": "git-hooks",
42
42
  "nix": "nix",
43
+ "nixd": "nixd",
43
44
  "nixpkgs": "nixpkgs"
44
45
  },
45
46
  "locked": {
46
- "lastModified": 1765786388,
47
- "narHash": "sha256-K+icQicTo/a3sgQwFUWv5DZf8V8hQRw50dIJCI6KEt4=",
47
+ "lastModified": 1768738650,
48
+ "narHash": "sha256-oe9/b2DkYNlGg1GdX7n8U87y49CvXHED7nMGEE3WzjI=",
48
49
  "owner": "cachix",
49
50
  "repo": "devenv",
50
- "rev": "588b4a334cf93acee2417cd07ea24086c3128db6",
51
+ "rev": "43328b8bc4096055622390ee4fc21b5977aab2e3",
51
52
  "type": "github"
52
53
  },
53
54
  "original": {
@@ -75,15 +76,15 @@
75
76
  "flake-compat_2": {
76
77
  "flake": false,
77
78
  "locked": {
78
- "lastModified": 1761588595,
79
- "narHash": "sha256-XKUZz9zewJNUj46b4AJdiRZJAvSZ0Dqj2BNfXvFlJC4=",
80
- "owner": "edolstra",
79
+ "lastModified": 1767039857,
80
+ "narHash": "sha256-vNpUSpF5Nuw8xvDLj2KCwwksIbjua2LZCqhV1LNRDns=",
81
+ "owner": "NixOS",
81
82
  "repo": "flake-compat",
82
- "rev": "f387cd2afec9419c8ee37694406ca490c3f34ee5",
83
+ "rev": "5edf11c44bc78a0d334f6334cdaf7d60d732daab",
83
84
  "type": "github"
84
85
  },
85
86
  "original": {
86
- "owner": "edolstra",
87
+ "owner": "NixOS",
87
88
  "repo": "flake-compat",
88
89
  "type": "github"
89
90
  }
@@ -114,11 +115,11 @@
114
115
  "nixpkgs-lib": "nixpkgs-lib"
115
116
  },
116
117
  "locked": {
117
- "lastModified": 1765495779,
118
- "narHash": "sha256-MhA7wmo/7uogLxiewwRRmIax70g6q1U/YemqTGoFHlM=",
118
+ "lastModified": 1768135262,
119
+ "narHash": "sha256-PVvu7OqHBGWN16zSi6tEmPwwHQ4rLPU9Plvs8/1TUBY=",
119
120
  "owner": "hercules-ci",
120
121
  "repo": "flake-parts",
121
- "rev": "5635c32d666a59ec9a55cab87e898889869f7b71",
122
+ "rev": "80daad04eddbbf5a4d883996a73f3f542fa437ac",
122
123
  "type": "github"
123
124
  },
124
125
  "original": {
@@ -127,6 +128,21 @@
127
128
  "type": "github"
128
129
  }
129
130
  },
131
+ "flake-root": {
132
+ "locked": {
133
+ "lastModified": 1723604017,
134
+ "narHash": "sha256-rBtQ8gg+Dn4Sx/s+pvjdq3CB2wQNzx9XGFq/JVGCB6k=",
135
+ "owner": "srid",
136
+ "repo": "flake-root",
137
+ "rev": "b759a56851e10cb13f6b8e5698af7b59c44be26e",
138
+ "type": "github"
139
+ },
140
+ "original": {
141
+ "owner": "srid",
142
+ "repo": "flake-root",
143
+ "type": "github"
144
+ }
145
+ },
130
146
  "git-hooks": {
131
147
  "inputs": {
132
148
  "flake-compat": [
@@ -160,11 +176,11 @@
160
176
  "nixpkgs": "nixpkgs_2"
161
177
  },
162
178
  "locked": {
163
- "lastModified": 1765464257,
164
- "narHash": "sha256-dixPWKiHzh80PtD0aLuxYNQ0xP+843dfXG/yM3OzaYQ=",
179
+ "lastModified": 1767281941,
180
+ "narHash": "sha256-6MkqajPICgugsuZ92OMoQcgSHnD6sJHwk8AxvMcIgTE=",
165
181
  "owner": "cachix",
166
182
  "repo": "git-hooks.nix",
167
- "rev": "09e45f2598e1a8499c3594fe11ec2943f34fe509",
183
+ "rev": "f0927703b7b1c8d97511c4116eb9b4ec6645a0fa",
168
184
  "type": "github"
169
185
  },
170
186
  "original": {
@@ -242,20 +258,47 @@
242
258
  ]
243
259
  },
244
260
  "locked": {
245
- "lastModified": 1761648602,
246
- "narHash": "sha256-H97KSB/luq/aGobKRuHahOvT1r7C03BgB6D5HBZsbN8=",
261
+ "lastModified": 1768491252,
262
+ "narHash": "sha256-ZlIPlKCYXwQJsw9WYVeyCapF5Y8JZL2Hctf22+IbHqo=",
247
263
  "owner": "cachix",
248
264
  "repo": "nix",
249
- "rev": "3e5644da6830ef65f0a2f7ec22830c46285bfff6",
265
+ "rev": "9f0da1cd90b271569752a4c83f3ff700b8fcbe12",
250
266
  "type": "github"
251
267
  },
252
268
  "original": {
253
269
  "owner": "cachix",
254
- "ref": "devenv-2.30.6",
270
+ "ref": "devenv-2.32",
255
271
  "repo": "nix",
256
272
  "type": "github"
257
273
  }
258
274
  },
275
+ "nixd": {
276
+ "inputs": {
277
+ "flake-parts": [
278
+ "devenv",
279
+ "flake-parts"
280
+ ],
281
+ "flake-root": "flake-root",
282
+ "nixpkgs": [
283
+ "devenv",
284
+ "nixpkgs"
285
+ ],
286
+ "treefmt-nix": "treefmt-nix"
287
+ },
288
+ "locked": {
289
+ "lastModified": 1763964548,
290
+ "narHash": "sha256-JTRoaEWvPsVIMFJWeS4G2isPo15wqXY/otsiHPN0zww=",
291
+ "owner": "nix-community",
292
+ "repo": "nixd",
293
+ "rev": "d4bf15e56540422e2acc7bc26b20b0a0934e3f5e",
294
+ "type": "github"
295
+ },
296
+ "original": {
297
+ "owner": "nix-community",
298
+ "repo": "nixd",
299
+ "type": "github"
300
+ }
301
+ },
259
302
  "nixpkgs": {
260
303
  "locked": {
261
304
  "lastModified": 1761313199,
@@ -274,11 +317,11 @@
274
317
  },
275
318
  "nixpkgs-lib": {
276
319
  "locked": {
277
- "lastModified": 1761765539,
278
- "narHash": "sha256-b0yj6kfvO8ApcSE+QmA6mUfu8IYG6/uU28OFn4PaC8M=",
320
+ "lastModified": 1765674936,
321
+ "narHash": "sha256-k00uTP4JNfmejrCLJOwdObYC9jHRrr/5M/a/8L2EIdo=",
279
322
  "owner": "nix-community",
280
323
  "repo": "nixpkgs.lib",
281
- "rev": "719359f4562934ae99f5443f20aa06c2ffff91fc",
324
+ "rev": "2075416fcb47225d9b68ac469a5c4801a9c4dd85",
282
325
  "type": "github"
283
326
  },
284
327
  "original": {
@@ -305,11 +348,11 @@
305
348
  },
306
349
  "nixpkgs_3": {
307
350
  "locked": {
308
- "lastModified": 1765472234,
309
- "narHash": "sha256-9VvC20PJPsleGMewwcWYKGzDIyjckEz8uWmT0vCDYK0=",
351
+ "lastModified": 1768564909,
352
+ "narHash": "sha256-Kell/SpJYVkHWMvnhqJz/8DqQg2b6PguxVWOuadbHCc=",
310
353
  "owner": "NixOS",
311
354
  "repo": "nixpkgs",
312
- "rev": "2fbfb1d73d239d2402a8fe03963e37aab15abe8b",
355
+ "rev": "e4bae1bd10c9c57b2cf517953ab70060a828ee6f",
313
356
  "type": "github"
314
357
  },
315
358
  "original": {
@@ -326,6 +369,28 @@
326
369
  "git-hooks": "git-hooks_2",
327
370
  "nixpkgs": "nixpkgs_3"
328
371
  }
372
+ },
373
+ "treefmt-nix": {
374
+ "inputs": {
375
+ "nixpkgs": [
376
+ "devenv",
377
+ "nixd",
378
+ "nixpkgs"
379
+ ]
380
+ },
381
+ "locked": {
382
+ "lastModified": 1734704479,
383
+ "narHash": "sha256-MMi74+WckoyEWBRcg/oaGRvXC9BVVxDZNRMpL+72wBI=",
384
+ "owner": "numtide",
385
+ "repo": "treefmt-nix",
386
+ "rev": "65712f5af67234dad91a5a4baee986a8b62dbf8f",
387
+ "type": "github"
388
+ },
389
+ "original": {
390
+ "owner": "numtide",
391
+ "repo": "treefmt-nix",
392
+ "type": "github"
393
+ }
329
394
  }
330
395
  },
331
396
  "root": "root",
package/openapi.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  npmName: gopadjs
3
- npmVersion: 3.2.3
3
+ npmVersion: 3.3.1
4
4
  supportsES6: true
5
5
  useSingleRequestParameter: true
6
6
  withNodeImports: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gopadjs",
3
- "version": "3.2.3",
3
+ "version": "3.3.1",
4
4
  "description": "OpenAPI client for Gopad",
5
5
  "homepage": "https://github.com/gopad/gopad-js#readme",
6
6
  "license": "Apache-2.0",
@@ -34,8 +34,8 @@
34
34
  "axios": "^1.6.1"
35
35
  },
36
36
  "devDependencies": {
37
- "@types/node": "24.10.4",
38
- "prettier": "3.7.4",
37
+ "@types/node": "24.10.9",
38
+ "prettier": "3.8.1",
39
39
  "typescript": "5.9.3"
40
40
  },
41
41
  "publishConfig": {