kleisterjs 2.7.0 → 2.9.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/.codacy.yml +3 -0
- package/.github/RELEASE +1 -1
- package/.github/settings.yml +3 -0
- package/.openapi-generator/FILES +87 -0
- package/.openapi-generator/VERSION +1 -1
- package/CHANGELOG.md +15 -0
- package/README.md +2 -2
- package/docs/AttachBuildToVersionRequest.md +22 -0
- package/docs/AttachMinecraftToBuildRequest.md +22 -0
- package/docs/AuthApi.md +366 -0
- package/docs/AuthToken.md +22 -0
- package/docs/AuthVerify.md +22 -0
- package/docs/Build.md +59 -0
- package/docs/BuildVersion.md +31 -0
- package/docs/CreateBuildRequest.md +40 -0
- package/docs/CreateGroupRequest.md +22 -0
- package/docs/CreateModRequest.md +34 -0
- package/docs/CreatePackRequest.md +26 -0
- package/docs/CreateUserRequest.md +30 -0
- package/docs/CreateVersionRequest.md +24 -0
- package/docs/DeleteGroupFromModRequest.md +20 -0
- package/docs/DeleteGroupFromPackRequest.md +20 -0
- package/docs/DeletePackFromGroupRequest.md +20 -0
- package/docs/DeletePackFromUserRequest.md +20 -0
- package/docs/Fabric.md +27 -0
- package/docs/FabricApi.md +297 -0
- package/docs/Forge.md +29 -0
- package/docs/ForgeApi.md +297 -0
- package/docs/Group.md +29 -0
- package/docs/GroupApi.md +1050 -0
- package/docs/GroupMod.md +33 -0
- package/docs/GroupPack.md +33 -0
- package/docs/ListBuildVersions200Response.md +30 -0
- package/docs/ListBuilds200Response.md +28 -0
- package/docs/ListFabricBuilds200Response.md +28 -0
- package/docs/ListFabrics200Response.md +26 -0
- package/docs/ListForgeBuilds200Response.md +28 -0
- package/docs/ListForges200Response.md +26 -0
- package/docs/ListGroupMods200Response.md +28 -0
- package/docs/ListGroupPacks200Response.md +28 -0
- package/docs/ListGroupUsers200Response.md +28 -0
- package/docs/ListGroups200Response.md +26 -0
- package/docs/ListMinecraftBuilds200Response.md +28 -0
- package/docs/ListMinecrafts200Response.md +26 -0
- package/docs/ListModGroups200Response.md +28 -0
- package/docs/ListModUsers200Response.md +28 -0
- package/docs/ListMods200Response.md +26 -0
- package/docs/ListNeoforgeBuilds200Response.md +28 -0
- package/docs/ListNeoforges200Response.md +26 -0
- package/docs/ListPackGroups200Response.md +28 -0
- package/docs/ListPackUsers200Response.md +28 -0
- package/docs/ListPacks200Response.md +26 -0
- package/docs/ListProviders200Response.md +22 -0
- package/docs/ListQuiltBuilds200Response.md +28 -0
- package/docs/ListQuilts200Response.md +26 -0
- package/docs/ListUserGroups200Response.md +28 -0
- package/docs/ListUserMods200Response.md +28 -0
- package/docs/ListUserPacks200Response.md +28 -0
- package/docs/ListUsers200Response.md +26 -0
- package/docs/ListVersionBuilds200Response.md +30 -0
- package/docs/ListVersions200Response.md +28 -0
- package/docs/LoginAuthRequest.md +22 -0
- package/docs/Minecraft.md +29 -0
- package/docs/MinecraftApi.md +297 -0
- package/docs/Mod.md +43 -0
- package/docs/ModApi.md +1533 -0
- package/docs/ModAvatar.md +27 -0
- package/docs/Neoforge.md +27 -0
- package/docs/NeoforgeApi.md +297 -0
- package/docs/Notification.md +25 -0
- package/docs/Pack.md +35 -0
- package/docs/PackApi.md +1305 -0
- package/docs/PackAvatar.md +27 -0
- package/docs/PermitGroupModRequest.md +22 -0
- package/docs/PermitGroupPackRequest.md +22 -0
- package/docs/PermitPackGroupRequest.md +22 -0
- package/docs/PermitPackUserRequest.md +22 -0
- package/docs/Profile.md +47 -0
- package/docs/ProfileApi.md +155 -0
- package/docs/Provider.md +27 -0
- package/docs/Quilt.md +27 -0
- package/docs/QuiltApi.md +297 -0
- package/docs/RedirectAuthRequest.md +20 -0
- package/docs/UpdateProfileRequest.md +26 -0
- package/docs/UpdateUserRequest.md +30 -0
- package/docs/User.md +41 -0
- package/docs/UserApi.md +1050 -0
- package/docs/UserAuth.md +27 -0
- package/docs/UserGroup.md +33 -0
- package/docs/UserMod.md +33 -0
- package/docs/UserPack.md +33 -0
- package/docs/Validation.md +23 -0
- package/docs/Version.md +33 -0
- package/docs/VersionFile.md +33 -0
- package/flake.lock +9 -9
- package/openapi.yml +1 -1
- package/package.json +2 -2
package/docs/GroupMod.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# GroupMod
|
|
2
|
+
|
|
3
|
+
Model to represent group mod
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**group_id** | **string** | | [default to undefined]
|
|
10
|
+
**group** | [**Group**](Group.md) | | [optional] [default to undefined]
|
|
11
|
+
**mod_id** | **string** | | [default to undefined]
|
|
12
|
+
**mod** | [**Mod**](Mod.md) | | [optional] [default to undefined]
|
|
13
|
+
**perm** | **string** | | [optional] [default to PermEnum_User]
|
|
14
|
+
**created_at** | **string** | | [optional] [readonly] [default to undefined]
|
|
15
|
+
**updated_at** | **string** | | [optional] [readonly] [default to undefined]
|
|
16
|
+
|
|
17
|
+
## Example
|
|
18
|
+
|
|
19
|
+
```typescript
|
|
20
|
+
import { GroupMod } from 'kleisterjs';
|
|
21
|
+
|
|
22
|
+
const instance: GroupMod = {
|
|
23
|
+
group_id,
|
|
24
|
+
group,
|
|
25
|
+
mod_id,
|
|
26
|
+
mod,
|
|
27
|
+
perm,
|
|
28
|
+
created_at,
|
|
29
|
+
updated_at,
|
|
30
|
+
};
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# GroupPack
|
|
2
|
+
|
|
3
|
+
Model to represent group pack
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**group_id** | **string** | | [default to undefined]
|
|
10
|
+
**group** | [**Group**](Group.md) | | [optional] [default to undefined]
|
|
11
|
+
**pack_id** | **string** | | [default to undefined]
|
|
12
|
+
**pack** | [**Pack**](Pack.md) | | [optional] [default to undefined]
|
|
13
|
+
**perm** | **string** | | [optional] [default to PermEnum_User]
|
|
14
|
+
**created_at** | **string** | | [optional] [readonly] [default to undefined]
|
|
15
|
+
**updated_at** | **string** | | [optional] [readonly] [default to undefined]
|
|
16
|
+
|
|
17
|
+
## Example
|
|
18
|
+
|
|
19
|
+
```typescript
|
|
20
|
+
import { GroupPack } from 'kleisterjs';
|
|
21
|
+
|
|
22
|
+
const instance: GroupPack = {
|
|
23
|
+
group_id,
|
|
24
|
+
group,
|
|
25
|
+
pack_id,
|
|
26
|
+
pack,
|
|
27
|
+
perm,
|
|
28
|
+
created_at,
|
|
29
|
+
updated_at,
|
|
30
|
+
};
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# ListBuildVersions200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**pack** | [**Pack**](Pack.md) | | [optional] [default to undefined]
|
|
12
|
+
**build** | [**Build**](Build.md) | | [optional] [default to undefined]
|
|
13
|
+
**versions** | [**Array<BuildVersion>**](BuildVersion.md) | | [default to undefined]
|
|
14
|
+
|
|
15
|
+
## Example
|
|
16
|
+
|
|
17
|
+
```typescript
|
|
18
|
+
import { ListBuildVersions200Response } from 'kleisterjs';
|
|
19
|
+
|
|
20
|
+
const instance: ListBuildVersions200Response = {
|
|
21
|
+
total,
|
|
22
|
+
limit,
|
|
23
|
+
offset,
|
|
24
|
+
pack,
|
|
25
|
+
build,
|
|
26
|
+
versions,
|
|
27
|
+
};
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# ListBuilds200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**pack** | [**Pack**](Pack.md) | | [optional] [default to undefined]
|
|
12
|
+
**builds** | [**Array<Build>**](Build.md) | | [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { ListBuilds200Response } from 'kleisterjs';
|
|
18
|
+
|
|
19
|
+
const instance: ListBuilds200Response = {
|
|
20
|
+
total,
|
|
21
|
+
limit,
|
|
22
|
+
offset,
|
|
23
|
+
pack,
|
|
24
|
+
builds,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# ListFabricBuilds200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**fabric** | [**Fabric**](Fabric.md) | | [optional] [default to undefined]
|
|
12
|
+
**builds** | [**Array<Build>**](Build.md) | | [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { ListFabricBuilds200Response } from 'kleisterjs';
|
|
18
|
+
|
|
19
|
+
const instance: ListFabricBuilds200Response = {
|
|
20
|
+
total,
|
|
21
|
+
limit,
|
|
22
|
+
offset,
|
|
23
|
+
fabric,
|
|
24
|
+
builds,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# ListFabrics200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**versions** | [**Array<Fabric>**](Fabric.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { ListFabrics200Response } from 'kleisterjs';
|
|
17
|
+
|
|
18
|
+
const instance: ListFabrics200Response = {
|
|
19
|
+
total,
|
|
20
|
+
limit,
|
|
21
|
+
offset,
|
|
22
|
+
versions,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# ListForgeBuilds200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**forge** | [**Forge**](Forge.md) | | [optional] [default to undefined]
|
|
12
|
+
**builds** | [**Array<Build>**](Build.md) | | [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { ListForgeBuilds200Response } from 'kleisterjs';
|
|
18
|
+
|
|
19
|
+
const instance: ListForgeBuilds200Response = {
|
|
20
|
+
total,
|
|
21
|
+
limit,
|
|
22
|
+
offset,
|
|
23
|
+
forge,
|
|
24
|
+
builds,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# ListForges200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**versions** | [**Array<Forge>**](Forge.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { ListForges200Response } from 'kleisterjs';
|
|
17
|
+
|
|
18
|
+
const instance: ListForges200Response = {
|
|
19
|
+
total,
|
|
20
|
+
limit,
|
|
21
|
+
offset,
|
|
22
|
+
versions,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# ListGroupMods200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**group** | [**Group**](Group.md) | | [optional] [default to undefined]
|
|
12
|
+
**mods** | [**Array<GroupMod>**](GroupMod.md) | | [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { ListGroupMods200Response } from 'kleisterjs';
|
|
18
|
+
|
|
19
|
+
const instance: ListGroupMods200Response = {
|
|
20
|
+
total,
|
|
21
|
+
limit,
|
|
22
|
+
offset,
|
|
23
|
+
group,
|
|
24
|
+
mods,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# ListGroupPacks200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**group** | [**Group**](Group.md) | | [optional] [default to undefined]
|
|
12
|
+
**packs** | [**Array<GroupPack>**](GroupPack.md) | | [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { ListGroupPacks200Response } from 'kleisterjs';
|
|
18
|
+
|
|
19
|
+
const instance: ListGroupPacks200Response = {
|
|
20
|
+
total,
|
|
21
|
+
limit,
|
|
22
|
+
offset,
|
|
23
|
+
group,
|
|
24
|
+
packs,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# ListGroupUsers200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**group** | [**Group**](Group.md) | | [optional] [default to undefined]
|
|
12
|
+
**users** | [**Array<UserGroup>**](UserGroup.md) | | [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { ListGroupUsers200Response } from 'kleisterjs';
|
|
18
|
+
|
|
19
|
+
const instance: ListGroupUsers200Response = {
|
|
20
|
+
total,
|
|
21
|
+
limit,
|
|
22
|
+
offset,
|
|
23
|
+
group,
|
|
24
|
+
users,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# ListGroups200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**groups** | [**Array<Group>**](Group.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { ListGroups200Response } from 'kleisterjs';
|
|
17
|
+
|
|
18
|
+
const instance: ListGroups200Response = {
|
|
19
|
+
total,
|
|
20
|
+
limit,
|
|
21
|
+
offset,
|
|
22
|
+
groups,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# ListMinecraftBuilds200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**minecraft** | [**Minecraft**](Minecraft.md) | | [optional] [default to undefined]
|
|
12
|
+
**builds** | [**Array<Build>**](Build.md) | | [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { ListMinecraftBuilds200Response } from 'kleisterjs';
|
|
18
|
+
|
|
19
|
+
const instance: ListMinecraftBuilds200Response = {
|
|
20
|
+
total,
|
|
21
|
+
limit,
|
|
22
|
+
offset,
|
|
23
|
+
minecraft,
|
|
24
|
+
builds,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# ListMinecrafts200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**versions** | [**Array<Minecraft>**](Minecraft.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { ListMinecrafts200Response } from 'kleisterjs';
|
|
17
|
+
|
|
18
|
+
const instance: ListMinecrafts200Response = {
|
|
19
|
+
total,
|
|
20
|
+
limit,
|
|
21
|
+
offset,
|
|
22
|
+
versions,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# ListModGroups200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**mod** | [**Mod**](Mod.md) | | [optional] [default to undefined]
|
|
12
|
+
**groups** | [**Array<GroupMod>**](GroupMod.md) | | [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { ListModGroups200Response } from 'kleisterjs';
|
|
18
|
+
|
|
19
|
+
const instance: ListModGroups200Response = {
|
|
20
|
+
total,
|
|
21
|
+
limit,
|
|
22
|
+
offset,
|
|
23
|
+
mod,
|
|
24
|
+
groups,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# ListModUsers200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**mod** | [**Mod**](Mod.md) | | [optional] [default to undefined]
|
|
12
|
+
**users** | [**Array<UserMod>**](UserMod.md) | | [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { ListModUsers200Response } from 'kleisterjs';
|
|
18
|
+
|
|
19
|
+
const instance: ListModUsers200Response = {
|
|
20
|
+
total,
|
|
21
|
+
limit,
|
|
22
|
+
offset,
|
|
23
|
+
mod,
|
|
24
|
+
users,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# ListMods200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**mods** | [**Array<Mod>**](Mod.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { ListMods200Response } from 'kleisterjs';
|
|
17
|
+
|
|
18
|
+
const instance: ListMods200Response = {
|
|
19
|
+
total,
|
|
20
|
+
limit,
|
|
21
|
+
offset,
|
|
22
|
+
mods,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# ListNeoforgeBuilds200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**neoforge** | [**Neoforge**](Neoforge.md) | | [optional] [default to undefined]
|
|
12
|
+
**builds** | [**Array<Build>**](Build.md) | | [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { ListNeoforgeBuilds200Response } from 'kleisterjs';
|
|
18
|
+
|
|
19
|
+
const instance: ListNeoforgeBuilds200Response = {
|
|
20
|
+
total,
|
|
21
|
+
limit,
|
|
22
|
+
offset,
|
|
23
|
+
neoforge,
|
|
24
|
+
builds,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# ListNeoforges200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**versions** | [**Array<Neoforge>**](Neoforge.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { ListNeoforges200Response } from 'kleisterjs';
|
|
17
|
+
|
|
18
|
+
const instance: ListNeoforges200Response = {
|
|
19
|
+
total,
|
|
20
|
+
limit,
|
|
21
|
+
offset,
|
|
22
|
+
versions,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# ListPackGroups200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**pack** | [**Pack**](Pack.md) | | [optional] [default to undefined]
|
|
12
|
+
**groups** | [**Array<GroupPack>**](GroupPack.md) | | [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { ListPackGroups200Response } from 'kleisterjs';
|
|
18
|
+
|
|
19
|
+
const instance: ListPackGroups200Response = {
|
|
20
|
+
total,
|
|
21
|
+
limit,
|
|
22
|
+
offset,
|
|
23
|
+
pack,
|
|
24
|
+
groups,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# ListPackUsers200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**pack** | [**Pack**](Pack.md) | | [optional] [default to undefined]
|
|
12
|
+
**users** | [**Array<UserPack>**](UserPack.md) | | [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { ListPackUsers200Response } from 'kleisterjs';
|
|
18
|
+
|
|
19
|
+
const instance: ListPackUsers200Response = {
|
|
20
|
+
total,
|
|
21
|
+
limit,
|
|
22
|
+
offset,
|
|
23
|
+
pack,
|
|
24
|
+
users,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# ListPacks200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**limit** | **number** | | [default to undefined]
|
|
10
|
+
**offset** | **number** | | [default to undefined]
|
|
11
|
+
**packs** | [**Array<Pack>**](Pack.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { ListPacks200Response } from 'kleisterjs';
|
|
17
|
+
|
|
18
|
+
const instance: ListPacks200Response = {
|
|
19
|
+
total,
|
|
20
|
+
limit,
|
|
21
|
+
offset,
|
|
22
|
+
packs,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# ListProviders200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | | [default to undefined]
|
|
9
|
+
**providers** | [**Array<Provider>**](Provider.md) | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { ListProviders200Response } from 'kleisterjs';
|
|
15
|
+
|
|
16
|
+
const instance: ListProviders200Response = {
|
|
17
|
+
total,
|
|
18
|
+
providers,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|