@xmobitea/gn-typescript-client 2.0.4 → 2.0.6

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.
Files changed (105) hide show
  1. package/GNServerSettingsConfig.debug.json +3 -3
  2. package/dist/gn.js.client.js +50188 -0
  3. package/dist/gn.js.client.min.js +1 -1
  4. package/dist/index.d.ts +190 -190
  5. package/dist/index.js +24803 -22847
  6. package/dist/runtime/GNNetwork.d.ts +66 -67
  7. package/dist/runtime/GNNetworkAuthenticateApi.d.ts +28 -27
  8. package/dist/runtime/GNNetworkCharacterPlayerApi.d.ts +156 -156
  9. package/dist/runtime/GNNetworkContentApi.d.ts +33 -33
  10. package/dist/runtime/GNNetworkDashboardApi.d.ts +30 -30
  11. package/dist/runtime/GNNetworkGamePlayerApi.d.ts +153 -153
  12. package/dist/runtime/GNNetworkGroupApi.d.ts +120 -120
  13. package/dist/runtime/GNNetworkInventoryApi.d.ts +108 -108
  14. package/dist/runtime/GNNetworkMasterPlayerApi.d.ts +217 -217
  15. package/dist/runtime/GNNetworkStoreInventoryApi.d.ts +39 -39
  16. package/dist/runtime/common/Action0.d.ts +1 -1
  17. package/dist/runtime/common/Action1.d.ts +1 -1
  18. package/dist/runtime/common/Action2.d.ts +1 -1
  19. package/dist/runtime/common/Action3.d.ts +1 -1
  20. package/dist/runtime/common/Action4.d.ts +1 -1
  21. package/dist/runtime/common/GNData.d.ts +69 -69
  22. package/dist/runtime/config/GNServerSettings.d.ts +64 -64
  23. package/dist/runtime/constant/Commands.d.ts +17 -17
  24. package/dist/runtime/constant/EventCode.d.ts +8 -8
  25. package/dist/runtime/constant/OperationCode.d.ts +175 -174
  26. package/dist/runtime/constant/ReturnCode.d.ts +14 -14
  27. package/dist/runtime/constant/enumType/FriendStatus.d.ts +6 -6
  28. package/dist/runtime/constant/enumType/GoogleLoginType.d.ts +4 -4
  29. package/dist/runtime/constant/enumType/GroupStatus.d.ts +6 -6
  30. package/dist/runtime/constant/enumType/InvalidMemberType.d.ts +17 -17
  31. package/dist/runtime/constant/enumType/ItemType.d.ts +4 -4
  32. package/dist/runtime/constant/enumType/LoginType.d.ts +10 -10
  33. package/dist/runtime/constant/enumType/OwnerType.d.ts +6 -6
  34. package/dist/runtime/constant/enumType/PermissionDataItem.d.ts +4 -4
  35. package/dist/runtime/constant/enumType/RequestRole.d.ts +5 -5
  36. package/dist/runtime/constant/enumType/RequestType.d.ts +12 -12
  37. package/dist/runtime/constant/enumType/StatisticsAggregationMethod.d.ts +6 -6
  38. package/dist/runtime/constant/enumType/UserRoleType.d.ts +8 -8
  39. package/dist/runtime/constant/errorCode/GNErrorCode.d.ts +40 -39
  40. package/dist/runtime/constant/parameterCode/GNParameterCode.d.ts +376 -375
  41. package/dist/runtime/constant/parameterCode/ParameterCode.d.ts +6 -6
  42. package/dist/runtime/entity/DataMember.d.ts +77 -77
  43. package/dist/runtime/entity/GNMetadata.d.ts +22 -22
  44. package/dist/runtime/entity/InvalidMember.d.ts +5 -5
  45. package/dist/runtime/entity/OperationEvent.d.ts +14 -14
  46. package/dist/runtime/entity/OperationHelper.d.ts +7 -7
  47. package/dist/runtime/entity/OperationRequest.d.ts +21 -21
  48. package/dist/runtime/entity/OperationResponse.d.ts +27 -27
  49. package/dist/runtime/entity/models/AuthenticateModels.d.ts +116 -108
  50. package/dist/runtime/entity/models/AuthenticateRequestModels.d.ts +118 -111
  51. package/dist/runtime/entity/models/AuthenticateResponseModels.d.ts +52 -34
  52. package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +493 -493
  53. package/dist/runtime/entity/models/CharacterPlayerRequestModels.d.ts +726 -726
  54. package/dist/runtime/entity/models/CharacterPlayerResponseModels.d.ts +148 -100
  55. package/dist/runtime/entity/models/ContentModels.d.ts +90 -90
  56. package/dist/runtime/entity/models/ContentRequestModels.d.ts +111 -111
  57. package/dist/runtime/entity/models/ContentResponseModels.d.ts +25 -18
  58. package/dist/runtime/entity/models/DashboardModels.d.ts +546 -545
  59. package/dist/runtime/entity/models/DashboardRequestModels.d.ts +132 -132
  60. package/dist/runtime/entity/models/DashboardResponseModels.d.ts +58 -40
  61. package/dist/runtime/entity/models/GamePlayerModels.d.ts +531 -531
  62. package/dist/runtime/entity/models/GamePlayerRequestModels.d.ts +711 -711
  63. package/dist/runtime/entity/models/GamePlayerResponseModels.d.ts +145 -98
  64. package/dist/runtime/entity/models/GenericModels.d.ts +59 -59
  65. package/dist/runtime/entity/models/GroupModels.d.ts +387 -387
  66. package/dist/runtime/entity/models/GroupRequestModels.d.ts +546 -546
  67. package/dist/runtime/entity/models/GroupResponseModels.d.ts +112 -76
  68. package/dist/runtime/entity/models/InventoryModels.d.ts +331 -331
  69. package/dist/runtime/entity/models/InventoryRequestModels.d.ts +486 -486
  70. package/dist/runtime/entity/models/InventoryResponseModels.d.ts +100 -68
  71. package/dist/runtime/entity/models/MasterPlayerModels.d.ts +767 -767
  72. package/dist/runtime/entity/models/MasterPlayerRequestModels.d.ts +1033 -1033
  73. package/dist/runtime/entity/models/MasterPlayerResponseModels.d.ts +211 -142
  74. package/dist/runtime/entity/models/StoreInventoryModels.d.ts +187 -187
  75. package/dist/runtime/entity/models/StoreInventoryRequestModels.d.ts +141 -141
  76. package/dist/runtime/entity/models/StoreInventoryResponseModels.d.ts +31 -22
  77. package/dist/runtime/entity/request/CustomOperationRequest.d.ts +21 -19
  78. package/dist/runtime/entity/response/CustomOperationResponse.d.ts +20 -19
  79. package/dist/runtime/helper/CodeHelper.d.ts +15 -15
  80. package/dist/runtime/helper/ConverterService.d.ts +14 -14
  81. package/dist/runtime/helper/GNSupport.d.ts +5 -5
  82. package/dist/runtime/logger/GNDebug.d.ts +15 -15
  83. package/dist/runtime/networking/AuthenticateStatus.d.ts +8 -11
  84. package/dist/runtime/networking/IPeer.d.ts +12 -12
  85. package/dist/runtime/networking/NetworkingPeer.d.ts +40 -40
  86. package/dist/runtime/networking/OperationPending.d.ts +30 -30
  87. package/dist/runtime/networking/PeerBase.d.ts +30 -30
  88. package/dist/runtime/networking/handler/IServerEventHandler.d.ts +14 -14
  89. package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.d.ts +13 -13
  90. package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.d.ts +13 -13
  91. package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.d.ts +13 -13
  92. package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.d.ts +13 -13
  93. package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.d.ts +12 -12
  94. package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.d.ts +12 -12
  95. package/dist/runtime/networking/http/HttpPeer.d.ts +24 -24
  96. package/dist/runtime/networking/http/NetworkingHttpPeerBase.d.ts +11 -11
  97. package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.d.ts +13 -13
  98. package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.d.ts +25 -25
  99. package/dist/runtime/networking/socket/NetworkingSocketPeerBase.d.ts +48 -48
  100. package/dist/runtime/networking/socket/SocketPeer.d.ts +28 -28
  101. package/dist/runtime/typescript/ServiceUpdate.d.ts +6 -6
  102. package/package.json +16 -14
  103. package/tsconfig-build.min.udm.json +13 -0
  104. package/tsconfig.min.udm.json +9 -0
  105. package/webpack.config.min.udm.js +48 -0
@@ -1,100 +1,148 @@
1
- import { CustomOperationResponseAbstract } from "../response/CustomOperationResponse";
2
- import { CharacterPlayerModels } from "./CharacterPlayerModels";
3
- export declare module CharacterPlayerResponseModels {
4
- class AddPlayerFriendOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
5
- }
6
- class AddSegmentOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
7
- }
8
- class GetAvatarOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
9
- }
10
- class GetCatalogIdOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
11
- }
12
- class GetCountryCodeOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
13
- }
14
- class GetCustomDataOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
15
- }
16
- class GetDisplayNameOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
17
- }
18
- class GetFriendStatisticsLeaderboardAroundPlayerOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.GetStatisticsLeaderboardResponseData> {
19
- }
20
- class GetFriendStatisticsLeaderboardOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.GetStatisticsLeaderboardResponseData> {
21
- }
22
- class GetIpAddressCreateOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
23
- }
24
- class GetOwnerOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
25
- }
26
- class GetPlayerBanOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
27
- }
28
- class GetPlayerCurrencyOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
29
- }
30
- class GetPlayerDataOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
31
- }
32
- class GetPlayerFriendOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
33
- }
34
- class GetPlayerGroupOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
35
- }
36
- class GetPlayerInformationOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
37
- }
38
- class GetPlayerInventoryOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
39
- }
40
- class GetPlayerStatisticsOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
41
- }
42
- class GetPlayersWithDisplayNameOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.MasterPlayersWithCharacterIdResponseData> {
43
- }
44
- class GetPlayersWithSegmentOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.MasterPlayersWithCharacterIdResponseData> {
45
- }
46
- class GetPlayersWithTagOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.MasterPlayersWithCharacterIdResponseData> {
47
- }
48
- class GetRemoveStatusOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
49
- }
50
- class GetSegmentOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
51
- }
52
- class GetStatisticsLeaderboardAroundPlayerOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.GetStatisticsLeaderboardResponseData> {
53
- }
54
- class GetStatisticsLeaderboardOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.GetStatisticsLeaderboardResponseData> {
55
- }
56
- class GetTagOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
57
- }
58
- class GetTsCreateOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
59
- }
60
- class GetTsLastLoginOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
61
- }
62
- class GrantGroupOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
63
- }
64
- class GrantPlayerItemOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
65
- }
66
- class JoinGroupOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
67
- }
68
- class LeaveGroupOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
69
- }
70
- class RemovePlayerFriendOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
71
- }
72
- class RemovePlayerItemOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
73
- }
74
- class RemoveSegmentOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
75
- }
76
- class RemoveTagOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
77
- }
78
- class SetAvatarOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
79
- }
80
- class SetCountryCodeOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
81
- }
82
- class SetCustomDataOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
83
- }
84
- class SetDisplayNameOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
85
- }
86
- class SetOwnerOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
87
- }
88
- class SetPlayerBanOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
89
- }
90
- class SetPlayerCurrencyOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
91
- }
92
- class SetPlayerDataOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
93
- }
94
- class SetPlayerStatisticsOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
95
- }
96
- class SetRemoveStatusOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
97
- }
98
- class SetTagOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
99
- }
100
- }
1
+ import { CustomOperationResponseAbstract } from "../response/CustomOperationResponse";
2
+ import { CharacterPlayerModels } from "./CharacterPlayerModels";
3
+ export declare namespace CharacterPlayerResponseModels {
4
+ class AddPlayerFriendOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
5
+ constructor();
6
+ }
7
+ class AddSegmentOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
8
+ constructor();
9
+ }
10
+ class GetAvatarOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
11
+ constructor();
12
+ }
13
+ class GetCatalogIdOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
14
+ constructor();
15
+ }
16
+ class GetCountryCodeOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
17
+ constructor();
18
+ }
19
+ class GetCustomDataOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
20
+ constructor();
21
+ }
22
+ class GetDisplayNameOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
23
+ constructor();
24
+ }
25
+ class GetFriendStatisticsLeaderboardAroundPlayerOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.GetStatisticsLeaderboardResponseData> {
26
+ constructor();
27
+ }
28
+ class GetFriendStatisticsLeaderboardOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.GetStatisticsLeaderboardResponseData> {
29
+ constructor();
30
+ }
31
+ class GetIpAddressCreateOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
32
+ constructor();
33
+ }
34
+ class GetOwnerOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
35
+ constructor();
36
+ }
37
+ class GetPlayerBanOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
38
+ constructor();
39
+ }
40
+ class GetPlayerCurrencyOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
41
+ constructor();
42
+ }
43
+ class GetPlayerDataOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
44
+ constructor();
45
+ }
46
+ class GetPlayerFriendOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
47
+ constructor();
48
+ }
49
+ class GetPlayerGroupOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
50
+ constructor();
51
+ }
52
+ class GetPlayerInformationOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
53
+ constructor();
54
+ }
55
+ class GetPlayerInventoryOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
56
+ constructor();
57
+ }
58
+ class GetPlayerStatisticsOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
59
+ constructor();
60
+ }
61
+ class GetPlayersWithDisplayNameOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.MasterPlayersWithCharacterIdResponseData> {
62
+ constructor();
63
+ }
64
+ class GetPlayersWithSegmentOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.MasterPlayersWithCharacterIdResponseData> {
65
+ constructor();
66
+ }
67
+ class GetPlayersWithTagOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.MasterPlayersWithCharacterIdResponseData> {
68
+ constructor();
69
+ }
70
+ class GetRemoveStatusOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
71
+ constructor();
72
+ }
73
+ class GetSegmentOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
74
+ constructor();
75
+ }
76
+ class GetStatisticsLeaderboardAroundPlayerOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.GetStatisticsLeaderboardResponseData> {
77
+ constructor();
78
+ }
79
+ class GetStatisticsLeaderboardOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.GetStatisticsLeaderboardResponseData> {
80
+ constructor();
81
+ }
82
+ class GetTagOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
83
+ constructor();
84
+ }
85
+ class GetTsCreateOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
86
+ constructor();
87
+ }
88
+ class GetTsLastLoginOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
89
+ constructor();
90
+ }
91
+ class GrantGroupOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
92
+ constructor();
93
+ }
94
+ class GrantPlayerItemOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
95
+ constructor();
96
+ }
97
+ class JoinGroupOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
98
+ constructor();
99
+ }
100
+ class LeaveGroupOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
101
+ constructor();
102
+ }
103
+ class RemovePlayerFriendOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
104
+ constructor();
105
+ }
106
+ class RemovePlayerItemOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
107
+ constructor();
108
+ }
109
+ class RemoveSegmentOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
110
+ constructor();
111
+ }
112
+ class RemoveTagOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
113
+ constructor();
114
+ }
115
+ class SetAvatarOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
116
+ constructor();
117
+ }
118
+ class SetCountryCodeOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
119
+ constructor();
120
+ }
121
+ class SetCustomDataOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
122
+ constructor();
123
+ }
124
+ class SetDisplayNameOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
125
+ constructor();
126
+ }
127
+ class SetOwnerOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
128
+ constructor();
129
+ }
130
+ class SetPlayerBanOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
131
+ constructor();
132
+ }
133
+ class SetPlayerCurrencyOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
134
+ constructor();
135
+ }
136
+ class SetPlayerDataOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
137
+ constructor();
138
+ }
139
+ class SetPlayerStatisticsOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
140
+ constructor();
141
+ }
142
+ class SetRemoveStatusOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
143
+ constructor();
144
+ }
145
+ class SetTagOperationResponse extends CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
146
+ constructor();
147
+ }
148
+ }
@@ -1,90 +1,90 @@
1
- import { GNHashtable } from "../../common/GNData";
2
- import { GenericModels } from "./GenericModels";
3
- export declare module ContentModels {
4
- class ContentDataParam {
5
- key: string;
6
- data: GNHashtable;
7
- }
8
- class CreateNewFileUploadInfoRequestData {
9
- fileName: string;
10
- }
11
- class ServerCreateNewFileUploadInfoRequestData extends CreateNewFileUploadInfoRequestData {
12
- userId: string;
13
- }
14
- class AdminCreateNewFileUploadInfoRequestData extends ServerCreateNewFileUploadInfoRequestData {
15
- }
16
- class GetContentDataRequestData {
17
- keys: Array<string>;
18
- label?: string;
19
- }
20
- class ServerGetContentDataRequestData extends GetContentDataRequestData {
21
- }
22
- class AdminGetContentDataRequestData extends ServerGetContentDataRequestData {
23
- }
24
- class GetFileUploadInfoListRequestData {
25
- fileId: string;
26
- skip?: number;
27
- limit?: number;
28
- }
29
- class ServerGetFileUploadInfoListRequestData extends GetFileUploadInfoListRequestData {
30
- }
31
- class AdminGetFileUploadInfoListRequestData extends ServerGetFileUploadInfoListRequestData {
32
- }
33
- class GetFileUploadInfoRequestData {
34
- fileId: string;
35
- }
36
- class ServerGetFileUploadInfoRequestData extends GetFileUploadInfoRequestData {
37
- }
38
- class AdminGetFileUploadInfoRequestData extends ServerGetFileUploadInfoRequestData {
39
- }
40
- class RemoveFileUploadInfoRequestData {
41
- fileId: string;
42
- reason?: string;
43
- }
44
- class ServerRemoveFileUploadInfoRequestData extends RemoveFileUploadInfoRequestData {
45
- }
46
- class AdminRemoveFileUploadInfoRequestData extends ServerRemoveFileUploadInfoRequestData {
47
- }
48
- class RequestDownloadFileUploadInfoRequestData {
49
- fileId: string;
50
- }
51
- class ServerRequestDownloadFileUploadInfoRequestData extends RequestDownloadFileUploadInfoRequestData {
52
- }
53
- class AdminRequestDownloadFileUploadInfoRequestData extends ServerRequestDownloadFileUploadInfoRequestData {
54
- }
55
- class SetContentDataRequestData {
56
- configs: Array<ContentDataParam>;
57
- label?: string;
58
- }
59
- class ServerSetContentDataRequestData extends SetContentDataRequestData {
60
- }
61
- class AdminSetContentDataRequestData extends ServerSetContentDataRequestData {
62
- }
63
- class FileIdUploadResponseData {
64
- fileId: string;
65
- }
66
- class GetContentDataResponseData {
67
- configs: Array<ContentDataParam>;
68
- }
69
- class GetFileUploadInfoListResponseData {
70
- results: Array<FileIdUploadResponseData>;
71
- }
72
- class FileUploadItem {
73
- mimeType: string;
74
- size: number;
75
- folderFileName: string;
76
- }
77
- class GetFileUploadInfoResponseData extends FileIdUploadResponseData {
78
- fileName: string;
79
- tsCreate: number;
80
- userId: string;
81
- removeStatus: GenericModels.RemoveStatusItem;
82
- tsUploadExpire?: number;
83
- fileUpload?: FileUploadItem;
84
- }
85
- class RequestDownloadFileUploadInfoResponseData {
86
- downloadToken: string;
87
- }
88
- class EmptyResponseData {
89
- }
90
- }
1
+ import { GNHashtable } from "../../common/GNData";
2
+ import { GenericModels } from "./GenericModels";
3
+ export declare namespace ContentModels {
4
+ class ContentDataParam {
5
+ key: string;
6
+ data: GNHashtable;
7
+ }
8
+ class CreateNewFileUploadInfoRequestData {
9
+ fileName: string;
10
+ }
11
+ class ServerCreateNewFileUploadInfoRequestData extends CreateNewFileUploadInfoRequestData {
12
+ userId: string;
13
+ }
14
+ class AdminCreateNewFileUploadInfoRequestData extends ServerCreateNewFileUploadInfoRequestData {
15
+ }
16
+ class GetContentDataRequestData {
17
+ keys: Array<string>;
18
+ label?: string;
19
+ }
20
+ class ServerGetContentDataRequestData extends GetContentDataRequestData {
21
+ }
22
+ class AdminGetContentDataRequestData extends ServerGetContentDataRequestData {
23
+ }
24
+ class GetFileUploadInfoListRequestData {
25
+ fileId: string;
26
+ skip?: number;
27
+ limit?: number;
28
+ }
29
+ class ServerGetFileUploadInfoListRequestData extends GetFileUploadInfoListRequestData {
30
+ }
31
+ class AdminGetFileUploadInfoListRequestData extends ServerGetFileUploadInfoListRequestData {
32
+ }
33
+ class GetFileUploadInfoRequestData {
34
+ fileId: string;
35
+ }
36
+ class ServerGetFileUploadInfoRequestData extends GetFileUploadInfoRequestData {
37
+ }
38
+ class AdminGetFileUploadInfoRequestData extends ServerGetFileUploadInfoRequestData {
39
+ }
40
+ class RemoveFileUploadInfoRequestData {
41
+ fileId: string;
42
+ reason?: string;
43
+ }
44
+ class ServerRemoveFileUploadInfoRequestData extends RemoveFileUploadInfoRequestData {
45
+ }
46
+ class AdminRemoveFileUploadInfoRequestData extends ServerRemoveFileUploadInfoRequestData {
47
+ }
48
+ class RequestDownloadFileUploadInfoRequestData {
49
+ fileId: string;
50
+ }
51
+ class ServerRequestDownloadFileUploadInfoRequestData extends RequestDownloadFileUploadInfoRequestData {
52
+ }
53
+ class AdminRequestDownloadFileUploadInfoRequestData extends ServerRequestDownloadFileUploadInfoRequestData {
54
+ }
55
+ class SetContentDataRequestData {
56
+ configs: Array<ContentDataParam>;
57
+ label?: string;
58
+ }
59
+ class ServerSetContentDataRequestData extends SetContentDataRequestData {
60
+ }
61
+ class AdminSetContentDataRequestData extends ServerSetContentDataRequestData {
62
+ }
63
+ class FileIdUploadResponseData {
64
+ fileId: string;
65
+ }
66
+ class GetContentDataResponseData {
67
+ configs: Array<ContentDataParam>;
68
+ }
69
+ class GetFileUploadInfoListResponseData {
70
+ results: Array<FileIdUploadResponseData>;
71
+ }
72
+ class FileUploadItem {
73
+ mimeType: string;
74
+ size: number;
75
+ folderFileName: string;
76
+ }
77
+ class GetFileUploadInfoResponseData extends FileIdUploadResponseData {
78
+ fileName: string;
79
+ tsCreate: number;
80
+ userId: string;
81
+ removeStatus: GenericModels.RemoveStatusItem;
82
+ tsUploadExpire?: number;
83
+ fileUpload?: FileUploadItem;
84
+ }
85
+ class RequestDownloadFileUploadInfoResponseData {
86
+ downloadToken: string;
87
+ }
88
+ class EmptyResponseData {
89
+ }
90
+ }