@xmobitea/gn-typescript-client 2.3.1 → 2.3.2-esnext

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