@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,108 +1,108 @@
1
- import { Action1 } from "./common/Action1";
2
- import { GNHashtable } from "./common/GNData";
3
- import { InventoryModels } from "./entity/models/InventoryModels";
4
- import { InventoryResponseModels } from "./entity/models/InventoryResponseModels";
5
- export declare class InventoryApi {
6
- server: ServerInventoryApi;
7
- admin: AdminInventoryApi;
8
- addSegment(requestData: InventoryModels.AddSegmentRequestData, onResponse?: Action1<InventoryResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
9
- getAmount(requestData: InventoryModels.GetAmountRequestData, onResponse?: Action1<InventoryResponseModels.GetAmountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
10
- getAvatar(requestData: InventoryModels.GetAvatarRequestData, onResponse?: Action1<InventoryResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
11
- getCatalogId(requestData: InventoryModels.GetCatalogIdRequestData, onResponse?: Action1<InventoryResponseModels.GetCatalogIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
12
- getClassId(requestData: InventoryModels.GetClassIdRequestData, onResponse?: Action1<InventoryResponseModels.GetClassIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
13
- getCustomData(requestData: InventoryModels.GetCustomDataRequestData, onResponse?: Action1<InventoryResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
14
- getDisplayName(requestData: InventoryModels.GetDisplayNameRequestData, onResponse?: Action1<InventoryResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
15
- getItemData(requestData: InventoryModels.GetItemDataRequestData, onResponse?: Action1<InventoryResponseModels.GetItemDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
16
- getItemInformation(requestData: InventoryModels.GetItemInformationRequestData, onResponse?: Action1<InventoryResponseModels.GetItemInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
17
- getItemStatistics(requestData: InventoryModels.GetItemStatisticsRequestData, onResponse?: Action1<InventoryResponseModels.GetItemStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
18
- getItemsWithDisplayName(requestData: InventoryModels.GetItemsWithDisplayNameRequestData, onResponse?: Action1<InventoryResponseModels.GetItemsWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
19
- getItemsWithSegment(requestData: InventoryModels.GetItemsWithSegmentRequestData, onResponse?: Action1<InventoryResponseModels.GetItemsWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
20
- getItemsWithTag(requestData: InventoryModels.GetItemsWithTagRequestData, onResponse?: Action1<InventoryResponseModels.GetItemsWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
21
- getItemType(requestData: InventoryModels.GetItemTypeRequestData, onResponse?: Action1<InventoryResponseModels.GetItemTypeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
22
- getOwner(requestData: InventoryModels.GetOwnerRequestData, onResponse?: Action1<InventoryResponseModels.GetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
23
- getRemoveStatus(requestData: InventoryModels.GetRemoveStatusRequestData, onResponse?: Action1<InventoryResponseModels.GetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
24
- getSegment(requestData: InventoryModels.GetSegmentRequestData, onResponse?: Action1<InventoryResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
25
- getStatisticsLeaderboardAroundItem(requestData: InventoryModels.GetStatisticsLeaderboardAroundItemRequestData, onResponse?: Action1<InventoryResponseModels.GetStatisticsLeaderboardAroundItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
26
- getStatisticsLeaderboard(requestData: InventoryModels.GetStatisticsLeaderboardRequestData, onResponse?: Action1<InventoryResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
27
- getTag(requestData: InventoryModels.GetTagRequestData, onResponse?: Action1<InventoryResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
28
- getTsCreate(requestData: InventoryModels.GetTsCreateRequestData, onResponse?: Action1<InventoryResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
29
- removeSegment(requestData: InventoryModels.RemoveSegmentRequestData, onResponse?: Action1<InventoryResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
30
- removeTag(requestData: InventoryModels.RemoveTagRequestData, onResponse?: Action1<InventoryResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
31
- setAmount(requestData: InventoryModels.SetAmountRequestData, onResponse?: Action1<InventoryResponseModels.SetAmountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
32
- setAvatar(requestData: InventoryModels.SetAvatarRequestData, onResponse?: Action1<InventoryResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
33
- setCustomData(requestData: InventoryModels.SetCustomDataRequestData, onResponse?: Action1<InventoryResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
34
- setDisplayName(requestData: InventoryModels.SetDisplayNameRequestData, onResponse?: Action1<InventoryResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
35
- setItemData(requestData: InventoryModels.SetItemDataRequestData, onResponse?: Action1<InventoryResponseModels.SetItemDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
36
- setItemStatistics(requestData: InventoryModels.SetItemStatisticsRequestData, onResponse?: Action1<InventoryResponseModels.SetItemStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
37
- setOwner(requestData: InventoryModels.SetOwnerRequestData, onResponse?: Action1<InventoryResponseModels.SetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
38
- setRemoveStatus(requestData: InventoryModels.SetRemoveStatusRequestData, onResponse?: Action1<InventoryResponseModels.SetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
39
- setTag(requestData: InventoryModels.SetTagRequestData, onResponse?: Action1<InventoryResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
40
- }
41
- export declare class ServerInventoryApi {
42
- addSegment(requestData: InventoryModels.ServerAddSegmentRequestData, onResponse?: Action1<InventoryResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
43
- getAmount(requestData: InventoryModels.ServerGetAmountRequestData, onResponse?: Action1<InventoryResponseModels.GetAmountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
44
- getAvatar(requestData: InventoryModels.ServerGetAvatarRequestData, onResponse?: Action1<InventoryResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
45
- getCatalogId(requestData: InventoryModels.ServerGetCatalogIdRequestData, onResponse?: Action1<InventoryResponseModels.GetCatalogIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
46
- getClassId(requestData: InventoryModels.ServerGetClassIdRequestData, onResponse?: Action1<InventoryResponseModels.GetClassIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
47
- getCustomData(requestData: InventoryModels.ServerGetCustomDataRequestData, onResponse?: Action1<InventoryResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
48
- getDisplayName(requestData: InventoryModels.ServerGetDisplayNameRequestData, onResponse?: Action1<InventoryResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
49
- getItemData(requestData: InventoryModels.ServerGetItemDataRequestData, onResponse?: Action1<InventoryResponseModels.GetItemDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
50
- getItemInformation(requestData: InventoryModels.ServerGetItemInformationRequestData, onResponse?: Action1<InventoryResponseModels.GetItemInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
51
- getItemStatistics(requestData: InventoryModels.ServerGetItemStatisticsRequestData, onResponse?: Action1<InventoryResponseModels.GetItemStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
52
- getItemsWithDisplayName(requestData: InventoryModels.ServerGetItemsWithDisplayNameRequestData, onResponse?: Action1<InventoryResponseModels.GetItemsWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
53
- getItemsWithSegment(requestData: InventoryModels.ServerGetItemsWithSegmentRequestData, onResponse?: Action1<InventoryResponseModels.GetItemsWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
54
- getItemsWithTag(requestData: InventoryModels.ServerGetItemsWithTagRequestData, onResponse?: Action1<InventoryResponseModels.GetItemsWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
55
- getItemType(requestData: InventoryModels.ServerGetItemTypeRequestData, onResponse?: Action1<InventoryResponseModels.GetItemTypeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
56
- getOwner(requestData: InventoryModels.ServerGetOwnerRequestData, onResponse?: Action1<InventoryResponseModels.GetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
57
- getRemoveStatus(requestData: InventoryModels.ServerGetRemoveStatusRequestData, onResponse?: Action1<InventoryResponseModels.GetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
58
- getSegment(requestData: InventoryModels.ServerGetSegmentRequestData, onResponse?: Action1<InventoryResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
59
- getStatisticsLeaderboardAroundItem(requestData: InventoryModels.ServerGetStatisticsLeaderboardAroundItemRequestData, onResponse?: Action1<InventoryResponseModels.GetStatisticsLeaderboardAroundItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
60
- getStatisticsLeaderboard(requestData: InventoryModels.ServerGetStatisticsLeaderboardRequestData, onResponse?: Action1<InventoryResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
61
- getTag(requestData: InventoryModels.ServerGetTagRequestData, onResponse?: Action1<InventoryResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
62
- getTsCreate(requestData: InventoryModels.ServerGetTsCreateRequestData, onResponse?: Action1<InventoryResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
63
- removeSegment(requestData: InventoryModels.ServerRemoveSegmentRequestData, onResponse?: Action1<InventoryResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
64
- removeTag(requestData: InventoryModels.ServerRemoveTagRequestData, onResponse?: Action1<InventoryResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
65
- setAmount(requestData: InventoryModels.ServerSetAmountRequestData, onResponse?: Action1<InventoryResponseModels.SetAmountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
66
- setAvatar(requestData: InventoryModels.ServerSetAvatarRequestData, onResponse?: Action1<InventoryResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
67
- setCustomData(requestData: InventoryModels.ServerSetCustomDataRequestData, onResponse?: Action1<InventoryResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
68
- setDisplayName(requestData: InventoryModels.ServerSetDisplayNameRequestData, onResponse?: Action1<InventoryResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
69
- setItemData(requestData: InventoryModels.ServerSetItemDataRequestData, onResponse?: Action1<InventoryResponseModels.SetItemDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
70
- setItemStatistics(requestData: InventoryModels.ServerSetItemStatisticsRequestData, onResponse?: Action1<InventoryResponseModels.SetItemStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
71
- setOwner(requestData: InventoryModels.ServerSetOwnerRequestData, onResponse?: Action1<InventoryResponseModels.SetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
72
- setRemoveStatus(requestData: InventoryModels.ServerSetRemoveStatusRequestData, onResponse?: Action1<InventoryResponseModels.SetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
73
- setTag(requestData: InventoryModels.ServerSetTagRequestData, onResponse?: Action1<InventoryResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
74
- }
75
- export declare class AdminInventoryApi {
76
- addSegment(requestData: InventoryModels.AdminAddSegmentRequestData, onResponse?: Action1<InventoryResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
77
- getAmount(requestData: InventoryModels.AdminGetAmountRequestData, onResponse?: Action1<InventoryResponseModels.GetAmountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
78
- getAvatar(requestData: InventoryModels.AdminGetAvatarRequestData, onResponse?: Action1<InventoryResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
79
- getCatalogId(requestData: InventoryModels.AdminGetCatalogIdRequestData, onResponse?: Action1<InventoryResponseModels.GetCatalogIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
80
- getClassId(requestData: InventoryModels.AdminGetClassIdRequestData, onResponse?: Action1<InventoryResponseModels.GetClassIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
81
- getCustomData(requestData: InventoryModels.AdminGetCustomDataRequestData, onResponse?: Action1<InventoryResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
82
- getDisplayName(requestData: InventoryModels.AdminGetDisplayNameRequestData, onResponse?: Action1<InventoryResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
83
- getItemData(requestData: InventoryModels.AdminGetItemDataRequestData, onResponse?: Action1<InventoryResponseModels.GetItemDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
84
- getItemInformation(requestData: InventoryModels.AdminGetItemInformationRequestData, onResponse?: Action1<InventoryResponseModels.GetItemInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
85
- getItemStatistics(requestData: InventoryModels.AdminGetItemStatisticsRequestData, onResponse?: Action1<InventoryResponseModels.GetItemStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
86
- getItemsWithDisplayName(requestData: InventoryModels.AdminGetItemsWithDisplayNameRequestData, onResponse?: Action1<InventoryResponseModels.GetItemsWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
87
- getItemsWithSegment(requestData: InventoryModels.AdminGetItemsWithSegmentRequestData, onResponse?: Action1<InventoryResponseModels.GetItemsWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
88
- getItemsWithTag(requestData: InventoryModels.AdminGetItemsWithTagRequestData, onResponse?: Action1<InventoryResponseModels.GetItemsWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
89
- getItemType(requestData: InventoryModels.AdminGetItemTypeRequestData, onResponse?: Action1<InventoryResponseModels.GetItemTypeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
90
- getOwner(requestData: InventoryModels.AdminGetOwnerRequestData, onResponse?: Action1<InventoryResponseModels.GetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
91
- getRemoveStatus(requestData: InventoryModels.AdminGetRemoveStatusRequestData, onResponse?: Action1<InventoryResponseModels.GetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
92
- getSegment(requestData: InventoryModels.AdminGetSegmentRequestData, onResponse?: Action1<InventoryResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
93
- getStatisticsLeaderboardAroundItem(requestData: InventoryModels.AdminGetStatisticsLeaderboardAroundItemRequestData, onResponse?: Action1<InventoryResponseModels.GetStatisticsLeaderboardAroundItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
94
- getStatisticsLeaderboard(requestData: InventoryModels.AdminGetStatisticsLeaderboardRequestData, onResponse?: Action1<InventoryResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
95
- getTag(requestData: InventoryModels.AdminGetTagRequestData, onResponse?: Action1<InventoryResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
96
- getTsCreate(requestData: InventoryModels.AdminGetTsCreateRequestData, onResponse?: Action1<InventoryResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
97
- removeSegment(requestData: InventoryModels.AdminRemoveSegmentRequestData, onResponse?: Action1<InventoryResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
98
- removeTag(requestData: InventoryModels.AdminRemoveTagRequestData, onResponse?: Action1<InventoryResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
99
- setAmount(requestData: InventoryModels.AdminSetAmountRequestData, onResponse?: Action1<InventoryResponseModels.SetAmountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
100
- setAvatar(requestData: InventoryModels.AdminSetAvatarRequestData, onResponse?: Action1<InventoryResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
101
- setCustomData(requestData: InventoryModels.AdminSetCustomDataRequestData, onResponse?: Action1<InventoryResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
102
- setDisplayName(requestData: InventoryModels.AdminSetDisplayNameRequestData, onResponse?: Action1<InventoryResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
103
- setItemData(requestData: InventoryModels.AdminSetItemDataRequestData, onResponse?: Action1<InventoryResponseModels.SetItemDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
104
- setItemStatistics(requestData: InventoryModels.AdminSetItemStatisticsRequestData, onResponse?: Action1<InventoryResponseModels.SetItemStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
105
- setOwner(requestData: InventoryModels.AdminSetOwnerRequestData, onResponse?: Action1<InventoryResponseModels.SetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
106
- setRemoveStatus(requestData: InventoryModels.AdminSetRemoveStatusRequestData, onResponse?: Action1<InventoryResponseModels.SetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
107
- setTag(requestData: InventoryModels.AdminSetTagRequestData, onResponse?: Action1<InventoryResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
108
- }
1
+ import { Action1 } from "./common/Action1";
2
+ import { GNHashtable } from "./common/GNData";
3
+ import { InventoryModels } from "./entity/models/InventoryModels";
4
+ import { InventoryResponseModels } from "./entity/models/InventoryResponseModels";
5
+ export declare class InventoryApi {
6
+ server: ServerInventoryApi;
7
+ admin: AdminInventoryApi;
8
+ addSegment(requestData: InventoryModels.AddSegmentRequestData, onResponse?: Action1<InventoryResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
9
+ getAmount(requestData: InventoryModels.GetAmountRequestData, onResponse?: Action1<InventoryResponseModels.GetAmountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
10
+ getAvatar(requestData: InventoryModels.GetAvatarRequestData, onResponse?: Action1<InventoryResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
11
+ getCatalogId(requestData: InventoryModels.GetCatalogIdRequestData, onResponse?: Action1<InventoryResponseModels.GetCatalogIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
12
+ getClassId(requestData: InventoryModels.GetClassIdRequestData, onResponse?: Action1<InventoryResponseModels.GetClassIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
13
+ getCustomData(requestData: InventoryModels.GetCustomDataRequestData, onResponse?: Action1<InventoryResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
14
+ getDisplayName(requestData: InventoryModels.GetDisplayNameRequestData, onResponse?: Action1<InventoryResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
15
+ getItemData(requestData: InventoryModels.GetItemDataRequestData, onResponse?: Action1<InventoryResponseModels.GetItemDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
16
+ getItemInformation(requestData: InventoryModels.GetItemInformationRequestData, onResponse?: Action1<InventoryResponseModels.GetItemInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
17
+ getItemStatistics(requestData: InventoryModels.GetItemStatisticsRequestData, onResponse?: Action1<InventoryResponseModels.GetItemStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
18
+ getItemsWithDisplayName(requestData: InventoryModels.GetItemsWithDisplayNameRequestData, onResponse?: Action1<InventoryResponseModels.GetItemsWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
19
+ getItemsWithSegment(requestData: InventoryModels.GetItemsWithSegmentRequestData, onResponse?: Action1<InventoryResponseModels.GetItemsWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
20
+ getItemsWithTag(requestData: InventoryModels.GetItemsWithTagRequestData, onResponse?: Action1<InventoryResponseModels.GetItemsWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
21
+ getItemType(requestData: InventoryModels.GetItemTypeRequestData, onResponse?: Action1<InventoryResponseModels.GetItemTypeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
22
+ getOwner(requestData: InventoryModels.GetOwnerRequestData, onResponse?: Action1<InventoryResponseModels.GetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
23
+ getRemoveStatus(requestData: InventoryModels.GetRemoveStatusRequestData, onResponse?: Action1<InventoryResponseModels.GetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
24
+ getSegment(requestData: InventoryModels.GetSegmentRequestData, onResponse?: Action1<InventoryResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
25
+ getStatisticsLeaderboardAroundItem(requestData: InventoryModels.GetStatisticsLeaderboardAroundItemRequestData, onResponse?: Action1<InventoryResponseModels.GetStatisticsLeaderboardAroundItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
26
+ getStatisticsLeaderboard(requestData: InventoryModels.GetStatisticsLeaderboardRequestData, onResponse?: Action1<InventoryResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
27
+ getTag(requestData: InventoryModels.GetTagRequestData, onResponse?: Action1<InventoryResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
28
+ getTsCreate(requestData: InventoryModels.GetTsCreateRequestData, onResponse?: Action1<InventoryResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
29
+ removeSegment(requestData: InventoryModels.RemoveSegmentRequestData, onResponse?: Action1<InventoryResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
30
+ removeTag(requestData: InventoryModels.RemoveTagRequestData, onResponse?: Action1<InventoryResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
31
+ setAmount(requestData: InventoryModels.SetAmountRequestData, onResponse?: Action1<InventoryResponseModels.SetAmountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
32
+ setAvatar(requestData: InventoryModels.SetAvatarRequestData, onResponse?: Action1<InventoryResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
33
+ setCustomData(requestData: InventoryModels.SetCustomDataRequestData, onResponse?: Action1<InventoryResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
34
+ setDisplayName(requestData: InventoryModels.SetDisplayNameRequestData, onResponse?: Action1<InventoryResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
35
+ setItemData(requestData: InventoryModels.SetItemDataRequestData, onResponse?: Action1<InventoryResponseModels.SetItemDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
36
+ setItemStatistics(requestData: InventoryModels.SetItemStatisticsRequestData, onResponse?: Action1<InventoryResponseModels.SetItemStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
37
+ setOwner(requestData: InventoryModels.SetOwnerRequestData, onResponse?: Action1<InventoryResponseModels.SetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
38
+ setRemoveStatus(requestData: InventoryModels.SetRemoveStatusRequestData, onResponse?: Action1<InventoryResponseModels.SetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
39
+ setTag(requestData: InventoryModels.SetTagRequestData, onResponse?: Action1<InventoryResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
40
+ }
41
+ export declare class ServerInventoryApi {
42
+ addSegment(requestData: InventoryModels.ServerAddSegmentRequestData, onResponse?: Action1<InventoryResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
43
+ getAmount(requestData: InventoryModels.ServerGetAmountRequestData, onResponse?: Action1<InventoryResponseModels.GetAmountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
44
+ getAvatar(requestData: InventoryModels.ServerGetAvatarRequestData, onResponse?: Action1<InventoryResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
45
+ getCatalogId(requestData: InventoryModels.ServerGetCatalogIdRequestData, onResponse?: Action1<InventoryResponseModels.GetCatalogIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
46
+ getClassId(requestData: InventoryModels.ServerGetClassIdRequestData, onResponse?: Action1<InventoryResponseModels.GetClassIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
47
+ getCustomData(requestData: InventoryModels.ServerGetCustomDataRequestData, onResponse?: Action1<InventoryResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
48
+ getDisplayName(requestData: InventoryModels.ServerGetDisplayNameRequestData, onResponse?: Action1<InventoryResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
49
+ getItemData(requestData: InventoryModels.ServerGetItemDataRequestData, onResponse?: Action1<InventoryResponseModels.GetItemDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
50
+ getItemInformation(requestData: InventoryModels.ServerGetItemInformationRequestData, onResponse?: Action1<InventoryResponseModels.GetItemInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
51
+ getItemStatistics(requestData: InventoryModels.ServerGetItemStatisticsRequestData, onResponse?: Action1<InventoryResponseModels.GetItemStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
52
+ getItemsWithDisplayName(requestData: InventoryModels.ServerGetItemsWithDisplayNameRequestData, onResponse?: Action1<InventoryResponseModels.GetItemsWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
53
+ getItemsWithSegment(requestData: InventoryModels.ServerGetItemsWithSegmentRequestData, onResponse?: Action1<InventoryResponseModels.GetItemsWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
54
+ getItemsWithTag(requestData: InventoryModels.ServerGetItemsWithTagRequestData, onResponse?: Action1<InventoryResponseModels.GetItemsWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
55
+ getItemType(requestData: InventoryModels.ServerGetItemTypeRequestData, onResponse?: Action1<InventoryResponseModels.GetItemTypeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
56
+ getOwner(requestData: InventoryModels.ServerGetOwnerRequestData, onResponse?: Action1<InventoryResponseModels.GetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
57
+ getRemoveStatus(requestData: InventoryModels.ServerGetRemoveStatusRequestData, onResponse?: Action1<InventoryResponseModels.GetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
58
+ getSegment(requestData: InventoryModels.ServerGetSegmentRequestData, onResponse?: Action1<InventoryResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
59
+ getStatisticsLeaderboardAroundItem(requestData: InventoryModels.ServerGetStatisticsLeaderboardAroundItemRequestData, onResponse?: Action1<InventoryResponseModels.GetStatisticsLeaderboardAroundItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
60
+ getStatisticsLeaderboard(requestData: InventoryModels.ServerGetStatisticsLeaderboardRequestData, onResponse?: Action1<InventoryResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
61
+ getTag(requestData: InventoryModels.ServerGetTagRequestData, onResponse?: Action1<InventoryResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
62
+ getTsCreate(requestData: InventoryModels.ServerGetTsCreateRequestData, onResponse?: Action1<InventoryResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
63
+ removeSegment(requestData: InventoryModels.ServerRemoveSegmentRequestData, onResponse?: Action1<InventoryResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
64
+ removeTag(requestData: InventoryModels.ServerRemoveTagRequestData, onResponse?: Action1<InventoryResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
65
+ setAmount(requestData: InventoryModels.ServerSetAmountRequestData, onResponse?: Action1<InventoryResponseModels.SetAmountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
66
+ setAvatar(requestData: InventoryModels.ServerSetAvatarRequestData, onResponse?: Action1<InventoryResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
67
+ setCustomData(requestData: InventoryModels.ServerSetCustomDataRequestData, onResponse?: Action1<InventoryResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
68
+ setDisplayName(requestData: InventoryModels.ServerSetDisplayNameRequestData, onResponse?: Action1<InventoryResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
69
+ setItemData(requestData: InventoryModels.ServerSetItemDataRequestData, onResponse?: Action1<InventoryResponseModels.SetItemDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
70
+ setItemStatistics(requestData: InventoryModels.ServerSetItemStatisticsRequestData, onResponse?: Action1<InventoryResponseModels.SetItemStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
71
+ setOwner(requestData: InventoryModels.ServerSetOwnerRequestData, onResponse?: Action1<InventoryResponseModels.SetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
72
+ setRemoveStatus(requestData: InventoryModels.ServerSetRemoveStatusRequestData, onResponse?: Action1<InventoryResponseModels.SetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
73
+ setTag(requestData: InventoryModels.ServerSetTagRequestData, onResponse?: Action1<InventoryResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
74
+ }
75
+ export declare class AdminInventoryApi {
76
+ addSegment(requestData: InventoryModels.AdminAddSegmentRequestData, onResponse?: Action1<InventoryResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
77
+ getAmount(requestData: InventoryModels.AdminGetAmountRequestData, onResponse?: Action1<InventoryResponseModels.GetAmountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
78
+ getAvatar(requestData: InventoryModels.AdminGetAvatarRequestData, onResponse?: Action1<InventoryResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
79
+ getCatalogId(requestData: InventoryModels.AdminGetCatalogIdRequestData, onResponse?: Action1<InventoryResponseModels.GetCatalogIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
80
+ getClassId(requestData: InventoryModels.AdminGetClassIdRequestData, onResponse?: Action1<InventoryResponseModels.GetClassIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
81
+ getCustomData(requestData: InventoryModels.AdminGetCustomDataRequestData, onResponse?: Action1<InventoryResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
82
+ getDisplayName(requestData: InventoryModels.AdminGetDisplayNameRequestData, onResponse?: Action1<InventoryResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
83
+ getItemData(requestData: InventoryModels.AdminGetItemDataRequestData, onResponse?: Action1<InventoryResponseModels.GetItemDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
84
+ getItemInformation(requestData: InventoryModels.AdminGetItemInformationRequestData, onResponse?: Action1<InventoryResponseModels.GetItemInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
85
+ getItemStatistics(requestData: InventoryModels.AdminGetItemStatisticsRequestData, onResponse?: Action1<InventoryResponseModels.GetItemStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
86
+ getItemsWithDisplayName(requestData: InventoryModels.AdminGetItemsWithDisplayNameRequestData, onResponse?: Action1<InventoryResponseModels.GetItemsWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
87
+ getItemsWithSegment(requestData: InventoryModels.AdminGetItemsWithSegmentRequestData, onResponse?: Action1<InventoryResponseModels.GetItemsWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
88
+ getItemsWithTag(requestData: InventoryModels.AdminGetItemsWithTagRequestData, onResponse?: Action1<InventoryResponseModels.GetItemsWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
89
+ getItemType(requestData: InventoryModels.AdminGetItemTypeRequestData, onResponse?: Action1<InventoryResponseModels.GetItemTypeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
90
+ getOwner(requestData: InventoryModels.AdminGetOwnerRequestData, onResponse?: Action1<InventoryResponseModels.GetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
91
+ getRemoveStatus(requestData: InventoryModels.AdminGetRemoveStatusRequestData, onResponse?: Action1<InventoryResponseModels.GetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
92
+ getSegment(requestData: InventoryModels.AdminGetSegmentRequestData, onResponse?: Action1<InventoryResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
93
+ getStatisticsLeaderboardAroundItem(requestData: InventoryModels.AdminGetStatisticsLeaderboardAroundItemRequestData, onResponse?: Action1<InventoryResponseModels.GetStatisticsLeaderboardAroundItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
94
+ getStatisticsLeaderboard(requestData: InventoryModels.AdminGetStatisticsLeaderboardRequestData, onResponse?: Action1<InventoryResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
95
+ getTag(requestData: InventoryModels.AdminGetTagRequestData, onResponse?: Action1<InventoryResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
96
+ getTsCreate(requestData: InventoryModels.AdminGetTsCreateRequestData, onResponse?: Action1<InventoryResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
97
+ removeSegment(requestData: InventoryModels.AdminRemoveSegmentRequestData, onResponse?: Action1<InventoryResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
98
+ removeTag(requestData: InventoryModels.AdminRemoveTagRequestData, onResponse?: Action1<InventoryResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
99
+ setAmount(requestData: InventoryModels.AdminSetAmountRequestData, onResponse?: Action1<InventoryResponseModels.SetAmountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
100
+ setAvatar(requestData: InventoryModels.AdminSetAvatarRequestData, onResponse?: Action1<InventoryResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
101
+ setCustomData(requestData: InventoryModels.AdminSetCustomDataRequestData, onResponse?: Action1<InventoryResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
102
+ setDisplayName(requestData: InventoryModels.AdminSetDisplayNameRequestData, onResponse?: Action1<InventoryResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
103
+ setItemData(requestData: InventoryModels.AdminSetItemDataRequestData, onResponse?: Action1<InventoryResponseModels.SetItemDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
104
+ setItemStatistics(requestData: InventoryModels.AdminSetItemStatisticsRequestData, onResponse?: Action1<InventoryResponseModels.SetItemStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
105
+ setOwner(requestData: InventoryModels.AdminSetOwnerRequestData, onResponse?: Action1<InventoryResponseModels.SetOwnerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
106
+ setRemoveStatus(requestData: InventoryModels.AdminSetRemoveStatusRequestData, onResponse?: Action1<InventoryResponseModels.SetRemoveStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
107
+ setTag(requestData: InventoryModels.AdminSetTagRequestData, onResponse?: Action1<InventoryResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
108
+ }