@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
package/.openapi-generator/FILES
CHANGED
|
@@ -40,7 +40,10 @@ docs/ChatMessageRequest.md
|
|
|
40
40
|
docs/ClientCredentialRequest.md
|
|
41
41
|
docs/ConnectionApi.md
|
|
42
42
|
docs/ConnectionGetConnectionDetailsResponse.md
|
|
43
|
+
docs/ConnectionResult.md
|
|
44
|
+
docs/ConnectionResultResultCode.md
|
|
43
45
|
docs/CreateBypassRequest.md
|
|
46
|
+
docs/GameType.md
|
|
44
47
|
docs/PlayerApi.md
|
|
45
48
|
docs/PlayerGetPlayerInformation.md
|
|
46
49
|
docs/PunishmentApi.md
|
|
@@ -48,7 +51,11 @@ docs/PunishmentGetPunishmentResponse.md
|
|
|
48
51
|
docs/PunishmentSeveritiesResponse.md
|
|
49
52
|
docs/PunishmentSeveritiesResponsePunishmentTypeInfo.md
|
|
50
53
|
docs/PunishmentSeveritiesResponseSeverityInfo.md
|
|
54
|
+
docs/PunishmentTargetType.md
|
|
55
|
+
docs/PunishmentType.md
|
|
51
56
|
docs/Rank.md
|
|
57
|
+
docs/Region.md
|
|
58
|
+
docs/SearchKind.md
|
|
52
59
|
docs/ServerRegisterRequest.md
|
|
53
60
|
docs/ServerSessionDTO.md
|
|
54
61
|
docs/ServerSessionsApi.md
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @rebornteam/reborn-api@3.0
|
|
1
|
+
## @rebornteam/reborn-api@3.2.0
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @rebornteam/reborn-api@3.0
|
|
39
|
+
npm install @rebornteam/reborn-api@3.2.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -117,13 +117,20 @@ Class | Method | HTTP request | Description
|
|
|
117
117
|
- [ChatMessageRequest](docs/ChatMessageRequest.md)
|
|
118
118
|
- [ClientCredentialRequest](docs/ClientCredentialRequest.md)
|
|
119
119
|
- [ConnectionGetConnectionDetailsResponse](docs/ConnectionGetConnectionDetailsResponse.md)
|
|
120
|
+
- [ConnectionResult](docs/ConnectionResult.md)
|
|
121
|
+
- [ConnectionResultResultCode](docs/ConnectionResultResultCode.md)
|
|
120
122
|
- [CreateBypassRequest](docs/CreateBypassRequest.md)
|
|
123
|
+
- [GameType](docs/GameType.md)
|
|
121
124
|
- [PlayerGetPlayerInformation](docs/PlayerGetPlayerInformation.md)
|
|
122
125
|
- [PunishmentGetPunishmentResponse](docs/PunishmentGetPunishmentResponse.md)
|
|
123
126
|
- [PunishmentSeveritiesResponse](docs/PunishmentSeveritiesResponse.md)
|
|
124
127
|
- [PunishmentSeveritiesResponsePunishmentTypeInfo](docs/PunishmentSeveritiesResponsePunishmentTypeInfo.md)
|
|
125
128
|
- [PunishmentSeveritiesResponseSeverityInfo](docs/PunishmentSeveritiesResponseSeverityInfo.md)
|
|
129
|
+
- [PunishmentTargetType](docs/PunishmentTargetType.md)
|
|
130
|
+
- [PunishmentType](docs/PunishmentType.md)
|
|
126
131
|
- [Rank](docs/Rank.md)
|
|
132
|
+
- [Region](docs/Region.md)
|
|
133
|
+
- [SearchKind](docs/SearchKind.md)
|
|
127
134
|
- [ServerRegisterRequest](docs/ServerRegisterRequest.md)
|
|
128
135
|
- [ServerSessionDTO](docs/ServerSessionDTO.md)
|
|
129
136
|
- [TokenRequest](docs/TokenRequest.md)
|