kleisterjs 3.2.0 → 3.3.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/.github/RELEASE +1 -1
- package/.github/settings.yml +4 -6
- package/.github/workflows/automerge.yml +6 -8
- package/.github/workflows/flake.yml +5 -8
- package/.github/workflows/general.yml +2 -2
- package/.github/workflows/openapi.yml +10 -12
- package/.github/workflows/release.yml +9 -10
- package/CHANGELOG.md +12 -0
- package/README.md +2 -2
- package/api/mod-api.ts +8 -6
- package/flake.lock +9 -9
- package/openapi.yml +1 -1
- package/package.json +2 -2
- package/.github/issue_template.md +0 -9
- package/.github/pull_request_template.md +0 -8
package/.github/RELEASE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Mon Dec
|
|
1
|
+
Mon Dec 8 08:24:52 UTC 2025
|
package/.github/settings.yml
CHANGED
|
@@ -49,18 +49,16 @@ rulesets:
|
|
|
49
49
|
parameters:
|
|
50
50
|
strict_required_status_checks_policy: true
|
|
51
51
|
required_status_checks:
|
|
52
|
-
- context: Semantic PR
|
|
53
|
-
integration_id: 198092
|
|
54
52
|
- context: testing
|
|
55
53
|
integration_id: 15368
|
|
56
54
|
bypass_actors:
|
|
57
55
|
- actor_id: 1
|
|
58
56
|
actor_type: OrganizationAdmin
|
|
59
57
|
bypass_mode: always
|
|
60
|
-
- actor_id: 854278
|
|
58
|
+
- actor_id: 854278 # app
|
|
61
59
|
actor_type: Integration
|
|
62
60
|
bypass_mode: always
|
|
63
|
-
- actor_id: 2825376
|
|
61
|
+
- actor_id: 2825376 # bots
|
|
64
62
|
actor_type: Team
|
|
65
63
|
bypass_mode: always
|
|
66
64
|
|
|
@@ -87,10 +85,10 @@ rulesets:
|
|
|
87
85
|
- actor_id: 1
|
|
88
86
|
actor_type: OrganizationAdmin
|
|
89
87
|
bypass_mode: always
|
|
90
|
-
- actor_id: 854278
|
|
88
|
+
- actor_id: 854278 # app
|
|
91
89
|
actor_type: Integration
|
|
92
90
|
bypass_mode: always
|
|
93
|
-
- actor_id: 2825376
|
|
91
|
+
- actor_id: 2825376 # bots
|
|
94
92
|
actor_type: Team
|
|
95
93
|
bypass_mode: always
|
|
96
94
|
|
|
@@ -11,7 +11,6 @@ name: automerge
|
|
|
11
11
|
permissions:
|
|
12
12
|
contents: write
|
|
13
13
|
pull-requests: write
|
|
14
|
-
issues: write
|
|
15
14
|
|
|
16
15
|
jobs:
|
|
17
16
|
dependabot:
|
|
@@ -21,14 +20,13 @@ jobs:
|
|
|
21
20
|
steps:
|
|
22
21
|
- name: Generate token
|
|
23
22
|
id: token
|
|
24
|
-
uses:
|
|
23
|
+
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2
|
|
25
24
|
with:
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
{"contents": "write", "pull_requests": "write", "issues": "write"}
|
|
25
|
+
app-id: ${{ secrets.TOKEN_EXCHANGE_APP }}
|
|
26
|
+
private-key: ${{ secrets.TOKEN_EXCHANGE_KEY }}
|
|
27
|
+
permission-contents: write
|
|
28
|
+
permission-pull-requests: write
|
|
29
|
+
permission-issues: write
|
|
32
30
|
|
|
33
31
|
- name: Fetch metadata
|
|
34
32
|
uses: dependabot/fetch-metadata@08eff52bf64351f401fb50d4972fa95b9f2c2d1b # v2
|
|
@@ -17,17 +17,14 @@ jobs:
|
|
|
17
17
|
steps:
|
|
18
18
|
- name: Generate token
|
|
19
19
|
id: token
|
|
20
|
-
uses:
|
|
20
|
+
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2
|
|
21
21
|
with:
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
private_key: ${{ secrets.TOKEN_EXCHANGE_KEY }}
|
|
26
|
-
permissions: >-
|
|
27
|
-
{"contents": "write"}
|
|
22
|
+
app-id: ${{ secrets.TOKEN_EXCHANGE_APP }}
|
|
23
|
+
private-key: ${{ secrets.TOKEN_EXCHANGE_KEY }}
|
|
24
|
+
permission-contents: write
|
|
28
25
|
|
|
29
26
|
- name: Checkout source
|
|
30
|
-
uses: actions/checkout@
|
|
27
|
+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
|
|
31
28
|
with:
|
|
32
29
|
token: ${{ steps.token.outputs.token }}
|
|
33
30
|
|
|
@@ -19,10 +19,10 @@ jobs:
|
|
|
19
19
|
|
|
20
20
|
steps:
|
|
21
21
|
- name: Checkout source
|
|
22
|
-
uses: actions/checkout@
|
|
22
|
+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
|
|
23
23
|
|
|
24
24
|
- name: Setup nodejs
|
|
25
|
-
uses: actions/setup-node@
|
|
25
|
+
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6
|
|
26
26
|
with:
|
|
27
27
|
node-version: 24.x
|
|
28
28
|
cache: 'npm'
|
|
@@ -18,20 +18,18 @@ jobs:
|
|
|
18
18
|
steps:
|
|
19
19
|
- name: Generate token
|
|
20
20
|
id: token
|
|
21
|
-
uses:
|
|
21
|
+
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2
|
|
22
22
|
with:
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
permissions: >-
|
|
28
|
-
{"contents": "write", "pull_requests": "write"}
|
|
23
|
+
app-id: ${{ secrets.TOKEN_EXCHANGE_APP }}
|
|
24
|
+
private-key: ${{ secrets.TOKEN_EXCHANGE_KEY }}
|
|
25
|
+
permission-contents: write
|
|
26
|
+
permission-pull-requests: write
|
|
29
27
|
|
|
30
28
|
- name: Checkout source
|
|
31
|
-
uses: actions/checkout@
|
|
29
|
+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
|
|
32
30
|
|
|
33
31
|
- name: Setup nodejs
|
|
34
|
-
uses: actions/setup-node@
|
|
32
|
+
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6
|
|
35
33
|
with:
|
|
36
34
|
node-version: 24.x
|
|
37
35
|
cache: 'npm'
|
|
@@ -48,7 +46,7 @@ jobs:
|
|
|
48
46
|
|
|
49
47
|
- name: Create request
|
|
50
48
|
id: pr
|
|
51
|
-
uses: peter-evans/create-pull-request@
|
|
49
|
+
uses: peter-evans/create-pull-request@22a9089034f40e5a961c8808d113e2c98fb63676 # v7
|
|
52
50
|
with:
|
|
53
51
|
commit-message: "feat: automated openapi client update"
|
|
54
52
|
delete-branch: true
|
|
@@ -67,8 +65,8 @@ jobs:
|
|
|
67
65
|
|
|
68
66
|
- name: Enable automerge
|
|
69
67
|
if: ${{ steps.pr.outputs.pull-request-url }}
|
|
70
|
-
run: gh pr merge --rebase --auto "${{ steps.pr.outputs.pull-request-
|
|
68
|
+
run: gh pr merge --rebase --auto "${{ steps.pr.outputs.pull-request-number }}"
|
|
71
69
|
env:
|
|
72
|
-
GH_TOKEN: ${{
|
|
70
|
+
GH_TOKEN: ${{ steps.token.outputs.token }}
|
|
73
71
|
|
|
74
72
|
...
|
|
@@ -20,22 +20,21 @@ jobs:
|
|
|
20
20
|
steps:
|
|
21
21
|
- name: Generate token
|
|
22
22
|
id: token
|
|
23
|
-
uses:
|
|
23
|
+
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2
|
|
24
24
|
with:
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
{"contents": "write"}
|
|
25
|
+
app-id: ${{ secrets.TOKEN_EXCHANGE_APP }}
|
|
26
|
+
private-key: ${{ secrets.TOKEN_EXCHANGE_KEY }}
|
|
27
|
+
permission-contents: write
|
|
28
|
+
permission-pull-requests: write
|
|
29
|
+
permission-issues: write
|
|
31
30
|
|
|
32
31
|
- name: Checkout source
|
|
33
|
-
uses: actions/checkout@
|
|
32
|
+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
|
|
34
33
|
with:
|
|
35
34
|
token: ${{ steps.token.outputs.token }}
|
|
36
35
|
|
|
37
36
|
- name: Setup nodejs
|
|
38
|
-
uses: actions/setup-node@
|
|
37
|
+
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6
|
|
39
38
|
with:
|
|
40
39
|
node-version: lts/*
|
|
41
40
|
cache: npm
|
|
@@ -56,7 +55,7 @@ jobs:
|
|
|
56
55
|
|
|
57
56
|
- name: Run releaser
|
|
58
57
|
env:
|
|
59
|
-
GITHUB_TOKEN: ${{
|
|
58
|
+
GITHUB_TOKEN: ${{ steps.token.outputs.token }}
|
|
60
59
|
run: semantic-release
|
|
61
60
|
|
|
62
61
|
- name: Update repo
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.3.0](https://github.com/kleister/kleister-js/compare/v3.2.0...v3.3.0) (2025-12-08)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* automated openapi client update ([f8949e6](https://github.com/kleister/kleister-js/commit/f8949e675038d0004c0eae7c6b964fa53ba6f0e0))
|
|
8
|
+
|
|
9
|
+
### Bugfixes
|
|
10
|
+
|
|
11
|
+
* **patch:** update dependency prettier to v3.7.2 ([#219](https://github.com/kleister/kleister-js/issues/219)) ([876b12f](https://github.com/kleister/kleister-js/commit/876b12f3e16ec218bdc3b55329bda35443f9795a))
|
|
12
|
+
* **patch:** update dependency prettier to v3.7.3 ([#221](https://github.com/kleister/kleister-js/issues/221)) ([c458127](https://github.com/kleister/kleister-js/commit/c4581275e00b3bfb95f18f5cc315b0a4665ca82f))
|
|
13
|
+
* **patch:** update dependency prettier to v3.7.4 ([#226](https://github.com/kleister/kleister-js/issues/226)) ([1854522](https://github.com/kleister/kleister-js/commit/18545224c8c488114bf1d60afc5a17bf4bfd42f8))
|
|
14
|
+
|
|
3
15
|
## [3.2.0](https://github.com/kleister/kleister-js/compare/v3.1.0...v3.2.0) (2025-12-01)
|
|
4
16
|
|
|
5
17
|
### Features
|
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.
|
|
9
|
+
- Package version: 3.3.0
|
|
10
10
|
- Build package: org.openapitools.codegen.languages.TypeScriptAxiosClientCodegen
|
|
11
11
|
|
|
12
12
|
For more information, please visit [https://kleister.eu](https://kleister.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 kleisterjs@3.
|
|
42
|
+
npm install --save kleisterjs@3.3.0
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
### Installation with Git
|
package/api/mod-api.ts
CHANGED
|
@@ -411,9 +411,10 @@ export const ModApiAxiosParamCreator = function (
|
|
|
411
411
|
};
|
|
412
412
|
const localVarHeaderParameter = {} as any;
|
|
413
413
|
const localVarQueryParameter = {} as any;
|
|
414
|
-
const localVarFormParams = new (
|
|
415
|
-
configuration.formDataCtor) ||
|
|
416
|
-
FormData
|
|
414
|
+
const localVarFormParams = new (
|
|
415
|
+
(configuration && configuration.formDataCtor) ||
|
|
416
|
+
FormData
|
|
417
|
+
)();
|
|
417
418
|
|
|
418
419
|
// authentication Basic required
|
|
419
420
|
// http basic authentication required
|
|
@@ -484,9 +485,10 @@ export const ModApiAxiosParamCreator = function (
|
|
|
484
485
|
};
|
|
485
486
|
const localVarHeaderParameter = {} as any;
|
|
486
487
|
const localVarQueryParameter = {} as any;
|
|
487
|
-
const localVarFormParams = new (
|
|
488
|
-
configuration.formDataCtor) ||
|
|
489
|
-
FormData
|
|
488
|
+
const localVarFormParams = new (
|
|
489
|
+
(configuration && configuration.formDataCtor) ||
|
|
490
|
+
FormData
|
|
491
|
+
)();
|
|
490
492
|
|
|
491
493
|
// authentication Basic required
|
|
492
494
|
// http basic authentication required
|
package/flake.lock
CHANGED
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"nixpkgs": "nixpkgs"
|
|
44
44
|
},
|
|
45
45
|
"locked": {
|
|
46
|
-
"lastModified":
|
|
47
|
-
"narHash": "sha256-
|
|
46
|
+
"lastModified": 1764927628,
|
|
47
|
+
"narHash": "sha256-AH2H5O9i7k3oarg3MooAnQtZxo44qxrUTUuvGOy/OEc=",
|
|
48
48
|
"owner": "cachix",
|
|
49
49
|
"repo": "devenv",
|
|
50
|
-
"rev": "
|
|
50
|
+
"rev": "247d7027f91368054fb0eefbd755a73d42b66fee",
|
|
51
51
|
"type": "github"
|
|
52
52
|
},
|
|
53
53
|
"original": {
|
|
@@ -160,11 +160,11 @@
|
|
|
160
160
|
"nixpkgs": "nixpkgs_2"
|
|
161
161
|
},
|
|
162
162
|
"locked": {
|
|
163
|
-
"lastModified":
|
|
164
|
-
"narHash": "sha256-
|
|
163
|
+
"lastModified": 1765016596,
|
|
164
|
+
"narHash": "sha256-rhSqPNxDVow7OQKi4qS5H8Au0P4S3AYbawBSmJNUtBQ=",
|
|
165
165
|
"owner": "cachix",
|
|
166
166
|
"repo": "git-hooks.nix",
|
|
167
|
-
"rev": "
|
|
167
|
+
"rev": "548fc44fca28a5e81c5d6b846e555e6b9c2a5a3c",
|
|
168
168
|
"type": "github"
|
|
169
169
|
},
|
|
170
170
|
"original": {
|
|
@@ -305,11 +305,11 @@
|
|
|
305
305
|
},
|
|
306
306
|
"nixpkgs_3": {
|
|
307
307
|
"locked": {
|
|
308
|
-
"lastModified":
|
|
309
|
-
"narHash": "sha256-
|
|
308
|
+
"lastModified": 1764950072,
|
|
309
|
+
"narHash": "sha256-BmPWzogsG2GsXZtlT+MTcAWeDK5hkbGRZTeZNW42fwA=",
|
|
310
310
|
"owner": "NixOS",
|
|
311
311
|
"repo": "nixpkgs",
|
|
312
|
-
"rev": "
|
|
312
|
+
"rev": "f61125a668a320878494449750330ca58b78c557",
|
|
313
313
|
"type": "github"
|
|
314
314
|
},
|
|
315
315
|
"original": {
|
package/openapi.yml
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kleisterjs",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"description": "OpenAPI client for Kleister",
|
|
5
5
|
"homepage": "https://github.com/kleister/kleister-js#readme",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "24.10.1",
|
|
38
|
-
"prettier": "3.7.
|
|
38
|
+
"prettier": "3.7.4",
|
|
39
39
|
"typescript": "5.9.3"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
<!-- PLEASE READ BEFORE DELETING
|
|
2
|
-
|
|
3
|
-
Please write english, this is the language everybody of us understands. Take a
|
|
4
|
-
moment to search the issues, maybe somebody already reported your problem. If
|
|
5
|
-
you only got questions please head over to our Matrix channel:
|
|
6
|
-
|
|
7
|
-
https://matrix.to/#/#kleister:matrix.org
|
|
8
|
-
|
|
9
|
-
-->
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<!-- PLEASE READ BEFORE DELETING
|
|
2
|
-
|
|
3
|
-
Make sure to target the master branch, describe what your pull requests does and
|
|
4
|
-
which issue you are solving. Please read our contribution guidelines as well:
|
|
5
|
-
|
|
6
|
-
https://github.com/kleister/kleister-js/blob/master/CONTRIBUTING.md
|
|
7
|
-
|
|
8
|
-
-->
|