@xmobitea/gn-typescript-client 1.0.9 → 2.0.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/GNServerSettingsConfig.debug.json +5 -5
- package/dist/gn.js.client.min.js +1 -1
- package/dist/index.d.ts +124 -184
- package/dist/index.js +1 -1
- package/dist/runtime/GNNetwork.d.ts +35 -93
- package/dist/runtime/GNNetworkAuthenticateApi.d.ts +27 -0
- package/dist/runtime/GNNetworkCharacterPlayerApi.d.ts +156 -0
- package/dist/runtime/GNNetworkContentApi.d.ts +33 -0
- package/dist/runtime/GNNetworkDashboardApi.d.ts +30 -0
- package/dist/runtime/GNNetworkGamePlayerApi.d.ts +153 -0
- package/dist/runtime/GNNetworkGroupApi.d.ts +120 -0
- package/dist/runtime/GNNetworkInventoryApi.d.ts +108 -0
- package/dist/runtime/GNNetworkMasterPlayerApi.d.ts +217 -0
- package/dist/runtime/GNNetworkStoreInventoryApi.d.ts +39 -0
- package/dist/runtime/config/GNServerSettings.d.ts +12 -4
- package/dist/runtime/constant/Commands.d.ts +2 -1
- package/dist/runtime/constant/EventCode.d.ts +6 -4
- package/dist/runtime/constant/OperationCode.d.ts +169 -23
- package/dist/runtime/constant/ReturnCode.d.ts +2 -0
- package/dist/runtime/constant/enumType/FriendStatus.d.ts +1 -1
- package/dist/runtime/constant/enumType/GroupStatus.d.ts +6 -0
- package/dist/runtime/constant/enumType/ItemType.d.ts +4 -0
- package/dist/runtime/constant/enumType/OwnerType.d.ts +6 -0
- package/dist/runtime/constant/enumType/PermissionDataItem.d.ts +4 -0
- package/dist/runtime/constant/enumType/RequestRole.d.ts +5 -0
- package/dist/runtime/constant/enumType/RequestType.d.ts +12 -0
- package/dist/runtime/constant/enumType/StatisticsAggregationMethod.d.ts +6 -0
- package/dist/runtime/constant/errorCode/GNErrorCode.d.ts +39 -0
- package/dist/runtime/constant/parameterCode/GNParameterCode.d.ts +375 -0
- package/dist/runtime/entity/DataMember.d.ts +1 -0
- package/dist/runtime/entity/GNMetadata.d.ts +1 -0
- package/dist/runtime/entity/InvalidMember.d.ts +2 -2
- package/dist/runtime/entity/OperationEvent.d.ts +1 -1
- package/dist/runtime/entity/OperationHelper.d.ts +4 -13
- package/dist/runtime/entity/OperationRequest.d.ts +2 -4
- package/dist/runtime/entity/OperationResponse.d.ts +1 -1
- package/dist/runtime/entity/models/AuthenticateModels.d.ts +108 -0
- package/dist/runtime/entity/models/AuthenticateRequestModels.d.ts +111 -0
- package/dist/runtime/entity/models/AuthenticateResponseModels.d.ts +34 -0
- package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +493 -0
- package/dist/runtime/entity/models/CharacterPlayerRequestModels.d.ts +726 -0
- package/dist/runtime/entity/models/CharacterPlayerResponseModels.d.ts +100 -0
- package/dist/runtime/entity/models/ContentModels.d.ts +90 -0
- package/dist/runtime/entity/models/ContentRequestModels.d.ts +111 -0
- package/dist/runtime/entity/models/ContentResponseModels.d.ts +18 -0
- package/dist/runtime/entity/models/DashboardModels.d.ts +545 -0
- package/dist/runtime/entity/models/DashboardRequestModels.d.ts +132 -0
- package/dist/runtime/entity/models/DashboardResponseModels.d.ts +40 -0
- package/dist/runtime/entity/models/GamePlayerModels.d.ts +531 -0
- package/dist/runtime/entity/models/GamePlayerRequestModels.d.ts +711 -0
- package/dist/runtime/entity/models/GamePlayerResponseModels.d.ts +98 -0
- package/dist/runtime/entity/models/GenericModels.d.ts +59 -0
- package/dist/runtime/entity/models/GroupModels.d.ts +387 -0
- package/dist/runtime/entity/models/GroupRequestModels.d.ts +546 -0
- package/dist/runtime/entity/models/GroupResponseModels.d.ts +76 -0
- package/dist/runtime/entity/models/InventoryModels.d.ts +331 -0
- package/dist/runtime/entity/models/InventoryRequestModels.d.ts +486 -0
- package/dist/runtime/entity/models/InventoryResponseModels.d.ts +68 -0
- package/dist/runtime/entity/models/MasterPlayerModels.d.ts +767 -0
- package/dist/runtime/entity/models/MasterPlayerRequestModels.d.ts +1033 -0
- package/dist/runtime/entity/models/MasterPlayerResponseModels.d.ts +142 -0
- package/dist/runtime/entity/models/StoreInventoryModels.d.ts +187 -0
- package/dist/runtime/entity/models/StoreInventoryRequestModels.d.ts +141 -0
- package/dist/runtime/entity/models/StoreInventoryResponseModels.d.ts +22 -0
- package/dist/runtime/entity/request/CustomOperationRequest.d.ts +11 -2
- package/dist/runtime/entity/response/CustomOperationResponse.d.ts +6 -1
- package/dist/runtime/helper/CodeHelper.d.ts +3 -4
- package/dist/runtime/helper/ConverterService.d.ts +8 -10
- package/dist/runtime/networking/AuthenticateStatus.d.ts +11 -0
- package/dist/runtime/networking/IPeer.d.ts +4 -1
- package/dist/runtime/networking/NetworkingPeer.d.ts +8 -84
- package/dist/runtime/networking/OperationPending.d.ts +14 -1
- package/dist/runtime/networking/PeerBase.d.ts +5 -3
- package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.d.ts +13 -0
- package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.d.ts +13 -0
- package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.d.ts +13 -0
- package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.d.ts +13 -0
- package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.d.ts +12 -0
- package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.d.ts +12 -0
- package/dist/runtime/networking/{HttpPeer.d.ts → http/HttpPeer.d.ts} +6 -11
- package/dist/runtime/networking/http/NetworkingHttpPeerBase.d.ts +11 -0
- package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.d.ts +13 -0
- package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.d.ts +25 -0
- package/dist/runtime/networking/{NetworkingPeerBase.d.ts → socket/NetworkingSocketPeerBase.d.ts} +9 -8
- package/dist/runtime/networking/{SocketPeer.d.ts → socket/SocketPeer.d.ts} +10 -10
- package/dist/runtime/typescript/ServiceUpdate.d.ts +6 -0
- package/package.json +1 -1
- package/dist/editor/GNServerSettingsEditor.d.ts +0 -2
- package/dist/runtime/constant/enumType/PlatformType.d.ts +0 -8
- package/dist/runtime/constant/errorCode/ChatErrorCode.d.ts +0 -4
- package/dist/runtime/constant/errorCode/DebugErrorCode.d.ts +0 -3
- package/dist/runtime/constant/errorCode/EnterDisplayNameErrorCode.d.ts +0 -3
- package/dist/runtime/constant/errorCode/FetchAllDataErrorCode.d.ts +0 -4
- package/dist/runtime/constant/errorCode/FetchSparkPlayerErrorCode.d.ts +0 -4
- package/dist/runtime/constant/errorCode/FileUploadInfoErrorCode.d.ts +0 -5
- package/dist/runtime/constant/errorCode/FriendErrorCode.d.ts +0 -4
- package/dist/runtime/constant/errorCode/GetAppConfigErrorCode.d.ts +0 -3
- package/dist/runtime/constant/errorCode/LoginErrorCode.d.ts +0 -11
- package/dist/runtime/constant/errorCode/RegisterSocketErrorCode.d.ts +0 -3
- package/dist/runtime/constant/parameterCode/ChatParameterCode.d.ts +0 -22
- package/dist/runtime/constant/parameterCode/DebugParameterCode.d.ts +0 -7
- package/dist/runtime/constant/parameterCode/EnterDisplayNameParameterCode.d.ts +0 -4
- package/dist/runtime/constant/parameterCode/FetchAllDataParameterCode.d.ts +0 -7
- package/dist/runtime/constant/parameterCode/FetchSparkPlayerParameterCode.d.ts +0 -15
- package/dist/runtime/constant/parameterCode/FileUploadInfoParameterCode.d.ts +0 -11
- package/dist/runtime/constant/parameterCode/FriendParameterCode.d.ts +0 -12
- package/dist/runtime/constant/parameterCode/GetAppConfigParameterCode.d.ts +0 -4
- package/dist/runtime/constant/parameterCode/LoginParameterCode.d.ts +0 -18
- package/dist/runtime/constant/parameterCode/RegisterSocketParameterCode.d.ts +0 -3
- package/dist/runtime/entity/request/AddFriendOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/CreateNewFileUploadInfoOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/DebugOperationRequest.d.ts +0 -7
- package/dist/runtime/entity/request/EditChatInfoChannelOperationRequest.d.ts +0 -7
- package/dist/runtime/entity/request/EditChatMessageChannelOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/EditChatMessageUserOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/EnterDisplayNameOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/FetchAllDataOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/FetchSparkPlayerOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/FindPlayerOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/GetAppConfigOperationRequest.d.ts +0 -7
- package/dist/runtime/entity/request/GetChatInfoChannelOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/GetChatMemberChannelOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/GetChatMessageChannelOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/GetChatMessageUserOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/GetFileUploadInfoOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/GetFriendsOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/JoinChatChannelOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/LeaveChatChannelOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/LoginOperationRequest.d.ts +0 -33
- package/dist/runtime/entity/request/LogoutOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/RegisterAccountOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/RegisterSocketOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/RemoveFriendOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/SendChatToChannelOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/SendChatToUserOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/request/TemplateOperationRequest.d.ts +0 -6
- package/dist/runtime/entity/response/AddFriendOperationResponse.d.ts +0 -5
- package/dist/runtime/entity/response/CreateNewFileUploadInfoOperationResponse.d.ts +0 -10
- package/dist/runtime/entity/response/DebugOperationResponse.d.ts +0 -11
- package/dist/runtime/entity/response/EditChatInfoChannelOperationResponse.d.ts +0 -5
- package/dist/runtime/entity/response/EditChatMessageChannelOperationResponse.d.ts +0 -5
- package/dist/runtime/entity/response/EditChatMessageUserOperationResponse.d.ts +0 -5
- package/dist/runtime/entity/response/EnterDisplayNameOperationResponse.d.ts +0 -7
- package/dist/runtime/entity/response/FetchAllDataOperationResponse.d.ts +0 -10
- package/dist/runtime/entity/response/FetchSparkPlayerOperationResponse.d.ts +0 -20
- package/dist/runtime/entity/response/FindPlayerOperationResponse.d.ts +0 -6
- package/dist/runtime/entity/response/GetAppConfigOperationResponse.d.ts +0 -6
- package/dist/runtime/entity/response/GetChatInfoChannelOperationResponse.d.ts +0 -18
- package/dist/runtime/entity/response/GetChatMemberChannelOperationResponse.d.ts +0 -14
- package/dist/runtime/entity/response/GetChatMessageChannelOperationResponse.d.ts +0 -20
- package/dist/runtime/entity/response/GetChatMessageUserOperationResponse.d.ts +0 -17
- package/dist/runtime/entity/response/GetFileUploadInfoOperationResponse.d.ts +0 -15
- package/dist/runtime/entity/response/GetFriendsOperationResponse.d.ts +0 -13
- package/dist/runtime/entity/response/JoinChatChannelOperationResponse.d.ts +0 -5
- package/dist/runtime/entity/response/LeaveChatChannelOperationResponse.d.ts +0 -5
- package/dist/runtime/entity/response/LoginOperationResponse.d.ts +0 -9
- package/dist/runtime/entity/response/LogoutOperationResponse.d.ts +0 -5
- package/dist/runtime/entity/response/PublicAddressGetRandomMessageOperationResponse.d.ts +0 -6
- package/dist/runtime/entity/response/RegisterAccountOperationResponse.d.ts +0 -5
- package/dist/runtime/entity/response/RegisterSocketOperationResponse.d.ts +0 -5
- package/dist/runtime/entity/response/RemoveFriendOperationResponse.d.ts +0 -5
- package/dist/runtime/entity/response/SendChatToChannelOperationResponse.d.ts +0 -5
- package/dist/runtime/entity/response/SendChatToUserOperationResponse.d.ts +0 -5
- package/dist/runtime/entity/response/TemplateOperationResponse.d.ts +0 -6
- package/dist/runtime/entity/server/AvatarChannel.d.ts +0 -4
- package/dist/runtime/entity/server/ChatChannel.d.ts +0 -13
- package/dist/runtime/entity/server/ChatMessage.d.ts +0 -10
- package/dist/runtime/entity/server/ChatUser.d.ts +0 -5
- package/dist/runtime/entity/server/FriendItem.d.ts +0 -7
- package/dist/runtime/entity/server/UserChannel.d.ts +0 -4
- package/dist/runtime/networking/NetworkingPeerSocket.d.ts +0 -22
- package/dist/runtime/networking/handler/OnChannelChatEventHandler.d.ts +0 -6
- package/dist/runtime/networking/handler/OnDebugEventHander.d.ts +0 -6
- package/dist/runtime/networking/handler/OnFriendUpdateEventHandler.d.ts +0 -6
- package/dist/runtime/networking/handler/OnUserChatEventHandler.d.ts +0 -6
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
import { Action1 } from "./common/Action1";
|
|
2
|
+
import { GNHashtable } from "./common/GNData";
|
|
3
|
+
import { MasterPlayerModels } from "./entity/models/MasterPlayerModels";
|
|
4
|
+
import { MasterPlayerResponseModels } from "./entity/models/MasterPlayerResponseModels";
|
|
5
|
+
export declare class MasterPlayerApi {
|
|
6
|
+
server: ServerMasterPlayerApi;
|
|
7
|
+
admin: AdminMasterPlayerApi;
|
|
8
|
+
addSegment(requestData: MasterPlayerModels.AddSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
9
|
+
changeAccountPassword(requestData: MasterPlayerModels.ChangeAccountPasswordRequestData, onResponse?: Action1<MasterPlayerResponseModels.ChangeAccountPasswordOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
10
|
+
getAvatar(requestData: MasterPlayerModels.GetAvatarRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
11
|
+
getCountryCode(requestData: MasterPlayerModels.GetCountryCodeRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
12
|
+
getCustomData(requestData: MasterPlayerModels.GetCustomDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
13
|
+
getDisplayName(requestData: MasterPlayerModels.GetDisplayNameRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
14
|
+
getEmail(requestData: MasterPlayerModels.GetEmailRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetEmailOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
15
|
+
getExternal(requestData: MasterPlayerModels.GetExternalRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetExternalOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
16
|
+
getIpAddressCreate(requestData: MasterPlayerModels.GetIpAddressCreateRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetIpAddressCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
17
|
+
getPlayerBan(requestData: MasterPlayerModels.GetPlayerBanRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
18
|
+
getPlayerCurrency(requestData: MasterPlayerModels.GetPlayerCurrencyRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
19
|
+
getPlayerData(requestData: MasterPlayerModels.GetPlayerDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
20
|
+
getPlayerInformation(requestData: MasterPlayerModels.GetPlayerInformationRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
21
|
+
getPlayerStatistics(requestData: MasterPlayerModels.GetPlayerStatisticsRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
22
|
+
getPlayersWithApple(requestData: MasterPlayerModels.GetPlayersWithAppleRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithAppleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
23
|
+
getPlayersWithDisplayName(requestData: MasterPlayerModels.GetPlayersWithDisplayNameRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
24
|
+
getPlayersWithFacebook(requestData: MasterPlayerModels.GetPlayersWithFacebookRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithFacebookOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
25
|
+
getPlayersWithGenericService(requestData: MasterPlayerModels.GetPlayersWithGenericServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithGenericServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
26
|
+
getPlayersWithGoogle(requestData: MasterPlayerModels.GetPlayersWithGoogleRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithGoogleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
27
|
+
getPlayersWithSegment(requestData: MasterPlayerModels.GetPlayersWithSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
28
|
+
getPlayersWithTag(requestData: MasterPlayerModels.GetPlayersWithTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
29
|
+
getSegment(requestData: MasterPlayerModels.GetSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
30
|
+
getStatisticsLeaderboardAroundPlayer(requestData: MasterPlayerModels.GetStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
31
|
+
getStatisticsLeaderboard(requestData: MasterPlayerModels.GetStatisticsLeaderboardRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
32
|
+
getTag(requestData: MasterPlayerModels.GetTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
33
|
+
getTsCreate(requestData: MasterPlayerModels.GetTsCreateRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
34
|
+
getTsLastLogin(requestData: MasterPlayerModels.GetTsLastLoginRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
35
|
+
linkAccount(requestData: MasterPlayerModels.LinkAccountRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
36
|
+
linkAndroidDeviceId(requestData: MasterPlayerModels.LinkAndroidDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkAndroidDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
37
|
+
linkApple(requestData: MasterPlayerModels.LinkAppleRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkAppleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
38
|
+
linkCustomDeviceId(requestData: MasterPlayerModels.LinkCustomDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkCustomDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
39
|
+
linkCustomId(requestData: MasterPlayerModels.LinkCustomIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkCustomIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
40
|
+
linkEditorDeviceId(requestData: MasterPlayerModels.LinkEditorDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkEditorDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
41
|
+
linkFacebook(requestData: MasterPlayerModels.LinkFacebookRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkFacebookOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
42
|
+
linkGenericService(requestData: MasterPlayerModels.LinkGenericServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkGenericServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
43
|
+
linkGoogle(requestData: MasterPlayerModels.LinkGoogleRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkGoogleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
44
|
+
linkiOSDeviceId(requestData: MasterPlayerModels.LinkiOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkiOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
45
|
+
linkLinuxDeviceId(requestData: MasterPlayerModels.LinkLinuxDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkLinuxDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
46
|
+
linkMacOSDeviceId(requestData: MasterPlayerModels.LinkMacOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkMacOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
47
|
+
linkWindowsDeviceId(requestData: MasterPlayerModels.LinkWindowsDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkWindowsDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
48
|
+
linkWindowsPhoneDeviceId(requestData: MasterPlayerModels.LinkWindowsPhoneDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkWindowsPhoneDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
49
|
+
removeSegment(requestData: MasterPlayerModels.RemoveSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
50
|
+
removeTag(requestData: MasterPlayerModels.RemoveTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
51
|
+
resetAccountPassword(requestData: MasterPlayerModels.ResetAccountPasswordRequestData, onResponse?: Action1<MasterPlayerResponseModels.ResetAccountPasswordOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
52
|
+
setAvatar(requestData: MasterPlayerModels.SetAvatarRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
53
|
+
setCountryCode(requestData: MasterPlayerModels.SetCountryCodeRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
54
|
+
setCustomData(requestData: MasterPlayerModels.SetCustomDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
55
|
+
setDisplayName(requestData: MasterPlayerModels.SetDisplayNameRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
56
|
+
setEmail(requestData: MasterPlayerModels.SetEmailRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetEmailOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
57
|
+
setPlayerBan(requestData: MasterPlayerModels.SetPlayerBanRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
58
|
+
setPlayerCurrency(requestData: MasterPlayerModels.SetPlayerCurrencyRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
59
|
+
setPlayerData(requestData: MasterPlayerModels.SetPlayerDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
60
|
+
setPlayerStatistics(requestData: MasterPlayerModels.SetPlayerStatisticsRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
61
|
+
setTag(requestData: MasterPlayerModels.SetTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
62
|
+
setTsLastLogin(requestData: MasterPlayerModels.SetTsLastLoginRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
63
|
+
unlinkAccount(requestData: MasterPlayerModels.UnlinkAccountRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
64
|
+
unlinkAndroidDeviceId(requestData: MasterPlayerModels.UnlinkAndroidDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkAndroidDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
65
|
+
unlinkApple(requestData: MasterPlayerModels.UnlinkAppleRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkAppleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
66
|
+
unlinkCustomDeviceId(requestData: MasterPlayerModels.UnlinkCustomDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkCustomDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
67
|
+
unlinkCustomId(requestData: MasterPlayerModels.UnlinkCustomIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkCustomIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
68
|
+
unlinkEditorDeviceId(requestData: MasterPlayerModels.UnlinkEditorDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkEditorDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
69
|
+
unlinkFacebook(requestData: MasterPlayerModels.UnlinkFacebookRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkFacebookOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
70
|
+
unlinkGenericService(requestData: MasterPlayerModels.UnlinkGenericServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkGenericServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
71
|
+
unlinkGoogle(requestData: MasterPlayerModels.UnlinkGoogleRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkGoogleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
72
|
+
unlinkiOSDeviceId(requestData: MasterPlayerModels.UnlinkiOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkiOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
73
|
+
unlinkLinuxDeviceId(requestData: MasterPlayerModels.UnlinkLinuxDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkLinuxDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
74
|
+
unlinkMacOSDeviceId(requestData: MasterPlayerModels.UnlinkMacOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkMacOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
75
|
+
unlinkWindowsDeviceId(requestData: MasterPlayerModels.UnlinkWindowsDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkWindowsDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
76
|
+
unlinkWindowsPhoneDeviceId(requestData: MasterPlayerModels.UnlinkWindowsPhoneDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkWindowsPhoneDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
77
|
+
}
|
|
78
|
+
export declare class ServerMasterPlayerApi {
|
|
79
|
+
addSegment(requestData: MasterPlayerModels.ServerAddSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
80
|
+
getAvatar(requestData: MasterPlayerModels.ServerGetAvatarRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
81
|
+
getCountryCode(requestData: MasterPlayerModels.ServerGetCountryCodeRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
82
|
+
getCustomData(requestData: MasterPlayerModels.ServerGetCustomDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
83
|
+
getDisplayName(requestData: MasterPlayerModels.ServerGetDisplayNameRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
84
|
+
getEmail(requestData: MasterPlayerModels.ServerGetEmailRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetEmailOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
85
|
+
getExternal(requestData: MasterPlayerModels.ServerGetExternalRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetExternalOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
86
|
+
getIpAddressCreate(requestData: MasterPlayerModels.ServerGetIpAddressCreateRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetIpAddressCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
87
|
+
getPlayerBan(requestData: MasterPlayerModels.ServerGetPlayerBanRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
88
|
+
getPlayerCurrency(requestData: MasterPlayerModels.ServerGetPlayerCurrencyRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
89
|
+
getPlayerData(requestData: MasterPlayerModels.ServerGetPlayerDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
90
|
+
getPlayerInformation(requestData: MasterPlayerModels.ServerGetPlayerInformationRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
91
|
+
getPlayerStatistics(requestData: MasterPlayerModels.ServerGetPlayerStatisticsRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
92
|
+
getPlayersWithApple(requestData: MasterPlayerModels.ServerGetPlayersWithAppleRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithAppleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
93
|
+
getPlayersWithDisplayName(requestData: MasterPlayerModels.ServerGetPlayersWithDisplayNameRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
94
|
+
getPlayersWithFacebook(requestData: MasterPlayerModels.ServerGetPlayersWithFacebookRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithFacebookOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
95
|
+
getPlayersWithGenericService(requestData: MasterPlayerModels.ServerGetPlayersWithGenericServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithGenericServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
96
|
+
getPlayersWithGoogle(requestData: MasterPlayerModels.ServerGetPlayersWithGoogleRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithGoogleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
97
|
+
getPlayersWithSegment(requestData: MasterPlayerModels.ServerGetPlayersWithSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
98
|
+
getPlayersWithTag(requestData: MasterPlayerModels.ServerGetPlayersWithTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
99
|
+
getSegment(requestData: MasterPlayerModels.ServerGetSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
100
|
+
getStatisticsLeaderboardAroundPlayer(requestData: MasterPlayerModels.ServerGetStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
101
|
+
getStatisticsLeaderboard(requestData: MasterPlayerModels.ServerGetStatisticsLeaderboardRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
102
|
+
getTag(requestData: MasterPlayerModels.ServerGetTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
103
|
+
getTsCreate(requestData: MasterPlayerModels.ServerGetTsCreateRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
104
|
+
getTsLastLogin(requestData: MasterPlayerModels.ServerGetTsLastLoginRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
105
|
+
linkAccount(requestData: MasterPlayerModels.ServerLinkAccountRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
106
|
+
linkAndroidDeviceId(requestData: MasterPlayerModels.ServerLinkAndroidDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkAndroidDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
107
|
+
linkApple(requestData: MasterPlayerModels.ServerLinkAppleRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkAppleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
108
|
+
linkCustomDeviceId(requestData: MasterPlayerModels.ServerLinkCustomDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkCustomDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
109
|
+
linkCustomId(requestData: MasterPlayerModels.ServerLinkCustomIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkCustomIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
110
|
+
linkEditorDeviceId(requestData: MasterPlayerModels.ServerLinkEditorDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkEditorDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
111
|
+
linkFacebook(requestData: MasterPlayerModels.ServerLinkFacebookRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkFacebookOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
112
|
+
linkGenericService(requestData: MasterPlayerModels.ServerLinkGenericServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkGenericServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
113
|
+
linkGoogle(requestData: MasterPlayerModels.ServerLinkGoogleRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkGoogleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
114
|
+
linkiOSDeviceId(requestData: MasterPlayerModels.ServerLinkiOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkiOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
115
|
+
linkLinuxDeviceId(requestData: MasterPlayerModels.ServerLinkLinuxDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkLinuxDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
116
|
+
linkMacOSDeviceId(requestData: MasterPlayerModels.ServerLinkMacOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkMacOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
117
|
+
linkWindowsDeviceId(requestData: MasterPlayerModels.ServerLinkWindowsDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkWindowsDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
118
|
+
linkWindowsPhoneDeviceId(requestData: MasterPlayerModels.ServerLinkWindowsPhoneDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkWindowsPhoneDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
119
|
+
removeSegment(requestData: MasterPlayerModels.ServerRemoveSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
120
|
+
removeTag(requestData: MasterPlayerModels.ServerRemoveTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
121
|
+
resetAccountPassword(requestData: MasterPlayerModels.ServerResetAccountPasswordRequestData, onResponse?: Action1<MasterPlayerResponseModels.ResetAccountPasswordOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
122
|
+
setAvatar(requestData: MasterPlayerModels.ServerSetAvatarRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
123
|
+
setCountryCode(requestData: MasterPlayerModels.ServerSetCountryCodeRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
124
|
+
setCustomData(requestData: MasterPlayerModels.ServerSetCustomDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
125
|
+
setDisplayName(requestData: MasterPlayerModels.ServerSetDisplayNameRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
126
|
+
setEmail(requestData: MasterPlayerModels.ServerSetEmailRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetEmailOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
127
|
+
setPlayerBan(requestData: MasterPlayerModels.ServerSetPlayerBanRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
128
|
+
setPlayerCurrency(requestData: MasterPlayerModels.ServerSetPlayerCurrencyRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
129
|
+
setPlayerData(requestData: MasterPlayerModels.ServerSetPlayerDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
130
|
+
setPlayerStatistics(requestData: MasterPlayerModels.ServerSetPlayerStatisticsRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
131
|
+
setTag(requestData: MasterPlayerModels.ServerSetTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
132
|
+
setTsLastLogin(requestData: MasterPlayerModels.ServerSetTsLastLoginRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
133
|
+
unlinkAccount(requestData: MasterPlayerModels.ServerUnlinkAccountRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
134
|
+
unlinkAndroidDeviceId(requestData: MasterPlayerModels.ServerUnlinkAndroidDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkAndroidDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
135
|
+
unlinkApple(requestData: MasterPlayerModels.ServerUnlinkAppleRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkAppleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
136
|
+
unlinkCustomDeviceId(requestData: MasterPlayerModels.ServerUnlinkCustomDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkCustomDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
137
|
+
unlinkCustomId(requestData: MasterPlayerModels.ServerUnlinkCustomIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkCustomIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
138
|
+
unlinkEditorDeviceId(requestData: MasterPlayerModels.ServerUnlinkEditorDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkEditorDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
139
|
+
unlinkFacebook(requestData: MasterPlayerModels.ServerUnlinkFacebookRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkFacebookOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
140
|
+
unlinkGenericService(requestData: MasterPlayerModels.ServerUnlinkGenericServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkGenericServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
141
|
+
unlinkGoogle(requestData: MasterPlayerModels.ServerUnlinkGoogleRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkGoogleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
142
|
+
unlinkiOSDeviceId(requestData: MasterPlayerModels.ServerUnlinkiOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkiOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
143
|
+
unlinkLinuxDeviceId(requestData: MasterPlayerModels.ServerUnlinkLinuxDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkLinuxDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
144
|
+
unlinkMacOSDeviceId(requestData: MasterPlayerModels.ServerUnlinkMacOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkMacOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
145
|
+
unlinkWindowsDeviceId(requestData: MasterPlayerModels.ServerUnlinkWindowsDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkWindowsDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
146
|
+
unlinkWindowsPhoneDeviceId(requestData: MasterPlayerModels.ServerUnlinkWindowsPhoneDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkWindowsPhoneDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
147
|
+
}
|
|
148
|
+
export declare class AdminMasterPlayerApi {
|
|
149
|
+
addSegment(requestData: MasterPlayerModels.AdminAddSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
150
|
+
getAvatar(requestData: MasterPlayerModels.AdminGetAvatarRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
151
|
+
getCountryCode(requestData: MasterPlayerModels.AdminGetCountryCodeRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
152
|
+
getCustomData(requestData: MasterPlayerModels.AdminGetCustomDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
153
|
+
getDisplayName(requestData: MasterPlayerModels.AdminGetDisplayNameRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
154
|
+
getEmail(requestData: MasterPlayerModels.AdminGetEmailRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetEmailOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
155
|
+
getExternal(requestData: MasterPlayerModels.AdminGetExternalRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetExternalOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
156
|
+
getIpAddressCreate(requestData: MasterPlayerModels.AdminGetIpAddressCreateRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetIpAddressCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
157
|
+
getPlayerBan(requestData: MasterPlayerModels.AdminGetPlayerBanRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
158
|
+
getPlayerCurrency(requestData: MasterPlayerModels.AdminGetPlayerCurrencyRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
159
|
+
getPlayerData(requestData: MasterPlayerModels.AdminGetPlayerDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
160
|
+
getPlayerInformation(requestData: MasterPlayerModels.AdminGetPlayerInformationRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
161
|
+
getPlayerStatistics(requestData: MasterPlayerModels.AdminGetPlayerStatisticsRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
162
|
+
getPlayersWithApple(requestData: MasterPlayerModels.AdminGetPlayersWithAppleRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithAppleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
163
|
+
getPlayersWithDisplayName(requestData: MasterPlayerModels.AdminGetPlayersWithDisplayNameRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
164
|
+
getPlayersWithFacebook(requestData: MasterPlayerModels.AdminGetPlayersWithFacebookRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithFacebookOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
165
|
+
getPlayersWithGenericService(requestData: MasterPlayerModels.AdminGetPlayersWithGenericServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithGenericServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
166
|
+
getPlayersWithGoogle(requestData: MasterPlayerModels.AdminGetPlayersWithGoogleRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithGoogleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
167
|
+
getPlayersWithSegment(requestData: MasterPlayerModels.AdminGetPlayersWithSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
168
|
+
getPlayersWithTag(requestData: MasterPlayerModels.AdminGetPlayersWithTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
169
|
+
getSegment(requestData: MasterPlayerModels.AdminGetSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
170
|
+
getStatisticsLeaderboardAroundPlayer(requestData: MasterPlayerModels.AdminGetStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
171
|
+
getStatisticsLeaderboard(requestData: MasterPlayerModels.AdminGetStatisticsLeaderboardRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
172
|
+
getTag(requestData: MasterPlayerModels.AdminGetTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
173
|
+
getTsCreate(requestData: MasterPlayerModels.AdminGetTsCreateRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
174
|
+
getTsLastLogin(requestData: MasterPlayerModels.AdminGetTsLastLoginRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
175
|
+
linkAccount(requestData: MasterPlayerModels.AdminLinkAccountRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
176
|
+
linkAndroidDeviceId(requestData: MasterPlayerModels.AdminLinkAndroidDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkAndroidDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
177
|
+
linkApple(requestData: MasterPlayerModels.AdminLinkAppleRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkAppleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
178
|
+
linkCustomDeviceId(requestData: MasterPlayerModels.AdminLinkCustomDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkCustomDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
179
|
+
linkCustomId(requestData: MasterPlayerModels.AdminLinkCustomIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkCustomIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
180
|
+
linkEditorDeviceId(requestData: MasterPlayerModels.AdminLinkEditorDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkEditorDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
181
|
+
linkFacebook(requestData: MasterPlayerModels.AdminLinkFacebookRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkFacebookOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
182
|
+
linkGenericService(requestData: MasterPlayerModels.AdminLinkGenericServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkGenericServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
183
|
+
linkGoogle(requestData: MasterPlayerModels.AdminLinkGoogleRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkGoogleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
184
|
+
linkiOSDeviceId(requestData: MasterPlayerModels.AdminLinkiOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkiOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
185
|
+
linkLinuxDeviceId(requestData: MasterPlayerModels.AdminLinkLinuxDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkLinuxDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
186
|
+
linkMacOSDeviceId(requestData: MasterPlayerModels.AdminLinkMacOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkMacOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
187
|
+
linkWindowsDeviceId(requestData: MasterPlayerModels.AdminLinkWindowsDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkWindowsDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
188
|
+
linkWindowsPhoneDeviceId(requestData: MasterPlayerModels.AdminLinkWindowsPhoneDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkWindowsPhoneDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
189
|
+
removeSegment(requestData: MasterPlayerModels.AdminRemoveSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
190
|
+
removeTag(requestData: MasterPlayerModels.AdminRemoveTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
191
|
+
resetAccountPassword(requestData: MasterPlayerModels.AdminResetAccountPasswordRequestData, onResponse?: Action1<MasterPlayerResponseModels.ResetAccountPasswordOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
192
|
+
setAvatar(requestData: MasterPlayerModels.AdminSetAvatarRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
193
|
+
setCountryCode(requestData: MasterPlayerModels.AdminSetCountryCodeRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
194
|
+
setCustomData(requestData: MasterPlayerModels.AdminSetCustomDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
195
|
+
setDisplayName(requestData: MasterPlayerModels.AdminSetDisplayNameRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
196
|
+
setEmail(requestData: MasterPlayerModels.AdminSetEmailRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetEmailOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
197
|
+
setPlayerBan(requestData: MasterPlayerModels.AdminSetPlayerBanRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
198
|
+
setPlayerCurrency(requestData: MasterPlayerModels.AdminSetPlayerCurrencyRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
199
|
+
setPlayerData(requestData: MasterPlayerModels.AdminSetPlayerDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
200
|
+
setPlayerStatistics(requestData: MasterPlayerModels.AdminSetPlayerStatisticsRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
201
|
+
setTag(requestData: MasterPlayerModels.AdminSetTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
202
|
+
setTsLastLogin(requestData: MasterPlayerModels.AdminSetTsLastLoginRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
203
|
+
unlinkAccount(requestData: MasterPlayerModels.AdminUnlinkAccountRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
204
|
+
unlinkAndroidDeviceId(requestData: MasterPlayerModels.AdminUnlinkAndroidDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkAndroidDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
205
|
+
unlinkApple(requestData: MasterPlayerModels.AdminUnlinkAppleRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkAppleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
206
|
+
unlinkCustomDeviceId(requestData: MasterPlayerModels.AdminUnlinkCustomDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkCustomDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
207
|
+
unlinkCustomId(requestData: MasterPlayerModels.AdminUnlinkCustomIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkCustomIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
208
|
+
unlinkEditorDeviceId(requestData: MasterPlayerModels.AdminUnlinkEditorDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkEditorDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
209
|
+
unlinkFacebook(requestData: MasterPlayerModels.AdminUnlinkFacebookRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkFacebookOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
210
|
+
unlinkGenericService(requestData: MasterPlayerModels.AdminUnlinkGenericServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkGenericServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
211
|
+
unlinkGoogle(requestData: MasterPlayerModels.AdminUnlinkGoogleRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkGoogleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
212
|
+
unlinkiOSDeviceId(requestData: MasterPlayerModels.AdminUnlinkiOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkiOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
213
|
+
unlinkLinuxDeviceId(requestData: MasterPlayerModels.AdminUnlinkLinuxDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkLinuxDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
214
|
+
unlinkMacOSDeviceId(requestData: MasterPlayerModels.AdminUnlinkMacOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkMacOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
215
|
+
unlinkWindowsDeviceId(requestData: MasterPlayerModels.AdminUnlinkWindowsDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkWindowsDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
216
|
+
unlinkWindowsPhoneDeviceId(requestData: MasterPlayerModels.AdminUnlinkWindowsPhoneDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkWindowsPhoneDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
217
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Action1 } from "./common/Action1";
|
|
2
|
+
import { GNHashtable } from "./common/GNData";
|
|
3
|
+
import { StoreInventoryModels } from "./entity/models/StoreInventoryModels";
|
|
4
|
+
import { StoreInventoryResponseModels } from "./entity/models/StoreInventoryResponseModels";
|
|
5
|
+
export declare class StoreInventoryApi {
|
|
6
|
+
server: ServerStoreInventoryApi;
|
|
7
|
+
admin: AdminStoreInventoryApi;
|
|
8
|
+
buyStoreItem(requestData: StoreInventoryModels.BuyStoreItemRequestData, onResponse?: Action1<StoreInventoryResponseModels.BuyStoreItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
9
|
+
getStoreItemInformation(requestData: StoreInventoryModels.GetStoreItemInformationRequestData, onResponse?: Action1<StoreInventoryResponseModels.GetStoreItemInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
10
|
+
getStoreItemsWithTag(requestData: StoreInventoryModels.GetStoreItemsWithTagRequestData, onResponse?: Action1<StoreInventoryResponseModels.GetStoreItemsWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
11
|
+
grantStoreItem(requestData: StoreInventoryModels.GrantStoreItemRequestData, onResponse?: Action1<StoreInventoryResponseModels.GrantStoreItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
12
|
+
setRemoveStatus(requestData: StoreInventoryModels.SetRemoveStatusRequestData, onResponse?: Action1<StoreInventoryResponseModels.SetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
13
|
+
setStoreItemInformation(requestData: StoreInventoryModels.SetStoreItemInformationRequestData, onResponse?: Action1<StoreInventoryResponseModels.SetStoreItemInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
14
|
+
validateAppleAppStoreReceipt(requestData: StoreInventoryModels.ValidateAppleAppStoreReceiptRequestData, onResponse?: Action1<StoreInventoryResponseModels.ValidateAppleAppStoreReceiptOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
15
|
+
validateFacebookStoreReceipt(requestData: StoreInventoryModels.ValidateFacebookStoreReceiptRequestData, onResponse?: Action1<StoreInventoryResponseModels.ValidateFacebookStoreReceiptOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
16
|
+
validateGooglePlayStoreReceipt(requestData: StoreInventoryModels.ValidateGooglePlayStoreReceiptRequestData, onResponse?: Action1<StoreInventoryResponseModels.ValidateGooglePlayStoreReceiptOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
17
|
+
}
|
|
18
|
+
export declare class ServerStoreInventoryApi {
|
|
19
|
+
buyStoreItem(requestData: StoreInventoryModels.ServerBuyStoreItemRequestData, onResponse?: Action1<StoreInventoryResponseModels.BuyStoreItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
20
|
+
getStoreItemInformation(requestData: StoreInventoryModels.ServerGetStoreItemInformationRequestData, onResponse?: Action1<StoreInventoryResponseModels.GetStoreItemInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
21
|
+
getStoreItemsWithTag(requestData: StoreInventoryModels.ServerGetStoreItemsWithTagRequestData, onResponse?: Action1<StoreInventoryResponseModels.GetStoreItemsWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
22
|
+
grantStoreItem(requestData: StoreInventoryModels.ServerGrantStoreItemRequestData, onResponse?: Action1<StoreInventoryResponseModels.GrantStoreItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
23
|
+
setRemoveStatus(requestData: StoreInventoryModels.ServerSetRemoveStatusRequestData, onResponse?: Action1<StoreInventoryResponseModels.SetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
24
|
+
setStoreItemInformation(requestData: StoreInventoryModels.ServerSetStoreItemInformationRequestData, onResponse?: Action1<StoreInventoryResponseModels.SetStoreItemInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
25
|
+
validateAppleAppStoreReceipt(requestData: StoreInventoryModels.ServerValidateAppleAppStoreReceiptRequestData, onResponse?: Action1<StoreInventoryResponseModels.ValidateAppleAppStoreReceiptOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
26
|
+
validateFacebookStoreReceipt(requestData: StoreInventoryModels.ServerValidateFacebookStoreReceiptRequestData, onResponse?: Action1<StoreInventoryResponseModels.ValidateFacebookStoreReceiptOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
27
|
+
validateGooglePlayStoreReceipt(requestData: StoreInventoryModels.ServerValidateGooglePlayStoreReceiptRequestData, onResponse?: Action1<StoreInventoryResponseModels.ValidateGooglePlayStoreReceiptOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
28
|
+
}
|
|
29
|
+
export declare class AdminStoreInventoryApi {
|
|
30
|
+
buyStoreItem(requestData: StoreInventoryModels.AdminBuyStoreItemRequestData, onResponse?: Action1<StoreInventoryResponseModels.BuyStoreItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
31
|
+
getStoreItemInformation(requestData: StoreInventoryModels.AdminGetStoreItemInformationRequestData, onResponse?: Action1<StoreInventoryResponseModels.GetStoreItemInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
32
|
+
getStoreItemsWithTag(requestData: StoreInventoryModels.AdminGetStoreItemsWithTagRequestData, onResponse?: Action1<StoreInventoryResponseModels.GetStoreItemsWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
33
|
+
grantStoreItem(requestData: StoreInventoryModels.AdminGrantStoreItemRequestData, onResponse?: Action1<StoreInventoryResponseModels.GrantStoreItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
34
|
+
setRemoveStatus(requestData: StoreInventoryModels.AdminSetRemoveStatusRequestData, onResponse?: Action1<StoreInventoryResponseModels.SetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
35
|
+
setStoreItemInformation(requestData: StoreInventoryModels.AdminSetStoreItemInformationRequestData, onResponse?: Action1<StoreInventoryResponseModels.SetStoreItemInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
36
|
+
validateAppleAppStoreReceipt(requestData: StoreInventoryModels.AdminValidateAppleAppStoreReceiptRequestData, onResponse?: Action1<StoreInventoryResponseModels.ValidateAppleAppStoreReceiptOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
37
|
+
validateFacebookStoreReceipt(requestData: StoreInventoryModels.AdminValidateFacebookStoreReceiptRequestData, onResponse?: Action1<StoreInventoryResponseModels.ValidateFacebookStoreReceiptOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
38
|
+
validateGooglePlayStoreReceipt(requestData: StoreInventoryModels.AdminValidateGooglePlayStoreReceiptRequestData, onResponse?: Action1<StoreInventoryResponseModels.ValidateGooglePlayStoreReceiptOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
39
|
+
}
|
|
@@ -9,7 +9,9 @@ export interface GNServerSettingsOptions {
|
|
|
9
9
|
reconnectDelay: number;
|
|
10
10
|
pingInterval: number;
|
|
11
11
|
pingTimeout: number;
|
|
12
|
-
|
|
12
|
+
adminSecretKey: string;
|
|
13
|
+
serverSecretKey: string;
|
|
14
|
+
clientSecretKey: string;
|
|
13
15
|
gnServerSourcePath: string;
|
|
14
16
|
logType: LogType;
|
|
15
17
|
}
|
|
@@ -23,7 +25,9 @@ export declare class GNServerSettings {
|
|
|
23
25
|
private reconnectDelay;
|
|
24
26
|
private pingInterval;
|
|
25
27
|
private pingTimeout;
|
|
26
|
-
private
|
|
28
|
+
private adminSecretKey;
|
|
29
|
+
private serverSecretKey;
|
|
30
|
+
private clientSecretKey;
|
|
27
31
|
private gnServerSourcePath;
|
|
28
32
|
private logType;
|
|
29
33
|
config(options: GNServerSettingsOptions): void;
|
|
@@ -45,8 +49,12 @@ export declare class GNServerSettings {
|
|
|
45
49
|
setPingInterval(pingInterval: number): void;
|
|
46
50
|
getPingTimeout(): number;
|
|
47
51
|
setPingTimeout(pingTimeout: number): void;
|
|
48
|
-
|
|
49
|
-
|
|
52
|
+
getAdminSecretKey(): string;
|
|
53
|
+
setAdminSecretKey(adminSecretKey: string): void;
|
|
54
|
+
getServerSecretKey(): string;
|
|
55
|
+
setServerSecretKey(serverSecretKey: string): void;
|
|
56
|
+
getClientSecretKey(): string;
|
|
57
|
+
setClientSecretKey(clientSecretKey: string): void;
|
|
50
58
|
getGNServerSourcePath(): string;
|
|
51
59
|
setGNServerSourcePath(gnServerSourcePath: string): void;
|
|
52
60
|
getLogType(): LogType;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
export declare class Commands {
|
|
2
2
|
static readonly USER_AGENT: string;
|
|
3
3
|
static readonly CONTENT_TYPE: string;
|
|
4
|
-
static readonly
|
|
4
|
+
static readonly CONTENT_LENGTH: string;
|
|
5
5
|
static readonly APPLICATION_JSON: string;
|
|
6
6
|
static readonly APPLICATION_MSGPACK: string;
|
|
7
7
|
static readonly RequestAuthTokenCmd: string;
|
|
8
|
+
static readonly RequestSecretCmd: string;
|
|
8
9
|
static readonly RequestCmd_MsgPack: string;
|
|
9
10
|
static readonly ResponseCmd_MsgPack: string;
|
|
10
11
|
static readonly EventCmd_MsgPack: string;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export declare class EventCode {
|
|
2
|
-
static readonly
|
|
3
|
-
static readonly
|
|
4
|
-
static readonly
|
|
5
|
-
static readonly
|
|
2
|
+
static readonly OnGamePlayerFriendUpdate: number;
|
|
3
|
+
static readonly OnCharacterPlayerFriendUpdate: number;
|
|
4
|
+
static readonly OnGamePlayerGroupUpdate: number;
|
|
5
|
+
static readonly OnGroupMemberUpdate: number;
|
|
6
|
+
static readonly OnGroupMessageUpdate: number;
|
|
7
|
+
static readonly OnCharacterPlayerGroupUpdate: number;
|
|
6
8
|
}
|
|
@@ -1,28 +1,174 @@
|
|
|
1
1
|
export declare class OperationCode {
|
|
2
|
-
static readonly
|
|
3
|
-
static readonly
|
|
4
|
-
static readonly
|
|
5
|
-
static readonly
|
|
2
|
+
static readonly LoginByAdminAccount: number;
|
|
3
|
+
static readonly ChangePasswordAdminAccount: number;
|
|
4
|
+
static readonly GetGameList: number;
|
|
5
|
+
static readonly GetMasterGameSettings: number;
|
|
6
|
+
static readonly SetMasterGameSettings: number;
|
|
7
|
+
static readonly GrantAdminAccount: number;
|
|
8
|
+
static readonly RemoveAdminAccount: number;
|
|
9
|
+
static readonly SetPasswordAdminAccount: number;
|
|
10
|
+
static readonly SetSecretKeyAdminAccount: number;
|
|
11
|
+
static readonly GetGameInformation: number;
|
|
12
|
+
static readonly SetGameInformation: number;
|
|
13
|
+
static readonly GetAdminAccountList: number;
|
|
14
|
+
static readonly GrantGame: number;
|
|
15
|
+
static readonly GetServerLog: number;
|
|
16
|
+
static readonly GetSecretInfoInformation: number;
|
|
17
|
+
static readonly GetSecretInfoList: number;
|
|
18
|
+
static readonly GrantSecretInfo: number;
|
|
19
|
+
static readonly SetSecretInfoInformation: number;
|
|
20
|
+
static readonly LoginByAccount: number;
|
|
21
|
+
static readonly LoginByAndroidDeviceId: number;
|
|
22
|
+
static readonly LoginByApple: number;
|
|
23
|
+
static readonly LoginByCustomDeviceId: number;
|
|
24
|
+
static readonly LoginByCustomId: number;
|
|
25
|
+
static readonly LoginByEditorDeviceId: number;
|
|
26
|
+
static readonly LoginByFacebook: number;
|
|
27
|
+
static readonly LoginByGenericService: number;
|
|
28
|
+
static readonly LoginByGoogle: number;
|
|
29
|
+
static readonly LoginByiOSDeviceId: number;
|
|
30
|
+
static readonly LoginByLinuxDeviceId: number;
|
|
31
|
+
static readonly LoginByMacOSDeviceId: number;
|
|
32
|
+
static readonly LoginByWindowsDeviceId: number;
|
|
33
|
+
static readonly LoginByWindowsPhoneDeviceId: number;
|
|
6
34
|
static readonly RegisterAccount: number;
|
|
7
|
-
static readonly
|
|
8
|
-
static readonly
|
|
9
|
-
static readonly
|
|
35
|
+
static readonly LinkAccount: number;
|
|
36
|
+
static readonly LinkAndroidDeviceId: number;
|
|
37
|
+
static readonly LinkApple: number;
|
|
38
|
+
static readonly LinkCustomDeviceId: number;
|
|
39
|
+
static readonly LinkCustomId: number;
|
|
40
|
+
static readonly LinkEditorDeviceId: number;
|
|
41
|
+
static readonly LinkFacebook: number;
|
|
42
|
+
static readonly LinkGenericService: number;
|
|
43
|
+
static readonly LinkGoogle: number;
|
|
44
|
+
static readonly LinkiOSDeviceId: number;
|
|
45
|
+
static readonly LinkLinuxDeviceId: number;
|
|
46
|
+
static readonly LinkMacOSDeviceId: number;
|
|
47
|
+
static readonly LinkWindowsDeviceId: number;
|
|
48
|
+
static readonly LinkWindowsPhoneDeviceId: number;
|
|
49
|
+
static readonly UnlinkAccount: number;
|
|
50
|
+
static readonly UnlinkAndroidDeviceId: number;
|
|
51
|
+
static readonly UnlinkApple: number;
|
|
52
|
+
static readonly UnlinkCustomDeviceId: number;
|
|
53
|
+
static readonly UnlinkCustomId: number;
|
|
54
|
+
static readonly UnlinkEditorDeviceId: number;
|
|
55
|
+
static readonly UnlinkFacebook: number;
|
|
56
|
+
static readonly UnlinkGenericService: number;
|
|
57
|
+
static readonly UnlinkGoogle: number;
|
|
58
|
+
static readonly UnlinkiOSDeviceId: number;
|
|
59
|
+
static readonly UnlinkLinuxDeviceId: number;
|
|
60
|
+
static readonly UnlinkMacOSDeviceId: number;
|
|
61
|
+
static readonly UnlinkWindowsDeviceId: number;
|
|
62
|
+
static readonly UnlinkWindowsPhoneDeviceId: number;
|
|
63
|
+
static readonly AddSegment: number;
|
|
64
|
+
static readonly RemoveSegment: number;
|
|
65
|
+
static readonly GetSegment: number;
|
|
66
|
+
static readonly SetTag: number;
|
|
67
|
+
static readonly GetTag: number;
|
|
68
|
+
static readonly SetDisplayName: number;
|
|
69
|
+
static readonly GetDisplayName: number;
|
|
70
|
+
static readonly GetTsCreate: number;
|
|
71
|
+
static readonly GetIpAddressCreate: number;
|
|
72
|
+
static readonly GetTsLastLogin: number;
|
|
73
|
+
static readonly SetPlayerBan: number;
|
|
74
|
+
static readonly GetPlayerBan: number;
|
|
75
|
+
static readonly SetCountryCode: number;
|
|
76
|
+
static readonly GetCountryCode: number;
|
|
77
|
+
static readonly ChangeAccountPassword: number;
|
|
78
|
+
static readonly ResetAccountPassword: number;
|
|
79
|
+
static readonly SetAvatar: number;
|
|
80
|
+
static readonly GetAvatar: number;
|
|
81
|
+
static readonly SetPlayerCurrency: number;
|
|
82
|
+
static readonly GetPlayerCurrency: number;
|
|
83
|
+
static readonly SetPlayerStatistics: number;
|
|
84
|
+
static readonly GetPlayerStatistics: number;
|
|
85
|
+
static readonly GetStatisticsLeaderboard: number;
|
|
86
|
+
static readonly GetStatisticsLeaderboardAroundPlayer: number;
|
|
87
|
+
static readonly SetCustomData: number;
|
|
88
|
+
static readonly GetCustomData: number;
|
|
89
|
+
static readonly SetPlayerData: number;
|
|
90
|
+
static readonly GetPlayerData: number;
|
|
91
|
+
static readonly GetPlayerInformation: number;
|
|
92
|
+
static readonly GetPlayersWithApple: number;
|
|
93
|
+
static readonly GetPlayersWithFacebook: number;
|
|
94
|
+
static readonly GetPlayersWithGoogle: number;
|
|
95
|
+
static readonly GetPlayersWithGenericService: number;
|
|
96
|
+
static readonly GetPlayersWithSegment: number;
|
|
97
|
+
static readonly GetPlayersWithTag: number;
|
|
98
|
+
static readonly GetExternal: number;
|
|
99
|
+
static readonly GetCatalogId: number;
|
|
100
|
+
static readonly GetOwnerInfo: number;
|
|
101
|
+
static readonly GetOnlineStatus: number;
|
|
102
|
+
static readonly RemovePlayerItem: number;
|
|
103
|
+
static readonly RemovePlayerCharacter: number;
|
|
104
|
+
static readonly AddPlayerFriend: number;
|
|
105
|
+
static readonly RemovePlayerFriend: number;
|
|
106
|
+
static readonly GetPlayerInventory: number;
|
|
107
|
+
static readonly GetPlayerCharacter: number;
|
|
108
|
+
static readonly GetPlayerFriend: number;
|
|
109
|
+
static readonly GetPlayerGroup: number;
|
|
110
|
+
static readonly GrantGroup: number;
|
|
111
|
+
static readonly JoinGroup: number;
|
|
112
|
+
static readonly GrantPlayerItem: number;
|
|
113
|
+
static readonly GrantPlayerCharacter: number;
|
|
114
|
+
static readonly GetOwner: number;
|
|
115
|
+
static readonly GetRemoveStatus: number;
|
|
116
|
+
static readonly SetGroupStatistics: number;
|
|
117
|
+
static readonly SetGroupData: number;
|
|
118
|
+
static readonly GetGroupCurrency: number;
|
|
119
|
+
static readonly SetGroupCurrency: number;
|
|
120
|
+
static readonly GrantGroupItem: number;
|
|
121
|
+
static readonly GetStatisticsLeaderboardAroundGroup: number;
|
|
122
|
+
static readonly GetGroupsWithTag: number;
|
|
123
|
+
static readonly GetGroupsWithSegment: number;
|
|
124
|
+
static readonly GetGroupStatistics: number;
|
|
125
|
+
static readonly GetGroupInventory: number;
|
|
126
|
+
static readonly GetGroupData: number;
|
|
127
|
+
static readonly GetGroupInformation: number;
|
|
128
|
+
static readonly GetMembers: number;
|
|
129
|
+
static readonly SetItemStatistics: number;
|
|
130
|
+
static readonly SetItemData: number;
|
|
131
|
+
static readonly GetItemData: number;
|
|
132
|
+
static readonly GetStatisticsLeaderboardAroundItem: number;
|
|
133
|
+
static readonly GetItemsWithTag: number;
|
|
134
|
+
static readonly GetItemsWithSegment: number;
|
|
135
|
+
static readonly GetItemStatistics: number;
|
|
136
|
+
static readonly GetItemInformation: number;
|
|
137
|
+
static readonly GetAmount: number;
|
|
138
|
+
static readonly GetItemType: number;
|
|
139
|
+
static readonly SetTsLastLogin: number;
|
|
140
|
+
static readonly SetRemoveStatus: number;
|
|
141
|
+
static readonly SetAmount: number;
|
|
142
|
+
static readonly RemoveGroup: number;
|
|
143
|
+
static readonly LeaveGroup: number;
|
|
144
|
+
static readonly AddMember: number;
|
|
145
|
+
static readonly RemoveMember: number;
|
|
146
|
+
static readonly GetContentData: number;
|
|
147
|
+
static readonly SetContentData: number;
|
|
148
|
+
static readonly GetGroupMessage: number;
|
|
149
|
+
static readonly SendGroupMessage: number;
|
|
150
|
+
static readonly GetPlayersWithDisplayName: number;
|
|
151
|
+
static readonly GetItemsWithDisplayName: number;
|
|
152
|
+
static readonly GetGroupsWithDisplayName: number;
|
|
153
|
+
static readonly SetOwner: number;
|
|
154
|
+
static readonly RemoveGroupItem: number;
|
|
155
|
+
static readonly GetClassId: number;
|
|
156
|
+
static readonly GetStoreItemInformation: number;
|
|
157
|
+
static readonly GetStoreItemsWithTag: number;
|
|
158
|
+
static readonly GrantStoreItem: number;
|
|
159
|
+
static readonly RemoveTag: number;
|
|
160
|
+
static readonly BuyStoreItem: number;
|
|
161
|
+
static readonly ValidateAppleAppStoreReceipt: number;
|
|
162
|
+
static readonly ValidateGooglePlayStoreReceipt: number;
|
|
163
|
+
static readonly ValidateFacebookStoreReceipt: number;
|
|
164
|
+
static readonly GetFriendStatisticsLeaderboardAroundPlayer: number;
|
|
165
|
+
static readonly GetFriendStatisticsLeaderboard: number;
|
|
166
|
+
static readonly SetEmail: number;
|
|
167
|
+
static readonly GetEmail: number;
|
|
10
168
|
static readonly CreateNewFileUploadInfo: number;
|
|
11
169
|
static readonly GetFileUploadInfo: number;
|
|
12
|
-
static readonly
|
|
13
|
-
static readonly
|
|
14
|
-
static readonly
|
|
15
|
-
static readonly
|
|
16
|
-
static readonly FindPlayer: number;
|
|
17
|
-
static readonly SendChatToUser: number;
|
|
18
|
-
static readonly GetChatMessageUser: number;
|
|
19
|
-
static readonly SendChatToChannel: number;
|
|
20
|
-
static readonly JoinChatChannel: number;
|
|
21
|
-
static readonly LeaveChatChannel: number;
|
|
22
|
-
static readonly GetChatInfoChannel: number;
|
|
23
|
-
static readonly GetChatMessageChannel: number;
|
|
24
|
-
static readonly GetChatMemberChannel: number;
|
|
25
|
-
static readonly EditChatInfoChannel: number;
|
|
26
|
-
static readonly EditChatMessageChannel: number;
|
|
27
|
-
static readonly EditChatMessageUser: number;
|
|
170
|
+
static readonly RequestDownloadFileUploadInfo: number;
|
|
171
|
+
static readonly RemoveFileUploadInfo: number;
|
|
172
|
+
static readonly GetFileUploadInfoList: number;
|
|
173
|
+
static readonly SetStoreItemInformation: number;
|
|
28
174
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export declare class ReturnCode {
|
|
2
|
+
static readonly SecretInvalid: number;
|
|
2
3
|
static readonly MaxSizeRequestReject: number;
|
|
3
4
|
static readonly MaxRequestReject: number;
|
|
4
5
|
static readonly MaxCCUReject: number;
|
|
@@ -6,6 +7,7 @@ export declare class ReturnCode {
|
|
|
6
7
|
static readonly InvalidRequestParameters: number;
|
|
7
8
|
static readonly OperationInvalid: number;
|
|
8
9
|
static readonly InternalServerError: number;
|
|
10
|
+
static readonly OperationNotAllow: number;
|
|
9
11
|
static readonly OperationTimeout: number;
|
|
10
12
|
static readonly UnknownError: number;
|
|
11
13
|
static readonly Ok: number;
|