@rebornteam/reborn-api 3.0.1 → 3.2.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/.openapi-generator/FILES +7 -0
- package/README.md +9 -2
- package/api.ts +230 -149
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +190 -146
- package/dist/api.js +45 -23
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +190 -146
- package/dist/esm/api.js +43 -22
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/AdminApplyPunishmentRequest.md +3 -3
- package/docs/AdminApplyPunishmentResponse.md +1 -1
- package/docs/AdminApplyPunishmentResult.md +6 -6
- package/docs/AdminClientCredentialResponse.md +6 -6
- package/docs/AdminConnectionBypassResponse.md +4 -4
- package/docs/AdminConnectionCheckResult.md +7 -3
- package/docs/AdminCreatePunishmentDraftRequest.md +3 -3
- package/docs/AdminDashboardConnectionResponse.md +2 -2
- package/docs/AdminIpSearchResult.md +2 -2
- package/docs/AdminPagedConnectionResponse.md +5 -5
- package/docs/AdminPagedPlayerResponse.md +5 -5
- package/docs/AdminPagedPunishmentResponse.md +5 -5
- package/docs/AdminPlayerDetailResponse.md +7 -7
- package/docs/AdminPlayerSearchResult.md +1 -1
- package/docs/AdminPlayerSummary.md +6 -6
- package/docs/AdminPunishmentDraftResponse.md +1 -1
- package/docs/AdminPunishmentEvaluation.md +9 -9
- package/docs/AdminPunishmentListItem.md +2 -2
- package/docs/AdminPunishmentSearchResponse.md +3 -3
- package/docs/AdminPunishmentsApi.md +2 -2
- package/docs/AdminUsernameHistoryEntry.md +2 -2
- package/docs/ConnectionGetConnectionDetailsResponse.md +9 -7
- package/docs/ConnectionResult.md +25 -0
- package/docs/ConnectionResultResultCode.md +20 -0
- package/docs/GameType.md +12 -0
- package/docs/PlayerGetPlayerInformation.md +4 -4
- package/docs/PunishmentApi.md +4 -4
- package/docs/PunishmentGetPunishmentResponse.md +6 -6
- package/docs/PunishmentSeveritiesResponse.md +1 -1
- package/docs/PunishmentSeveritiesResponsePunishmentTypeInfo.md +2 -2
- package/docs/PunishmentSeveritiesResponseSeverityInfo.md +2 -2
- package/docs/PunishmentTargetType.md +10 -0
- package/docs/PunishmentType.md +12 -0
- package/docs/Region.md +12 -0
- package/docs/SearchKind.md +11 -0
- package/docs/ServerRegisterRequest.md +2 -2
- package/docs/ServerSessionDTO.md +2 -2
- package/index.ts +1 -1
- package/package.json +1 -1
|
@@ -140,7 +140,7 @@ let limit: number; //Page size (default to 50)
|
|
|
140
140
|
let uuid: string; //Filter by player UUID (optional) (default to undefined)
|
|
141
141
|
let username: string; //Filter by player username (case-insensitive substring match) (optional) (default to undefined)
|
|
142
142
|
let ipAddress: string; //Filter by IP address (optional) (default to undefined)
|
|
143
|
-
let type: Array<
|
|
143
|
+
let type: Array<PunishmentType>; //Filter by punishment type. Repeatable. (optional) (default to undefined)
|
|
144
144
|
let issuedAfter: number; //Filter punishments issued after this epoch timestamp (ms) (optional) (default to undefined)
|
|
145
145
|
let issuedBefore: number; //Filter punishments issued before this epoch timestamp (ms) (optional) (default to undefined)
|
|
146
146
|
|
|
@@ -165,7 +165,7 @@ const { status, data } = await apiInstance.getPunishments(
|
|
|
165
165
|
| **uuid** | [**string**] | Filter by player UUID | (optional) defaults to undefined|
|
|
166
166
|
| **username** | [**string**] | Filter by player username (case-insensitive substring match) | (optional) defaults to undefined|
|
|
167
167
|
| **ipAddress** | [**string**] | Filter by IP address | (optional) defaults to undefined|
|
|
168
|
-
| **type** | **Array<
|
|
168
|
+
| **type** | **Array<PunishmentType>** | Filter by punishment type. Repeatable. | (optional) defaults to undefined|
|
|
169
169
|
| **issuedAfter** | [**number**] | Filter punishments issued after this epoch timestamp (ms) | (optional) defaults to undefined|
|
|
170
170
|
| **issuedBefore** | [**number**] | Filter punishments issued before this epoch timestamp (ms) | (optional) defaults to undefined|
|
|
171
171
|
|
|
@@ -6,8 +6,8 @@ A single entry in a player\'s username history
|
|
|
6
6
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
|
-
**username** | **string** | The username at this point in time | [
|
|
10
|
-
**changedAt** | **string** | When this username was first observed (ISO-8601) | [
|
|
9
|
+
**username** | **string** | The username at this point in time | [default to undefined]
|
|
10
|
+
**changedAt** | **string** | When this username was first observed (ISO-8601) | [default to undefined]
|
|
11
11
|
|
|
12
12
|
## Example
|
|
13
13
|
|
|
@@ -6,15 +6,16 @@ Comprehensive connection analysis response including VPN detection, geolocation,
|
|
|
6
6
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
|
-
**ipAddress** | **string** | The analyzed IPv4 address | [
|
|
10
|
-
**approximateLocation** | **string** | Approximate geographic location of the IP address. Returns \'Local, N/A\' for localhost or private IPs. | [
|
|
11
|
-
**percentPositive** | **number** | Confidence score representing the percentage of VPN detection services that flagged this IP as suspicious. Range: 0.0 (clean) to 100.0 (definitely VPN/proxy). | [
|
|
12
|
-
**numberOfChecks** | **number** | Total number of VPN detection services successfully queried during the last check. | [
|
|
13
|
-
**isBypassed** | **boolean** | Indicates if this IP address has been administratively bypassed. | [
|
|
9
|
+
**ipAddress** | **string** | The analyzed IPv4 address | [default to undefined]
|
|
10
|
+
**approximateLocation** | **string** | Approximate geographic location of the IP address. Returns \'Local, N/A\' for localhost or private IPs. | [default to undefined]
|
|
11
|
+
**percentPositive** | **number** | Confidence score representing the percentage of VPN detection services that flagged this IP as suspicious. Range: 0.0 (clean) to 100.0 (definitely VPN/proxy). | [default to undefined]
|
|
12
|
+
**numberOfChecks** | **number** | Total number of VPN detection services successfully queried during the last check. | [default to undefined]
|
|
13
|
+
**isBypassed** | **boolean** | Indicates if this IP address has been administratively bypassed. | [default to undefined]
|
|
14
14
|
**bypassedUntil** | **string** | Expiration timestamp for the bypass (ISO-8601 format). Null if not bypassed or bypass is permanent. | [optional] [default to undefined]
|
|
15
|
-
**results** | [**Array<AdminConnectionCheckResult>**](AdminConnectionCheckResult.md) | Results from each VPN detection service that checked this IP address | [
|
|
15
|
+
**results** | [**Array<AdminConnectionCheckResult>**](AdminConnectionCheckResult.md) | Results from each VPN detection service that checked this IP address | [default to undefined]
|
|
16
16
|
**playerInformation** | [**PlayerGetPlayerInformation**](PlayerGetPlayerInformation.md) | Player information associated with this connection. Only populated when \'associate_uuid\' query parameter is provided. | [optional] [default to undefined]
|
|
17
|
-
**punishments** | [**Array<PunishmentGetPunishmentResponse>**](PunishmentGetPunishmentResponse.md) | Combined list of active punishments for both the IP address and player UUID (if provided). Only includes non-expired punishments. | [
|
|
17
|
+
**punishments** | [**Array<PunishmentGetPunishmentResponse>**](PunishmentGetPunishmentResponse.md) | Combined list of active punishments for both the IP address and player UUID (if provided). Only includes non-expired punishments. | [default to undefined]
|
|
18
|
+
**connectionResult** | [**ConnectionResult**](ConnectionResult.md) | Join enforcement result. Only populated when \'associate_uuid\' query parameter is provided. Contains the final allow/deny decision and a formatted kick message if denied. | [optional] [default to undefined]
|
|
18
19
|
|
|
19
20
|
## Example
|
|
20
21
|
|
|
@@ -31,6 +32,7 @@ const instance: ConnectionGetConnectionDetailsResponse = {
|
|
|
31
32
|
results,
|
|
32
33
|
playerInformation,
|
|
33
34
|
punishments,
|
|
35
|
+
connectionResult,
|
|
34
36
|
};
|
|
35
37
|
```
|
|
36
38
|
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# ConnectionResult
|
|
2
|
+
|
|
3
|
+
Join enforcement result. Only populated when \'associate_uuid\' query parameter is provided. Contains the final allow/deny decision and a formatted kick message if denied.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**code** | [**ConnectionResultResultCode**](ConnectionResultResultCode.md) | | [default to undefined]
|
|
10
|
+
**allowed** | **boolean** | | [default to undefined]
|
|
11
|
+
**message** | **string** | | [optional] [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { ConnectionResult } from '@rebornteam/reborn-api';
|
|
17
|
+
|
|
18
|
+
const instance: ConnectionResult = {
|
|
19
|
+
code,
|
|
20
|
+
allowed,
|
|
21
|
+
message,
|
|
22
|
+
};
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
[[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,20 @@
|
|
|
1
|
+
# ConnectionResultResultCode
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Enum
|
|
5
|
+
|
|
6
|
+
* `Allowed` (value: `'ALLOWED'`)
|
|
7
|
+
|
|
8
|
+
* `AllowedBypass` (value: `'ALLOWED_BYPASS'`)
|
|
9
|
+
|
|
10
|
+
* `AllowedPlayerBypass` (value: `'ALLOWED_PLAYER_BYPASS'`)
|
|
11
|
+
|
|
12
|
+
* `Banned` (value: `'BANNED'`)
|
|
13
|
+
|
|
14
|
+
* `VpnDetected` (value: `'VPN_DETECTED'`)
|
|
15
|
+
|
|
16
|
+
* `VpnRetry` (value: `'VPN_RETRY'`)
|
|
17
|
+
|
|
18
|
+
* `VpnTempBanned` (value: `'VPN_TEMP_BANNED'`)
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/GameType.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# GameType
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Enum
|
|
5
|
+
|
|
6
|
+
* `Rotj` (value: `'ROTJ'`)
|
|
7
|
+
|
|
8
|
+
* `Legacy` (value: `'LEGACY'`)
|
|
9
|
+
|
|
10
|
+
* `Classic` (value: `'CLASSIC'`)
|
|
11
|
+
|
|
12
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -6,10 +6,10 @@ Player information including join history, tracking data, and punishment scoring
|
|
|
6
6
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
|
-
**firstJoin** | **boolean** | Indicates whether this is the player\'s first time joining the server. | [
|
|
10
|
-
**firstLogin** | **string** | Timestamp of when the player first connected to the server (ISO-8601 format). | [
|
|
11
|
-
**punishmentPointsRaw** | **number** | Raw punishment score calculated as: SUM((base_weight × severity/10)). Used for tracking overall punishment severity. | [
|
|
12
|
-
**punishmentPointsPercent** | **number** | Punishment score as a percentage (0-100). When >100% before applying a new punishment, the new punishment should be made permanent. | [
|
|
9
|
+
**firstJoin** | **boolean** | Indicates whether this is the player\'s first time joining the server. | [default to undefined]
|
|
10
|
+
**firstLogin** | **string** | Timestamp of when the player first connected to the server (ISO-8601 format). | [default to undefined]
|
|
11
|
+
**punishmentPointsRaw** | **number** | Raw punishment score calculated as: SUM((base_weight × severity/10)). Used for tracking overall punishment severity. | [default to undefined]
|
|
12
|
+
**punishmentPointsPercent** | **number** | Punishment score as a percentage (0-100). When >100% before applying a new punishment, the new punishment should be made permanent. | [default to undefined]
|
|
13
13
|
|
|
14
14
|
## Example
|
|
15
15
|
|
package/docs/PunishmentApi.md
CHANGED
|
@@ -71,7 +71,7 @@ const apiInstance = new PunishmentApi(configuration);
|
|
|
71
71
|
|
|
72
72
|
let uuid: string; //Player UUID (optional) (default to undefined)
|
|
73
73
|
let username: string; //Player username (optional) (default to undefined)
|
|
74
|
-
let type: Array<
|
|
74
|
+
let type: Array<PunishmentType>; //Filter by punishment types (optional) (default to undefined)
|
|
75
75
|
let since: number; //Filter punishments created after this Unix epoch timestamp (milliseconds) (optional) (default to undefined)
|
|
76
76
|
|
|
77
77
|
const { status, data } = await apiInstance.getPunishments1(
|
|
@@ -88,7 +88,7 @@ const { status, data } = await apiInstance.getPunishments1(
|
|
|
88
88
|
|------------- | ------------- | ------------- | -------------|
|
|
89
89
|
| **uuid** | [**string**] | Player UUID | (optional) defaults to undefined|
|
|
90
90
|
| **username** | [**string**] | Player username | (optional) defaults to undefined|
|
|
91
|
-
| **type** | **Array<
|
|
91
|
+
| **type** | **Array<PunishmentType>** | Filter by punishment types | (optional) defaults to undefined|
|
|
92
92
|
| **since** | [**number**] | Filter punishments created after this Unix epoch timestamp (milliseconds) | (optional) defaults to undefined|
|
|
93
93
|
|
|
94
94
|
|
|
@@ -186,7 +186,7 @@ let issuedAfter: number; //Filter punishments issued after this epoch timestamp
|
|
|
186
186
|
let issuedBefore: number; //Filter punishments issued before this epoch timestamp (milliseconds) (optional) (default to undefined)
|
|
187
187
|
let expiresAfter: number; //Filter punishments expiring after this epoch timestamp (milliseconds) (optional) (default to undefined)
|
|
188
188
|
let expiresBefore: number; //Filter punishments expiring before this epoch timestamp (milliseconds) (optional) (default to undefined)
|
|
189
|
-
let type: Array<
|
|
189
|
+
let type: Array<PunishmentType>; //Filter by punishment types (optional) (default to undefined)
|
|
190
190
|
let uuid: string; //Filter by player UUID (optional) (default to undefined)
|
|
191
191
|
let ipAddress: string; //Filter by IP address (optional) (default to undefined)
|
|
192
192
|
|
|
@@ -213,7 +213,7 @@ const { status, data } = await apiInstance.getRecentPunishments(
|
|
|
213
213
|
| **issuedBefore** | [**number**] | Filter punishments issued before this epoch timestamp (milliseconds) | (optional) defaults to undefined|
|
|
214
214
|
| **expiresAfter** | [**number**] | Filter punishments expiring after this epoch timestamp (milliseconds) | (optional) defaults to undefined|
|
|
215
215
|
| **expiresBefore** | [**number**] | Filter punishments expiring before this epoch timestamp (milliseconds) | (optional) defaults to undefined|
|
|
216
|
-
| **type** | **Array<
|
|
216
|
+
| **type** | **Array<PunishmentType>** | Filter by punishment types | (optional) defaults to undefined|
|
|
217
217
|
| **uuid** | [**string**] | Filter by player UUID | (optional) defaults to undefined|
|
|
218
218
|
| **ipAddress** | [**string**] | Filter by IP address | (optional) defaults to undefined|
|
|
219
219
|
|
|
@@ -6,14 +6,14 @@ Punishment information including reason, type, creator, and expiration
|
|
|
6
6
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
|
-
**id** | **number** | Unique identifier for the punishment | [
|
|
10
|
-
**reason** | **string** | Reason for the punishment, shown to the punished player | [
|
|
9
|
+
**id** | **number** | Unique identifier for the punishment | [default to undefined]
|
|
10
|
+
**reason** | **string** | Reason for the punishment, shown to the punished player | [default to undefined]
|
|
11
11
|
**notes** | **string** | Internal administrator notes — not shown to the punished player | [optional] [default to undefined]
|
|
12
|
-
**type** | **
|
|
13
|
-
**severity** | **number** | Severity level (1=Minor, 2=Moderate, 3=Severe, 4=Critical) | [
|
|
14
|
-
**createdBy** | **string** | Username or identifier of the person who created this punishment | [
|
|
12
|
+
**type** | [**PunishmentType**](PunishmentType.md) | Type of punishment | [default to undefined]
|
|
13
|
+
**severity** | **number** | Severity level (1=Minor, 2=Moderate, 3=Severe, 4=Critical) | [default to undefined]
|
|
14
|
+
**createdBy** | **string** | Username or identifier of the person who created this punishment | [default to undefined]
|
|
15
15
|
**expiresAt** | **string** | Timestamp when the punishment expires (ISO-8601 format). Null for permanent punishments. | [optional] [default to undefined]
|
|
16
|
-
**createdAt** | **string** | Timestamp when the punishment was created (ISO-8601 format) | [
|
|
16
|
+
**createdAt** | **string** | Timestamp when the punishment was created (ISO-8601 format) | [default to undefined]
|
|
17
17
|
|
|
18
18
|
## Example
|
|
19
19
|
|
|
@@ -6,7 +6,7 @@ Response containing punishment severity durations for each type
|
|
|
6
6
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
|
-
**punishmentTypes** | [**Array<PunishmentSeveritiesResponsePunishmentTypeInfo>**](PunishmentSeveritiesResponsePunishmentTypeInfo.md) | List of punishment types with their severity durations | [
|
|
9
|
+
**punishmentTypes** | [**Array<PunishmentSeveritiesResponsePunishmentTypeInfo>**](PunishmentSeveritiesResponsePunishmentTypeInfo.md) | List of punishment types with their severity durations | [default to undefined]
|
|
10
10
|
|
|
11
11
|
## Example
|
|
12
12
|
|
|
@@ -6,8 +6,8 @@ Punishment type with severity information
|
|
|
6
6
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
|
-
**type** | **
|
|
10
|
-
**severities** | [**Array<PunishmentSeveritiesResponseSeverityInfo>**](PunishmentSeveritiesResponseSeverityInfo.md) | List of severity levels with durations | [
|
|
9
|
+
**type** | [**PunishmentType**](PunishmentType.md) | Type of punishment | [default to undefined]
|
|
10
|
+
**severities** | [**Array<PunishmentSeveritiesResponseSeverityInfo>**](PunishmentSeveritiesResponseSeverityInfo.md) | List of severity levels with durations | [default to undefined]
|
|
11
11
|
|
|
12
12
|
## Example
|
|
13
13
|
|
|
@@ -6,8 +6,8 @@ Severity level with duration information
|
|
|
6
6
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
|
-
**severity** | **number** | Severity level | [
|
|
10
|
-
**durationSeconds** | **number** | Duration in seconds (0 means no duration) | [
|
|
9
|
+
**severity** | **number** | Severity level | [default to undefined]
|
|
10
|
+
**durationSeconds** | **number** | Duration in seconds (0 means no duration) | [default to undefined]
|
|
11
11
|
|
|
12
12
|
## Example
|
|
13
13
|
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# PunishmentTargetType
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Enum
|
|
5
|
+
|
|
6
|
+
* `Player` (value: `'PLAYER'`)
|
|
7
|
+
|
|
8
|
+
* `Connection` (value: `'CONNECTION'`)
|
|
9
|
+
|
|
10
|
+
[[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,12 @@
|
|
|
1
|
+
# PunishmentType
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Enum
|
|
5
|
+
|
|
6
|
+
* `Ban` (value: `'BAN'`)
|
|
7
|
+
|
|
8
|
+
* `Mute` (value: `'MUTE'`)
|
|
9
|
+
|
|
10
|
+
* `Warning` (value: `'WARNING'`)
|
|
11
|
+
|
|
12
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/Region.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Region
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Enum
|
|
5
|
+
|
|
6
|
+
* `Us` (value: `'US'`)
|
|
7
|
+
|
|
8
|
+
* `Eu` (value: `'EU'`)
|
|
9
|
+
|
|
10
|
+
* `Au` (value: `'AU'`)
|
|
11
|
+
|
|
12
|
+
[[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,11 @@
|
|
|
1
|
+
# SearchKind
|
|
2
|
+
|
|
3
|
+
Search kind — PLAYER for UUID/username searches, IP for IP address searches
|
|
4
|
+
|
|
5
|
+
## Enum
|
|
6
|
+
|
|
7
|
+
* `Player` (value: `'PLAYER'`)
|
|
8
|
+
|
|
9
|
+
* `Ip` (value: `'IP'`)
|
|
10
|
+
|
|
11
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**region** | **
|
|
9
|
-
**gameType** | **
|
|
8
|
+
**region** | [**Region**](Region.md) | | [default to undefined]
|
|
9
|
+
**gameType** | [**GameType**](GameType.md) | | [default to undefined]
|
|
10
10
|
**containerId** | **string** | | [optional] [default to undefined]
|
|
11
11
|
|
|
12
12
|
## Example
|
package/docs/ServerSessionDTO.md
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**id** | **string** | | [default to undefined]
|
|
9
|
-
**region** | **
|
|
10
|
-
**gameType** | **
|
|
9
|
+
**region** | [**Region**](Region.md) | | [default to undefined]
|
|
10
|
+
**gameType** | [**GameType**](GameType.md) | | [default to undefined]
|
|
11
11
|
**instanceName** | **string** | | [default to undefined]
|
|
12
12
|
**containerId** | **string** | | [optional] [default to undefined]
|
|
13
13
|
**startedAt** | **string** | | [default to undefined]
|
package/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Reborn API
|
|
5
5
|
* The Reborn API serves as the central backend for the platform, orchestrating secure communication between game clients and data services. This API supports two authentication methods: - **OAuth 2.0 Client Credentials**: For programmatic API access - **Discord SSO Bearer Token**: For admin endpoints requiring Discord authentication
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 3.0
|
|
7
|
+
* The version of the OpenAPI document: 3.2.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|