gopadjs 3.3.0 → 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 +1 -1
- package/.github/workflows/automerge.yml +2 -2
- package/.github/workflows/flake.yml +4 -4
- package/.github/workflows/general.yml +2 -2
- package/.github/workflows/openapi.yml +4 -4
- package/.github/workflows/release.yml +5 -5
- package/CHANGELOG.md +10 -0
- package/README.md +2 -2
- package/flake.lock +9 -9
- package/openapi.yml +1 -1
- package/package.json +2 -2
package/.github/RELEASE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Mon Jan
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
22
|
+
uses: actions/checkout@v6
|
|
23
23
|
|
|
24
24
|
- name: Setup nodejs
|
|
25
|
-
uses: actions/setup-node@
|
|
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@
|
|
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@
|
|
29
|
+
uses: actions/checkout@v6
|
|
30
30
|
|
|
31
31
|
- name: Setup nodejs
|
|
32
|
-
uses: actions/setup-node@
|
|
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@
|
|
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
|
|
@@ -19,13 +19,13 @@ jobs:
|
|
|
19
19
|
|
|
20
20
|
steps:
|
|
21
21
|
- name: Setup nodejs
|
|
22
|
-
uses: actions/setup-node@
|
|
22
|
+
uses: actions/setup-node@v6
|
|
23
23
|
with:
|
|
24
24
|
node-version: lts/*
|
|
25
25
|
|
|
26
26
|
- name: Generate token
|
|
27
27
|
id: token
|
|
28
|
-
uses: actions/create-github-app-token@
|
|
28
|
+
uses: actions/create-github-app-token@v2
|
|
29
29
|
with:
|
|
30
30
|
app-id: ${{ secrets.TOKEN_EXCHANGE_APP }}
|
|
31
31
|
private-key: ${{ secrets.TOKEN_EXCHANGE_KEY }}
|
|
@@ -34,12 +34,12 @@ jobs:
|
|
|
34
34
|
permission-issues: write
|
|
35
35
|
|
|
36
36
|
- name: Checkout source
|
|
37
|
-
uses: actions/checkout@
|
|
37
|
+
uses: actions/checkout@v6
|
|
38
38
|
with:
|
|
39
39
|
token: ${{ steps.token.outputs.token }}
|
|
40
40
|
|
|
41
41
|
- name: Setup nodejs
|
|
42
|
-
uses: actions/setup-node@
|
|
42
|
+
uses: actions/setup-node@v6
|
|
43
43
|
with:
|
|
44
44
|
node-version: lts/*
|
|
45
45
|
cache: npm
|
|
@@ -67,7 +67,7 @@ jobs:
|
|
|
67
67
|
run: git pull --rebase --autostash
|
|
68
68
|
|
|
69
69
|
- name: Commit changes
|
|
70
|
-
uses: EndBug/add-and-commit@
|
|
70
|
+
uses: EndBug/add-and-commit@v9
|
|
71
71
|
with:
|
|
72
72
|
author_name: GitHub Actions
|
|
73
73
|
author_email: github@webhippie.de
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
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
|
+
|
|
3
13
|
## [3.3.0](https://github.com/gopad/gopad-js/compare/v3.2.3...v3.3.0) (2026-01-19)
|
|
4
14
|
|
|
5
15
|
### Dependencies
|
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.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.3.
|
|
42
|
+
npm install --save gopadjs@3.3.1
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
### Installation with Git
|
package/flake.lock
CHANGED
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"nixpkgs": "nixpkgs"
|
|
45
45
|
},
|
|
46
46
|
"locked": {
|
|
47
|
-
"lastModified":
|
|
48
|
-
"narHash": "sha256-
|
|
47
|
+
"lastModified": 1768738650,
|
|
48
|
+
"narHash": "sha256-oe9/b2DkYNlGg1GdX7n8U87y49CvXHED7nMGEE3WzjI=",
|
|
49
49
|
"owner": "cachix",
|
|
50
50
|
"repo": "devenv",
|
|
51
|
-
"rev": "
|
|
51
|
+
"rev": "43328b8bc4096055622390ee4fc21b5977aab2e3",
|
|
52
52
|
"type": "github"
|
|
53
53
|
},
|
|
54
54
|
"original": {
|
|
@@ -258,11 +258,11 @@
|
|
|
258
258
|
]
|
|
259
259
|
},
|
|
260
260
|
"locked": {
|
|
261
|
-
"lastModified":
|
|
262
|
-
"narHash": "sha256-
|
|
261
|
+
"lastModified": 1768491252,
|
|
262
|
+
"narHash": "sha256-ZlIPlKCYXwQJsw9WYVeyCapF5Y8JZL2Hctf22+IbHqo=",
|
|
263
263
|
"owner": "cachix",
|
|
264
264
|
"repo": "nix",
|
|
265
|
-
"rev": "
|
|
265
|
+
"rev": "9f0da1cd90b271569752a4c83f3ff700b8fcbe12",
|
|
266
266
|
"type": "github"
|
|
267
267
|
},
|
|
268
268
|
"original": {
|
|
@@ -348,11 +348,11 @@
|
|
|
348
348
|
},
|
|
349
349
|
"nixpkgs_3": {
|
|
350
350
|
"locked": {
|
|
351
|
-
"lastModified":
|
|
352
|
-
"narHash": "sha256-
|
|
351
|
+
"lastModified": 1768564909,
|
|
352
|
+
"narHash": "sha256-Kell/SpJYVkHWMvnhqJz/8DqQg2b6PguxVWOuadbHCc=",
|
|
353
353
|
"owner": "NixOS",
|
|
354
354
|
"repo": "nixpkgs",
|
|
355
|
-
"rev": "
|
|
355
|
+
"rev": "e4bae1bd10c9c57b2cf517953ab70060a828ee6f",
|
|
356
356
|
"type": "github"
|
|
357
357
|
},
|
|
358
358
|
"original": {
|
package/openapi.yml
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gopadjs",
|
|
3
|
-
"version": "3.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",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "24.10.9",
|
|
38
|
-
"prettier": "3.8.
|
|
38
|
+
"prettier": "3.8.1",
|
|
39
39
|
"typescript": "5.9.3"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|