kleisterjs 2.4.0 → 2.4.2
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 +1 -0
- package/CHANGELOG.md +14 -0
- package/README.md +2 -2
- package/flake.lock +81 -7
- package/flake.nix +46 -23
- package/hack/openapi/templates/gitignore +7 -5
- package/openapi.yml +1 -1
- package/package.json +1 -1
package/.github/RELEASE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Mon Feb
|
|
1
|
+
Mon Feb 17 08:19:12 UTC 2025
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.4.2](https://github.com/kleister/kleister-js/compare/v2.4.1...v2.4.2) (2025-02-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bugfixes
|
|
7
|
+
|
|
8
|
+
* **deps:** update dependency prettier to v3.5.2 ([#164](https://github.com/kleister/kleister-js/issues/164)) ([7399f40](https://github.com/kleister/kleister-js/commit/7399f40867ee1fae7d70d71c7db55d0ec6b52bd3))
|
|
9
|
+
|
|
10
|
+
## [2.4.1](https://github.com/kleister/kleister-js/compare/v2.4.0...v2.4.1) (2025-02-17)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bugfixes
|
|
14
|
+
|
|
15
|
+
* **deps:** update dependency prettier to v3.5.1 ([#163](https://github.com/kleister/kleister-js/issues/163)) ([b2af9e5](https://github.com/kleister/kleister-js/commit/b2af9e53e34bf688e5a0ceb29530ddbdfb1afe08))
|
|
16
|
+
|
|
3
17
|
## [2.4.0](https://github.com/kleister/kleister-js/compare/v2.3.0...v2.4.0) (2025-02-10)
|
|
4
18
|
|
|
5
19
|
|
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: 2.4.
|
|
9
|
+
- Package version: 2.4.2
|
|
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@2.4.
|
|
42
|
+
npm install --save kleisterjs@2.4.2
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
### Installation with Git
|
package/flake.lock
CHANGED
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"nixpkgs": "nixpkgs_3"
|
|
38
38
|
},
|
|
39
39
|
"locked": {
|
|
40
|
-
"lastModified":
|
|
41
|
-
"narHash": "sha256-
|
|
40
|
+
"lastModified": 1740373417,
|
|
41
|
+
"narHash": "sha256-UNsWmfiCu0JK4b349xjJ3a4uRbBFmmNv4s/MuPzQYbE=",
|
|
42
42
|
"owner": "cachix",
|
|
43
43
|
"repo": "devenv",
|
|
44
|
-
"rev": "
|
|
44
|
+
"rev": "a6da83bf338c3744735d52bb021dff61e4a172e4",
|
|
45
45
|
"type": "github"
|
|
46
46
|
},
|
|
47
47
|
"original": {
|
|
@@ -66,6 +66,22 @@
|
|
|
66
66
|
"type": "github"
|
|
67
67
|
}
|
|
68
68
|
},
|
|
69
|
+
"flake-compat_2": {
|
|
70
|
+
"flake": false,
|
|
71
|
+
"locked": {
|
|
72
|
+
"lastModified": 1696426674,
|
|
73
|
+
"narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=",
|
|
74
|
+
"owner": "edolstra",
|
|
75
|
+
"repo": "flake-compat",
|
|
76
|
+
"rev": "0f9255e01c2351cc7d116c072cb317785dd33b33",
|
|
77
|
+
"type": "github"
|
|
78
|
+
},
|
|
79
|
+
"original": {
|
|
80
|
+
"owner": "edolstra",
|
|
81
|
+
"repo": "flake-compat",
|
|
82
|
+
"type": "github"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
69
85
|
"flake-parts": {
|
|
70
86
|
"inputs": {
|
|
71
87
|
"nixpkgs-lib": [
|
|
@@ -131,6 +147,26 @@
|
|
|
131
147
|
"type": "github"
|
|
132
148
|
}
|
|
133
149
|
},
|
|
150
|
+
"git-hooks_2": {
|
|
151
|
+
"inputs": {
|
|
152
|
+
"flake-compat": "flake-compat_2",
|
|
153
|
+
"gitignore": "gitignore_2",
|
|
154
|
+
"nixpkgs": "nixpkgs_4"
|
|
155
|
+
},
|
|
156
|
+
"locked": {
|
|
157
|
+
"lastModified": 1737465171,
|
|
158
|
+
"narHash": "sha256-R10v2hoJRLq8jcL4syVFag7nIGE7m13qO48wRIukWNg=",
|
|
159
|
+
"owner": "cachix",
|
|
160
|
+
"repo": "git-hooks.nix",
|
|
161
|
+
"rev": "9364dc02281ce2d37a1f55b6e51f7c0f65a75f17",
|
|
162
|
+
"type": "github"
|
|
163
|
+
},
|
|
164
|
+
"original": {
|
|
165
|
+
"owner": "cachix",
|
|
166
|
+
"repo": "git-hooks.nix",
|
|
167
|
+
"type": "github"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
134
170
|
"gitignore": {
|
|
135
171
|
"inputs": {
|
|
136
172
|
"nixpkgs": [
|
|
@@ -153,6 +189,27 @@
|
|
|
153
189
|
"type": "github"
|
|
154
190
|
}
|
|
155
191
|
},
|
|
192
|
+
"gitignore_2": {
|
|
193
|
+
"inputs": {
|
|
194
|
+
"nixpkgs": [
|
|
195
|
+
"git-hooks",
|
|
196
|
+
"nixpkgs"
|
|
197
|
+
]
|
|
198
|
+
},
|
|
199
|
+
"locked": {
|
|
200
|
+
"lastModified": 1709087332,
|
|
201
|
+
"narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
|
|
202
|
+
"owner": "hercules-ci",
|
|
203
|
+
"repo": "gitignore.nix",
|
|
204
|
+
"rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
|
|
205
|
+
"type": "github"
|
|
206
|
+
},
|
|
207
|
+
"original": {
|
|
208
|
+
"owner": "hercules-ci",
|
|
209
|
+
"repo": "gitignore.nix",
|
|
210
|
+
"type": "github"
|
|
211
|
+
}
|
|
212
|
+
},
|
|
156
213
|
"libgit2": {
|
|
157
214
|
"flake": false,
|
|
158
215
|
"locked": {
|
|
@@ -264,11 +321,27 @@
|
|
|
264
321
|
},
|
|
265
322
|
"nixpkgs_4": {
|
|
266
323
|
"locked": {
|
|
267
|
-
"lastModified":
|
|
268
|
-
"narHash": "sha256-
|
|
324
|
+
"lastModified": 1730768919,
|
|
325
|
+
"narHash": "sha256-8AKquNnnSaJRXZxc5YmF/WfmxiHX6MMZZasRP6RRQkE=",
|
|
269
326
|
"owner": "NixOS",
|
|
270
327
|
"repo": "nixpkgs",
|
|
271
|
-
"rev": "
|
|
328
|
+
"rev": "a04d33c0c3f1a59a2c1cb0c6e34cd24500e5a1dc",
|
|
329
|
+
"type": "github"
|
|
330
|
+
},
|
|
331
|
+
"original": {
|
|
332
|
+
"owner": "NixOS",
|
|
333
|
+
"ref": "nixpkgs-unstable",
|
|
334
|
+
"repo": "nixpkgs",
|
|
335
|
+
"type": "github"
|
|
336
|
+
}
|
|
337
|
+
},
|
|
338
|
+
"nixpkgs_5": {
|
|
339
|
+
"locked": {
|
|
340
|
+
"lastModified": 1740126099,
|
|
341
|
+
"narHash": "sha256-ozoOtE2hGsqh4XkTJFsrTkNxkRgShxpQxDynaPZUGxk=",
|
|
342
|
+
"owner": "NixOS",
|
|
343
|
+
"repo": "nixpkgs",
|
|
344
|
+
"rev": "32fb99ba93fea2798be0e997ea331dd78167f814",
|
|
272
345
|
"type": "github"
|
|
273
346
|
},
|
|
274
347
|
"original": {
|
|
@@ -282,7 +355,8 @@
|
|
|
282
355
|
"inputs": {
|
|
283
356
|
"devenv": "devenv",
|
|
284
357
|
"flake-parts": "flake-parts_2",
|
|
285
|
-
"
|
|
358
|
+
"git-hooks": "git-hooks_2",
|
|
359
|
+
"nixpkgs": "nixpkgs_5"
|
|
286
360
|
}
|
|
287
361
|
}
|
|
288
362
|
},
|
package/flake.nix
CHANGED
|
@@ -13,9 +13,14 @@
|
|
|
13
13
|
flake-parts = {
|
|
14
14
|
url = "github:hercules-ci/flake-parts";
|
|
15
15
|
};
|
|
16
|
+
|
|
17
|
+
git-hooks = {
|
|
18
|
+
url = "github:cachix/git-hooks.nix";
|
|
19
|
+
};
|
|
16
20
|
};
|
|
17
21
|
|
|
18
|
-
outputs =
|
|
22
|
+
outputs =
|
|
23
|
+
inputs@{ flake-parts, ... }:
|
|
19
24
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
|
20
25
|
imports = [
|
|
21
26
|
inputs.devenv.flakeModule
|
|
@@ -28,32 +33,50 @@
|
|
|
28
33
|
"aarch64-darwin"
|
|
29
34
|
];
|
|
30
35
|
|
|
31
|
-
perSystem =
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
enable = true;
|
|
47
|
-
package = pkgs.nodejs_20;
|
|
48
|
-
};
|
|
36
|
+
perSystem =
|
|
37
|
+
{
|
|
38
|
+
config,
|
|
39
|
+
self',
|
|
40
|
+
inputs',
|
|
41
|
+
pkgs,
|
|
42
|
+
system,
|
|
43
|
+
...
|
|
44
|
+
}:
|
|
45
|
+
{
|
|
46
|
+
imports = [
|
|
47
|
+
{
|
|
48
|
+
_module.args.pkgs = import inputs.nixpkgs {
|
|
49
|
+
inherit system;
|
|
50
|
+
config.allowUnfree = true;
|
|
49
51
|
};
|
|
52
|
+
}
|
|
53
|
+
];
|
|
50
54
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
55
|
+
devenv = {
|
|
56
|
+
shells = {
|
|
57
|
+
default = {
|
|
58
|
+
git-hooks = {
|
|
59
|
+
hooks = {
|
|
60
|
+
nixfmt-rfc-style = {
|
|
61
|
+
enable = true;
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
languages = {
|
|
67
|
+
javascript = {
|
|
68
|
+
enable = true;
|
|
69
|
+
package = pkgs.nodejs_20;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
packages = with pkgs; [
|
|
74
|
+
nixfmt-rfc-style
|
|
75
|
+
openapi-generator-cli
|
|
76
|
+
];
|
|
77
|
+
};
|
|
54
78
|
};
|
|
55
79
|
};
|
|
56
80
|
};
|
|
57
|
-
};
|
|
58
81
|
};
|
|
59
82
|
}
|
package/openapi.yml
CHANGED