@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
|
@@ -1,49 +1,31 @@
|
|
|
1
1
|
import { Action0 } from "./common/Action0";
|
|
2
2
|
import { Action1 } from "./common/Action1";
|
|
3
|
-
import {
|
|
3
|
+
import { GNHashtable } from "./common/GNData";
|
|
4
4
|
import { GNServerSettings } from "./config/GNServerSettings";
|
|
5
|
-
import { GoogleLoginType } from "./constant/enumType/GoogleLoginType";
|
|
6
5
|
import { OperationRequest } from "./entity/OperationRequest";
|
|
7
6
|
import { OperationResponse } from "./entity/OperationResponse";
|
|
8
|
-
import { CreateNewFileUploadInfoOperationResponse } from "./entity/response/CreateNewFileUploadInfoOperationResponse";
|
|
9
|
-
import { DebugOperationResponse } from "./entity/response/DebugOperationResponse";
|
|
10
|
-
import { EnterDisplayNameOperationResponse } from "./entity/response/EnterDisplayNameOperationResponse";
|
|
11
|
-
import { FetchAllDataOperationResponse } from "./entity/response/FetchAllDataOperationResponse";
|
|
12
|
-
import { FetchSparkPlayerOperationResponse } from "./entity/response/FetchSparkPlayerOperationResponse";
|
|
13
|
-
import { GetAppConfigOperationResponse } from "./entity/response/GetAppConfigOperationResponse";
|
|
14
|
-
import { GetFileUploadInfoOperationResponse } from "./entity/response/GetFileUploadInfoOperationResponse";
|
|
15
|
-
import { LoginOperationResponse } from "./entity/response/LoginOperationResponse";
|
|
16
|
-
import { LogoutOperationResponse } from "./entity/response/LogoutOperationResponse";
|
|
17
|
-
import { PublicAddressGetRandomMessageOperationResponse } from "./entity/response/PublicAddressGetRandomMessageOperationResponse";
|
|
18
|
-
import { RegisterAccountOperationResponse } from "./entity/response/RegisterAccountOperationResponse";
|
|
19
|
-
import { RegisterSocketOperationResponse } from "./entity/response/RegisterSocketOperationResponse";
|
|
20
|
-
import { TemplateOperationResponse } from "./entity/response/TemplateOperationResponse";
|
|
21
|
-
import { AddFriendOperationResponse } from "./entity/response/AddFriendOperationResponse";
|
|
22
|
-
import { RemoveFriendOperationResponse } from "./entity/response/RemoveFriendOperationResponse";
|
|
23
|
-
import { GetFriendsOperationResponse } from "./entity/response/GetFriendsOperationResponse";
|
|
24
|
-
import { FindPlayerOperationResponse } from "./entity/response/FindPlayerOperationResponse";
|
|
25
|
-
import { SendChatToUserOperationResponse } from "./entity/response/SendChatToUserOperationResponse";
|
|
26
|
-
import { GetChatMessageUserOperationResponse } from "./entity/response/GetChatMessageUserOperationResponse";
|
|
27
|
-
import { SendChatToChannelOperationResponse } from "./entity/response/SendChatToChannelOperationResponse";
|
|
28
|
-
import { JoinChatChannelOperationResponse } from "./entity/response/JoinChatChannelOperationResponse";
|
|
29
|
-
import { LeaveChatChannelOperationResponse } from "./entity/response/LeaveChatChannelOperationResponse";
|
|
30
|
-
import { GetChatInfoChannelOperationResponse } from "./entity/response/GetChatInfoChannelOperationResponse";
|
|
31
|
-
import { GetChatMessageChannelOperationResponse } from "./entity/response/GetChatMessageChannelOperationResponse";
|
|
32
|
-
import { GetChatMemberChannelOperationResponse } from "./entity/response/GetChatMemberChannelOperationResponse";
|
|
33
|
-
import { EditChatInfoChannelOperationResponse } from "./entity/response/EditChatInfoChannelOperationResponse";
|
|
34
|
-
import { EditChatMessageChannelOperationResponse } from "./entity/response/EditChatMessageChannelOperationResponse";
|
|
35
|
-
import { EditChatMessageUserOperationResponse } from "./entity/response/EditChatMessageUserOperationResponse";
|
|
36
7
|
import { IServerEventHandler } from "./networking/handler/IServerEventHandler";
|
|
37
|
-
import { HttpAppResponse } from "./networking/HttpPeer";
|
|
38
8
|
import { NetworkingPeer } from "./networking/NetworkingPeer";
|
|
39
9
|
import { OperationEvent } from "./entity/OperationEvent";
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
10
|
+
import { AuthenticateStatus } from "./networking/AuthenticateStatus";
|
|
11
|
+
import { RequestType } from "./constant/enumType/RequestType";
|
|
12
|
+
import { RequestRole } from "./constant/enumType/RequestRole";
|
|
13
|
+
import { CustomOperationRequest } from "./entity/request/CustomOperationRequest";
|
|
14
|
+
import { CustomOperationResponse } from "./entity/response/CustomOperationResponse";
|
|
15
|
+
import { Constructor } from "./entity/GNMetadata";
|
|
16
|
+
import { AuthenticateApi } from "./GNNetworkAuthenticateApi";
|
|
17
|
+
import { CharacterPlayerApi } from "./GNNetworkCharacterPlayerApi";
|
|
18
|
+
import { ContentApi } from "./GNNetworkContentApi";
|
|
19
|
+
import { DashboardApi } from "./GNNetworkDashboardApi";
|
|
20
|
+
import { GamePlayerApi } from "./GNNetworkGamePlayerApi";
|
|
21
|
+
import { GroupApi } from "./GNNetworkGroupApi";
|
|
22
|
+
import { InventoryApi } from "./GNNetworkInventoryApi";
|
|
23
|
+
import { MasterPlayerApi } from "./GNNetworkMasterPlayerApi";
|
|
24
|
+
import { StoreInventoryApi } from "./GNNetworkStoreInventoryApi";
|
|
43
25
|
export declare class GNNetwork {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
26
|
+
static readonly AUTH_TOKEN_KEY = "[GN]_AUTH_TOKEN_KEY";
|
|
27
|
+
static readonly USER_ID_KEY = "[GN]_USER_ID_KEY";
|
|
28
|
+
static readonly AUTH_TOKEN_TS_EXPIRE_KEY = "[GN]_AUTH_TOKEN_TS_EXPIRE_KEY";
|
|
47
29
|
private static gnServerSettings;
|
|
48
30
|
static getGNServerSettings(): GNServerSettings;
|
|
49
31
|
static peer: NetworkingPeer;
|
|
@@ -51,30 +33,28 @@ export declare class GNNetwork {
|
|
|
51
33
|
static getSocketSId(): string;
|
|
52
34
|
static isSocketConnected(): boolean;
|
|
53
35
|
static getServerTimestamp(): number;
|
|
54
|
-
static
|
|
55
|
-
static getAuthToken(): string;
|
|
56
|
-
static setUserId(userId: string): void;
|
|
57
|
-
static getUserId(): string;
|
|
36
|
+
static getAuthenticateStatus(): AuthenticateStatus;
|
|
58
37
|
static getPlatform(): number;
|
|
59
|
-
|
|
60
|
-
static
|
|
61
|
-
static
|
|
62
|
-
static
|
|
63
|
-
static
|
|
64
|
-
static
|
|
65
|
-
static
|
|
66
|
-
static
|
|
67
|
-
static
|
|
68
|
-
static getChatUserLst(): ChatUser[];
|
|
69
|
-
static getOnChatUserChange(): Action1<ChatUser>;
|
|
70
|
-
static subscriberOnChatUserChange(onHandler: Action1<ChatUser>): void;
|
|
38
|
+
static authenticate: AuthenticateApi;
|
|
39
|
+
static characterPlayer: CharacterPlayerApi;
|
|
40
|
+
static content: ContentApi;
|
|
41
|
+
static dashboard: DashboardApi;
|
|
42
|
+
static gamePlayer: GamePlayerApi;
|
|
43
|
+
static group: GroupApi;
|
|
44
|
+
static inventory: InventoryApi;
|
|
45
|
+
static masterPlayer: MasterPlayerApi;
|
|
46
|
+
static storeInventory: StoreInventoryApi;
|
|
71
47
|
static init(gnServerSettings: GNServerSettings): void;
|
|
72
48
|
static getClientSdkVersion(): string;
|
|
73
49
|
private static initServerSettings;
|
|
74
50
|
private static initGNDebug;
|
|
75
51
|
private static initGNSocketObject;
|
|
76
|
-
static sendViaSocket(request: OperationRequest, onResponse
|
|
77
|
-
static sendViaHttp(request: OperationRequest, onResponse
|
|
52
|
+
static sendViaSocket(requestType: RequestType, requestRole: RequestRole, request: OperationRequest, onResponse: Action1<OperationResponse>, overrideAuthToken: string, overrideSecretKey: string, customTags: GNHashtable): void;
|
|
53
|
+
static sendViaHttp(requestType: RequestType, requestRole: RequestRole, request: OperationRequest, onResponse: Action1<OperationResponse>, overrideAuthToken: string, overrideSecretKey: string, customTags: GNHashtable): void;
|
|
54
|
+
static sendViaSocketTRequestTResponse<TRequest extends CustomOperationRequest, TResponse extends CustomOperationResponse>(request: TRequest, onResponse: Action1<TResponse>, overrideAuthToken: string, overrideSecretKey: string, customTags: GNHashtable, cls: Constructor<TResponse>): void;
|
|
55
|
+
static sendViaHttpTRequestTResponse<TRequest extends CustomOperationRequest, TResponse extends CustomOperationResponse>(request: TRequest, onResponse: Action1<TResponse>, overrideAuthToken: string, overrideSecretKey: string, customTags: GNHashtable, cls: Constructor<TResponse>): void;
|
|
56
|
+
static sendViaSocketTResponse<TResponse extends CustomOperationResponse>(requestType: RequestType, requestRole: RequestRole, request: OperationRequest, onResponse: Action1<TResponse>, overrideAuthToken: string, overrideSecretKey: string, customTags: GNHashtable, cls: Constructor<TResponse>): void;
|
|
57
|
+
static sendViaHttpTResponse<TResponse extends CustomOperationResponse>(requestType: RequestType, requestRole: RequestRole, request: OperationRequest, onResponse: Action1<TResponse>, overrideAuthToken: string, overrideSecretKey: string, customTags: GNHashtable, cls: Constructor<TResponse>): void;
|
|
78
58
|
static connectSocket(_onSocketConnect?: Action0): void;
|
|
79
59
|
static disconnectSocket(_onSocketDisconnect?: Action0): void;
|
|
80
60
|
static setOnEventHandler(_onEventHandler: Action1<OperationEvent>): void;
|
|
@@ -84,42 +64,4 @@ export declare class GNNetwork {
|
|
|
84
64
|
static unsubscriberOnDisconnectHandler(_onDisconnectHandler: Action0): void;
|
|
85
65
|
static subscriberServerEventHandler(serverEventHandler: IServerEventHandler): void;
|
|
86
66
|
static syncTs(onResponse?: Action1<number>): void;
|
|
87
|
-
static getConfig(configName: string, onResponse: Action1<string>): void;
|
|
88
|
-
static downloadFile(fileId: string, onHttpAppResponse: Action1<HttpAppResponse>): void;
|
|
89
|
-
static uploadFile(fileId: string, content: Uint8Array, mimeType: string, onHttpAppResponse: Action1<HttpAppResponse>): void;
|
|
90
|
-
static debug(booleanValue: boolean, numberValue: number, stringValue: string, gnHashtableValue: GNHashtable, gnArrayValue: GNArray, onResponse?: Action1<DebugOperationResponse>): void;
|
|
91
|
-
static enterDisplayName(displayName: string, onResponse?: Action1<EnterDisplayNameOperationResponse>): void;
|
|
92
|
-
static fetchAllData(onResponse?: Action1<FetchAllDataOperationResponse>): void;
|
|
93
|
-
static fetchSparkPlayer(onResponse?: Action1<FetchSparkPlayerOperationResponse>): void;
|
|
94
|
-
static getAppConfig(configTypes: GNArray, onResponse?: Action1<GetAppConfigOperationResponse>): void;
|
|
95
|
-
static accountLogin(username: string, password: string, onResponse?: Action1<LoginOperationResponse>): void;
|
|
96
|
-
static deviceLogin(onResponse?: Action1<LoginOperationResponse>): void;
|
|
97
|
-
static facebookLogin(facebookToken: string, onResponse?: Action1<LoginOperationResponse>): void;
|
|
98
|
-
static googleLogin(googleToken: string, googleLoginType: GoogleLoginType, onResponse?: Action1<LoginOperationResponse>): void;
|
|
99
|
-
static appleLogin(appleToken: string, displayName?: string, onResponse?: Action1<LoginOperationResponse>): void;
|
|
100
|
-
static userIdLogin(userId: string, onResponse?: Action1<LoginOperationResponse>): void;
|
|
101
|
-
static publicAddressLogin(signature: string, publicAddress: string, message: string, onResponse?: Action1<LoginOperationResponse>): void;
|
|
102
|
-
static publicAddressGetRandomMessage(onResponse?: Action1<PublicAddressGetRandomMessageOperationResponse>): void;
|
|
103
|
-
static customIdLogin(customId: string, onResponse?: Action1<LoginOperationResponse>): void;
|
|
104
|
-
static registerAccount(username: string, password: string, onResponse?: Action1<RegisterAccountOperationResponse>): void;
|
|
105
|
-
static registerSocket(sid: string, onResponse?: Action1<RegisterSocketOperationResponse>): void;
|
|
106
|
-
static template(booleanValue: boolean, onResponse?: Action1<TemplateOperationResponse>): void;
|
|
107
|
-
static createNewFileUploadInfo(originFileName: string, onResponse?: Action1<CreateNewFileUploadInfoOperationResponse>): void;
|
|
108
|
-
static getFileUploadInfo(fileId: string, onResponse?: Action1<GetFileUploadInfoOperationResponse>): void;
|
|
109
|
-
static logout(onResponse?: Action1<LogoutOperationResponse>): void;
|
|
110
|
-
static addFriend(friendId: string, forceAcceptFriend?: boolean, onResponse?: Action1<AddFriendOperationResponse>): void;
|
|
111
|
-
static removeFriend(friendId: string, onResponse?: Action1<RemoveFriendOperationResponse>): void;
|
|
112
|
-
static getFriends(onResponse?: Action1<GetFriendsOperationResponse>): void;
|
|
113
|
-
static findPlayer(keyword: string, skip?: number, limit?: number, onResponse?: Action1<FindPlayerOperationResponse>): void;
|
|
114
|
-
static sendChatToUser(userId: string, message: string, saveToDatabase?: boolean, onResponse?: Action1<SendChatToUserOperationResponse>): void;
|
|
115
|
-
static getChatMessageUser(userId: string, skip?: number, limit?: number, onResponse?: Action1<GetChatMessageUserOperationResponse>): void;
|
|
116
|
-
static sendChatToChannel(channel: string, message: string, onResponse?: Action1<SendChatToChannelOperationResponse>): void;
|
|
117
|
-
static joinChatChannel(channel: string, onResponse?: Action1<JoinChatChannelOperationResponse>): void;
|
|
118
|
-
static leaveChatChannel(channel: string, onResponse?: Action1<LeaveChatChannelOperationResponse>): void;
|
|
119
|
-
static getChatInfoChannel(channel: string, onResponse?: Action1<GetChatInfoChannelOperationResponse>): void;
|
|
120
|
-
static getChatMessageChannel(channel: string, skip?: number, limit?: number, onResponse?: Action1<GetChatMessageChannelOperationResponse>): void;
|
|
121
|
-
static getChatMemberChannel(channel: string, onResponse?: Action1<GetChatMemberChannelOperationResponse>): void;
|
|
122
|
-
static editChatInfoChannel(channel: string, name?: string, avatarChannel?: GNHashtable, onResponse?: Action1<EditChatInfoChannelOperationResponse>): void;
|
|
123
|
-
static editChatMessageChannel(tsCreate: number, channel: string, message?: string, isDelete?: boolean, onResponse?: Action1<EditChatMessageChannelOperationResponse>): void;
|
|
124
|
-
static editChatMessageUser(tsCreate: number, userId: string, message?: string, isDelete?: boolean, onResponse?: Action1<EditChatMessageUserOperationResponse>): void;
|
|
125
67
|
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Action1 } from "./common/Action1";
|
|
2
|
+
import { GNHashtable } from "./common/GNData";
|
|
3
|
+
import { AuthenticateModels } from "./entity/models/AuthenticateModels";
|
|
4
|
+
import { AuthenticateResponseModels } from "./entity/models/AuthenticateResponseModels";
|
|
5
|
+
export declare class AuthenticateApi {
|
|
6
|
+
server: ServerAuthenticateApi;
|
|
7
|
+
admin: AdminAuthenticateApi;
|
|
8
|
+
loginByAccount(requestData: AuthenticateModels.LoginByAccountRequestData, onResponse?: Action1<AuthenticateResponseModels.LoginByAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
9
|
+
loginByAndroidDeviceId(requestData: AuthenticateModels.LoginByAndroidDeviceIdRequestData, onResponse?: Action1<AuthenticateResponseModels.LoginByAndroidDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
10
|
+
loginByApple(requestData: AuthenticateModels.LoginByAppleRequestData, onResponse?: Action1<AuthenticateResponseModels.LoginByAppleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
11
|
+
loginByCustomDeviceId(requestData: AuthenticateModels.LoginByCustomDeviceIdRequestData, onResponse?: Action1<AuthenticateResponseModels.LoginByCustomDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
12
|
+
loginByCustomId(requestData: AuthenticateModels.LoginByCustomIdRequestData, onResponse?: Action1<AuthenticateResponseModels.LoginByCustomIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
13
|
+
loginByEditorDeviceId(requestData: AuthenticateModels.LoginByEditorDeviceIdRequestData, onResponse?: Action1<AuthenticateResponseModels.LoginByEditorDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
14
|
+
loginByFacebook(requestData: AuthenticateModels.LoginByFacebookRequestData, onResponse?: Action1<AuthenticateResponseModels.LoginByFacebookOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
15
|
+
loginByGenericService(requestData: AuthenticateModels.LoginByGenericServiceRequestData, onResponse?: Action1<AuthenticateResponseModels.LoginByGenericServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
16
|
+
loginByGoogle(requestData: AuthenticateModels.LoginByGoogleRequestData, onResponse?: Action1<AuthenticateResponseModels.LoginByGoogleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
17
|
+
loginByiOSDeviceId(requestData: AuthenticateModels.LoginByiOSDeviceIdRequestData, onResponse?: Action1<AuthenticateResponseModels.LoginByiOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
18
|
+
loginByLinuxDeviceId(requestData: AuthenticateModels.LoginByLinuxDeviceIdRequestData, onResponse?: Action1<AuthenticateResponseModels.LoginByLinuxDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
19
|
+
loginByMacOSDeviceId(requestData: AuthenticateModels.LoginByMacOSDeviceIdRequestData, onResponse?: Action1<AuthenticateResponseModels.LoginByMacOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
20
|
+
loginByWindowsDeviceId(requestData: AuthenticateModels.LoginByWindowsDeviceIdRequestData, onResponse?: Action1<AuthenticateResponseModels.LoginByWindowsDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
21
|
+
loginByWindowsPhoneDeviceId(requestData: AuthenticateModels.LoginByWindowsPhoneDeviceIdRequestData, onResponse?: Action1<AuthenticateResponseModels.LoginByWindowsPhoneDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
22
|
+
registerAccount(requestData: AuthenticateModels.RegisterAccountRequestData, onResponse?: Action1<AuthenticateResponseModels.RegisterAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
23
|
+
}
|
|
24
|
+
export declare class ServerAuthenticateApi {
|
|
25
|
+
}
|
|
26
|
+
export declare class AdminAuthenticateApi {
|
|
27
|
+
}
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
import { Action1 } from "./common/Action1";
|
|
2
|
+
import { GNHashtable } from "./common/GNData";
|
|
3
|
+
import { CharacterPlayerModels } from "./entity/models/CharacterPlayerModels";
|
|
4
|
+
import { CharacterPlayerResponseModels } from "./entity/models/CharacterPlayerResponseModels";
|
|
5
|
+
export declare class CharacterPlayerApi {
|
|
6
|
+
server: ServerCharacterPlayerApi;
|
|
7
|
+
admin: AdminCharacterPlayerApi;
|
|
8
|
+
addPlayerFriend(requestData: CharacterPlayerModels.AddPlayerFriendRequestData, onResponse?: Action1<CharacterPlayerResponseModels.AddPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
9
|
+
addSegment(requestData: CharacterPlayerModels.AddSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
10
|
+
getAvatar(requestData: CharacterPlayerModels.GetAvatarRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
11
|
+
getCatalogId(requestData: CharacterPlayerModels.GetCatalogIdRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCatalogIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
12
|
+
getCountryCode(requestData: CharacterPlayerModels.GetCountryCodeRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
13
|
+
getCustomData(requestData: CharacterPlayerModels.GetCustomDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
14
|
+
getDisplayName(requestData: CharacterPlayerModels.GetDisplayNameRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
15
|
+
getFriendStatisticsLeaderboardAroundPlayer(requestData: CharacterPlayerModels.GetFriendStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
16
|
+
getFriendStatisticsLeaderboard(requestData: CharacterPlayerModels.GetFriendStatisticsLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
17
|
+
getIpAddressCreate(requestData: CharacterPlayerModels.GetIpAddressCreateRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetIpAddressCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
18
|
+
getOwner(requestData: CharacterPlayerModels.GetOwnerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
19
|
+
getPlayerBan(requestData: CharacterPlayerModels.GetPlayerBanRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
20
|
+
getPlayerCurrency(requestData: CharacterPlayerModels.GetPlayerCurrencyRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
21
|
+
getPlayerData(requestData: CharacterPlayerModels.GetPlayerDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
22
|
+
getPlayerFriend(requestData: CharacterPlayerModels.GetPlayerFriendRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
23
|
+
getPlayerGroup(requestData: CharacterPlayerModels.GetPlayerGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
24
|
+
getPlayerInformation(requestData: CharacterPlayerModels.GetPlayerInformationRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
25
|
+
getPlayerInventory(requestData: CharacterPlayerModels.GetPlayerInventoryRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerInventoryOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
26
|
+
getPlayerStatistics(requestData: CharacterPlayerModels.GetPlayerStatisticsRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
27
|
+
getPlayersWithDisplayName(requestData: CharacterPlayerModels.GetPlayersWithDisplayNameRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
28
|
+
getPlayersWithSegment(requestData: CharacterPlayerModels.GetPlayersWithSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
29
|
+
getPlayersWithTag(requestData: CharacterPlayerModels.GetPlayersWithTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayersWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
30
|
+
getRemoveStatus(requestData: CharacterPlayerModels.GetRemoveStatusRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
31
|
+
getSegment(requestData: CharacterPlayerModels.GetSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
32
|
+
getStatisticsLeaderboardAroundPlayer(requestData: CharacterPlayerModels.GetStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
33
|
+
getStatisticsLeaderboard(requestData: CharacterPlayerModels.GetStatisticsLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
34
|
+
getTag(requestData: CharacterPlayerModels.GetTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
35
|
+
getTsCreate(requestData: CharacterPlayerModels.GetTsCreateRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
36
|
+
getTsLastLogin(requestData: CharacterPlayerModels.GetTsLastLoginRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
37
|
+
grantGroup(requestData: CharacterPlayerModels.GrantGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GrantGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
38
|
+
grantPlayerItem(requestData: CharacterPlayerModels.GrantPlayerItemRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GrantPlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
39
|
+
joinGroup(requestData: CharacterPlayerModels.JoinGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.JoinGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
40
|
+
leaveGroup(requestData: CharacterPlayerModels.LeaveGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.LeaveGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
41
|
+
removePlayerFriend(requestData: CharacterPlayerModels.RemovePlayerFriendRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemovePlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
42
|
+
removePlayerItem(requestData: CharacterPlayerModels.RemovePlayerItemRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemovePlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
43
|
+
removeSegment(requestData: CharacterPlayerModels.RemoveSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
44
|
+
removeTag(requestData: CharacterPlayerModels.RemoveTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
45
|
+
setAvatar(requestData: CharacterPlayerModels.SetAvatarRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
46
|
+
setCountryCode(requestData: CharacterPlayerModels.SetCountryCodeRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
47
|
+
setCustomData(requestData: CharacterPlayerModels.SetCustomDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
48
|
+
setDisplayName(requestData: CharacterPlayerModels.SetDisplayNameRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
49
|
+
setOwner(requestData: CharacterPlayerModels.SetOwnerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
50
|
+
setPlayerBan(requestData: CharacterPlayerModels.SetPlayerBanRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
51
|
+
setPlayerCurrency(requestData: CharacterPlayerModels.SetPlayerCurrencyRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
52
|
+
setPlayerData(requestData: CharacterPlayerModels.SetPlayerDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
53
|
+
setPlayerStatistics(requestData: CharacterPlayerModels.SetPlayerStatisticsRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
54
|
+
setRemoveStatus(requestData: CharacterPlayerModels.SetRemoveStatusRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
55
|
+
setTag(requestData: CharacterPlayerModels.SetTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
56
|
+
}
|
|
57
|
+
export declare class ServerCharacterPlayerApi {
|
|
58
|
+
addPlayerFriend(requestData: CharacterPlayerModels.ServerAddPlayerFriendRequestData, onResponse?: Action1<CharacterPlayerResponseModels.AddPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
59
|
+
addSegment(requestData: CharacterPlayerModels.ServerAddSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
60
|
+
getAvatar(requestData: CharacterPlayerModels.ServerGetAvatarRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
61
|
+
getCatalogId(requestData: CharacterPlayerModels.ServerGetCatalogIdRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCatalogIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
62
|
+
getCountryCode(requestData: CharacterPlayerModels.ServerGetCountryCodeRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
63
|
+
getCustomData(requestData: CharacterPlayerModels.ServerGetCustomDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
64
|
+
getDisplayName(requestData: CharacterPlayerModels.ServerGetDisplayNameRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
65
|
+
getFriendStatisticsLeaderboardAroundPlayer(requestData: CharacterPlayerModels.ServerGetFriendStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
66
|
+
getFriendStatisticsLeaderboard(requestData: CharacterPlayerModels.ServerGetFriendStatisticsLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
67
|
+
getIpAddressCreate(requestData: CharacterPlayerModels.ServerGetIpAddressCreateRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetIpAddressCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
68
|
+
getOwner(requestData: CharacterPlayerModels.ServerGetOwnerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
69
|
+
getPlayerBan(requestData: CharacterPlayerModels.ServerGetPlayerBanRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
70
|
+
getPlayerCurrency(requestData: CharacterPlayerModels.ServerGetPlayerCurrencyRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
71
|
+
getPlayerData(requestData: CharacterPlayerModels.ServerGetPlayerDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
72
|
+
getPlayerFriend(requestData: CharacterPlayerModels.ServerGetPlayerFriendRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
73
|
+
getPlayerGroup(requestData: CharacterPlayerModels.ServerGetPlayerGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
74
|
+
getPlayerInformation(requestData: CharacterPlayerModels.ServerGetPlayerInformationRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
75
|
+
getPlayerInventory(requestData: CharacterPlayerModels.ServerGetPlayerInventoryRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerInventoryOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
76
|
+
getPlayerStatistics(requestData: CharacterPlayerModels.ServerGetPlayerStatisticsRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
77
|
+
getPlayersWithDisplayName(requestData: CharacterPlayerModels.ServerGetPlayersWithDisplayNameRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
78
|
+
getPlayersWithSegment(requestData: CharacterPlayerModels.ServerGetPlayersWithSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
79
|
+
getPlayersWithTag(requestData: CharacterPlayerModels.ServerGetPlayersWithTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayersWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
80
|
+
getRemoveStatus(requestData: CharacterPlayerModels.ServerGetRemoveStatusRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
81
|
+
getSegment(requestData: CharacterPlayerModels.ServerGetSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
82
|
+
getStatisticsLeaderboardAroundPlayer(requestData: CharacterPlayerModels.ServerGetStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
83
|
+
getStatisticsLeaderboard(requestData: CharacterPlayerModels.ServerGetStatisticsLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
84
|
+
getTag(requestData: CharacterPlayerModels.ServerGetTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
85
|
+
getTsCreate(requestData: CharacterPlayerModels.ServerGetTsCreateRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
86
|
+
getTsLastLogin(requestData: CharacterPlayerModels.ServerGetTsLastLoginRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
87
|
+
grantGroup(requestData: CharacterPlayerModels.ServerGrantGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GrantGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
88
|
+
grantPlayerItem(requestData: CharacterPlayerModels.ServerGrantPlayerItemRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GrantPlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
89
|
+
joinGroup(requestData: CharacterPlayerModels.ServerJoinGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.JoinGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
90
|
+
leaveGroup(requestData: CharacterPlayerModels.ServerLeaveGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.LeaveGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
91
|
+
removePlayerFriend(requestData: CharacterPlayerModels.ServerRemovePlayerFriendRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemovePlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
92
|
+
removePlayerItem(requestData: CharacterPlayerModels.ServerRemovePlayerItemRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemovePlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
93
|
+
removeSegment(requestData: CharacterPlayerModels.ServerRemoveSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
94
|
+
removeTag(requestData: CharacterPlayerModels.ServerRemoveTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
95
|
+
setAvatar(requestData: CharacterPlayerModels.ServerSetAvatarRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
96
|
+
setCountryCode(requestData: CharacterPlayerModels.ServerSetCountryCodeRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
97
|
+
setCustomData(requestData: CharacterPlayerModels.ServerSetCustomDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
98
|
+
setDisplayName(requestData: CharacterPlayerModels.ServerSetDisplayNameRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
99
|
+
setOwner(requestData: CharacterPlayerModels.ServerSetOwnerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
100
|
+
setPlayerBan(requestData: CharacterPlayerModels.ServerSetPlayerBanRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
101
|
+
setPlayerCurrency(requestData: CharacterPlayerModels.ServerSetPlayerCurrencyRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
102
|
+
setPlayerData(requestData: CharacterPlayerModels.ServerSetPlayerDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
103
|
+
setPlayerStatistics(requestData: CharacterPlayerModels.ServerSetPlayerStatisticsRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
104
|
+
setRemoveStatus(requestData: CharacterPlayerModels.ServerSetRemoveStatusRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
105
|
+
setTag(requestData: CharacterPlayerModels.ServerSetTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
106
|
+
}
|
|
107
|
+
export declare class AdminCharacterPlayerApi {
|
|
108
|
+
addPlayerFriend(requestData: CharacterPlayerModels.AdminAddPlayerFriendRequestData, onResponse?: Action1<CharacterPlayerResponseModels.AddPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
109
|
+
addSegment(requestData: CharacterPlayerModels.AdminAddSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
110
|
+
getAvatar(requestData: CharacterPlayerModels.AdminGetAvatarRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
111
|
+
getCatalogId(requestData: CharacterPlayerModels.AdminGetCatalogIdRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCatalogIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
112
|
+
getCountryCode(requestData: CharacterPlayerModels.AdminGetCountryCodeRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
113
|
+
getCustomData(requestData: CharacterPlayerModels.AdminGetCustomDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
114
|
+
getDisplayName(requestData: CharacterPlayerModels.AdminGetDisplayNameRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
115
|
+
getFriendStatisticsLeaderboardAroundPlayer(requestData: CharacterPlayerModels.AdminGetFriendStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
116
|
+
getFriendStatisticsLeaderboard(requestData: CharacterPlayerModels.AdminGetFriendStatisticsLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
117
|
+
getIpAddressCreate(requestData: CharacterPlayerModels.AdminGetIpAddressCreateRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetIpAddressCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
118
|
+
getOwner(requestData: CharacterPlayerModels.AdminGetOwnerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
119
|
+
getPlayerBan(requestData: CharacterPlayerModels.AdminGetPlayerBanRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
120
|
+
getPlayerCurrency(requestData: CharacterPlayerModels.AdminGetPlayerCurrencyRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
121
|
+
getPlayerData(requestData: CharacterPlayerModels.AdminGetPlayerDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
122
|
+
getPlayerFriend(requestData: CharacterPlayerModels.AdminGetPlayerFriendRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
123
|
+
getPlayerGroup(requestData: CharacterPlayerModels.AdminGetPlayerGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
124
|
+
getPlayerInformation(requestData: CharacterPlayerModels.AdminGetPlayerInformationRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
125
|
+
getPlayerInventory(requestData: CharacterPlayerModels.AdminGetPlayerInventoryRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerInventoryOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
126
|
+
getPlayerStatistics(requestData: CharacterPlayerModels.AdminGetPlayerStatisticsRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
127
|
+
getPlayersWithDisplayName(requestData: CharacterPlayerModels.AdminGetPlayersWithDisplayNameRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
128
|
+
getPlayersWithSegment(requestData: CharacterPlayerModels.AdminGetPlayersWithSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
129
|
+
getPlayersWithTag(requestData: CharacterPlayerModels.AdminGetPlayersWithTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetPlayersWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
130
|
+
getRemoveStatus(requestData: CharacterPlayerModels.AdminGetRemoveStatusRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
131
|
+
getSegment(requestData: CharacterPlayerModels.AdminGetSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
132
|
+
getStatisticsLeaderboardAroundPlayer(requestData: CharacterPlayerModels.AdminGetStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
133
|
+
getStatisticsLeaderboard(requestData: CharacterPlayerModels.AdminGetStatisticsLeaderboardRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
134
|
+
getTag(requestData: CharacterPlayerModels.AdminGetTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
135
|
+
getTsCreate(requestData: CharacterPlayerModels.AdminGetTsCreateRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
136
|
+
getTsLastLogin(requestData: CharacterPlayerModels.AdminGetTsLastLoginRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
137
|
+
grantGroup(requestData: CharacterPlayerModels.AdminGrantGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GrantGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
138
|
+
grantPlayerItem(requestData: CharacterPlayerModels.AdminGrantPlayerItemRequestData, onResponse?: Action1<CharacterPlayerResponseModels.GrantPlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
139
|
+
joinGroup(requestData: CharacterPlayerModels.AdminJoinGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.JoinGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
140
|
+
leaveGroup(requestData: CharacterPlayerModels.AdminLeaveGroupRequestData, onResponse?: Action1<CharacterPlayerResponseModels.LeaveGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
141
|
+
removePlayerFriend(requestData: CharacterPlayerModels.AdminRemovePlayerFriendRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemovePlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
142
|
+
removePlayerItem(requestData: CharacterPlayerModels.AdminRemovePlayerItemRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemovePlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
143
|
+
removeSegment(requestData: CharacterPlayerModels.AdminRemoveSegmentRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
144
|
+
removeTag(requestData: CharacterPlayerModels.AdminRemoveTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
145
|
+
setAvatar(requestData: CharacterPlayerModels.AdminSetAvatarRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
146
|
+
setCountryCode(requestData: CharacterPlayerModels.AdminSetCountryCodeRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
147
|
+
setCustomData(requestData: CharacterPlayerModels.AdminSetCustomDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
148
|
+
setDisplayName(requestData: CharacterPlayerModels.AdminSetDisplayNameRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
149
|
+
setOwner(requestData: CharacterPlayerModels.AdminSetOwnerRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
150
|
+
setPlayerBan(requestData: CharacterPlayerModels.AdminSetPlayerBanRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
151
|
+
setPlayerCurrency(requestData: CharacterPlayerModels.AdminSetPlayerCurrencyRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
152
|
+
setPlayerData(requestData: CharacterPlayerModels.AdminSetPlayerDataRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
153
|
+
setPlayerStatistics(requestData: CharacterPlayerModels.AdminSetPlayerStatisticsRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
154
|
+
setRemoveStatus(requestData: CharacterPlayerModels.AdminSetRemoveStatusRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
155
|
+
setTag(requestData: CharacterPlayerModels.AdminSetTagRequestData, onResponse?: Action1<CharacterPlayerResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
156
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { Action1 } from "./common/Action1";
|
|
2
|
+
import { GNHashtable } from "./common/GNData";
|
|
3
|
+
import { ContentModels } from "./entity/models/ContentModels";
|
|
4
|
+
import { ContentResponseModels } from "./entity/models/ContentResponseModels";
|
|
5
|
+
export declare class ContentApi {
|
|
6
|
+
server: ServerContentApi;
|
|
7
|
+
admin: AdminContentApi;
|
|
8
|
+
createNewFileUploadInfo(requestData: ContentModels.CreateNewFileUploadInfoRequestData, onResponse?: Action1<ContentResponseModels.CreateNewFileUploadInfoOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
9
|
+
getContentData(requestData: ContentModels.GetContentDataRequestData, onResponse?: Action1<ContentResponseModels.GetContentDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
10
|
+
getFileUploadInfoList(requestData: ContentModels.GetFileUploadInfoListRequestData, onResponse?: Action1<ContentResponseModels.GetFileUploadInfoListOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
11
|
+
getFileUploadInfo(requestData: ContentModels.GetFileUploadInfoRequestData, onResponse?: Action1<ContentResponseModels.GetFileUploadInfoOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
12
|
+
removeFileUploadInfo(requestData: ContentModels.RemoveFileUploadInfoRequestData, onResponse?: Action1<ContentResponseModels.RemoveFileUploadInfoOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
13
|
+
requestDownloadFileUploadInfo(requestData: ContentModels.RequestDownloadFileUploadInfoRequestData, onResponse?: Action1<ContentResponseModels.RequestDownloadFileUploadInfoOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
14
|
+
setContentData(requestData: ContentModels.SetContentDataRequestData, onResponse?: Action1<ContentResponseModels.SetContentDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
15
|
+
}
|
|
16
|
+
export declare class ServerContentApi {
|
|
17
|
+
createNewFileUploadInfo(requestData: ContentModels.ServerCreateNewFileUploadInfoRequestData, onResponse?: Action1<ContentResponseModels.CreateNewFileUploadInfoOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
18
|
+
getContentData(requestData: ContentModels.ServerGetContentDataRequestData, onResponse?: Action1<ContentResponseModels.GetContentDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
19
|
+
getFileUploadInfoList(requestData: ContentModels.ServerGetFileUploadInfoListRequestData, onResponse?: Action1<ContentResponseModels.GetFileUploadInfoListOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
20
|
+
getFileUploadInfo(requestData: ContentModels.ServerGetFileUploadInfoRequestData, onResponse?: Action1<ContentResponseModels.GetFileUploadInfoOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
21
|
+
removeFileUploadInfo(requestData: ContentModels.ServerRemoveFileUploadInfoRequestData, onResponse?: Action1<ContentResponseModels.RemoveFileUploadInfoOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
22
|
+
requestDownloadFileUploadInfo(requestData: ContentModels.ServerRequestDownloadFileUploadInfoRequestData, onResponse?: Action1<ContentResponseModels.RequestDownloadFileUploadInfoOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
23
|
+
setContentData(requestData: ContentModels.ServerSetContentDataRequestData, onResponse?: Action1<ContentResponseModels.SetContentDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
24
|
+
}
|
|
25
|
+
export declare class AdminContentApi {
|
|
26
|
+
createNewFileUploadInfo(requestData: ContentModels.AdminCreateNewFileUploadInfoRequestData, onResponse?: Action1<ContentResponseModels.CreateNewFileUploadInfoOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
27
|
+
getContentData(requestData: ContentModels.AdminGetContentDataRequestData, onResponse?: Action1<ContentResponseModels.GetContentDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
28
|
+
getFileUploadInfoList(requestData: ContentModels.AdminGetFileUploadInfoListRequestData, onResponse?: Action1<ContentResponseModels.GetFileUploadInfoListOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
29
|
+
getFileUploadInfo(requestData: ContentModels.AdminGetFileUploadInfoRequestData, onResponse?: Action1<ContentResponseModels.GetFileUploadInfoOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
30
|
+
removeFileUploadInfo(requestData: ContentModels.AdminRemoveFileUploadInfoRequestData, onResponse?: Action1<ContentResponseModels.RemoveFileUploadInfoOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
31
|
+
requestDownloadFileUploadInfo(requestData: ContentModels.AdminRequestDownloadFileUploadInfoRequestData, onResponse?: Action1<ContentResponseModels.RequestDownloadFileUploadInfoOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
32
|
+
setContentData(requestData: ContentModels.AdminSetContentDataRequestData, onResponse?: Action1<ContentResponseModels.SetContentDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
33
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Action1 } from "./common/Action1";
|
|
2
|
+
import { GNHashtable } from "./common/GNData";
|
|
3
|
+
import { DashboardModels } from "./entity/models/DashboardModels";
|
|
4
|
+
import { DashboardResponseModels } from "./entity/models/DashboardResponseModels";
|
|
5
|
+
export declare class DashboardApi {
|
|
6
|
+
server: ServerDashboardApi;
|
|
7
|
+
admin: AdminDashboardApi;
|
|
8
|
+
changePasswordAdminAccount(requestData: DashboardModels.ChangePasswordAdminAccountRequestData, onResponse?: Action1<DashboardResponseModels.ChangePasswordAdminAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
9
|
+
getAdminAccountList(requestData: DashboardModels.GetAdminAccountListRequestData, onResponse?: Action1<DashboardResponseModels.GetAdminAccountListOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
10
|
+
getGameInformation(requestData: DashboardModels.GetGameInformationRequestData, onResponse?: Action1<DashboardResponseModels.GetGameInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
11
|
+
getGameList(requestData: DashboardModels.GetGameListRequestData, onResponse?: Action1<DashboardResponseModels.GetGameListOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
12
|
+
getMasterGameSettings(requestData: DashboardModels.GetMasterGameSettingsRequestData, onResponse?: Action1<DashboardResponseModels.GetMasterGameSettingsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
13
|
+
getSecretInfoInformation(requestData: DashboardModels.GetSecretInfoInformationRequestData, onResponse?: Action1<DashboardResponseModels.GetSecretInfoInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
14
|
+
getSecretInfoList(requestData: DashboardModels.GetSecretInfoListRequestData, onResponse?: Action1<DashboardResponseModels.GetSecretInfoListOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
15
|
+
getServerLog(requestData: DashboardModels.GetServerLogRequestData, onResponse?: Action1<DashboardResponseModels.GetServerLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
16
|
+
grantAdminAccount(requestData: DashboardModels.GrantAdminAccountRequestData, onResponse?: Action1<DashboardResponseModels.GrantAdminAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
17
|
+
grantGame(requestData: DashboardModels.GrantGameRequestData, onResponse?: Action1<DashboardResponseModels.GrantGameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
18
|
+
grantSecretInfo(requestData: DashboardModels.GrantSecretInfoRequestData, onResponse?: Action1<DashboardResponseModels.GrantSecretInfoOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
19
|
+
loginByAdminAccount(requestData: DashboardModels.LoginByAdminAccountRequestData, onResponse?: Action1<DashboardResponseModels.LoginByAdminAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
20
|
+
removeAdminAccount(requestData: DashboardModels.RemoveAdminAccountRequestData, onResponse?: Action1<DashboardResponseModels.RemoveAdminAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
21
|
+
setGameInformation(requestData: DashboardModels.SetGameInformationRequestData, onResponse?: Action1<DashboardResponseModels.SetGameInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
22
|
+
setMasterGameSettings(requestData: DashboardModels.SetMasterGameSettingsRequestData, onResponse?: Action1<DashboardResponseModels.SetMasterGameSettingsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
23
|
+
setPasswordAdminAccount(requestData: DashboardModels.SetPasswordAdminAccountRequestData, onResponse?: Action1<DashboardResponseModels.SetPasswordAdminAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
24
|
+
setSecretInfoInformation(requestData: DashboardModels.SetSecretInfoInformationRequestData, onResponse?: Action1<DashboardResponseModels.SetSecretInfoInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
25
|
+
setSecretKeyAdminAccount(requestData: DashboardModels.SetSecretKeyAdminAccountRequestData, onResponse?: Action1<DashboardResponseModels.SetSecretKeyAdminAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
|
|
26
|
+
}
|
|
27
|
+
export declare class ServerDashboardApi {
|
|
28
|
+
}
|
|
29
|
+
export declare class AdminDashboardApi {
|
|
30
|
+
}
|