kleisterjs 1.3.0 → 2.1.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 +16 -0
- package/README.md +2 -2
- package/api/auth-api.ts +93 -0
- package/flake.lock +60 -453
- 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 Nov 4 08:18:19 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,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.1.0](https://github.com/kleister/kleister-js/compare/v2.0.0...v2.1.0) (2024-11-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **deps:** update dependency @types/node to 12.11.5 - 22.9 ([10971bb](https://github.com/kleister/kleister-js/commit/10971bb76afbd466a96d0a50dc4061aa20d94a8f))
|
|
9
|
+
|
|
10
|
+
## [2.0.0](https://github.com/kleister/kleister-js/compare/v1.3.0...v2.0.0) (2024-11-04)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* automated openapi client update ([26e32d4](https://github.com/kleister/kleister-js/commit/26e32d44e4657b08e2ea10efc7bb8aaf9ccac70b))
|
|
16
|
+
* **deps:** update dependency @types/node to 12.11.5 - 20.17 ([d1ebe10](https://github.com/kleister/kleister-js/commit/d1ebe10a07bda333b9463af28628bd4cd10b7929))
|
|
17
|
+
* **deps:** update dependency @types/node to v22 ([4300e87](https://github.com/kleister/kleister-js/commit/4300e87584e20e76a6c0d0601c2b708c256d9d95))
|
|
18
|
+
|
|
3
19
|
## [1.3.0](https://github.com/kleister/kleister-js/compare/v1.2.0...v1.3.0) (2024-10-04)
|
|
4
20
|
|
|
5
21
|
|
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: 1.
|
|
9
|
+
- Package version: 2.1.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@1.
|
|
42
|
+
npm install --save kleisterjs@2.1.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
|
@@ -2,66 +2,28 @@
|
|
|
2
2
|
"nodes": {
|
|
3
3
|
"cachix": {
|
|
4
4
|
"inputs": {
|
|
5
|
-
"devenv":
|
|
6
|
-
|
|
7
|
-
"devenv",
|
|
8
|
-
"flake-compat"
|
|
9
|
-
],
|
|
10
|
-
"git-hooks": [
|
|
11
|
-
"devenv",
|
|
12
|
-
"pre-commit-hooks"
|
|
5
|
+
"devenv": [
|
|
6
|
+
"devenv"
|
|
13
7
|
],
|
|
14
|
-
"nixpkgs": [
|
|
15
|
-
"devenv",
|
|
16
|
-
"nixpkgs"
|
|
17
|
-
]
|
|
18
|
-
},
|
|
19
|
-
"locked": {
|
|
20
|
-
"lastModified": 1726520618,
|
|
21
|
-
"narHash": "sha256-jOsaBmJ/EtX5t/vbylCdS7pWYcKGmWOKg4QKUzKr6dA=",
|
|
22
|
-
"owner": "cachix",
|
|
23
|
-
"repo": "cachix",
|
|
24
|
-
"rev": "695525f9086542dfb09fde0871dbf4174abbf634",
|
|
25
|
-
"type": "github"
|
|
26
|
-
},
|
|
27
|
-
"original": {
|
|
28
|
-
"owner": "cachix",
|
|
29
|
-
"repo": "cachix",
|
|
30
|
-
"type": "github"
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
"cachix_2": {
|
|
34
|
-
"inputs": {
|
|
35
|
-
"devenv": "devenv_3",
|
|
36
8
|
"flake-compat": [
|
|
37
|
-
"devenv"
|
|
38
|
-
"cachix",
|
|
39
|
-
"devenv",
|
|
40
|
-
"flake-compat"
|
|
9
|
+
"devenv"
|
|
41
10
|
],
|
|
42
|
-
"
|
|
43
|
-
"devenv"
|
|
44
|
-
"cachix",
|
|
45
|
-
"devenv",
|
|
46
|
-
"nixpkgs"
|
|
11
|
+
"git-hooks": [
|
|
12
|
+
"devenv"
|
|
47
13
|
],
|
|
48
|
-
"
|
|
49
|
-
"devenv",
|
|
50
|
-
"cachix",
|
|
51
|
-
"devenv",
|
|
52
|
-
"pre-commit-hooks"
|
|
53
|
-
]
|
|
14
|
+
"nixpkgs": "nixpkgs"
|
|
54
15
|
},
|
|
55
16
|
"locked": {
|
|
56
|
-
"lastModified":
|
|
57
|
-
"narHash": "sha256-
|
|
17
|
+
"lastModified": 1728672398,
|
|
18
|
+
"narHash": "sha256-KxuGSoVUFnQLB2ZcYODW7AVPAh9JqRlD5BrfsC/Q4qs=",
|
|
58
19
|
"owner": "cachix",
|
|
59
20
|
"repo": "cachix",
|
|
60
|
-
"rev": "
|
|
21
|
+
"rev": "aac51f698309fd0f381149214b7eee213c66ef0a",
|
|
61
22
|
"type": "github"
|
|
62
23
|
},
|
|
63
24
|
"original": {
|
|
64
25
|
"owner": "cachix",
|
|
26
|
+
"ref": "latest",
|
|
65
27
|
"repo": "cachix",
|
|
66
28
|
"type": "github"
|
|
67
29
|
}
|
|
@@ -69,111 +31,26 @@
|
|
|
69
31
|
"devenv": {
|
|
70
32
|
"inputs": {
|
|
71
33
|
"cachix": "cachix",
|
|
72
|
-
"flake-compat": "flake-
|
|
73
|
-
"
|
|
74
|
-
"nixpkgs": "nixpkgs_3",
|
|
75
|
-
"pre-commit-hooks": "pre-commit-hooks_2"
|
|
76
|
-
},
|
|
77
|
-
"locked": {
|
|
78
|
-
"lastModified": 1727457166,
|
|
79
|
-
"narHash": "sha256-14WVOHLkjaancEXOaiNqzjyIiwDX+dYKu53k41rzZHo=",
|
|
80
|
-
"owner": "cachix",
|
|
81
|
-
"repo": "devenv",
|
|
82
|
-
"rev": "6090da46bfb53e358b818cee491df1a25daa85e0",
|
|
83
|
-
"type": "github"
|
|
84
|
-
},
|
|
85
|
-
"original": {
|
|
86
|
-
"owner": "cachix",
|
|
87
|
-
"repo": "devenv",
|
|
88
|
-
"type": "github"
|
|
89
|
-
}
|
|
90
|
-
},
|
|
91
|
-
"devenv_2": {
|
|
92
|
-
"inputs": {
|
|
93
|
-
"cachix": "cachix_2",
|
|
94
|
-
"flake-compat": [
|
|
95
|
-
"devenv",
|
|
96
|
-
"cachix",
|
|
97
|
-
"flake-compat"
|
|
98
|
-
],
|
|
99
|
-
"nix": "nix_2",
|
|
100
|
-
"nixpkgs": [
|
|
101
|
-
"devenv",
|
|
102
|
-
"cachix",
|
|
103
|
-
"nixpkgs"
|
|
104
|
-
],
|
|
105
|
-
"pre-commit-hooks": [
|
|
106
|
-
"devenv",
|
|
107
|
-
"cachix",
|
|
108
|
-
"git-hooks"
|
|
109
|
-
]
|
|
110
|
-
},
|
|
111
|
-
"locked": {
|
|
112
|
-
"lastModified": 1723156315,
|
|
113
|
-
"narHash": "sha256-0JrfahRMJ37Rf1i0iOOn+8Z4CLvbcGNwa2ChOAVrp/8=",
|
|
114
|
-
"owner": "cachix",
|
|
115
|
-
"repo": "devenv",
|
|
116
|
-
"rev": "ff5eb4f2accbcda963af67f1a1159e3f6c7f5f91",
|
|
117
|
-
"type": "github"
|
|
118
|
-
},
|
|
119
|
-
"original": {
|
|
120
|
-
"owner": "cachix",
|
|
121
|
-
"repo": "devenv",
|
|
122
|
-
"type": "github"
|
|
123
|
-
}
|
|
124
|
-
},
|
|
125
|
-
"devenv_3": {
|
|
126
|
-
"inputs": {
|
|
127
|
-
"flake-compat": [
|
|
128
|
-
"devenv",
|
|
129
|
-
"cachix",
|
|
130
|
-
"devenv",
|
|
131
|
-
"cachix",
|
|
132
|
-
"flake-compat"
|
|
133
|
-
],
|
|
34
|
+
"flake-compat": "flake-compat",
|
|
35
|
+
"git-hooks": "git-hooks",
|
|
134
36
|
"nix": "nix",
|
|
135
|
-
"nixpkgs": "
|
|
136
|
-
"poetry2nix": "poetry2nix",
|
|
137
|
-
"pre-commit-hooks": [
|
|
138
|
-
"devenv",
|
|
139
|
-
"cachix",
|
|
140
|
-
"devenv",
|
|
141
|
-
"cachix",
|
|
142
|
-
"pre-commit-hooks"
|
|
143
|
-
]
|
|
37
|
+
"nixpkgs": "nixpkgs_3"
|
|
144
38
|
},
|
|
145
39
|
"locked": {
|
|
146
|
-
"lastModified":
|
|
147
|
-
"narHash": "sha256-
|
|
40
|
+
"lastModified": 1731169617,
|
|
41
|
+
"narHash": "sha256-Imod8I59qsOyEwInlHmPoiWrYlPkzwKO1e8h2g8ruX4=",
|
|
148
42
|
"owner": "cachix",
|
|
149
43
|
"repo": "devenv",
|
|
150
|
-
"rev": "
|
|
44
|
+
"rev": "983153344922e5fb8545aae7e5e70127da981a71",
|
|
151
45
|
"type": "github"
|
|
152
46
|
},
|
|
153
47
|
"original": {
|
|
154
48
|
"owner": "cachix",
|
|
155
|
-
"ref": "python-rewrite",
|
|
156
49
|
"repo": "devenv",
|
|
157
50
|
"type": "github"
|
|
158
51
|
}
|
|
159
52
|
},
|
|
160
53
|
"flake-compat": {
|
|
161
|
-
"flake": false,
|
|
162
|
-
"locked": {
|
|
163
|
-
"lastModified": 1673956053,
|
|
164
|
-
"narHash": "sha256-4gtG9iQuiKITOjNQQeQIpoIB6b16fm+504Ch3sNKLd8=",
|
|
165
|
-
"owner": "edolstra",
|
|
166
|
-
"repo": "flake-compat",
|
|
167
|
-
"rev": "35bb57c0c8d8b62bbfd284272c928ceb64ddbde9",
|
|
168
|
-
"type": "github"
|
|
169
|
-
},
|
|
170
|
-
"original": {
|
|
171
|
-
"owner": "edolstra",
|
|
172
|
-
"repo": "flake-compat",
|
|
173
|
-
"type": "github"
|
|
174
|
-
}
|
|
175
|
-
},
|
|
176
|
-
"flake-compat_2": {
|
|
177
54
|
"flake": false,
|
|
178
55
|
"locked": {
|
|
179
56
|
"lastModified": 1696426674,
|
|
@@ -216,11 +93,11 @@
|
|
|
216
93
|
"nixpkgs-lib": "nixpkgs-lib"
|
|
217
94
|
},
|
|
218
95
|
"locked": {
|
|
219
|
-
"lastModified":
|
|
220
|
-
"narHash": "sha256-
|
|
96
|
+
"lastModified": 1730504689,
|
|
97
|
+
"narHash": "sha256-hgmguH29K2fvs9szpq2r3pz2/8cJd2LPS+b4tfNFCwE=",
|
|
221
98
|
"owner": "hercules-ci",
|
|
222
99
|
"repo": "flake-parts",
|
|
223
|
-
"rev": "
|
|
100
|
+
"rev": "506278e768c2a08bec68eb62932193e341f55c90",
|
|
224
101
|
"type": "github"
|
|
225
102
|
},
|
|
226
103
|
"original": {
|
|
@@ -229,36 +106,31 @@
|
|
|
229
106
|
"type": "github"
|
|
230
107
|
}
|
|
231
108
|
},
|
|
232
|
-
"
|
|
109
|
+
"git-hooks": {
|
|
233
110
|
"inputs": {
|
|
234
|
-
"
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
"
|
|
238
|
-
"
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
"
|
|
111
|
+
"flake-compat": [
|
|
112
|
+
"devenv"
|
|
113
|
+
],
|
|
114
|
+
"gitignore": "gitignore",
|
|
115
|
+
"nixpkgs": [
|
|
116
|
+
"devenv",
|
|
117
|
+
"nixpkgs"
|
|
118
|
+
],
|
|
119
|
+
"nixpkgs-stable": [
|
|
120
|
+
"devenv"
|
|
121
|
+
]
|
|
243
122
|
},
|
|
244
|
-
"original": {
|
|
245
|
-
"owner": "numtide",
|
|
246
|
-
"repo": "flake-utils",
|
|
247
|
-
"type": "github"
|
|
248
|
-
}
|
|
249
|
-
},
|
|
250
|
-
"flake-utils_2": {
|
|
251
123
|
"locked": {
|
|
252
|
-
"lastModified":
|
|
253
|
-
"narHash": "sha256-
|
|
254
|
-
"owner": "
|
|
255
|
-
"repo": "
|
|
256
|
-
"rev": "
|
|
124
|
+
"lastModified": 1730302582,
|
|
125
|
+
"narHash": "sha256-W1MIJpADXQCgosJZT8qBYLRuZls2KSiKdpnTVdKBuvU=",
|
|
126
|
+
"owner": "cachix",
|
|
127
|
+
"repo": "git-hooks.nix",
|
|
128
|
+
"rev": "af8a16fe5c264f5e9e18bcee2859b40a656876cf",
|
|
257
129
|
"type": "github"
|
|
258
130
|
},
|
|
259
131
|
"original": {
|
|
260
|
-
"owner": "
|
|
261
|
-
"repo": "
|
|
132
|
+
"owner": "cachix",
|
|
133
|
+
"repo": "git-hooks.nix",
|
|
262
134
|
"type": "github"
|
|
263
135
|
}
|
|
264
136
|
},
|
|
@@ -266,7 +138,7 @@
|
|
|
266
138
|
"inputs": {
|
|
267
139
|
"nixpkgs": [
|
|
268
140
|
"devenv",
|
|
269
|
-
"
|
|
141
|
+
"git-hooks",
|
|
270
142
|
"nixpkgs"
|
|
271
143
|
]
|
|
272
144
|
},
|
|
@@ -301,102 +173,22 @@
|
|
|
301
173
|
}
|
|
302
174
|
},
|
|
303
175
|
"nix": {
|
|
304
|
-
"inputs": {
|
|
305
|
-
"flake-compat": "flake-compat",
|
|
306
|
-
"nixpkgs": [
|
|
307
|
-
"devenv",
|
|
308
|
-
"cachix",
|
|
309
|
-
"devenv",
|
|
310
|
-
"cachix",
|
|
311
|
-
"devenv",
|
|
312
|
-
"nixpkgs"
|
|
313
|
-
],
|
|
314
|
-
"nixpkgs-regression": "nixpkgs-regression"
|
|
315
|
-
},
|
|
316
|
-
"locked": {
|
|
317
|
-
"lastModified": 1712911606,
|
|
318
|
-
"narHash": "sha256-BGvBhepCufsjcUkXnEEXhEVjwdJAwPglCC2+bInc794=",
|
|
319
|
-
"owner": "domenkozar",
|
|
320
|
-
"repo": "nix",
|
|
321
|
-
"rev": "b24a9318ea3f3600c1e24b4a00691ee912d4de12",
|
|
322
|
-
"type": "github"
|
|
323
|
-
},
|
|
324
|
-
"original": {
|
|
325
|
-
"owner": "domenkozar",
|
|
326
|
-
"ref": "devenv-2.21",
|
|
327
|
-
"repo": "nix",
|
|
328
|
-
"type": "github"
|
|
329
|
-
}
|
|
330
|
-
},
|
|
331
|
-
"nix-github-actions": {
|
|
332
|
-
"inputs": {
|
|
333
|
-
"nixpkgs": [
|
|
334
|
-
"devenv",
|
|
335
|
-
"cachix",
|
|
336
|
-
"devenv",
|
|
337
|
-
"cachix",
|
|
338
|
-
"devenv",
|
|
339
|
-
"poetry2nix",
|
|
340
|
-
"nixpkgs"
|
|
341
|
-
]
|
|
342
|
-
},
|
|
343
|
-
"locked": {
|
|
344
|
-
"lastModified": 1688870561,
|
|
345
|
-
"narHash": "sha256-4UYkifnPEw1nAzqqPOTL2MvWtm3sNGw1UTYTalkTcGY=",
|
|
346
|
-
"owner": "nix-community",
|
|
347
|
-
"repo": "nix-github-actions",
|
|
348
|
-
"rev": "165b1650b753316aa7f1787f3005a8d2da0f5301",
|
|
349
|
-
"type": "github"
|
|
350
|
-
},
|
|
351
|
-
"original": {
|
|
352
|
-
"owner": "nix-community",
|
|
353
|
-
"repo": "nix-github-actions",
|
|
354
|
-
"type": "github"
|
|
355
|
-
}
|
|
356
|
-
},
|
|
357
|
-
"nix_2": {
|
|
358
176
|
"inputs": {
|
|
359
177
|
"flake-compat": [
|
|
360
|
-
"devenv"
|
|
361
|
-
"cachix",
|
|
362
|
-
"devenv",
|
|
363
|
-
"flake-compat"
|
|
364
|
-
],
|
|
365
|
-
"nixpkgs": [
|
|
366
|
-
"devenv",
|
|
367
|
-
"cachix",
|
|
368
|
-
"devenv",
|
|
369
|
-
"nixpkgs"
|
|
370
|
-
],
|
|
371
|
-
"nixpkgs-regression": "nixpkgs-regression_2"
|
|
372
|
-
},
|
|
373
|
-
"locked": {
|
|
374
|
-
"lastModified": 1712911606,
|
|
375
|
-
"narHash": "sha256-BGvBhepCufsjcUkXnEEXhEVjwdJAwPglCC2+bInc794=",
|
|
376
|
-
"owner": "domenkozar",
|
|
377
|
-
"repo": "nix",
|
|
378
|
-
"rev": "b24a9318ea3f3600c1e24b4a00691ee912d4de12",
|
|
379
|
-
"type": "github"
|
|
380
|
-
},
|
|
381
|
-
"original": {
|
|
382
|
-
"owner": "domenkozar",
|
|
383
|
-
"ref": "devenv-2.21",
|
|
384
|
-
"repo": "nix",
|
|
385
|
-
"type": "github"
|
|
386
|
-
}
|
|
387
|
-
},
|
|
388
|
-
"nix_3": {
|
|
389
|
-
"inputs": {
|
|
390
|
-
"flake-compat": [
|
|
391
|
-
"devenv",
|
|
392
|
-
"flake-compat"
|
|
178
|
+
"devenv"
|
|
393
179
|
],
|
|
394
180
|
"flake-parts": "flake-parts",
|
|
395
181
|
"libgit2": "libgit2",
|
|
396
182
|
"nixpkgs": "nixpkgs_2",
|
|
397
|
-
"nixpkgs-23-11":
|
|
398
|
-
|
|
399
|
-
|
|
183
|
+
"nixpkgs-23-11": [
|
|
184
|
+
"devenv"
|
|
185
|
+
],
|
|
186
|
+
"nixpkgs-regression": [
|
|
187
|
+
"devenv"
|
|
188
|
+
],
|
|
189
|
+
"pre-commit-hooks": [
|
|
190
|
+
"devenv"
|
|
191
|
+
]
|
|
400
192
|
},
|
|
401
193
|
"locked": {
|
|
402
194
|
"lastModified": 1727438425,
|
|
@@ -415,110 +207,30 @@
|
|
|
415
207
|
},
|
|
416
208
|
"nixpkgs": {
|
|
417
209
|
"locked": {
|
|
418
|
-
"lastModified":
|
|
419
|
-
"narHash": "sha256-
|
|
420
|
-
"owner": "NixOS",
|
|
421
|
-
"repo": "nixpkgs",
|
|
422
|
-
"rev": "9201b5ff357e781bf014d0330d18555695df7ba8",
|
|
423
|
-
"type": "github"
|
|
424
|
-
},
|
|
425
|
-
"original": {
|
|
426
|
-
"owner": "NixOS",
|
|
427
|
-
"ref": "nixpkgs-unstable",
|
|
428
|
-
"repo": "nixpkgs",
|
|
429
|
-
"type": "github"
|
|
430
|
-
}
|
|
431
|
-
},
|
|
432
|
-
"nixpkgs-23-11": {
|
|
433
|
-
"locked": {
|
|
434
|
-
"lastModified": 1717159533,
|
|
435
|
-
"narHash": "sha256-oamiKNfr2MS6yH64rUn99mIZjc45nGJlj9eGth/3Xuw=",
|
|
210
|
+
"lastModified": 1730531603,
|
|
211
|
+
"narHash": "sha256-Dqg6si5CqIzm87sp57j5nTaeBbWhHFaVyG7V6L8k3lY=",
|
|
436
212
|
"owner": "NixOS",
|
|
437
213
|
"repo": "nixpkgs",
|
|
438
|
-
"rev": "
|
|
214
|
+
"rev": "7ffd9ae656aec493492b44d0ddfb28e79a1ea25d",
|
|
439
215
|
"type": "github"
|
|
440
216
|
},
|
|
441
217
|
"original": {
|
|
442
218
|
"owner": "NixOS",
|
|
219
|
+
"ref": "nixos-unstable",
|
|
443
220
|
"repo": "nixpkgs",
|
|
444
|
-
"rev": "a62e6edd6d5e1fa0329b8653c801147986f8d446",
|
|
445
221
|
"type": "github"
|
|
446
222
|
}
|
|
447
223
|
},
|
|
448
224
|
"nixpkgs-lib": {
|
|
449
225
|
"locked": {
|
|
450
|
-
"lastModified":
|
|
451
|
-
"narHash": "sha256-
|
|
226
|
+
"lastModified": 1730504152,
|
|
227
|
+
"narHash": "sha256-lXvH/vOfb4aGYyvFmZK/HlsNsr/0CVWlwYvo2rxJk3s=",
|
|
452
228
|
"type": "tarball",
|
|
453
|
-
"url": "https://github.com/NixOS/nixpkgs/archive/
|
|
229
|
+
"url": "https://github.com/NixOS/nixpkgs/archive/cc2f28000298e1269cea6612cd06ec9979dd5d7f.tar.gz"
|
|
454
230
|
},
|
|
455
231
|
"original": {
|
|
456
232
|
"type": "tarball",
|
|
457
|
-
"url": "https://github.com/NixOS/nixpkgs/archive/
|
|
458
|
-
}
|
|
459
|
-
},
|
|
460
|
-
"nixpkgs-regression": {
|
|
461
|
-
"locked": {
|
|
462
|
-
"lastModified": 1643052045,
|
|
463
|
-
"narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=",
|
|
464
|
-
"owner": "NixOS",
|
|
465
|
-
"repo": "nixpkgs",
|
|
466
|
-
"rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2",
|
|
467
|
-
"type": "github"
|
|
468
|
-
},
|
|
469
|
-
"original": {
|
|
470
|
-
"owner": "NixOS",
|
|
471
|
-
"repo": "nixpkgs",
|
|
472
|
-
"rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2",
|
|
473
|
-
"type": "github"
|
|
474
|
-
}
|
|
475
|
-
},
|
|
476
|
-
"nixpkgs-regression_2": {
|
|
477
|
-
"locked": {
|
|
478
|
-
"lastModified": 1643052045,
|
|
479
|
-
"narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=",
|
|
480
|
-
"owner": "NixOS",
|
|
481
|
-
"repo": "nixpkgs",
|
|
482
|
-
"rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2",
|
|
483
|
-
"type": "github"
|
|
484
|
-
},
|
|
485
|
-
"original": {
|
|
486
|
-
"owner": "NixOS",
|
|
487
|
-
"repo": "nixpkgs",
|
|
488
|
-
"rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2",
|
|
489
|
-
"type": "github"
|
|
490
|
-
}
|
|
491
|
-
},
|
|
492
|
-
"nixpkgs-regression_3": {
|
|
493
|
-
"locked": {
|
|
494
|
-
"lastModified": 1643052045,
|
|
495
|
-
"narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=",
|
|
496
|
-
"owner": "NixOS",
|
|
497
|
-
"repo": "nixpkgs",
|
|
498
|
-
"rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2",
|
|
499
|
-
"type": "github"
|
|
500
|
-
},
|
|
501
|
-
"original": {
|
|
502
|
-
"owner": "NixOS",
|
|
503
|
-
"repo": "nixpkgs",
|
|
504
|
-
"rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2",
|
|
505
|
-
"type": "github"
|
|
506
|
-
}
|
|
507
|
-
},
|
|
508
|
-
"nixpkgs-stable": {
|
|
509
|
-
"locked": {
|
|
510
|
-
"lastModified": 1720386169,
|
|
511
|
-
"narHash": "sha256-NGKVY4PjzwAa4upkGtAMz1npHGoRzWotlSnVlqI40mo=",
|
|
512
|
-
"owner": "NixOS",
|
|
513
|
-
"repo": "nixpkgs",
|
|
514
|
-
"rev": "194846768975b7ad2c4988bdb82572c00222c0d7",
|
|
515
|
-
"type": "github"
|
|
516
|
-
},
|
|
517
|
-
"original": {
|
|
518
|
-
"owner": "NixOS",
|
|
519
|
-
"ref": "nixos-24.05",
|
|
520
|
-
"repo": "nixpkgs",
|
|
521
|
-
"type": "github"
|
|
233
|
+
"url": "https://github.com/NixOS/nixpkgs/archive/cc2f28000298e1269cea6612cd06ec9979dd5d7f.tar.gz"
|
|
522
234
|
}
|
|
523
235
|
},
|
|
524
236
|
"nixpkgs_2": {
|
|
@@ -555,11 +267,11 @@
|
|
|
555
267
|
},
|
|
556
268
|
"nixpkgs_4": {
|
|
557
269
|
"locked": {
|
|
558
|
-
"lastModified":
|
|
559
|
-
"narHash": "sha256-
|
|
270
|
+
"lastModified": 1731139594,
|
|
271
|
+
"narHash": "sha256-IigrKK3vYRpUu+HEjPL/phrfh7Ox881er1UEsZvw9Q4=",
|
|
560
272
|
"owner": "NixOS",
|
|
561
273
|
"repo": "nixpkgs",
|
|
562
|
-
"rev": "
|
|
274
|
+
"rev": "76612b17c0ce71689921ca12d9ffdc9c23ce40b2",
|
|
563
275
|
"type": "github"
|
|
564
276
|
},
|
|
565
277
|
"original": {
|
|
@@ -569,117 +281,12 @@
|
|
|
569
281
|
"type": "github"
|
|
570
282
|
}
|
|
571
283
|
},
|
|
572
|
-
"poetry2nix": {
|
|
573
|
-
"inputs": {
|
|
574
|
-
"flake-utils": "flake-utils",
|
|
575
|
-
"nix-github-actions": "nix-github-actions",
|
|
576
|
-
"nixpkgs": [
|
|
577
|
-
"devenv",
|
|
578
|
-
"cachix",
|
|
579
|
-
"devenv",
|
|
580
|
-
"cachix",
|
|
581
|
-
"devenv",
|
|
582
|
-
"nixpkgs"
|
|
583
|
-
]
|
|
584
|
-
},
|
|
585
|
-
"locked": {
|
|
586
|
-
"lastModified": 1692876271,
|
|
587
|
-
"narHash": "sha256-IXfZEkI0Mal5y1jr6IRWMqK8GW2/f28xJenZIPQqkY0=",
|
|
588
|
-
"owner": "nix-community",
|
|
589
|
-
"repo": "poetry2nix",
|
|
590
|
-
"rev": "d5006be9c2c2417dafb2e2e5034d83fabd207ee3",
|
|
591
|
-
"type": "github"
|
|
592
|
-
},
|
|
593
|
-
"original": {
|
|
594
|
-
"owner": "nix-community",
|
|
595
|
-
"repo": "poetry2nix",
|
|
596
|
-
"type": "github"
|
|
597
|
-
}
|
|
598
|
-
},
|
|
599
|
-
"pre-commit-hooks": {
|
|
600
|
-
"inputs": {
|
|
601
|
-
"flake-compat": [
|
|
602
|
-
"devenv",
|
|
603
|
-
"nix"
|
|
604
|
-
],
|
|
605
|
-
"flake-utils": "flake-utils_2",
|
|
606
|
-
"gitignore": [
|
|
607
|
-
"devenv",
|
|
608
|
-
"nix"
|
|
609
|
-
],
|
|
610
|
-
"nixpkgs": [
|
|
611
|
-
"devenv",
|
|
612
|
-
"nix",
|
|
613
|
-
"nixpkgs"
|
|
614
|
-
],
|
|
615
|
-
"nixpkgs-stable": [
|
|
616
|
-
"devenv",
|
|
617
|
-
"nix",
|
|
618
|
-
"nixpkgs"
|
|
619
|
-
]
|
|
620
|
-
},
|
|
621
|
-
"locked": {
|
|
622
|
-
"lastModified": 1712897695,
|
|
623
|
-
"narHash": "sha256-nMirxrGteNAl9sWiOhoN5tIHyjBbVi5e2tgZUgZlK3Y=",
|
|
624
|
-
"owner": "cachix",
|
|
625
|
-
"repo": "pre-commit-hooks.nix",
|
|
626
|
-
"rev": "40e6053ecb65fcbf12863338a6dcefb3f55f1bf8",
|
|
627
|
-
"type": "github"
|
|
628
|
-
},
|
|
629
|
-
"original": {
|
|
630
|
-
"owner": "cachix",
|
|
631
|
-
"repo": "pre-commit-hooks.nix",
|
|
632
|
-
"type": "github"
|
|
633
|
-
}
|
|
634
|
-
},
|
|
635
|
-
"pre-commit-hooks_2": {
|
|
636
|
-
"inputs": {
|
|
637
|
-
"flake-compat": [
|
|
638
|
-
"devenv",
|
|
639
|
-
"flake-compat"
|
|
640
|
-
],
|
|
641
|
-
"gitignore": "gitignore",
|
|
642
|
-
"nixpkgs": [
|
|
643
|
-
"devenv",
|
|
644
|
-
"nixpkgs"
|
|
645
|
-
],
|
|
646
|
-
"nixpkgs-stable": "nixpkgs-stable"
|
|
647
|
-
},
|
|
648
|
-
"locked": {
|
|
649
|
-
"lastModified": 1726745158,
|
|
650
|
-
"narHash": "sha256-D5AegvGoEjt4rkKedmxlSEmC+nNLMBPWFxvmYnVLhjk=",
|
|
651
|
-
"owner": "cachix",
|
|
652
|
-
"repo": "pre-commit-hooks.nix",
|
|
653
|
-
"rev": "4e743a6920eab45e8ba0fbe49dc459f1423a4b74",
|
|
654
|
-
"type": "github"
|
|
655
|
-
},
|
|
656
|
-
"original": {
|
|
657
|
-
"owner": "cachix",
|
|
658
|
-
"repo": "pre-commit-hooks.nix",
|
|
659
|
-
"type": "github"
|
|
660
|
-
}
|
|
661
|
-
},
|
|
662
284
|
"root": {
|
|
663
285
|
"inputs": {
|
|
664
286
|
"devenv": "devenv",
|
|
665
287
|
"flake-parts": "flake-parts_2",
|
|
666
288
|
"nixpkgs": "nixpkgs_4"
|
|
667
289
|
}
|
|
668
|
-
},
|
|
669
|
-
"systems": {
|
|
670
|
-
"locked": {
|
|
671
|
-
"lastModified": 1681028828,
|
|
672
|
-
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
|
673
|
-
"owner": "nix-systems",
|
|
674
|
-
"repo": "default",
|
|
675
|
-
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
|
676
|
-
"type": "github"
|
|
677
|
-
},
|
|
678
|
-
"original": {
|
|
679
|
-
"owner": "nix-systems",
|
|
680
|
-
"repo": "default",
|
|
681
|
-
"type": "github"
|
|
682
|
-
}
|
|
683
290
|
}
|
|
684
291
|
},
|
|
685
292
|
"root": "root",
|
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": "1.
|
|
3
|
+
"version": "2.1.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.9",
|
|
38
38
|
"prettier": "^3.2.5",
|
|
39
39
|
"typescript": "^4.0 || ^5.0"
|
|
40
40
|
}
|