@xmobitea/gn-typescript-client 2.6.8 → 2.6.9-tsc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +198 -5
- package/dist/index.js +337 -34170
- package/dist/runtime/GNNetwork.js +250 -0
- package/dist/runtime/GNNetworkAuthenticateApi.js +122 -0
- package/dist/runtime/GNNetworkCharacterPlayerApi.js +968 -0
- package/dist/runtime/GNNetworkCloudScriptApi.js +104 -0
- package/dist/runtime/GNNetworkContentApi.js +140 -0
- package/dist/runtime/GNNetworkDashboardApi.js +170 -0
- package/dist/runtime/GNNetworkGamePlayerApi.js +950 -0
- package/dist/runtime/GNNetworkGroupApi.js +734 -0
- package/dist/runtime/GNNetworkInventoryApi.js +626 -0
- package/dist/runtime/GNNetworkMasterPlayerApi.js +1550 -0
- package/dist/runtime/GNNetworkMultiplayerApi.js +194 -0
- package/dist/runtime/GNNetworkStoreInventoryApi.js +266 -0
- package/dist/runtime/common/Action0.js +1 -0
- package/dist/runtime/common/Action1.js +1 -0
- package/dist/runtime/common/Action2.js +1 -0
- package/dist/runtime/common/Action3.js +1 -0
- package/dist/runtime/common/Action4.js +1 -0
- package/dist/runtime/common/GNData.js +211 -0
- package/dist/runtime/config/GNServerSettings.js +149 -0
- package/dist/runtime/constant/Commands.js +19 -0
- package/dist/runtime/constant/EventCode.js +8 -0
- package/dist/runtime/constant/OperationCode.js +221 -0
- package/dist/runtime/constant/ReturnCode.js +14 -0
- package/dist/runtime/constant/enumType/ExecuteResponseStatus.js +8 -0
- package/dist/runtime/constant/enumType/FriendStatus.js +7 -0
- package/dist/runtime/constant/enumType/GoogleLoginType.js +5 -0
- package/dist/runtime/constant/enumType/GroupStatus.js +7 -0
- package/dist/runtime/constant/enumType/InvalidMemberType.js +18 -0
- package/dist/runtime/constant/enumType/ItemType.js +5 -0
- package/dist/runtime/constant/enumType/MatchmakingMemberStatus.js +6 -0
- package/dist/runtime/constant/enumType/MatchmakingTicketStatus.js +8 -0
- package/dist/runtime/constant/enumType/OwnerType.js +9 -0
- package/dist/runtime/constant/enumType/PermissionDataItem.js +5 -0
- package/dist/runtime/constant/enumType/PushPlatformType.js +5 -0
- package/dist/runtime/constant/enumType/RequestRole.js +6 -0
- package/dist/runtime/constant/enumType/RequestType.js +15 -0
- package/dist/runtime/constant/enumType/StoreItemType.js +5 -0
- package/dist/runtime/constant/enumType/StoreReceiveType.js +8 -0
- package/dist/runtime/constant/errorCode/ErrorCode.js +52 -0
- package/dist/runtime/constant/parameterCode/ParameterCode.js +617 -0
- package/dist/runtime/entity/DataMember.js +208 -0
- package/dist/runtime/entity/GNMetadata.js +11 -0
- package/dist/runtime/entity/InvalidMember.js +1 -0
- package/dist/runtime/entity/OperationEvent.js +24 -0
- package/dist/runtime/entity/OperationHelper.js +24 -0
- package/dist/runtime/entity/OperationRequest.js +42 -0
- package/dist/runtime/entity/OperationResponse.js +73 -0
- package/dist/runtime/entity/models/AuthenticateModels.js +426 -0
- package/dist/runtime/entity/models/AuthenticateRequestModels.js +188 -0
- package/dist/runtime/entity/models/AuthenticateResponseModels.js +131 -0
- package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +0 -1
- package/dist/runtime/entity/models/CharacterPlayerModels.js +1433 -0
- package/dist/runtime/entity/models/CharacterPlayerRequestModels.js +1386 -0
- package/dist/runtime/entity/models/CharacterPlayerResponseModels.js +376 -0
- package/dist/runtime/entity/models/CloudScriptModels.js +197 -0
- package/dist/runtime/entity/models/CloudScriptRequestModels.js +138 -0
- package/dist/runtime/entity/models/CloudScriptResponseModels.js +40 -0
- package/dist/runtime/entity/models/ContentModels.js +203 -0
- package/dist/runtime/entity/models/ContentRequestModels.js +190 -0
- package/dist/runtime/entity/models/ContentResponseModels.js +54 -0
- package/dist/runtime/entity/models/DashboardModels.d.ts +7 -7
- package/dist/runtime/entity/models/DashboardModels.js +3002 -0
- package/dist/runtime/entity/models/DashboardRequestModels.js +268 -0
- package/dist/runtime/entity/models/DashboardResponseModels.js +187 -0
- package/dist/runtime/entity/models/GamePlayerModels.js +1591 -0
- package/dist/runtime/entity/models/GamePlayerRequestModels.js +1360 -0
- package/dist/runtime/entity/models/GamePlayerResponseModels.js +369 -0
- package/dist/runtime/entity/models/GenericModels.js +177 -0
- package/dist/runtime/entity/models/GroupModels.d.ts +0 -1
- package/dist/runtime/entity/models/GroupModels.js +1135 -0
- package/dist/runtime/entity/models/GroupRequestModels.js +1048 -0
- package/dist/runtime/entity/models/GroupResponseModels.js +285 -0
- package/dist/runtime/entity/models/InventoryModels.js +915 -0
- package/dist/runtime/entity/models/InventoryRequestModels.js +892 -0
- package/dist/runtime/entity/models/InventoryResponseModels.js +243 -0
- package/dist/runtime/entity/models/MasterPlayerModels.js +2573 -0
- package/dist/runtime/entity/models/MasterPlayerRequestModels.js +2228 -0
- package/dist/runtime/entity/models/MasterPlayerResponseModels.js +607 -0
- package/dist/runtime/entity/models/MultiplayerModels.d.ts +1 -1
- package/dist/runtime/entity/models/MultiplayerModels.js +404 -0
- package/dist/runtime/entity/models/MultiplayerRequestModels.js +268 -0
- package/dist/runtime/entity/models/MultiplayerResponseModels.js +75 -0
- package/dist/runtime/entity/models/StoreInventoryModels.js +797 -0
- package/dist/runtime/entity/models/StoreInventoryRequestModels.js +372 -0
- package/dist/runtime/entity/models/StoreInventoryResponseModels.js +103 -0
- package/dist/runtime/entity/request/CustomOperationRequest.js +24 -0
- package/dist/runtime/entity/response/CustomOperationResponse.js +29 -0
- package/dist/runtime/entity/response/GetAuthInfoResponse.js +2 -0
- package/dist/runtime/entity/response/UploadFileResponse.js +2 -0
- package/dist/runtime/helper/CodeHelper.js +63 -0
- package/dist/runtime/helper/ConverterService.js +275 -0
- package/dist/runtime/helper/EnumUtility.js +33 -0
- package/dist/runtime/helper/GNSupport.js +8 -0
- package/dist/runtime/helper/GNUtils.js +72 -0
- package/dist/runtime/helper/MessagePackConverterService.js +9 -0
- package/dist/runtime/logger/GNDebug.js +29 -0
- package/dist/runtime/networking/AuthenticateStatus.js +14 -0
- package/dist/runtime/networking/IPeer.js +1 -0
- package/dist/runtime/networking/NetworkingPeer.js +178 -0
- package/dist/runtime/networking/OperationPending.js +53 -0
- package/dist/runtime/networking/PeerBase.js +161 -0
- package/dist/runtime/networking/handler/IServerEventHandler.js +13 -0
- package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.js +39 -0
- package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.js +39 -0
- package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.js +39 -0
- package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.js +39 -0
- package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.js +35 -0
- package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.js +43 -0
- package/dist/runtime/networking/http/HttpPeer.js +122 -0
- package/dist/runtime/networking/http/NetworkingHttpPeerBase.js +6 -0
- package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.js +164 -0
- package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.js +130 -0
- package/dist/runtime/networking/socket/NetworkingSocketPeerBase.js +165 -0
- package/dist/runtime/networking/socket/SocketPeer.js +115 -0
- package/dist/runtime/typescript/ServiceUpdate.js +12 -0
- package/package.json +2 -2
- package/responseModel/chatgpt/Authenticate.json +724 -0
- package/responseModel/chatgpt/CharacterPlayer.json +1890 -0
- package/responseModel/chatgpt/CloudScript.json +254 -0
- package/responseModel/chatgpt/Content.json +273 -0
- package/responseModel/chatgpt/Dashboard.json +4110 -0
- package/responseModel/chatgpt/GamePlayer.json +2306 -0
- package/responseModel/chatgpt/Generic.json +253 -0
- package/responseModel/chatgpt/Group.json +1509 -0
- package/responseModel/chatgpt/Inventory.json +1211 -0
- package/responseModel/chatgpt/MasterPlayer.json +3801 -0
- package/responseModel/chatgpt/Multiplayer.json +634 -0
- package/responseModel/chatgpt/StoreInventory.json +1099 -0
- package/responseModel/clients/AuthenticateModels.json +271 -0
- package/responseModel/clients/CharacterPlayerModels.json +792 -0
- package/responseModel/clients/CloudScriptModels.json +191 -0
- package/responseModel/clients/ContentModels.json +178 -0
- package/responseModel/clients/DashboardModels.json +5423 -0
- package/responseModel/clients/GamePlayerModels.json +781 -0
- package/responseModel/clients/GenericModels.json +344 -0
- package/responseModel/clients/GroupModels.json +705 -0
- package/responseModel/clients/InventoryModels.json +568 -0
- package/responseModel/clients/MasterPlayerModels.json +1281 -0
- package/responseModel/clients/MultiplayerModels.json +439 -0
- package/responseModel/clients/StoreInventoryModels.json +971 -0
- package/responseModel/finalChatgpt/Authenticate.json +1475 -0
- package/responseModel/finalChatgpt/CharacterPlayer.json +4104 -0
- package/responseModel/finalChatgpt/CloudScript.json +515 -0
- package/responseModel/finalChatgpt/Content.json +536 -0
- package/responseModel/finalChatgpt/Dashboard.json +6712 -0
- package/responseModel/finalChatgpt/GamePlayer.json +5142 -0
- package/responseModel/finalChatgpt/Generic.json +333 -0
- package/responseModel/finalChatgpt/Group.json +3232 -0
- package/responseModel/finalChatgpt/Inventory.json +2606 -0
- package/responseModel/finalChatgpt/MasterPlayer.json +8385 -0
- package/responseModel/finalChatgpt/Multiplayer.json +1196 -0
- package/responseModel/finalChatgpt/StoreInventory.json +2085 -0
- package/responseModel/finals/Authenticate.json +1460 -0
- package/responseModel/finals/CharacterPlayer.json +3639 -0
- package/responseModel/finals/CloudScript.json +465 -0
- package/responseModel/finals/Content.json +479 -0
- package/responseModel/finals/Dashboard.json +6718 -0
- package/responseModel/finals/GamePlayer.json +4291 -0
- package/responseModel/finals/Generic.json +345 -0
- package/responseModel/finals/Group.json +2885 -0
- package/responseModel/finals/Inventory.json +2309 -0
- package/responseModel/finals/MasterPlayer.json +7018 -0
- package/responseModel/finals/Multiplayer.json +1082 -0
- package/responseModel/finals/StoreInventory.json +1979 -0
- package/responseModel/finalsShort/Authenticate.json +723 -0
- package/responseModel/finalsShort/CharacterPlayer.json +1889 -0
- package/responseModel/finalsShort/CloudScript.json +253 -0
- package/responseModel/finalsShort/Content.json +272 -0
- package/responseModel/finalsShort/Dashboard.json +4109 -0
- package/responseModel/finalsShort/GamePlayer.json +2305 -0
- package/responseModel/finalsShort/Generic.json +252 -0
- package/responseModel/finalsShort/Group.json +1508 -0
- package/responseModel/finalsShort/Inventory.json +1210 -0
- package/responseModel/finalsShort/MasterPlayer.json +3800 -0
- package/responseModel/finalsShort/Multiplayer.json +633 -0
- package/responseModel/finalsShort/StoreInventory.json +1098 -0
- package/responseModel/operationResponse/AuthenticateResponseModels.json +77 -0
- package/responseModel/operationResponse/CharacterPlayerResponseModels.json +217 -0
- package/responseModel/operationResponse/CloudScriptResponseModels.json +25 -0
- package/responseModel/operationResponse/ContentResponseModels.json +33 -0
- package/responseModel/operationResponse/DashboardResponseModels.json +109 -0
- package/responseModel/operationResponse/GamePlayerResponseModels.json +213 -0
- package/responseModel/operationResponse/GroupResponseModels.json +165 -0
- package/responseModel/operationResponse/InventoryResponseModels.json +141 -0
- package/responseModel/operationResponse/MasterPlayerResponseModels.json +349 -0
- package/responseModel/operationResponse/MultiplayerResponseModels.json +45 -0
- package/responseModel/operationResponse/StoreInventoryResponseModels.json +61 -0
- package/responseModel/servers/Authenticate.json +1328 -0
- package/responseModel/servers/CharacterPlayer.json +3199 -0
- package/responseModel/servers/CloudScript.json +278 -0
- package/responseModel/servers/Content.json +324 -0
- package/responseModel/servers/GamePlayer.json +3844 -0
- package/responseModel/servers/Group.json +2454 -0
- package/responseModel/servers/Inventory.json +1964 -0
- package/responseModel/servers/MasterAdmin.json +5569 -0
- package/responseModel/servers/MasterPlayer.json +5924 -0
- package/responseModel/servers/Multiplayer.json +545 -0
- package/responseModel/servers/StoreInventory.json +1290 -0
- package/dist/gearn.js.client.js +0 -46892
- package/dist/gearn.js.client.min.js +0 -2
- package/dist/gearn.js.client.min.js.LICENSE.txt +0 -14
|
@@ -0,0 +1,3002 @@
|
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
+
};
|
|
7
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
8
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
|
+
};
|
|
10
|
+
import { ParameterCode } from "./../../constant/parameterCode/ParameterCode";
|
|
11
|
+
import { GNHashtableDataMember, StringDataMember, BooleanDataMember, DataMember, GNArrayDataMember, NumberDataMember } from "./../DataMember";
|
|
12
|
+
export var DashboardModels;
|
|
13
|
+
(function (DashboardModels) {
|
|
14
|
+
class PermissionRulesParam {
|
|
15
|
+
}
|
|
16
|
+
__decorate([
|
|
17
|
+
BooleanDataMember({ code: ParameterCode.SelfEnable, isOptional: true }),
|
|
18
|
+
__metadata("design:type", Boolean)
|
|
19
|
+
], PermissionRulesParam.prototype, "selfEnable", void 0);
|
|
20
|
+
__decorate([
|
|
21
|
+
BooleanDataMember({ code: ParameterCode.OtherSelfEnable, isOptional: true }),
|
|
22
|
+
__metadata("design:type", Boolean)
|
|
23
|
+
], PermissionRulesParam.prototype, "otherSelfEnable", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
BooleanDataMember({ code: ParameterCode.AdminSelfEnable, isOptional: true }),
|
|
26
|
+
__metadata("design:type", Boolean)
|
|
27
|
+
], PermissionRulesParam.prototype, "adminSelfEnable", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
BooleanDataMember({ code: ParameterCode.ServerSelfEnable, isOptional: true }),
|
|
30
|
+
__metadata("design:type", Boolean)
|
|
31
|
+
], PermissionRulesParam.prototype, "serverSelfEnable", void 0);
|
|
32
|
+
DashboardModels.PermissionRulesParam = PermissionRulesParam;
|
|
33
|
+
class FriendCatalogSettingsParam {
|
|
34
|
+
}
|
|
35
|
+
__decorate([
|
|
36
|
+
StringDataMember({ code: ParameterCode.CatalogId, minLength: 2, maxLength: 32 }),
|
|
37
|
+
__metadata("design:type", String)
|
|
38
|
+
], FriendCatalogSettingsParam.prototype, "catalogId", void 0);
|
|
39
|
+
__decorate([
|
|
40
|
+
StringDataMember({ code: ParameterCode.Description }),
|
|
41
|
+
__metadata("design:type", String)
|
|
42
|
+
], FriendCatalogSettingsParam.prototype, "description", void 0);
|
|
43
|
+
__decorate([
|
|
44
|
+
BooleanDataMember({ code: ParameterCode.ForceAcceptFriend }),
|
|
45
|
+
__metadata("design:type", Boolean)
|
|
46
|
+
], FriendCatalogSettingsParam.prototype, "forceAcceptFriend", void 0);
|
|
47
|
+
DashboardModels.FriendCatalogSettingsParam = FriendCatalogSettingsParam;
|
|
48
|
+
class ItemClassSettingsParam {
|
|
49
|
+
}
|
|
50
|
+
__decorate([
|
|
51
|
+
StringDataMember({ code: ParameterCode.ClassId, minLength: 2, maxLength: 32 }),
|
|
52
|
+
__metadata("design:type", String)
|
|
53
|
+
], ItemClassSettingsParam.prototype, "classId", void 0);
|
|
54
|
+
__decorate([
|
|
55
|
+
StringDataMember({ code: ParameterCode.Description }),
|
|
56
|
+
__metadata("design:type", String)
|
|
57
|
+
], ItemClassSettingsParam.prototype, "description", void 0);
|
|
58
|
+
DashboardModels.ItemClassSettingsParam = ItemClassSettingsParam;
|
|
59
|
+
class ItemCatalogSettingsParam {
|
|
60
|
+
}
|
|
61
|
+
__decorate([
|
|
62
|
+
StringDataMember({ code: ParameterCode.CatalogId, minLength: 2, maxLength: 32 }),
|
|
63
|
+
__metadata("design:type", String)
|
|
64
|
+
], ItemCatalogSettingsParam.prototype, "catalogId", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
NumberDataMember({ code: ParameterCode.ItemType, mustInt: true }),
|
|
67
|
+
__metadata("design:type", Number)
|
|
68
|
+
], ItemCatalogSettingsParam.prototype, "itemType", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
GNArrayDataMember({ code: ParameterCode.ItemClassSettings, elementCls: ItemClassSettingsParam }),
|
|
71
|
+
__metadata("design:type", Array)
|
|
72
|
+
], ItemCatalogSettingsParam.prototype, "itemClassSettings", void 0);
|
|
73
|
+
DashboardModels.ItemCatalogSettingsParam = ItemCatalogSettingsParam;
|
|
74
|
+
class GroupCatalogSettingsParam {
|
|
75
|
+
}
|
|
76
|
+
__decorate([
|
|
77
|
+
StringDataMember({ code: ParameterCode.CatalogId, minLength: 2, maxLength: 32 }),
|
|
78
|
+
__metadata("design:type", String)
|
|
79
|
+
], GroupCatalogSettingsParam.prototype, "catalogId", void 0);
|
|
80
|
+
__decorate([
|
|
81
|
+
StringDataMember({ code: ParameterCode.Description }),
|
|
82
|
+
__metadata("design:type", String)
|
|
83
|
+
], GroupCatalogSettingsParam.prototype, "description", void 0);
|
|
84
|
+
__decorate([
|
|
85
|
+
BooleanDataMember({ code: ParameterCode.ForceAcceptMember }),
|
|
86
|
+
__metadata("design:type", Boolean)
|
|
87
|
+
], GroupCatalogSettingsParam.prototype, "forceAcceptMember", void 0);
|
|
88
|
+
DashboardModels.GroupCatalogSettingsParam = GroupCatalogSettingsParam;
|
|
89
|
+
class TagSettingsParam {
|
|
90
|
+
}
|
|
91
|
+
__decorate([
|
|
92
|
+
StringDataMember({ code: ParameterCode.Key, minLength: 2, maxLength: 32 }),
|
|
93
|
+
__metadata("design:type", String)
|
|
94
|
+
], TagSettingsParam.prototype, "key", void 0);
|
|
95
|
+
__decorate([
|
|
96
|
+
StringDataMember({ code: ParameterCode.Description }),
|
|
97
|
+
__metadata("design:type", String)
|
|
98
|
+
], TagSettingsParam.prototype, "description", void 0);
|
|
99
|
+
__decorate([
|
|
100
|
+
BooleanDataMember({ code: ParameterCode.Index }),
|
|
101
|
+
__metadata("design:type", Boolean)
|
|
102
|
+
], TagSettingsParam.prototype, "index", void 0);
|
|
103
|
+
DashboardModels.TagSettingsParam = TagSettingsParam;
|
|
104
|
+
class DataSettingsParam {
|
|
105
|
+
}
|
|
106
|
+
__decorate([
|
|
107
|
+
StringDataMember({ code: ParameterCode.Key, minLength: 2, maxLength: 32 }),
|
|
108
|
+
__metadata("design:type", String)
|
|
109
|
+
], DataSettingsParam.prototype, "key", void 0);
|
|
110
|
+
__decorate([
|
|
111
|
+
StringDataMember({ code: ParameterCode.Description }),
|
|
112
|
+
__metadata("design:type", String)
|
|
113
|
+
], DataSettingsParam.prototype, "description", void 0);
|
|
114
|
+
__decorate([
|
|
115
|
+
NumberDataMember({ code: ParameterCode.Permission, mustInt: true }),
|
|
116
|
+
__metadata("design:type", Number)
|
|
117
|
+
], DataSettingsParam.prototype, "permission", void 0);
|
|
118
|
+
DashboardModels.DataSettingsParam = DataSettingsParam;
|
|
119
|
+
class StatisticsSettingsParam {
|
|
120
|
+
}
|
|
121
|
+
__decorate([
|
|
122
|
+
StringDataMember({ code: ParameterCode.Key, minLength: 2, maxLength: 32 }),
|
|
123
|
+
__metadata("design:type", String)
|
|
124
|
+
], StatisticsSettingsParam.prototype, "key", void 0);
|
|
125
|
+
__decorate([
|
|
126
|
+
NumberDataMember({ code: ParameterCode.StatisticsAggregationMethod, mustInt: true }),
|
|
127
|
+
__metadata("design:type", Number)
|
|
128
|
+
], StatisticsSettingsParam.prototype, "statisticsAggregationMethod", void 0);
|
|
129
|
+
__decorate([
|
|
130
|
+
NumberDataMember({ code: ParameterCode.MaximumValue, isOptional: true, defaultValue: 0 }),
|
|
131
|
+
__metadata("design:type", Number)
|
|
132
|
+
], StatisticsSettingsParam.prototype, "maximumValue", void 0);
|
|
133
|
+
__decorate([
|
|
134
|
+
NumberDataMember({ code: ParameterCode.MinimumValue, isOptional: true, defaultValue: 0 }),
|
|
135
|
+
__metadata("design:type", Number)
|
|
136
|
+
], StatisticsSettingsParam.prototype, "minimumValue", void 0);
|
|
137
|
+
__decorate([
|
|
138
|
+
NumberDataMember({ code: ParameterCode.InitialValue }),
|
|
139
|
+
__metadata("design:type", Number)
|
|
140
|
+
], StatisticsSettingsParam.prototype, "initialValue", void 0);
|
|
141
|
+
__decorate([
|
|
142
|
+
StringDataMember({ code: ParameterCode.Description }),
|
|
143
|
+
__metadata("design:type", String)
|
|
144
|
+
], StatisticsSettingsParam.prototype, "description", void 0);
|
|
145
|
+
__decorate([
|
|
146
|
+
BooleanDataMember({ code: ParameterCode.Index }),
|
|
147
|
+
__metadata("design:type", Boolean)
|
|
148
|
+
], StatisticsSettingsParam.prototype, "index", void 0);
|
|
149
|
+
DashboardModels.StatisticsSettingsParam = StatisticsSettingsParam;
|
|
150
|
+
class CurrencySettingsParam {
|
|
151
|
+
}
|
|
152
|
+
__decorate([
|
|
153
|
+
StringDataMember({ code: ParameterCode.Key, minLength: 2, maxLength: 32 }),
|
|
154
|
+
__metadata("design:type", String)
|
|
155
|
+
], CurrencySettingsParam.prototype, "key", void 0);
|
|
156
|
+
__decorate([
|
|
157
|
+
NumberDataMember({ code: ParameterCode.InitialValue }),
|
|
158
|
+
__metadata("design:type", Number)
|
|
159
|
+
], CurrencySettingsParam.prototype, "initialValue", void 0);
|
|
160
|
+
__decorate([
|
|
161
|
+
StringDataMember({ code: ParameterCode.Description }),
|
|
162
|
+
__metadata("design:type", String)
|
|
163
|
+
], CurrencySettingsParam.prototype, "description", void 0);
|
|
164
|
+
__decorate([
|
|
165
|
+
BooleanDataMember({ code: ParameterCode.Index }),
|
|
166
|
+
__metadata("design:type", Boolean)
|
|
167
|
+
], CurrencySettingsParam.prototype, "index", void 0);
|
|
168
|
+
DashboardModels.CurrencySettingsParam = CurrencySettingsParam;
|
|
169
|
+
class CharacterCatalogSettingsParam {
|
|
170
|
+
}
|
|
171
|
+
__decorate([
|
|
172
|
+
StringDataMember({ code: ParameterCode.CatalogId, minLength: 2, maxLength: 32 }),
|
|
173
|
+
__metadata("design:type", String)
|
|
174
|
+
], CharacterCatalogSettingsParam.prototype, "catalogId", void 0);
|
|
175
|
+
__decorate([
|
|
176
|
+
StringDataMember({ code: ParameterCode.Description }),
|
|
177
|
+
__metadata("design:type", String)
|
|
178
|
+
], CharacterCatalogSettingsParam.prototype, "description", void 0);
|
|
179
|
+
DashboardModels.CharacterCatalogSettingsParam = CharacterCatalogSettingsParam;
|
|
180
|
+
class CharacterPlayerPermissionRulesParam {
|
|
181
|
+
}
|
|
182
|
+
__decorate([
|
|
183
|
+
GNHashtableDataMember({ code: ParameterCode.AddSegment, isOptional: true }),
|
|
184
|
+
__metadata("design:type", PermissionRulesParam)
|
|
185
|
+
], CharacterPlayerPermissionRulesParam.prototype, "addSegment", void 0);
|
|
186
|
+
__decorate([
|
|
187
|
+
GNHashtableDataMember({ code: ParameterCode.RemoveSegment, isOptional: true }),
|
|
188
|
+
__metadata("design:type", PermissionRulesParam)
|
|
189
|
+
], CharacterPlayerPermissionRulesParam.prototype, "removeSegment", void 0);
|
|
190
|
+
__decorate([
|
|
191
|
+
GNHashtableDataMember({ code: ParameterCode.GetSegment, isOptional: true }),
|
|
192
|
+
__metadata("design:type", PermissionRulesParam)
|
|
193
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getSegment", void 0);
|
|
194
|
+
__decorate([
|
|
195
|
+
GNHashtableDataMember({ code: ParameterCode.SetTag, isOptional: true }),
|
|
196
|
+
__metadata("design:type", PermissionRulesParam)
|
|
197
|
+
], CharacterPlayerPermissionRulesParam.prototype, "setTag", void 0);
|
|
198
|
+
__decorate([
|
|
199
|
+
GNHashtableDataMember({ code: ParameterCode.RemoveTag, isOptional: true }),
|
|
200
|
+
__metadata("design:type", PermissionRulesParam)
|
|
201
|
+
], CharacterPlayerPermissionRulesParam.prototype, "removeTag", void 0);
|
|
202
|
+
__decorate([
|
|
203
|
+
GNHashtableDataMember({ code: ParameterCode.GetTag, isOptional: true }),
|
|
204
|
+
__metadata("design:type", PermissionRulesParam)
|
|
205
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getTag", void 0);
|
|
206
|
+
__decorate([
|
|
207
|
+
GNHashtableDataMember({ code: ParameterCode.GetDisplayName, isOptional: true }),
|
|
208
|
+
__metadata("design:type", PermissionRulesParam)
|
|
209
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getDisplayName", void 0);
|
|
210
|
+
__decorate([
|
|
211
|
+
GNHashtableDataMember({ code: ParameterCode.SetDisplayName, isOptional: true }),
|
|
212
|
+
__metadata("design:type", PermissionRulesParam)
|
|
213
|
+
], CharacterPlayerPermissionRulesParam.prototype, "setDisplayName", void 0);
|
|
214
|
+
__decorate([
|
|
215
|
+
GNHashtableDataMember({ code: ParameterCode.GetTsCreate, isOptional: true }),
|
|
216
|
+
__metadata("design:type", PermissionRulesParam)
|
|
217
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getTsCreate", void 0);
|
|
218
|
+
__decorate([
|
|
219
|
+
GNHashtableDataMember({ code: ParameterCode.GetIpAddressCreate, isOptional: true }),
|
|
220
|
+
__metadata("design:type", PermissionRulesParam)
|
|
221
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getIpAddressCreate", void 0);
|
|
222
|
+
__decorate([
|
|
223
|
+
GNHashtableDataMember({ code: ParameterCode.GetTsLastLogin, isOptional: true }),
|
|
224
|
+
__metadata("design:type", PermissionRulesParam)
|
|
225
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getTsLastLogin", void 0);
|
|
226
|
+
__decorate([
|
|
227
|
+
GNHashtableDataMember({ code: ParameterCode.SetPlayerBan, isOptional: true }),
|
|
228
|
+
__metadata("design:type", PermissionRulesParam)
|
|
229
|
+
], CharacterPlayerPermissionRulesParam.prototype, "setPlayerBan", void 0);
|
|
230
|
+
__decorate([
|
|
231
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerBan, isOptional: true }),
|
|
232
|
+
__metadata("design:type", PermissionRulesParam)
|
|
233
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getPlayerBan", void 0);
|
|
234
|
+
__decorate([
|
|
235
|
+
GNHashtableDataMember({ code: ParameterCode.SetCountryCode, isOptional: true }),
|
|
236
|
+
__metadata("design:type", PermissionRulesParam)
|
|
237
|
+
], CharacterPlayerPermissionRulesParam.prototype, "setCountryCode", void 0);
|
|
238
|
+
__decorate([
|
|
239
|
+
GNHashtableDataMember({ code: ParameterCode.GetCountryCode, isOptional: true }),
|
|
240
|
+
__metadata("design:type", PermissionRulesParam)
|
|
241
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getCountryCode", void 0);
|
|
242
|
+
__decorate([
|
|
243
|
+
GNHashtableDataMember({ code: ParameterCode.SetAvatar, isOptional: true }),
|
|
244
|
+
__metadata("design:type", PermissionRulesParam)
|
|
245
|
+
], CharacterPlayerPermissionRulesParam.prototype, "setAvatar", void 0);
|
|
246
|
+
__decorate([
|
|
247
|
+
GNHashtableDataMember({ code: ParameterCode.GetAvatar, isOptional: true }),
|
|
248
|
+
__metadata("design:type", PermissionRulesParam)
|
|
249
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getAvatar", void 0);
|
|
250
|
+
__decorate([
|
|
251
|
+
GNHashtableDataMember({ code: ParameterCode.ChangePlayerCurrency, isOptional: true }),
|
|
252
|
+
__metadata("design:type", PermissionRulesParam)
|
|
253
|
+
], CharacterPlayerPermissionRulesParam.prototype, "changePlayerCurrency", void 0);
|
|
254
|
+
__decorate([
|
|
255
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerCurrency, isOptional: true }),
|
|
256
|
+
__metadata("design:type", PermissionRulesParam)
|
|
257
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getPlayerCurrency", void 0);
|
|
258
|
+
__decorate([
|
|
259
|
+
GNHashtableDataMember({ code: ParameterCode.ChangePlayerStatistics, isOptional: true }),
|
|
260
|
+
__metadata("design:type", PermissionRulesParam)
|
|
261
|
+
], CharacterPlayerPermissionRulesParam.prototype, "changePlayerStatistics", void 0);
|
|
262
|
+
__decorate([
|
|
263
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerStatistics, isOptional: true }),
|
|
264
|
+
__metadata("design:type", PermissionRulesParam)
|
|
265
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getPlayerStatistics", void 0);
|
|
266
|
+
__decorate([
|
|
267
|
+
GNHashtableDataMember({ code: ParameterCode.GetStatisticsLeaderboard, isOptional: true }),
|
|
268
|
+
__metadata("design:type", PermissionRulesParam)
|
|
269
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getStatisticsLeaderboard", void 0);
|
|
270
|
+
__decorate([
|
|
271
|
+
GNHashtableDataMember({ code: ParameterCode.GetStatisticsLeaderboardAroundPlayer, isOptional: true }),
|
|
272
|
+
__metadata("design:type", PermissionRulesParam)
|
|
273
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getStatisticsLeaderboardAroundPlayer", void 0);
|
|
274
|
+
__decorate([
|
|
275
|
+
GNHashtableDataMember({ code: ParameterCode.GetCustomData, isOptional: true }),
|
|
276
|
+
__metadata("design:type", PermissionRulesParam)
|
|
277
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getCustomData", void 0);
|
|
278
|
+
__decorate([
|
|
279
|
+
GNHashtableDataMember({ code: ParameterCode.SetCustomData, isOptional: true }),
|
|
280
|
+
__metadata("design:type", PermissionRulesParam)
|
|
281
|
+
], CharacterPlayerPermissionRulesParam.prototype, "setCustomData", void 0);
|
|
282
|
+
__decorate([
|
|
283
|
+
GNHashtableDataMember({ code: ParameterCode.SetPlayerData, isOptional: true }),
|
|
284
|
+
__metadata("design:type", PermissionRulesParam)
|
|
285
|
+
], CharacterPlayerPermissionRulesParam.prototype, "setPlayerData", void 0);
|
|
286
|
+
__decorate([
|
|
287
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerData, isOptional: true }),
|
|
288
|
+
__metadata("design:type", PermissionRulesParam)
|
|
289
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getPlayerData", void 0);
|
|
290
|
+
__decorate([
|
|
291
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerInformation, isOptional: true }),
|
|
292
|
+
__metadata("design:type", PermissionRulesParam)
|
|
293
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getPlayerInformation", void 0);
|
|
294
|
+
__decorate([
|
|
295
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayersWithSegment, isOptional: true }),
|
|
296
|
+
__metadata("design:type", PermissionRulesParam)
|
|
297
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getPlayersWithSegment", void 0);
|
|
298
|
+
__decorate([
|
|
299
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayersWithTag, isOptional: true }),
|
|
300
|
+
__metadata("design:type", PermissionRulesParam)
|
|
301
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getPlayersWithTag", void 0);
|
|
302
|
+
__decorate([
|
|
303
|
+
GNHashtableDataMember({ code: ParameterCode.GetCatalogId, isOptional: true }),
|
|
304
|
+
__metadata("design:type", PermissionRulesParam)
|
|
305
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getCatalogId", void 0);
|
|
306
|
+
__decorate([
|
|
307
|
+
GNHashtableDataMember({ code: ParameterCode.GetOwner, isOptional: true }),
|
|
308
|
+
__metadata("design:type", PermissionRulesParam)
|
|
309
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getOwner", void 0);
|
|
310
|
+
__decorate([
|
|
311
|
+
GNHashtableDataMember({ code: ParameterCode.GetRemoveStatus, isOptional: true }),
|
|
312
|
+
__metadata("design:type", PermissionRulesParam)
|
|
313
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getRemoveStatus", void 0);
|
|
314
|
+
__decorate([
|
|
315
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerFriend, isOptional: true }),
|
|
316
|
+
__metadata("design:type", PermissionRulesParam)
|
|
317
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getPlayerFriend", void 0);
|
|
318
|
+
__decorate([
|
|
319
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerGroup, isOptional: true }),
|
|
320
|
+
__metadata("design:type", PermissionRulesParam)
|
|
321
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getPlayerGroup", void 0);
|
|
322
|
+
__decorate([
|
|
323
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerInventory, isOptional: true }),
|
|
324
|
+
__metadata("design:type", PermissionRulesParam)
|
|
325
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getPlayerInventory", void 0);
|
|
326
|
+
__decorate([
|
|
327
|
+
GNHashtableDataMember({ code: ParameterCode.RemovePlayerItem, isOptional: true }),
|
|
328
|
+
__metadata("design:type", PermissionRulesParam)
|
|
329
|
+
], CharacterPlayerPermissionRulesParam.prototype, "removePlayerItem", void 0);
|
|
330
|
+
__decorate([
|
|
331
|
+
GNHashtableDataMember({ code: ParameterCode.CreatePlayerItem, isOptional: true }),
|
|
332
|
+
__metadata("design:type", PermissionRulesParam)
|
|
333
|
+
], CharacterPlayerPermissionRulesParam.prototype, "createPlayerItem", void 0);
|
|
334
|
+
__decorate([
|
|
335
|
+
GNHashtableDataMember({ code: ParameterCode.CreateGroup, isOptional: true }),
|
|
336
|
+
__metadata("design:type", PermissionRulesParam)
|
|
337
|
+
], CharacterPlayerPermissionRulesParam.prototype, "createGroup", void 0);
|
|
338
|
+
__decorate([
|
|
339
|
+
GNHashtableDataMember({ code: ParameterCode.JoinGroup, isOptional: true }),
|
|
340
|
+
__metadata("design:type", PermissionRulesParam)
|
|
341
|
+
], CharacterPlayerPermissionRulesParam.prototype, "joinGroup", void 0);
|
|
342
|
+
__decorate([
|
|
343
|
+
GNHashtableDataMember({ code: ParameterCode.LeaveGroup, isOptional: true }),
|
|
344
|
+
__metadata("design:type", PermissionRulesParam)
|
|
345
|
+
], CharacterPlayerPermissionRulesParam.prototype, "leaveGroup", void 0);
|
|
346
|
+
__decorate([
|
|
347
|
+
GNHashtableDataMember({ code: ParameterCode.SetOwner, isOptional: true }),
|
|
348
|
+
__metadata("design:type", PermissionRulesParam)
|
|
349
|
+
], CharacterPlayerPermissionRulesParam.prototype, "setOwner", void 0);
|
|
350
|
+
__decorate([
|
|
351
|
+
GNHashtableDataMember({ code: ParameterCode.AddPlayerFriend, isOptional: true }),
|
|
352
|
+
__metadata("design:type", PermissionRulesParam)
|
|
353
|
+
], CharacterPlayerPermissionRulesParam.prototype, "addPlayerFriend", void 0);
|
|
354
|
+
__decorate([
|
|
355
|
+
GNHashtableDataMember({ code: ParameterCode.RemovePlayerFriend, isOptional: true }),
|
|
356
|
+
__metadata("design:type", PermissionRulesParam)
|
|
357
|
+
], CharacterPlayerPermissionRulesParam.prototype, "removePlayerFriend", void 0);
|
|
358
|
+
__decorate([
|
|
359
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayersWithDisplayName, isOptional: true }),
|
|
360
|
+
__metadata("design:type", PermissionRulesParam)
|
|
361
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getPlayersWithDisplayName", void 0);
|
|
362
|
+
__decorate([
|
|
363
|
+
GNHashtableDataMember({ code: ParameterCode.SetRemoveStatus, isOptional: true }),
|
|
364
|
+
__metadata("design:type", PermissionRulesParam)
|
|
365
|
+
], CharacterPlayerPermissionRulesParam.prototype, "setRemoveStatus", void 0);
|
|
366
|
+
__decorate([
|
|
367
|
+
GNHashtableDataMember({ code: ParameterCode.GetFriendStatisticsLeaderboardAroundPlayer, isOptional: true }),
|
|
368
|
+
__metadata("design:type", PermissionRulesParam)
|
|
369
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getFriendStatisticsLeaderboardAroundPlayer", void 0);
|
|
370
|
+
__decorate([
|
|
371
|
+
GNHashtableDataMember({ code: ParameterCode.GetFriendStatisticsLeaderboard, isOptional: true }),
|
|
372
|
+
__metadata("design:type", PermissionRulesParam)
|
|
373
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getFriendStatisticsLeaderboard", void 0);
|
|
374
|
+
__decorate([
|
|
375
|
+
GNHashtableDataMember({ code: ParameterCode.GetCurrencyLeaderboard, isOptional: true }),
|
|
376
|
+
__metadata("design:type", PermissionRulesParam)
|
|
377
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getCurrencyLeaderboard", void 0);
|
|
378
|
+
__decorate([
|
|
379
|
+
GNHashtableDataMember({ code: ParameterCode.GetCreateLeaderboard, isOptional: true }),
|
|
380
|
+
__metadata("design:type", PermissionRulesParam)
|
|
381
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getCreateLeaderboard", void 0);
|
|
382
|
+
__decorate([
|
|
383
|
+
GNHashtableDataMember({ code: ParameterCode.GetLastLoginLeaderboard, isOptional: true }),
|
|
384
|
+
__metadata("design:type", PermissionRulesParam)
|
|
385
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getLastLoginLeaderboard", void 0);
|
|
386
|
+
__decorate([
|
|
387
|
+
GNHashtableDataMember({ code: ParameterCode.GetStatisticsLog, isOptional: true }),
|
|
388
|
+
__metadata("design:type", PermissionRulesParam)
|
|
389
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getStatisticsLog", void 0);
|
|
390
|
+
__decorate([
|
|
391
|
+
GNHashtableDataMember({ code: ParameterCode.GetCurrencyLog, isOptional: true }),
|
|
392
|
+
__metadata("design:type", PermissionRulesParam)
|
|
393
|
+
], CharacterPlayerPermissionRulesParam.prototype, "getCurrencyLog", void 0);
|
|
394
|
+
DashboardModels.CharacterPlayerPermissionRulesParam = CharacterPlayerPermissionRulesParam;
|
|
395
|
+
class CharacterPlayerSettingsParam {
|
|
396
|
+
}
|
|
397
|
+
__decorate([
|
|
398
|
+
GNArrayDataMember({ code: ParameterCode.PlayerCurrenciesSettings, elementCls: CurrencySettingsParam, isOptional: true }),
|
|
399
|
+
__metadata("design:type", Array)
|
|
400
|
+
], CharacterPlayerSettingsParam.prototype, "playerCurrenciesSettings", void 0);
|
|
401
|
+
__decorate([
|
|
402
|
+
GNArrayDataMember({ code: ParameterCode.PlayerStatisticsSettings, elementCls: StatisticsSettingsParam, isOptional: true }),
|
|
403
|
+
__metadata("design:type", Array)
|
|
404
|
+
], CharacterPlayerSettingsParam.prototype, "playerStatisticsSettings", void 0);
|
|
405
|
+
__decorate([
|
|
406
|
+
GNArrayDataMember({ code: ParameterCode.PlayerDatasSettings, elementCls: DataSettingsParam, isOptional: true }),
|
|
407
|
+
__metadata("design:type", Array)
|
|
408
|
+
], CharacterPlayerSettingsParam.prototype, "playerDatasSettings", void 0);
|
|
409
|
+
__decorate([
|
|
410
|
+
GNArrayDataMember({ code: ParameterCode.CustomDatasSettings, elementCls: DataSettingsParam, isOptional: true }),
|
|
411
|
+
__metadata("design:type", Array)
|
|
412
|
+
], CharacterPlayerSettingsParam.prototype, "customDatasSettings", void 0);
|
|
413
|
+
__decorate([
|
|
414
|
+
GNArrayDataMember({ code: ParameterCode.TagsSettings, elementCls: TagSettingsParam, isOptional: true }),
|
|
415
|
+
__metadata("design:type", Array)
|
|
416
|
+
], CharacterPlayerSettingsParam.prototype, "tagsSettings", void 0);
|
|
417
|
+
__decorate([
|
|
418
|
+
GNArrayDataMember({ code: ParameterCode.PlayerGroupCatalogSettings, elementCls: GroupCatalogSettingsParam, isOptional: true }),
|
|
419
|
+
__metadata("design:type", Array)
|
|
420
|
+
], CharacterPlayerSettingsParam.prototype, "playerGroupCatalogSettings", void 0);
|
|
421
|
+
__decorate([
|
|
422
|
+
GNArrayDataMember({ code: ParameterCode.PlayerItemCatalogSettings, elementCls: ItemCatalogSettingsParam, isOptional: true }),
|
|
423
|
+
__metadata("design:type", Array)
|
|
424
|
+
], CharacterPlayerSettingsParam.prototype, "playerItemCatalogSettings", void 0);
|
|
425
|
+
__decorate([
|
|
426
|
+
GNArrayDataMember({ code: ParameterCode.PlayerFriendCatalogSettings, elementCls: FriendCatalogSettingsParam, isOptional: true }),
|
|
427
|
+
__metadata("design:type", Array)
|
|
428
|
+
], CharacterPlayerSettingsParam.prototype, "playerFriendCatalogSettings", void 0);
|
|
429
|
+
DashboardModels.CharacterPlayerSettingsParam = CharacterPlayerSettingsParam;
|
|
430
|
+
class ContentPermissionRulesParam {
|
|
431
|
+
}
|
|
432
|
+
__decorate([
|
|
433
|
+
GNHashtableDataMember({ code: ParameterCode.GetContentData, isOptional: true }),
|
|
434
|
+
__metadata("design:type", PermissionRulesParam)
|
|
435
|
+
], ContentPermissionRulesParam.prototype, "getContentData", void 0);
|
|
436
|
+
__decorate([
|
|
437
|
+
GNHashtableDataMember({ code: ParameterCode.SetContentData, isOptional: true }),
|
|
438
|
+
__metadata("design:type", PermissionRulesParam)
|
|
439
|
+
], ContentPermissionRulesParam.prototype, "setContentData", void 0);
|
|
440
|
+
__decorate([
|
|
441
|
+
GNHashtableDataMember({ code: ParameterCode.CreateNewFileUploadInfo, isOptional: true }),
|
|
442
|
+
__metadata("design:type", PermissionRulesParam)
|
|
443
|
+
], ContentPermissionRulesParam.prototype, "createNewFileUploadInfo", void 0);
|
|
444
|
+
__decorate([
|
|
445
|
+
GNHashtableDataMember({ code: ParameterCode.GetFileUploadInfoList, isOptional: true }),
|
|
446
|
+
__metadata("design:type", PermissionRulesParam)
|
|
447
|
+
], ContentPermissionRulesParam.prototype, "getFileUploadInfoList", void 0);
|
|
448
|
+
__decorate([
|
|
449
|
+
GNHashtableDataMember({ code: ParameterCode.GetFileUploadInfo, isOptional: true }),
|
|
450
|
+
__metadata("design:type", PermissionRulesParam)
|
|
451
|
+
], ContentPermissionRulesParam.prototype, "getFileUploadInfo", void 0);
|
|
452
|
+
__decorate([
|
|
453
|
+
GNHashtableDataMember({ code: ParameterCode.RemoveFileUploadInfo, isOptional: true }),
|
|
454
|
+
__metadata("design:type", PermissionRulesParam)
|
|
455
|
+
], ContentPermissionRulesParam.prototype, "removeFileUploadInfo", void 0);
|
|
456
|
+
__decorate([
|
|
457
|
+
GNHashtableDataMember({ code: ParameterCode.RequestDownloadFileUploadInfo, isOptional: true }),
|
|
458
|
+
__metadata("design:type", PermissionRulesParam)
|
|
459
|
+
], ContentPermissionRulesParam.prototype, "requestDownloadFileUploadInfo", void 0);
|
|
460
|
+
DashboardModels.ContentPermissionRulesParam = ContentPermissionRulesParam;
|
|
461
|
+
class ThirtPartyAppleSettingsParam {
|
|
462
|
+
}
|
|
463
|
+
__decorate([
|
|
464
|
+
StringDataMember({ code: ParameterCode.AppleClientId }),
|
|
465
|
+
__metadata("design:type", String)
|
|
466
|
+
], ThirtPartyAppleSettingsParam.prototype, "appleClientId", void 0);
|
|
467
|
+
__decorate([
|
|
468
|
+
BooleanDataMember({ code: ParameterCode.SandboxEnable }),
|
|
469
|
+
__metadata("design:type", Boolean)
|
|
470
|
+
], ThirtPartyAppleSettingsParam.prototype, "sandboxEnable", void 0);
|
|
471
|
+
__decorate([
|
|
472
|
+
StringDataMember({ code: ParameterCode.IssuerId }),
|
|
473
|
+
__metadata("design:type", String)
|
|
474
|
+
], ThirtPartyAppleSettingsParam.prototype, "issuerId", void 0);
|
|
475
|
+
__decorate([
|
|
476
|
+
StringDataMember({ code: ParameterCode.KeyId }),
|
|
477
|
+
__metadata("design:type", String)
|
|
478
|
+
], ThirtPartyAppleSettingsParam.prototype, "keyId", void 0);
|
|
479
|
+
__decorate([
|
|
480
|
+
StringDataMember({ code: ParameterCode.P8Content }),
|
|
481
|
+
__metadata("design:type", String)
|
|
482
|
+
], ThirtPartyAppleSettingsParam.prototype, "p8Content", void 0);
|
|
483
|
+
DashboardModels.ThirtPartyAppleSettingsParam = ThirtPartyAppleSettingsParam;
|
|
484
|
+
class ThirtPartyFacebookSettingsParam {
|
|
485
|
+
}
|
|
486
|
+
__decorate([
|
|
487
|
+
StringDataMember({ code: ParameterCode.FacebookAppId }),
|
|
488
|
+
__metadata("design:type", String)
|
|
489
|
+
], ThirtPartyFacebookSettingsParam.prototype, "facebookAppId", void 0);
|
|
490
|
+
__decorate([
|
|
491
|
+
StringDataMember({ code: ParameterCode.FacebookAppToken }),
|
|
492
|
+
__metadata("design:type", String)
|
|
493
|
+
], ThirtPartyFacebookSettingsParam.prototype, "facebookAppToken", void 0);
|
|
494
|
+
__decorate([
|
|
495
|
+
StringDataMember({ code: ParameterCode.FacebookInappSecret }),
|
|
496
|
+
__metadata("design:type", String)
|
|
497
|
+
], ThirtPartyFacebookSettingsParam.prototype, "facebookInappSecret", void 0);
|
|
498
|
+
DashboardModels.ThirtPartyFacebookSettingsParam = ThirtPartyFacebookSettingsParam;
|
|
499
|
+
class ThirtPartyGoogleSettingsParam {
|
|
500
|
+
}
|
|
501
|
+
__decorate([
|
|
502
|
+
StringDataMember({ code: ParameterCode.GoogleClientId }),
|
|
503
|
+
__metadata("design:type", String)
|
|
504
|
+
], ThirtPartyGoogleSettingsParam.prototype, "googleClientId", void 0);
|
|
505
|
+
__decorate([
|
|
506
|
+
StringDataMember({ code: ParameterCode.PackageId }),
|
|
507
|
+
__metadata("design:type", String)
|
|
508
|
+
], ThirtPartyGoogleSettingsParam.prototype, "packageId", void 0);
|
|
509
|
+
__decorate([
|
|
510
|
+
StringDataMember({ code: ParameterCode.PublicRSAKey }),
|
|
511
|
+
__metadata("design:type", String)
|
|
512
|
+
], ThirtPartyGoogleSettingsParam.prototype, "publicRSAKey", void 0);
|
|
513
|
+
DashboardModels.ThirtPartyGoogleSettingsParam = ThirtPartyGoogleSettingsParam;
|
|
514
|
+
class ThirtPartyGameCenterSettingsParam {
|
|
515
|
+
}
|
|
516
|
+
__decorate([
|
|
517
|
+
StringDataMember({ code: ParameterCode.PackageId }),
|
|
518
|
+
__metadata("design:type", String)
|
|
519
|
+
], ThirtPartyGameCenterSettingsParam.prototype, "packageId", void 0);
|
|
520
|
+
DashboardModels.ThirtPartyGameCenterSettingsParam = ThirtPartyGameCenterSettingsParam;
|
|
521
|
+
class ThirtPartyGooglePlayGameSettingsParam {
|
|
522
|
+
}
|
|
523
|
+
__decorate([
|
|
524
|
+
StringDataMember({ code: ParameterCode.RedirectUri }),
|
|
525
|
+
__metadata("design:type", String)
|
|
526
|
+
], ThirtPartyGooglePlayGameSettingsParam.prototype, "redirectUri", void 0);
|
|
527
|
+
__decorate([
|
|
528
|
+
StringDataMember({ code: ParameterCode.ClientId }),
|
|
529
|
+
__metadata("design:type", String)
|
|
530
|
+
], ThirtPartyGooglePlayGameSettingsParam.prototype, "clientId", void 0);
|
|
531
|
+
__decorate([
|
|
532
|
+
StringDataMember({ code: ParameterCode.ClientSecret }),
|
|
533
|
+
__metadata("design:type", String)
|
|
534
|
+
], ThirtPartyGooglePlayGameSettingsParam.prototype, "clientSecret", void 0);
|
|
535
|
+
__decorate([
|
|
536
|
+
StringDataMember({ code: ParameterCode.ApplicationId }),
|
|
537
|
+
__metadata("design:type", String)
|
|
538
|
+
], ThirtPartyGooglePlayGameSettingsParam.prototype, "applicationId", void 0);
|
|
539
|
+
DashboardModels.ThirtPartyGooglePlayGameSettingsParam = ThirtPartyGooglePlayGameSettingsParam;
|
|
540
|
+
class ThirtPartyParam {
|
|
541
|
+
}
|
|
542
|
+
__decorate([
|
|
543
|
+
GNHashtableDataMember({ code: ParameterCode.GoogleSettings, isOptional: true }),
|
|
544
|
+
__metadata("design:type", ThirtPartyGoogleSettingsParam)
|
|
545
|
+
], ThirtPartyParam.prototype, "googleSettings", void 0);
|
|
546
|
+
__decorate([
|
|
547
|
+
GNHashtableDataMember({ code: ParameterCode.FacebookSettings, isOptional: true }),
|
|
548
|
+
__metadata("design:type", ThirtPartyFacebookSettingsParam)
|
|
549
|
+
], ThirtPartyParam.prototype, "facebookSettings", void 0);
|
|
550
|
+
__decorate([
|
|
551
|
+
GNHashtableDataMember({ code: ParameterCode.AppleSettings, isOptional: true }),
|
|
552
|
+
__metadata("design:type", ThirtPartyAppleSettingsParam)
|
|
553
|
+
], ThirtPartyParam.prototype, "appleSettings", void 0);
|
|
554
|
+
__decorate([
|
|
555
|
+
GNHashtableDataMember({ code: ParameterCode.GooglePlayGameSettings, isOptional: true }),
|
|
556
|
+
__metadata("design:type", ThirtPartyGooglePlayGameSettingsParam)
|
|
557
|
+
], ThirtPartyParam.prototype, "googlePlayGameSettings", void 0);
|
|
558
|
+
__decorate([
|
|
559
|
+
GNHashtableDataMember({ code: ParameterCode.GameCenterSettings, isOptional: true }),
|
|
560
|
+
__metadata("design:type", ThirtPartyGameCenterSettingsParam)
|
|
561
|
+
], ThirtPartyParam.prototype, "gameCenterSettings", void 0);
|
|
562
|
+
DashboardModels.ThirtPartyParam = ThirtPartyParam;
|
|
563
|
+
class EmailSettingsParam {
|
|
564
|
+
}
|
|
565
|
+
__decorate([
|
|
566
|
+
StringDataMember({ code: ParameterCode.SendFrom }),
|
|
567
|
+
__metadata("design:type", String)
|
|
568
|
+
], EmailSettingsParam.prototype, "sendFrom", void 0);
|
|
569
|
+
__decorate([
|
|
570
|
+
BooleanDataMember({ code: ParameterCode.Secure }),
|
|
571
|
+
__metadata("design:type", Boolean)
|
|
572
|
+
], EmailSettingsParam.prototype, "secure", void 0);
|
|
573
|
+
__decorate([
|
|
574
|
+
StringDataMember({ code: ParameterCode.Host }),
|
|
575
|
+
__metadata("design:type", String)
|
|
576
|
+
], EmailSettingsParam.prototype, "host", void 0);
|
|
577
|
+
__decorate([
|
|
578
|
+
NumberDataMember({ code: ParameterCode.Port }),
|
|
579
|
+
__metadata("design:type", Number)
|
|
580
|
+
], EmailSettingsParam.prototype, "port", void 0);
|
|
581
|
+
__decorate([
|
|
582
|
+
StringDataMember({ code: ParameterCode.Username }),
|
|
583
|
+
__metadata("design:type", String)
|
|
584
|
+
], EmailSettingsParam.prototype, "username", void 0);
|
|
585
|
+
__decorate([
|
|
586
|
+
StringDataMember({ code: ParameterCode.Password }),
|
|
587
|
+
__metadata("design:type", String)
|
|
588
|
+
], EmailSettingsParam.prototype, "password", void 0);
|
|
589
|
+
DashboardModels.EmailSettingsParam = EmailSettingsParam;
|
|
590
|
+
class PushNotificationSettingsParam {
|
|
591
|
+
}
|
|
592
|
+
__decorate([
|
|
593
|
+
StringDataMember({ code: ParameterCode.ProjectId }),
|
|
594
|
+
__metadata("design:type", String)
|
|
595
|
+
], PushNotificationSettingsParam.prototype, "projectId", void 0);
|
|
596
|
+
__decorate([
|
|
597
|
+
StringDataMember({ code: ParameterCode.ClientEmail }),
|
|
598
|
+
__metadata("design:type", String)
|
|
599
|
+
], PushNotificationSettingsParam.prototype, "clientEmail", void 0);
|
|
600
|
+
__decorate([
|
|
601
|
+
StringDataMember({ code: ParameterCode.PrivateKey }),
|
|
602
|
+
__metadata("design:type", String)
|
|
603
|
+
], PushNotificationSettingsParam.prototype, "privateKey", void 0);
|
|
604
|
+
DashboardModels.PushNotificationSettingsParam = PushNotificationSettingsParam;
|
|
605
|
+
class GamePlayerPermissionRulesParam {
|
|
606
|
+
}
|
|
607
|
+
__decorate([
|
|
608
|
+
GNHashtableDataMember({ code: ParameterCode.AddSegment, isOptional: true }),
|
|
609
|
+
__metadata("design:type", PermissionRulesParam)
|
|
610
|
+
], GamePlayerPermissionRulesParam.prototype, "addSegment", void 0);
|
|
611
|
+
__decorate([
|
|
612
|
+
GNHashtableDataMember({ code: ParameterCode.RemoveSegment, isOptional: true }),
|
|
613
|
+
__metadata("design:type", PermissionRulesParam)
|
|
614
|
+
], GamePlayerPermissionRulesParam.prototype, "removeSegment", void 0);
|
|
615
|
+
__decorate([
|
|
616
|
+
GNHashtableDataMember({ code: ParameterCode.GetSegment, isOptional: true }),
|
|
617
|
+
__metadata("design:type", PermissionRulesParam)
|
|
618
|
+
], GamePlayerPermissionRulesParam.prototype, "getSegment", void 0);
|
|
619
|
+
__decorate([
|
|
620
|
+
GNHashtableDataMember({ code: ParameterCode.SetTag, isOptional: true }),
|
|
621
|
+
__metadata("design:type", PermissionRulesParam)
|
|
622
|
+
], GamePlayerPermissionRulesParam.prototype, "setTag", void 0);
|
|
623
|
+
__decorate([
|
|
624
|
+
GNHashtableDataMember({ code: ParameterCode.RemoveTag, isOptional: true }),
|
|
625
|
+
__metadata("design:type", PermissionRulesParam)
|
|
626
|
+
], GamePlayerPermissionRulesParam.prototype, "removeTag", void 0);
|
|
627
|
+
__decorate([
|
|
628
|
+
GNHashtableDataMember({ code: ParameterCode.GetTag, isOptional: true }),
|
|
629
|
+
__metadata("design:type", PermissionRulesParam)
|
|
630
|
+
], GamePlayerPermissionRulesParam.prototype, "getTag", void 0);
|
|
631
|
+
__decorate([
|
|
632
|
+
GNHashtableDataMember({ code: ParameterCode.GetDisplayName, isOptional: true }),
|
|
633
|
+
__metadata("design:type", PermissionRulesParam)
|
|
634
|
+
], GamePlayerPermissionRulesParam.prototype, "getDisplayName", void 0);
|
|
635
|
+
__decorate([
|
|
636
|
+
GNHashtableDataMember({ code: ParameterCode.SetDisplayName, isOptional: true }),
|
|
637
|
+
__metadata("design:type", PermissionRulesParam)
|
|
638
|
+
], GamePlayerPermissionRulesParam.prototype, "setDisplayName", void 0);
|
|
639
|
+
__decorate([
|
|
640
|
+
GNHashtableDataMember({ code: ParameterCode.GetTsCreate, isOptional: true }),
|
|
641
|
+
__metadata("design:type", PermissionRulesParam)
|
|
642
|
+
], GamePlayerPermissionRulesParam.prototype, "getTsCreate", void 0);
|
|
643
|
+
__decorate([
|
|
644
|
+
GNHashtableDataMember({ code: ParameterCode.GetIpAddressCreate, isOptional: true }),
|
|
645
|
+
__metadata("design:type", PermissionRulesParam)
|
|
646
|
+
], GamePlayerPermissionRulesParam.prototype, "getIpAddressCreate", void 0);
|
|
647
|
+
__decorate([
|
|
648
|
+
GNHashtableDataMember({ code: ParameterCode.GetTsLastLogin, isOptional: true }),
|
|
649
|
+
__metadata("design:type", PermissionRulesParam)
|
|
650
|
+
], GamePlayerPermissionRulesParam.prototype, "getTsLastLogin", void 0);
|
|
651
|
+
__decorate([
|
|
652
|
+
GNHashtableDataMember({ code: ParameterCode.SetPlayerBan, isOptional: true }),
|
|
653
|
+
__metadata("design:type", PermissionRulesParam)
|
|
654
|
+
], GamePlayerPermissionRulesParam.prototype, "setPlayerBan", void 0);
|
|
655
|
+
__decorate([
|
|
656
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerBan, isOptional: true }),
|
|
657
|
+
__metadata("design:type", PermissionRulesParam)
|
|
658
|
+
], GamePlayerPermissionRulesParam.prototype, "getPlayerBan", void 0);
|
|
659
|
+
__decorate([
|
|
660
|
+
GNHashtableDataMember({ code: ParameterCode.SetCountryCode, isOptional: true }),
|
|
661
|
+
__metadata("design:type", PermissionRulesParam)
|
|
662
|
+
], GamePlayerPermissionRulesParam.prototype, "setCountryCode", void 0);
|
|
663
|
+
__decorate([
|
|
664
|
+
GNHashtableDataMember({ code: ParameterCode.GetCountryCode, isOptional: true }),
|
|
665
|
+
__metadata("design:type", PermissionRulesParam)
|
|
666
|
+
], GamePlayerPermissionRulesParam.prototype, "getCountryCode", void 0);
|
|
667
|
+
__decorate([
|
|
668
|
+
GNHashtableDataMember({ code: ParameterCode.SetAvatar, isOptional: true }),
|
|
669
|
+
__metadata("design:type", PermissionRulesParam)
|
|
670
|
+
], GamePlayerPermissionRulesParam.prototype, "setAvatar", void 0);
|
|
671
|
+
__decorate([
|
|
672
|
+
GNHashtableDataMember({ code: ParameterCode.GetAvatar, isOptional: true }),
|
|
673
|
+
__metadata("design:type", PermissionRulesParam)
|
|
674
|
+
], GamePlayerPermissionRulesParam.prototype, "getAvatar", void 0);
|
|
675
|
+
__decorate([
|
|
676
|
+
GNHashtableDataMember({ code: ParameterCode.ChangePlayerCurrency, isOptional: true }),
|
|
677
|
+
__metadata("design:type", PermissionRulesParam)
|
|
678
|
+
], GamePlayerPermissionRulesParam.prototype, "changePlayerCurrency", void 0);
|
|
679
|
+
__decorate([
|
|
680
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerCurrency, isOptional: true }),
|
|
681
|
+
__metadata("design:type", PermissionRulesParam)
|
|
682
|
+
], GamePlayerPermissionRulesParam.prototype, "getPlayerCurrency", void 0);
|
|
683
|
+
__decorate([
|
|
684
|
+
GNHashtableDataMember({ code: ParameterCode.ChangePlayerStatistics, isOptional: true }),
|
|
685
|
+
__metadata("design:type", PermissionRulesParam)
|
|
686
|
+
], GamePlayerPermissionRulesParam.prototype, "changePlayerStatistics", void 0);
|
|
687
|
+
__decorate([
|
|
688
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerStatistics, isOptional: true }),
|
|
689
|
+
__metadata("design:type", PermissionRulesParam)
|
|
690
|
+
], GamePlayerPermissionRulesParam.prototype, "getPlayerStatistics", void 0);
|
|
691
|
+
__decorate([
|
|
692
|
+
GNHashtableDataMember({ code: ParameterCode.GetStatisticsLeaderboard, isOptional: true }),
|
|
693
|
+
__metadata("design:type", PermissionRulesParam)
|
|
694
|
+
], GamePlayerPermissionRulesParam.prototype, "getStatisticsLeaderboard", void 0);
|
|
695
|
+
__decorate([
|
|
696
|
+
GNHashtableDataMember({ code: ParameterCode.GetStatisticsLeaderboardAroundPlayer, isOptional: true }),
|
|
697
|
+
__metadata("design:type", PermissionRulesParam)
|
|
698
|
+
], GamePlayerPermissionRulesParam.prototype, "getStatisticsLeaderboardAroundPlayer", void 0);
|
|
699
|
+
__decorate([
|
|
700
|
+
GNHashtableDataMember({ code: ParameterCode.GetCustomData, isOptional: true }),
|
|
701
|
+
__metadata("design:type", PermissionRulesParam)
|
|
702
|
+
], GamePlayerPermissionRulesParam.prototype, "getCustomData", void 0);
|
|
703
|
+
__decorate([
|
|
704
|
+
GNHashtableDataMember({ code: ParameterCode.SetCustomData, isOptional: true }),
|
|
705
|
+
__metadata("design:type", PermissionRulesParam)
|
|
706
|
+
], GamePlayerPermissionRulesParam.prototype, "setCustomData", void 0);
|
|
707
|
+
__decorate([
|
|
708
|
+
GNHashtableDataMember({ code: ParameterCode.SetPlayerData, isOptional: true }),
|
|
709
|
+
__metadata("design:type", PermissionRulesParam)
|
|
710
|
+
], GamePlayerPermissionRulesParam.prototype, "setPlayerData", void 0);
|
|
711
|
+
__decorate([
|
|
712
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerData, isOptional: true }),
|
|
713
|
+
__metadata("design:type", PermissionRulesParam)
|
|
714
|
+
], GamePlayerPermissionRulesParam.prototype, "getPlayerData", void 0);
|
|
715
|
+
__decorate([
|
|
716
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerInformation, isOptional: true }),
|
|
717
|
+
__metadata("design:type", PermissionRulesParam)
|
|
718
|
+
], GamePlayerPermissionRulesParam.prototype, "getPlayerInformation", void 0);
|
|
719
|
+
__decorate([
|
|
720
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayersWithSegment, isOptional: true }),
|
|
721
|
+
__metadata("design:type", PermissionRulesParam)
|
|
722
|
+
], GamePlayerPermissionRulesParam.prototype, "getPlayersWithSegment", void 0);
|
|
723
|
+
__decorate([
|
|
724
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayersWithTag, isOptional: true }),
|
|
725
|
+
__metadata("design:type", PermissionRulesParam)
|
|
726
|
+
], GamePlayerPermissionRulesParam.prototype, "getPlayersWithTag", void 0);
|
|
727
|
+
__decorate([
|
|
728
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerCharacter, isOptional: true }),
|
|
729
|
+
__metadata("design:type", PermissionRulesParam)
|
|
730
|
+
], GamePlayerPermissionRulesParam.prototype, "getPlayerCharacter", void 0);
|
|
731
|
+
__decorate([
|
|
732
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerInventory, isOptional: true }),
|
|
733
|
+
__metadata("design:type", PermissionRulesParam)
|
|
734
|
+
], GamePlayerPermissionRulesParam.prototype, "getPlayerInventory", void 0);
|
|
735
|
+
__decorate([
|
|
736
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerGroup, isOptional: true }),
|
|
737
|
+
__metadata("design:type", PermissionRulesParam)
|
|
738
|
+
], GamePlayerPermissionRulesParam.prototype, "getPlayerGroup", void 0);
|
|
739
|
+
__decorate([
|
|
740
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerFriend, isOptional: true }),
|
|
741
|
+
__metadata("design:type", PermissionRulesParam)
|
|
742
|
+
], GamePlayerPermissionRulesParam.prototype, "getPlayerFriend", void 0);
|
|
743
|
+
__decorate([
|
|
744
|
+
GNHashtableDataMember({ code: ParameterCode.RemovePlayerItem, isOptional: true }),
|
|
745
|
+
__metadata("design:type", PermissionRulesParam)
|
|
746
|
+
], GamePlayerPermissionRulesParam.prototype, "removePlayerItem", void 0);
|
|
747
|
+
__decorate([
|
|
748
|
+
GNHashtableDataMember({ code: ParameterCode.GetOnlineStatus, isOptional: true }),
|
|
749
|
+
__metadata("design:type", PermissionRulesParam)
|
|
750
|
+
], GamePlayerPermissionRulesParam.prototype, "getOnlineStatus", void 0);
|
|
751
|
+
__decorate([
|
|
752
|
+
GNHashtableDataMember({ code: ParameterCode.CreateGroup, isOptional: true }),
|
|
753
|
+
__metadata("design:type", PermissionRulesParam)
|
|
754
|
+
], GamePlayerPermissionRulesParam.prototype, "createGroup", void 0);
|
|
755
|
+
__decorate([
|
|
756
|
+
GNHashtableDataMember({ code: ParameterCode.CreatePlayerItem, isOptional: true }),
|
|
757
|
+
__metadata("design:type", PermissionRulesParam)
|
|
758
|
+
], GamePlayerPermissionRulesParam.prototype, "createPlayerItem", void 0);
|
|
759
|
+
__decorate([
|
|
760
|
+
GNHashtableDataMember({ code: ParameterCode.CreatePlayerCharacter, isOptional: true }),
|
|
761
|
+
__metadata("design:type", PermissionRulesParam)
|
|
762
|
+
], GamePlayerPermissionRulesParam.prototype, "createPlayerCharacter", void 0);
|
|
763
|
+
__decorate([
|
|
764
|
+
GNHashtableDataMember({ code: ParameterCode.AddPlayerFriend, isOptional: true }),
|
|
765
|
+
__metadata("design:type", PermissionRulesParam)
|
|
766
|
+
], GamePlayerPermissionRulesParam.prototype, "addPlayerFriend", void 0);
|
|
767
|
+
__decorate([
|
|
768
|
+
GNHashtableDataMember({ code: ParameterCode.RemovePlayerFriend, isOptional: true }),
|
|
769
|
+
__metadata("design:type", PermissionRulesParam)
|
|
770
|
+
], GamePlayerPermissionRulesParam.prototype, "removePlayerFriend", void 0);
|
|
771
|
+
__decorate([
|
|
772
|
+
GNHashtableDataMember({ code: ParameterCode.RemovePlayerCharacter, isOptional: true }),
|
|
773
|
+
__metadata("design:type", PermissionRulesParam)
|
|
774
|
+
], GamePlayerPermissionRulesParam.prototype, "removePlayerCharacter", void 0);
|
|
775
|
+
__decorate([
|
|
776
|
+
GNHashtableDataMember({ code: ParameterCode.JoinGroup, isOptional: true }),
|
|
777
|
+
__metadata("design:type", PermissionRulesParam)
|
|
778
|
+
], GamePlayerPermissionRulesParam.prototype, "joinGroup", void 0);
|
|
779
|
+
__decorate([
|
|
780
|
+
GNHashtableDataMember({ code: ParameterCode.LeaveGroup, isOptional: true }),
|
|
781
|
+
__metadata("design:type", PermissionRulesParam)
|
|
782
|
+
], GamePlayerPermissionRulesParam.prototype, "leaveGroup", void 0);
|
|
783
|
+
__decorate([
|
|
784
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayersWithDisplayName, isOptional: true }),
|
|
785
|
+
__metadata("design:type", PermissionRulesParam)
|
|
786
|
+
], GamePlayerPermissionRulesParam.prototype, "getPlayersWithDisplayName", void 0);
|
|
787
|
+
__decorate([
|
|
788
|
+
GNHashtableDataMember({ code: ParameterCode.GetFriendStatisticsLeaderboardAroundPlayer, isOptional: true }),
|
|
789
|
+
__metadata("design:type", PermissionRulesParam)
|
|
790
|
+
], GamePlayerPermissionRulesParam.prototype, "getFriendStatisticsLeaderboardAroundPlayer", void 0);
|
|
791
|
+
__decorate([
|
|
792
|
+
GNHashtableDataMember({ code: ParameterCode.GetFriendStatisticsLeaderboard, isOptional: true }),
|
|
793
|
+
__metadata("design:type", PermissionRulesParam)
|
|
794
|
+
], GamePlayerPermissionRulesParam.prototype, "getFriendStatisticsLeaderboard", void 0);
|
|
795
|
+
__decorate([
|
|
796
|
+
GNHashtableDataMember({ code: ParameterCode.GetCurrencyLeaderboard, isOptional: true }),
|
|
797
|
+
__metadata("design:type", PermissionRulesParam)
|
|
798
|
+
], GamePlayerPermissionRulesParam.prototype, "getCurrencyLeaderboard", void 0);
|
|
799
|
+
__decorate([
|
|
800
|
+
GNHashtableDataMember({ code: ParameterCode.GetCreateLeaderboard, isOptional: true }),
|
|
801
|
+
__metadata("design:type", PermissionRulesParam)
|
|
802
|
+
], GamePlayerPermissionRulesParam.prototype, "getCreateLeaderboard", void 0);
|
|
803
|
+
__decorate([
|
|
804
|
+
GNHashtableDataMember({ code: ParameterCode.GetLastLoginLeaderboard, isOptional: true }),
|
|
805
|
+
__metadata("design:type", PermissionRulesParam)
|
|
806
|
+
], GamePlayerPermissionRulesParam.prototype, "getLastLoginLeaderboard", void 0);
|
|
807
|
+
__decorate([
|
|
808
|
+
GNHashtableDataMember({ code: ParameterCode.GetStatisticsLog, isOptional: true }),
|
|
809
|
+
__metadata("design:type", PermissionRulesParam)
|
|
810
|
+
], GamePlayerPermissionRulesParam.prototype, "getStatisticsLog", void 0);
|
|
811
|
+
__decorate([
|
|
812
|
+
GNHashtableDataMember({ code: ParameterCode.GetCurrencyLog, isOptional: true }),
|
|
813
|
+
__metadata("design:type", PermissionRulesParam)
|
|
814
|
+
], GamePlayerPermissionRulesParam.prototype, "getCurrencyLog", void 0);
|
|
815
|
+
DashboardModels.GamePlayerPermissionRulesParam = GamePlayerPermissionRulesParam;
|
|
816
|
+
class GamePlayerSettingsParam {
|
|
817
|
+
}
|
|
818
|
+
__decorate([
|
|
819
|
+
GNArrayDataMember({ code: ParameterCode.PlayerCurrenciesSettings, elementCls: CurrencySettingsParam, isOptional: true }),
|
|
820
|
+
__metadata("design:type", Array)
|
|
821
|
+
], GamePlayerSettingsParam.prototype, "playerCurrenciesSettings", void 0);
|
|
822
|
+
__decorate([
|
|
823
|
+
GNArrayDataMember({ code: ParameterCode.PlayerStatisticsSettings, elementCls: StatisticsSettingsParam, isOptional: true }),
|
|
824
|
+
__metadata("design:type", Array)
|
|
825
|
+
], GamePlayerSettingsParam.prototype, "playerStatisticsSettings", void 0);
|
|
826
|
+
__decorate([
|
|
827
|
+
GNArrayDataMember({ code: ParameterCode.PlayerDatasSettings, elementCls: DataSettingsParam, isOptional: true }),
|
|
828
|
+
__metadata("design:type", Array)
|
|
829
|
+
], GamePlayerSettingsParam.prototype, "playerDatasSettings", void 0);
|
|
830
|
+
__decorate([
|
|
831
|
+
GNArrayDataMember({ code: ParameterCode.CustomDatasSettings, elementCls: DataSettingsParam, isOptional: true }),
|
|
832
|
+
__metadata("design:type", Array)
|
|
833
|
+
], GamePlayerSettingsParam.prototype, "customDatasSettings", void 0);
|
|
834
|
+
__decorate([
|
|
835
|
+
GNArrayDataMember({ code: ParameterCode.TagsSettings, elementCls: TagSettingsParam, isOptional: true }),
|
|
836
|
+
__metadata("design:type", Array)
|
|
837
|
+
], GamePlayerSettingsParam.prototype, "tagsSettings", void 0);
|
|
838
|
+
__decorate([
|
|
839
|
+
GNArrayDataMember({ code: ParameterCode.PlayerCharacterCatalogSettings, elementCls: CharacterCatalogSettingsParam, isOptional: true }),
|
|
840
|
+
__metadata("design:type", Array)
|
|
841
|
+
], GamePlayerSettingsParam.prototype, "playerCharacterCatalogSettings", void 0);
|
|
842
|
+
__decorate([
|
|
843
|
+
GNArrayDataMember({ code: ParameterCode.PlayerGroupCatalogSettings, elementCls: GroupCatalogSettingsParam, isOptional: true }),
|
|
844
|
+
__metadata("design:type", Array)
|
|
845
|
+
], GamePlayerSettingsParam.prototype, "playerGroupCatalogSettings", void 0);
|
|
846
|
+
__decorate([
|
|
847
|
+
GNArrayDataMember({ code: ParameterCode.PlayerItemCatalogSettings, elementCls: ItemCatalogSettingsParam, isOptional: true }),
|
|
848
|
+
__metadata("design:type", Array)
|
|
849
|
+
], GamePlayerSettingsParam.prototype, "playerItemCatalogSettings", void 0);
|
|
850
|
+
__decorate([
|
|
851
|
+
GNArrayDataMember({ code: ParameterCode.PlayerFriendCatalogSettings, elementCls: FriendCatalogSettingsParam, isOptional: true }),
|
|
852
|
+
__metadata("design:type", Array)
|
|
853
|
+
], GamePlayerSettingsParam.prototype, "playerFriendCatalogSettings", void 0);
|
|
854
|
+
DashboardModels.GamePlayerSettingsParam = GamePlayerSettingsParam;
|
|
855
|
+
class GroupSettingsParam {
|
|
856
|
+
}
|
|
857
|
+
__decorate([
|
|
858
|
+
GNArrayDataMember({ code: ParameterCode.GroupCurrenciesSettings, elementCls: CurrencySettingsParam, isOptional: true }),
|
|
859
|
+
__metadata("design:type", Array)
|
|
860
|
+
], GroupSettingsParam.prototype, "groupCurrenciesSettings", void 0);
|
|
861
|
+
__decorate([
|
|
862
|
+
GNArrayDataMember({ code: ParameterCode.GroupStatisticsSettings, elementCls: StatisticsSettingsParam, isOptional: true }),
|
|
863
|
+
__metadata("design:type", Array)
|
|
864
|
+
], GroupSettingsParam.prototype, "groupStatisticsSettings", void 0);
|
|
865
|
+
__decorate([
|
|
866
|
+
GNArrayDataMember({ code: ParameterCode.GroupDatasSettings, elementCls: DataSettingsParam, isOptional: true }),
|
|
867
|
+
__metadata("design:type", Array)
|
|
868
|
+
], GroupSettingsParam.prototype, "groupDatasSettings", void 0);
|
|
869
|
+
__decorate([
|
|
870
|
+
GNArrayDataMember({ code: ParameterCode.CustomDatasSettings, elementCls: DataSettingsParam, isOptional: true }),
|
|
871
|
+
__metadata("design:type", Array)
|
|
872
|
+
], GroupSettingsParam.prototype, "customDatasSettings", void 0);
|
|
873
|
+
__decorate([
|
|
874
|
+
GNArrayDataMember({ code: ParameterCode.TagsSettings, elementCls: TagSettingsParam, isOptional: true }),
|
|
875
|
+
__metadata("design:type", Array)
|
|
876
|
+
], GroupSettingsParam.prototype, "tagsSettings", void 0);
|
|
877
|
+
__decorate([
|
|
878
|
+
GNArrayDataMember({ code: ParameterCode.GroupItemCatalogSettings, elementCls: ItemCatalogSettingsParam, isOptional: true }),
|
|
879
|
+
__metadata("design:type", Array)
|
|
880
|
+
], GroupSettingsParam.prototype, "groupItemCatalogSettings", void 0);
|
|
881
|
+
DashboardModels.GroupSettingsParam = GroupSettingsParam;
|
|
882
|
+
class InventorySettingsParam {
|
|
883
|
+
}
|
|
884
|
+
__decorate([
|
|
885
|
+
GNArrayDataMember({ code: ParameterCode.ItemStatisticsSettings, elementCls: StatisticsSettingsParam, isOptional: true }),
|
|
886
|
+
__metadata("design:type", Array)
|
|
887
|
+
], InventorySettingsParam.prototype, "itemStatisticsSettings", void 0);
|
|
888
|
+
__decorate([
|
|
889
|
+
GNArrayDataMember({ code: ParameterCode.ItemDatasSettings, elementCls: DataSettingsParam, isOptional: true }),
|
|
890
|
+
__metadata("design:type", Array)
|
|
891
|
+
], InventorySettingsParam.prototype, "itemDatasSettings", void 0);
|
|
892
|
+
__decorate([
|
|
893
|
+
GNArrayDataMember({ code: ParameterCode.CustomDatasSettings, elementCls: DataSettingsParam, isOptional: true }),
|
|
894
|
+
__metadata("design:type", Array)
|
|
895
|
+
], InventorySettingsParam.prototype, "customDatasSettings", void 0);
|
|
896
|
+
__decorate([
|
|
897
|
+
GNArrayDataMember({ code: ParameterCode.TagsSettings, elementCls: TagSettingsParam, isOptional: true }),
|
|
898
|
+
__metadata("design:type", Array)
|
|
899
|
+
], InventorySettingsParam.prototype, "tagsSettings", void 0);
|
|
900
|
+
DashboardModels.InventorySettingsParam = InventorySettingsParam;
|
|
901
|
+
class GameSettingsParam {
|
|
902
|
+
}
|
|
903
|
+
__decorate([
|
|
904
|
+
GNHashtableDataMember({ code: ParameterCode.GamePlayerSettings, isOptional: true }),
|
|
905
|
+
__metadata("design:type", GamePlayerSettingsParam)
|
|
906
|
+
], GameSettingsParam.prototype, "gamePlayerSettings", void 0);
|
|
907
|
+
__decorate([
|
|
908
|
+
GNHashtableDataMember({ code: ParameterCode.CharacterPlayerSettings, isOptional: true }),
|
|
909
|
+
__metadata("design:type", CharacterPlayerSettingsParam)
|
|
910
|
+
], GameSettingsParam.prototype, "characterPlayerSettings", void 0);
|
|
911
|
+
__decorate([
|
|
912
|
+
GNHashtableDataMember({ code: ParameterCode.GroupSettings, isOptional: true }),
|
|
913
|
+
__metadata("design:type", GroupSettingsParam)
|
|
914
|
+
], GameSettingsParam.prototype, "groupSettings", void 0);
|
|
915
|
+
__decorate([
|
|
916
|
+
GNHashtableDataMember({ code: ParameterCode.InventorySettings, isOptional: true }),
|
|
917
|
+
__metadata("design:type", InventorySettingsParam)
|
|
918
|
+
], GameSettingsParam.prototype, "inventorySettings", void 0);
|
|
919
|
+
DashboardModels.GameSettingsParam = GameSettingsParam;
|
|
920
|
+
class GenericServiceSettingsParam {
|
|
921
|
+
}
|
|
922
|
+
__decorate([
|
|
923
|
+
StringDataMember({ code: ParameterCode.ServiceName, minLength: 2, maxLength: 32 }),
|
|
924
|
+
__metadata("design:type", String)
|
|
925
|
+
], GenericServiceSettingsParam.prototype, "serviceName", void 0);
|
|
926
|
+
DashboardModels.GenericServiceSettingsParam = GenericServiceSettingsParam;
|
|
927
|
+
class GroupPermissionRulesParam {
|
|
928
|
+
}
|
|
929
|
+
__decorate([
|
|
930
|
+
GNHashtableDataMember({ code: ParameterCode.AddSegment, isOptional: true }),
|
|
931
|
+
__metadata("design:type", PermissionRulesParam)
|
|
932
|
+
], GroupPermissionRulesParam.prototype, "addSegment", void 0);
|
|
933
|
+
__decorate([
|
|
934
|
+
GNHashtableDataMember({ code: ParameterCode.RemoveSegment, isOptional: true }),
|
|
935
|
+
__metadata("design:type", PermissionRulesParam)
|
|
936
|
+
], GroupPermissionRulesParam.prototype, "removeSegment", void 0);
|
|
937
|
+
__decorate([
|
|
938
|
+
GNHashtableDataMember({ code: ParameterCode.GetSegment, isOptional: true }),
|
|
939
|
+
__metadata("design:type", PermissionRulesParam)
|
|
940
|
+
], GroupPermissionRulesParam.prototype, "getSegment", void 0);
|
|
941
|
+
__decorate([
|
|
942
|
+
GNHashtableDataMember({ code: ParameterCode.SetTag, isOptional: true }),
|
|
943
|
+
__metadata("design:type", PermissionRulesParam)
|
|
944
|
+
], GroupPermissionRulesParam.prototype, "setTag", void 0);
|
|
945
|
+
__decorate([
|
|
946
|
+
GNHashtableDataMember({ code: ParameterCode.RemoveTag, isOptional: true }),
|
|
947
|
+
__metadata("design:type", PermissionRulesParam)
|
|
948
|
+
], GroupPermissionRulesParam.prototype, "removeTag", void 0);
|
|
949
|
+
__decorate([
|
|
950
|
+
GNHashtableDataMember({ code: ParameterCode.GetTag, isOptional: true }),
|
|
951
|
+
__metadata("design:type", PermissionRulesParam)
|
|
952
|
+
], GroupPermissionRulesParam.prototype, "getTag", void 0);
|
|
953
|
+
__decorate([
|
|
954
|
+
GNHashtableDataMember({ code: ParameterCode.GetDisplayName, isOptional: true }),
|
|
955
|
+
__metadata("design:type", PermissionRulesParam)
|
|
956
|
+
], GroupPermissionRulesParam.prototype, "getDisplayName", void 0);
|
|
957
|
+
__decorate([
|
|
958
|
+
GNHashtableDataMember({ code: ParameterCode.SetDisplayName, isOptional: true }),
|
|
959
|
+
__metadata("design:type", PermissionRulesParam)
|
|
960
|
+
], GroupPermissionRulesParam.prototype, "setDisplayName", void 0);
|
|
961
|
+
__decorate([
|
|
962
|
+
GNHashtableDataMember({ code: ParameterCode.GetTsCreate, isOptional: true }),
|
|
963
|
+
__metadata("design:type", PermissionRulesParam)
|
|
964
|
+
], GroupPermissionRulesParam.prototype, "getTsCreate", void 0);
|
|
965
|
+
__decorate([
|
|
966
|
+
GNHashtableDataMember({ code: ParameterCode.SetAvatar, isOptional: true }),
|
|
967
|
+
__metadata("design:type", PermissionRulesParam)
|
|
968
|
+
], GroupPermissionRulesParam.prototype, "setAvatar", void 0);
|
|
969
|
+
__decorate([
|
|
970
|
+
GNHashtableDataMember({ code: ParameterCode.GetAvatar, isOptional: true }),
|
|
971
|
+
__metadata("design:type", PermissionRulesParam)
|
|
972
|
+
], GroupPermissionRulesParam.prototype, "getAvatar", void 0);
|
|
973
|
+
__decorate([
|
|
974
|
+
GNHashtableDataMember({ code: ParameterCode.ChangeGroupCurrency, isOptional: true }),
|
|
975
|
+
__metadata("design:type", PermissionRulesParam)
|
|
976
|
+
], GroupPermissionRulesParam.prototype, "changeGroupCurrency", void 0);
|
|
977
|
+
__decorate([
|
|
978
|
+
GNHashtableDataMember({ code: ParameterCode.GetGroupCurrency, isOptional: true }),
|
|
979
|
+
__metadata("design:type", PermissionRulesParam)
|
|
980
|
+
], GroupPermissionRulesParam.prototype, "getGroupCurrency", void 0);
|
|
981
|
+
__decorate([
|
|
982
|
+
GNHashtableDataMember({ code: ParameterCode.ChangeGroupStatistics, isOptional: true }),
|
|
983
|
+
__metadata("design:type", PermissionRulesParam)
|
|
984
|
+
], GroupPermissionRulesParam.prototype, "changeGroupStatistics", void 0);
|
|
985
|
+
__decorate([
|
|
986
|
+
GNHashtableDataMember({ code: ParameterCode.GetGroupStatistics, isOptional: true }),
|
|
987
|
+
__metadata("design:type", PermissionRulesParam)
|
|
988
|
+
], GroupPermissionRulesParam.prototype, "getGroupStatistics", void 0);
|
|
989
|
+
__decorate([
|
|
990
|
+
GNHashtableDataMember({ code: ParameterCode.GetStatisticsLeaderboard, isOptional: true }),
|
|
991
|
+
__metadata("design:type", PermissionRulesParam)
|
|
992
|
+
], GroupPermissionRulesParam.prototype, "getStatisticsLeaderboard", void 0);
|
|
993
|
+
__decorate([
|
|
994
|
+
GNHashtableDataMember({ code: ParameterCode.GetStatisticsLeaderboardAroundGroup, isOptional: true }),
|
|
995
|
+
__metadata("design:type", PermissionRulesParam)
|
|
996
|
+
], GroupPermissionRulesParam.prototype, "getStatisticsLeaderboardAroundGroup", void 0);
|
|
997
|
+
__decorate([
|
|
998
|
+
GNHashtableDataMember({ code: ParameterCode.GetCustomData, isOptional: true }),
|
|
999
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1000
|
+
], GroupPermissionRulesParam.prototype, "getCustomData", void 0);
|
|
1001
|
+
__decorate([
|
|
1002
|
+
GNHashtableDataMember({ code: ParameterCode.SetCustomData, isOptional: true }),
|
|
1003
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1004
|
+
], GroupPermissionRulesParam.prototype, "setCustomData", void 0);
|
|
1005
|
+
__decorate([
|
|
1006
|
+
GNHashtableDataMember({ code: ParameterCode.SetGroupData, isOptional: true }),
|
|
1007
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1008
|
+
], GroupPermissionRulesParam.prototype, "setGroupData", void 0);
|
|
1009
|
+
__decorate([
|
|
1010
|
+
GNHashtableDataMember({ code: ParameterCode.GetGroupData, isOptional: true }),
|
|
1011
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1012
|
+
], GroupPermissionRulesParam.prototype, "getGroupData", void 0);
|
|
1013
|
+
__decorate([
|
|
1014
|
+
GNHashtableDataMember({ code: ParameterCode.GetGroupInformation, isOptional: true }),
|
|
1015
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1016
|
+
], GroupPermissionRulesParam.prototype, "getGroupInformation", void 0);
|
|
1017
|
+
__decorate([
|
|
1018
|
+
GNHashtableDataMember({ code: ParameterCode.GetGroupsWithSegment, isOptional: true }),
|
|
1019
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1020
|
+
], GroupPermissionRulesParam.prototype, "getGroupsWithSegment", void 0);
|
|
1021
|
+
__decorate([
|
|
1022
|
+
GNHashtableDataMember({ code: ParameterCode.GetGroupsWithTag, isOptional: true }),
|
|
1023
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1024
|
+
], GroupPermissionRulesParam.prototype, "getGroupsWithTag", void 0);
|
|
1025
|
+
__decorate([
|
|
1026
|
+
GNHashtableDataMember({ code: ParameterCode.GetCatalogId, isOptional: true }),
|
|
1027
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1028
|
+
], GroupPermissionRulesParam.prototype, "getCatalogId", void 0);
|
|
1029
|
+
__decorate([
|
|
1030
|
+
GNHashtableDataMember({ code: ParameterCode.GetRemoveStatus, isOptional: true }),
|
|
1031
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1032
|
+
], GroupPermissionRulesParam.prototype, "getRemoveStatus", void 0);
|
|
1033
|
+
__decorate([
|
|
1034
|
+
GNHashtableDataMember({ code: ParameterCode.GetGroupInventory, isOptional: true }),
|
|
1035
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1036
|
+
], GroupPermissionRulesParam.prototype, "getGroupInventory", void 0);
|
|
1037
|
+
__decorate([
|
|
1038
|
+
GNHashtableDataMember({ code: ParameterCode.RemoveGroupItem, isOptional: true }),
|
|
1039
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1040
|
+
], GroupPermissionRulesParam.prototype, "removeGroupItem", void 0);
|
|
1041
|
+
__decorate([
|
|
1042
|
+
GNHashtableDataMember({ code: ParameterCode.CreateGroupItem, isOptional: true }),
|
|
1043
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1044
|
+
], GroupPermissionRulesParam.prototype, "createGroupItem", void 0);
|
|
1045
|
+
__decorate([
|
|
1046
|
+
GNHashtableDataMember({ code: ParameterCode.GetMembers, isOptional: true }),
|
|
1047
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1048
|
+
], GroupPermissionRulesParam.prototype, "getMembers", void 0);
|
|
1049
|
+
__decorate([
|
|
1050
|
+
GNHashtableDataMember({ code: ParameterCode.AddMember, isOptional: true }),
|
|
1051
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1052
|
+
], GroupPermissionRulesParam.prototype, "addMember", void 0);
|
|
1053
|
+
__decorate([
|
|
1054
|
+
GNHashtableDataMember({ code: ParameterCode.RemoveMember, isOptional: true }),
|
|
1055
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1056
|
+
], GroupPermissionRulesParam.prototype, "removeMember", void 0);
|
|
1057
|
+
__decorate([
|
|
1058
|
+
GNHashtableDataMember({ code: ParameterCode.SendGroupMessage, isOptional: true }),
|
|
1059
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1060
|
+
], GroupPermissionRulesParam.prototype, "sendGroupMessage", void 0);
|
|
1061
|
+
__decorate([
|
|
1062
|
+
GNHashtableDataMember({ code: ParameterCode.GetGroupMessage, isOptional: true }),
|
|
1063
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1064
|
+
], GroupPermissionRulesParam.prototype, "getGroupMessage", void 0);
|
|
1065
|
+
__decorate([
|
|
1066
|
+
GNHashtableDataMember({ code: ParameterCode.SetRemoveStatus, isOptional: true }),
|
|
1067
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1068
|
+
], GroupPermissionRulesParam.prototype, "setRemoveStatus", void 0);
|
|
1069
|
+
__decorate([
|
|
1070
|
+
GNHashtableDataMember({ code: ParameterCode.GetGroupsWithDisplayName, isOptional: true }),
|
|
1071
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1072
|
+
], GroupPermissionRulesParam.prototype, "getGroupsWithDisplayName", void 0);
|
|
1073
|
+
__decorate([
|
|
1074
|
+
GNHashtableDataMember({ code: ParameterCode.GetCurrencyLeaderboard, isOptional: true }),
|
|
1075
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1076
|
+
], GroupPermissionRulesParam.prototype, "getCurrencyLeaderboard", void 0);
|
|
1077
|
+
__decorate([
|
|
1078
|
+
GNHashtableDataMember({ code: ParameterCode.GetCreateLeaderboard, isOptional: true }),
|
|
1079
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1080
|
+
], GroupPermissionRulesParam.prototype, "getCreateLeaderboard", void 0);
|
|
1081
|
+
__decorate([
|
|
1082
|
+
GNHashtableDataMember({ code: ParameterCode.GetStatisticsLog, isOptional: true }),
|
|
1083
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1084
|
+
], GroupPermissionRulesParam.prototype, "getStatisticsLog", void 0);
|
|
1085
|
+
__decorate([
|
|
1086
|
+
GNHashtableDataMember({ code: ParameterCode.GetCurrencyLog, isOptional: true }),
|
|
1087
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1088
|
+
], GroupPermissionRulesParam.prototype, "getCurrencyLog", void 0);
|
|
1089
|
+
DashboardModels.GroupPermissionRulesParam = GroupPermissionRulesParam;
|
|
1090
|
+
class InventoryPermissionRulesParam {
|
|
1091
|
+
}
|
|
1092
|
+
__decorate([
|
|
1093
|
+
GNHashtableDataMember({ code: ParameterCode.AddSegment, isOptional: true }),
|
|
1094
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1095
|
+
], InventoryPermissionRulesParam.prototype, "addSegment", void 0);
|
|
1096
|
+
__decorate([
|
|
1097
|
+
GNHashtableDataMember({ code: ParameterCode.RemoveSegment, isOptional: true }),
|
|
1098
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1099
|
+
], InventoryPermissionRulesParam.prototype, "removeSegment", void 0);
|
|
1100
|
+
__decorate([
|
|
1101
|
+
GNHashtableDataMember({ code: ParameterCode.GetSegment, isOptional: true }),
|
|
1102
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1103
|
+
], InventoryPermissionRulesParam.prototype, "getSegment", void 0);
|
|
1104
|
+
__decorate([
|
|
1105
|
+
GNHashtableDataMember({ code: ParameterCode.SetTag, isOptional: true }),
|
|
1106
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1107
|
+
], InventoryPermissionRulesParam.prototype, "setTag", void 0);
|
|
1108
|
+
__decorate([
|
|
1109
|
+
GNHashtableDataMember({ code: ParameterCode.RemoveTag, isOptional: true }),
|
|
1110
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1111
|
+
], InventoryPermissionRulesParam.prototype, "removeTag", void 0);
|
|
1112
|
+
__decorate([
|
|
1113
|
+
GNHashtableDataMember({ code: ParameterCode.GetTag, isOptional: true }),
|
|
1114
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1115
|
+
], InventoryPermissionRulesParam.prototype, "getTag", void 0);
|
|
1116
|
+
__decorate([
|
|
1117
|
+
GNHashtableDataMember({ code: ParameterCode.GetDisplayName, isOptional: true }),
|
|
1118
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1119
|
+
], InventoryPermissionRulesParam.prototype, "getDisplayName", void 0);
|
|
1120
|
+
__decorate([
|
|
1121
|
+
GNHashtableDataMember({ code: ParameterCode.SetDisplayName, isOptional: true }),
|
|
1122
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1123
|
+
], InventoryPermissionRulesParam.prototype, "setDisplayName", void 0);
|
|
1124
|
+
__decorate([
|
|
1125
|
+
GNHashtableDataMember({ code: ParameterCode.GetTsCreate, isOptional: true }),
|
|
1126
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1127
|
+
], InventoryPermissionRulesParam.prototype, "getTsCreate", void 0);
|
|
1128
|
+
__decorate([
|
|
1129
|
+
GNHashtableDataMember({ code: ParameterCode.SetAvatar, isOptional: true }),
|
|
1130
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1131
|
+
], InventoryPermissionRulesParam.prototype, "setAvatar", void 0);
|
|
1132
|
+
__decorate([
|
|
1133
|
+
GNHashtableDataMember({ code: ParameterCode.GetAvatar, isOptional: true }),
|
|
1134
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1135
|
+
], InventoryPermissionRulesParam.prototype, "getAvatar", void 0);
|
|
1136
|
+
__decorate([
|
|
1137
|
+
GNHashtableDataMember({ code: ParameterCode.ChangeItemStatistics, isOptional: true }),
|
|
1138
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1139
|
+
], InventoryPermissionRulesParam.prototype, "changeItemStatistics", void 0);
|
|
1140
|
+
__decorate([
|
|
1141
|
+
GNHashtableDataMember({ code: ParameterCode.GetItemStatistics, isOptional: true }),
|
|
1142
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1143
|
+
], InventoryPermissionRulesParam.prototype, "getItemStatistics", void 0);
|
|
1144
|
+
__decorate([
|
|
1145
|
+
GNHashtableDataMember({ code: ParameterCode.GetStatisticsLeaderboard, isOptional: true }),
|
|
1146
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1147
|
+
], InventoryPermissionRulesParam.prototype, "getStatisticsLeaderboard", void 0);
|
|
1148
|
+
__decorate([
|
|
1149
|
+
GNHashtableDataMember({ code: ParameterCode.GetStatisticsLeaderboardAroundItem, isOptional: true }),
|
|
1150
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1151
|
+
], InventoryPermissionRulesParam.prototype, "getStatisticsLeaderboardAroundItem", void 0);
|
|
1152
|
+
__decorate([
|
|
1153
|
+
GNHashtableDataMember({ code: ParameterCode.GetCustomData, isOptional: true }),
|
|
1154
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1155
|
+
], InventoryPermissionRulesParam.prototype, "getCustomData", void 0);
|
|
1156
|
+
__decorate([
|
|
1157
|
+
GNHashtableDataMember({ code: ParameterCode.SetCustomData, isOptional: true }),
|
|
1158
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1159
|
+
], InventoryPermissionRulesParam.prototype, "setCustomData", void 0);
|
|
1160
|
+
__decorate([
|
|
1161
|
+
GNHashtableDataMember({ code: ParameterCode.SetItemData, isOptional: true }),
|
|
1162
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1163
|
+
], InventoryPermissionRulesParam.prototype, "setItemData", void 0);
|
|
1164
|
+
__decorate([
|
|
1165
|
+
GNHashtableDataMember({ code: ParameterCode.GetItemData, isOptional: true }),
|
|
1166
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1167
|
+
], InventoryPermissionRulesParam.prototype, "getItemData", void 0);
|
|
1168
|
+
__decorate([
|
|
1169
|
+
GNHashtableDataMember({ code: ParameterCode.GetItemInformation, isOptional: true }),
|
|
1170
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1171
|
+
], InventoryPermissionRulesParam.prototype, "getItemInformation", void 0);
|
|
1172
|
+
__decorate([
|
|
1173
|
+
GNHashtableDataMember({ code: ParameterCode.GetItemsWithSegment, isOptional: true }),
|
|
1174
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1175
|
+
], InventoryPermissionRulesParam.prototype, "getItemsWithSegment", void 0);
|
|
1176
|
+
__decorate([
|
|
1177
|
+
GNHashtableDataMember({ code: ParameterCode.GetItemsWithTag, isOptional: true }),
|
|
1178
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1179
|
+
], InventoryPermissionRulesParam.prototype, "getItemsWithTag", void 0);
|
|
1180
|
+
__decorate([
|
|
1181
|
+
GNHashtableDataMember({ code: ParameterCode.GetCatalogId, isOptional: true }),
|
|
1182
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1183
|
+
], InventoryPermissionRulesParam.prototype, "getCatalogId", void 0);
|
|
1184
|
+
__decorate([
|
|
1185
|
+
GNHashtableDataMember({ code: ParameterCode.GetClassId, isOptional: true }),
|
|
1186
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1187
|
+
], InventoryPermissionRulesParam.prototype, "getClassId", void 0);
|
|
1188
|
+
__decorate([
|
|
1189
|
+
GNHashtableDataMember({ code: ParameterCode.GetItemType, isOptional: true }),
|
|
1190
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1191
|
+
], InventoryPermissionRulesParam.prototype, "getItemType", void 0);
|
|
1192
|
+
__decorate([
|
|
1193
|
+
GNHashtableDataMember({ code: ParameterCode.GetAmount, isOptional: true }),
|
|
1194
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1195
|
+
], InventoryPermissionRulesParam.prototype, "getAmount", void 0);
|
|
1196
|
+
__decorate([
|
|
1197
|
+
GNHashtableDataMember({ code: ParameterCode.GetOwner, isOptional: true }),
|
|
1198
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1199
|
+
], InventoryPermissionRulesParam.prototype, "getOwner", void 0);
|
|
1200
|
+
__decorate([
|
|
1201
|
+
GNHashtableDataMember({ code: ParameterCode.GetRemoveStatus, isOptional: true }),
|
|
1202
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1203
|
+
], InventoryPermissionRulesParam.prototype, "getRemoveStatus", void 0);
|
|
1204
|
+
__decorate([
|
|
1205
|
+
GNHashtableDataMember({ code: ParameterCode.SetAmount, isOptional: true }),
|
|
1206
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1207
|
+
], InventoryPermissionRulesParam.prototype, "setAmount", void 0);
|
|
1208
|
+
__decorate([
|
|
1209
|
+
GNHashtableDataMember({ code: ParameterCode.SetOwner, isOptional: true }),
|
|
1210
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1211
|
+
], InventoryPermissionRulesParam.prototype, "setOwner", void 0);
|
|
1212
|
+
__decorate([
|
|
1213
|
+
GNHashtableDataMember({ code: ParameterCode.SetRemoveStatus, isOptional: true }),
|
|
1214
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1215
|
+
], InventoryPermissionRulesParam.prototype, "setRemoveStatus", void 0);
|
|
1216
|
+
__decorate([
|
|
1217
|
+
GNHashtableDataMember({ code: ParameterCode.GetItemsWithDisplayName, isOptional: true }),
|
|
1218
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1219
|
+
], InventoryPermissionRulesParam.prototype, "getItemsWithDisplayName", void 0);
|
|
1220
|
+
__decorate([
|
|
1221
|
+
GNHashtableDataMember({ code: ParameterCode.GetCreateLeaderboard, isOptional: true }),
|
|
1222
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1223
|
+
], InventoryPermissionRulesParam.prototype, "getCreateLeaderboard", void 0);
|
|
1224
|
+
__decorate([
|
|
1225
|
+
GNHashtableDataMember({ code: ParameterCode.GetStatisticsLog, isOptional: true }),
|
|
1226
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1227
|
+
], InventoryPermissionRulesParam.prototype, "getStatisticsLog", void 0);
|
|
1228
|
+
DashboardModels.InventoryPermissionRulesParam = InventoryPermissionRulesParam;
|
|
1229
|
+
class MasterAdminPermissionRulesParam {
|
|
1230
|
+
}
|
|
1231
|
+
__decorate([
|
|
1232
|
+
GNHashtableDataMember({ code: ParameterCode.SetMasterGameSettings, isOptional: true }),
|
|
1233
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1234
|
+
], MasterAdminPermissionRulesParam.prototype, "setMasterGameSettings", void 0);
|
|
1235
|
+
__decorate([
|
|
1236
|
+
GNHashtableDataMember({ code: ParameterCode.CreateAdminAccount, isOptional: true }),
|
|
1237
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1238
|
+
], MasterAdminPermissionRulesParam.prototype, "createAdminAccount", void 0);
|
|
1239
|
+
__decorate([
|
|
1240
|
+
GNHashtableDataMember({ code: ParameterCode.RemoveAdminAccount, isOptional: true }),
|
|
1241
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1242
|
+
], MasterAdminPermissionRulesParam.prototype, "removeAdminAccount", void 0);
|
|
1243
|
+
__decorate([
|
|
1244
|
+
GNHashtableDataMember({ code: ParameterCode.SetPasswordAdminAccount, isOptional: true }),
|
|
1245
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1246
|
+
], MasterAdminPermissionRulesParam.prototype, "setPasswordAdminAccount", void 0);
|
|
1247
|
+
__decorate([
|
|
1248
|
+
GNHashtableDataMember({ code: ParameterCode.SetSecretKeyAdminAccount, isOptional: true }),
|
|
1249
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1250
|
+
], MasterAdminPermissionRulesParam.prototype, "setSecretKeyAdminAccount", void 0);
|
|
1251
|
+
__decorate([
|
|
1252
|
+
GNHashtableDataMember({ code: ParameterCode.SetGameInformation, isOptional: true }),
|
|
1253
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1254
|
+
], MasterAdminPermissionRulesParam.prototype, "setGameInformation", void 0);
|
|
1255
|
+
__decorate([
|
|
1256
|
+
GNHashtableDataMember({ code: ParameterCode.CreateGame, isOptional: true }),
|
|
1257
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1258
|
+
], MasterAdminPermissionRulesParam.prototype, "createGame", void 0);
|
|
1259
|
+
__decorate([
|
|
1260
|
+
GNHashtableDataMember({ code: ParameterCode.ChangePasswordAdminAccount, isOptional: true }),
|
|
1261
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1262
|
+
], MasterAdminPermissionRulesParam.prototype, "changePasswordAdminAccount", void 0);
|
|
1263
|
+
__decorate([
|
|
1264
|
+
GNHashtableDataMember({ code: ParameterCode.GetAdminAccountList, isOptional: true }),
|
|
1265
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1266
|
+
], MasterAdminPermissionRulesParam.prototype, "getAdminAccountList", void 0);
|
|
1267
|
+
__decorate([
|
|
1268
|
+
GNHashtableDataMember({ code: ParameterCode.GetGameInformation, isOptional: true }),
|
|
1269
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1270
|
+
], MasterAdminPermissionRulesParam.prototype, "getGameInformation", void 0);
|
|
1271
|
+
__decorate([
|
|
1272
|
+
GNHashtableDataMember({ code: ParameterCode.GetGameList, isOptional: true }),
|
|
1273
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1274
|
+
], MasterAdminPermissionRulesParam.prototype, "getGameList", void 0);
|
|
1275
|
+
__decorate([
|
|
1276
|
+
GNHashtableDataMember({ code: ParameterCode.GetMasterGameSettings, isOptional: true }),
|
|
1277
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1278
|
+
], MasterAdminPermissionRulesParam.prototype, "getMasterGameSettings", void 0);
|
|
1279
|
+
__decorate([
|
|
1280
|
+
GNHashtableDataMember({ code: ParameterCode.GetServerLog, isOptional: true }),
|
|
1281
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1282
|
+
], MasterAdminPermissionRulesParam.prototype, "getServerLog", void 0);
|
|
1283
|
+
__decorate([
|
|
1284
|
+
GNHashtableDataMember({ code: ParameterCode.GetSecretInfoInformation, isOptional: true }),
|
|
1285
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1286
|
+
], MasterAdminPermissionRulesParam.prototype, "getSecretInfoInformation", void 0);
|
|
1287
|
+
__decorate([
|
|
1288
|
+
GNHashtableDataMember({ code: ParameterCode.GetSecretInfoList, isOptional: true }),
|
|
1289
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1290
|
+
], MasterAdminPermissionRulesParam.prototype, "getSecretInfoList", void 0);
|
|
1291
|
+
__decorate([
|
|
1292
|
+
GNHashtableDataMember({ code: ParameterCode.CreateSecretInfo, isOptional: true }),
|
|
1293
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1294
|
+
], MasterAdminPermissionRulesParam.prototype, "createSecretInfo", void 0);
|
|
1295
|
+
__decorate([
|
|
1296
|
+
GNHashtableDataMember({ code: ParameterCode.SetSecretInfoInformation, isOptional: true }),
|
|
1297
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1298
|
+
], MasterAdminPermissionRulesParam.prototype, "setSecretInfoInformation", void 0);
|
|
1299
|
+
__decorate([
|
|
1300
|
+
GNHashtableDataMember({ code: ParameterCode.GetUsernameAdminAccount, isOptional: true }),
|
|
1301
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1302
|
+
], MasterAdminPermissionRulesParam.prototype, "getUsernameAdminAccount", void 0);
|
|
1303
|
+
__decorate([
|
|
1304
|
+
GNHashtableDataMember({ code: ParameterCode.GetAnalytics, isOptional: true }),
|
|
1305
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1306
|
+
], MasterAdminPermissionRulesParam.prototype, "getAnalytics", void 0);
|
|
1307
|
+
__decorate([
|
|
1308
|
+
GNHashtableDataMember({ code: ParameterCode.GetEventCallbackCloudScript, isOptional: true }),
|
|
1309
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1310
|
+
], MasterAdminPermissionRulesParam.prototype, "getEventCallbackCloudScript", void 0);
|
|
1311
|
+
__decorate([
|
|
1312
|
+
GNHashtableDataMember({ code: ParameterCode.SetEventCallbackCloudScript, isOptional: true }),
|
|
1313
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1314
|
+
], MasterAdminPermissionRulesParam.prototype, "setEventCallbackCloudScript", void 0);
|
|
1315
|
+
__decorate([
|
|
1316
|
+
GNHashtableDataMember({ code: ParameterCode.ResetStatisticsLeaderboard, isOptional: true }),
|
|
1317
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1318
|
+
], MasterAdminPermissionRulesParam.prototype, "resetStatisticsLeaderboard", void 0);
|
|
1319
|
+
__decorate([
|
|
1320
|
+
GNHashtableDataMember({ code: ParameterCode.GetBackupStatisticsLeaderboardVersion, isOptional: true }),
|
|
1321
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1322
|
+
], MasterAdminPermissionRulesParam.prototype, "getBackupStatisticsLeaderboardVersion", void 0);
|
|
1323
|
+
__decorate([
|
|
1324
|
+
GNHashtableDataMember({ code: ParameterCode.GetServerGameData, isOptional: true }),
|
|
1325
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1326
|
+
], MasterAdminPermissionRulesParam.prototype, "getServerGameData", void 0);
|
|
1327
|
+
__decorate([
|
|
1328
|
+
GNHashtableDataMember({ code: ParameterCode.DeleteInDatabase, isOptional: true }),
|
|
1329
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1330
|
+
], MasterAdminPermissionRulesParam.prototype, "deleteInDatabase", void 0);
|
|
1331
|
+
DashboardModels.MasterAdminPermissionRulesParam = MasterAdminPermissionRulesParam;
|
|
1332
|
+
class MultiplayerPermissionRulesParam {
|
|
1333
|
+
}
|
|
1334
|
+
__decorate([
|
|
1335
|
+
GNHashtableDataMember({ code: ParameterCode.CancelAllMatchmakingTicket, isOptional: true }),
|
|
1336
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1337
|
+
], MultiplayerPermissionRulesParam.prototype, "cancelAllMatchmakingTicket", void 0);
|
|
1338
|
+
__decorate([
|
|
1339
|
+
GNHashtableDataMember({ code: ParameterCode.CancelMatchmakingTicket, isOptional: true }),
|
|
1340
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1341
|
+
], MultiplayerPermissionRulesParam.prototype, "cancelMatchmakingTicket", void 0);
|
|
1342
|
+
__decorate([
|
|
1343
|
+
GNHashtableDataMember({ code: ParameterCode.CreateMatchmakingTicket, isOptional: true }),
|
|
1344
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1345
|
+
], MultiplayerPermissionRulesParam.prototype, "createMatchmakingTicket", void 0);
|
|
1346
|
+
__decorate([
|
|
1347
|
+
GNHashtableDataMember({ code: ParameterCode.GetMatchmakingTicket, isOptional: true }),
|
|
1348
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1349
|
+
], MultiplayerPermissionRulesParam.prototype, "getMatchmakingTicket", void 0);
|
|
1350
|
+
__decorate([
|
|
1351
|
+
GNHashtableDataMember({ code: ParameterCode.GetMatch, isOptional: true }),
|
|
1352
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1353
|
+
], MultiplayerPermissionRulesParam.prototype, "getMatch", void 0);
|
|
1354
|
+
__decorate([
|
|
1355
|
+
GNHashtableDataMember({ code: ParameterCode.GetQueueStatistics, isOptional: true }),
|
|
1356
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1357
|
+
], MultiplayerPermissionRulesParam.prototype, "getQueueStatistics", void 0);
|
|
1358
|
+
__decorate([
|
|
1359
|
+
GNHashtableDataMember({ code: ParameterCode.JoinMatchmakingTicket, isOptional: true }),
|
|
1360
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1361
|
+
], MultiplayerPermissionRulesParam.prototype, "joinMatchmakingTicket", void 0);
|
|
1362
|
+
__decorate([
|
|
1363
|
+
GNHashtableDataMember({ code: ParameterCode.ListMatchmakingTicketsForPlayer, isOptional: true }),
|
|
1364
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1365
|
+
], MultiplayerPermissionRulesParam.prototype, "listMatchmakingTicketsForPlayer", void 0);
|
|
1366
|
+
__decorate([
|
|
1367
|
+
GNHashtableDataMember({ code: ParameterCode.GetAllMatchmakingTicket, isOptional: true }),
|
|
1368
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1369
|
+
], MultiplayerPermissionRulesParam.prototype, "getAllMatchmakingTicket", void 0);
|
|
1370
|
+
__decorate([
|
|
1371
|
+
GNHashtableDataMember({ code: ParameterCode.GetAllMatch, isOptional: true }),
|
|
1372
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1373
|
+
], MultiplayerPermissionRulesParam.prototype, "getAllMatch", void 0);
|
|
1374
|
+
DashboardModels.MultiplayerPermissionRulesParam = MultiplayerPermissionRulesParam;
|
|
1375
|
+
class MasterPlayerPermissionRulesParam {
|
|
1376
|
+
}
|
|
1377
|
+
__decorate([
|
|
1378
|
+
GNHashtableDataMember({ code: ParameterCode.LinkAccount, isOptional: true }),
|
|
1379
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1380
|
+
], MasterPlayerPermissionRulesParam.prototype, "linkAccount", void 0);
|
|
1381
|
+
__decorate([
|
|
1382
|
+
GNHashtableDataMember({ code: ParameterCode.LinkAndroidDeviceId, isOptional: true }),
|
|
1383
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1384
|
+
], MasterPlayerPermissionRulesParam.prototype, "linkAndroidDeviceId", void 0);
|
|
1385
|
+
__decorate([
|
|
1386
|
+
GNHashtableDataMember({ code: ParameterCode.LinkApple, isOptional: true }),
|
|
1387
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1388
|
+
], MasterPlayerPermissionRulesParam.prototype, "linkApple", void 0);
|
|
1389
|
+
__decorate([
|
|
1390
|
+
GNHashtableDataMember({ code: ParameterCode.LinkCustomDeviceId, isOptional: true }),
|
|
1391
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1392
|
+
], MasterPlayerPermissionRulesParam.prototype, "linkCustomDeviceId", void 0);
|
|
1393
|
+
__decorate([
|
|
1394
|
+
GNHashtableDataMember({ code: ParameterCode.LinkCustomId, isOptional: true }),
|
|
1395
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1396
|
+
], MasterPlayerPermissionRulesParam.prototype, "linkCustomId", void 0);
|
|
1397
|
+
__decorate([
|
|
1398
|
+
GNHashtableDataMember({ code: ParameterCode.LinkEditorDeviceId, isOptional: true }),
|
|
1399
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1400
|
+
], MasterPlayerPermissionRulesParam.prototype, "linkEditorDeviceId", void 0);
|
|
1401
|
+
__decorate([
|
|
1402
|
+
GNHashtableDataMember({ code: ParameterCode.LinkFacebook, isOptional: true }),
|
|
1403
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1404
|
+
], MasterPlayerPermissionRulesParam.prototype, "linkFacebook", void 0);
|
|
1405
|
+
__decorate([
|
|
1406
|
+
GNHashtableDataMember({ code: ParameterCode.LinkGenericService, isOptional: true }),
|
|
1407
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1408
|
+
], MasterPlayerPermissionRulesParam.prototype, "linkGenericService", void 0);
|
|
1409
|
+
__decorate([
|
|
1410
|
+
GNHashtableDataMember({ code: ParameterCode.LinkGoogle, isOptional: true }),
|
|
1411
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1412
|
+
], MasterPlayerPermissionRulesParam.prototype, "linkGoogle", void 0);
|
|
1413
|
+
__decorate([
|
|
1414
|
+
GNHashtableDataMember({ code: ParameterCode.LinkGooglePlayGameService, isOptional: true }),
|
|
1415
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1416
|
+
], MasterPlayerPermissionRulesParam.prototype, "linkGooglePlayGameService", void 0);
|
|
1417
|
+
__decorate([
|
|
1418
|
+
GNHashtableDataMember({ code: ParameterCode.LinkGameCenter, isOptional: true }),
|
|
1419
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1420
|
+
], MasterPlayerPermissionRulesParam.prototype, "linkGameCenter", void 0);
|
|
1421
|
+
__decorate([
|
|
1422
|
+
GNHashtableDataMember({ code: ParameterCode.LinkiOSDeviceId, isOptional: true }),
|
|
1423
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1424
|
+
], MasterPlayerPermissionRulesParam.prototype, "linkiOSDeviceId", void 0);
|
|
1425
|
+
__decorate([
|
|
1426
|
+
GNHashtableDataMember({ code: ParameterCode.LinkLinuxDeviceId, isOptional: true }),
|
|
1427
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1428
|
+
], MasterPlayerPermissionRulesParam.prototype, "linkLinuxDeviceId", void 0);
|
|
1429
|
+
__decorate([
|
|
1430
|
+
GNHashtableDataMember({ code: ParameterCode.LinkMacOSDeviceId, isOptional: true }),
|
|
1431
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1432
|
+
], MasterPlayerPermissionRulesParam.prototype, "linkMacOSDeviceId", void 0);
|
|
1433
|
+
__decorate([
|
|
1434
|
+
GNHashtableDataMember({ code: ParameterCode.LinkWindowsDeviceId, isOptional: true }),
|
|
1435
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1436
|
+
], MasterPlayerPermissionRulesParam.prototype, "linkWindowsDeviceId", void 0);
|
|
1437
|
+
__decorate([
|
|
1438
|
+
GNHashtableDataMember({ code: ParameterCode.LinkWindowsPhoneDeviceId, isOptional: true }),
|
|
1439
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1440
|
+
], MasterPlayerPermissionRulesParam.prototype, "linkWindowsPhoneDeviceId", void 0);
|
|
1441
|
+
__decorate([
|
|
1442
|
+
GNHashtableDataMember({ code: ParameterCode.UnlinkAccount, isOptional: true }),
|
|
1443
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1444
|
+
], MasterPlayerPermissionRulesParam.prototype, "unlinkAccount", void 0);
|
|
1445
|
+
__decorate([
|
|
1446
|
+
GNHashtableDataMember({ code: ParameterCode.UnlinkAndroidDeviceId, isOptional: true }),
|
|
1447
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1448
|
+
], MasterPlayerPermissionRulesParam.prototype, "unlinkAndroidDeviceId", void 0);
|
|
1449
|
+
__decorate([
|
|
1450
|
+
GNHashtableDataMember({ code: ParameterCode.UnlinkApple, isOptional: true }),
|
|
1451
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1452
|
+
], MasterPlayerPermissionRulesParam.prototype, "unlinkApple", void 0);
|
|
1453
|
+
__decorate([
|
|
1454
|
+
GNHashtableDataMember({ code: ParameterCode.UnlinkCustomDeviceId, isOptional: true }),
|
|
1455
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1456
|
+
], MasterPlayerPermissionRulesParam.prototype, "unlinkCustomDeviceId", void 0);
|
|
1457
|
+
__decorate([
|
|
1458
|
+
GNHashtableDataMember({ code: ParameterCode.UnlinkCustomId, isOptional: true }),
|
|
1459
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1460
|
+
], MasterPlayerPermissionRulesParam.prototype, "unlinkCustomId", void 0);
|
|
1461
|
+
__decorate([
|
|
1462
|
+
GNHashtableDataMember({ code: ParameterCode.UnlinkEditorDeviceId, isOptional: true }),
|
|
1463
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1464
|
+
], MasterPlayerPermissionRulesParam.prototype, "unlinkEditorDeviceId", void 0);
|
|
1465
|
+
__decorate([
|
|
1466
|
+
GNHashtableDataMember({ code: ParameterCode.UnlinkFacebook, isOptional: true }),
|
|
1467
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1468
|
+
], MasterPlayerPermissionRulesParam.prototype, "unlinkFacebook", void 0);
|
|
1469
|
+
__decorate([
|
|
1470
|
+
GNHashtableDataMember({ code: ParameterCode.UnlinkGenericService, isOptional: true }),
|
|
1471
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1472
|
+
], MasterPlayerPermissionRulesParam.prototype, "unlinkGenericService", void 0);
|
|
1473
|
+
__decorate([
|
|
1474
|
+
GNHashtableDataMember({ code: ParameterCode.UnlinkGoogle, isOptional: true }),
|
|
1475
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1476
|
+
], MasterPlayerPermissionRulesParam.prototype, "unlinkGoogle", void 0);
|
|
1477
|
+
__decorate([
|
|
1478
|
+
GNHashtableDataMember({ code: ParameterCode.UnlinkGooglePlayGameService, isOptional: true }),
|
|
1479
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1480
|
+
], MasterPlayerPermissionRulesParam.prototype, "unlinkGooglePlayGameService", void 0);
|
|
1481
|
+
__decorate([
|
|
1482
|
+
GNHashtableDataMember({ code: ParameterCode.UnlinkGameCenter, isOptional: true }),
|
|
1483
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1484
|
+
], MasterPlayerPermissionRulesParam.prototype, "unlinkGameCenter", void 0);
|
|
1485
|
+
__decorate([
|
|
1486
|
+
GNHashtableDataMember({ code: ParameterCode.UnlinkiOSDeviceId, isOptional: true }),
|
|
1487
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1488
|
+
], MasterPlayerPermissionRulesParam.prototype, "unlinkiOSDeviceId", void 0);
|
|
1489
|
+
__decorate([
|
|
1490
|
+
GNHashtableDataMember({ code: ParameterCode.UnlinkLinuxDeviceId, isOptional: true }),
|
|
1491
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1492
|
+
], MasterPlayerPermissionRulesParam.prototype, "unlinkLinuxDeviceId", void 0);
|
|
1493
|
+
__decorate([
|
|
1494
|
+
GNHashtableDataMember({ code: ParameterCode.UnlinkMacOSDeviceId, isOptional: true }),
|
|
1495
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1496
|
+
], MasterPlayerPermissionRulesParam.prototype, "unlinkMacOSDeviceId", void 0);
|
|
1497
|
+
__decorate([
|
|
1498
|
+
GNHashtableDataMember({ code: ParameterCode.UnlinkWindowsDeviceId, isOptional: true }),
|
|
1499
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1500
|
+
], MasterPlayerPermissionRulesParam.prototype, "unlinkWindowsDeviceId", void 0);
|
|
1501
|
+
__decorate([
|
|
1502
|
+
GNHashtableDataMember({ code: ParameterCode.UnlinkWindowsPhoneDeviceId, isOptional: true }),
|
|
1503
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1504
|
+
], MasterPlayerPermissionRulesParam.prototype, "unlinkWindowsPhoneDeviceId", void 0);
|
|
1505
|
+
__decorate([
|
|
1506
|
+
GNHashtableDataMember({ code: ParameterCode.AddSegment, isOptional: true }),
|
|
1507
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1508
|
+
], MasterPlayerPermissionRulesParam.prototype, "addSegment", void 0);
|
|
1509
|
+
__decorate([
|
|
1510
|
+
GNHashtableDataMember({ code: ParameterCode.RemoveSegment, isOptional: true }),
|
|
1511
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1512
|
+
], MasterPlayerPermissionRulesParam.prototype, "removeSegment", void 0);
|
|
1513
|
+
__decorate([
|
|
1514
|
+
GNHashtableDataMember({ code: ParameterCode.GetSegment, isOptional: true }),
|
|
1515
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1516
|
+
], MasterPlayerPermissionRulesParam.prototype, "getSegment", void 0);
|
|
1517
|
+
__decorate([
|
|
1518
|
+
GNHashtableDataMember({ code: ParameterCode.SetTag, isOptional: true }),
|
|
1519
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1520
|
+
], MasterPlayerPermissionRulesParam.prototype, "setTag", void 0);
|
|
1521
|
+
__decorate([
|
|
1522
|
+
GNHashtableDataMember({ code: ParameterCode.RemoveTag, isOptional: true }),
|
|
1523
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1524
|
+
], MasterPlayerPermissionRulesParam.prototype, "removeTag", void 0);
|
|
1525
|
+
__decorate([
|
|
1526
|
+
GNHashtableDataMember({ code: ParameterCode.GetTag, isOptional: true }),
|
|
1527
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1528
|
+
], MasterPlayerPermissionRulesParam.prototype, "getTag", void 0);
|
|
1529
|
+
__decorate([
|
|
1530
|
+
GNHashtableDataMember({ code: ParameterCode.GetDisplayName, isOptional: true }),
|
|
1531
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1532
|
+
], MasterPlayerPermissionRulesParam.prototype, "getDisplayName", void 0);
|
|
1533
|
+
__decorate([
|
|
1534
|
+
GNHashtableDataMember({ code: ParameterCode.SetDisplayName, isOptional: true }),
|
|
1535
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1536
|
+
], MasterPlayerPermissionRulesParam.prototype, "setDisplayName", void 0);
|
|
1537
|
+
__decorate([
|
|
1538
|
+
GNHashtableDataMember({ code: ParameterCode.GetTsCreate, isOptional: true }),
|
|
1539
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1540
|
+
], MasterPlayerPermissionRulesParam.prototype, "getTsCreate", void 0);
|
|
1541
|
+
__decorate([
|
|
1542
|
+
GNHashtableDataMember({ code: ParameterCode.GetIpAddressCreate, isOptional: true }),
|
|
1543
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1544
|
+
], MasterPlayerPermissionRulesParam.prototype, "getIpAddressCreate", void 0);
|
|
1545
|
+
__decorate([
|
|
1546
|
+
GNHashtableDataMember({ code: ParameterCode.SetTsLastLogin, isOptional: true }),
|
|
1547
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1548
|
+
], MasterPlayerPermissionRulesParam.prototype, "setTsLastLogin", void 0);
|
|
1549
|
+
__decorate([
|
|
1550
|
+
GNHashtableDataMember({ code: ParameterCode.GetTsLastLogin, isOptional: true }),
|
|
1551
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1552
|
+
], MasterPlayerPermissionRulesParam.prototype, "getTsLastLogin", void 0);
|
|
1553
|
+
__decorate([
|
|
1554
|
+
GNHashtableDataMember({ code: ParameterCode.SetPlayerBan, isOptional: true }),
|
|
1555
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1556
|
+
], MasterPlayerPermissionRulesParam.prototype, "setPlayerBan", void 0);
|
|
1557
|
+
__decorate([
|
|
1558
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerBan, isOptional: true }),
|
|
1559
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1560
|
+
], MasterPlayerPermissionRulesParam.prototype, "getPlayerBan", void 0);
|
|
1561
|
+
__decorate([
|
|
1562
|
+
GNHashtableDataMember({ code: ParameterCode.SetCountryCode, isOptional: true }),
|
|
1563
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1564
|
+
], MasterPlayerPermissionRulesParam.prototype, "setCountryCode", void 0);
|
|
1565
|
+
__decorate([
|
|
1566
|
+
GNHashtableDataMember({ code: ParameterCode.GetCountryCode, isOptional: true }),
|
|
1567
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1568
|
+
], MasterPlayerPermissionRulesParam.prototype, "getCountryCode", void 0);
|
|
1569
|
+
__decorate([
|
|
1570
|
+
GNHashtableDataMember({ code: ParameterCode.ChangeAccountPassword, isOptional: true }),
|
|
1571
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1572
|
+
], MasterPlayerPermissionRulesParam.prototype, "changeAccountPassword", void 0);
|
|
1573
|
+
__decorate([
|
|
1574
|
+
GNHashtableDataMember({ code: ParameterCode.ResetAccountPassword, isOptional: true }),
|
|
1575
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1576
|
+
], MasterPlayerPermissionRulesParam.prototype, "resetAccountPassword", void 0);
|
|
1577
|
+
__decorate([
|
|
1578
|
+
GNHashtableDataMember({ code: ParameterCode.SetAvatar, isOptional: true }),
|
|
1579
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1580
|
+
], MasterPlayerPermissionRulesParam.prototype, "setAvatar", void 0);
|
|
1581
|
+
__decorate([
|
|
1582
|
+
GNHashtableDataMember({ code: ParameterCode.GetAvatar, isOptional: true }),
|
|
1583
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1584
|
+
], MasterPlayerPermissionRulesParam.prototype, "getAvatar", void 0);
|
|
1585
|
+
__decorate([
|
|
1586
|
+
GNHashtableDataMember({ code: ParameterCode.ChangePlayerCurrency, isOptional: true }),
|
|
1587
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1588
|
+
], MasterPlayerPermissionRulesParam.prototype, "changePlayerCurrency", void 0);
|
|
1589
|
+
__decorate([
|
|
1590
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerCurrency, isOptional: true }),
|
|
1591
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1592
|
+
], MasterPlayerPermissionRulesParam.prototype, "getPlayerCurrency", void 0);
|
|
1593
|
+
__decorate([
|
|
1594
|
+
GNHashtableDataMember({ code: ParameterCode.ChangePlayerStatistics, isOptional: true }),
|
|
1595
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1596
|
+
], MasterPlayerPermissionRulesParam.prototype, "changePlayerStatistics", void 0);
|
|
1597
|
+
__decorate([
|
|
1598
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerStatistics, isOptional: true }),
|
|
1599
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1600
|
+
], MasterPlayerPermissionRulesParam.prototype, "getPlayerStatistics", void 0);
|
|
1601
|
+
__decorate([
|
|
1602
|
+
GNHashtableDataMember({ code: ParameterCode.GetStatisticsLeaderboard, isOptional: true }),
|
|
1603
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1604
|
+
], MasterPlayerPermissionRulesParam.prototype, "getStatisticsLeaderboard", void 0);
|
|
1605
|
+
__decorate([
|
|
1606
|
+
GNHashtableDataMember({ code: ParameterCode.GetStatisticsLeaderboardAroundPlayer, isOptional: true }),
|
|
1607
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1608
|
+
], MasterPlayerPermissionRulesParam.prototype, "getStatisticsLeaderboardAroundPlayer", void 0);
|
|
1609
|
+
__decorate([
|
|
1610
|
+
GNHashtableDataMember({ code: ParameterCode.GetCustomData, isOptional: true }),
|
|
1611
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1612
|
+
], MasterPlayerPermissionRulesParam.prototype, "getCustomData", void 0);
|
|
1613
|
+
__decorate([
|
|
1614
|
+
GNHashtableDataMember({ code: ParameterCode.SetCustomData, isOptional: true }),
|
|
1615
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1616
|
+
], MasterPlayerPermissionRulesParam.prototype, "setCustomData", void 0);
|
|
1617
|
+
__decorate([
|
|
1618
|
+
GNHashtableDataMember({ code: ParameterCode.SetPlayerData, isOptional: true }),
|
|
1619
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1620
|
+
], MasterPlayerPermissionRulesParam.prototype, "setPlayerData", void 0);
|
|
1621
|
+
__decorate([
|
|
1622
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerData, isOptional: true }),
|
|
1623
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1624
|
+
], MasterPlayerPermissionRulesParam.prototype, "getPlayerData", void 0);
|
|
1625
|
+
__decorate([
|
|
1626
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayerInformation, isOptional: true }),
|
|
1627
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1628
|
+
], MasterPlayerPermissionRulesParam.prototype, "getPlayerInformation", void 0);
|
|
1629
|
+
__decorate([
|
|
1630
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayersWithApple, isOptional: true }),
|
|
1631
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1632
|
+
], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithApple", void 0);
|
|
1633
|
+
__decorate([
|
|
1634
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayersWithFacebook, isOptional: true }),
|
|
1635
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1636
|
+
], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithFacebook", void 0);
|
|
1637
|
+
__decorate([
|
|
1638
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayersWithGoogle, isOptional: true }),
|
|
1639
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1640
|
+
], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithGoogle", void 0);
|
|
1641
|
+
__decorate([
|
|
1642
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayersWithGenericService, isOptional: true }),
|
|
1643
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1644
|
+
], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithGenericService", void 0);
|
|
1645
|
+
__decorate([
|
|
1646
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayersWithSegment, isOptional: true }),
|
|
1647
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1648
|
+
], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithSegment", void 0);
|
|
1649
|
+
__decorate([
|
|
1650
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayersWithTag, isOptional: true }),
|
|
1651
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1652
|
+
], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithTag", void 0);
|
|
1653
|
+
__decorate([
|
|
1654
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayersWithGooglePlayGameService, isOptional: true }),
|
|
1655
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1656
|
+
], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithGooglePlayGameService", void 0);
|
|
1657
|
+
__decorate([
|
|
1658
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayersWithGameCenter, isOptional: true }),
|
|
1659
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1660
|
+
], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithGameCenter", void 0);
|
|
1661
|
+
__decorate([
|
|
1662
|
+
GNHashtableDataMember({ code: ParameterCode.GetExternal, isOptional: true }),
|
|
1663
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1664
|
+
], MasterPlayerPermissionRulesParam.prototype, "getExternal", void 0);
|
|
1665
|
+
__decorate([
|
|
1666
|
+
GNHashtableDataMember({ code: ParameterCode.GetPlayersWithDisplayName, isOptional: true }),
|
|
1667
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1668
|
+
], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithDisplayName", void 0);
|
|
1669
|
+
__decorate([
|
|
1670
|
+
GNHashtableDataMember({ code: ParameterCode.GetEmail, isOptional: true }),
|
|
1671
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1672
|
+
], MasterPlayerPermissionRulesParam.prototype, "getEmail", void 0);
|
|
1673
|
+
__decorate([
|
|
1674
|
+
GNHashtableDataMember({ code: ParameterCode.SetEmail, isOptional: true }),
|
|
1675
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1676
|
+
], MasterPlayerPermissionRulesParam.prototype, "setEmail", void 0);
|
|
1677
|
+
__decorate([
|
|
1678
|
+
GNHashtableDataMember({ code: ParameterCode.GetCurrencyLeaderboard, isOptional: true }),
|
|
1679
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1680
|
+
], MasterPlayerPermissionRulesParam.prototype, "getCurrencyLeaderboard", void 0);
|
|
1681
|
+
__decorate([
|
|
1682
|
+
GNHashtableDataMember({ code: ParameterCode.GetLastLoginLeaderboard, isOptional: true }),
|
|
1683
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1684
|
+
], MasterPlayerPermissionRulesParam.prototype, "getLastLoginLeaderboard", void 0);
|
|
1685
|
+
__decorate([
|
|
1686
|
+
GNHashtableDataMember({ code: ParameterCode.GetCreateLeaderboard, isOptional: true }),
|
|
1687
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1688
|
+
], MasterPlayerPermissionRulesParam.prototype, "getCreateLeaderboard", void 0);
|
|
1689
|
+
__decorate([
|
|
1690
|
+
GNHashtableDataMember({ code: ParameterCode.GetStatisticsLog, isOptional: true }),
|
|
1691
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1692
|
+
], MasterPlayerPermissionRulesParam.prototype, "getStatisticsLog", void 0);
|
|
1693
|
+
__decorate([
|
|
1694
|
+
GNHashtableDataMember({ code: ParameterCode.GetCurrencyLog, isOptional: true }),
|
|
1695
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1696
|
+
], MasterPlayerPermissionRulesParam.prototype, "getCurrencyLog", void 0);
|
|
1697
|
+
__decorate([
|
|
1698
|
+
GNHashtableDataMember({ code: ParameterCode.SendSocketOperationEvent, isOptional: true }),
|
|
1699
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1700
|
+
], MasterPlayerPermissionRulesParam.prototype, "sendSocketOperationEvent", void 0);
|
|
1701
|
+
__decorate([
|
|
1702
|
+
GNHashtableDataMember({ code: ParameterCode.SendEmail, isOptional: true }),
|
|
1703
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1704
|
+
], MasterPlayerPermissionRulesParam.prototype, "sendEmail", void 0);
|
|
1705
|
+
__decorate([
|
|
1706
|
+
GNHashtableDataMember({ code: ParameterCode.SendPushNotification, isOptional: true }),
|
|
1707
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1708
|
+
], MasterPlayerPermissionRulesParam.prototype, "sendPushNotification", void 0);
|
|
1709
|
+
__decorate([
|
|
1710
|
+
GNHashtableDataMember({ code: ParameterCode.AddPushNotification, isOptional: true }),
|
|
1711
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1712
|
+
], MasterPlayerPermissionRulesParam.prototype, "addPushNotification", void 0);
|
|
1713
|
+
__decorate([
|
|
1714
|
+
GNHashtableDataMember({ code: ParameterCode.RemovePushNotification, isOptional: true }),
|
|
1715
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1716
|
+
], MasterPlayerPermissionRulesParam.prototype, "removePushNotification", void 0);
|
|
1717
|
+
__decorate([
|
|
1718
|
+
GNHashtableDataMember({ code: ParameterCode.GetPushNotification, isOptional: true }),
|
|
1719
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1720
|
+
], MasterPlayerPermissionRulesParam.prototype, "getPushNotification", void 0);
|
|
1721
|
+
DashboardModels.MasterPlayerPermissionRulesParam = MasterPlayerPermissionRulesParam;
|
|
1722
|
+
class MasterPlayerSettingsParam {
|
|
1723
|
+
}
|
|
1724
|
+
__decorate([
|
|
1725
|
+
GNArrayDataMember({ code: ParameterCode.GenericServiceSettings, elementCls: GenericServiceSettingsParam, isOptional: true }),
|
|
1726
|
+
__metadata("design:type", Array)
|
|
1727
|
+
], MasterPlayerSettingsParam.prototype, "genericServiceSettings", void 0);
|
|
1728
|
+
__decorate([
|
|
1729
|
+
GNArrayDataMember({ code: ParameterCode.PlayerCurrenciesSettings, elementCls: CurrencySettingsParam, isOptional: true }),
|
|
1730
|
+
__metadata("design:type", Array)
|
|
1731
|
+
], MasterPlayerSettingsParam.prototype, "playerCurrenciesSettings", void 0);
|
|
1732
|
+
__decorate([
|
|
1733
|
+
GNArrayDataMember({ code: ParameterCode.PlayerStatisticsSettings, elementCls: StatisticsSettingsParam, isOptional: true }),
|
|
1734
|
+
__metadata("design:type", Array)
|
|
1735
|
+
], MasterPlayerSettingsParam.prototype, "playerStatisticsSettings", void 0);
|
|
1736
|
+
__decorate([
|
|
1737
|
+
GNArrayDataMember({ code: ParameterCode.PlayerDatasSettings, elementCls: DataSettingsParam, isOptional: true }),
|
|
1738
|
+
__metadata("design:type", Array)
|
|
1739
|
+
], MasterPlayerSettingsParam.prototype, "playerDatasSettings", void 0);
|
|
1740
|
+
__decorate([
|
|
1741
|
+
GNArrayDataMember({ code: ParameterCode.CustomDatasSettings, elementCls: DataSettingsParam, isOptional: true }),
|
|
1742
|
+
__metadata("design:type", Array)
|
|
1743
|
+
], MasterPlayerSettingsParam.prototype, "customDatasSettings", void 0);
|
|
1744
|
+
__decorate([
|
|
1745
|
+
GNArrayDataMember({ code: ParameterCode.TagsSettings, elementCls: TagSettingsParam, isOptional: true }),
|
|
1746
|
+
__metadata("design:type", Array)
|
|
1747
|
+
], MasterPlayerSettingsParam.prototype, "tagsSettings", void 0);
|
|
1748
|
+
DashboardModels.MasterPlayerSettingsParam = MasterPlayerSettingsParam;
|
|
1749
|
+
class SizeParam {
|
|
1750
|
+
}
|
|
1751
|
+
__decorate([
|
|
1752
|
+
NumberDataMember({ code: ParameterCode.Min, minValue: 1, mustInt: true }),
|
|
1753
|
+
__metadata("design:type", Number)
|
|
1754
|
+
], SizeParam.prototype, "min", void 0);
|
|
1755
|
+
__decorate([
|
|
1756
|
+
NumberDataMember({ code: ParameterCode.Max, minValue: 1, mustInt: true }),
|
|
1757
|
+
__metadata("design:type", Number)
|
|
1758
|
+
], SizeParam.prototype, "max", void 0);
|
|
1759
|
+
DashboardModels.SizeParam = SizeParam;
|
|
1760
|
+
class TeamParam {
|
|
1761
|
+
}
|
|
1762
|
+
__decorate([
|
|
1763
|
+
StringDataMember({ code: ParameterCode.TeamId, minLength: 1, maxLength: 32 }),
|
|
1764
|
+
__metadata("design:type", String)
|
|
1765
|
+
], TeamParam.prototype, "teamId", void 0);
|
|
1766
|
+
__decorate([
|
|
1767
|
+
GNHashtableDataMember({ code: ParameterCode.TeamSize }),
|
|
1768
|
+
__metadata("design:type", SizeParam)
|
|
1769
|
+
], TeamParam.prototype, "teamSize", void 0);
|
|
1770
|
+
DashboardModels.TeamParam = TeamParam;
|
|
1771
|
+
class LinearExpansionsParam {
|
|
1772
|
+
}
|
|
1773
|
+
__decorate([
|
|
1774
|
+
NumberDataMember({ code: ParameterCode.SecondsBetweenExpansions, minValue: 1 }),
|
|
1775
|
+
__metadata("design:type", Number)
|
|
1776
|
+
], LinearExpansionsParam.prototype, "secondsBetweenExpansions", void 0);
|
|
1777
|
+
__decorate([
|
|
1778
|
+
NumberDataMember({ code: ParameterCode.Delta, isOptional: true }),
|
|
1779
|
+
__metadata("design:type", Number)
|
|
1780
|
+
], LinearExpansionsParam.prototype, "delta", void 0);
|
|
1781
|
+
__decorate([
|
|
1782
|
+
NumberDataMember({ code: ParameterCode.Limit, isOptional: true }),
|
|
1783
|
+
__metadata("design:type", Number)
|
|
1784
|
+
], LinearExpansionsParam.prototype, "limit", void 0);
|
|
1785
|
+
DashboardModels.LinearExpansionsParam = LinearExpansionsParam;
|
|
1786
|
+
class CustomExpansionsParam {
|
|
1787
|
+
}
|
|
1788
|
+
__decorate([
|
|
1789
|
+
NumberDataMember({ code: ParameterCode.SecondsBetweenExpansions, minValue: 1 }),
|
|
1790
|
+
__metadata("design:type", Number)
|
|
1791
|
+
], CustomExpansionsParam.prototype, "secondsBetweenExpansions", void 0);
|
|
1792
|
+
__decorate([
|
|
1793
|
+
GNArrayDataMember({ code: ParameterCode.OverrideValue, isOptional: true, elementCls: Object }),
|
|
1794
|
+
__metadata("design:type", Array)
|
|
1795
|
+
], CustomExpansionsParam.prototype, "overrideValue", void 0);
|
|
1796
|
+
__decorate([
|
|
1797
|
+
GNArrayDataMember({ code: ParameterCode.OverrideMin, isOptional: true, elementCls: Object }),
|
|
1798
|
+
__metadata("design:type", Array)
|
|
1799
|
+
], CustomExpansionsParam.prototype, "overrideMin", void 0);
|
|
1800
|
+
__decorate([
|
|
1801
|
+
GNArrayDataMember({ code: ParameterCode.OverrideMax, isOptional: true, elementCls: Object }),
|
|
1802
|
+
__metadata("design:type", Array)
|
|
1803
|
+
], CustomExpansionsParam.prototype, "overrideMax", void 0);
|
|
1804
|
+
DashboardModels.CustomExpansionsParam = CustomExpansionsParam;
|
|
1805
|
+
class AdvancedSettingsParam {
|
|
1806
|
+
}
|
|
1807
|
+
__decorate([
|
|
1808
|
+
NumberDataMember({ code: ParameterCode.SecondsUntilOptional, minValue: 1 }),
|
|
1809
|
+
__metadata("design:type", Number)
|
|
1810
|
+
], AdvancedSettingsParam.prototype, "secondsUntilOptional", void 0);
|
|
1811
|
+
__decorate([
|
|
1812
|
+
NumberDataMember({ code: ParameterCode.ExpansionType, minValue: 1, maxValue: 3, isOptional: true, mustInt: true }),
|
|
1813
|
+
__metadata("design:type", Number)
|
|
1814
|
+
], AdvancedSettingsParam.prototype, "expansionType", void 0);
|
|
1815
|
+
__decorate([
|
|
1816
|
+
GNHashtableDataMember({ code: ParameterCode.LinearExpansions, isOptional: true }),
|
|
1817
|
+
__metadata("design:type", LinearExpansionsParam)
|
|
1818
|
+
], AdvancedSettingsParam.prototype, "linearExpansions", void 0);
|
|
1819
|
+
__decorate([
|
|
1820
|
+
GNHashtableDataMember({ code: ParameterCode.CustomExpansions, isOptional: true }),
|
|
1821
|
+
__metadata("design:type", CustomExpansionsParam)
|
|
1822
|
+
], AdvancedSettingsParam.prototype, "customExpansions", void 0);
|
|
1823
|
+
DashboardModels.AdvancedSettingsParam = AdvancedSettingsParam;
|
|
1824
|
+
class RuleParam {
|
|
1825
|
+
}
|
|
1826
|
+
__decorate([
|
|
1827
|
+
StringDataMember({ code: ParameterCode.Name, minLength: 1, maxLength: 32 }),
|
|
1828
|
+
__metadata("design:type", String)
|
|
1829
|
+
], RuleParam.prototype, "name", void 0);
|
|
1830
|
+
__decorate([
|
|
1831
|
+
NumberDataMember({ code: ParameterCode.Type, minValue: 1, maxValue: 8, mustInt: true }),
|
|
1832
|
+
__metadata("design:type", Number)
|
|
1833
|
+
], RuleParam.prototype, "type", void 0);
|
|
1834
|
+
__decorate([
|
|
1835
|
+
NumberDataMember({ code: ParameterCode.AttributeSource, minValue: 1, maxValue: 2, isOptional: true }),
|
|
1836
|
+
__metadata("design:type", Number)
|
|
1837
|
+
], RuleParam.prototype, "attributeSource", void 0);
|
|
1838
|
+
__decorate([
|
|
1839
|
+
StringDataMember({ code: ParameterCode.AttributePath, minLength: 1, maxLength: 32, isOptional: true }),
|
|
1840
|
+
__metadata("design:type", String)
|
|
1841
|
+
], RuleParam.prototype, "attributePath", void 0);
|
|
1842
|
+
__decorate([
|
|
1843
|
+
DataMember({ code: ParameterCode.DefaultValue, isOptional: true }),
|
|
1844
|
+
__metadata("design:type", Object)
|
|
1845
|
+
], RuleParam.prototype, "defaultValue", void 0);
|
|
1846
|
+
__decorate([
|
|
1847
|
+
NumberDataMember({ code: ParameterCode.CompairType, minValue: 1, maxValue: 2, isOptional: true, mustInt: true }),
|
|
1848
|
+
__metadata("design:type", Number)
|
|
1849
|
+
], RuleParam.prototype, "compairType", void 0);
|
|
1850
|
+
__decorate([
|
|
1851
|
+
NumberDataMember({ code: ParameterCode.AllowedDifference, minValue: 0, isOptional: true }),
|
|
1852
|
+
__metadata("design:type", Number)
|
|
1853
|
+
], RuleParam.prototype, "allowedDifference", void 0);
|
|
1854
|
+
__decorate([
|
|
1855
|
+
NumberDataMember({ code: ParameterCode.Min, isOptional: true }),
|
|
1856
|
+
__metadata("design:type", Number)
|
|
1857
|
+
], RuleParam.prototype, "min", void 0);
|
|
1858
|
+
__decorate([
|
|
1859
|
+
NumberDataMember({ code: ParameterCode.Max, isOptional: true }),
|
|
1860
|
+
__metadata("design:type", Number)
|
|
1861
|
+
], RuleParam.prototype, "max", void 0);
|
|
1862
|
+
__decorate([
|
|
1863
|
+
GNHashtableDataMember({ code: ParameterCode.AdvancedSettings, isOptional: true }),
|
|
1864
|
+
__metadata("design:type", AdvancedSettingsParam)
|
|
1865
|
+
], RuleParam.prototype, "advancedSettings", void 0);
|
|
1866
|
+
DashboardModels.RuleParam = RuleParam;
|
|
1867
|
+
class ServerAllocationParam {
|
|
1868
|
+
}
|
|
1869
|
+
__decorate([
|
|
1870
|
+
BooleanDataMember({ code: ParameterCode.Enable }),
|
|
1871
|
+
__metadata("design:type", Boolean)
|
|
1872
|
+
], ServerAllocationParam.prototype, "enable", void 0);
|
|
1873
|
+
DashboardModels.ServerAllocationParam = ServerAllocationParam;
|
|
1874
|
+
class MatchmakingQueueSettingsParam {
|
|
1875
|
+
}
|
|
1876
|
+
__decorate([
|
|
1877
|
+
StringDataMember({ code: ParameterCode.QueueName, minLength: 6, maxLength: 32 }),
|
|
1878
|
+
__metadata("design:type", String)
|
|
1879
|
+
], MatchmakingQueueSettingsParam.prototype, "queueName", void 0);
|
|
1880
|
+
__decorate([
|
|
1881
|
+
GNHashtableDataMember({ code: ParameterCode.MatchSize }),
|
|
1882
|
+
__metadata("design:type", SizeParam)
|
|
1883
|
+
], MatchmakingQueueSettingsParam.prototype, "matchSize", void 0);
|
|
1884
|
+
__decorate([
|
|
1885
|
+
GNHashtableDataMember({ code: ParameterCode.TicketSize }),
|
|
1886
|
+
__metadata("design:type", SizeParam)
|
|
1887
|
+
], MatchmakingQueueSettingsParam.prototype, "ticketSize", void 0);
|
|
1888
|
+
__decorate([
|
|
1889
|
+
GNHashtableDataMember({ code: ParameterCode.ServerAllocation }),
|
|
1890
|
+
__metadata("design:type", ServerAllocationParam)
|
|
1891
|
+
], MatchmakingQueueSettingsParam.prototype, "serverAllocation", void 0);
|
|
1892
|
+
__decorate([
|
|
1893
|
+
GNArrayDataMember({ code: ParameterCode.Teams, isOptional: true, elementCls: TeamParam }),
|
|
1894
|
+
__metadata("design:type", Array)
|
|
1895
|
+
], MatchmakingQueueSettingsParam.prototype, "teams", void 0);
|
|
1896
|
+
__decorate([
|
|
1897
|
+
GNArrayDataMember({ code: ParameterCode.Rules, isOptional: true, elementCls: RuleParam }),
|
|
1898
|
+
__metadata("design:type", Array)
|
|
1899
|
+
], MatchmakingQueueSettingsParam.prototype, "rules", void 0);
|
|
1900
|
+
__decorate([
|
|
1901
|
+
BooleanDataMember({ code: ParameterCode.Remove, isOptional: true }),
|
|
1902
|
+
__metadata("design:type", Boolean)
|
|
1903
|
+
], MatchmakingQueueSettingsParam.prototype, "remove", void 0);
|
|
1904
|
+
DashboardModels.MatchmakingQueueSettingsParam = MatchmakingQueueSettingsParam;
|
|
1905
|
+
class AuthenticatePermissionRulesParam {
|
|
1906
|
+
}
|
|
1907
|
+
__decorate([
|
|
1908
|
+
GNHashtableDataMember({ code: ParameterCode.LoginByAccount, isOptional: true }),
|
|
1909
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1910
|
+
], AuthenticatePermissionRulesParam.prototype, "loginByAccount", void 0);
|
|
1911
|
+
__decorate([
|
|
1912
|
+
GNHashtableDataMember({ code: ParameterCode.LoginByAndroidDeviceId, isOptional: true }),
|
|
1913
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1914
|
+
], AuthenticatePermissionRulesParam.prototype, "loginByAndroidDeviceId", void 0);
|
|
1915
|
+
__decorate([
|
|
1916
|
+
GNHashtableDataMember({ code: ParameterCode.LoginByApple, isOptional: true }),
|
|
1917
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1918
|
+
], AuthenticatePermissionRulesParam.prototype, "loginByApple", void 0);
|
|
1919
|
+
__decorate([
|
|
1920
|
+
GNHashtableDataMember({ code: ParameterCode.LoginByCustomDeviceId, isOptional: true }),
|
|
1921
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1922
|
+
], AuthenticatePermissionRulesParam.prototype, "loginByCustomDeviceId", void 0);
|
|
1923
|
+
__decorate([
|
|
1924
|
+
GNHashtableDataMember({ code: ParameterCode.LoginByCustomId, isOptional: true }),
|
|
1925
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1926
|
+
], AuthenticatePermissionRulesParam.prototype, "loginByCustomId", void 0);
|
|
1927
|
+
__decorate([
|
|
1928
|
+
GNHashtableDataMember({ code: ParameterCode.LoginByFacebook, isOptional: true }),
|
|
1929
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1930
|
+
], AuthenticatePermissionRulesParam.prototype, "loginByFacebook", void 0);
|
|
1931
|
+
__decorate([
|
|
1932
|
+
GNHashtableDataMember({ code: ParameterCode.LoginByGenericService, isOptional: true }),
|
|
1933
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1934
|
+
], AuthenticatePermissionRulesParam.prototype, "loginByGenericService", void 0);
|
|
1935
|
+
__decorate([
|
|
1936
|
+
GNHashtableDataMember({ code: ParameterCode.LoginByGoogle, isOptional: true }),
|
|
1937
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1938
|
+
], AuthenticatePermissionRulesParam.prototype, "loginByGoogle", void 0);
|
|
1939
|
+
__decorate([
|
|
1940
|
+
GNHashtableDataMember({ code: ParameterCode.LoginByGooglePlayGameService, isOptional: true }),
|
|
1941
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1942
|
+
], AuthenticatePermissionRulesParam.prototype, "loginByGooglePlayGameService", void 0);
|
|
1943
|
+
__decorate([
|
|
1944
|
+
GNHashtableDataMember({ code: ParameterCode.LoginByGameCenter, isOptional: true }),
|
|
1945
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1946
|
+
], AuthenticatePermissionRulesParam.prototype, "loginByGameCenter", void 0);
|
|
1947
|
+
__decorate([
|
|
1948
|
+
GNHashtableDataMember({ code: ParameterCode.LoginByiOSDeviceId, isOptional: true }),
|
|
1949
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1950
|
+
], AuthenticatePermissionRulesParam.prototype, "loginByiOSDeviceId", void 0);
|
|
1951
|
+
__decorate([
|
|
1952
|
+
GNHashtableDataMember({ code: ParameterCode.LoginByWindowsPhoneDeviceId, isOptional: true }),
|
|
1953
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1954
|
+
], AuthenticatePermissionRulesParam.prototype, "loginByWindowsPhoneDeviceId", void 0);
|
|
1955
|
+
__decorate([
|
|
1956
|
+
GNHashtableDataMember({ code: ParameterCode.RegisterAccount, isOptional: true }),
|
|
1957
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1958
|
+
], AuthenticatePermissionRulesParam.prototype, "registerAccount", void 0);
|
|
1959
|
+
__decorate([
|
|
1960
|
+
GNHashtableDataMember({ code: ParameterCode.LoginByEditorDeviceId, isOptional: true }),
|
|
1961
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1962
|
+
], AuthenticatePermissionRulesParam.prototype, "loginByEditorDeviceId", void 0);
|
|
1963
|
+
__decorate([
|
|
1964
|
+
GNHashtableDataMember({ code: ParameterCode.LoginByLinuxDeviceId, isOptional: true }),
|
|
1965
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1966
|
+
], AuthenticatePermissionRulesParam.prototype, "loginByLinuxDeviceId", void 0);
|
|
1967
|
+
__decorate([
|
|
1968
|
+
GNHashtableDataMember({ code: ParameterCode.LoginByMacOSDeviceId, isOptional: true }),
|
|
1969
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1970
|
+
], AuthenticatePermissionRulesParam.prototype, "loginByMacOSDeviceId", void 0);
|
|
1971
|
+
__decorate([
|
|
1972
|
+
GNHashtableDataMember({ code: ParameterCode.LoginByWindowsDeviceId, isOptional: true }),
|
|
1973
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1974
|
+
], AuthenticatePermissionRulesParam.prototype, "loginByWindowsDeviceId", void 0);
|
|
1975
|
+
__decorate([
|
|
1976
|
+
GNHashtableDataMember({ code: ParameterCode.RefreshAuthToken, isOptional: true }),
|
|
1977
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1978
|
+
], AuthenticatePermissionRulesParam.prototype, "refreshAuthToken", void 0);
|
|
1979
|
+
DashboardModels.AuthenticatePermissionRulesParam = AuthenticatePermissionRulesParam;
|
|
1980
|
+
class StoreInventoryPermissionRulesParam {
|
|
1981
|
+
}
|
|
1982
|
+
__decorate([
|
|
1983
|
+
GNHashtableDataMember({ code: ParameterCode.BuyStoreItem, isOptional: true }),
|
|
1984
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1985
|
+
], StoreInventoryPermissionRulesParam.prototype, "buyStoreItem", void 0);
|
|
1986
|
+
__decorate([
|
|
1987
|
+
GNHashtableDataMember({ code: ParameterCode.GetStoreItemInformation, isOptional: true }),
|
|
1988
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1989
|
+
], StoreInventoryPermissionRulesParam.prototype, "getStoreItemInformation", void 0);
|
|
1990
|
+
__decorate([
|
|
1991
|
+
GNHashtableDataMember({ code: ParameterCode.GetStoreItemsWithTag, isOptional: true }),
|
|
1992
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1993
|
+
], StoreInventoryPermissionRulesParam.prototype, "getStoreItemsWithTag", void 0);
|
|
1994
|
+
__decorate([
|
|
1995
|
+
GNHashtableDataMember({ code: ParameterCode.CreateStoreItem, isOptional: true }),
|
|
1996
|
+
__metadata("design:type", PermissionRulesParam)
|
|
1997
|
+
], StoreInventoryPermissionRulesParam.prototype, "createStoreItem", void 0);
|
|
1998
|
+
__decorate([
|
|
1999
|
+
GNHashtableDataMember({ code: ParameterCode.SetRemoveStatus, isOptional: true }),
|
|
2000
|
+
__metadata("design:type", PermissionRulesParam)
|
|
2001
|
+
], StoreInventoryPermissionRulesParam.prototype, "setRemoveStatus", void 0);
|
|
2002
|
+
__decorate([
|
|
2003
|
+
GNHashtableDataMember({ code: ParameterCode.SetStoreItemInformation, isOptional: true }),
|
|
2004
|
+
__metadata("design:type", PermissionRulesParam)
|
|
2005
|
+
], StoreInventoryPermissionRulesParam.prototype, "setStoreItemInformation", void 0);
|
|
2006
|
+
__decorate([
|
|
2007
|
+
GNHashtableDataMember({ code: ParameterCode.ValidateAppleAppStoreReceipt, isOptional: true }),
|
|
2008
|
+
__metadata("design:type", PermissionRulesParam)
|
|
2009
|
+
], StoreInventoryPermissionRulesParam.prototype, "validateAppleAppStoreReceipt", void 0);
|
|
2010
|
+
__decorate([
|
|
2011
|
+
GNHashtableDataMember({ code: ParameterCode.ValidateGooglePlayStoreReceipt, isOptional: true }),
|
|
2012
|
+
__metadata("design:type", PermissionRulesParam)
|
|
2013
|
+
], StoreInventoryPermissionRulesParam.prototype, "validateGooglePlayStoreReceipt", void 0);
|
|
2014
|
+
__decorate([
|
|
2015
|
+
GNHashtableDataMember({ code: ParameterCode.ValidateFacebookStoreReceipt, isOptional: true }),
|
|
2016
|
+
__metadata("design:type", PermissionRulesParam)
|
|
2017
|
+
], StoreInventoryPermissionRulesParam.prototype, "validateFacebookStoreReceipt", void 0);
|
|
2018
|
+
__decorate([
|
|
2019
|
+
GNHashtableDataMember({ code: ParameterCode.GetCreateLeaderboard, isOptional: true }),
|
|
2020
|
+
__metadata("design:type", PermissionRulesParam)
|
|
2021
|
+
], StoreInventoryPermissionRulesParam.prototype, "getCreateLeaderboard", void 0);
|
|
2022
|
+
__decorate([
|
|
2023
|
+
GNHashtableDataMember({ code: ParameterCode.PresentStoreItem, isOptional: true }),
|
|
2024
|
+
__metadata("design:type", PermissionRulesParam)
|
|
2025
|
+
], StoreInventoryPermissionRulesParam.prototype, "presentStoreItem", void 0);
|
|
2026
|
+
__decorate([
|
|
2027
|
+
GNHashtableDataMember({ code: ParameterCode.GetStoreLog, isOptional: true }),
|
|
2028
|
+
__metadata("design:type", PermissionRulesParam)
|
|
2029
|
+
], StoreInventoryPermissionRulesParam.prototype, "getStoreLog", void 0);
|
|
2030
|
+
__decorate([
|
|
2031
|
+
GNHashtableDataMember({ code: ParameterCode.GetStoreUsed, isOptional: true }),
|
|
2032
|
+
__metadata("design:type", PermissionRulesParam)
|
|
2033
|
+
], StoreInventoryPermissionRulesParam.prototype, "getStoreUsed", void 0);
|
|
2034
|
+
__decorate([
|
|
2035
|
+
GNHashtableDataMember({ code: ParameterCode.RemoveStoreUsed, isOptional: true }),
|
|
2036
|
+
__metadata("design:type", PermissionRulesParam)
|
|
2037
|
+
], StoreInventoryPermissionRulesParam.prototype, "removeStoreUsed", void 0);
|
|
2038
|
+
DashboardModels.StoreInventoryPermissionRulesParam = StoreInventoryPermissionRulesParam;
|
|
2039
|
+
class CloudScriptPermissionRulesParam {
|
|
2040
|
+
}
|
|
2041
|
+
__decorate([
|
|
2042
|
+
GNHashtableDataMember({ code: ParameterCode.ExecuteFunction, isOptional: true }),
|
|
2043
|
+
__metadata("design:type", PermissionRulesParam)
|
|
2044
|
+
], CloudScriptPermissionRulesParam.prototype, "executeFunction", void 0);
|
|
2045
|
+
__decorate([
|
|
2046
|
+
GNHashtableDataMember({ code: ParameterCode.AddFunction, isOptional: true }),
|
|
2047
|
+
__metadata("design:type", PermissionRulesParam)
|
|
2048
|
+
], CloudScriptPermissionRulesParam.prototype, "addFunction", void 0);
|
|
2049
|
+
__decorate([
|
|
2050
|
+
GNHashtableDataMember({ code: ParameterCode.GetFunctions, isOptional: true }),
|
|
2051
|
+
__metadata("design:type", PermissionRulesParam)
|
|
2052
|
+
], CloudScriptPermissionRulesParam.prototype, "getFunctions", void 0);
|
|
2053
|
+
__decorate([
|
|
2054
|
+
GNHashtableDataMember({ code: ParameterCode.GetFunction, isOptional: true }),
|
|
2055
|
+
__metadata("design:type", PermissionRulesParam)
|
|
2056
|
+
], CloudScriptPermissionRulesParam.prototype, "getFunction", void 0);
|
|
2057
|
+
__decorate([
|
|
2058
|
+
GNHashtableDataMember({ code: ParameterCode.EditFunction, isOptional: true }),
|
|
2059
|
+
__metadata("design:type", PermissionRulesParam)
|
|
2060
|
+
], CloudScriptPermissionRulesParam.prototype, "editFunction", void 0);
|
|
2061
|
+
DashboardModels.CloudScriptPermissionRulesParam = CloudScriptPermissionRulesParam;
|
|
2062
|
+
class PermissionParam {
|
|
2063
|
+
}
|
|
2064
|
+
__decorate([
|
|
2065
|
+
GNHashtableDataMember({ code: ParameterCode.Authenticate, isOptional: true }),
|
|
2066
|
+
__metadata("design:type", AuthenticatePermissionRulesParam)
|
|
2067
|
+
], PermissionParam.prototype, "authenticate", void 0);
|
|
2068
|
+
__decorate([
|
|
2069
|
+
GNHashtableDataMember({ code: ParameterCode.MasterPlayer, isOptional: true }),
|
|
2070
|
+
__metadata("design:type", MasterPlayerPermissionRulesParam)
|
|
2071
|
+
], PermissionParam.prototype, "masterPlayer", void 0);
|
|
2072
|
+
__decorate([
|
|
2073
|
+
GNHashtableDataMember({ code: ParameterCode.GamePlayer, isOptional: true }),
|
|
2074
|
+
__metadata("design:type", GamePlayerPermissionRulesParam)
|
|
2075
|
+
], PermissionParam.prototype, "gamePlayer", void 0);
|
|
2076
|
+
__decorate([
|
|
2077
|
+
GNHashtableDataMember({ code: ParameterCode.CharacterPlayer, isOptional: true }),
|
|
2078
|
+
__metadata("design:type", CharacterPlayerPermissionRulesParam)
|
|
2079
|
+
], PermissionParam.prototype, "characterPlayer", void 0);
|
|
2080
|
+
__decorate([
|
|
2081
|
+
GNHashtableDataMember({ code: ParameterCode.Content, isOptional: true }),
|
|
2082
|
+
__metadata("design:type", ContentPermissionRulesParam)
|
|
2083
|
+
], PermissionParam.prototype, "content", void 0);
|
|
2084
|
+
__decorate([
|
|
2085
|
+
GNHashtableDataMember({ code: ParameterCode.Group, isOptional: true }),
|
|
2086
|
+
__metadata("design:type", GroupPermissionRulesParam)
|
|
2087
|
+
], PermissionParam.prototype, "group", void 0);
|
|
2088
|
+
__decorate([
|
|
2089
|
+
GNHashtableDataMember({ code: ParameterCode.Inventory, isOptional: true }),
|
|
2090
|
+
__metadata("design:type", InventoryPermissionRulesParam)
|
|
2091
|
+
], PermissionParam.prototype, "inventory", void 0);
|
|
2092
|
+
__decorate([
|
|
2093
|
+
GNHashtableDataMember({ code: ParameterCode.StoreInventory, isOptional: true }),
|
|
2094
|
+
__metadata("design:type", StoreInventoryPermissionRulesParam)
|
|
2095
|
+
], PermissionParam.prototype, "storeInventory", void 0);
|
|
2096
|
+
__decorate([
|
|
2097
|
+
GNHashtableDataMember({ code: ParameterCode.MasterAdmin, isOptional: true }),
|
|
2098
|
+
__metadata("design:type", MasterAdminPermissionRulesParam)
|
|
2099
|
+
], PermissionParam.prototype, "masterAdmin", void 0);
|
|
2100
|
+
__decorate([
|
|
2101
|
+
GNHashtableDataMember({ code: ParameterCode.Multiplayer, isOptional: true }),
|
|
2102
|
+
__metadata("design:type", MultiplayerPermissionRulesParam)
|
|
2103
|
+
], PermissionParam.prototype, "multiplayer", void 0);
|
|
2104
|
+
__decorate([
|
|
2105
|
+
GNHashtableDataMember({ code: ParameterCode.CloudScript, isOptional: true }),
|
|
2106
|
+
__metadata("design:type", CloudScriptPermissionRulesParam)
|
|
2107
|
+
], PermissionParam.prototype, "cloudScript", void 0);
|
|
2108
|
+
DashboardModels.PermissionParam = PermissionParam;
|
|
2109
|
+
class ChangePasswordAdminAccountRequestData {
|
|
2110
|
+
}
|
|
2111
|
+
__decorate([
|
|
2112
|
+
StringDataMember({ code: ParameterCode.CurrentPassword, minLength: 6, maxLength: 64, mustNonNull: true }),
|
|
2113
|
+
__metadata("design:type", String)
|
|
2114
|
+
], ChangePasswordAdminAccountRequestData.prototype, "currentPassword", void 0);
|
|
2115
|
+
__decorate([
|
|
2116
|
+
StringDataMember({ code: ParameterCode.Password, minLength: 6, maxLength: 64, mustNonNull: true }),
|
|
2117
|
+
__metadata("design:type", String)
|
|
2118
|
+
], ChangePasswordAdminAccountRequestData.prototype, "password", void 0);
|
|
2119
|
+
DashboardModels.ChangePasswordAdminAccountRequestData = ChangePasswordAdminAccountRequestData;
|
|
2120
|
+
class GetAdminAccountListRequestData {
|
|
2121
|
+
}
|
|
2122
|
+
DashboardModels.GetAdminAccountListRequestData = GetAdminAccountListRequestData;
|
|
2123
|
+
class GetGameInformationRequestData {
|
|
2124
|
+
}
|
|
2125
|
+
__decorate([
|
|
2126
|
+
StringDataMember({ code: ParameterCode.GameId, minLength: 2, maxLength: 32, mustNonNull: true }),
|
|
2127
|
+
__metadata("design:type", String)
|
|
2128
|
+
], GetGameInformationRequestData.prototype, "gameId", void 0);
|
|
2129
|
+
DashboardModels.GetGameInformationRequestData = GetGameInformationRequestData;
|
|
2130
|
+
class GetGameListRequestData {
|
|
2131
|
+
}
|
|
2132
|
+
DashboardModels.GetGameListRequestData = GetGameListRequestData;
|
|
2133
|
+
class GetMasterGameSettingsRequestData {
|
|
2134
|
+
}
|
|
2135
|
+
DashboardModels.GetMasterGameSettingsRequestData = GetMasterGameSettingsRequestData;
|
|
2136
|
+
class GetSecretInfoInformationRequestData {
|
|
2137
|
+
}
|
|
2138
|
+
__decorate([
|
|
2139
|
+
StringDataMember({ code: ParameterCode.SecretKey, minLength: 6, maxLength: 64, mustNonNull: true }),
|
|
2140
|
+
__metadata("design:type", String)
|
|
2141
|
+
], GetSecretInfoInformationRequestData.prototype, "secretKey", void 0);
|
|
2142
|
+
DashboardModels.GetSecretInfoInformationRequestData = GetSecretInfoInformationRequestData;
|
|
2143
|
+
class GetSecretInfoListRequestData {
|
|
2144
|
+
}
|
|
2145
|
+
DashboardModels.GetSecretInfoListRequestData = GetSecretInfoListRequestData;
|
|
2146
|
+
class GetServerLogRequestData {
|
|
2147
|
+
}
|
|
2148
|
+
__decorate([
|
|
2149
|
+
NumberDataMember({ code: ParameterCode.Skip, defaultValue: 0, minValue: 0, mustInt: true, isOptional: true }),
|
|
2150
|
+
__metadata("design:type", Number)
|
|
2151
|
+
], GetServerLogRequestData.prototype, "skip", void 0);
|
|
2152
|
+
__decorate([
|
|
2153
|
+
NumberDataMember({ code: ParameterCode.Limit, defaultValue: 50, minValue: 5, maxValue: 200, mustInt: true, isOptional: true }),
|
|
2154
|
+
__metadata("design:type", Number)
|
|
2155
|
+
], GetServerLogRequestData.prototype, "limit", void 0);
|
|
2156
|
+
DashboardModels.GetServerLogRequestData = GetServerLogRequestData;
|
|
2157
|
+
class CreateAdminAccountRequestData {
|
|
2158
|
+
}
|
|
2159
|
+
__decorate([
|
|
2160
|
+
StringDataMember({ code: ParameterCode.Username, minLength: 6, maxLength: 32, mustNonNull: true }),
|
|
2161
|
+
__metadata("design:type", String)
|
|
2162
|
+
], CreateAdminAccountRequestData.prototype, "username", void 0);
|
|
2163
|
+
__decorate([
|
|
2164
|
+
StringDataMember({ code: ParameterCode.Password, minLength: 6, maxLength: 64, mustNonNull: true }),
|
|
2165
|
+
__metadata("design:type", String)
|
|
2166
|
+
], CreateAdminAccountRequestData.prototype, "password", void 0);
|
|
2167
|
+
__decorate([
|
|
2168
|
+
StringDataMember({ code: ParameterCode.SecretKey, minLength: 6, maxLength: 64, mustNonNull: true }),
|
|
2169
|
+
__metadata("design:type", String)
|
|
2170
|
+
], CreateAdminAccountRequestData.prototype, "secretKey", void 0);
|
|
2171
|
+
DashboardModels.CreateAdminAccountRequestData = CreateAdminAccountRequestData;
|
|
2172
|
+
class CreateGameRequestData {
|
|
2173
|
+
}
|
|
2174
|
+
__decorate([
|
|
2175
|
+
StringDataMember({ code: ParameterCode.GameId, minLength: 2, maxLength: 32, mustNonNull: true }),
|
|
2176
|
+
__metadata("design:type", String)
|
|
2177
|
+
], CreateGameRequestData.prototype, "gameId", void 0);
|
|
2178
|
+
DashboardModels.CreateGameRequestData = CreateGameRequestData;
|
|
2179
|
+
class CreateSecretInfoRequestData {
|
|
2180
|
+
}
|
|
2181
|
+
__decorate([
|
|
2182
|
+
StringDataMember({ code: ParameterCode.SecretKey, minLength: 6, maxLength: 64, mustNonNull: true, isOptional: true }),
|
|
2183
|
+
__metadata("design:type", String)
|
|
2184
|
+
], CreateSecretInfoRequestData.prototype, "secretKey", void 0);
|
|
2185
|
+
__decorate([
|
|
2186
|
+
StringDataMember({ code: ParameterCode.GameId, minLength: 2, maxLength: 32, mustNonNull: true, isOptional: true }),
|
|
2187
|
+
__metadata("design:type", String)
|
|
2188
|
+
], CreateSecretInfoRequestData.prototype, "gameId", void 0);
|
|
2189
|
+
__decorate([
|
|
2190
|
+
NumberDataMember({ code: ParameterCode.Role, mustInt: true, minValue: 1, maxValue: 3 }),
|
|
2191
|
+
__metadata("design:type", Number)
|
|
2192
|
+
], CreateSecretInfoRequestData.prototype, "role", void 0);
|
|
2193
|
+
__decorate([
|
|
2194
|
+
GNHashtableDataMember({ code: ParameterCode.PermissionParam, isOptional: true }),
|
|
2195
|
+
__metadata("design:type", PermissionParam)
|
|
2196
|
+
], CreateSecretInfoRequestData.prototype, "permissionParam", void 0);
|
|
2197
|
+
DashboardModels.CreateSecretInfoRequestData = CreateSecretInfoRequestData;
|
|
2198
|
+
class LoginByAdminAccountRequestData {
|
|
2199
|
+
}
|
|
2200
|
+
__decorate([
|
|
2201
|
+
StringDataMember({ code: ParameterCode.Username, minLength: 4, maxLength: 32, mustNonNull: true }),
|
|
2202
|
+
__metadata("design:type", String)
|
|
2203
|
+
], LoginByAdminAccountRequestData.prototype, "username", void 0);
|
|
2204
|
+
__decorate([
|
|
2205
|
+
StringDataMember({ code: ParameterCode.Password, minLength: 6, maxLength: 64, mustNonNull: true }),
|
|
2206
|
+
__metadata("design:type", String)
|
|
2207
|
+
], LoginByAdminAccountRequestData.prototype, "password", void 0);
|
|
2208
|
+
DashboardModels.LoginByAdminAccountRequestData = LoginByAdminAccountRequestData;
|
|
2209
|
+
class RemoveAdminAccountRequestData {
|
|
2210
|
+
}
|
|
2211
|
+
__decorate([
|
|
2212
|
+
StringDataMember({ code: ParameterCode.UserId, minLength: 10, maxLength: 10, mustNonNull: true }),
|
|
2213
|
+
__metadata("design:type", String)
|
|
2214
|
+
], RemoveAdminAccountRequestData.prototype, "userId", void 0);
|
|
2215
|
+
DashboardModels.RemoveAdminAccountRequestData = RemoveAdminAccountRequestData;
|
|
2216
|
+
class SetGameInformationRequestData {
|
|
2217
|
+
}
|
|
2218
|
+
__decorate([
|
|
2219
|
+
StringDataMember({ code: ParameterCode.GameId, minLength: 2, maxLength: 32, mustNonNull: true }),
|
|
2220
|
+
__metadata("design:type", String)
|
|
2221
|
+
], SetGameInformationRequestData.prototype, "gameId", void 0);
|
|
2222
|
+
__decorate([
|
|
2223
|
+
StringDataMember({ code: ParameterCode.GameName, isOptional: true }),
|
|
2224
|
+
__metadata("design:type", String)
|
|
2225
|
+
], SetGameInformationRequestData.prototype, "gameName", void 0);
|
|
2226
|
+
__decorate([
|
|
2227
|
+
StringDataMember({ code: ParameterCode.GameDescription, isOptional: true }),
|
|
2228
|
+
__metadata("design:type", String)
|
|
2229
|
+
], SetGameInformationRequestData.prototype, "gameDescription", void 0);
|
|
2230
|
+
__decorate([
|
|
2231
|
+
StringDataMember({ code: ParameterCode.GameIconUrl, isOptional: true }),
|
|
2232
|
+
__metadata("design:type", String)
|
|
2233
|
+
], SetGameInformationRequestData.prototype, "gameIconUrl", void 0);
|
|
2234
|
+
__decorate([
|
|
2235
|
+
GNHashtableDataMember({ code: ParameterCode.GameSettings, isOptional: true }),
|
|
2236
|
+
__metadata("design:type", GameSettingsParam)
|
|
2237
|
+
], SetGameInformationRequestData.prototype, "gameSettings", void 0);
|
|
2238
|
+
__decorate([
|
|
2239
|
+
GNArrayDataMember({ code: ParameterCode.MatchmakingQueueSettings, isOptional: true, elementCls: MatchmakingQueueSettingsParam }),
|
|
2240
|
+
__metadata("design:type", Array)
|
|
2241
|
+
], SetGameInformationRequestData.prototype, "matchmakingQueueSettings", void 0);
|
|
2242
|
+
DashboardModels.SetGameInformationRequestData = SetGameInformationRequestData;
|
|
2243
|
+
class SetMasterGameSettingsRequestData {
|
|
2244
|
+
}
|
|
2245
|
+
__decorate([
|
|
2246
|
+
GNHashtableDataMember({ code: ParameterCode.ThirtPartySettings, isOptional: true }),
|
|
2247
|
+
__metadata("design:type", ThirtPartyParam)
|
|
2248
|
+
], SetMasterGameSettingsRequestData.prototype, "thirtPartySettings", void 0);
|
|
2249
|
+
__decorate([
|
|
2250
|
+
GNHashtableDataMember({ code: ParameterCode.MasterPlayerSettings, isOptional: true }),
|
|
2251
|
+
__metadata("design:type", MasterPlayerSettingsParam)
|
|
2252
|
+
], SetMasterGameSettingsRequestData.prototype, "masterPlayerSettings", void 0);
|
|
2253
|
+
__decorate([
|
|
2254
|
+
GNHashtableDataMember({ code: ParameterCode.EmailSettings, isOptional: true }),
|
|
2255
|
+
__metadata("design:type", EmailSettingsParam)
|
|
2256
|
+
], SetMasterGameSettingsRequestData.prototype, "emailSettings", void 0);
|
|
2257
|
+
__decorate([
|
|
2258
|
+
GNHashtableDataMember({ code: ParameterCode.PushNotificationSettings, isOptional: true }),
|
|
2259
|
+
__metadata("design:type", PushNotificationSettingsParam)
|
|
2260
|
+
], SetMasterGameSettingsRequestData.prototype, "pushNotificationSettings", void 0);
|
|
2261
|
+
DashboardModels.SetMasterGameSettingsRequestData = SetMasterGameSettingsRequestData;
|
|
2262
|
+
class SetPasswordAdminAccountRequestData {
|
|
2263
|
+
}
|
|
2264
|
+
__decorate([
|
|
2265
|
+
StringDataMember({ code: ParameterCode.UserId, minLength: 10, maxLength: 10, mustNonNull: true }),
|
|
2266
|
+
__metadata("design:type", String)
|
|
2267
|
+
], SetPasswordAdminAccountRequestData.prototype, "userId", void 0);
|
|
2268
|
+
__decorate([
|
|
2269
|
+
StringDataMember({ code: ParameterCode.Password, minLength: 6, maxLength: 64, mustNonNull: true }),
|
|
2270
|
+
__metadata("design:type", String)
|
|
2271
|
+
], SetPasswordAdminAccountRequestData.prototype, "password", void 0);
|
|
2272
|
+
DashboardModels.SetPasswordAdminAccountRequestData = SetPasswordAdminAccountRequestData;
|
|
2273
|
+
class SetSecretInfoInformationRequestData {
|
|
2274
|
+
}
|
|
2275
|
+
__decorate([
|
|
2276
|
+
StringDataMember({ code: ParameterCode.SecretKey, minLength: 6, maxLength: 64, mustNonNull: true }),
|
|
2277
|
+
__metadata("design:type", String)
|
|
2278
|
+
], SetSecretInfoInformationRequestData.prototype, "secretKey", void 0);
|
|
2279
|
+
__decorate([
|
|
2280
|
+
BooleanDataMember({ code: ParameterCode.Remove, isOptional: true }),
|
|
2281
|
+
__metadata("design:type", Boolean)
|
|
2282
|
+
], SetSecretInfoInformationRequestData.prototype, "remove", void 0);
|
|
2283
|
+
__decorate([
|
|
2284
|
+
NumberDataMember({ code: ParameterCode.TsExpire, isOptional: true }),
|
|
2285
|
+
__metadata("design:type", Number)
|
|
2286
|
+
], SetSecretInfoInformationRequestData.prototype, "tsExpire", void 0);
|
|
2287
|
+
__decorate([
|
|
2288
|
+
StringDataMember({ code: ParameterCode.Description, isOptional: true }),
|
|
2289
|
+
__metadata("design:type", String)
|
|
2290
|
+
], SetSecretInfoInformationRequestData.prototype, "description", void 0);
|
|
2291
|
+
__decorate([
|
|
2292
|
+
GNHashtableDataMember({ code: ParameterCode.PermissionParam, isOptional: true }),
|
|
2293
|
+
__metadata("design:type", PermissionParam)
|
|
2294
|
+
], SetSecretInfoInformationRequestData.prototype, "permissionParam", void 0);
|
|
2295
|
+
DashboardModels.SetSecretInfoInformationRequestData = SetSecretInfoInformationRequestData;
|
|
2296
|
+
class SetSecretKeyAdminAccountRequestData {
|
|
2297
|
+
}
|
|
2298
|
+
__decorate([
|
|
2299
|
+
StringDataMember({ code: ParameterCode.UserId, minLength: 10, maxLength: 10, mustNonNull: true }),
|
|
2300
|
+
__metadata("design:type", String)
|
|
2301
|
+
], SetSecretKeyAdminAccountRequestData.prototype, "userId", void 0);
|
|
2302
|
+
__decorate([
|
|
2303
|
+
StringDataMember({ code: ParameterCode.SecretKey, minLength: 6, maxLength: 64, mustNonNull: true }),
|
|
2304
|
+
__metadata("design:type", String)
|
|
2305
|
+
], SetSecretKeyAdminAccountRequestData.prototype, "secretKey", void 0);
|
|
2306
|
+
DashboardModels.SetSecretKeyAdminAccountRequestData = SetSecretKeyAdminAccountRequestData;
|
|
2307
|
+
class GetAnalyticsRequestData {
|
|
2308
|
+
}
|
|
2309
|
+
__decorate([
|
|
2310
|
+
NumberDataMember({ code: ParameterCode.Timestamp, minValue: 0, isOptional: true }),
|
|
2311
|
+
__metadata("design:type", Number)
|
|
2312
|
+
], GetAnalyticsRequestData.prototype, "timestamp", void 0);
|
|
2313
|
+
__decorate([
|
|
2314
|
+
BooleanDataMember({ code: ParameterCode.AnalyticsItem, isOptional: true }),
|
|
2315
|
+
__metadata("design:type", Boolean)
|
|
2316
|
+
], GetAnalyticsRequestData.prototype, "analyticsItem", void 0);
|
|
2317
|
+
__decorate([
|
|
2318
|
+
BooleanDataMember({ code: ParameterCode.Country, isOptional: true }),
|
|
2319
|
+
__metadata("design:type", Boolean)
|
|
2320
|
+
], GetAnalyticsRequestData.prototype, "country", void 0);
|
|
2321
|
+
__decorate([
|
|
2322
|
+
BooleanDataMember({ code: ParameterCode.RequestComplete, isOptional: true }),
|
|
2323
|
+
__metadata("design:type", Boolean)
|
|
2324
|
+
], GetAnalyticsRequestData.prototype, "requestComplete", void 0);
|
|
2325
|
+
__decorate([
|
|
2326
|
+
BooleanDataMember({ code: ParameterCode.OperationSystem, isOptional: true }),
|
|
2327
|
+
__metadata("design:type", Boolean)
|
|
2328
|
+
], GetAnalyticsRequestData.prototype, "operationSystem", void 0);
|
|
2329
|
+
__decorate([
|
|
2330
|
+
BooleanDataMember({ code: ParameterCode.DatabaseSystem, isOptional: true }),
|
|
2331
|
+
__metadata("design:type", Boolean)
|
|
2332
|
+
], GetAnalyticsRequestData.prototype, "databaseSystem", void 0);
|
|
2333
|
+
__decorate([
|
|
2334
|
+
BooleanDataMember({ code: ParameterCode.LogDatabaseSystem, isOptional: true }),
|
|
2335
|
+
__metadata("design:type", Boolean)
|
|
2336
|
+
], GetAnalyticsRequestData.prototype, "logDatabaseSystem", void 0);
|
|
2337
|
+
__decorate([
|
|
2338
|
+
BooleanDataMember({ code: ParameterCode.Cost, isOptional: true }),
|
|
2339
|
+
__metadata("design:type", Boolean)
|
|
2340
|
+
], GetAnalyticsRequestData.prototype, "cost", void 0);
|
|
2341
|
+
__decorate([
|
|
2342
|
+
BooleanDataMember({ code: ParameterCode.MonthlyCost, isOptional: true }),
|
|
2343
|
+
__metadata("design:type", Boolean)
|
|
2344
|
+
], GetAnalyticsRequestData.prototype, "monthlyCost", void 0);
|
|
2345
|
+
DashboardModels.GetAnalyticsRequestData = GetAnalyticsRequestData;
|
|
2346
|
+
class GetUsernameAdminAccountRequestData {
|
|
2347
|
+
}
|
|
2348
|
+
__decorate([
|
|
2349
|
+
StringDataMember({ code: ParameterCode.UserId, minLength: 10, maxLength: 10, mustNonNull: true }),
|
|
2350
|
+
__metadata("design:type", String)
|
|
2351
|
+
], GetUsernameAdminAccountRequestData.prototype, "userId", void 0);
|
|
2352
|
+
DashboardModels.GetUsernameAdminAccountRequestData = GetUsernameAdminAccountRequestData;
|
|
2353
|
+
class GetEventCallbackCloudScriptRequestData {
|
|
2354
|
+
}
|
|
2355
|
+
DashboardModels.GetEventCallbackCloudScriptRequestData = GetEventCallbackCloudScriptRequestData;
|
|
2356
|
+
class SetEventCallbackCloudScriptRequestData {
|
|
2357
|
+
}
|
|
2358
|
+
__decorate([
|
|
2359
|
+
StringDataMember({ code: ParameterCode.EventName, minLength: 6, maxLength: 128, mustNonNull: true }),
|
|
2360
|
+
__metadata("design:type", String)
|
|
2361
|
+
], SetEventCallbackCloudScriptRequestData.prototype, "eventName", void 0);
|
|
2362
|
+
__decorate([
|
|
2363
|
+
StringDataMember({ code: ParameterCode.Script, minLength: 6, maxLength: Number.MAX_SAFE_INTEGER, mustNonNull: true }),
|
|
2364
|
+
__metadata("design:type", String)
|
|
2365
|
+
], SetEventCallbackCloudScriptRequestData.prototype, "script", void 0);
|
|
2366
|
+
DashboardModels.SetEventCallbackCloudScriptRequestData = SetEventCallbackCloudScriptRequestData;
|
|
2367
|
+
class ResetStatisticsLeaderboardRequestData {
|
|
2368
|
+
}
|
|
2369
|
+
__decorate([
|
|
2370
|
+
NumberDataMember({ code: ParameterCode.Type, mustInt: true }),
|
|
2371
|
+
__metadata("design:type", Number)
|
|
2372
|
+
], ResetStatisticsLeaderboardRequestData.prototype, "type", void 0);
|
|
2373
|
+
__decorate([
|
|
2374
|
+
StringDataMember({ code: ParameterCode.Key, minLength: 2, maxLength: 32 }),
|
|
2375
|
+
__metadata("design:type", String)
|
|
2376
|
+
], ResetStatisticsLeaderboardRequestData.prototype, "key", void 0);
|
|
2377
|
+
__decorate([
|
|
2378
|
+
StringDataMember({ code: ParameterCode.Version, minLength: 2, maxLength: 32 }),
|
|
2379
|
+
__metadata("design:type", String)
|
|
2380
|
+
], ResetStatisticsLeaderboardRequestData.prototype, "version", void 0);
|
|
2381
|
+
__decorate([
|
|
2382
|
+
StringDataMember({ code: ParameterCode.GameId, minLength: 2, maxLength: 32, mustNonNull: true }),
|
|
2383
|
+
__metadata("design:type", String)
|
|
2384
|
+
], ResetStatisticsLeaderboardRequestData.prototype, "gameId", void 0);
|
|
2385
|
+
__decorate([
|
|
2386
|
+
StringDataMember({ code: ParameterCode.Log, minLength: 1, maxLength: 256, mustNonNull: true, isOptional: true }),
|
|
2387
|
+
__metadata("design:type", String)
|
|
2388
|
+
], ResetStatisticsLeaderboardRequestData.prototype, "log", void 0);
|
|
2389
|
+
__decorate([
|
|
2390
|
+
StringDataMember({ code: ParameterCode.CatalogId, minLength: 2, maxLength: 32, mustNonNull: true, isOptional: true }),
|
|
2391
|
+
__metadata("design:type", String)
|
|
2392
|
+
], ResetStatisticsLeaderboardRequestData.prototype, "catalogId", void 0);
|
|
2393
|
+
DashboardModels.ResetStatisticsLeaderboardRequestData = ResetStatisticsLeaderboardRequestData;
|
|
2394
|
+
class DeleteInDatabaseRequestData {
|
|
2395
|
+
}
|
|
2396
|
+
__decorate([
|
|
2397
|
+
NumberDataMember({ code: ParameterCode.Type, mustInt: true }),
|
|
2398
|
+
__metadata("design:type", Number)
|
|
2399
|
+
], DeleteInDatabaseRequestData.prototype, "type", void 0);
|
|
2400
|
+
__decorate([
|
|
2401
|
+
StringDataMember({ code: ParameterCode.Id, minLength: 2, maxLength: 32 }),
|
|
2402
|
+
__metadata("design:type", String)
|
|
2403
|
+
], DeleteInDatabaseRequestData.prototype, "id", void 0);
|
|
2404
|
+
__decorate([
|
|
2405
|
+
StringDataMember({ code: ParameterCode.GameId, minLength: 2, maxLength: 32, mustNonNull: true }),
|
|
2406
|
+
__metadata("design:type", String)
|
|
2407
|
+
], DeleteInDatabaseRequestData.prototype, "gameId", void 0);
|
|
2408
|
+
__decorate([
|
|
2409
|
+
StringDataMember({ code: ParameterCode.Log, minLength: 1, maxLength: 256, mustNonNull: true, isOptional: true }),
|
|
2410
|
+
__metadata("design:type", String)
|
|
2411
|
+
], DeleteInDatabaseRequestData.prototype, "log", void 0);
|
|
2412
|
+
DashboardModels.DeleteInDatabaseRequestData = DeleteInDatabaseRequestData;
|
|
2413
|
+
class GetBackupStatisticsLeaderboardVersionRequestData {
|
|
2414
|
+
}
|
|
2415
|
+
__decorate([
|
|
2416
|
+
StringDataMember({ code: ParameterCode.GameId, minLength: 2, maxLength: 32, mustNonNull: true }),
|
|
2417
|
+
__metadata("design:type", String)
|
|
2418
|
+
], GetBackupStatisticsLeaderboardVersionRequestData.prototype, "gameId", void 0);
|
|
2419
|
+
__decorate([
|
|
2420
|
+
NumberDataMember({ code: ParameterCode.Type, mustInt: true }),
|
|
2421
|
+
__metadata("design:type", Number)
|
|
2422
|
+
], GetBackupStatisticsLeaderboardVersionRequestData.prototype, "type", void 0);
|
|
2423
|
+
__decorate([
|
|
2424
|
+
StringDataMember({ code: ParameterCode.Key, minLength: 2, maxLength: 32 }),
|
|
2425
|
+
__metadata("design:type", String)
|
|
2426
|
+
], GetBackupStatisticsLeaderboardVersionRequestData.prototype, "key", void 0);
|
|
2427
|
+
DashboardModels.GetBackupStatisticsLeaderboardVersionRequestData = GetBackupStatisticsLeaderboardVersionRequestData;
|
|
2428
|
+
class GetServerGameDataRequestData {
|
|
2429
|
+
}
|
|
2430
|
+
__decorate([
|
|
2431
|
+
StringDataMember({ code: ParameterCode.GameId, minLength: 2, maxLength: 32, mustNonNull: true }),
|
|
2432
|
+
__metadata("design:type", String)
|
|
2433
|
+
], GetServerGameDataRequestData.prototype, "gameId", void 0);
|
|
2434
|
+
__decorate([
|
|
2435
|
+
BooleanDataMember({ code: ParameterCode.MasterPlayerCount, isOptional: true }),
|
|
2436
|
+
__metadata("design:type", Boolean)
|
|
2437
|
+
], GetServerGameDataRequestData.prototype, "masterPlayerCount", void 0);
|
|
2438
|
+
__decorate([
|
|
2439
|
+
BooleanDataMember({ code: ParameterCode.GamePlayerCount, isOptional: true }),
|
|
2440
|
+
__metadata("design:type", Boolean)
|
|
2441
|
+
], GetServerGameDataRequestData.prototype, "gamePlayerCount", void 0);
|
|
2442
|
+
__decorate([
|
|
2443
|
+
BooleanDataMember({ code: ParameterCode.CharacterPlayerCount, isOptional: true }),
|
|
2444
|
+
__metadata("design:type", Boolean)
|
|
2445
|
+
], GetServerGameDataRequestData.prototype, "characterPlayerCount", void 0);
|
|
2446
|
+
__decorate([
|
|
2447
|
+
BooleanDataMember({ code: ParameterCode.InventoryCount, isOptional: true }),
|
|
2448
|
+
__metadata("design:type", Boolean)
|
|
2449
|
+
], GetServerGameDataRequestData.prototype, "inventoryCount", void 0);
|
|
2450
|
+
__decorate([
|
|
2451
|
+
BooleanDataMember({ code: ParameterCode.StoreInventoryCount, isOptional: true }),
|
|
2452
|
+
__metadata("design:type", Boolean)
|
|
2453
|
+
], GetServerGameDataRequestData.prototype, "storeInventoryCount", void 0);
|
|
2454
|
+
__decorate([
|
|
2455
|
+
BooleanDataMember({ code: ParameterCode.GroupCount, isOptional: true }),
|
|
2456
|
+
__metadata("design:type", Boolean)
|
|
2457
|
+
], GetServerGameDataRequestData.prototype, "groupCount", void 0);
|
|
2458
|
+
__decorate([
|
|
2459
|
+
BooleanDataMember({ code: ParameterCode.Country, isOptional: true }),
|
|
2460
|
+
__metadata("design:type", Boolean)
|
|
2461
|
+
], GetServerGameDataRequestData.prototype, "country", void 0);
|
|
2462
|
+
__decorate([
|
|
2463
|
+
BooleanDataMember({ code: ParameterCode.Version, isOptional: true }),
|
|
2464
|
+
__metadata("design:type", Boolean)
|
|
2465
|
+
], GetServerGameDataRequestData.prototype, "version", void 0);
|
|
2466
|
+
DashboardModels.GetServerGameDataRequestData = GetServerGameDataRequestData;
|
|
2467
|
+
class AdminAccountResponseData {
|
|
2468
|
+
}
|
|
2469
|
+
__decorate([
|
|
2470
|
+
StringDataMember({ code: ParameterCode.UserId }),
|
|
2471
|
+
__metadata("design:type", String)
|
|
2472
|
+
], AdminAccountResponseData.prototype, "userId", void 0);
|
|
2473
|
+
__decorate([
|
|
2474
|
+
StringDataMember({ code: ParameterCode.Username }),
|
|
2475
|
+
__metadata("design:type", String)
|
|
2476
|
+
], AdminAccountResponseData.prototype, "username", void 0);
|
|
2477
|
+
__decorate([
|
|
2478
|
+
StringDataMember({ code: ParameterCode.SecretKey }),
|
|
2479
|
+
__metadata("design:type", String)
|
|
2480
|
+
], AdminAccountResponseData.prototype, "secretKey", void 0);
|
|
2481
|
+
DashboardModels.AdminAccountResponseData = AdminAccountResponseData;
|
|
2482
|
+
class GetAdminAccountListResponseData {
|
|
2483
|
+
}
|
|
2484
|
+
__decorate([
|
|
2485
|
+
GNArrayDataMember({ code: ParameterCode.Results, elementCls: AdminAccountResponseData }),
|
|
2486
|
+
__metadata("design:type", Array)
|
|
2487
|
+
], GetAdminAccountListResponseData.prototype, "results", void 0);
|
|
2488
|
+
DashboardModels.GetAdminAccountListResponseData = GetAdminAccountListResponseData;
|
|
2489
|
+
class GetGameInformationResponseData {
|
|
2490
|
+
}
|
|
2491
|
+
__decorate([
|
|
2492
|
+
StringDataMember({ code: ParameterCode.GameId }),
|
|
2493
|
+
__metadata("design:type", String)
|
|
2494
|
+
], GetGameInformationResponseData.prototype, "gameId", void 0);
|
|
2495
|
+
__decorate([
|
|
2496
|
+
NumberDataMember({ code: ParameterCode.TsCreate }),
|
|
2497
|
+
__metadata("design:type", Number)
|
|
2498
|
+
], GetGameInformationResponseData.prototype, "tsCreate", void 0);
|
|
2499
|
+
__decorate([
|
|
2500
|
+
StringDataMember({ code: ParameterCode.GameName }),
|
|
2501
|
+
__metadata("design:type", String)
|
|
2502
|
+
], GetGameInformationResponseData.prototype, "gameName", void 0);
|
|
2503
|
+
__decorate([
|
|
2504
|
+
StringDataMember({ code: ParameterCode.CreatorId }),
|
|
2505
|
+
__metadata("design:type", String)
|
|
2506
|
+
], GetGameInformationResponseData.prototype, "creatorId", void 0);
|
|
2507
|
+
__decorate([
|
|
2508
|
+
StringDataMember({ code: ParameterCode.GameDescription }),
|
|
2509
|
+
__metadata("design:type", String)
|
|
2510
|
+
], GetGameInformationResponseData.prototype, "gameDescription", void 0);
|
|
2511
|
+
__decorate([
|
|
2512
|
+
StringDataMember({ code: ParameterCode.GameIconUrl }),
|
|
2513
|
+
__metadata("design:type", String)
|
|
2514
|
+
], GetGameInformationResponseData.prototype, "gameIconUrl", void 0);
|
|
2515
|
+
__decorate([
|
|
2516
|
+
GNHashtableDataMember({ code: ParameterCode.GameSettings }),
|
|
2517
|
+
__metadata("design:type", GameSettingsParam)
|
|
2518
|
+
], GetGameInformationResponseData.prototype, "gameSettings", void 0);
|
|
2519
|
+
__decorate([
|
|
2520
|
+
GNArrayDataMember({ code: ParameterCode.MatchmakingQueueSettings, elementCls: MatchmakingQueueSettingsParam }),
|
|
2521
|
+
__metadata("design:type", Array)
|
|
2522
|
+
], GetGameInformationResponseData.prototype, "matchmakingQueueSettings", void 0);
|
|
2523
|
+
DashboardModels.GetGameInformationResponseData = GetGameInformationResponseData;
|
|
2524
|
+
class GameWithGameIdResponseData {
|
|
2525
|
+
}
|
|
2526
|
+
__decorate([
|
|
2527
|
+
StringDataMember({ code: ParameterCode.GameId }),
|
|
2528
|
+
__metadata("design:type", String)
|
|
2529
|
+
], GameWithGameIdResponseData.prototype, "gameId", void 0);
|
|
2530
|
+
DashboardModels.GameWithGameIdResponseData = GameWithGameIdResponseData;
|
|
2531
|
+
class GetGameListResponseData {
|
|
2532
|
+
}
|
|
2533
|
+
__decorate([
|
|
2534
|
+
GNArrayDataMember({ code: ParameterCode.Results, elementCls: GameWithGameIdResponseData }),
|
|
2535
|
+
__metadata("design:type", Array)
|
|
2536
|
+
], GetGameListResponseData.prototype, "results", void 0);
|
|
2537
|
+
DashboardModels.GetGameListResponseData = GetGameListResponseData;
|
|
2538
|
+
class GetMasterGameSettingsResponseData {
|
|
2539
|
+
}
|
|
2540
|
+
__decorate([
|
|
2541
|
+
GNHashtableDataMember({ code: ParameterCode.ThirtPartySettings }),
|
|
2542
|
+
__metadata("design:type", ThirtPartyParam)
|
|
2543
|
+
], GetMasterGameSettingsResponseData.prototype, "thirtPartySettings", void 0);
|
|
2544
|
+
__decorate([
|
|
2545
|
+
GNHashtableDataMember({ code: ParameterCode.MasterPlayerSettings }),
|
|
2546
|
+
__metadata("design:type", MasterPlayerSettingsParam)
|
|
2547
|
+
], GetMasterGameSettingsResponseData.prototype, "masterPlayerSettings", void 0);
|
|
2548
|
+
__decorate([
|
|
2549
|
+
GNHashtableDataMember({ code: ParameterCode.EmailSettings }),
|
|
2550
|
+
__metadata("design:type", EmailSettingsParam)
|
|
2551
|
+
], GetMasterGameSettingsResponseData.prototype, "emailSettings", void 0);
|
|
2552
|
+
__decorate([
|
|
2553
|
+
GNHashtableDataMember({ code: ParameterCode.PushNotificationSettings }),
|
|
2554
|
+
__metadata("design:type", PushNotificationSettingsParam)
|
|
2555
|
+
], GetMasterGameSettingsResponseData.prototype, "pushNotificationSettings", void 0);
|
|
2556
|
+
DashboardModels.GetMasterGameSettingsResponseData = GetMasterGameSettingsResponseData;
|
|
2557
|
+
class GetSecretInfoInformationResponseData {
|
|
2558
|
+
}
|
|
2559
|
+
__decorate([
|
|
2560
|
+
StringDataMember({ code: ParameterCode.SecretKey }),
|
|
2561
|
+
__metadata("design:type", String)
|
|
2562
|
+
], GetSecretInfoInformationResponseData.prototype, "secretKey", void 0);
|
|
2563
|
+
__decorate([
|
|
2564
|
+
StringDataMember({ code: ParameterCode.GameId }),
|
|
2565
|
+
__metadata("design:type", String)
|
|
2566
|
+
], GetSecretInfoInformationResponseData.prototype, "gameId", void 0);
|
|
2567
|
+
__decorate([
|
|
2568
|
+
NumberDataMember({ code: ParameterCode.Role }),
|
|
2569
|
+
__metadata("design:type", Number)
|
|
2570
|
+
], GetSecretInfoInformationResponseData.prototype, "role", void 0);
|
|
2571
|
+
__decorate([
|
|
2572
|
+
NumberDataMember({ code: ParameterCode.TsCreate }),
|
|
2573
|
+
__metadata("design:type", Number)
|
|
2574
|
+
], GetSecretInfoInformationResponseData.prototype, "tsCreate", void 0);
|
|
2575
|
+
__decorate([
|
|
2576
|
+
StringDataMember({ code: ParameterCode.CreatorId }),
|
|
2577
|
+
__metadata("design:type", String)
|
|
2578
|
+
], GetSecretInfoInformationResponseData.prototype, "creatorId", void 0);
|
|
2579
|
+
__decorate([
|
|
2580
|
+
BooleanDataMember({ code: ParameterCode.Remove }),
|
|
2581
|
+
__metadata("design:type", Boolean)
|
|
2582
|
+
], GetSecretInfoInformationResponseData.prototype, "remove", void 0);
|
|
2583
|
+
__decorate([
|
|
2584
|
+
NumberDataMember({ code: ParameterCode.TsExpire }),
|
|
2585
|
+
__metadata("design:type", Number)
|
|
2586
|
+
], GetSecretInfoInformationResponseData.prototype, "tsExpire", void 0);
|
|
2587
|
+
__decorate([
|
|
2588
|
+
StringDataMember({ code: ParameterCode.Description }),
|
|
2589
|
+
__metadata("design:type", String)
|
|
2590
|
+
], GetSecretInfoInformationResponseData.prototype, "description", void 0);
|
|
2591
|
+
__decorate([
|
|
2592
|
+
GNHashtableDataMember({ code: ParameterCode.PermissionParam }),
|
|
2593
|
+
__metadata("design:type", PermissionParam)
|
|
2594
|
+
], GetSecretInfoInformationResponseData.prototype, "permissionParam", void 0);
|
|
2595
|
+
DashboardModels.GetSecretInfoInformationResponseData = GetSecretInfoInformationResponseData;
|
|
2596
|
+
class SecretInfoWithSecretKeyResponseData {
|
|
2597
|
+
}
|
|
2598
|
+
__decorate([
|
|
2599
|
+
StringDataMember({ code: ParameterCode.SecretKey }),
|
|
2600
|
+
__metadata("design:type", String)
|
|
2601
|
+
], SecretInfoWithSecretKeyResponseData.prototype, "secretKey", void 0);
|
|
2602
|
+
DashboardModels.SecretInfoWithSecretKeyResponseData = SecretInfoWithSecretKeyResponseData;
|
|
2603
|
+
class GetSecretInfoListResponseData {
|
|
2604
|
+
}
|
|
2605
|
+
__decorate([
|
|
2606
|
+
GNArrayDataMember({ code: ParameterCode.AdminSecretKeys, elementCls: SecretInfoWithSecretKeyResponseData }),
|
|
2607
|
+
__metadata("design:type", Array)
|
|
2608
|
+
], GetSecretInfoListResponseData.prototype, "adminSecretKeys", void 0);
|
|
2609
|
+
__decorate([
|
|
2610
|
+
GNArrayDataMember({ code: ParameterCode.ServerSecretKeys, elementCls: SecretInfoWithSecretKeyResponseData }),
|
|
2611
|
+
__metadata("design:type", Array)
|
|
2612
|
+
], GetSecretInfoListResponseData.prototype, "serverSecretKeys", void 0);
|
|
2613
|
+
__decorate([
|
|
2614
|
+
GNArrayDataMember({ code: ParameterCode.PlayerSecretKeys, elementCls: SecretInfoWithSecretKeyResponseData }),
|
|
2615
|
+
__metadata("design:type", Array)
|
|
2616
|
+
], GetSecretInfoListResponseData.prototype, "playerSecretKeys", void 0);
|
|
2617
|
+
DashboardModels.GetSecretInfoListResponseData = GetSecretInfoListResponseData;
|
|
2618
|
+
class AdminAccountWithUserIdResponseData {
|
|
2619
|
+
}
|
|
2620
|
+
__decorate([
|
|
2621
|
+
StringDataMember({ code: ParameterCode.UserId }),
|
|
2622
|
+
__metadata("design:type", String)
|
|
2623
|
+
], AdminAccountWithUserIdResponseData.prototype, "userId", void 0);
|
|
2624
|
+
DashboardModels.AdminAccountWithUserIdResponseData = AdminAccountWithUserIdResponseData;
|
|
2625
|
+
class CreateAdminAccountResponseData {
|
|
2626
|
+
}
|
|
2627
|
+
__decorate([
|
|
2628
|
+
GNArrayDataMember({ code: ParameterCode.Results, elementCls: AdminAccountWithUserIdResponseData }),
|
|
2629
|
+
__metadata("design:type", Array)
|
|
2630
|
+
], CreateAdminAccountResponseData.prototype, "results", void 0);
|
|
2631
|
+
DashboardModels.CreateAdminAccountResponseData = CreateAdminAccountResponseData;
|
|
2632
|
+
class LoginByAdminAccountResponseData {
|
|
2633
|
+
}
|
|
2634
|
+
__decorate([
|
|
2635
|
+
StringDataMember({ code: ParameterCode.AuthToken }),
|
|
2636
|
+
__metadata("design:type", String)
|
|
2637
|
+
], LoginByAdminAccountResponseData.prototype, "authToken", void 0);
|
|
2638
|
+
DashboardModels.LoginByAdminAccountResponseData = LoginByAdminAccountResponseData;
|
|
2639
|
+
class GetServerLogResponseData {
|
|
2640
|
+
}
|
|
2641
|
+
__decorate([
|
|
2642
|
+
GNArrayDataMember({ code: ParameterCode.Results, elementCls: String }),
|
|
2643
|
+
__metadata("design:type", Array)
|
|
2644
|
+
], GetServerLogResponseData.prototype, "results", void 0);
|
|
2645
|
+
DashboardModels.GetServerLogResponseData = GetServerLogResponseData;
|
|
2646
|
+
class CountryRegionResponseData {
|
|
2647
|
+
}
|
|
2648
|
+
__decorate([
|
|
2649
|
+
StringDataMember({ code: ParameterCode.RegionCode }),
|
|
2650
|
+
__metadata("design:type", String)
|
|
2651
|
+
], CountryRegionResponseData.prototype, "regionCode", void 0);
|
|
2652
|
+
__decorate([
|
|
2653
|
+
StringDataMember({ code: ParameterCode.RegionName }),
|
|
2654
|
+
__metadata("design:type", String)
|
|
2655
|
+
], CountryRegionResponseData.prototype, "regionName", void 0);
|
|
2656
|
+
__decorate([
|
|
2657
|
+
NumberDataMember({ code: ParameterCode.CCU }),
|
|
2658
|
+
__metadata("design:type", Number)
|
|
2659
|
+
], CountryRegionResponseData.prototype, "ccu", void 0);
|
|
2660
|
+
__decorate([
|
|
2661
|
+
NumberDataMember({ code: ParameterCode.Latitude, isOptional: true, defaultValue: 0 }),
|
|
2662
|
+
__metadata("design:type", Number)
|
|
2663
|
+
], CountryRegionResponseData.prototype, "latitude", void 0);
|
|
2664
|
+
__decorate([
|
|
2665
|
+
NumberDataMember({ code: ParameterCode.Longitude, isOptional: true, defaultValue: 0 }),
|
|
2666
|
+
__metadata("design:type", Number)
|
|
2667
|
+
], CountryRegionResponseData.prototype, "longitude", void 0);
|
|
2668
|
+
DashboardModels.CountryRegionResponseData = CountryRegionResponseData;
|
|
2669
|
+
class CountryResponseData {
|
|
2670
|
+
}
|
|
2671
|
+
__decorate([
|
|
2672
|
+
StringDataMember({ code: ParameterCode.CountryCode }),
|
|
2673
|
+
__metadata("design:type", String)
|
|
2674
|
+
], CountryResponseData.prototype, "countryCode", void 0);
|
|
2675
|
+
__decorate([
|
|
2676
|
+
GNArrayDataMember({ code: ParameterCode.Regions, elementCls: CountryRegionResponseData }),
|
|
2677
|
+
__metadata("design:type", Array)
|
|
2678
|
+
], CountryResponseData.prototype, "regions", void 0);
|
|
2679
|
+
DashboardModels.CountryResponseData = CountryResponseData;
|
|
2680
|
+
class AnalyticsItemResponseData {
|
|
2681
|
+
}
|
|
2682
|
+
__decorate([
|
|
2683
|
+
NumberDataMember({ code: ParameterCode.CCU }),
|
|
2684
|
+
__metadata("design:type", Number)
|
|
2685
|
+
], AnalyticsItemResponseData.prototype, "ccu", void 0);
|
|
2686
|
+
__decorate([
|
|
2687
|
+
NumberDataMember({ code: ParameterCode.DAU }),
|
|
2688
|
+
__metadata("design:type", Number)
|
|
2689
|
+
], AnalyticsItemResponseData.prototype, "dau", void 0);
|
|
2690
|
+
__decorate([
|
|
2691
|
+
NumberDataMember({ code: ParameterCode.DAUSince0h }),
|
|
2692
|
+
__metadata("design:type", Number)
|
|
2693
|
+
], AnalyticsItemResponseData.prototype, "dauSince0h", void 0);
|
|
2694
|
+
__decorate([
|
|
2695
|
+
NumberDataMember({ code: ParameterCode.DNU }),
|
|
2696
|
+
__metadata("design:type", Number)
|
|
2697
|
+
], AnalyticsItemResponseData.prototype, "dnu", void 0);
|
|
2698
|
+
__decorate([
|
|
2699
|
+
NumberDataMember({ code: ParameterCode.DNUSince0h }),
|
|
2700
|
+
__metadata("design:type", Number)
|
|
2701
|
+
], AnalyticsItemResponseData.prototype, "dnuSince0h", void 0);
|
|
2702
|
+
__decorate([
|
|
2703
|
+
NumberDataMember({ code: ParameterCode.DRT }),
|
|
2704
|
+
__metadata("design:type", Number)
|
|
2705
|
+
], AnalyticsItemResponseData.prototype, "drt", void 0);
|
|
2706
|
+
__decorate([
|
|
2707
|
+
NumberDataMember({ code: ParameterCode.DRTSince0h }),
|
|
2708
|
+
__metadata("design:type", Number)
|
|
2709
|
+
], AnalyticsItemResponseData.prototype, "drtSince0h", void 0);
|
|
2710
|
+
__decorate([
|
|
2711
|
+
NumberDataMember({ code: ParameterCode.MAU }),
|
|
2712
|
+
__metadata("design:type", Number)
|
|
2713
|
+
], AnalyticsItemResponseData.prototype, "mau", void 0);
|
|
2714
|
+
__decorate([
|
|
2715
|
+
NumberDataMember({ code: ParameterCode.MAUSince0h1 }),
|
|
2716
|
+
__metadata("design:type", Number)
|
|
2717
|
+
], AnalyticsItemResponseData.prototype, "mauSince0h1", void 0);
|
|
2718
|
+
__decorate([
|
|
2719
|
+
NumberDataMember({ code: ParameterCode.MNU }),
|
|
2720
|
+
__metadata("design:type", Number)
|
|
2721
|
+
], AnalyticsItemResponseData.prototype, "mnu", void 0);
|
|
2722
|
+
__decorate([
|
|
2723
|
+
NumberDataMember({ code: ParameterCode.MNUSince0h1 }),
|
|
2724
|
+
__metadata("design:type", Number)
|
|
2725
|
+
], AnalyticsItemResponseData.prototype, "mnuSince0h1", void 0);
|
|
2726
|
+
__decorate([
|
|
2727
|
+
NumberDataMember({ code: ParameterCode.MRT }),
|
|
2728
|
+
__metadata("design:type", Number)
|
|
2729
|
+
], AnalyticsItemResponseData.prototype, "mrt", void 0);
|
|
2730
|
+
__decorate([
|
|
2731
|
+
NumberDataMember({ code: ParameterCode.MRTSince0h1 }),
|
|
2732
|
+
__metadata("design:type", Number)
|
|
2733
|
+
], AnalyticsItemResponseData.prototype, "mrtSince0h1", void 0);
|
|
2734
|
+
__decorate([
|
|
2735
|
+
NumberDataMember({ code: ParameterCode.AnalyticsPrice }),
|
|
2736
|
+
__metadata("design:type", Number)
|
|
2737
|
+
], AnalyticsItemResponseData.prototype, "analyticsPrice", void 0);
|
|
2738
|
+
DashboardModels.AnalyticsItemResponseData = AnalyticsItemResponseData;
|
|
2739
|
+
class MemoryUsageResponseData {
|
|
2740
|
+
}
|
|
2741
|
+
__decorate([
|
|
2742
|
+
NumberDataMember({ code: ParameterCode.FreeMemoryInBytes }),
|
|
2743
|
+
__metadata("design:type", Number)
|
|
2744
|
+
], MemoryUsageResponseData.prototype, "freeMemoryInBytes", void 0);
|
|
2745
|
+
__decorate([
|
|
2746
|
+
NumberDataMember({ code: ParameterCode.TotalMemoryInBytes }),
|
|
2747
|
+
__metadata("design:type", Number)
|
|
2748
|
+
], MemoryUsageResponseData.prototype, "totalMemoryInBytes", void 0);
|
|
2749
|
+
DashboardModels.MemoryUsageResponseData = MemoryUsageResponseData;
|
|
2750
|
+
class StorageUsageResponseData {
|
|
2751
|
+
}
|
|
2752
|
+
__decorate([
|
|
2753
|
+
StringDataMember({ code: ParameterCode.Name }),
|
|
2754
|
+
__metadata("design:type", String)
|
|
2755
|
+
], StorageUsageResponseData.prototype, "name", void 0);
|
|
2756
|
+
__decorate([
|
|
2757
|
+
NumberDataMember({ code: ParameterCode.FsTotalSizeInBytes }),
|
|
2758
|
+
__metadata("design:type", Number)
|
|
2759
|
+
], StorageUsageResponseData.prototype, "fsTotalSizeInBytes", void 0);
|
|
2760
|
+
__decorate([
|
|
2761
|
+
NumberDataMember({ code: ParameterCode.FsUsedSizeInBytes }),
|
|
2762
|
+
__metadata("design:type", Number)
|
|
2763
|
+
], StorageUsageResponseData.prototype, "fsUsedSizeInBytes", void 0);
|
|
2764
|
+
DashboardModels.StorageUsageResponseData = StorageUsageResponseData;
|
|
2765
|
+
class DatabaseSystemResponseData {
|
|
2766
|
+
}
|
|
2767
|
+
__decorate([
|
|
2768
|
+
NumberDataMember({ code: ParameterCode.FsTotalSizeInBytes }),
|
|
2769
|
+
__metadata("design:type", Number)
|
|
2770
|
+
], DatabaseSystemResponseData.prototype, "fsTotalSizeInBytes", void 0);
|
|
2771
|
+
__decorate([
|
|
2772
|
+
NumberDataMember({ code: ParameterCode.FsUsedSizeInBytes }),
|
|
2773
|
+
__metadata("design:type", Number)
|
|
2774
|
+
], DatabaseSystemResponseData.prototype, "fsUsedSizeInBytes", void 0);
|
|
2775
|
+
__decorate([
|
|
2776
|
+
NumberDataMember({ code: ParameterCode.TotalSizeInBytes }),
|
|
2777
|
+
__metadata("design:type", Number)
|
|
2778
|
+
], DatabaseSystemResponseData.prototype, "totalSizeInBytes", void 0);
|
|
2779
|
+
__decorate([
|
|
2780
|
+
NumberDataMember({ code: ParameterCode.Collections }),
|
|
2781
|
+
__metadata("design:type", Number)
|
|
2782
|
+
], DatabaseSystemResponseData.prototype, "collections", void 0);
|
|
2783
|
+
__decorate([
|
|
2784
|
+
NumberDataMember({ code: ParameterCode.Objects }),
|
|
2785
|
+
__metadata("design:type", Number)
|
|
2786
|
+
], DatabaseSystemResponseData.prototype, "objects", void 0);
|
|
2787
|
+
__decorate([
|
|
2788
|
+
NumberDataMember({ code: ParameterCode.Indexes }),
|
|
2789
|
+
__metadata("design:type", Number)
|
|
2790
|
+
], DatabaseSystemResponseData.prototype, "indexes", void 0);
|
|
2791
|
+
DashboardModels.DatabaseSystemResponseData = DatabaseSystemResponseData;
|
|
2792
|
+
class OperationSystemResponseData {
|
|
2793
|
+
}
|
|
2794
|
+
__decorate([
|
|
2795
|
+
NumberDataMember({ code: ParameterCode.CpuUsage }),
|
|
2796
|
+
__metadata("design:type", Number)
|
|
2797
|
+
], OperationSystemResponseData.prototype, "cpuUsage", void 0);
|
|
2798
|
+
__decorate([
|
|
2799
|
+
GNHashtableDataMember({ code: ParameterCode.MemoryUsage }),
|
|
2800
|
+
__metadata("design:type", MemoryUsageResponseData)
|
|
2801
|
+
], OperationSystemResponseData.prototype, "memoryUsage", void 0);
|
|
2802
|
+
__decorate([
|
|
2803
|
+
GNArrayDataMember({ code: ParameterCode.StorageUsage, elementCls: StorageUsageResponseData }),
|
|
2804
|
+
__metadata("design:type", Array)
|
|
2805
|
+
], OperationSystemResponseData.prototype, "storageUsage", void 0);
|
|
2806
|
+
DashboardModels.OperationSystemResponseData = OperationSystemResponseData;
|
|
2807
|
+
class RequestCompleteErrorCodeResponseData {
|
|
2808
|
+
}
|
|
2809
|
+
__decorate([
|
|
2810
|
+
NumberDataMember({ code: ParameterCode.ErrorCode }),
|
|
2811
|
+
__metadata("design:type", Number)
|
|
2812
|
+
], RequestCompleteErrorCodeResponseData.prototype, "errorCode", void 0);
|
|
2813
|
+
__decorate([
|
|
2814
|
+
NumberDataMember({ code: ParameterCode.Count }),
|
|
2815
|
+
__metadata("design:type", Number)
|
|
2816
|
+
], RequestCompleteErrorCodeResponseData.prototype, "count", void 0);
|
|
2817
|
+
DashboardModels.RequestCompleteErrorCodeResponseData = RequestCompleteErrorCodeResponseData;
|
|
2818
|
+
class RequestCompleteResponseData {
|
|
2819
|
+
}
|
|
2820
|
+
__decorate([
|
|
2821
|
+
StringDataMember({ code: ParameterCode.EventName }),
|
|
2822
|
+
__metadata("design:type", String)
|
|
2823
|
+
], RequestCompleteResponseData.prototype, "eventName", void 0);
|
|
2824
|
+
__decorate([
|
|
2825
|
+
GNArrayDataMember({ code: ParameterCode.Results, elementCls: RequestCompleteErrorCodeResponseData }),
|
|
2826
|
+
__metadata("design:type", Array)
|
|
2827
|
+
], RequestCompleteResponseData.prototype, "results", void 0);
|
|
2828
|
+
DashboardModels.RequestCompleteResponseData = RequestCompleteResponseData;
|
|
2829
|
+
class CostResponseData {
|
|
2830
|
+
}
|
|
2831
|
+
__decorate([
|
|
2832
|
+
NumberDataMember({ code: ParameterCode.RequestCount }),
|
|
2833
|
+
__metadata("design:type", Number)
|
|
2834
|
+
], CostResponseData.prototype, "requestCount", void 0);
|
|
2835
|
+
__decorate([
|
|
2836
|
+
NumberDataMember({ code: ParameterCode.MatchmakingRequestCount }),
|
|
2837
|
+
__metadata("design:type", Number)
|
|
2838
|
+
], CostResponseData.prototype, "matchmakingRequestCount", void 0);
|
|
2839
|
+
__decorate([
|
|
2840
|
+
NumberDataMember({ code: ParameterCode.CloudScriptGBs }),
|
|
2841
|
+
__metadata("design:type", Number)
|
|
2842
|
+
], CostResponseData.prototype, "cloudScriptGBs", void 0);
|
|
2843
|
+
__decorate([
|
|
2844
|
+
NumberDataMember({ code: ParameterCode.StorageSizeInBytes }),
|
|
2845
|
+
__metadata("design:type", Number)
|
|
2846
|
+
], CostResponseData.prototype, "storageSizeInBytes", void 0);
|
|
2847
|
+
__decorate([
|
|
2848
|
+
NumberDataMember({ code: ParameterCode.DataTransferSizeInBytes }),
|
|
2849
|
+
__metadata("design:type", Number)
|
|
2850
|
+
], CostResponseData.prototype, "dataTransferSizeInBytes", void 0);
|
|
2851
|
+
DashboardModels.CostResponseData = CostResponseData;
|
|
2852
|
+
class GetAnalyticsResponseData {
|
|
2853
|
+
}
|
|
2854
|
+
__decorate([
|
|
2855
|
+
GNHashtableDataMember({ code: ParameterCode.AnalyticsItem, isOptional: true }),
|
|
2856
|
+
__metadata("design:type", AnalyticsItemResponseData)
|
|
2857
|
+
], GetAnalyticsResponseData.prototype, "analyticsItem", void 0);
|
|
2858
|
+
__decorate([
|
|
2859
|
+
GNArrayDataMember({ code: ParameterCode.Country, elementCls: CountryResponseData, isOptional: true }),
|
|
2860
|
+
__metadata("design:type", Array)
|
|
2861
|
+
], GetAnalyticsResponseData.prototype, "country", void 0);
|
|
2862
|
+
__decorate([
|
|
2863
|
+
GNHashtableDataMember({ code: ParameterCode.OperationSystem, isOptional: true }),
|
|
2864
|
+
__metadata("design:type", OperationSystemResponseData)
|
|
2865
|
+
], GetAnalyticsResponseData.prototype, "operationSystem", void 0);
|
|
2866
|
+
__decorate([
|
|
2867
|
+
GNArrayDataMember({ code: ParameterCode.RequestComplete, elementCls: RequestCompleteResponseData, isOptional: true }),
|
|
2868
|
+
__metadata("design:type", Array)
|
|
2869
|
+
], GetAnalyticsResponseData.prototype, "requestComplete", void 0);
|
|
2870
|
+
__decorate([
|
|
2871
|
+
GNHashtableDataMember({ code: ParameterCode.DatabaseSystem, isOptional: true }),
|
|
2872
|
+
__metadata("design:type", DatabaseSystemResponseData)
|
|
2873
|
+
], GetAnalyticsResponseData.prototype, "databaseSystem", void 0);
|
|
2874
|
+
__decorate([
|
|
2875
|
+
GNHashtableDataMember({ code: ParameterCode.LogDatabaseSystem, isOptional: true }),
|
|
2876
|
+
__metadata("design:type", DatabaseSystemResponseData)
|
|
2877
|
+
], GetAnalyticsResponseData.prototype, "logDatabaseSystem", void 0);
|
|
2878
|
+
__decorate([
|
|
2879
|
+
GNHashtableDataMember({ code: ParameterCode.Cost, isOptional: true }),
|
|
2880
|
+
__metadata("design:type", CostResponseData)
|
|
2881
|
+
], GetAnalyticsResponseData.prototype, "cost", void 0);
|
|
2882
|
+
__decorate([
|
|
2883
|
+
GNHashtableDataMember({ code: ParameterCode.MonthlyCost, isOptional: true }),
|
|
2884
|
+
__metadata("design:type", CostResponseData)
|
|
2885
|
+
], GetAnalyticsResponseData.prototype, "monthlyCost", void 0);
|
|
2886
|
+
DashboardModels.GetAnalyticsResponseData = GetAnalyticsResponseData;
|
|
2887
|
+
class GetUsernameAdminAccountResponseData {
|
|
2888
|
+
}
|
|
2889
|
+
__decorate([
|
|
2890
|
+
StringDataMember({ code: ParameterCode.Username }),
|
|
2891
|
+
__metadata("design:type", String)
|
|
2892
|
+
], GetUsernameAdminAccountResponseData.prototype, "username", void 0);
|
|
2893
|
+
DashboardModels.GetUsernameAdminAccountResponseData = GetUsernameAdminAccountResponseData;
|
|
2894
|
+
class ChildScriptResponseData {
|
|
2895
|
+
}
|
|
2896
|
+
__decorate([
|
|
2897
|
+
StringDataMember({ code: ParameterCode.EventName }),
|
|
2898
|
+
__metadata("design:type", String)
|
|
2899
|
+
], ChildScriptResponseData.prototype, "eventName", void 0);
|
|
2900
|
+
__decorate([
|
|
2901
|
+
StringDataMember({ code: ParameterCode.Script }),
|
|
2902
|
+
__metadata("design:type", String)
|
|
2903
|
+
], ChildScriptResponseData.prototype, "script", void 0);
|
|
2904
|
+
__decorate([
|
|
2905
|
+
BooleanDataMember({ code: ParameterCode.HasEdit }),
|
|
2906
|
+
__metadata("design:type", Boolean)
|
|
2907
|
+
], ChildScriptResponseData.prototype, "hasEdit", void 0);
|
|
2908
|
+
DashboardModels.ChildScriptResponseData = ChildScriptResponseData;
|
|
2909
|
+
class EventCallbackCloudScriptResponseData {
|
|
2910
|
+
}
|
|
2911
|
+
__decorate([
|
|
2912
|
+
StringDataMember({ code: ParameterCode.Type }),
|
|
2913
|
+
__metadata("design:type", String)
|
|
2914
|
+
], EventCallbackCloudScriptResponseData.prototype, "type", void 0);
|
|
2915
|
+
__decorate([
|
|
2916
|
+
NumberDataMember({ code: ParameterCode.TsCreate }),
|
|
2917
|
+
__metadata("design:type", Number)
|
|
2918
|
+
], EventCallbackCloudScriptResponseData.prototype, "tsCreate", void 0);
|
|
2919
|
+
__decorate([
|
|
2920
|
+
StringDataMember({ code: ParameterCode.Version }),
|
|
2921
|
+
__metadata("design:type", String)
|
|
2922
|
+
], EventCallbackCloudScriptResponseData.prototype, "version", void 0);
|
|
2923
|
+
__decorate([
|
|
2924
|
+
GNArrayDataMember({ code: ParameterCode.ChildScripts, elementCls: ChildScriptResponseData }),
|
|
2925
|
+
__metadata("design:type", Array)
|
|
2926
|
+
], EventCallbackCloudScriptResponseData.prototype, "childScripts", void 0);
|
|
2927
|
+
DashboardModels.EventCallbackCloudScriptResponseData = EventCallbackCloudScriptResponseData;
|
|
2928
|
+
class GetEventCallbackCloudScriptResponseData {
|
|
2929
|
+
}
|
|
2930
|
+
__decorate([
|
|
2931
|
+
GNArrayDataMember({ code: ParameterCode.Results, elementCls: EventCallbackCloudScriptResponseData }),
|
|
2932
|
+
__metadata("design:type", Array)
|
|
2933
|
+
], GetEventCallbackCloudScriptResponseData.prototype, "results", void 0);
|
|
2934
|
+
DashboardModels.GetEventCallbackCloudScriptResponseData = GetEventCallbackCloudScriptResponseData;
|
|
2935
|
+
class SetEventCallbackCloudScriptResponseData {
|
|
2936
|
+
}
|
|
2937
|
+
__decorate([
|
|
2938
|
+
StringDataMember({ code: ParameterCode.ErrorMessage }),
|
|
2939
|
+
__metadata("design:type", String)
|
|
2940
|
+
], SetEventCallbackCloudScriptResponseData.prototype, "errorMessage", void 0);
|
|
2941
|
+
DashboardModels.SetEventCallbackCloudScriptResponseData = SetEventCallbackCloudScriptResponseData;
|
|
2942
|
+
class BackupStatisticsLeaderboardVersionResponseData {
|
|
2943
|
+
}
|
|
2944
|
+
__decorate([
|
|
2945
|
+
StringDataMember({ code: ParameterCode.Version }),
|
|
2946
|
+
__metadata("design:type", String)
|
|
2947
|
+
], BackupStatisticsLeaderboardVersionResponseData.prototype, "version", void 0);
|
|
2948
|
+
__decorate([
|
|
2949
|
+
StringDataMember({ code: ParameterCode.Log }),
|
|
2950
|
+
__metadata("design:type", String)
|
|
2951
|
+
], BackupStatisticsLeaderboardVersionResponseData.prototype, "log", void 0);
|
|
2952
|
+
__decorate([
|
|
2953
|
+
NumberDataMember({ code: ParameterCode.TsCreate }),
|
|
2954
|
+
__metadata("design:type", Number)
|
|
2955
|
+
], BackupStatisticsLeaderboardVersionResponseData.prototype, "tsCreate", void 0);
|
|
2956
|
+
DashboardModels.BackupStatisticsLeaderboardVersionResponseData = BackupStatisticsLeaderboardVersionResponseData;
|
|
2957
|
+
class GetBackupStatisticsLeaderboardVersionResponseData {
|
|
2958
|
+
}
|
|
2959
|
+
__decorate([
|
|
2960
|
+
GNArrayDataMember({ code: ParameterCode.Results, elementCls: BackupStatisticsLeaderboardVersionResponseData }),
|
|
2961
|
+
__metadata("design:type", Array)
|
|
2962
|
+
], GetBackupStatisticsLeaderboardVersionResponseData.prototype, "results", void 0);
|
|
2963
|
+
DashboardModels.GetBackupStatisticsLeaderboardVersionResponseData = GetBackupStatisticsLeaderboardVersionResponseData;
|
|
2964
|
+
class GetServerGameDataResponseData {
|
|
2965
|
+
}
|
|
2966
|
+
__decorate([
|
|
2967
|
+
NumberDataMember({ code: ParameterCode.MasterPlayerCount, isOptional: true }),
|
|
2968
|
+
__metadata("design:type", Number)
|
|
2969
|
+
], GetServerGameDataResponseData.prototype, "masterPlayerCount", void 0);
|
|
2970
|
+
__decorate([
|
|
2971
|
+
NumberDataMember({ code: ParameterCode.GamePlayerCount, isOptional: true }),
|
|
2972
|
+
__metadata("design:type", Number)
|
|
2973
|
+
], GetServerGameDataResponseData.prototype, "gamePlayerCount", void 0);
|
|
2974
|
+
__decorate([
|
|
2975
|
+
NumberDataMember({ code: ParameterCode.CharacterPlayerCount, isOptional: true }),
|
|
2976
|
+
__metadata("design:type", Number)
|
|
2977
|
+
], GetServerGameDataResponseData.prototype, "characterPlayerCount", void 0);
|
|
2978
|
+
__decorate([
|
|
2979
|
+
NumberDataMember({ code: ParameterCode.InventoryCount, isOptional: true }),
|
|
2980
|
+
__metadata("design:type", Number)
|
|
2981
|
+
], GetServerGameDataResponseData.prototype, "inventoryCount", void 0);
|
|
2982
|
+
__decorate([
|
|
2983
|
+
NumberDataMember({ code: ParameterCode.StoreInventoryCount, isOptional: true }),
|
|
2984
|
+
__metadata("design:type", Number)
|
|
2985
|
+
], GetServerGameDataResponseData.prototype, "storeInventoryCount", void 0);
|
|
2986
|
+
__decorate([
|
|
2987
|
+
NumberDataMember({ code: ParameterCode.GroupCount, isOptional: true }),
|
|
2988
|
+
__metadata("design:type", Number)
|
|
2989
|
+
], GetServerGameDataResponseData.prototype, "groupCount", void 0);
|
|
2990
|
+
__decorate([
|
|
2991
|
+
GNArrayDataMember({ code: ParameterCode.Country, elementCls: CountryResponseData, isOptional: true }),
|
|
2992
|
+
__metadata("design:type", Array)
|
|
2993
|
+
], GetServerGameDataResponseData.prototype, "country", void 0);
|
|
2994
|
+
__decorate([
|
|
2995
|
+
StringDataMember({ code: ParameterCode.Version, isOptional: true }),
|
|
2996
|
+
__metadata("design:type", String)
|
|
2997
|
+
], GetServerGameDataResponseData.prototype, "version", void 0);
|
|
2998
|
+
DashboardModels.GetServerGameDataResponseData = GetServerGameDataResponseData;
|
|
2999
|
+
class EmptyResponseData {
|
|
3000
|
+
}
|
|
3001
|
+
DashboardModels.EmptyResponseData = EmptyResponseData;
|
|
3002
|
+
})(DashboardModels || (DashboardModels = {}));
|