kleisterjs 1.3.0 → 2.0.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 +73 -0
- package/.github/workflows/flake.yml +16 -27
- package/.openapi-generator/FILES +2 -0
- package/CHANGELOG.md +9 -0
- package/README.md +2 -2
- package/api/auth-api.ts +93 -0
- package/flake.lock +13 -13
- package/model/index.ts +2 -0
- package/model/provider.ts +45 -0
- package/model/providers.ts +37 -0
- package/openapi.yml +1 -1
- package/package.json +2 -2
package/.github/RELEASE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Mon
|
|
1
|
+
Mon Oct 28 08:18:05 UTC 2024
|
package/.github/settings.yml
CHANGED
|
@@ -41,4 +41,77 @@ branches:
|
|
|
41
41
|
- bots
|
|
42
42
|
- members
|
|
43
43
|
|
|
44
|
+
teams:
|
|
45
|
+
- name: admins
|
|
46
|
+
permission: admin
|
|
47
|
+
- name: bots
|
|
48
|
+
permission: admin
|
|
49
|
+
- name: members
|
|
50
|
+
permission: maintain
|
|
51
|
+
|
|
52
|
+
labels:
|
|
53
|
+
- name: bug
|
|
54
|
+
color: fc2929
|
|
55
|
+
description: Something isn't working
|
|
56
|
+
- name: duplicate
|
|
57
|
+
color: cccccc
|
|
58
|
+
description: This issue or pull request already exists
|
|
59
|
+
- name: enhancement
|
|
60
|
+
color: 84b6eb
|
|
61
|
+
description: New feature or request
|
|
62
|
+
- name: good first issue
|
|
63
|
+
color: 7057ff
|
|
64
|
+
description: Good for newcomers
|
|
65
|
+
- name: help wanted
|
|
66
|
+
color: 159818
|
|
67
|
+
description: Extra attention is needed
|
|
68
|
+
- name: invalid
|
|
69
|
+
color: e6e6e6
|
|
70
|
+
description: This doesn't seem right
|
|
71
|
+
- name: question
|
|
72
|
+
color: cc317c
|
|
73
|
+
description: Further information is requested
|
|
74
|
+
- name: renovate
|
|
75
|
+
color: 1d76db
|
|
76
|
+
description: Automated action from Renovate
|
|
77
|
+
- name: wontfix
|
|
78
|
+
color: 5319e7
|
|
79
|
+
description: This will not be worked on
|
|
80
|
+
- name: hacktoberfest
|
|
81
|
+
color: d4c5f9
|
|
82
|
+
description: Contribution at Hacktoberfest appreciated
|
|
83
|
+
- name: ready
|
|
84
|
+
color: ededed
|
|
85
|
+
description: This is ready to be worked on
|
|
86
|
+
- name: in progress
|
|
87
|
+
color: ededed
|
|
88
|
+
description: This is currently worked on
|
|
89
|
+
- name: infra
|
|
90
|
+
color: 006b75
|
|
91
|
+
description: Related to the infrastructure
|
|
92
|
+
- name: lint
|
|
93
|
+
color: fbca04
|
|
94
|
+
description: Related to linting tools
|
|
95
|
+
- name: poc
|
|
96
|
+
color: c2e0c6
|
|
97
|
+
description: Proof of concept for new feature
|
|
98
|
+
- name: rebase
|
|
99
|
+
color: ffa8a5
|
|
100
|
+
description: Branch requires a rebase
|
|
101
|
+
- name: third-party
|
|
102
|
+
color: e99695
|
|
103
|
+
description: Depends on third-party tool or library
|
|
104
|
+
- name: translation
|
|
105
|
+
color: b60205
|
|
106
|
+
description: Change or issue related to translations
|
|
107
|
+
- name: ci
|
|
108
|
+
color: b60105
|
|
109
|
+
description: Related to Continous Integration
|
|
110
|
+
- name: docs
|
|
111
|
+
color: b60305
|
|
112
|
+
description: Related to documentation
|
|
113
|
+
- name: outdated
|
|
114
|
+
color: cccccc
|
|
115
|
+
description: This is out of scope and outdated
|
|
116
|
+
|
|
44
117
|
...
|
|
@@ -8,27 +8,17 @@ name: flake
|
|
|
8
8
|
|
|
9
9
|
permissions:
|
|
10
10
|
contents: write
|
|
11
|
-
pull-requests: write
|
|
12
11
|
|
|
13
12
|
jobs:
|
|
14
13
|
flake:
|
|
15
14
|
runs-on: ubuntu-latest
|
|
16
15
|
|
|
17
16
|
steps:
|
|
18
|
-
- name: Generate token
|
|
19
|
-
id: token
|
|
20
|
-
uses: tibdex/github-app-token@v2
|
|
21
|
-
with:
|
|
22
|
-
app_id: ${{ secrets.TOKEN_EXCHANGE_APP }}
|
|
23
|
-
installation_retrieval_mode: id
|
|
24
|
-
installation_retrieval_payload: ${{ secrets.TOKEN_EXCHANGE_INSTALL }}
|
|
25
|
-
private_key: ${{ secrets.TOKEN_EXCHANGE_KEY }}
|
|
26
|
-
permissions: >-
|
|
27
|
-
{"contents": "write", "pull_requests": "write"}
|
|
28
|
-
|
|
29
17
|
- name: Checkout source
|
|
30
18
|
id: source
|
|
31
19
|
uses: actions/checkout@v4
|
|
20
|
+
with:
|
|
21
|
+
token: ${{ secrets.BOT_ACCESS_TOKEN }}
|
|
32
22
|
|
|
33
23
|
- name: Install nix
|
|
34
24
|
id: nix
|
|
@@ -36,21 +26,20 @@ jobs:
|
|
|
36
26
|
|
|
37
27
|
- name: Update flake
|
|
38
28
|
id: flake
|
|
39
|
-
|
|
29
|
+
run: nix flake update
|
|
30
|
+
|
|
31
|
+
- name: Source rebase
|
|
32
|
+
id: rebase
|
|
33
|
+
run: git pull --autostash --rebase
|
|
34
|
+
|
|
35
|
+
- name: Commit changes
|
|
36
|
+
uses: EndBug/add-and-commit@v9
|
|
40
37
|
with:
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
token: ${{ steps.token.outputs.token }}
|
|
48
|
-
|
|
49
|
-
- name: Enable automerge
|
|
50
|
-
id: automerge
|
|
51
|
-
if: steps.flake.outputs.pull-request-operation == 'created'
|
|
52
|
-
run: gh pr merge --rebase --auto "${{ steps.flake.outputs.pull-request-number }}"
|
|
53
|
-
env:
|
|
54
|
-
GH_TOKEN: ${{ steps.token.outputs.token }}
|
|
38
|
+
author_name: GitHub Actions
|
|
39
|
+
author_email: github@webhippie.de
|
|
40
|
+
add: flake.lock
|
|
41
|
+
message: "chore(flake): updated lockfile [skip ci]"
|
|
42
|
+
push: true
|
|
43
|
+
commit: --signoff
|
|
55
44
|
|
|
56
45
|
...
|
package/.openapi-generator/FILES
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.0](https://github.com/kleister/kleister-js/compare/v1.3.0...v2.0.0) (2024-11-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* automated openapi client update ([26e32d4](https://github.com/kleister/kleister-js/commit/26e32d44e4657b08e2ea10efc7bb8aaf9ccac70b))
|
|
9
|
+
* **deps:** update dependency @types/node to 12.11.5 - 20.17 ([d1ebe10](https://github.com/kleister/kleister-js/commit/d1ebe10a07bda333b9463af28628bd4cd10b7929))
|
|
10
|
+
* **deps:** update dependency @types/node to v22 ([4300e87](https://github.com/kleister/kleister-js/commit/4300e87584e20e76a6c0d0601c2b708c256d9d95))
|
|
11
|
+
|
|
3
12
|
## [1.3.0](https://github.com/kleister/kleister-js/compare/v1.2.0...v1.3.0) (2024-10-04)
|
|
4
13
|
|
|
5
14
|
|
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:
|
|
9
|
+
- Package version: 2.0.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@
|
|
42
|
+
npm install --save kleisterjs@2.0.0
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
### Installation with Git
|
package/api/auth-api.ts
CHANGED
|
@@ -49,6 +49,8 @@ import type { AuthToken } from "../model";
|
|
|
49
49
|
import type { AuthVerify } from "../model";
|
|
50
50
|
// @ts-ignore
|
|
51
51
|
import type { Notification } from "../model";
|
|
52
|
+
// @ts-ignore
|
|
53
|
+
import type { Providers } from "../model";
|
|
52
54
|
/**
|
|
53
55
|
* AuthApi - axios parameter creator
|
|
54
56
|
* @export
|
|
@@ -167,6 +169,45 @@ export const AuthApiAxiosParamCreator = function (
|
|
|
167
169
|
options: localVarRequestOptions,
|
|
168
170
|
};
|
|
169
171
|
},
|
|
172
|
+
/**
|
|
173
|
+
*
|
|
174
|
+
* @summary Fetch the available auth providers
|
|
175
|
+
* @param {*} [options] Override http request option.
|
|
176
|
+
* @throws {RequiredError}
|
|
177
|
+
*/
|
|
178
|
+
externalProviders: async (
|
|
179
|
+
options: RawAxiosRequestConfig = {},
|
|
180
|
+
): Promise<RequestArgs> => {
|
|
181
|
+
const localVarPath = `/auth/providers`;
|
|
182
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
183
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
184
|
+
let baseOptions;
|
|
185
|
+
if (configuration) {
|
|
186
|
+
baseOptions = configuration.baseOptions;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
const localVarRequestOptions = {
|
|
190
|
+
method: "GET",
|
|
191
|
+
...baseOptions,
|
|
192
|
+
...options,
|
|
193
|
+
};
|
|
194
|
+
const localVarHeaderParameter = {} as any;
|
|
195
|
+
const localVarQueryParameter = {} as any;
|
|
196
|
+
|
|
197
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
198
|
+
let headersFromBaseOptions =
|
|
199
|
+
baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
200
|
+
localVarRequestOptions.headers = {
|
|
201
|
+
...localVarHeaderParameter,
|
|
202
|
+
...headersFromBaseOptions,
|
|
203
|
+
...options.headers,
|
|
204
|
+
};
|
|
205
|
+
|
|
206
|
+
return {
|
|
207
|
+
url: toPathString(localVarUrlObj),
|
|
208
|
+
options: localVarRequestOptions,
|
|
209
|
+
};
|
|
210
|
+
},
|
|
170
211
|
/**
|
|
171
212
|
*
|
|
172
213
|
* @summary Authenticate an user by credentials
|
|
@@ -412,6 +453,32 @@ export const AuthApiFp = function (configuration?: Configuration) {
|
|
|
412
453
|
configuration,
|
|
413
454
|
)(axios, localVarOperationServerBasePath || basePath);
|
|
414
455
|
},
|
|
456
|
+
/**
|
|
457
|
+
*
|
|
458
|
+
* @summary Fetch the available auth providers
|
|
459
|
+
* @param {*} [options] Override http request option.
|
|
460
|
+
* @throws {RequiredError}
|
|
461
|
+
*/
|
|
462
|
+
async externalProviders(
|
|
463
|
+
options?: RawAxiosRequestConfig,
|
|
464
|
+
): Promise<
|
|
465
|
+
(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Providers>
|
|
466
|
+
> {
|
|
467
|
+
const localVarAxiosArgs =
|
|
468
|
+
await localVarAxiosParamCreator.externalProviders(options);
|
|
469
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
470
|
+
const localVarOperationServerBasePath =
|
|
471
|
+
operationServerMap["AuthApi.externalProviders"]?.[
|
|
472
|
+
localVarOperationServerIndex
|
|
473
|
+
]?.url;
|
|
474
|
+
return (axios, basePath) =>
|
|
475
|
+
createRequestFunction(
|
|
476
|
+
localVarAxiosArgs,
|
|
477
|
+
globalAxios,
|
|
478
|
+
BASE_PATH,
|
|
479
|
+
configuration,
|
|
480
|
+
)(axios, localVarOperationServerBasePath || basePath);
|
|
481
|
+
},
|
|
415
482
|
/**
|
|
416
483
|
*
|
|
417
484
|
* @summary Authenticate an user by credentials
|
|
@@ -545,6 +612,19 @@ export const AuthApiFactory = function (
|
|
|
545
612
|
)
|
|
546
613
|
.then((request) => request(axios, basePath));
|
|
547
614
|
},
|
|
615
|
+
/**
|
|
616
|
+
*
|
|
617
|
+
* @summary Fetch the available auth providers
|
|
618
|
+
* @param {*} [options] Override http request option.
|
|
619
|
+
* @throws {RequiredError}
|
|
620
|
+
*/
|
|
621
|
+
externalProviders(
|
|
622
|
+
options?: RawAxiosRequestConfig,
|
|
623
|
+
): AxiosPromise<Providers> {
|
|
624
|
+
return localVarFp
|
|
625
|
+
.externalProviders(options)
|
|
626
|
+
.then((request) => request(axios, basePath));
|
|
627
|
+
},
|
|
548
628
|
/**
|
|
549
629
|
*
|
|
550
630
|
* @summary Authenticate an user by credentials
|
|
@@ -698,6 +778,19 @@ export class AuthApi extends BaseAPI {
|
|
|
698
778
|
.then((request) => request(this.axios, this.basePath));
|
|
699
779
|
}
|
|
700
780
|
|
|
781
|
+
/**
|
|
782
|
+
*
|
|
783
|
+
* @summary Fetch the available auth providers
|
|
784
|
+
* @param {*} [options] Override http request option.
|
|
785
|
+
* @throws {RequiredError}
|
|
786
|
+
* @memberof AuthApi
|
|
787
|
+
*/
|
|
788
|
+
public externalProviders(options?: RawAxiosRequestConfig) {
|
|
789
|
+
return AuthApiFp(this.configuration)
|
|
790
|
+
.externalProviders(options)
|
|
791
|
+
.then((request) => request(this.axios, this.basePath));
|
|
792
|
+
}
|
|
793
|
+
|
|
701
794
|
/**
|
|
702
795
|
*
|
|
703
796
|
* @summary Authenticate an user by credentials
|
package/flake.lock
CHANGED
|
@@ -75,11 +75,11 @@
|
|
|
75
75
|
"pre-commit-hooks": "pre-commit-hooks_2"
|
|
76
76
|
},
|
|
77
77
|
"locked": {
|
|
78
|
-
"lastModified":
|
|
79
|
-
"narHash": "sha256-
|
|
78
|
+
"lastModified": 1730676843,
|
|
79
|
+
"narHash": "sha256-NbAwRfCzXIi+CoJFJ+qlaqf/pM+nKyUSkA0svzKsP8k=",
|
|
80
80
|
"owner": "cachix",
|
|
81
81
|
"repo": "devenv",
|
|
82
|
-
"rev": "
|
|
82
|
+
"rev": "7250dbb33f62c30dec5cf1191b0947b76bec5248",
|
|
83
83
|
"type": "github"
|
|
84
84
|
},
|
|
85
85
|
"original": {
|
|
@@ -216,11 +216,11 @@
|
|
|
216
216
|
"nixpkgs-lib": "nixpkgs-lib"
|
|
217
217
|
},
|
|
218
218
|
"locked": {
|
|
219
|
-
"lastModified":
|
|
220
|
-
"narHash": "sha256-
|
|
219
|
+
"lastModified": 1730504689,
|
|
220
|
+
"narHash": "sha256-hgmguH29K2fvs9szpq2r3pz2/8cJd2LPS+b4tfNFCwE=",
|
|
221
221
|
"owner": "hercules-ci",
|
|
222
222
|
"repo": "flake-parts",
|
|
223
|
-
"rev": "
|
|
223
|
+
"rev": "506278e768c2a08bec68eb62932193e341f55c90",
|
|
224
224
|
"type": "github"
|
|
225
225
|
},
|
|
226
226
|
"original": {
|
|
@@ -447,14 +447,14 @@
|
|
|
447
447
|
},
|
|
448
448
|
"nixpkgs-lib": {
|
|
449
449
|
"locked": {
|
|
450
|
-
"lastModified":
|
|
451
|
-
"narHash": "sha256-
|
|
450
|
+
"lastModified": 1730504152,
|
|
451
|
+
"narHash": "sha256-lXvH/vOfb4aGYyvFmZK/HlsNsr/0CVWlwYvo2rxJk3s=",
|
|
452
452
|
"type": "tarball",
|
|
453
|
-
"url": "https://github.com/NixOS/nixpkgs/archive/
|
|
453
|
+
"url": "https://github.com/NixOS/nixpkgs/archive/cc2f28000298e1269cea6612cd06ec9979dd5d7f.tar.gz"
|
|
454
454
|
},
|
|
455
455
|
"original": {
|
|
456
456
|
"type": "tarball",
|
|
457
|
-
"url": "https://github.com/NixOS/nixpkgs/archive/
|
|
457
|
+
"url": "https://github.com/NixOS/nixpkgs/archive/cc2f28000298e1269cea6612cd06ec9979dd5d7f.tar.gz"
|
|
458
458
|
}
|
|
459
459
|
},
|
|
460
460
|
"nixpkgs-regression": {
|
|
@@ -555,11 +555,11 @@
|
|
|
555
555
|
},
|
|
556
556
|
"nixpkgs_4": {
|
|
557
557
|
"locked": {
|
|
558
|
-
"lastModified":
|
|
559
|
-
"narHash": "sha256-
|
|
558
|
+
"lastModified": 1730531603,
|
|
559
|
+
"narHash": "sha256-Dqg6si5CqIzm87sp57j5nTaeBbWhHFaVyG7V6L8k3lY=",
|
|
560
560
|
"owner": "NixOS",
|
|
561
561
|
"repo": "nixpkgs",
|
|
562
|
-
"rev": "
|
|
562
|
+
"rev": "7ffd9ae656aec493492b44d0ddfb28e79a1ea25d",
|
|
563
563
|
"type": "github"
|
|
564
564
|
},
|
|
565
565
|
"original": {
|
package/model/index.ts
CHANGED
|
@@ -39,6 +39,8 @@ export * from "./pack-user-params";
|
|
|
39
39
|
export * from "./pack-users";
|
|
40
40
|
export * from "./packs";
|
|
41
41
|
export * from "./profile";
|
|
42
|
+
export * from "./provider";
|
|
43
|
+
export * from "./providers";
|
|
42
44
|
export * from "./quilt";
|
|
43
45
|
export * from "./quilt-build-params";
|
|
44
46
|
export * from "./quilt-builds";
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Kleister OpenAPI
|
|
5
|
+
* API definition for Kleister, manage mod packs for Minecraft
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0-alpha1
|
|
8
|
+
* Contact: kleister@webhippie.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Model to represent auth provider
|
|
17
|
+
* @export
|
|
18
|
+
* @interface Provider
|
|
19
|
+
*/
|
|
20
|
+
export interface Provider {
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof Provider
|
|
25
|
+
*/
|
|
26
|
+
name?: string;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof Provider
|
|
31
|
+
*/
|
|
32
|
+
driver?: string;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof Provider
|
|
37
|
+
*/
|
|
38
|
+
display?: string;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {string}
|
|
42
|
+
* @memberof Provider
|
|
43
|
+
*/
|
|
44
|
+
icon?: string;
|
|
45
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Kleister OpenAPI
|
|
5
|
+
* API definition for Kleister, manage mod packs for Minecraft
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0-alpha1
|
|
8
|
+
* Contact: kleister@webhippie.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
// May contain unused imports in some cases
|
|
16
|
+
// @ts-ignore
|
|
17
|
+
import type { Provider } from "./provider";
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Model to represent list of auth providers
|
|
21
|
+
* @export
|
|
22
|
+
* @interface Providers
|
|
23
|
+
*/
|
|
24
|
+
export interface Providers {
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof Providers
|
|
29
|
+
*/
|
|
30
|
+
total?: number;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {Array<Provider>}
|
|
34
|
+
* @memberof Providers
|
|
35
|
+
*/
|
|
36
|
+
listing?: Array<Provider>;
|
|
37
|
+
}
|
package/openapi.yml
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kleisterjs",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "OpenAPI client for Kleister",
|
|
5
5
|
"homepage": "https://github.com/kleister/kleister-js#readme",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"axios": "^1.6.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@types/node": "12.11.5 -
|
|
37
|
+
"@types/node": "12.11.5 - 22.8",
|
|
38
38
|
"prettier": "^3.2.5",
|
|
39
39
|
"typescript": "^4.0 || ^5.0"
|
|
40
40
|
}
|