@xmobitea/gn-typescript-client 2.1.7 → 2.3.0-esnext
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/GNServerSettingsConfig.debug.json +3 -3
- package/dist/index.js +314 -33908
- package/dist/runtime/GNNetwork.js +238 -0
- package/dist/runtime/GNNetworkAuthenticateApi.js +167 -0
- package/dist/runtime/GNNetworkCharacterPlayerApi.js +1271 -0
- package/dist/runtime/GNNetworkCloudScriptApi.js +143 -0
- package/dist/runtime/GNNetworkContentApi.js +191 -0
- package/dist/runtime/GNNetworkDashboardApi.d.ts +14 -0
- package/dist/runtime/GNNetworkDashboardApi.js +223 -0
- package/dist/runtime/GNNetworkGamePlayerApi.js +1271 -0
- package/dist/runtime/GNNetworkGroupApi.js +983 -0
- package/dist/runtime/GNNetworkInventoryApi.js +839 -0
- package/dist/runtime/GNNetworkMasterPlayerApi.js +1927 -0
- package/dist/runtime/GNNetworkMultiplayerApi.js +263 -0
- package/dist/runtime/GNNetworkStoreInventoryApi.d.ts +12 -0
- package/dist/runtime/GNNetworkStoreInventoryApi.js +311 -0
- package/dist/runtime/common/Action0.js +1 -0
- package/dist/runtime/common/Action1.js +1 -0
- package/dist/runtime/common/Action2.js +1 -0
- package/dist/runtime/common/Action3.js +1 -0
- package/dist/runtime/common/Action4.js +1 -0
- package/dist/runtime/common/GNData.js +211 -0
- package/dist/runtime/config/GNServerSettings.js +127 -0
- package/dist/runtime/constant/Commands.js +19 -0
- package/dist/runtime/constant/EventCode.js +8 -0
- package/dist/runtime/constant/OperationCode.d.ts +10 -0
- package/dist/runtime/constant/OperationCode.js +214 -0
- package/dist/runtime/constant/ReturnCode.js +14 -0
- package/dist/runtime/constant/enumType/FriendStatus.js +7 -0
- package/dist/runtime/constant/enumType/GoogleLoginType.js +5 -0
- package/dist/runtime/constant/enumType/GroupStatus.js +7 -0
- package/dist/runtime/constant/enumType/InvalidMemberType.js +18 -0
- package/dist/runtime/constant/enumType/ItemType.js +5 -0
- package/dist/runtime/constant/enumType/MatchmakingMemberStatus.js +6 -0
- package/dist/runtime/constant/enumType/MatchmakingTicketStatus.js +8 -0
- package/dist/runtime/constant/enumType/OwnerType.d.ts +2 -1
- package/dist/runtime/constant/enumType/OwnerType.js +8 -0
- package/dist/runtime/constant/enumType/PermissionDataItem.js +5 -0
- package/dist/runtime/constant/enumType/RequestRole.js +6 -0
- package/dist/runtime/constant/enumType/RequestType.js +15 -0
- package/dist/runtime/constant/errorCode/GNErrorCode.d.ts +1 -0
- package/dist/runtime/constant/errorCode/GNErrorCode.js +49 -0
- package/dist/runtime/constant/parameterCode/GNParameterCode.d.ts +53 -0
- package/dist/runtime/constant/parameterCode/GNParameterCode.js +537 -0
- package/dist/runtime/constant/parameterCode/ParameterCode.js +6 -0
- package/dist/runtime/entity/DataMember.js +208 -0
- package/dist/runtime/entity/GNMetadata.js +11 -0
- package/dist/runtime/entity/InvalidMember.js +1 -0
- package/dist/runtime/entity/OperationEvent.js +32 -0
- package/dist/runtime/entity/OperationHelper.js +23 -0
- package/dist/runtime/entity/OperationRequest.js +50 -0
- package/dist/runtime/entity/OperationResponse.js +81 -0
- package/dist/runtime/entity/models/AuthenticateModels.js +416 -0
- package/dist/runtime/entity/models/AuthenticateRequestModels.js +206 -0
- package/dist/runtime/entity/models/AuthenticateResponseModels.js +131 -0
- package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +5 -1
- package/dist/runtime/entity/models/CharacterPlayerModels.js +1377 -0
- package/dist/runtime/entity/models/CharacterPlayerRequestModels.js +1412 -0
- package/dist/runtime/entity/models/CharacterPlayerResponseModels.js +369 -0
- package/dist/runtime/entity/models/CloudScriptModels.js +197 -0
- package/dist/runtime/entity/models/CloudScriptRequestModels.js +143 -0
- package/dist/runtime/entity/models/CloudScriptResponseModels.js +40 -0
- package/dist/runtime/entity/models/ContentModels.d.ts +0 -1
- package/dist/runtime/entity/models/ContentModels.js +211 -0
- package/dist/runtime/entity/models/ContentRequestModels.js +197 -0
- package/dist/runtime/entity/models/ContentResponseModels.js +54 -0
- package/dist/runtime/entity/models/DashboardModels.d.ts +121 -0
- package/dist/runtime/entity/models/DashboardModels.js +2674 -0
- package/dist/runtime/entity/models/DashboardRequestModels.d.ts +49 -0
- package/dist/runtime/entity/models/DashboardRequestModels.js +283 -0
- package/dist/runtime/entity/models/DashboardResponseModels.d.ts +21 -0
- package/dist/runtime/entity/models/DashboardResponseModels.js +180 -0
- package/dist/runtime/entity/models/GamePlayerModels.d.ts +5 -1
- package/dist/runtime/entity/models/GamePlayerModels.js +1569 -0
- package/dist/runtime/entity/models/GamePlayerRequestModels.js +1412 -0
- package/dist/runtime/entity/models/GamePlayerResponseModels.js +369 -0
- package/dist/runtime/entity/models/GenericModels.js +177 -0
- package/dist/runtime/entity/models/GroupModels.d.ts +5 -1
- package/dist/runtime/entity/models/GroupModels.js +1123 -0
- package/dist/runtime/entity/models/GroupRequestModels.js +1088 -0
- package/dist/runtime/entity/models/GroupResponseModels.js +285 -0
- package/dist/runtime/entity/models/InventoryModels.d.ts +5 -1
- package/dist/runtime/entity/models/InventoryModels.js +903 -0
- package/dist/runtime/entity/models/InventoryRequestModels.js +926 -0
- package/dist/runtime/entity/models/InventoryResponseModels.js +243 -0
- package/dist/runtime/entity/models/MasterPlayerModels.d.ts +5 -1
- package/dist/runtime/entity/models/MasterPlayerModels.js +2371 -0
- package/dist/runtime/entity/models/MasterPlayerRequestModels.js +2152 -0
- package/dist/runtime/entity/models/MasterPlayerResponseModels.js +565 -0
- package/dist/runtime/entity/models/MultiplayerModels.js +404 -0
- package/dist/runtime/entity/models/MultiplayerRequestModels.js +278 -0
- package/dist/runtime/entity/models/MultiplayerResponseModels.js +75 -0
- package/dist/runtime/entity/models/StoreInventoryModels.d.ts +60 -3
- package/dist/runtime/entity/models/StoreInventoryModels.js +737 -0
- package/dist/runtime/entity/models/StoreInventoryRequestModels.d.ts +30 -0
- package/dist/runtime/entity/models/StoreInventoryRequestModels.js +332 -0
- package/dist/runtime/entity/models/StoreInventoryResponseModels.d.ts +6 -0
- package/dist/runtime/entity/models/StoreInventoryResponseModels.js +89 -0
- package/dist/runtime/entity/request/CustomOperationRequest.js +24 -0
- package/dist/runtime/entity/response/CustomOperationResponse.js +29 -0
- package/dist/runtime/helper/CodeHelper.js +61 -0
- package/dist/runtime/helper/ConverterService.js +275 -0
- package/dist/runtime/helper/GNSupport.js +8 -0
- package/dist/runtime/logger/GNDebug.js +29 -0
- package/dist/runtime/networking/AuthenticateStatus.js +14 -0
- package/dist/runtime/networking/IPeer.js +1 -0
- package/dist/runtime/networking/NetworkingPeer.js +129 -0
- package/dist/runtime/networking/OperationPending.js +53 -0
- package/dist/runtime/networking/PeerBase.js +168 -0
- package/dist/runtime/networking/handler/IServerEventHandler.js +13 -0
- package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.js +39 -0
- package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.js +39 -0
- package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.js +39 -0
- package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.js +39 -0
- package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.js +35 -0
- package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.js +35 -0
- package/dist/runtime/networking/http/HttpPeer.js +121 -0
- package/dist/runtime/networking/http/NetworkingHttpPeerBase.js +6 -0
- package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.js +146 -0
- package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.js +126 -0
- package/dist/runtime/networking/socket/NetworkingSocketPeerBase.js +176 -0
- package/dist/runtime/networking/socket/SocketPeer.js +105 -0
- package/dist/runtime/typescript/ServiceUpdate.js +12 -0
- package/package.json +1 -1
- package/dist/gn.js.client.js +0 -46619
- package/dist/gn.js.client.min.js +0 -2
- package/dist/gn.js.client.min.js.LICENSE.txt +0 -14
|
@@ -129,4 +129,53 @@ export declare namespace DashboardRequestModels {
|
|
|
129
129
|
protected requestRole: RequestRole;
|
|
130
130
|
constructor(requestData: DashboardModels.SetSecretKeyAdminAccountRequestData, timeout: number);
|
|
131
131
|
}
|
|
132
|
+
class GetUsernameAdminAccountOperationRequest extends CustomOperationRequestAbstract<DashboardModels.GetUsernameAdminAccountRequestData> {
|
|
133
|
+
protected operationCode: number;
|
|
134
|
+
protected operationEncrypted: boolean;
|
|
135
|
+
protected requestType: RequestType;
|
|
136
|
+
protected requestRole: RequestRole;
|
|
137
|
+
constructor(requestData: DashboardModels.GetUsernameAdminAccountRequestData, timeout: number);
|
|
138
|
+
}
|
|
139
|
+
class GetAnalyticsOperationRequest extends CustomOperationRequestAbstract<DashboardModels.GetAnalyticsRequestData> {
|
|
140
|
+
protected operationCode: number;
|
|
141
|
+
protected operationEncrypted: boolean;
|
|
142
|
+
protected requestType: RequestType;
|
|
143
|
+
protected requestRole: RequestRole;
|
|
144
|
+
constructor(requestData: DashboardModels.GetAnalyticsRequestData, timeout: number);
|
|
145
|
+
}
|
|
146
|
+
class GetEventCallbackCloudScriptOperationRequest extends CustomOperationRequestAbstract<DashboardModels.GetEventCallbackCloudScriptRequestData> {
|
|
147
|
+
protected operationCode: number;
|
|
148
|
+
protected operationEncrypted: boolean;
|
|
149
|
+
protected requestType: RequestType;
|
|
150
|
+
protected requestRole: RequestRole;
|
|
151
|
+
constructor(requestData: DashboardModels.GetEventCallbackCloudScriptRequestData, timeout: number);
|
|
152
|
+
}
|
|
153
|
+
class SetEventCallbackCloudScriptOperationRequest extends CustomOperationRequestAbstract<DashboardModels.SetEventCallbackCloudScriptRequestData> {
|
|
154
|
+
protected operationCode: number;
|
|
155
|
+
protected operationEncrypted: boolean;
|
|
156
|
+
protected requestType: RequestType;
|
|
157
|
+
protected requestRole: RequestRole;
|
|
158
|
+
constructor(requestData: DashboardModels.SetEventCallbackCloudScriptRequestData, timeout: number);
|
|
159
|
+
}
|
|
160
|
+
class ResetStatisticsLeaderboardOperationRequest extends CustomOperationRequestAbstract<DashboardModels.ResetStatisticsLeaderboardRequestData> {
|
|
161
|
+
protected operationCode: number;
|
|
162
|
+
protected operationEncrypted: boolean;
|
|
163
|
+
protected requestType: RequestType;
|
|
164
|
+
protected requestRole: RequestRole;
|
|
165
|
+
constructor(requestData: DashboardModels.ResetStatisticsLeaderboardRequestData, timeout: number);
|
|
166
|
+
}
|
|
167
|
+
class GetBackupStatisticsLeaderboardVersionOperationRequest extends CustomOperationRequestAbstract<DashboardModels.GetBackupStatisticsLeaderboardVersionRequestData> {
|
|
168
|
+
protected operationCode: number;
|
|
169
|
+
protected operationEncrypted: boolean;
|
|
170
|
+
protected requestType: RequestType;
|
|
171
|
+
protected requestRole: RequestRole;
|
|
172
|
+
constructor(requestData: DashboardModels.GetBackupStatisticsLeaderboardVersionRequestData, timeout: number);
|
|
173
|
+
}
|
|
174
|
+
class GetServerGameDataOperationRequest extends CustomOperationRequestAbstract<DashboardModels.GetServerGameDataRequestData> {
|
|
175
|
+
protected operationCode: number;
|
|
176
|
+
protected operationEncrypted: boolean;
|
|
177
|
+
protected requestType: RequestType;
|
|
178
|
+
protected requestRole: RequestRole;
|
|
179
|
+
constructor(requestData: DashboardModels.GetServerGameDataRequestData, timeout: number);
|
|
180
|
+
}
|
|
132
181
|
}
|
|
@@ -0,0 +1,283 @@
|
|
|
1
|
+
import { OperationCode } from "./../../constant/OperationCode";
|
|
2
|
+
import { RequestRole } from "./../../constant/enumType/RequestRole";
|
|
3
|
+
import { RequestType } from "./../../constant/enumType/RequestType";
|
|
4
|
+
import { CustomOperationRequestAbstract } from "./../request/CustomOperationRequest";
|
|
5
|
+
import { DashboardModels } from "./DashboardModels";
|
|
6
|
+
export var DashboardRequestModels;
|
|
7
|
+
(function (DashboardRequestModels) {
|
|
8
|
+
class ChangePasswordAdminAccountOperationRequest extends CustomOperationRequestAbstract {
|
|
9
|
+
constructor(requestData, timeout) {
|
|
10
|
+
super(requestData, timeout);
|
|
11
|
+
this.operationCode = OperationCode.ChangePasswordAdminAccount;
|
|
12
|
+
this.operationEncrypted = true;
|
|
13
|
+
this.requestType = RequestType.Dashboard;
|
|
14
|
+
this.requestRole = RequestRole.Client;
|
|
15
|
+
this.requestDataCls = DashboardModels.ChangePasswordAdminAccountRequestData;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
DashboardRequestModels.ChangePasswordAdminAccountOperationRequest = ChangePasswordAdminAccountOperationRequest;
|
|
19
|
+
class GetAdminAccountListOperationRequest extends CustomOperationRequestAbstract {
|
|
20
|
+
constructor(requestData, timeout) {
|
|
21
|
+
super(requestData, timeout);
|
|
22
|
+
this.operationCode = OperationCode.GetAdminAccountList;
|
|
23
|
+
this.operationEncrypted = true;
|
|
24
|
+
this.requestType = RequestType.Dashboard;
|
|
25
|
+
this.requestRole = RequestRole.Client;
|
|
26
|
+
this.requestDataCls = DashboardModels.GetAdminAccountListRequestData;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
DashboardRequestModels.GetAdminAccountListOperationRequest = GetAdminAccountListOperationRequest;
|
|
30
|
+
class GetGameInformationOperationRequest extends CustomOperationRequestAbstract {
|
|
31
|
+
constructor(requestData, timeout) {
|
|
32
|
+
super(requestData, timeout);
|
|
33
|
+
this.operationCode = OperationCode.GetGameInformation;
|
|
34
|
+
this.operationEncrypted = true;
|
|
35
|
+
this.requestType = RequestType.Dashboard;
|
|
36
|
+
this.requestRole = RequestRole.Client;
|
|
37
|
+
this.requestDataCls = DashboardModels.GetGameInformationRequestData;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
DashboardRequestModels.GetGameInformationOperationRequest = GetGameInformationOperationRequest;
|
|
41
|
+
class GetGameListOperationRequest extends CustomOperationRequestAbstract {
|
|
42
|
+
constructor(requestData, timeout) {
|
|
43
|
+
super(requestData, timeout);
|
|
44
|
+
this.operationCode = OperationCode.GetGameList;
|
|
45
|
+
this.operationEncrypted = true;
|
|
46
|
+
this.requestType = RequestType.Dashboard;
|
|
47
|
+
this.requestRole = RequestRole.Client;
|
|
48
|
+
this.requestDataCls = DashboardModels.GetGameListRequestData;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
DashboardRequestModels.GetGameListOperationRequest = GetGameListOperationRequest;
|
|
52
|
+
class GetMasterGameSettingsOperationRequest extends CustomOperationRequestAbstract {
|
|
53
|
+
constructor(requestData, timeout) {
|
|
54
|
+
super(requestData, timeout);
|
|
55
|
+
this.operationCode = OperationCode.GetMasterGameSettings;
|
|
56
|
+
this.operationEncrypted = true;
|
|
57
|
+
this.requestType = RequestType.Dashboard;
|
|
58
|
+
this.requestRole = RequestRole.Client;
|
|
59
|
+
this.requestDataCls = DashboardModels.GetMasterGameSettingsRequestData;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
DashboardRequestModels.GetMasterGameSettingsOperationRequest = GetMasterGameSettingsOperationRequest;
|
|
63
|
+
class GetSecretInfoInformationOperationRequest extends CustomOperationRequestAbstract {
|
|
64
|
+
constructor(requestData, timeout) {
|
|
65
|
+
super(requestData, timeout);
|
|
66
|
+
this.operationCode = OperationCode.GetSecretInfoInformation;
|
|
67
|
+
this.operationEncrypted = true;
|
|
68
|
+
this.requestType = RequestType.Dashboard;
|
|
69
|
+
this.requestRole = RequestRole.Client;
|
|
70
|
+
this.requestDataCls = DashboardModels.GetSecretInfoInformationRequestData;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
DashboardRequestModels.GetSecretInfoInformationOperationRequest = GetSecretInfoInformationOperationRequest;
|
|
74
|
+
class GetSecretInfoListOperationRequest extends CustomOperationRequestAbstract {
|
|
75
|
+
constructor(requestData, timeout) {
|
|
76
|
+
super(requestData, timeout);
|
|
77
|
+
this.operationCode = OperationCode.GetSecretInfoList;
|
|
78
|
+
this.operationEncrypted = true;
|
|
79
|
+
this.requestType = RequestType.Dashboard;
|
|
80
|
+
this.requestRole = RequestRole.Client;
|
|
81
|
+
this.requestDataCls = DashboardModels.GetSecretInfoListRequestData;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
DashboardRequestModels.GetSecretInfoListOperationRequest = GetSecretInfoListOperationRequest;
|
|
85
|
+
class GetServerLogOperationRequest extends CustomOperationRequestAbstract {
|
|
86
|
+
constructor(requestData, timeout) {
|
|
87
|
+
super(requestData, timeout);
|
|
88
|
+
this.operationCode = OperationCode.GetServerLog;
|
|
89
|
+
this.operationEncrypted = true;
|
|
90
|
+
this.requestType = RequestType.Dashboard;
|
|
91
|
+
this.requestRole = RequestRole.Client;
|
|
92
|
+
this.requestDataCls = DashboardModels.GetServerLogRequestData;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
DashboardRequestModels.GetServerLogOperationRequest = GetServerLogOperationRequest;
|
|
96
|
+
class GrantAdminAccountOperationRequest extends CustomOperationRequestAbstract {
|
|
97
|
+
constructor(requestData, timeout) {
|
|
98
|
+
super(requestData, timeout);
|
|
99
|
+
this.operationCode = OperationCode.GrantAdminAccount;
|
|
100
|
+
this.operationEncrypted = true;
|
|
101
|
+
this.requestType = RequestType.Dashboard;
|
|
102
|
+
this.requestRole = RequestRole.Client;
|
|
103
|
+
this.requestDataCls = DashboardModels.GrantAdminAccountRequestData;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
DashboardRequestModels.GrantAdminAccountOperationRequest = GrantAdminAccountOperationRequest;
|
|
107
|
+
class GrantGameOperationRequest extends CustomOperationRequestAbstract {
|
|
108
|
+
constructor(requestData, timeout) {
|
|
109
|
+
super(requestData, timeout);
|
|
110
|
+
this.operationCode = OperationCode.GrantGame;
|
|
111
|
+
this.operationEncrypted = true;
|
|
112
|
+
this.requestType = RequestType.Dashboard;
|
|
113
|
+
this.requestRole = RequestRole.Client;
|
|
114
|
+
this.requestDataCls = DashboardModels.GrantGameRequestData;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
DashboardRequestModels.GrantGameOperationRequest = GrantGameOperationRequest;
|
|
118
|
+
class GrantSecretInfoOperationRequest extends CustomOperationRequestAbstract {
|
|
119
|
+
constructor(requestData, timeout) {
|
|
120
|
+
super(requestData, timeout);
|
|
121
|
+
this.operationCode = OperationCode.GrantSecretInfo;
|
|
122
|
+
this.operationEncrypted = true;
|
|
123
|
+
this.requestType = RequestType.Dashboard;
|
|
124
|
+
this.requestRole = RequestRole.Client;
|
|
125
|
+
this.requestDataCls = DashboardModels.GrantSecretInfoRequestData;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
DashboardRequestModels.GrantSecretInfoOperationRequest = GrantSecretInfoOperationRequest;
|
|
129
|
+
class LoginByAdminAccountOperationRequest extends CustomOperationRequestAbstract {
|
|
130
|
+
constructor(requestData, timeout) {
|
|
131
|
+
super(requestData, timeout);
|
|
132
|
+
this.operationCode = OperationCode.LoginByAdminAccount;
|
|
133
|
+
this.operationEncrypted = true;
|
|
134
|
+
this.requestType = RequestType.Dashboard;
|
|
135
|
+
this.requestRole = RequestRole.Client;
|
|
136
|
+
this.requestDataCls = DashboardModels.LoginByAdminAccountRequestData;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
DashboardRequestModels.LoginByAdminAccountOperationRequest = LoginByAdminAccountOperationRequest;
|
|
140
|
+
class RemoveAdminAccountOperationRequest extends CustomOperationRequestAbstract {
|
|
141
|
+
constructor(requestData, timeout) {
|
|
142
|
+
super(requestData, timeout);
|
|
143
|
+
this.operationCode = OperationCode.RemoveAdminAccount;
|
|
144
|
+
this.operationEncrypted = true;
|
|
145
|
+
this.requestType = RequestType.Dashboard;
|
|
146
|
+
this.requestRole = RequestRole.Client;
|
|
147
|
+
this.requestDataCls = DashboardModels.RemoveAdminAccountRequestData;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
DashboardRequestModels.RemoveAdminAccountOperationRequest = RemoveAdminAccountOperationRequest;
|
|
151
|
+
class SetGameInformationOperationRequest extends CustomOperationRequestAbstract {
|
|
152
|
+
constructor(requestData, timeout) {
|
|
153
|
+
super(requestData, timeout);
|
|
154
|
+
this.operationCode = OperationCode.SetGameInformation;
|
|
155
|
+
this.operationEncrypted = true;
|
|
156
|
+
this.requestType = RequestType.Dashboard;
|
|
157
|
+
this.requestRole = RequestRole.Client;
|
|
158
|
+
this.requestDataCls = DashboardModels.SetGameInformationRequestData;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
DashboardRequestModels.SetGameInformationOperationRequest = SetGameInformationOperationRequest;
|
|
162
|
+
class SetMasterGameSettingsOperationRequest extends CustomOperationRequestAbstract {
|
|
163
|
+
constructor(requestData, timeout) {
|
|
164
|
+
super(requestData, timeout);
|
|
165
|
+
this.operationCode = OperationCode.SetMasterGameSettings;
|
|
166
|
+
this.operationEncrypted = true;
|
|
167
|
+
this.requestType = RequestType.Dashboard;
|
|
168
|
+
this.requestRole = RequestRole.Client;
|
|
169
|
+
this.requestDataCls = DashboardModels.SetMasterGameSettingsRequestData;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
DashboardRequestModels.SetMasterGameSettingsOperationRequest = SetMasterGameSettingsOperationRequest;
|
|
173
|
+
class SetPasswordAdminAccountOperationRequest extends CustomOperationRequestAbstract {
|
|
174
|
+
constructor(requestData, timeout) {
|
|
175
|
+
super(requestData, timeout);
|
|
176
|
+
this.operationCode = OperationCode.SetPasswordAdminAccount;
|
|
177
|
+
this.operationEncrypted = true;
|
|
178
|
+
this.requestType = RequestType.Dashboard;
|
|
179
|
+
this.requestRole = RequestRole.Client;
|
|
180
|
+
this.requestDataCls = DashboardModels.SetPasswordAdminAccountRequestData;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
DashboardRequestModels.SetPasswordAdminAccountOperationRequest = SetPasswordAdminAccountOperationRequest;
|
|
184
|
+
class SetSecretInfoInformationOperationRequest extends CustomOperationRequestAbstract {
|
|
185
|
+
constructor(requestData, timeout) {
|
|
186
|
+
super(requestData, timeout);
|
|
187
|
+
this.operationCode = OperationCode.SetSecretInfoInformation;
|
|
188
|
+
this.operationEncrypted = true;
|
|
189
|
+
this.requestType = RequestType.Dashboard;
|
|
190
|
+
this.requestRole = RequestRole.Client;
|
|
191
|
+
this.requestDataCls = DashboardModels.SetSecretInfoInformationRequestData;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
DashboardRequestModels.SetSecretInfoInformationOperationRequest = SetSecretInfoInformationOperationRequest;
|
|
195
|
+
class SetSecretKeyAdminAccountOperationRequest extends CustomOperationRequestAbstract {
|
|
196
|
+
constructor(requestData, timeout) {
|
|
197
|
+
super(requestData, timeout);
|
|
198
|
+
this.operationCode = OperationCode.SetSecretKeyAdminAccount;
|
|
199
|
+
this.operationEncrypted = true;
|
|
200
|
+
this.requestType = RequestType.Dashboard;
|
|
201
|
+
this.requestRole = RequestRole.Client;
|
|
202
|
+
this.requestDataCls = DashboardModels.SetSecretKeyAdminAccountRequestData;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
DashboardRequestModels.SetSecretKeyAdminAccountOperationRequest = SetSecretKeyAdminAccountOperationRequest;
|
|
206
|
+
class GetUsernameAdminAccountOperationRequest extends CustomOperationRequestAbstract {
|
|
207
|
+
constructor(requestData, timeout) {
|
|
208
|
+
super(requestData, timeout);
|
|
209
|
+
this.operationCode = OperationCode.GetUsernameAdminAccount;
|
|
210
|
+
this.operationEncrypted = true;
|
|
211
|
+
this.requestType = RequestType.Dashboard;
|
|
212
|
+
this.requestRole = RequestRole.Client;
|
|
213
|
+
this.requestDataCls = DashboardModels.GetUsernameAdminAccountRequestData;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
DashboardRequestModels.GetUsernameAdminAccountOperationRequest = GetUsernameAdminAccountOperationRequest;
|
|
217
|
+
class GetAnalyticsOperationRequest extends CustomOperationRequestAbstract {
|
|
218
|
+
constructor(requestData, timeout) {
|
|
219
|
+
super(requestData, timeout);
|
|
220
|
+
this.operationCode = OperationCode.GetAnalytics;
|
|
221
|
+
this.operationEncrypted = true;
|
|
222
|
+
this.requestType = RequestType.Dashboard;
|
|
223
|
+
this.requestRole = RequestRole.Client;
|
|
224
|
+
this.requestDataCls = DashboardModels.GetAnalyticsRequestData;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
DashboardRequestModels.GetAnalyticsOperationRequest = GetAnalyticsOperationRequest;
|
|
228
|
+
class GetEventCallbackCloudScriptOperationRequest extends CustomOperationRequestAbstract {
|
|
229
|
+
constructor(requestData, timeout) {
|
|
230
|
+
super(requestData, timeout);
|
|
231
|
+
this.operationCode = OperationCode.GetEventCallbackCloudScript;
|
|
232
|
+
this.operationEncrypted = true;
|
|
233
|
+
this.requestType = RequestType.Dashboard;
|
|
234
|
+
this.requestRole = RequestRole.Client;
|
|
235
|
+
this.requestDataCls = DashboardModels.GetEventCallbackCloudScriptRequestData;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
DashboardRequestModels.GetEventCallbackCloudScriptOperationRequest = GetEventCallbackCloudScriptOperationRequest;
|
|
239
|
+
class SetEventCallbackCloudScriptOperationRequest extends CustomOperationRequestAbstract {
|
|
240
|
+
constructor(requestData, timeout) {
|
|
241
|
+
super(requestData, timeout);
|
|
242
|
+
this.operationCode = OperationCode.SetEventCallbackCloudScript;
|
|
243
|
+
this.operationEncrypted = true;
|
|
244
|
+
this.requestType = RequestType.Dashboard;
|
|
245
|
+
this.requestRole = RequestRole.Client;
|
|
246
|
+
this.requestDataCls = DashboardModels.SetEventCallbackCloudScriptRequestData;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
DashboardRequestModels.SetEventCallbackCloudScriptOperationRequest = SetEventCallbackCloudScriptOperationRequest;
|
|
250
|
+
class ResetStatisticsLeaderboardOperationRequest extends CustomOperationRequestAbstract {
|
|
251
|
+
constructor(requestData, timeout) {
|
|
252
|
+
super(requestData, timeout);
|
|
253
|
+
this.operationCode = OperationCode.ResetStatisticsLeaderboard;
|
|
254
|
+
this.operationEncrypted = true;
|
|
255
|
+
this.requestType = RequestType.Dashboard;
|
|
256
|
+
this.requestRole = RequestRole.Client;
|
|
257
|
+
this.requestDataCls = DashboardModels.ResetStatisticsLeaderboardRequestData;
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
DashboardRequestModels.ResetStatisticsLeaderboardOperationRequest = ResetStatisticsLeaderboardOperationRequest;
|
|
261
|
+
class GetBackupStatisticsLeaderboardVersionOperationRequest extends CustomOperationRequestAbstract {
|
|
262
|
+
constructor(requestData, timeout) {
|
|
263
|
+
super(requestData, timeout);
|
|
264
|
+
this.operationCode = OperationCode.GetBackupStatisticsLeaderboardVersion;
|
|
265
|
+
this.operationEncrypted = true;
|
|
266
|
+
this.requestType = RequestType.Dashboard;
|
|
267
|
+
this.requestRole = RequestRole.Client;
|
|
268
|
+
this.requestDataCls = DashboardModels.GetBackupStatisticsLeaderboardVersionRequestData;
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
DashboardRequestModels.GetBackupStatisticsLeaderboardVersionOperationRequest = GetBackupStatisticsLeaderboardVersionOperationRequest;
|
|
272
|
+
class GetServerGameDataOperationRequest extends CustomOperationRequestAbstract {
|
|
273
|
+
constructor(requestData, timeout) {
|
|
274
|
+
super(requestData, timeout);
|
|
275
|
+
this.operationCode = OperationCode.GetServerGameData;
|
|
276
|
+
this.operationEncrypted = true;
|
|
277
|
+
this.requestType = RequestType.Dashboard;
|
|
278
|
+
this.requestRole = RequestRole.Client;
|
|
279
|
+
this.requestDataCls = DashboardModels.GetServerGameDataRequestData;
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
DashboardRequestModels.GetServerGameDataOperationRequest = GetServerGameDataOperationRequest;
|
|
283
|
+
})(DashboardRequestModels || (DashboardRequestModels = {}));
|
|
@@ -55,4 +55,25 @@ export declare namespace DashboardResponseModels {
|
|
|
55
55
|
class SetSecretKeyAdminAccountOperationResponse extends CustomOperationResponseAbstract<DashboardModels.EmptyResponseData> {
|
|
56
56
|
constructor();
|
|
57
57
|
}
|
|
58
|
+
class GetUsernameAdminAccountOperationResponse extends CustomOperationResponseAbstract<DashboardModels.GetUsernameAdminAccountResponseData> {
|
|
59
|
+
constructor();
|
|
60
|
+
}
|
|
61
|
+
class GetAnalyticsOperationResponse extends CustomOperationResponseAbstract<DashboardModels.GetAnalyticsResponseData> {
|
|
62
|
+
constructor();
|
|
63
|
+
}
|
|
64
|
+
class GetEventCallbackCloudScriptOperationResponse extends CustomOperationResponseAbstract<DashboardModels.GetEventCallbackCloudScriptResponseData> {
|
|
65
|
+
constructor();
|
|
66
|
+
}
|
|
67
|
+
class SetEventCallbackCloudScriptOperationResponse extends CustomOperationResponseAbstract<DashboardModels.SetEventCallbackCloudScriptResponseData> {
|
|
68
|
+
constructor();
|
|
69
|
+
}
|
|
70
|
+
class ResetStatisticsLeaderboardOperationResponse extends CustomOperationResponseAbstract<DashboardModels.EmptyResponseData> {
|
|
71
|
+
constructor();
|
|
72
|
+
}
|
|
73
|
+
class GetBackupStatisticsLeaderboardVersionOperationResponse extends CustomOperationResponseAbstract<DashboardModels.GetBackupStatisticsLeaderboardVersionResponseData> {
|
|
74
|
+
constructor();
|
|
75
|
+
}
|
|
76
|
+
class GetServerGameDataOperationResponse extends CustomOperationResponseAbstract<DashboardModels.GetServerGameDataResponseData> {
|
|
77
|
+
constructor();
|
|
78
|
+
}
|
|
58
79
|
}
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
import { CustomOperationResponseAbstract } from "./../response/CustomOperationResponse";
|
|
2
|
+
import { DashboardModels } from "./DashboardModels";
|
|
3
|
+
export var DashboardResponseModels;
|
|
4
|
+
(function (DashboardResponseModels) {
|
|
5
|
+
class ChangePasswordAdminAccountOperationResponse extends CustomOperationResponseAbstract {
|
|
6
|
+
constructor() {
|
|
7
|
+
super();
|
|
8
|
+
this.responseDataCls = DashboardModels.EmptyResponseData;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
DashboardResponseModels.ChangePasswordAdminAccountOperationResponse = ChangePasswordAdminAccountOperationResponse;
|
|
12
|
+
class GetAdminAccountListOperationResponse extends CustomOperationResponseAbstract {
|
|
13
|
+
constructor() {
|
|
14
|
+
super();
|
|
15
|
+
this.responseDataCls = DashboardModels.GetAdminAccountListResponseData;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
DashboardResponseModels.GetAdminAccountListOperationResponse = GetAdminAccountListOperationResponse;
|
|
19
|
+
class GetGameInformationOperationResponse extends CustomOperationResponseAbstract {
|
|
20
|
+
constructor() {
|
|
21
|
+
super();
|
|
22
|
+
this.responseDataCls = DashboardModels.GetGameInformationResponseData;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
DashboardResponseModels.GetGameInformationOperationResponse = GetGameInformationOperationResponse;
|
|
26
|
+
class GetGameListOperationResponse extends CustomOperationResponseAbstract {
|
|
27
|
+
constructor() {
|
|
28
|
+
super();
|
|
29
|
+
this.responseDataCls = DashboardModels.GetGameListResponseData;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
DashboardResponseModels.GetGameListOperationResponse = GetGameListOperationResponse;
|
|
33
|
+
class GetMasterGameSettingsOperationResponse extends CustomOperationResponseAbstract {
|
|
34
|
+
constructor() {
|
|
35
|
+
super();
|
|
36
|
+
this.responseDataCls = DashboardModels.GetMasterGameSettingsResponseData;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
DashboardResponseModels.GetMasterGameSettingsOperationResponse = GetMasterGameSettingsOperationResponse;
|
|
40
|
+
class GetSecretInfoInformationOperationResponse extends CustomOperationResponseAbstract {
|
|
41
|
+
constructor() {
|
|
42
|
+
super();
|
|
43
|
+
this.responseDataCls = DashboardModels.GetSecretInfoInformationResponseData;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
DashboardResponseModels.GetSecretInfoInformationOperationResponse = GetSecretInfoInformationOperationResponse;
|
|
47
|
+
class GetSecretInfoListOperationResponse extends CustomOperationResponseAbstract {
|
|
48
|
+
constructor() {
|
|
49
|
+
super();
|
|
50
|
+
this.responseDataCls = DashboardModels.GetSecretInfoListResponseData;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
DashboardResponseModels.GetSecretInfoListOperationResponse = GetSecretInfoListOperationResponse;
|
|
54
|
+
class GetServerLogOperationResponse extends CustomOperationResponseAbstract {
|
|
55
|
+
constructor() {
|
|
56
|
+
super();
|
|
57
|
+
this.responseDataCls = DashboardModels.GetServerLogResponseData;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
DashboardResponseModels.GetServerLogOperationResponse = GetServerLogOperationResponse;
|
|
61
|
+
class GrantAdminAccountOperationResponse extends CustomOperationResponseAbstract {
|
|
62
|
+
constructor() {
|
|
63
|
+
super();
|
|
64
|
+
this.responseDataCls = DashboardModels.GrantAdminAccountResponseData;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
DashboardResponseModels.GrantAdminAccountOperationResponse = GrantAdminAccountOperationResponse;
|
|
68
|
+
class GrantGameOperationResponse extends CustomOperationResponseAbstract {
|
|
69
|
+
constructor() {
|
|
70
|
+
super();
|
|
71
|
+
this.responseDataCls = DashboardModels.GameWithGameIdResponseData;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
DashboardResponseModels.GrantGameOperationResponse = GrantGameOperationResponse;
|
|
75
|
+
class GrantSecretInfoOperationResponse extends CustomOperationResponseAbstract {
|
|
76
|
+
constructor() {
|
|
77
|
+
super();
|
|
78
|
+
this.responseDataCls = DashboardModels.SecretInfoWithSecretKeyResponseData;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
DashboardResponseModels.GrantSecretInfoOperationResponse = GrantSecretInfoOperationResponse;
|
|
82
|
+
class LoginByAdminAccountOperationResponse extends CustomOperationResponseAbstract {
|
|
83
|
+
constructor() {
|
|
84
|
+
super();
|
|
85
|
+
this.responseDataCls = DashboardModels.LoginByAdminAccountResponseData;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
DashboardResponseModels.LoginByAdminAccountOperationResponse = LoginByAdminAccountOperationResponse;
|
|
89
|
+
class RemoveAdminAccountOperationResponse extends CustomOperationResponseAbstract {
|
|
90
|
+
constructor() {
|
|
91
|
+
super();
|
|
92
|
+
this.responseDataCls = DashboardModels.EmptyResponseData;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
DashboardResponseModels.RemoveAdminAccountOperationResponse = RemoveAdminAccountOperationResponse;
|
|
96
|
+
class SetGameInformationOperationResponse extends CustomOperationResponseAbstract {
|
|
97
|
+
constructor() {
|
|
98
|
+
super();
|
|
99
|
+
this.responseDataCls = DashboardModels.EmptyResponseData;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
DashboardResponseModels.SetGameInformationOperationResponse = SetGameInformationOperationResponse;
|
|
103
|
+
class SetMasterGameSettingsOperationResponse extends CustomOperationResponseAbstract {
|
|
104
|
+
constructor() {
|
|
105
|
+
super();
|
|
106
|
+
this.responseDataCls = DashboardModels.EmptyResponseData;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
DashboardResponseModels.SetMasterGameSettingsOperationResponse = SetMasterGameSettingsOperationResponse;
|
|
110
|
+
class SetPasswordAdminAccountOperationResponse extends CustomOperationResponseAbstract {
|
|
111
|
+
constructor() {
|
|
112
|
+
super();
|
|
113
|
+
this.responseDataCls = DashboardModels.EmptyResponseData;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
DashboardResponseModels.SetPasswordAdminAccountOperationResponse = SetPasswordAdminAccountOperationResponse;
|
|
117
|
+
class SetSecretInfoInformationOperationResponse extends CustomOperationResponseAbstract {
|
|
118
|
+
constructor() {
|
|
119
|
+
super();
|
|
120
|
+
this.responseDataCls = DashboardModels.EmptyResponseData;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
DashboardResponseModels.SetSecretInfoInformationOperationResponse = SetSecretInfoInformationOperationResponse;
|
|
124
|
+
class SetSecretKeyAdminAccountOperationResponse extends CustomOperationResponseAbstract {
|
|
125
|
+
constructor() {
|
|
126
|
+
super();
|
|
127
|
+
this.responseDataCls = DashboardModels.EmptyResponseData;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
DashboardResponseModels.SetSecretKeyAdminAccountOperationResponse = SetSecretKeyAdminAccountOperationResponse;
|
|
131
|
+
class GetUsernameAdminAccountOperationResponse extends CustomOperationResponseAbstract {
|
|
132
|
+
constructor() {
|
|
133
|
+
super();
|
|
134
|
+
this.responseDataCls = DashboardModels.GetUsernameAdminAccountResponseData;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
DashboardResponseModels.GetUsernameAdminAccountOperationResponse = GetUsernameAdminAccountOperationResponse;
|
|
138
|
+
class GetAnalyticsOperationResponse extends CustomOperationResponseAbstract {
|
|
139
|
+
constructor() {
|
|
140
|
+
super();
|
|
141
|
+
this.responseDataCls = DashboardModels.GetAnalyticsResponseData;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
DashboardResponseModels.GetAnalyticsOperationResponse = GetAnalyticsOperationResponse;
|
|
145
|
+
class GetEventCallbackCloudScriptOperationResponse extends CustomOperationResponseAbstract {
|
|
146
|
+
constructor() {
|
|
147
|
+
super();
|
|
148
|
+
this.responseDataCls = DashboardModels.GetEventCallbackCloudScriptResponseData;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
DashboardResponseModels.GetEventCallbackCloudScriptOperationResponse = GetEventCallbackCloudScriptOperationResponse;
|
|
152
|
+
class SetEventCallbackCloudScriptOperationResponse extends CustomOperationResponseAbstract {
|
|
153
|
+
constructor() {
|
|
154
|
+
super();
|
|
155
|
+
this.responseDataCls = DashboardModels.SetEventCallbackCloudScriptResponseData;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
DashboardResponseModels.SetEventCallbackCloudScriptOperationResponse = SetEventCallbackCloudScriptOperationResponse;
|
|
159
|
+
class ResetStatisticsLeaderboardOperationResponse extends CustomOperationResponseAbstract {
|
|
160
|
+
constructor() {
|
|
161
|
+
super();
|
|
162
|
+
this.responseDataCls = DashboardModels.EmptyResponseData;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
DashboardResponseModels.ResetStatisticsLeaderboardOperationResponse = ResetStatisticsLeaderboardOperationResponse;
|
|
166
|
+
class GetBackupStatisticsLeaderboardVersionOperationResponse extends CustomOperationResponseAbstract {
|
|
167
|
+
constructor() {
|
|
168
|
+
super();
|
|
169
|
+
this.responseDataCls = DashboardModels.GetBackupStatisticsLeaderboardVersionResponseData;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
DashboardResponseModels.GetBackupStatisticsLeaderboardVersionOperationResponse = GetBackupStatisticsLeaderboardVersionOperationResponse;
|
|
173
|
+
class GetServerGameDataOperationResponse extends CustomOperationResponseAbstract {
|
|
174
|
+
constructor() {
|
|
175
|
+
super();
|
|
176
|
+
this.responseDataCls = DashboardModels.GetServerGameDataResponseData;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
DashboardResponseModels.GetServerGameDataOperationResponse = GetServerGameDataOperationResponse;
|
|
180
|
+
})(DashboardResponseModels || (DashboardResponseModels = {}));
|
|
@@ -278,6 +278,7 @@ export declare namespace GamePlayerModels {
|
|
|
278
278
|
skip?: number;
|
|
279
279
|
limit?: number;
|
|
280
280
|
loadFromCache?: boolean;
|
|
281
|
+
version?: string;
|
|
281
282
|
}
|
|
282
283
|
class ServerGetStatisticsLeaderboardRequestData extends GetStatisticsLeaderboardRequestData {
|
|
283
284
|
}
|
|
@@ -558,8 +559,10 @@ export declare namespace GamePlayerModels {
|
|
|
558
559
|
}
|
|
559
560
|
class GamePlayerLeaderboardResponseData extends GamePlayerWithUserIdResponseData {
|
|
560
561
|
position: number;
|
|
562
|
+
backupValue?: number;
|
|
561
563
|
}
|
|
562
|
-
class GamePlayerLogResponseData
|
|
564
|
+
class GamePlayerLogResponseData {
|
|
565
|
+
userId: string;
|
|
563
566
|
tsCreate: number;
|
|
564
567
|
log: string;
|
|
565
568
|
key: string;
|
|
@@ -569,6 +572,7 @@ export declare namespace GamePlayerModels {
|
|
|
569
572
|
}
|
|
570
573
|
class GetStatisticsLeaderboardResponseData {
|
|
571
574
|
results: Array<GamePlayerLeaderboardResponseData>;
|
|
575
|
+
tsCreate: number;
|
|
572
576
|
}
|
|
573
577
|
class GetCurrencyLeaderboardResponseData {
|
|
574
578
|
results: Array<GamePlayerLeaderboardResponseData>;
|