@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,98 +1,145 @@
1
- import { CustomOperationResponseAbstract } from "../response/CustomOperationResponse";
2
- import { GamePlayerModels } from "./GamePlayerModels";
3
- export declare module GamePlayerResponseModels {
4
- class AddPlayerFriendOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
5
- }
6
- class AddSegmentOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
7
- }
8
- class GetAvatarOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
9
- }
10
- class GetCountryCodeOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
11
- }
12
- class GetCustomDataOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
13
- }
14
- class GetDisplayNameOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
15
- }
16
- class GetFriendStatisticsLeaderboardAroundPlayerOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GetStatisticsLeaderboardResponseData> {
17
- }
18
- class GetFriendStatisticsLeaderboardOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GetStatisticsLeaderboardResponseData> {
19
- }
20
- class GetIpAddressCreateOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
21
- }
22
- class GetOnlineStatusOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.OnlineStatusResponseData> {
23
- }
24
- class GetPlayerBanOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
25
- }
26
- class GetPlayerCharacterOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
27
- }
28
- class GetPlayerCurrencyOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
29
- }
30
- class GetPlayerDataOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
31
- }
32
- class GetPlayerFriendOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
33
- }
34
- class GetPlayerGroupOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
35
- }
36
- class GetPlayerInformationOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
37
- }
38
- class GetPlayerInventoryOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
39
- }
40
- class GetPlayerStatisticsOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
41
- }
42
- class GetPlayersWithDisplayNameOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayersWithUserIdResponseData> {
43
- }
44
- class GetPlayersWithSegmentOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayersWithUserIdResponseData> {
45
- }
46
- class GetPlayersWithTagOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayersWithUserIdResponseData> {
47
- }
48
- class GetSegmentOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
49
- }
50
- class GetStatisticsLeaderboardAroundPlayerOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GetStatisticsLeaderboardResponseData> {
51
- }
52
- class GetStatisticsLeaderboardOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GetStatisticsLeaderboardResponseData> {
53
- }
54
- class GetTagOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
55
- }
56
- class GetTsCreateOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
57
- }
58
- class GetTsLastLoginOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
59
- }
60
- class GrantGroupOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
61
- }
62
- class GrantPlayerCharacterOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
63
- }
64
- class GrantPlayerItemOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
65
- }
66
- class JoinGroupOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
67
- }
68
- class LeaveGroupOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
69
- }
70
- class RemovePlayerCharacterOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
71
- }
72
- class RemovePlayerFriendOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
73
- }
74
- class RemovePlayerItemOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
75
- }
76
- class RemoveSegmentOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
77
- }
78
- class RemoveTagOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
79
- }
80
- class SetAvatarOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
81
- }
82
- class SetCountryCodeOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
83
- }
84
- class SetCustomDataOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
85
- }
86
- class SetDisplayNameOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
87
- }
88
- class SetPlayerBanOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
89
- }
90
- class SetPlayerCurrencyOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
91
- }
92
- class SetPlayerDataOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
93
- }
94
- class SetPlayerStatisticsOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
95
- }
96
- class SetTagOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
97
- }
98
- }
1
+ import { CustomOperationResponseAbstract } from "../response/CustomOperationResponse";
2
+ import { GamePlayerModels } from "./GamePlayerModels";
3
+ export declare namespace GamePlayerResponseModels {
4
+ class AddPlayerFriendOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
5
+ constructor();
6
+ }
7
+ class AddSegmentOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
8
+ constructor();
9
+ }
10
+ class GetAvatarOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
11
+ constructor();
12
+ }
13
+ class GetCountryCodeOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
14
+ constructor();
15
+ }
16
+ class GetCustomDataOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
17
+ constructor();
18
+ }
19
+ class GetDisplayNameOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
20
+ constructor();
21
+ }
22
+ class GetFriendStatisticsLeaderboardAroundPlayerOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GetStatisticsLeaderboardResponseData> {
23
+ constructor();
24
+ }
25
+ class GetFriendStatisticsLeaderboardOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GetStatisticsLeaderboardResponseData> {
26
+ constructor();
27
+ }
28
+ class GetIpAddressCreateOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
29
+ constructor();
30
+ }
31
+ class GetOnlineStatusOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.OnlineStatusResponseData> {
32
+ constructor();
33
+ }
34
+ class GetPlayerBanOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
35
+ constructor();
36
+ }
37
+ class GetPlayerCharacterOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
38
+ constructor();
39
+ }
40
+ class GetPlayerCurrencyOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
41
+ constructor();
42
+ }
43
+ class GetPlayerDataOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
44
+ constructor();
45
+ }
46
+ class GetPlayerFriendOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
47
+ constructor();
48
+ }
49
+ class GetPlayerGroupOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
50
+ constructor();
51
+ }
52
+ class GetPlayerInformationOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
53
+ constructor();
54
+ }
55
+ class GetPlayerInventoryOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
56
+ constructor();
57
+ }
58
+ class GetPlayerStatisticsOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
59
+ constructor();
60
+ }
61
+ class GetPlayersWithDisplayNameOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayersWithUserIdResponseData> {
62
+ constructor();
63
+ }
64
+ class GetPlayersWithSegmentOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayersWithUserIdResponseData> {
65
+ constructor();
66
+ }
67
+ class GetPlayersWithTagOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayersWithUserIdResponseData> {
68
+ constructor();
69
+ }
70
+ class GetSegmentOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
71
+ constructor();
72
+ }
73
+ class GetStatisticsLeaderboardAroundPlayerOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GetStatisticsLeaderboardResponseData> {
74
+ constructor();
75
+ }
76
+ class GetStatisticsLeaderboardOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GetStatisticsLeaderboardResponseData> {
77
+ constructor();
78
+ }
79
+ class GetTagOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
80
+ constructor();
81
+ }
82
+ class GetTsCreateOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
83
+ constructor();
84
+ }
85
+ class GetTsLastLoginOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
86
+ constructor();
87
+ }
88
+ class GrantGroupOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
89
+ constructor();
90
+ }
91
+ class GrantPlayerCharacterOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
92
+ constructor();
93
+ }
94
+ class GrantPlayerItemOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
95
+ constructor();
96
+ }
97
+ class JoinGroupOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
98
+ constructor();
99
+ }
100
+ class LeaveGroupOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
101
+ constructor();
102
+ }
103
+ class RemovePlayerCharacterOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
104
+ constructor();
105
+ }
106
+ class RemovePlayerFriendOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
107
+ constructor();
108
+ }
109
+ class RemovePlayerItemOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
110
+ constructor();
111
+ }
112
+ class RemoveSegmentOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
113
+ constructor();
114
+ }
115
+ class RemoveTagOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
116
+ constructor();
117
+ }
118
+ class SetAvatarOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
119
+ constructor();
120
+ }
121
+ class SetCountryCodeOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
122
+ constructor();
123
+ }
124
+ class SetCustomDataOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
125
+ constructor();
126
+ }
127
+ class SetDisplayNameOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
128
+ constructor();
129
+ }
130
+ class SetPlayerBanOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
131
+ constructor();
132
+ }
133
+ class SetPlayerCurrencyOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
134
+ constructor();
135
+ }
136
+ class SetPlayerDataOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
137
+ constructor();
138
+ }
139
+ class SetPlayerStatisticsOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData> {
140
+ constructor();
141
+ }
142
+ class SetTagOperationResponse extends CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData> {
143
+ constructor();
144
+ }
145
+ }
@@ -1,59 +1,59 @@
1
- export declare module GenericModels {
2
- class AvatarItem {
3
- type: number;
4
- value: string;
5
- }
6
- class TagItem {
7
- key: string;
8
- value: string;
9
- }
10
- class BanItem {
11
- tsExpire: number;
12
- reason: string;
13
- }
14
- class DataItem {
15
- key: string;
16
- value: any;
17
- }
18
- class CurrencyItem {
19
- key: string;
20
- value: number;
21
- }
22
- class StatisticsItem {
23
- key: string;
24
- value: number;
25
- }
26
- class CharacterItem {
27
- characterId: string;
28
- catalogId: string;
29
- }
30
- class OwnerItem {
31
- type: number;
32
- id: string;
33
- }
34
- class RemoveStatusItem {
35
- tsRemove: number;
36
- reason?: string;
37
- }
38
- class InventoryItem {
39
- itemId: string;
40
- catalogId: string;
41
- classId: string;
42
- }
43
- class GroupItem {
44
- groupId: string;
45
- catalogId: string;
46
- status: number;
47
- tsLastStatusUpdate: number;
48
- }
49
- class FriendItem {
50
- friendId: string;
51
- catalogId: string;
52
- status: number;
53
- tsLastStatusUpdate: number;
54
- }
55
- class MemberItem {
56
- memberId: string;
57
- status: number;
58
- }
59
- }
1
+ export declare namespace GenericModels {
2
+ class AvatarItem {
3
+ type: number;
4
+ value: string;
5
+ }
6
+ class TagItem {
7
+ key: string;
8
+ value: string;
9
+ }
10
+ class BanItem {
11
+ tsExpire: number;
12
+ reason: string;
13
+ }
14
+ class DataItem {
15
+ key: string;
16
+ value: any;
17
+ }
18
+ class CurrencyItem {
19
+ key: string;
20
+ value: number;
21
+ }
22
+ class StatisticsItem {
23
+ key: string;
24
+ value: number;
25
+ }
26
+ class CharacterItem {
27
+ characterId: string;
28
+ catalogId: string;
29
+ }
30
+ class OwnerItem {
31
+ type: number;
32
+ id: string;
33
+ }
34
+ class RemoveStatusItem {
35
+ tsRemove: number;
36
+ reason?: string;
37
+ }
38
+ class InventoryItem {
39
+ itemId: string;
40
+ catalogId: string;
41
+ classId: string;
42
+ }
43
+ class GroupItem {
44
+ groupId: string;
45
+ catalogId: string;
46
+ status: number;
47
+ tsLastStatusUpdate: number;
48
+ }
49
+ class FriendItem {
50
+ friendId: string;
51
+ catalogId: string;
52
+ status: number;
53
+ tsLastStatusUpdate: number;
54
+ }
55
+ class MemberItem {
56
+ memberId: string;
57
+ status: number;
58
+ }
59
+ }