com.xmobitea.changx.gn-unity 2.0.3 → 2.4.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/Editor/GNServerSettingsEditor.cs +16 -300
- package/Runtime/Common/GNArray.cs +387 -302
- package/Runtime/Common/GNArray.cs.meta +11 -11
- package/Runtime/Common/GNData.cs +61 -48
- package/Runtime/Common/GNData.cs.meta +11 -11
- package/Runtime/Common/GNHashtable.cs +404 -241
- package/Runtime/Common/GNHashtable.cs.meta +11 -11
- package/Runtime/Common/IGNData.cs +20 -11
- package/Runtime/Common/IGNData.cs.meta +11 -11
- package/Runtime/Common.meta +8 -8
- package/Runtime/Config/GNServerSettings.cs +136 -92
- package/Runtime/Config/GNServerSettings.cs.meta +11 -11
- package/Runtime/Config.meta +8 -8
- package/Runtime/Constant/Commands.cs +82 -19
- package/Runtime/Constant/Commands.cs.meta +11 -11
- package/Runtime/Constant/EnumType/FriendStatus.cs +12 -12
- package/Runtime/Constant/EnumType/FriendStatus.cs.meta +11 -11
- package/Runtime/Constant/EnumType/GoogleLoginType.cs +5 -5
- package/Runtime/Constant/EnumType/GoogleLoginType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/GroupStatus.cs +7 -7
- package/Runtime/Constant/EnumType/GroupStatus.cs.meta +11 -11
- package/Runtime/Constant/EnumType/InvalidMemberType.cs +23 -23
- package/Runtime/Constant/EnumType/InvalidMemberType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/ItemType.cs +5 -5
- package/Runtime/Constant/EnumType/ItemType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/MatchmakingMemberStatus.cs +6 -6
- package/Runtime/Constant/EnumType/MatchmakingMemberStatus.cs.meta +11 -11
- package/Runtime/Constant/EnumType/MatchmakingTicketStatus.cs +2 -2
- package/Runtime/Constant/EnumType/MatchmakingTicketStatus.cs.meta +11 -11
- package/Runtime/Constant/EnumType/OwnerType.cs +3 -2
- package/Runtime/Constant/EnumType/OwnerType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/PermissionDataItem.cs +10 -10
- package/Runtime/Constant/EnumType/PermissionDataItem.cs.meta +11 -11
- package/Runtime/Constant/EnumType/PushPlatformType.cs +10 -0
- package/Runtime/Constant/EnumType/PushPlatformType.cs.meta +11 -0
- package/Runtime/Constant/EnumType/RequestRole.cs +11 -11
- package/Runtime/Constant/EnumType/RequestRole.cs.meta +7 -7
- package/Runtime/Constant/EnumType/RequestType.cs +20 -19
- package/Runtime/Constant/EnumType/RequestType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/StoreReceiveType.cs +13 -0
- package/Runtime/Constant/EnumType/StoreReceiveType.cs.meta +11 -0
- package/Runtime/Constant/EnumType.meta +8 -8
- package/Runtime/Constant/ErrorCode/GNErrorCode.cs +53 -48
- package/Runtime/Constant/ErrorCode/GNErrorCode.cs.meta +7 -7
- package/Runtime/Constant/ErrorCode.meta +8 -8
- package/Runtime/Constant/EventCode.cs +43 -16
- package/Runtime/Constant/EventCode.cs.meta +11 -11
- package/Runtime/Constant/OperationCode.cs +249 -211
- package/Runtime/Constant/OperationCode.cs.meta +11 -11
- package/Runtime/Constant/ParameterCode/GNParameterCode.cs +614 -466
- package/Runtime/Constant/ParameterCode/GNParameterCode.cs.meta +11 -11
- package/Runtime/Constant/ParameterCode/ParameterCode.cs +12 -12
- package/Runtime/Constant/ParameterCode/ParameterCode.cs.meta +11 -11
- package/Runtime/Constant/ParameterCode.meta +8 -8
- package/Runtime/Constant/ReturnCode.cs +73 -25
- package/Runtime/Constant/ReturnCode.cs.meta +11 -11
- package/Runtime/Constant.meta +8 -8
- package/Runtime/Entity/DataMember.cs +342 -124
- package/Runtime/Entity/DataMember.cs.meta +11 -11
- package/Runtime/Entity/GNMetadata.cs +72 -27
- package/Runtime/Entity/GNMetadata.cs.meta +11 -11
- package/Runtime/Entity/InvalidMember.cs +52 -33
- package/Runtime/Entity/InvalidMember.cs.meta +11 -11
- package/Runtime/Entity/Models/AuthenticateModels.cs +251 -207
- package/Runtime/Entity/Models/AuthenticateModels.cs.meta +11 -11
- package/Runtime/Entity/Models/AuthenticateRequestModels.cs +153 -131
- package/Runtime/Entity/Models/AuthenticateRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/AuthenticateResponseModels.cs +61 -51
- package/Runtime/Entity/Models/AuthenticateResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/CharacterPlayerModels.cs +985 -849
- package/Runtime/Entity/Models/CharacterPlayerModels.cs.meta +11 -11
- package/Runtime/Entity/Models/CharacterPlayerRequestModels.cs +957 -885
- package/Runtime/Entity/Models/CharacterPlayerRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/CharacterPlayerResponseModels.cs +165 -150
- package/Runtime/Entity/Models/CharacterPlayerResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/CloudScriptModels.cs +185 -0
- package/Runtime/Entity/Models/CloudScriptModels.cs.meta +11 -0
- package/Runtime/Entity/Models/CloudScriptRequestModels.cs +134 -0
- package/Runtime/Entity/Models/CloudScriptRequestModels.cs.meta +11 -0
- package/Runtime/Entity/Models/CloudScriptResponseModels.cs +34 -0
- package/Runtime/Entity/Models/CloudScriptResponseModels.cs.meta +11 -0
- package/Runtime/Entity/Models/ContentModels.cs +150 -153
- package/Runtime/Entity/Models/ContentModels.cs.meta +11 -11
- package/Runtime/Entity/Models/ContentRequestModels.cs +129 -129
- package/Runtime/Entity/Models/ContentRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/ContentResponseModels.cs +24 -24
- package/Runtime/Entity/Models/ContentResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/DashboardModels.cs +1684 -1156
- package/Runtime/Entity/Models/DashboardModels.cs.meta +11 -11
- package/Runtime/Entity/Models/DashboardRequestModels.cs +220 -147
- package/Runtime/Entity/Models/DashboardRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/DashboardResponseModels.cs +92 -57
- package/Runtime/Entity/Models/DashboardResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GamePlayerModels.cs +1073 -933
- package/Runtime/Entity/Models/GamePlayerModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GamePlayerRequestModels.cs +939 -867
- package/Runtime/Entity/Models/GamePlayerRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GamePlayerResponseModels.cs +162 -147
- package/Runtime/Entity/Models/GamePlayerResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GenericModels.cs +102 -102
- package/Runtime/Entity/Models/GenericModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GroupModels.cs +812 -676
- package/Runtime/Entity/Models/GroupModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GroupRequestModels.cs +741 -669
- package/Runtime/Entity/Models/GroupRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GroupResponseModels.cs +129 -114
- package/Runtime/Entity/Models/GroupResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/InventoryModels.cs +667 -558
- package/Runtime/Entity/Models/InventoryModels.cs.meta +11 -11
- package/Runtime/Entity/Models/InventoryRequestModels.cs +626 -579
- package/Runtime/Entity/Models/InventoryRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/InventoryResponseModels.cs +109 -99
- package/Runtime/Entity/Models/InventoryResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MasterPlayerModels.cs +1882 -1340
- package/Runtime/Entity/Models/MasterPlayerModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MasterPlayerRequestModels.cs +1643 -1253
- package/Runtime/Entity/Models/MasterPlayerRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MasterPlayerResponseModels.cs +293 -213
- package/Runtime/Entity/Models/MasterPlayerResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MultiplayerModels.cs +293 -223
- package/Runtime/Entity/Models/MultiplayerModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MultiplayerRequestModels.cs +199 -149
- package/Runtime/Entity/Models/MultiplayerRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MultiplayerResponseModels.cs +59 -49
- package/Runtime/Entity/Models/MultiplayerResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/StoreInventoryModels.cs +514 -323
- package/Runtime/Entity/Models/StoreInventoryModels.cs.meta +11 -11
- package/Runtime/Entity/Models/StoreInventoryRequestModels.cs +236 -165
- package/Runtime/Entity/Models/StoreInventoryRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/StoreInventoryResponseModels.cs +45 -30
- package/Runtime/Entity/Models/StoreInventoryResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models.meta +8 -8
- package/Runtime/Entity/OperationEvent.cs +111 -75
- package/Runtime/Entity/OperationEvent.cs.meta +11 -11
- package/Runtime/Entity/OperationHelper.cs +51 -35
- package/Runtime/Entity/OperationHelper.cs.meta +11 -11
- package/Runtime/Entity/OperationRequest.cs +142 -99
- package/Runtime/Entity/OperationRequest.cs.meta +11 -11
- package/Runtime/Entity/OperationResponse.cs +111 -63
- package/Runtime/Entity/OperationResponse.cs.meta +11 -11
- package/Runtime/Entity/Request/CustomOperationRequest.cs +112 -61
- package/Runtime/Entity/Request/CustomOperationRequest.cs.meta +11 -11
- package/Runtime/Entity/Request.meta +8 -8
- package/Runtime/Entity/Response/CustomOperationResponse.cs +84 -63
- package/Runtime/Entity/Response/CustomOperationResponse.cs.meta +11 -11
- package/Runtime/Entity/Response.meta +8 -8
- package/Runtime/Entity.meta +8 -8
- package/Runtime/GNNetwork.cs +501 -182
- package/Runtime/GNNetwork.cs.meta +11 -11
- package/Runtime/GNNetworkApi.cs +38 -19
- package/Runtime/GNNetworkApi.cs.meta +11 -11
- package/Runtime/GNNetworkAuthenticateApi.cs +531 -98
- package/Runtime/GNNetworkAuthenticateApi.cs.meta +11 -11
- package/Runtime/GNNetworkCharacterPlayerApi.cs +1587 -762
- package/Runtime/GNNetworkCharacterPlayerApi.cs.meta +11 -11
- package/Runtime/GNNetworkCloudScriptApi.cs +181 -0
- package/Runtime/GNNetworkCloudScriptApi.cs.meta +11 -0
- package/Runtime/GNNetworkContentApi.cs +238 -132
- package/Runtime/GNNetworkContentApi.cs.meta +11 -11
- package/Runtime/GNNetworkDashboardApi.cs +278 -117
- package/Runtime/GNNetworkDashboardApi.cs.meta +11 -11
- package/Runtime/GNNetworkGamePlayerApi.cs +1558 -747
- package/Runtime/GNNetworkGamePlayerApi.cs.meta +11 -11
- package/Runtime/GNNetworkGroupApi.cs +1228 -582
- package/Runtime/GNNetworkGroupApi.cs.meta +11 -11
- package/Runtime/GNNetworkInventoryApi.cs +1048 -507
- package/Runtime/GNNetworkInventoryApi.cs.meta +11 -11
- package/Runtime/GNNetworkMasterPlayerApi.cs +2586 -1067
- package/Runtime/GNNetworkMasterPlayerApi.cs.meta +11 -11
- package/Runtime/GNNetworkMultiplayerApi.cs +328 -147
- package/Runtime/GNNetworkMultiplayerApi.cs.meta +11 -11
- package/Runtime/GNNetworkStoreInventoryApi.cs +388 -162
- package/Runtime/GNNetworkStoreInventoryApi.cs.meta +11 -11
- package/Runtime/Helper/CodeHelper.cs +140 -98
- package/Runtime/Helper/CodeHelper.cs.meta +11 -11
- package/Runtime/Helper/ConverterService.cs +236 -52
- package/Runtime/Helper/ConverterService.cs.meta +11 -11
- package/Runtime/Helper/ParseGNHelper.cs +451 -451
- package/Runtime/Helper/ParseGNHelper.cs.meta +11 -11
- package/Runtime/Helper.meta +8 -8
- package/Runtime/Logger/GNDebug.cs +92 -49
- package/Runtime/Logger/GNDebug.cs.meta +11 -11
- package/Runtime/Logger.meta +8 -8
- package/Runtime/Networking/AuthenticateStatus.cs +57 -35
- package/Runtime/Networking/AuthenticateStatus.cs.meta +11 -11
- package/Runtime/Networking/Handler/IServerEventHandler.cs +25 -25
- package/Runtime/Networking/Handler/IServerEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnCharacterPlayerFriendUpdateEventHandler.cs +61 -32
- package/Runtime/Networking/Handler/OnCharacterPlayerFriendUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnCharacterPlayerGroupUpdateEventHandler.cs +54 -33
- package/Runtime/Networking/Handler/OnCharacterPlayerGroupUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnGamePlayerFriendUpdateEventHandler.cs +54 -32
- package/Runtime/Networking/Handler/OnGamePlayerFriendUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnGamePlayerGroupUpdateEventHandler.cs +54 -32
- package/Runtime/Networking/Handler/OnGamePlayerGroupUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnGroupMemberUpdateEventHandler.cs +48 -29
- package/Runtime/Networking/Handler/OnGroupMemberUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnGroupMessageUpdateEventHandler.cs +47 -29
- package/Runtime/Networking/Handler/OnGroupMessageUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler.meta +8 -8
- package/Runtime/Networking/Http/HttpPeer.cs +68 -25
- package/Runtime/Networking/Http/HttpPeer.cs.meta +11 -11
- package/Runtime/Networking/Http/NetworkingHttpPeerBase.cs +65 -25
- package/Runtime/Networking/Http/NetworkingHttpPeerBase.cs.meta +11 -11
- package/Runtime/Networking/Http/NetworkingPeerHttpClientRequest.cs +513 -486
- package/Runtime/Networking/Http/NetworkingPeerHttpClientRequest.cs.meta +11 -11
- package/Runtime/Networking/Http/NetworkingPeerHttpRequest.cs +172 -142
- package/Runtime/Networking/Http/NetworkingPeerHttpRequest.cs.meta +11 -11
- package/Runtime/Networking/Http/NetworkingPeerUnityWebRequest.cs +225 -188
- package/Runtime/Networking/Http/NetworkingPeerUnityWebRequest.cs.meta +11 -11
- package/Runtime/Networking/Http.meta +8 -8
- package/Runtime/Networking/IPeer.cs +41 -19
- package/Runtime/Networking/IPeer.cs.meta +11 -11
- package/Runtime/Networking/NetworkingPeer.cs +198 -144
- package/Runtime/Networking/NetworkingPeer.cs.meta +11 -11
- package/Runtime/Networking/NetworkingPeerAPI.cs +20 -21
- package/Runtime/Networking/NetworkingPeerAPI.cs.meta +11 -11
- package/Runtime/Networking/OperationPending.cs +159 -95
- package/Runtime/Networking/OperationPending.cs.meta +11 -11
- package/Runtime/Networking/PeerBase.cs +305 -242
- package/Runtime/Networking/PeerBase.cs.meta +11 -11
- package/Runtime/Networking/Socket/NetworkingPeerSocketV2.cs +222 -185
- package/Runtime/Networking/Socket/NetworkingPeerSocketV2.cs.meta +11 -11
- package/Runtime/Networking/Socket/NetworkingPeerSocketV3.cs +235 -177
- package/Runtime/Networking/Socket/NetworkingPeerSocketV3.cs.meta +11 -11
- package/Runtime/Networking/Socket/NetworkingSocketPeerBase.cs +165 -23
- package/Runtime/Networking/Socket/NetworkingSocketPeerBase.cs.meta +11 -11
- package/Runtime/Networking/Socket/SocketPeer.cs +242 -197
- package/Runtime/Networking/Socket/SocketPeer.cs.meta +11 -11
- package/Runtime/Networking/Socket.meta +8 -8
- package/Runtime/Networking.meta +8 -8
- package/Runtime/Unity/ServiceCoroutine.cs +10 -0
- package/Runtime/Unity/ServiceCoroutine.cs.meta +11 -0
- package/Runtime/Unity/ServiceUpdate.cs +33 -20
- package/Runtime/Unity/ServiceUpdate.cs.meta +11 -11
- package/Runtime/Unity.meta +8 -8
- package/Runtime/XmobiTea.GN.runtime.asmdef +16 -16
- package/Runtime/XmobiTea.GN.runtime.asmdef.meta +7 -7
- package/package.json +1 -1
|
@@ -1,121 +1,282 @@
|
|
|
1
1
|
namespace XmobiTea.GN
|
|
2
2
|
{
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
3
|
+
using System;
|
|
4
|
+
using System.Threading.Tasks;
|
|
5
|
+
using XmobiTea.GN.Common;
|
|
6
|
+
using XmobiTea.GN.Entity;
|
|
7
|
+
using XmobiTea.GN.Entity.Models;
|
|
8
|
+
|
|
9
|
+
public class DashboardApi
|
|
10
|
+
{
|
|
11
|
+
public ServerApi server { get; } = new ServerApi();
|
|
12
|
+
|
|
13
|
+
public AdminApi admin { get; } = new AdminApi();
|
|
14
|
+
|
|
15
|
+
public void changePasswordAdminAccount(DashboardModels.ChangePasswordAdminAccountRequestData requestData, Action<DashboardResponseModels.ChangePasswordAdminAccountOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
16
|
+
{
|
|
17
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.ChangePasswordAdminAccountOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
public Task<DashboardResponseModels.ChangePasswordAdminAccountOperationResponse> changePasswordAdminAccountAsync(DashboardModels.ChangePasswordAdminAccountRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
21
|
+
{
|
|
22
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.ChangePasswordAdminAccountOperationRequest, DashboardResponseModels.ChangePasswordAdminAccountOperationResponse>(new DashboardRequestModels.ChangePasswordAdminAccountOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
public void getAdminAccountList(DashboardModels.GetAdminAccountListRequestData requestData, Action<DashboardResponseModels.GetAdminAccountListOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
26
|
+
{
|
|
27
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.GetAdminAccountListOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
public Task<DashboardResponseModels.GetAdminAccountListOperationResponse> getAdminAccountListAsync(DashboardModels.GetAdminAccountListRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
31
|
+
{
|
|
32
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.GetAdminAccountListOperationRequest, DashboardResponseModels.GetAdminAccountListOperationResponse>(new DashboardRequestModels.GetAdminAccountListOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
public void getGameInformation(DashboardModels.GetGameInformationRequestData requestData, Action<DashboardResponseModels.GetGameInformationOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
36
|
+
{
|
|
37
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.GetGameInformationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
public Task<DashboardResponseModels.GetGameInformationOperationResponse> getGameInformationAsync(DashboardModels.GetGameInformationRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
41
|
+
{
|
|
42
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.GetGameInformationOperationRequest, DashboardResponseModels.GetGameInformationOperationResponse>(new DashboardRequestModels.GetGameInformationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
public void getGameList(DashboardModels.GetGameListRequestData requestData, Action<DashboardResponseModels.GetGameListOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
46
|
+
{
|
|
47
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.GetGameListOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
public Task<DashboardResponseModels.GetGameListOperationResponse> getGameListAsync(DashboardModels.GetGameListRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
51
|
+
{
|
|
52
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.GetGameListOperationRequest, DashboardResponseModels.GetGameListOperationResponse>(new DashboardRequestModels.GetGameListOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
public void getMasterGameSettings(DashboardModels.GetMasterGameSettingsRequestData requestData, Action<DashboardResponseModels.GetMasterGameSettingsOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
56
|
+
{
|
|
57
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.GetMasterGameSettingsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
public Task<DashboardResponseModels.GetMasterGameSettingsOperationResponse> getMasterGameSettingsAsync(DashboardModels.GetMasterGameSettingsRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
61
|
+
{
|
|
62
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.GetMasterGameSettingsOperationRequest, DashboardResponseModels.GetMasterGameSettingsOperationResponse>(new DashboardRequestModels.GetMasterGameSettingsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
public void getSecretInfoInformation(DashboardModels.GetSecretInfoInformationRequestData requestData, Action<DashboardResponseModels.GetSecretInfoInformationOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
66
|
+
{
|
|
67
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.GetSecretInfoInformationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
public Task<DashboardResponseModels.GetSecretInfoInformationOperationResponse> getSecretInfoInformationAsync(DashboardModels.GetSecretInfoInformationRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
71
|
+
{
|
|
72
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.GetSecretInfoInformationOperationRequest, DashboardResponseModels.GetSecretInfoInformationOperationResponse>(new DashboardRequestModels.GetSecretInfoInformationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
public void getSecretInfoList(DashboardModels.GetSecretInfoListRequestData requestData, Action<DashboardResponseModels.GetSecretInfoListOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
76
|
+
{
|
|
77
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.GetSecretInfoListOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
public Task<DashboardResponseModels.GetSecretInfoListOperationResponse> getSecretInfoListAsync(DashboardModels.GetSecretInfoListRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
81
|
+
{
|
|
82
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.GetSecretInfoListOperationRequest, DashboardResponseModels.GetSecretInfoListOperationResponse>(new DashboardRequestModels.GetSecretInfoListOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
public void getServerLog(DashboardModels.GetServerLogRequestData requestData, Action<DashboardResponseModels.GetServerLogOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
86
|
+
{
|
|
87
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.GetServerLogOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
public Task<DashboardResponseModels.GetServerLogOperationResponse> getServerLogAsync(DashboardModels.GetServerLogRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
91
|
+
{
|
|
92
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.GetServerLogOperationRequest, DashboardResponseModels.GetServerLogOperationResponse>(new DashboardRequestModels.GetServerLogOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
public void grantAdminAccount(DashboardModels.GrantAdminAccountRequestData requestData, Action<DashboardResponseModels.GrantAdminAccountOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
96
|
+
{
|
|
97
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.GrantAdminAccountOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
public Task<DashboardResponseModels.GrantAdminAccountOperationResponse> grantAdminAccountAsync(DashboardModels.GrantAdminAccountRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
101
|
+
{
|
|
102
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.GrantAdminAccountOperationRequest, DashboardResponseModels.GrantAdminAccountOperationResponse>(new DashboardRequestModels.GrantAdminAccountOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
public void grantGame(DashboardModels.GrantGameRequestData requestData, Action<DashboardResponseModels.GrantGameOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
106
|
+
{
|
|
107
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.GrantGameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
public Task<DashboardResponseModels.GrantGameOperationResponse> grantGameAsync(DashboardModels.GrantGameRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
111
|
+
{
|
|
112
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.GrantGameOperationRequest, DashboardResponseModels.GrantGameOperationResponse>(new DashboardRequestModels.GrantGameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
public void grantSecretInfo(DashboardModels.GrantSecretInfoRequestData requestData, Action<DashboardResponseModels.GrantSecretInfoOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
116
|
+
{
|
|
117
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.GrantSecretInfoOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
public Task<DashboardResponseModels.GrantSecretInfoOperationResponse> grantSecretInfoAsync(DashboardModels.GrantSecretInfoRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
121
|
+
{
|
|
122
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.GrantSecretInfoOperationRequest, DashboardResponseModels.GrantSecretInfoOperationResponse>(new DashboardRequestModels.GrantSecretInfoOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
public void loginByAdminAccount(DashboardModels.LoginByAdminAccountRequestData requestData, Action<DashboardResponseModels.LoginByAdminAccountOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
126
|
+
{
|
|
127
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.LoginByAdminAccountOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
public Task<DashboardResponseModels.LoginByAdminAccountOperationResponse> loginByAdminAccountAsync(DashboardModels.LoginByAdminAccountRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
131
|
+
{
|
|
132
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.LoginByAdminAccountOperationRequest, DashboardResponseModels.LoginByAdminAccountOperationResponse>(new DashboardRequestModels.LoginByAdminAccountOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
public void removeAdminAccount(DashboardModels.RemoveAdminAccountRequestData requestData, Action<DashboardResponseModels.RemoveAdminAccountOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
136
|
+
{
|
|
137
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.RemoveAdminAccountOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
public Task<DashboardResponseModels.RemoveAdminAccountOperationResponse> removeAdminAccountAsync(DashboardModels.RemoveAdminAccountRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
141
|
+
{
|
|
142
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.RemoveAdminAccountOperationRequest, DashboardResponseModels.RemoveAdminAccountOperationResponse>(new DashboardRequestModels.RemoveAdminAccountOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
public void setGameInformation(DashboardModels.SetGameInformationRequestData requestData, Action<DashboardResponseModels.SetGameInformationOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
146
|
+
{
|
|
147
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.SetGameInformationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
public Task<DashboardResponseModels.SetGameInformationOperationResponse> setGameInformationAsync(DashboardModels.SetGameInformationRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
151
|
+
{
|
|
152
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.SetGameInformationOperationRequest, DashboardResponseModels.SetGameInformationOperationResponse>(new DashboardRequestModels.SetGameInformationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
public void setMasterGameSettings(DashboardModels.SetMasterGameSettingsRequestData requestData, Action<DashboardResponseModels.SetMasterGameSettingsOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
156
|
+
{
|
|
157
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.SetMasterGameSettingsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
public Task<DashboardResponseModels.SetMasterGameSettingsOperationResponse> setMasterGameSettingsAsync(DashboardModels.SetMasterGameSettingsRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
161
|
+
{
|
|
162
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.SetMasterGameSettingsOperationRequest, DashboardResponseModels.SetMasterGameSettingsOperationResponse>(new DashboardRequestModels.SetMasterGameSettingsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
public void setPasswordAdminAccount(DashboardModels.SetPasswordAdminAccountRequestData requestData, Action<DashboardResponseModels.SetPasswordAdminAccountOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
166
|
+
{
|
|
167
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.SetPasswordAdminAccountOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
public Task<DashboardResponseModels.SetPasswordAdminAccountOperationResponse> setPasswordAdminAccountAsync(DashboardModels.SetPasswordAdminAccountRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
171
|
+
{
|
|
172
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.SetPasswordAdminAccountOperationRequest, DashboardResponseModels.SetPasswordAdminAccountOperationResponse>(new DashboardRequestModels.SetPasswordAdminAccountOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
public void setSecretInfoInformation(DashboardModels.SetSecretInfoInformationRequestData requestData, Action<DashboardResponseModels.SetSecretInfoInformationOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
176
|
+
{
|
|
177
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.SetSecretInfoInformationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
public Task<DashboardResponseModels.SetSecretInfoInformationOperationResponse> setSecretInfoInformationAsync(DashboardModels.SetSecretInfoInformationRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
181
|
+
{
|
|
182
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.SetSecretInfoInformationOperationRequest, DashboardResponseModels.SetSecretInfoInformationOperationResponse>(new DashboardRequestModels.SetSecretInfoInformationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
public void setSecretKeyAdminAccount(DashboardModels.SetSecretKeyAdminAccountRequestData requestData, Action<DashboardResponseModels.SetSecretKeyAdminAccountOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
186
|
+
{
|
|
187
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.SetSecretKeyAdminAccountOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
public Task<DashboardResponseModels.SetSecretKeyAdminAccountOperationResponse> setSecretKeyAdminAccountAsync(DashboardModels.SetSecretKeyAdminAccountRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
191
|
+
{
|
|
192
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.SetSecretKeyAdminAccountOperationRequest, DashboardResponseModels.SetSecretKeyAdminAccountOperationResponse>(new DashboardRequestModels.SetSecretKeyAdminAccountOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
public void getUsernameAdminAccount(DashboardModels.GetUsernameAdminAccountRequestData requestData, Action<DashboardResponseModels.GetUsernameAdminAccountOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
196
|
+
{
|
|
197
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.GetUsernameAdminAccountOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
public Task<DashboardResponseModels.GetUsernameAdminAccountOperationResponse> getUsernameAdminAccountAsync(DashboardModels.GetUsernameAdminAccountRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
201
|
+
{
|
|
202
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.GetUsernameAdminAccountOperationRequest, DashboardResponseModels.GetUsernameAdminAccountOperationResponse>(new DashboardRequestModels.GetUsernameAdminAccountOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
public void getAnalytics(DashboardModels.GetAnalyticsRequestData requestData, Action<DashboardResponseModels.GetAnalyticsOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
206
|
+
{
|
|
207
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.GetAnalyticsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
public Task<DashboardResponseModels.GetAnalyticsOperationResponse> getAnalyticsAsync(DashboardModels.GetAnalyticsRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
211
|
+
{
|
|
212
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.GetAnalyticsOperationRequest, DashboardResponseModels.GetAnalyticsOperationResponse>(new DashboardRequestModels.GetAnalyticsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
public void getEventCallbackCloudScript(DashboardModels.GetEventCallbackCloudScriptRequestData requestData, Action<DashboardResponseModels.GetEventCallbackCloudScriptOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
216
|
+
{
|
|
217
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.GetEventCallbackCloudScriptOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
public Task<DashboardResponseModels.GetEventCallbackCloudScriptOperationResponse> getEventCallbackCloudScriptAsync(DashboardModels.GetEventCallbackCloudScriptRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
221
|
+
{
|
|
222
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.GetEventCallbackCloudScriptOperationRequest, DashboardResponseModels.GetEventCallbackCloudScriptOperationResponse>(new DashboardRequestModels.GetEventCallbackCloudScriptOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
public void setEventCallbackCloudScript(DashboardModels.SetEventCallbackCloudScriptRequestData requestData, Action<DashboardResponseModels.SetEventCallbackCloudScriptOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
226
|
+
{
|
|
227
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.SetEventCallbackCloudScriptOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
public Task<DashboardResponseModels.SetEventCallbackCloudScriptOperationResponse> setEventCallbackCloudScriptAsync(DashboardModels.SetEventCallbackCloudScriptRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
231
|
+
{
|
|
232
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.SetEventCallbackCloudScriptOperationRequest, DashboardResponseModels.SetEventCallbackCloudScriptOperationResponse>(new DashboardRequestModels.SetEventCallbackCloudScriptOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
public void resetStatisticsLeaderboard(DashboardModels.ResetStatisticsLeaderboardRequestData requestData, Action<DashboardResponseModels.ResetStatisticsLeaderboardOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
236
|
+
{
|
|
237
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.ResetStatisticsLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
public Task<DashboardResponseModels.ResetStatisticsLeaderboardOperationResponse> resetStatisticsLeaderboardAsync(DashboardModels.ResetStatisticsLeaderboardRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
241
|
+
{
|
|
242
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.ResetStatisticsLeaderboardOperationRequest, DashboardResponseModels.ResetStatisticsLeaderboardOperationResponse>(new DashboardRequestModels.ResetStatisticsLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
public void getBackupStatisticsLeaderboardVersion(DashboardModels.GetBackupStatisticsLeaderboardVersionRequestData requestData, Action<DashboardResponseModels.GetBackupStatisticsLeaderboardVersionOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
246
|
+
{
|
|
247
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.GetBackupStatisticsLeaderboardVersionOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
public Task<DashboardResponseModels.GetBackupStatisticsLeaderboardVersionOperationResponse> getBackupStatisticsLeaderboardVersionAsync(DashboardModels.GetBackupStatisticsLeaderboardVersionRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
251
|
+
{
|
|
252
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.GetBackupStatisticsLeaderboardVersionOperationRequest, DashboardResponseModels.GetBackupStatisticsLeaderboardVersionOperationResponse>(new DashboardRequestModels.GetBackupStatisticsLeaderboardVersionOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
public void getServerGameData(DashboardModels.GetServerGameDataRequestData requestData, Action<DashboardResponseModels.GetServerGameDataOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
256
|
+
{
|
|
257
|
+
GNNetwork.sendViaHttp(new DashboardRequestModels.GetServerGameDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
public Task<DashboardResponseModels.GetServerGameDataOperationResponse> getServerGameDataAsync(DashboardModels.GetServerGameDataRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
261
|
+
{
|
|
262
|
+
return GNNetwork.sendViaHttpAsync<DashboardRequestModels.GetServerGameDataOperationRequest, DashboardResponseModels.GetServerGameDataOperationResponse>(new DashboardRequestModels.GetServerGameDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
public class ServerApi
|
|
267
|
+
{
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
public class AdminApi
|
|
271
|
+
{
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
public static partial class GNNetwork
|
|
277
|
+
{
|
|
278
|
+
|
|
279
|
+
public static DashboardApi dashboard { get; }
|
|
280
|
+
}
|
|
120
281
|
|
|
121
282
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: ca52f59957932db49a88223fdc67ddb7
|
|
3
|
-
MonoImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
serializedVersion: 2
|
|
6
|
-
defaultReferences: []
|
|
7
|
-
executionOrder: 0
|
|
8
|
-
icon: {instanceID: 0}
|
|
9
|
-
userData:
|
|
10
|
-
assetBundleName:
|
|
11
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: ca52f59957932db49a88223fdc67ddb7
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData:
|
|
10
|
+
assetBundleName:
|
|
11
|
+
assetBundleVariant:
|