@xmobitea/gn-typescript-client 2.6.13 → 2.6.14

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 (286) hide show
  1. package/AGENTS.md +37 -0
  2. package/README.MD +420 -1
  3. package/dist/gearn.js.client.js +25056 -1056
  4. package/dist/gearn.js.client.min.js +1 -1
  5. package/dist/index.d.ts +30 -0
  6. package/dist/index.js +24236 -212
  7. package/dist/runtime/GNNetwork.d.ts +687 -3
  8. package/dist/runtime/GNNetworkAuthenticateApi.d.ts +327 -0
  9. package/dist/runtime/GNNetworkCharacterPlayerApi.d.ts +1026 -0
  10. package/dist/runtime/GNNetworkCloudScriptApi.d.ts +141 -0
  11. package/dist/runtime/GNNetworkContentApi.d.ts +243 -0
  12. package/dist/runtime/GNNetworkDashboardApi.d.ts +221 -0
  13. package/dist/runtime/GNNetworkGamePlayerApi.d.ts +1033 -0
  14. package/dist/runtime/GNNetworkGroupApi.d.ts +783 -0
  15. package/dist/runtime/GNNetworkInventoryApi.d.ts +673 -0
  16. package/dist/runtime/GNNetworkMasterPlayerApi.d.ts +1614 -6
  17. package/dist/runtime/GNNetworkMultiplayerApi.d.ts +234 -0
  18. package/dist/runtime/GNNetworkStoreInventoryApi.d.ts +309 -0
  19. package/dist/runtime/common/Action0.d.ts +30 -0
  20. package/dist/runtime/common/Action1.d.ts +32 -0
  21. package/dist/runtime/common/Action2.d.ts +21 -0
  22. package/dist/runtime/common/Action3.d.ts +16 -0
  23. package/dist/runtime/common/Action4.d.ts +17 -0
  24. package/dist/runtime/common/GNData.d.ts +368 -0
  25. package/dist/runtime/config/GNServerSettings.d.ts +442 -12
  26. package/dist/runtime/constant/Commands.d.ts +80 -0
  27. package/dist/runtime/constant/EventCode.d.ts +48 -0
  28. package/dist/runtime/constant/OperationCode.d.ts +74 -1
  29. package/dist/runtime/constant/ReturnCode.d.ts +72 -0
  30. package/dist/runtime/constant/enumType/ExecuteResponseStatus.d.ts +31 -0
  31. package/dist/runtime/constant/enumType/FriendStatus.d.ts +39 -0
  32. package/dist/runtime/constant/enumType/GoogleLoginType.d.ts +23 -0
  33. package/dist/runtime/constant/enumType/GroupStatus.d.ts +32 -0
  34. package/dist/runtime/constant/enumType/InvalidMemberType.d.ts +75 -0
  35. package/dist/runtime/constant/enumType/ItemType.d.ts +23 -0
  36. package/dist/runtime/constant/enumType/MatchStatus.d.ts +30 -0
  37. package/dist/runtime/constant/enumType/MatchmakingMemberStatus.d.ts +24 -0
  38. package/dist/runtime/constant/enumType/MatchmakingTicketStatus.d.ts +34 -0
  39. package/dist/runtime/constant/enumType/OwnerType.d.ts +40 -0
  40. package/dist/runtime/constant/enumType/PermissionDataItem.d.ts +22 -0
  41. package/dist/runtime/constant/enumType/PushPlatformType.d.ts +18 -0
  42. package/dist/runtime/constant/enumType/RequestRole.d.ts +32 -0
  43. package/dist/runtime/constant/enumType/RequestType.d.ts +70 -0
  44. package/dist/runtime/constant/enumType/StoreItemType.d.ts +21 -0
  45. package/dist/runtime/constant/enumType/StoreReceiveType.d.ts +30 -0
  46. package/dist/runtime/constant/errorCode/ErrorCode.d.ts +190 -8
  47. package/dist/runtime/constant/parameterCode/ParameterCode.d.ts +35 -5
  48. package/dist/runtime/entity/DataMember.d.ts +338 -0
  49. package/dist/runtime/entity/GNMetadata.d.ts +101 -0
  50. package/dist/runtime/entity/InvalidMember.d.ts +28 -0
  51. package/dist/runtime/entity/OperationEvent.d.ts +49 -0
  52. package/dist/runtime/entity/OperationRequest.d.ts +108 -0
  53. package/dist/runtime/entity/OperationResponse.d.ts +110 -0
  54. package/dist/runtime/entity/models/AuthenticateModels.d.ts +115 -0
  55. package/dist/runtime/entity/models/AuthenticateRequestModels.d.ts +131 -0
  56. package/dist/runtime/entity/models/AuthenticateResponseModels.d.ts +131 -0
  57. package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +625 -1
  58. package/dist/runtime/entity/models/CharacterPlayerRequestModels.d.ts +972 -0
  59. package/dist/runtime/entity/models/CharacterPlayerResponseModels.d.ts +332 -0
  60. package/dist/runtime/entity/models/CloudScriptModels.d.ts +109 -0
  61. package/dist/runtime/entity/models/CloudScriptRequestModels.d.ts +107 -0
  62. package/dist/runtime/entity/models/CloudScriptResponseModels.d.ts +46 -0
  63. package/dist/runtime/entity/models/ContentModels.d.ts +124 -0
  64. package/dist/runtime/entity/models/ContentRequestModels.d.ts +152 -0
  65. package/dist/runtime/entity/models/ContentResponseModels.d.ts +58 -0
  66. package/dist/runtime/entity/models/DashboardModels.d.ts +371 -8
  67. package/dist/runtime/entity/models/DashboardRequestModels.d.ts +172 -0
  68. package/dist/runtime/entity/models/DashboardResponseModels.d.ts +170 -0
  69. package/dist/runtime/entity/models/GamePlayerModels.d.ts +644 -1
  70. package/dist/runtime/entity/models/GamePlayerRequestModels.d.ts +959 -0
  71. package/dist/runtime/entity/models/GamePlayerResponseModels.d.ts +333 -1
  72. package/dist/runtime/entity/models/GenericModels.d.ts +94 -0
  73. package/dist/runtime/entity/models/GroupModels.d.ts +484 -2
  74. package/dist/runtime/entity/models/GroupRequestModels.d.ts +737 -0
  75. package/dist/runtime/entity/models/GroupResponseModels.d.ts +254 -0
  76. package/dist/runtime/entity/models/InventoryModels.d.ts +415 -0
  77. package/dist/runtime/entity/models/InventoryRequestModels.d.ts +629 -0
  78. package/dist/runtime/entity/models/InventoryResponseModels.d.ts +218 -0
  79. package/dist/runtime/entity/models/MasterPlayerModels.d.ts +1065 -3
  80. package/dist/runtime/entity/models/MasterPlayerRequestModels.d.ts +1560 -6
  81. package/dist/runtime/entity/models/MasterPlayerResponseModels.d.ts +532 -1
  82. package/dist/runtime/entity/models/MultiplayerModels.d.ts +199 -0
  83. package/dist/runtime/entity/models/MultiplayerRequestModels.d.ts +196 -0
  84. package/dist/runtime/entity/models/MultiplayerResponseModels.d.ts +74 -0
  85. package/dist/runtime/entity/models/StoreInventoryModels.d.ts +262 -0
  86. package/dist/runtime/entity/models/StoreInventoryRequestModels.d.ts +268 -0
  87. package/dist/runtime/entity/models/StoreInventoryResponseModels.d.ts +98 -0
  88. package/dist/runtime/entity/request/CustomOperationRequest.d.ts +99 -0
  89. package/dist/runtime/entity/response/CustomOperationResponse.d.ts +118 -0
  90. package/dist/runtime/entity/response/GetAuthInfoResponse.d.ts +53 -0
  91. package/dist/runtime/entity/response/HealthCheckResponse.d.ts +56 -0
  92. package/dist/runtime/entity/response/UploadFileResponse.d.ts +19 -0
  93. package/dist/runtime/helper/CodeHelper.d.ts +122 -0
  94. package/dist/runtime/helper/ConverterService.d.ts +74 -0
  95. package/dist/runtime/helper/EnumUtility.d.ts +63 -0
  96. package/dist/runtime/helper/GNSupport.d.ts +64 -4
  97. package/dist/runtime/helper/GNUtils.d.ts +54 -0
  98. package/dist/runtime/helper/MessagePackConverterService.d.ts +48 -0
  99. package/dist/runtime/helper/OperationHelper.d.ts +51 -0
  100. package/dist/runtime/helper/StorageService.d.ts +48 -8
  101. package/dist/runtime/logger/GNDebug.d.ts +117 -0
  102. package/dist/runtime/networking/AuthenticateStatus.d.ts +64 -0
  103. package/dist/runtime/networking/IPeer.d.ts +83 -0
  104. package/dist/runtime/networking/NetworkingPeer.d.ts +256 -1
  105. package/dist/runtime/networking/OperationPending.d.ts +112 -0
  106. package/dist/runtime/networking/PeerBase.d.ts +231 -0
  107. package/dist/runtime/networking/handler/IServerEventHandler.d.ts +84 -0
  108. package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.d.ts +69 -0
  109. package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.d.ts +49 -0
  110. package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.d.ts +50 -0
  111. package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.d.ts +41 -0
  112. package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.d.ts +47 -0
  113. package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.d.ts +46 -0
  114. package/dist/runtime/networking/http/HttpPeer.d.ts +173 -0
  115. package/dist/runtime/networking/http/NetworkingHttpPeerBase.d.ts +87 -0
  116. package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.d.ts +113 -0
  117. package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.d.ts +145 -0
  118. package/dist/runtime/networking/socket/NetworkingSocketPeerBase.d.ts +198 -0
  119. package/dist/runtime/networking/socket/SocketPeer.d.ts +155 -0
  120. package/dist/runtime/typescript/ServiceUpdate.d.ts +46 -0
  121. package/docs/AI_CHEATSHEET.md +211 -0
  122. package/docs/COOKBOOK.md +912 -0
  123. package/docs/RULES.md +307 -0
  124. package/docs/ai-manifest.json +725 -0
  125. package/docs/guides/AUTHENTICATE.md +246 -0
  126. package/docs/guides/CHARACTER_PLAYER.md +439 -0
  127. package/docs/guides/CLOUDSCRIPT.md +335 -0
  128. package/docs/guides/COCOS_CREATOR_INTEGRATION.md +150 -0
  129. package/docs/guides/CONTENT.md +291 -0
  130. package/docs/guides/DASHBOARD.md +262 -0
  131. package/docs/guides/GAME_PLAYER.md +473 -0
  132. package/docs/guides/GROUP.md +412 -0
  133. package/docs/guides/INVENTORY.md +375 -0
  134. package/docs/guides/MASTER_PLAYER.md +458 -0
  135. package/docs/guides/MULTIPLAYER.md +303 -0
  136. package/docs/guides/STORE_INVENTORY.md +313 -0
  137. package/docs/llms-full.txt +43 -0
  138. package/docs/reference/API_AUTHENTICATE.md +75 -0
  139. package/docs/reference/API_CHARACTER_PLAYER.md +226 -0
  140. package/docs/reference/API_CLOUDSCRIPT.md +82 -0
  141. package/docs/reference/API_CONTENT.md +88 -0
  142. package/docs/reference/API_DASHBOARD.md +82 -0
  143. package/docs/reference/API_GAME_PLAYER.md +223 -0
  144. package/docs/reference/API_GROUP.md +187 -0
  145. package/docs/reference/API_INDEX.md +57 -0
  146. package/docs/reference/API_INVENTORY.md +169 -0
  147. package/docs/reference/API_MASTER_PLAYER.md +323 -0
  148. package/docs/reference/API_MULTIPLAYER.md +97 -0
  149. package/docs/reference/API_STORE_INVENTORY.md +109 -0
  150. package/docs/reference/CONFIG.md +107 -0
  151. package/docs/reference/DTO_INDEX.md +2543 -0
  152. package/docs/reference/ENUMS.md +433 -0
  153. package/docs/reference/ERROR_HANDLING.md +159 -0
  154. package/docs/reference/EVENTS.md +188 -0
  155. package/docs/reference/PERMISSION_RULES.md +55 -0
  156. package/docs/reference/dto/AUTHENTICATE.md +619 -0
  157. package/docs/reference/dto/CHARACTER_PLAYER.md +3686 -0
  158. package/docs/reference/dto/CLOUDSCRIPT.md +400 -0
  159. package/docs/reference/dto/CONTENT.md +548 -0
  160. package/docs/reference/dto/DASHBOARD.md +1980 -0
  161. package/docs/reference/dto/GAME_PLAYER.md +3631 -0
  162. package/docs/reference/dto/GENERIC.md +151 -0
  163. package/docs/reference/dto/GROUP.md +2842 -0
  164. package/docs/reference/dto/INVENTORY.md +2385 -0
  165. package/docs/reference/dto/MASTER_PLAYER.md +6024 -0
  166. package/docs/reference/dto/MULTIPLAYER.md +850 -0
  167. package/docs/reference/dto/STORE_INVENTORY.md +1262 -0
  168. package/llms.txt +47 -0
  169. package/package.json +12 -3
  170. package/GNServerSettings.debug.json +0 -21
  171. package/docs/COCOS_CREATOR_INTEGRATION.md +0 -116
  172. package/examples/cocos-creator/GearNExample.ts.txt +0 -176
  173. package/srcSwift/Package.swift +0 -32
  174. package/srcSwift/Sources/GearN/runtime/GNNetwork.swift +0 -530
  175. package/srcSwift/Sources/GearN/runtime/GNNetworkAuthenticateApi.swift +0 -178
  176. package/srcSwift/Sources/GearN/runtime/GNNetworkCharacterPlayerApi.swift +0 -1162
  177. package/srcSwift/Sources/GearN/runtime/GNNetworkCloudScriptApi.swift +0 -154
  178. package/srcSwift/Sources/GearN/runtime/GNNetworkContentApi.swift +0 -208
  179. package/srcSwift/Sources/GearN/runtime/GNNetworkDashboardApi.swift +0 -240
  180. package/srcSwift/Sources/GearN/runtime/GNNetworkGamePlayerApi.swift +0 -1369
  181. package/srcSwift/Sources/GearN/runtime/GNNetworkGroupApi.swift +0 -1100
  182. package/srcSwift/Sources/GearN/runtime/GNNetworkInventoryApi.swift +0 -937
  183. package/srcSwift/Sources/GearN/runtime/GNNetworkMasterPlayerApi.swift +0 -2323
  184. package/srcSwift/Sources/GearN/runtime/GNNetworkMultiplayerApi.swift +0 -298
  185. package/srcSwift/Sources/GearN/runtime/GNNetworkStoreInventoryApi.swift +0 -397
  186. package/srcSwift/Sources/GearN/runtime/common/Action0.swift +0 -3
  187. package/srcSwift/Sources/GearN/runtime/common/Action1.swift +0 -3
  188. package/srcSwift/Sources/GearN/runtime/common/Action2.swift +0 -3
  189. package/srcSwift/Sources/GearN/runtime/common/Action3.swift +0 -3
  190. package/srcSwift/Sources/GearN/runtime/common/Action4.swift +0 -3
  191. package/srcSwift/Sources/GearN/runtime/common/GNArray.swift +0 -204
  192. package/srcSwift/Sources/GearN/runtime/common/GNData.swift +0 -108
  193. package/srcSwift/Sources/GearN/runtime/common/GNHashtable.swift +0 -200
  194. package/srcSwift/Sources/GearN/runtime/config/GNServerSettings.swift +0 -95
  195. package/srcSwift/Sources/GearN/runtime/constant/Commands.swift +0 -28
  196. package/srcSwift/Sources/GearN/runtime/constant/EventCode.swift +0 -10
  197. package/srcSwift/Sources/GearN/runtime/constant/OperationCode.swift +0 -252
  198. package/srcSwift/Sources/GearN/runtime/constant/ReturnCode.swift +0 -19
  199. package/srcSwift/Sources/GearN/runtime/constant/enumType/ExecuteResponseStatus.swift +0 -9
  200. package/srcSwift/Sources/GearN/runtime/constant/enumType/FriendStatus.swift +0 -8
  201. package/srcSwift/Sources/GearN/runtime/constant/enumType/GoogleLoginType.swift +0 -6
  202. package/srcSwift/Sources/GearN/runtime/constant/enumType/GroupStatus.swift +0 -8
  203. package/srcSwift/Sources/GearN/runtime/constant/enumType/InvalidMemberType.swift +0 -19
  204. package/srcSwift/Sources/GearN/runtime/constant/enumType/ItemType.swift +0 -6
  205. package/srcSwift/Sources/GearN/runtime/constant/enumType/MatchmakingMemberStatus.swift +0 -7
  206. package/srcSwift/Sources/GearN/runtime/constant/enumType/MatchmakingTicketStatus.swift +0 -9
  207. package/srcSwift/Sources/GearN/runtime/constant/enumType/OwnerType.swift +0 -10
  208. package/srcSwift/Sources/GearN/runtime/constant/enumType/PermissionDataItem.swift +0 -6
  209. package/srcSwift/Sources/GearN/runtime/constant/enumType/PushPlatformType.swift +0 -6
  210. package/srcSwift/Sources/GearN/runtime/constant/enumType/RequestRole.swift +0 -7
  211. package/srcSwift/Sources/GearN/runtime/constant/enumType/RequestType.swift +0 -16
  212. package/srcSwift/Sources/GearN/runtime/constant/enumType/StoreItemType.swift +0 -6
  213. package/srcSwift/Sources/GearN/runtime/constant/enumType/StoreReceiveType.swift +0 -9
  214. package/srcSwift/Sources/GearN/runtime/constant/errorCode/ErrorCode.swift +0 -58
  215. package/srcSwift/Sources/GearN/runtime/constant/parameterCode/ParameterCode.swift +0 -672
  216. package/srcSwift/Sources/GearN/runtime/entity/DataMember.swift +0 -196
  217. package/srcSwift/Sources/GearN/runtime/entity/GNMetadata.swift +0 -9
  218. package/srcSwift/Sources/GearN/runtime/entity/InvalidMember.swift +0 -11
  219. package/srcSwift/Sources/GearN/runtime/entity/OperationEvent.swift +0 -38
  220. package/srcSwift/Sources/GearN/runtime/entity/OperationHelper.swift +0 -28
  221. package/srcSwift/Sources/GearN/runtime/entity/OperationRequest.swift +0 -62
  222. package/srcSwift/Sources/GearN/runtime/entity/OperationResponse.swift +0 -98
  223. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateModels.swift +0 -351
  224. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateRequestModels.swift +0 -81
  225. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateResponseModels.swift +0 -108
  226. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerModels.swift +0 -1045
  227. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerRequestModels.swift +0 -821
  228. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerResponseModels.swift +0 -588
  229. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptModels.swift +0 -187
  230. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptRequestModels.swift +0 -84
  231. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptResponseModels.swift +0 -59
  232. package/srcSwift/Sources/GearN/runtime/entity/models/ContentModels.swift +0 -195
  233. package/srcSwift/Sources/GearN/runtime/entity/models/ContentRequestModels.swift +0 -116
  234. package/srcSwift/Sources/GearN/runtime/entity/models/ContentResponseModels.swift +0 -81
  235. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardModels.swift +0 -426
  236. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardRequestModels.swift +0 -160
  237. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardResponseModels.swift +0 -82
  238. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerModels.swift +0 -1334
  239. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerRequestModels.swift +0 -643
  240. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerResponseModels.swift +0 -213
  241. package/srcSwift/Sources/GearN/runtime/entity/models/GenericModels.swift +0 -171
  242. package/srcSwift/Sources/GearN/runtime/entity/models/GroupModels.swift +0 -850
  243. package/srcSwift/Sources/GearN/runtime/entity/models/GroupRequestModels.swift +0 -485
  244. package/srcSwift/Sources/GearN/runtime/entity/models/GroupResponseModels.swift +0 -165
  245. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryModels.swift +0 -679
  246. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryRequestModels.swift +0 -413
  247. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryResponseModels.swift +0 -141
  248. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerModels.swift +0 -378
  249. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerRequestModels.swift +0 -147
  250. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerResponseModels.swift +0 -318
  251. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerModels.swift +0 -319
  252. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerRequestModels.swift +0 -125
  253. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerResponseModels.swift +0 -45
  254. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryModels.swift +0 -633
  255. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryRequestModels.swift +0 -173
  256. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryResponseModels.swift +0 -61
  257. package/srcSwift/Sources/GearN/runtime/entity/request/CustomOperationRequest.swift +0 -42
  258. package/srcSwift/Sources/GearN/runtime/entity/response/CustomOperationResponse.swift +0 -49
  259. package/srcSwift/Sources/GearN/runtime/entity/response/GetAuthInfoResponse.swift +0 -43
  260. package/srcSwift/Sources/GearN/runtime/entity/response/HealthCheckResponse.swift +0 -86
  261. package/srcSwift/Sources/GearN/runtime/entity/response/UploadFileResponse.swift +0 -15
  262. package/srcSwift/Sources/GearN/runtime/helper/CodeHelper.swift +0 -107
  263. package/srcSwift/Sources/GearN/runtime/helper/ConverterService.swift +0 -98
  264. package/srcSwift/Sources/GearN/runtime/helper/EnumUtility.swift +0 -34
  265. package/srcSwift/Sources/GearN/runtime/helper/GNSupport.swift +0 -41
  266. package/srcSwift/Sources/GearN/runtime/helper/GNUtils.swift +0 -66
  267. package/srcSwift/Sources/GearN/runtime/helper/MessagePackConverterService.swift +0 -21
  268. package/srcSwift/Sources/GearN/runtime/helper/StorageService.swift +0 -29
  269. package/srcSwift/Sources/GearN/runtime/logger/GNDebug.swift +0 -33
  270. package/srcSwift/Sources/GearN/runtime/networking/AuthenticateStatus.swift +0 -24
  271. package/srcSwift/Sources/GearN/runtime/networking/IPeer.swift +0 -8
  272. package/srcSwift/Sources/GearN/runtime/networking/NetworkingPeer.swift +0 -368
  273. package/srcSwift/Sources/GearN/runtime/networking/OperationPending.swift +0 -81
  274. package/srcSwift/Sources/GearN/runtime/networking/PeerBase.swift +0 -228
  275. package/srcSwift/Sources/GearN/runtime/networking/handler/IServerEventHandler.swift +0 -20
  276. package/srcSwift/Sources/GearN/runtime/networking/http/HttpPeer.swift +0 -226
  277. package/srcSwift/Sources/GearN/runtime/networking/http/HttpTypes.swift +0 -24
  278. package/srcSwift/Sources/GearN/runtime/networking/http/NetworkingHttpPeerBase.swift +0 -13
  279. package/srcSwift/Sources/GearN/runtime/networking/http/NetworkingPeerUrlSession.swift +0 -125
  280. package/srcSwift/Sources/GearN/runtime/networking/request/NetRequest.swift +0 -19
  281. package/srcSwift/Sources/GearN/runtime/networking/response/NetResponse.swift +0 -13
  282. package/srcSwift/Sources/GearN/runtime/networking/socket/NetworkingPeerSocketIOClient.swift +0 -244
  283. package/srcSwift/Sources/GearN/runtime/networking/socket/NetworkingSocketPeerBase.swift +0 -59
  284. package/srcSwift/Sources/GearN/runtime/networking/socket/SocketPeer.swift +0 -136
  285. package/tsconfig-build.cocos.json +0 -31
  286. package/webpack.config.cocos.mjs +0 -78
@@ -2,481 +2,1110 @@ import { RequestRole } from "./../../constant/enumType/RequestRole";
2
2
  import { RequestType } from "./../../constant/enumType/RequestType";
3
3
  import { CustomOperationRequestAbstract } from "./../request/CustomOperationRequest";
4
4
  import { InventoryModels } from "./InventoryModels";
5
+ /**
6
+ * Typed request wrappers for the Inventory domain.
7
+ *
8
+ * Each class extends {@link CustomOperationRequestAbstract} and
9
+ * binds a typed `*RequestData` DTO from
10
+ * {@link InventoryModels} to:
11
+ * - the matching {@link OperationCode};
12
+ * - the {@link RequestType.Inventory} domain;
13
+ * - the appropriate {@link RequestRole} based on the wrapper
14
+ * name prefix.
15
+ *
16
+ * All wrappers carry an explicit `itemId` (or `classId` for
17
+ * catalog operations); the backend cross-checks the caller's
18
+ * permission against the resource's `ownerType` /
19
+ * `ownerId` (Client) or trusts the server / admin token
20
+ * (Server / Admin).
21
+ */
5
22
  export declare namespace InventoryRequestModels {
23
+ /**
24
+ * Maps the AddSegment operation to a typed request wrapper.
25
+ */
6
26
  class AddSegmentOperationRequest extends CustomOperationRequestAbstract<InventoryModels.AddSegmentRequestData> {
7
27
  protected operationCode: string;
8
28
  protected requestType: RequestType;
9
29
  protected role: RequestRole;
30
+ /**
31
+ * Creates a new AddSegmentOperationRequest instance.
32
+ */
10
33
  constructor(requestData: InventoryModels.AddSegmentRequestData, timeout: number);
11
34
  }
35
+ /**
36
+ * Maps the ServerAddSegment operation to a typed request wrapper.
37
+ */
12
38
  class ServerAddSegmentOperationRequest extends AddSegmentOperationRequest {
13
39
  protected role: RequestRole;
40
+ /**
41
+ * Creates a new ServerAddSegmentOperationRequest instance.
42
+ */
14
43
  constructor(requestData: InventoryModels.ServerAddSegmentRequestData, timeout: number);
15
44
  }
45
+ /**
46
+ * Maps the AdminAddSegment operation to a typed request wrapper.
47
+ */
16
48
  class AdminAddSegmentOperationRequest extends AddSegmentOperationRequest {
17
49
  protected role: RequestRole;
50
+ /**
51
+ * Creates a new AdminAddSegmentOperationRequest instance.
52
+ */
18
53
  constructor(requestData: InventoryModels.AdminAddSegmentRequestData, timeout: number);
19
54
  }
55
+ /**
56
+ * Maps the GetAmount operation to a typed request wrapper.
57
+ */
20
58
  class GetAmountOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetAmountRequestData> {
21
59
  protected operationCode: string;
22
60
  protected requestType: RequestType;
23
61
  protected role: RequestRole;
62
+ /**
63
+ * Creates a new GetAmountOperationRequest instance.
64
+ */
24
65
  constructor(requestData: InventoryModels.GetAmountRequestData, timeout: number);
25
66
  }
67
+ /**
68
+ * Maps the ServerGetAmount operation to a typed request wrapper.
69
+ */
26
70
  class ServerGetAmountOperationRequest extends GetAmountOperationRequest {
27
71
  protected role: RequestRole;
72
+ /**
73
+ * Creates a new ServerGetAmountOperationRequest instance.
74
+ */
28
75
  constructor(requestData: InventoryModels.ServerGetAmountRequestData, timeout: number);
29
76
  }
77
+ /**
78
+ * Maps the AdminGetAmount operation to a typed request wrapper.
79
+ */
30
80
  class AdminGetAmountOperationRequest extends GetAmountOperationRequest {
31
81
  protected role: RequestRole;
82
+ /**
83
+ * Creates a new AdminGetAmountOperationRequest instance.
84
+ */
32
85
  constructor(requestData: InventoryModels.AdminGetAmountRequestData, timeout: number);
33
86
  }
87
+ /**
88
+ * Maps the GetAvatar operation to a typed request wrapper.
89
+ */
34
90
  class GetAvatarOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetAvatarRequestData> {
35
91
  protected operationCode: string;
36
92
  protected requestType: RequestType;
37
93
  protected role: RequestRole;
94
+ /**
95
+ * Creates a new GetAvatarOperationRequest instance.
96
+ */
38
97
  constructor(requestData: InventoryModels.GetAvatarRequestData, timeout: number);
39
98
  }
99
+ /**
100
+ * Maps the ServerGetAvatar operation to a typed request wrapper.
101
+ */
40
102
  class ServerGetAvatarOperationRequest extends GetAvatarOperationRequest {
41
103
  protected role: RequestRole;
104
+ /**
105
+ * Creates a new ServerGetAvatarOperationRequest instance.
106
+ */
42
107
  constructor(requestData: InventoryModels.ServerGetAvatarRequestData, timeout: number);
43
108
  }
109
+ /**
110
+ * Maps the AdminGetAvatar operation to a typed request wrapper.
111
+ */
44
112
  class AdminGetAvatarOperationRequest extends GetAvatarOperationRequest {
45
113
  protected role: RequestRole;
114
+ /**
115
+ * Creates a new AdminGetAvatarOperationRequest instance.
116
+ */
46
117
  constructor(requestData: InventoryModels.AdminGetAvatarRequestData, timeout: number);
47
118
  }
119
+ /**
120
+ * Maps the GetCatalogId operation to a typed request wrapper.
121
+ */
48
122
  class GetCatalogIdOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetCatalogIdRequestData> {
49
123
  protected operationCode: string;
50
124
  protected requestType: RequestType;
51
125
  protected role: RequestRole;
126
+ /**
127
+ * Creates a new GetCatalogIdOperationRequest instance.
128
+ */
52
129
  constructor(requestData: InventoryModels.GetCatalogIdRequestData, timeout: number);
53
130
  }
131
+ /**
132
+ * Maps the ServerGetCatalogId operation to a typed request wrapper.
133
+ */
54
134
  class ServerGetCatalogIdOperationRequest extends GetCatalogIdOperationRequest {
55
135
  protected role: RequestRole;
136
+ /**
137
+ * Creates a new ServerGetCatalogIdOperationRequest instance.
138
+ */
56
139
  constructor(requestData: InventoryModels.ServerGetCatalogIdRequestData, timeout: number);
57
140
  }
141
+ /**
142
+ * Maps the AdminGetCatalogId operation to a typed request wrapper.
143
+ */
58
144
  class AdminGetCatalogIdOperationRequest extends GetCatalogIdOperationRequest {
59
145
  protected role: RequestRole;
146
+ /**
147
+ * Creates a new AdminGetCatalogIdOperationRequest instance.
148
+ */
60
149
  constructor(requestData: InventoryModels.AdminGetCatalogIdRequestData, timeout: number);
61
150
  }
151
+ /**
152
+ * Maps the GetClassId operation to a typed request wrapper.
153
+ */
62
154
  class GetClassIdOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetClassIdRequestData> {
63
155
  protected operationCode: string;
64
156
  protected requestType: RequestType;
65
157
  protected role: RequestRole;
158
+ /**
159
+ * Creates a new GetClassIdOperationRequest instance.
160
+ */
66
161
  constructor(requestData: InventoryModels.GetClassIdRequestData, timeout: number);
67
162
  }
163
+ /**
164
+ * Maps the ServerGetClassId operation to a typed request wrapper.
165
+ */
68
166
  class ServerGetClassIdOperationRequest extends GetClassIdOperationRequest {
69
167
  protected role: RequestRole;
168
+ /**
169
+ * Creates a new ServerGetClassIdOperationRequest instance.
170
+ */
70
171
  constructor(requestData: InventoryModels.ServerGetClassIdRequestData, timeout: number);
71
172
  }
173
+ /**
174
+ * Maps the AdminGetClassId operation to a typed request wrapper.
175
+ */
72
176
  class AdminGetClassIdOperationRequest extends GetClassIdOperationRequest {
73
177
  protected role: RequestRole;
178
+ /**
179
+ * Creates a new AdminGetClassIdOperationRequest instance.
180
+ */
74
181
  constructor(requestData: InventoryModels.AdminGetClassIdRequestData, timeout: number);
75
182
  }
183
+ /**
184
+ * Maps the GetCustomData operation to a typed request wrapper.
185
+ */
76
186
  class GetCustomDataOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetCustomDataRequestData> {
77
187
  protected operationCode: string;
78
188
  protected requestType: RequestType;
79
189
  protected role: RequestRole;
190
+ /**
191
+ * Creates a new GetCustomDataOperationRequest instance.
192
+ */
80
193
  constructor(requestData: InventoryModels.GetCustomDataRequestData, timeout: number);
81
194
  }
195
+ /**
196
+ * Maps the ServerGetCustomData operation to a typed request wrapper.
197
+ */
82
198
  class ServerGetCustomDataOperationRequest extends GetCustomDataOperationRequest {
83
199
  protected role: RequestRole;
200
+ /**
201
+ * Creates a new ServerGetCustomDataOperationRequest instance.
202
+ */
84
203
  constructor(requestData: InventoryModels.ServerGetCustomDataRequestData, timeout: number);
85
204
  }
205
+ /**
206
+ * Maps the AdminGetCustomData operation to a typed request wrapper.
207
+ */
86
208
  class AdminGetCustomDataOperationRequest extends GetCustomDataOperationRequest {
87
209
  protected role: RequestRole;
210
+ /**
211
+ * Creates a new AdminGetCustomDataOperationRequest instance.
212
+ */
88
213
  constructor(requestData: InventoryModels.AdminGetCustomDataRequestData, timeout: number);
89
214
  }
215
+ /**
216
+ * Maps the GetDisplayName operation to a typed request wrapper.
217
+ */
90
218
  class GetDisplayNameOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetDisplayNameRequestData> {
91
219
  protected operationCode: string;
92
220
  protected requestType: RequestType;
93
221
  protected role: RequestRole;
222
+ /**
223
+ * Creates a new GetDisplayNameOperationRequest instance.
224
+ */
94
225
  constructor(requestData: InventoryModels.GetDisplayNameRequestData, timeout: number);
95
226
  }
227
+ /**
228
+ * Maps the ServerGetDisplayName operation to a typed request wrapper.
229
+ */
96
230
  class ServerGetDisplayNameOperationRequest extends GetDisplayNameOperationRequest {
97
231
  protected role: RequestRole;
232
+ /**
233
+ * Creates a new ServerGetDisplayNameOperationRequest instance.
234
+ */
98
235
  constructor(requestData: InventoryModels.ServerGetDisplayNameRequestData, timeout: number);
99
236
  }
237
+ /**
238
+ * Maps the AdminGetDisplayName operation to a typed request wrapper.
239
+ */
100
240
  class AdminGetDisplayNameOperationRequest extends GetDisplayNameOperationRequest {
101
241
  protected role: RequestRole;
242
+ /**
243
+ * Creates a new AdminGetDisplayNameOperationRequest instance.
244
+ */
102
245
  constructor(requestData: InventoryModels.AdminGetDisplayNameRequestData, timeout: number);
103
246
  }
247
+ /**
248
+ * Maps the GetItemData operation to a typed request wrapper.
249
+ */
104
250
  class GetItemDataOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetItemDataRequestData> {
105
251
  protected operationCode: string;
106
252
  protected requestType: RequestType;
107
253
  protected role: RequestRole;
254
+ /**
255
+ * Creates a new GetItemDataOperationRequest instance.
256
+ */
108
257
  constructor(requestData: InventoryModels.GetItemDataRequestData, timeout: number);
109
258
  }
259
+ /**
260
+ * Maps the ServerGetItemData operation to a typed request wrapper.
261
+ */
110
262
  class ServerGetItemDataOperationRequest extends GetItemDataOperationRequest {
111
263
  protected role: RequestRole;
264
+ /**
265
+ * Creates a new ServerGetItemDataOperationRequest instance.
266
+ */
112
267
  constructor(requestData: InventoryModels.ServerGetItemDataRequestData, timeout: number);
113
268
  }
269
+ /**
270
+ * Maps the AdminGetItemData operation to a typed request wrapper.
271
+ */
114
272
  class AdminGetItemDataOperationRequest extends GetItemDataOperationRequest {
115
273
  protected role: RequestRole;
274
+ /**
275
+ * Creates a new AdminGetItemDataOperationRequest instance.
276
+ */
116
277
  constructor(requestData: InventoryModels.AdminGetItemDataRequestData, timeout: number);
117
278
  }
279
+ /**
280
+ * Maps the GetItemInformation operation to a typed request wrapper.
281
+ */
118
282
  class GetItemInformationOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetItemInformationRequestData> {
119
283
  protected operationCode: string;
120
284
  protected requestType: RequestType;
121
285
  protected role: RequestRole;
286
+ /**
287
+ * Creates a new GetItemInformationOperationRequest instance.
288
+ */
122
289
  constructor(requestData: InventoryModels.GetItemInformationRequestData, timeout: number);
123
290
  }
291
+ /**
292
+ * Maps the ServerGetItemInformation operation to a typed request wrapper.
293
+ */
124
294
  class ServerGetItemInformationOperationRequest extends GetItemInformationOperationRequest {
125
295
  protected role: RequestRole;
296
+ /**
297
+ * Creates a new ServerGetItemInformationOperationRequest instance.
298
+ */
126
299
  constructor(requestData: InventoryModels.ServerGetItemInformationRequestData, timeout: number);
127
300
  }
301
+ /**
302
+ * Maps the AdminGetItemInformation operation to a typed request wrapper.
303
+ */
128
304
  class AdminGetItemInformationOperationRequest extends GetItemInformationOperationRequest {
129
305
  protected role: RequestRole;
306
+ /**
307
+ * Creates a new AdminGetItemInformationOperationRequest instance.
308
+ */
130
309
  constructor(requestData: InventoryModels.AdminGetItemInformationRequestData, timeout: number);
131
310
  }
311
+ /**
312
+ * Maps the GetItemStatistics operation to a typed request wrapper.
313
+ */
132
314
  class GetItemStatisticsOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetItemStatisticsRequestData> {
133
315
  protected operationCode: string;
134
316
  protected requestType: RequestType;
135
317
  protected role: RequestRole;
318
+ /**
319
+ * Creates a new GetItemStatisticsOperationRequest instance.
320
+ */
136
321
  constructor(requestData: InventoryModels.GetItemStatisticsRequestData, timeout: number);
137
322
  }
323
+ /**
324
+ * Maps the ServerGetItemStatistics operation to a typed request wrapper.
325
+ */
138
326
  class ServerGetItemStatisticsOperationRequest extends GetItemStatisticsOperationRequest {
139
327
  protected role: RequestRole;
328
+ /**
329
+ * Creates a new ServerGetItemStatisticsOperationRequest instance.
330
+ */
140
331
  constructor(requestData: InventoryModels.ServerGetItemStatisticsRequestData, timeout: number);
141
332
  }
333
+ /**
334
+ * Maps the AdminGetItemStatistics operation to a typed request wrapper.
335
+ */
142
336
  class AdminGetItemStatisticsOperationRequest extends GetItemStatisticsOperationRequest {
143
337
  protected role: RequestRole;
338
+ /**
339
+ * Creates a new AdminGetItemStatisticsOperationRequest instance.
340
+ */
144
341
  constructor(requestData: InventoryModels.AdminGetItemStatisticsRequestData, timeout: number);
145
342
  }
343
+ /**
344
+ * Maps the GetItemsWithDisplayName operation to a typed request wrapper.
345
+ */
146
346
  class GetItemsWithDisplayNameOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetItemsWithDisplayNameRequestData> {
147
347
  protected operationCode: string;
148
348
  protected requestType: RequestType;
149
349
  protected role: RequestRole;
350
+ /**
351
+ * Creates a new GetItemsWithDisplayNameOperationRequest instance.
352
+ */
150
353
  constructor(requestData: InventoryModels.GetItemsWithDisplayNameRequestData, timeout: number);
151
354
  }
355
+ /**
356
+ * Maps the ServerGetItemsWithDisplayName operation to a typed request wrapper.
357
+ */
152
358
  class ServerGetItemsWithDisplayNameOperationRequest extends GetItemsWithDisplayNameOperationRequest {
153
359
  protected role: RequestRole;
360
+ /**
361
+ * Creates a new ServerGetItemsWithDisplayNameOperationRequest instance.
362
+ */
154
363
  constructor(requestData: InventoryModels.ServerGetItemsWithDisplayNameRequestData, timeout: number);
155
364
  }
365
+ /**
366
+ * Maps the AdminGetItemsWithDisplayName operation to a typed request wrapper.
367
+ */
156
368
  class AdminGetItemsWithDisplayNameOperationRequest extends GetItemsWithDisplayNameOperationRequest {
157
369
  protected role: RequestRole;
370
+ /**
371
+ * Creates a new AdminGetItemsWithDisplayNameOperationRequest instance.
372
+ */
158
373
  constructor(requestData: InventoryModels.AdminGetItemsWithDisplayNameRequestData, timeout: number);
159
374
  }
375
+ /**
376
+ * Maps the GetItemsWithSegment operation to a typed request wrapper.
377
+ */
160
378
  class GetItemsWithSegmentOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetItemsWithSegmentRequestData> {
161
379
  protected operationCode: string;
162
380
  protected requestType: RequestType;
163
381
  protected role: RequestRole;
382
+ /**
383
+ * Creates a new GetItemsWithSegmentOperationRequest instance.
384
+ */
164
385
  constructor(requestData: InventoryModels.GetItemsWithSegmentRequestData, timeout: number);
165
386
  }
387
+ /**
388
+ * Maps the ServerGetItemsWithSegment operation to a typed request wrapper.
389
+ */
166
390
  class ServerGetItemsWithSegmentOperationRequest extends GetItemsWithSegmentOperationRequest {
167
391
  protected role: RequestRole;
392
+ /**
393
+ * Creates a new ServerGetItemsWithSegmentOperationRequest instance.
394
+ */
168
395
  constructor(requestData: InventoryModels.ServerGetItemsWithSegmentRequestData, timeout: number);
169
396
  }
397
+ /**
398
+ * Maps the AdminGetItemsWithSegment operation to a typed request wrapper.
399
+ */
170
400
  class AdminGetItemsWithSegmentOperationRequest extends GetItemsWithSegmentOperationRequest {
171
401
  protected role: RequestRole;
402
+ /**
403
+ * Creates a new AdminGetItemsWithSegmentOperationRequest instance.
404
+ */
172
405
  constructor(requestData: InventoryModels.AdminGetItemsWithSegmentRequestData, timeout: number);
173
406
  }
407
+ /**
408
+ * Maps the GetItemsWithTag operation to a typed request wrapper.
409
+ */
174
410
  class GetItemsWithTagOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetItemsWithTagRequestData> {
175
411
  protected operationCode: string;
176
412
  protected requestType: RequestType;
177
413
  protected role: RequestRole;
414
+ /**
415
+ * Creates a new GetItemsWithTagOperationRequest instance.
416
+ */
178
417
  constructor(requestData: InventoryModels.GetItemsWithTagRequestData, timeout: number);
179
418
  }
419
+ /**
420
+ * Maps the ServerGetItemsWithTag operation to a typed request wrapper.
421
+ */
180
422
  class ServerGetItemsWithTagOperationRequest extends GetItemsWithTagOperationRequest {
181
423
  protected role: RequestRole;
424
+ /**
425
+ * Creates a new ServerGetItemsWithTagOperationRequest instance.
426
+ */
182
427
  constructor(requestData: InventoryModels.ServerGetItemsWithTagRequestData, timeout: number);
183
428
  }
429
+ /**
430
+ * Maps the AdminGetItemsWithTag operation to a typed request wrapper.
431
+ */
184
432
  class AdminGetItemsWithTagOperationRequest extends GetItemsWithTagOperationRequest {
185
433
  protected role: RequestRole;
434
+ /**
435
+ * Creates a new AdminGetItemsWithTagOperationRequest instance.
436
+ */
186
437
  constructor(requestData: InventoryModels.AdminGetItemsWithTagRequestData, timeout: number);
187
438
  }
439
+ /**
440
+ * Maps the GetItemType operation to a typed request wrapper.
441
+ */
188
442
  class GetItemTypeOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetItemTypeRequestData> {
189
443
  protected operationCode: string;
190
444
  protected requestType: RequestType;
191
445
  protected role: RequestRole;
446
+ /**
447
+ * Creates a new GetItemTypeOperationRequest instance.
448
+ */
192
449
  constructor(requestData: InventoryModels.GetItemTypeRequestData, timeout: number);
193
450
  }
451
+ /**
452
+ * Maps the ServerGetItemType operation to a typed request wrapper.
453
+ */
194
454
  class ServerGetItemTypeOperationRequest extends GetItemTypeOperationRequest {
195
455
  protected role: RequestRole;
456
+ /**
457
+ * Creates a new ServerGetItemTypeOperationRequest instance.
458
+ */
196
459
  constructor(requestData: InventoryModels.ServerGetItemTypeRequestData, timeout: number);
197
460
  }
461
+ /**
462
+ * Maps the AdminGetItemType operation to a typed request wrapper.
463
+ */
198
464
  class AdminGetItemTypeOperationRequest extends GetItemTypeOperationRequest {
199
465
  protected role: RequestRole;
466
+ /**
467
+ * Creates a new AdminGetItemTypeOperationRequest instance.
468
+ */
200
469
  constructor(requestData: InventoryModels.AdminGetItemTypeRequestData, timeout: number);
201
470
  }
471
+ /**
472
+ * Maps the GetOwner operation to a typed request wrapper.
473
+ */
202
474
  class GetOwnerOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetOwnerRequestData> {
203
475
  protected operationCode: string;
204
476
  protected requestType: RequestType;
205
477
  protected role: RequestRole;
478
+ /**
479
+ * Creates a new GetOwnerOperationRequest instance.
480
+ */
206
481
  constructor(requestData: InventoryModels.GetOwnerRequestData, timeout: number);
207
482
  }
483
+ /**
484
+ * Maps the ServerGetOwner operation to a typed request wrapper.
485
+ */
208
486
  class ServerGetOwnerOperationRequest extends GetOwnerOperationRequest {
209
487
  protected role: RequestRole;
488
+ /**
489
+ * Creates a new ServerGetOwnerOperationRequest instance.
490
+ */
210
491
  constructor(requestData: InventoryModels.ServerGetOwnerRequestData, timeout: number);
211
492
  }
493
+ /**
494
+ * Maps the AdminGetOwner operation to a typed request wrapper.
495
+ */
212
496
  class AdminGetOwnerOperationRequest extends GetOwnerOperationRequest {
213
497
  protected role: RequestRole;
498
+ /**
499
+ * Creates a new AdminGetOwnerOperationRequest instance.
500
+ */
214
501
  constructor(requestData: InventoryModels.AdminGetOwnerRequestData, timeout: number);
215
502
  }
503
+ /**
504
+ * Maps the GetRemoveStatus operation to a typed request wrapper.
505
+ */
216
506
  class GetRemoveStatusOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetRemoveStatusRequestData> {
217
507
  protected operationCode: string;
218
508
  protected requestType: RequestType;
219
509
  protected role: RequestRole;
510
+ /**
511
+ * Creates a new GetRemoveStatusOperationRequest instance.
512
+ */
220
513
  constructor(requestData: InventoryModels.GetRemoveStatusRequestData, timeout: number);
221
514
  }
515
+ /**
516
+ * Maps the ServerGetRemoveStatus operation to a typed request wrapper.
517
+ */
222
518
  class ServerGetRemoveStatusOperationRequest extends GetRemoveStatusOperationRequest {
223
519
  protected role: RequestRole;
520
+ /**
521
+ * Creates a new ServerGetRemoveStatusOperationRequest instance.
522
+ */
224
523
  constructor(requestData: InventoryModels.ServerGetRemoveStatusRequestData, timeout: number);
225
524
  }
525
+ /**
526
+ * Maps the AdminGetRemoveStatus operation to a typed request wrapper.
527
+ */
226
528
  class AdminGetRemoveStatusOperationRequest extends GetRemoveStatusOperationRequest {
227
529
  protected role: RequestRole;
530
+ /**
531
+ * Creates a new AdminGetRemoveStatusOperationRequest instance.
532
+ */
228
533
  constructor(requestData: InventoryModels.AdminGetRemoveStatusRequestData, timeout: number);
229
534
  }
535
+ /**
536
+ * Maps the GetSegment operation to a typed request wrapper.
537
+ */
230
538
  class GetSegmentOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetSegmentRequestData> {
231
539
  protected operationCode: string;
232
540
  protected requestType: RequestType;
233
541
  protected role: RequestRole;
542
+ /**
543
+ * Creates a new GetSegmentOperationRequest instance.
544
+ */
234
545
  constructor(requestData: InventoryModels.GetSegmentRequestData, timeout: number);
235
546
  }
547
+ /**
548
+ * Maps the ServerGetSegment operation to a typed request wrapper.
549
+ */
236
550
  class ServerGetSegmentOperationRequest extends GetSegmentOperationRequest {
237
551
  protected role: RequestRole;
552
+ /**
553
+ * Creates a new ServerGetSegmentOperationRequest instance.
554
+ */
238
555
  constructor(requestData: InventoryModels.ServerGetSegmentRequestData, timeout: number);
239
556
  }
557
+ /**
558
+ * Maps the AdminGetSegment operation to a typed request wrapper.
559
+ */
240
560
  class AdminGetSegmentOperationRequest extends GetSegmentOperationRequest {
241
561
  protected role: RequestRole;
562
+ /**
563
+ * Creates a new AdminGetSegmentOperationRequest instance.
564
+ */
242
565
  constructor(requestData: InventoryModels.AdminGetSegmentRequestData, timeout: number);
243
566
  }
567
+ /**
568
+ * Maps the GetStatisticsLeaderboardAroundItem operation to a typed request wrapper.
569
+ */
244
570
  class GetStatisticsLeaderboardAroundItemOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetStatisticsLeaderboardAroundItemRequestData> {
245
571
  protected operationCode: string;
246
572
  protected requestType: RequestType;
247
573
  protected role: RequestRole;
574
+ /**
575
+ * Creates a new GetStatisticsLeaderboardAroundItemOperationRequest instance.
576
+ */
248
577
  constructor(requestData: InventoryModels.GetStatisticsLeaderboardAroundItemRequestData, timeout: number);
249
578
  }
579
+ /**
580
+ * Maps the ServerGetStatisticsLeaderboardAroundItem operation to a typed request wrapper.
581
+ */
250
582
  class ServerGetStatisticsLeaderboardAroundItemOperationRequest extends GetStatisticsLeaderboardAroundItemOperationRequest {
251
583
  protected role: RequestRole;
584
+ /**
585
+ * Creates a new ServerGetStatisticsLeaderboardAroundItemOperationRequest instance.
586
+ */
252
587
  constructor(requestData: InventoryModels.ServerGetStatisticsLeaderboardAroundItemRequestData, timeout: number);
253
588
  }
589
+ /**
590
+ * Maps the AdminGetStatisticsLeaderboardAroundItem operation to a typed request wrapper.
591
+ */
254
592
  class AdminGetStatisticsLeaderboardAroundItemOperationRequest extends GetStatisticsLeaderboardAroundItemOperationRequest {
255
593
  protected role: RequestRole;
594
+ /**
595
+ * Creates a new AdminGetStatisticsLeaderboardAroundItemOperationRequest instance.
596
+ */
256
597
  constructor(requestData: InventoryModels.AdminGetStatisticsLeaderboardAroundItemRequestData, timeout: number);
257
598
  }
599
+ /**
600
+ * Maps the GetStatisticsLeaderboard operation to a typed request wrapper.
601
+ */
258
602
  class GetStatisticsLeaderboardOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetStatisticsLeaderboardRequestData> {
259
603
  protected operationCode: string;
260
604
  protected requestType: RequestType;
261
605
  protected role: RequestRole;
606
+ /**
607
+ * Creates a new GetStatisticsLeaderboardOperationRequest instance.
608
+ */
262
609
  constructor(requestData: InventoryModels.GetStatisticsLeaderboardRequestData, timeout: number);
263
610
  }
611
+ /**
612
+ * Maps the ServerGetStatisticsLeaderboard operation to a typed request wrapper.
613
+ */
264
614
  class ServerGetStatisticsLeaderboardOperationRequest extends GetStatisticsLeaderboardOperationRequest {
265
615
  protected role: RequestRole;
616
+ /**
617
+ * Creates a new ServerGetStatisticsLeaderboardOperationRequest instance.
618
+ */
266
619
  constructor(requestData: InventoryModels.ServerGetStatisticsLeaderboardRequestData, timeout: number);
267
620
  }
621
+ /**
622
+ * Maps the AdminGetStatisticsLeaderboard operation to a typed request wrapper.
623
+ */
268
624
  class AdminGetStatisticsLeaderboardOperationRequest extends GetStatisticsLeaderboardOperationRequest {
269
625
  protected role: RequestRole;
626
+ /**
627
+ * Creates a new AdminGetStatisticsLeaderboardOperationRequest instance.
628
+ */
270
629
  constructor(requestData: InventoryModels.AdminGetStatisticsLeaderboardRequestData, timeout: number);
271
630
  }
631
+ /**
632
+ * Maps the GetTag operation to a typed request wrapper.
633
+ */
272
634
  class GetTagOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetTagRequestData> {
273
635
  protected operationCode: string;
274
636
  protected requestType: RequestType;
275
637
  protected role: RequestRole;
638
+ /**
639
+ * Creates a new GetTagOperationRequest instance.
640
+ */
276
641
  constructor(requestData: InventoryModels.GetTagRequestData, timeout: number);
277
642
  }
643
+ /**
644
+ * Maps the ServerGetTag operation to a typed request wrapper.
645
+ */
278
646
  class ServerGetTagOperationRequest extends GetTagOperationRequest {
279
647
  protected role: RequestRole;
648
+ /**
649
+ * Creates a new ServerGetTagOperationRequest instance.
650
+ */
280
651
  constructor(requestData: InventoryModels.ServerGetTagRequestData, timeout: number);
281
652
  }
653
+ /**
654
+ * Maps the AdminGetTag operation to a typed request wrapper.
655
+ */
282
656
  class AdminGetTagOperationRequest extends GetTagOperationRequest {
283
657
  protected role: RequestRole;
658
+ /**
659
+ * Creates a new AdminGetTagOperationRequest instance.
660
+ */
284
661
  constructor(requestData: InventoryModels.AdminGetTagRequestData, timeout: number);
285
662
  }
663
+ /**
664
+ * Maps the GetTsCreate operation to a typed request wrapper.
665
+ */
286
666
  class GetTsCreateOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetTsCreateRequestData> {
287
667
  protected operationCode: string;
288
668
  protected requestType: RequestType;
289
669
  protected role: RequestRole;
670
+ /**
671
+ * Creates a new GetTsCreateOperationRequest instance.
672
+ */
290
673
  constructor(requestData: InventoryModels.GetTsCreateRequestData, timeout: number);
291
674
  }
675
+ /**
676
+ * Maps the ServerGetTsCreate operation to a typed request wrapper.
677
+ */
292
678
  class ServerGetTsCreateOperationRequest extends GetTsCreateOperationRequest {
293
679
  protected role: RequestRole;
680
+ /**
681
+ * Creates a new ServerGetTsCreateOperationRequest instance.
682
+ */
294
683
  constructor(requestData: InventoryModels.ServerGetTsCreateRequestData, timeout: number);
295
684
  }
685
+ /**
686
+ * Maps the AdminGetTsCreate operation to a typed request wrapper.
687
+ */
296
688
  class AdminGetTsCreateOperationRequest extends GetTsCreateOperationRequest {
297
689
  protected role: RequestRole;
690
+ /**
691
+ * Creates a new AdminGetTsCreateOperationRequest instance.
692
+ */
298
693
  constructor(requestData: InventoryModels.AdminGetTsCreateRequestData, timeout: number);
299
694
  }
695
+ /**
696
+ * Maps the RemoveSegment operation to a typed request wrapper.
697
+ */
300
698
  class RemoveSegmentOperationRequest extends CustomOperationRequestAbstract<InventoryModels.RemoveSegmentRequestData> {
301
699
  protected operationCode: string;
302
700
  protected requestType: RequestType;
303
701
  protected role: RequestRole;
702
+ /**
703
+ * Creates a new RemoveSegmentOperationRequest instance.
704
+ */
304
705
  constructor(requestData: InventoryModels.RemoveSegmentRequestData, timeout: number);
305
706
  }
707
+ /**
708
+ * Maps the ServerRemoveSegment operation to a typed request wrapper.
709
+ */
306
710
  class ServerRemoveSegmentOperationRequest extends RemoveSegmentOperationRequest {
307
711
  protected role: RequestRole;
712
+ /**
713
+ * Creates a new ServerRemoveSegmentOperationRequest instance.
714
+ */
308
715
  constructor(requestData: InventoryModels.ServerRemoveSegmentRequestData, timeout: number);
309
716
  }
717
+ /**
718
+ * Maps the AdminRemoveSegment operation to a typed request wrapper.
719
+ */
310
720
  class AdminRemoveSegmentOperationRequest extends RemoveSegmentOperationRequest {
311
721
  protected role: RequestRole;
722
+ /**
723
+ * Creates a new AdminRemoveSegmentOperationRequest instance.
724
+ */
312
725
  constructor(requestData: InventoryModels.AdminRemoveSegmentRequestData, timeout: number);
313
726
  }
727
+ /**
728
+ * Maps the RemoveTag operation to a typed request wrapper.
729
+ */
314
730
  class RemoveTagOperationRequest extends CustomOperationRequestAbstract<InventoryModels.RemoveTagRequestData> {
315
731
  protected operationCode: string;
316
732
  protected requestType: RequestType;
317
733
  protected role: RequestRole;
734
+ /**
735
+ * Creates a new RemoveTagOperationRequest instance.
736
+ */
318
737
  constructor(requestData: InventoryModels.RemoveTagRequestData, timeout: number);
319
738
  }
739
+ /**
740
+ * Maps the ServerRemoveTag operation to a typed request wrapper.
741
+ */
320
742
  class ServerRemoveTagOperationRequest extends RemoveTagOperationRequest {
321
743
  protected role: RequestRole;
744
+ /**
745
+ * Creates a new ServerRemoveTagOperationRequest instance.
746
+ */
322
747
  constructor(requestData: InventoryModels.ServerRemoveTagRequestData, timeout: number);
323
748
  }
749
+ /**
750
+ * Maps the AdminRemoveTag operation to a typed request wrapper.
751
+ */
324
752
  class AdminRemoveTagOperationRequest extends RemoveTagOperationRequest {
325
753
  protected role: RequestRole;
754
+ /**
755
+ * Creates a new AdminRemoveTagOperationRequest instance.
756
+ */
326
757
  constructor(requestData: InventoryModels.AdminRemoveTagRequestData, timeout: number);
327
758
  }
759
+ /**
760
+ * Maps the SetAmount operation to a typed request wrapper.
761
+ */
328
762
  class SetAmountOperationRequest extends CustomOperationRequestAbstract<InventoryModels.SetAmountRequestData> {
329
763
  protected operationCode: string;
330
764
  protected requestType: RequestType;
331
765
  protected role: RequestRole;
766
+ /**
767
+ * Creates a new SetAmountOperationRequest instance.
768
+ */
332
769
  constructor(requestData: InventoryModels.SetAmountRequestData, timeout: number);
333
770
  }
771
+ /**
772
+ * Maps the ServerSetAmount operation to a typed request wrapper.
773
+ */
334
774
  class ServerSetAmountOperationRequest extends SetAmountOperationRequest {
335
775
  protected role: RequestRole;
776
+ /**
777
+ * Creates a new ServerSetAmountOperationRequest instance.
778
+ */
336
779
  constructor(requestData: InventoryModels.ServerSetAmountRequestData, timeout: number);
337
780
  }
781
+ /**
782
+ * Maps the AdminSetAmount operation to a typed request wrapper.
783
+ */
338
784
  class AdminSetAmountOperationRequest extends SetAmountOperationRequest {
339
785
  protected role: RequestRole;
786
+ /**
787
+ * Creates a new AdminSetAmountOperationRequest instance.
788
+ */
340
789
  constructor(requestData: InventoryModels.AdminSetAmountRequestData, timeout: number);
341
790
  }
791
+ /**
792
+ * Maps the SetAvatar operation to a typed request wrapper.
793
+ */
342
794
  class SetAvatarOperationRequest extends CustomOperationRequestAbstract<InventoryModels.SetAvatarRequestData> {
343
795
  protected operationCode: string;
344
796
  protected requestType: RequestType;
345
797
  protected role: RequestRole;
798
+ /**
799
+ * Creates a new SetAvatarOperationRequest instance.
800
+ */
346
801
  constructor(requestData: InventoryModels.SetAvatarRequestData, timeout: number);
347
802
  }
803
+ /**
804
+ * Maps the ServerSetAvatar operation to a typed request wrapper.
805
+ */
348
806
  class ServerSetAvatarOperationRequest extends SetAvatarOperationRequest {
349
807
  protected role: RequestRole;
808
+ /**
809
+ * Creates a new ServerSetAvatarOperationRequest instance.
810
+ */
350
811
  constructor(requestData: InventoryModels.ServerSetAvatarRequestData, timeout: number);
351
812
  }
813
+ /**
814
+ * Maps the AdminSetAvatar operation to a typed request wrapper.
815
+ */
352
816
  class AdminSetAvatarOperationRequest extends SetAvatarOperationRequest {
353
817
  protected role: RequestRole;
818
+ /**
819
+ * Creates a new AdminSetAvatarOperationRequest instance.
820
+ */
354
821
  constructor(requestData: InventoryModels.AdminSetAvatarRequestData, timeout: number);
355
822
  }
823
+ /**
824
+ * Maps the SetCustomData operation to a typed request wrapper.
825
+ */
356
826
  class SetCustomDataOperationRequest extends CustomOperationRequestAbstract<InventoryModels.SetCustomDataRequestData> {
357
827
  protected operationCode: string;
358
828
  protected requestType: RequestType;
359
829
  protected role: RequestRole;
830
+ /**
831
+ * Creates a new SetCustomDataOperationRequest instance.
832
+ */
360
833
  constructor(requestData: InventoryModels.SetCustomDataRequestData, timeout: number);
361
834
  }
835
+ /**
836
+ * Maps the ServerSetCustomData operation to a typed request wrapper.
837
+ */
362
838
  class ServerSetCustomDataOperationRequest extends SetCustomDataOperationRequest {
363
839
  protected role: RequestRole;
840
+ /**
841
+ * Creates a new ServerSetCustomDataOperationRequest instance.
842
+ */
364
843
  constructor(requestData: InventoryModels.ServerSetCustomDataRequestData, timeout: number);
365
844
  }
845
+ /**
846
+ * Maps the AdminSetCustomData operation to a typed request wrapper.
847
+ */
366
848
  class AdminSetCustomDataOperationRequest extends SetCustomDataOperationRequest {
367
849
  protected role: RequestRole;
850
+ /**
851
+ * Creates a new AdminSetCustomDataOperationRequest instance.
852
+ */
368
853
  constructor(requestData: InventoryModels.AdminSetCustomDataRequestData, timeout: number);
369
854
  }
855
+ /**
856
+ * Maps the SetDisplayName operation to a typed request wrapper.
857
+ */
370
858
  class SetDisplayNameOperationRequest extends CustomOperationRequestAbstract<InventoryModels.SetDisplayNameRequestData> {
371
859
  protected operationCode: string;
372
860
  protected requestType: RequestType;
373
861
  protected role: RequestRole;
862
+ /**
863
+ * Creates a new SetDisplayNameOperationRequest instance.
864
+ */
374
865
  constructor(requestData: InventoryModels.SetDisplayNameRequestData, timeout: number);
375
866
  }
867
+ /**
868
+ * Maps the ServerSetDisplayName operation to a typed request wrapper.
869
+ */
376
870
  class ServerSetDisplayNameOperationRequest extends SetDisplayNameOperationRequest {
377
871
  protected role: RequestRole;
872
+ /**
873
+ * Creates a new ServerSetDisplayNameOperationRequest instance.
874
+ */
378
875
  constructor(requestData: InventoryModels.ServerSetDisplayNameRequestData, timeout: number);
379
876
  }
877
+ /**
878
+ * Maps the AdminSetDisplayName operation to a typed request wrapper.
879
+ */
380
880
  class AdminSetDisplayNameOperationRequest extends SetDisplayNameOperationRequest {
381
881
  protected role: RequestRole;
882
+ /**
883
+ * Creates a new AdminSetDisplayNameOperationRequest instance.
884
+ */
382
885
  constructor(requestData: InventoryModels.AdminSetDisplayNameRequestData, timeout: number);
383
886
  }
887
+ /**
888
+ * Maps the SetItemData operation to a typed request wrapper.
889
+ */
384
890
  class SetItemDataOperationRequest extends CustomOperationRequestAbstract<InventoryModels.SetItemDataRequestData> {
385
891
  protected operationCode: string;
386
892
  protected requestType: RequestType;
387
893
  protected role: RequestRole;
894
+ /**
895
+ * Creates a new SetItemDataOperationRequest instance.
896
+ */
388
897
  constructor(requestData: InventoryModels.SetItemDataRequestData, timeout: number);
389
898
  }
899
+ /**
900
+ * Maps the ServerSetItemData operation to a typed request wrapper.
901
+ */
390
902
  class ServerSetItemDataOperationRequest extends SetItemDataOperationRequest {
391
903
  protected role: RequestRole;
904
+ /**
905
+ * Creates a new ServerSetItemDataOperationRequest instance.
906
+ */
392
907
  constructor(requestData: InventoryModels.ServerSetItemDataRequestData, timeout: number);
393
908
  }
909
+ /**
910
+ * Maps the AdminSetItemData operation to a typed request wrapper.
911
+ */
394
912
  class AdminSetItemDataOperationRequest extends SetItemDataOperationRequest {
395
913
  protected role: RequestRole;
914
+ /**
915
+ * Creates a new AdminSetItemDataOperationRequest instance.
916
+ */
396
917
  constructor(requestData: InventoryModels.AdminSetItemDataRequestData, timeout: number);
397
918
  }
919
+ /**
920
+ * Maps the ChangeItemStatistics operation to a typed request wrapper.
921
+ */
398
922
  class ChangeItemStatisticsOperationRequest extends CustomOperationRequestAbstract<InventoryModels.ChangeItemStatisticsRequestData> {
399
923
  protected operationCode: string;
400
924
  protected requestType: RequestType;
401
925
  protected role: RequestRole;
926
+ /**
927
+ * Creates a new ChangeItemStatisticsOperationRequest instance.
928
+ */
402
929
  constructor(requestData: InventoryModels.ChangeItemStatisticsRequestData, timeout: number);
403
930
  }
931
+ /**
932
+ * Maps the ServerChangeItemStatistics operation to a typed request wrapper.
933
+ */
404
934
  class ServerChangeItemStatisticsOperationRequest extends ChangeItemStatisticsOperationRequest {
405
935
  protected role: RequestRole;
936
+ /**
937
+ * Creates a new ServerChangeItemStatisticsOperationRequest instance.
938
+ */
406
939
  constructor(requestData: InventoryModels.ServerChangeItemStatisticsRequestData, timeout: number);
407
940
  }
941
+ /**
942
+ * Maps the AdminChangeItemStatistics operation to a typed request wrapper.
943
+ */
408
944
  class AdminChangeItemStatisticsOperationRequest extends ChangeItemStatisticsOperationRequest {
409
945
  protected role: RequestRole;
946
+ /**
947
+ * Creates a new AdminChangeItemStatisticsOperationRequest instance.
948
+ */
410
949
  constructor(requestData: InventoryModels.AdminChangeItemStatisticsRequestData, timeout: number);
411
950
  }
951
+ /**
952
+ * Maps the SetOwner operation to a typed request wrapper.
953
+ */
412
954
  class SetOwnerOperationRequest extends CustomOperationRequestAbstract<InventoryModels.SetOwnerRequestData> {
413
955
  protected operationCode: string;
414
956
  protected requestType: RequestType;
415
957
  protected role: RequestRole;
958
+ /**
959
+ * Creates a new SetOwnerOperationRequest instance.
960
+ */
416
961
  constructor(requestData: InventoryModels.SetOwnerRequestData, timeout: number);
417
962
  }
963
+ /**
964
+ * Maps the ServerSetOwner operation to a typed request wrapper.
965
+ */
418
966
  class ServerSetOwnerOperationRequest extends SetOwnerOperationRequest {
419
967
  protected role: RequestRole;
968
+ /**
969
+ * Creates a new ServerSetOwnerOperationRequest instance.
970
+ */
420
971
  constructor(requestData: InventoryModels.ServerSetOwnerRequestData, timeout: number);
421
972
  }
973
+ /**
974
+ * Maps the AdminSetOwner operation to a typed request wrapper.
975
+ */
422
976
  class AdminSetOwnerOperationRequest extends SetOwnerOperationRequest {
423
977
  protected role: RequestRole;
978
+ /**
979
+ * Creates a new AdminSetOwnerOperationRequest instance.
980
+ */
424
981
  constructor(requestData: InventoryModels.AdminSetOwnerRequestData, timeout: number);
425
982
  }
983
+ /**
984
+ * Maps the SetRemoveStatus operation to a typed request wrapper.
985
+ */
426
986
  class SetRemoveStatusOperationRequest extends CustomOperationRequestAbstract<InventoryModels.SetRemoveStatusRequestData> {
427
987
  protected operationCode: string;
428
988
  protected requestType: RequestType;
429
989
  protected role: RequestRole;
990
+ /**
991
+ * Creates a new SetRemoveStatusOperationRequest instance.
992
+ */
430
993
  constructor(requestData: InventoryModels.SetRemoveStatusRequestData, timeout: number);
431
994
  }
995
+ /**
996
+ * Maps the ServerSetRemoveStatus operation to a typed request wrapper.
997
+ */
432
998
  class ServerSetRemoveStatusOperationRequest extends SetRemoveStatusOperationRequest {
433
999
  protected role: RequestRole;
1000
+ /**
1001
+ * Creates a new ServerSetRemoveStatusOperationRequest instance.
1002
+ */
434
1003
  constructor(requestData: InventoryModels.ServerSetRemoveStatusRequestData, timeout: number);
435
1004
  }
1005
+ /**
1006
+ * Maps the AdminSetRemoveStatus operation to a typed request wrapper.
1007
+ */
436
1008
  class AdminSetRemoveStatusOperationRequest extends SetRemoveStatusOperationRequest {
437
1009
  protected role: RequestRole;
1010
+ /**
1011
+ * Creates a new AdminSetRemoveStatusOperationRequest instance.
1012
+ */
438
1013
  constructor(requestData: InventoryModels.AdminSetRemoveStatusRequestData, timeout: number);
439
1014
  }
1015
+ /**
1016
+ * Maps the SetTag operation to a typed request wrapper.
1017
+ */
440
1018
  class SetTagOperationRequest extends CustomOperationRequestAbstract<InventoryModels.SetTagRequestData> {
441
1019
  protected operationCode: string;
442
1020
  protected requestType: RequestType;
443
1021
  protected role: RequestRole;
1022
+ /**
1023
+ * Creates a new SetTagOperationRequest instance.
1024
+ */
444
1025
  constructor(requestData: InventoryModels.SetTagRequestData, timeout: number);
445
1026
  }
1027
+ /**
1028
+ * Maps the ServerSetTag operation to a typed request wrapper.
1029
+ */
446
1030
  class ServerSetTagOperationRequest extends SetTagOperationRequest {
447
1031
  protected role: RequestRole;
1032
+ /**
1033
+ * Creates a new ServerSetTagOperationRequest instance.
1034
+ */
448
1035
  constructor(requestData: InventoryModels.ServerSetTagRequestData, timeout: number);
449
1036
  }
1037
+ /**
1038
+ * Maps the AdminSetTag operation to a typed request wrapper.
1039
+ */
450
1040
  class AdminSetTagOperationRequest extends SetTagOperationRequest {
451
1041
  protected role: RequestRole;
1042
+ /**
1043
+ * Creates a new AdminSetTagOperationRequest instance.
1044
+ */
452
1045
  constructor(requestData: InventoryModels.AdminSetTagRequestData, timeout: number);
453
1046
  }
1047
+ /**
1048
+ * Maps the GetCreateLeaderboard operation to a typed request wrapper.
1049
+ */
454
1050
  class GetCreateLeaderboardOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetCreateLeaderboardRequestData> {
455
1051
  protected operationCode: string;
456
1052
  protected requestType: RequestType;
457
1053
  protected role: RequestRole;
1054
+ /**
1055
+ * Creates a new GetCreateLeaderboardOperationRequest instance.
1056
+ */
458
1057
  constructor(requestData: InventoryModels.GetCreateLeaderboardRequestData, timeout: number);
459
1058
  }
1059
+ /**
1060
+ * Maps the ServerGetCreateLeaderboard operation to a typed request wrapper.
1061
+ */
460
1062
  class ServerGetCreateLeaderboardOperationRequest extends GetCreateLeaderboardOperationRequest {
461
1063
  protected role: RequestRole;
1064
+ /**
1065
+ * Creates a new ServerGetCreateLeaderboardOperationRequest instance.
1066
+ */
462
1067
  constructor(requestData: InventoryModels.ServerGetCreateLeaderboardRequestData, timeout: number);
463
1068
  }
1069
+ /**
1070
+ * Maps the AdminGetCreateLeaderboard operation to a typed request wrapper.
1071
+ */
464
1072
  class AdminGetCreateLeaderboardOperationRequest extends GetCreateLeaderboardOperationRequest {
465
1073
  protected role: RequestRole;
1074
+ /**
1075
+ * Creates a new AdminGetCreateLeaderboardOperationRequest instance.
1076
+ */
466
1077
  constructor(requestData: InventoryModels.AdminGetCreateLeaderboardRequestData, timeout: number);
467
1078
  }
1079
+ /**
1080
+ * Maps the GetStatisticsLog operation to a typed request wrapper.
1081
+ */
468
1082
  class GetStatisticsLogOperationRequest extends CustomOperationRequestAbstract<InventoryModels.GetStatisticsLogRequestData> {
469
1083
  protected operationCode: string;
470
1084
  protected requestType: RequestType;
471
1085
  protected role: RequestRole;
1086
+ /**
1087
+ * Creates a new GetStatisticsLogOperationRequest instance.
1088
+ */
472
1089
  constructor(requestData: InventoryModels.GetStatisticsLogRequestData, timeout: number);
473
1090
  }
1091
+ /**
1092
+ * Maps the ServerGetStatisticsLog operation to a typed request wrapper.
1093
+ */
474
1094
  class ServerGetStatisticsLogOperationRequest extends GetStatisticsLogOperationRequest {
475
1095
  protected role: RequestRole;
1096
+ /**
1097
+ * Creates a new ServerGetStatisticsLogOperationRequest instance.
1098
+ */
476
1099
  constructor(requestData: InventoryModels.ServerGetStatisticsLogRequestData, timeout: number);
477
1100
  }
1101
+ /**
1102
+ * Maps the AdminGetStatisticsLog operation to a typed request wrapper.
1103
+ */
478
1104
  class AdminGetStatisticsLogOperationRequest extends GetStatisticsLogOperationRequest {
479
1105
  protected role: RequestRole;
1106
+ /**
1107
+ * Creates a new AdminGetStatisticsLogOperationRequest instance.
1108
+ */
480
1109
  constructor(requestData: InventoryModels.AdminGetStatisticsLogRequestData, timeout: number);
481
1110
  }
482
1111
  }