@xmobitea/gn-server 2.0.1 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/GN-app-api/service/GenericService.d.ts +1 -1
- package/dist/GN-app-api/service/IGenericService.d.ts +2 -2
- package/dist/index.d.ts +130 -26
- package/dist/index.js +443 -120
- package/gn.sh +27 -18
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1479,11 +1479,15 @@ class LoginByGenericServiceRequestHandler extends LoginBaseRequestHandler_1.Logi
|
|
|
1479
1479
|
return operationResponse;
|
|
1480
1480
|
}
|
|
1481
1481
|
let serviceResponse = yield this.gnServer.getGenericService().verifyGenericService(request.serviceName, request.serviceData);
|
|
1482
|
-
if (serviceResponse == null || serviceResponse.status
|
|
1482
|
+
if (serviceResponse == null || serviceResponse.status == "ServiceNotFound") {
|
|
1483
1483
|
xDebug_1.Debug.log("service name error " + serviceResponse.error);
|
|
1484
1484
|
operationResponse.setParameter(ParameterCode_1.ParameterCode.ErrorCode, GNErrorCode_1.GNErrorCode.ServiceNameNotFound);
|
|
1485
1485
|
return operationResponse;
|
|
1486
1486
|
}
|
|
1487
|
+
if (!serviceResponse.serviceId || serviceResponse.status == "VerifyError") {
|
|
1488
|
+
operationResponse.setParameter(ParameterCode_1.ParameterCode.ErrorCode, GNErrorCode_1.GNErrorCode.AccountNotFound);
|
|
1489
|
+
return operationResponse;
|
|
1490
|
+
}
|
|
1487
1491
|
let serviceId = serviceResponse.serviceId;
|
|
1488
1492
|
let masterPlayerFindOptions = this.convertToMasterPlayerFindOptions(request.infoRequestParam);
|
|
1489
1493
|
let masterPlayer = yield this.gnServer.getDatabase().loadMasterPlayerByGenericServiceAsync(request.serviceName, serviceId, masterPlayerFindOptions);
|
|
@@ -1522,7 +1526,7 @@ exports.LoginByGenericServiceRequestHandler = LoginByGenericServiceRequestHandle
|
|
|
1522
1526
|
|
|
1523
1527
|
/***/ }),
|
|
1524
1528
|
|
|
1525
|
-
/***/
|
|
1529
|
+
/***/ 8888:
|
|
1526
1530
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
1527
1531
|
|
|
1528
1532
|
|
|
@@ -13677,7 +13681,7 @@ const GNParameterCode_1 = __webpack_require__(1252);
|
|
|
13677
13681
|
const GNData_1 = __webpack_require__(1136);
|
|
13678
13682
|
const GNErrorCode_1 = __webpack_require__(6464);
|
|
13679
13683
|
const RequestHandler_1 = __webpack_require__(9264);
|
|
13680
|
-
const MasterGameSettings_1 = __webpack_require__(
|
|
13684
|
+
const MasterGameSettings_1 = __webpack_require__(1012);
|
|
13681
13685
|
class GetMasterGameSettingsOperationRequest extends OperationRequest_1.OperationRequest {
|
|
13682
13686
|
isValidRequest() {
|
|
13683
13687
|
if (!super.isValidRequest())
|
|
@@ -19045,7 +19049,7 @@ const DataMember_1 = __webpack_require__(4628);
|
|
|
19045
19049
|
const GNParameterCode_1 = __webpack_require__(1252);
|
|
19046
19050
|
const GNErrorCode_1 = __webpack_require__(6464);
|
|
19047
19051
|
const RequestHandler_1 = __webpack_require__(9264);
|
|
19048
|
-
const MasterGameSettings_1 = __webpack_require__(
|
|
19052
|
+
const MasterGameSettings_1 = __webpack_require__(1012);
|
|
19049
19053
|
const ThirtPartyParam_1 = __webpack_require__(8416);
|
|
19050
19054
|
const MasterPlayerSettingsParam_1 = __webpack_require__(8036);
|
|
19051
19055
|
class SetMasterGameSettingsOperationRequest extends OperationRequest_1.OperationRequest {
|
|
@@ -24337,7 +24341,7 @@ exports.GetFriendStatisticsLeaderboardRequestHandler = GetFriendStatisticsLeader
|
|
|
24337
24341
|
|
|
24338
24342
|
/***/ }),
|
|
24339
24343
|
|
|
24340
|
-
/***/
|
|
24344
|
+
/***/ 5684:
|
|
24341
24345
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
24342
24346
|
|
|
24343
24347
|
|
|
@@ -39793,7 +39797,7 @@ exports.GetItemDataRequestHandler = GetItemDataRequestHandler;
|
|
|
39793
39797
|
|
|
39794
39798
|
/***/ }),
|
|
39795
39799
|
|
|
39796
|
-
/***/
|
|
39800
|
+
/***/ 2488:
|
|
39797
39801
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
39798
39802
|
|
|
39799
39803
|
|
|
@@ -46335,7 +46339,7 @@ const DataMember_1 = __webpack_require__(4628);
|
|
|
46335
46339
|
const GNParameterCode_1 = __webpack_require__(1252);
|
|
46336
46340
|
const GNErrorCode_1 = __webpack_require__(6464);
|
|
46337
46341
|
const MasterPlayerBaseRequestHandler_1 = __webpack_require__(9716);
|
|
46338
|
-
const InfoRequestParam_1 = __webpack_require__(
|
|
46342
|
+
const InfoRequestParam_1 = __webpack_require__(8632);
|
|
46339
46343
|
class GetPlayerInformationOperationRequest extends OperationRequest_1.OperationRequest {
|
|
46340
46344
|
isValidRequest() {
|
|
46341
46345
|
if (!super.isValidRequest())
|
|
@@ -46661,7 +46665,7 @@ const GNParameterCode_1 = __webpack_require__(1252);
|
|
|
46661
46665
|
const GNData_1 = __webpack_require__(1136);
|
|
46662
46666
|
const GNErrorCode_1 = __webpack_require__(6464);
|
|
46663
46667
|
const MasterPlayerBaseRequestHandler_1 = __webpack_require__(9716);
|
|
46664
|
-
const InfoRequestParam_1 = __webpack_require__(
|
|
46668
|
+
const InfoRequestParam_1 = __webpack_require__(8632);
|
|
46665
46669
|
class GetPlayersWithAppleOperationRequest extends OperationRequest_1.OperationRequest {
|
|
46666
46670
|
isValidRequest() {
|
|
46667
46671
|
if (!super.isValidRequest())
|
|
@@ -46812,7 +46816,7 @@ const GNParameterCode_1 = __webpack_require__(1252);
|
|
|
46812
46816
|
const GNData_1 = __webpack_require__(1136);
|
|
46813
46817
|
const GNErrorCode_1 = __webpack_require__(6464);
|
|
46814
46818
|
const MasterPlayerBaseRequestHandler_1 = __webpack_require__(9716);
|
|
46815
|
-
const InfoRequestParam_1 = __webpack_require__(
|
|
46819
|
+
const InfoRequestParam_1 = __webpack_require__(8632);
|
|
46816
46820
|
const DisplayNameUtility_1 = __webpack_require__(2784);
|
|
46817
46821
|
class GetPlayersWithDisplayNameOperationRequest extends OperationRequest_1.OperationRequest {
|
|
46818
46822
|
isValidRequest() {
|
|
@@ -46976,7 +46980,7 @@ const GNParameterCode_1 = __webpack_require__(1252);
|
|
|
46976
46980
|
const GNData_1 = __webpack_require__(1136);
|
|
46977
46981
|
const GNErrorCode_1 = __webpack_require__(6464);
|
|
46978
46982
|
const MasterPlayerBaseRequestHandler_1 = __webpack_require__(9716);
|
|
46979
|
-
const InfoRequestParam_1 = __webpack_require__(
|
|
46983
|
+
const InfoRequestParam_1 = __webpack_require__(8632);
|
|
46980
46984
|
class GetPlayersWithFacebookOperationRequest extends OperationRequest_1.OperationRequest {
|
|
46981
46985
|
isValidRequest() {
|
|
46982
46986
|
if (!super.isValidRequest())
|
|
@@ -47127,7 +47131,7 @@ const GNParameterCode_1 = __webpack_require__(1252);
|
|
|
47127
47131
|
const GNData_1 = __webpack_require__(1136);
|
|
47128
47132
|
const GNErrorCode_1 = __webpack_require__(6464);
|
|
47129
47133
|
const MasterPlayerBaseRequestHandler_1 = __webpack_require__(9716);
|
|
47130
|
-
const InfoRequestParam_1 = __webpack_require__(
|
|
47134
|
+
const InfoRequestParam_1 = __webpack_require__(8632);
|
|
47131
47135
|
class GetPlayersWithGenericServiceOperationRequest extends OperationRequest_1.OperationRequest {
|
|
47132
47136
|
isValidRequest() {
|
|
47133
47137
|
if (!super.isValidRequest())
|
|
@@ -47285,7 +47289,7 @@ const GNParameterCode_1 = __webpack_require__(1252);
|
|
|
47285
47289
|
const GNData_1 = __webpack_require__(1136);
|
|
47286
47290
|
const GNErrorCode_1 = __webpack_require__(6464);
|
|
47287
47291
|
const MasterPlayerBaseRequestHandler_1 = __webpack_require__(9716);
|
|
47288
|
-
const InfoRequestParam_1 = __webpack_require__(
|
|
47292
|
+
const InfoRequestParam_1 = __webpack_require__(8632);
|
|
47289
47293
|
class GetPlayersWithGoogleOperationRequest extends OperationRequest_1.OperationRequest {
|
|
47290
47294
|
isValidRequest() {
|
|
47291
47295
|
if (!super.isValidRequest())
|
|
@@ -47436,7 +47440,7 @@ const GNParameterCode_1 = __webpack_require__(1252);
|
|
|
47436
47440
|
const GNData_1 = __webpack_require__(1136);
|
|
47437
47441
|
const GNErrorCode_1 = __webpack_require__(6464);
|
|
47438
47442
|
const MasterPlayerBaseRequestHandler_1 = __webpack_require__(9716);
|
|
47439
|
-
const InfoRequestParam_1 = __webpack_require__(
|
|
47443
|
+
const InfoRequestParam_1 = __webpack_require__(8632);
|
|
47440
47444
|
class GetPlayersWithSegmentOperationRequest extends OperationRequest_1.OperationRequest {
|
|
47441
47445
|
isValidRequest() {
|
|
47442
47446
|
if (!super.isValidRequest())
|
|
@@ -47599,7 +47603,7 @@ const GNParameterCode_1 = __webpack_require__(1252);
|
|
|
47599
47603
|
const GNData_1 = __webpack_require__(1136);
|
|
47600
47604
|
const GNErrorCode_1 = __webpack_require__(6464);
|
|
47601
47605
|
const MasterPlayerBaseRequestHandler_1 = __webpack_require__(9716);
|
|
47602
|
-
const InfoRequestParam_1 = __webpack_require__(
|
|
47606
|
+
const InfoRequestParam_1 = __webpack_require__(8632);
|
|
47603
47607
|
class GetPlayersWithTagOperationRequest extends OperationRequest_1.OperationRequest {
|
|
47604
47608
|
isValidRequest() {
|
|
47605
47609
|
if (!super.isValidRequest())
|
|
@@ -47930,7 +47934,7 @@ const GNParameterCode_1 = __webpack_require__(1252);
|
|
|
47930
47934
|
const GNData_1 = __webpack_require__(1136);
|
|
47931
47935
|
const GNErrorCode_1 = __webpack_require__(6464);
|
|
47932
47936
|
const MasterPlayerBaseRequestHandler_1 = __webpack_require__(9716);
|
|
47933
|
-
const InfoRequestParam_1 = __webpack_require__(
|
|
47937
|
+
const InfoRequestParam_1 = __webpack_require__(8632);
|
|
47934
47938
|
class GetStatisticsLeaderboardAroundPlayerOperationRequest extends OperationRequest_1.OperationRequest {
|
|
47935
47939
|
isValidRequest() {
|
|
47936
47940
|
if (!super.isValidRequest())
|
|
@@ -48125,7 +48129,7 @@ const GNParameterCode_1 = __webpack_require__(1252);
|
|
|
48125
48129
|
const GNData_1 = __webpack_require__(1136);
|
|
48126
48130
|
const GNErrorCode_1 = __webpack_require__(6464);
|
|
48127
48131
|
const MasterPlayerBaseRequestHandler_1 = __webpack_require__(9716);
|
|
48128
|
-
const InfoRequestParam_1 = __webpack_require__(
|
|
48132
|
+
const InfoRequestParam_1 = __webpack_require__(8632);
|
|
48129
48133
|
const xDatetime_1 = __webpack_require__(1308);
|
|
48130
48134
|
class GetStatisticsLeaderboardOperationRequest extends OperationRequest_1.OperationRequest {
|
|
48131
48135
|
isValidRequest() {
|
|
@@ -49170,7 +49174,7 @@ exports.LinkAndroidDeviceIdRequestHandler = LinkAndroidDeviceIdRequestHandler;
|
|
|
49170
49174
|
|
|
49171
49175
|
/***/ }),
|
|
49172
49176
|
|
|
49173
|
-
/***/
|
|
49177
|
+
/***/ 1015:
|
|
49174
49178
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
49175
49179
|
|
|
49176
49180
|
|
|
@@ -50292,11 +50296,15 @@ class LinkGenericServiceRequestHandler extends MasterPlayerBaseRequestHandler_1.
|
|
|
50292
50296
|
return operationResponse;
|
|
50293
50297
|
}
|
|
50294
50298
|
let serviceResponse = yield this.gnServer.getGenericService().verifyGenericService(request.serviceName, request.serviceData);
|
|
50295
|
-
if (serviceResponse == null || serviceResponse.status
|
|
50299
|
+
if (serviceResponse == null || serviceResponse.status == "ServiceNotFound") {
|
|
50296
50300
|
xDebug_1.Debug.log("service name error " + serviceResponse.error);
|
|
50297
50301
|
operationResponse.setParameter(ParameterCode_1.ParameterCode.ErrorCode, GNErrorCode_1.GNErrorCode.ServiceNameNotFound);
|
|
50298
50302
|
return operationResponse;
|
|
50299
50303
|
}
|
|
50304
|
+
if (!serviceResponse.serviceId || serviceResponse.status == "VerifyError") {
|
|
50305
|
+
operationResponse.setParameter(ParameterCode_1.ParameterCode.ErrorCode, GNErrorCode_1.GNErrorCode.AccountNotFound);
|
|
50306
|
+
return operationResponse;
|
|
50307
|
+
}
|
|
50300
50308
|
let serviceId = serviceResponse.serviceId;
|
|
50301
50309
|
let otherMasterPlayer = yield this.gnServer.getDatabase().loadMasterPlayerByGenericServiceAsync(request.serviceName, serviceId);
|
|
50302
50310
|
if (otherMasterPlayer != null && otherMasterPlayer.getUserId() != masterPlayer.getUserId()) {
|
|
@@ -56806,7 +56814,7 @@ __decorate([
|
|
|
56806
56814
|
|
|
56807
56815
|
/***/ }),
|
|
56808
56816
|
|
|
56809
|
-
/***/
|
|
56817
|
+
/***/ 8632:
|
|
56810
56818
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
56811
56819
|
|
|
56812
56820
|
|
|
@@ -57038,10 +57046,10 @@ const ReturnCode_1 = __webpack_require__(8412);
|
|
|
57038
57046
|
const DataMember_1 = __webpack_require__(4628);
|
|
57039
57047
|
const GNParameterCode_1 = __webpack_require__(1252);
|
|
57040
57048
|
const GNErrorCode_1 = __webpack_require__(6464);
|
|
57041
|
-
const MatchmakingTicketStatus_1 = __webpack_require__(
|
|
57049
|
+
const MatchmakingTicketStatus_1 = __webpack_require__(3396);
|
|
57042
57050
|
const MatchmakingMemberStatus_1 = __webpack_require__(1824);
|
|
57043
57051
|
const MatchmakingTicket_1 = __webpack_require__(1648);
|
|
57044
|
-
const MultiplayerBaseRequestHandler_1 = __webpack_require__(
|
|
57052
|
+
const MultiplayerBaseRequestHandler_1 = __webpack_require__(1456);
|
|
57045
57053
|
class CancelAllMatchmakingTicketOperationRequest extends OperationRequest_1.OperationRequest {
|
|
57046
57054
|
isValidRequest() {
|
|
57047
57055
|
if (!super.isValidRequest())
|
|
@@ -57199,10 +57207,10 @@ const ReturnCode_1 = __webpack_require__(8412);
|
|
|
57199
57207
|
const DataMember_1 = __webpack_require__(4628);
|
|
57200
57208
|
const GNParameterCode_1 = __webpack_require__(1252);
|
|
57201
57209
|
const GNErrorCode_1 = __webpack_require__(6464);
|
|
57202
|
-
const MatchmakingTicketStatus_1 = __webpack_require__(
|
|
57210
|
+
const MatchmakingTicketStatus_1 = __webpack_require__(3396);
|
|
57203
57211
|
const MatchmakingMemberStatus_1 = __webpack_require__(1824);
|
|
57204
57212
|
const MatchmakingTicket_1 = __webpack_require__(1648);
|
|
57205
|
-
const MultiplayerBaseRequestHandler_1 = __webpack_require__(
|
|
57213
|
+
const MultiplayerBaseRequestHandler_1 = __webpack_require__(1456);
|
|
57206
57214
|
class CancelMatchmakingTicketOperationRequest extends OperationRequest_1.OperationRequest {
|
|
57207
57215
|
isValidRequest() {
|
|
57208
57216
|
if (!super.isValidRequest())
|
|
@@ -57362,13 +57370,13 @@ const ReturnCode_1 = __webpack_require__(8412);
|
|
|
57362
57370
|
const DataMember_1 = __webpack_require__(4628);
|
|
57363
57371
|
const GNParameterCode_1 = __webpack_require__(1252);
|
|
57364
57372
|
const GNErrorCode_1 = __webpack_require__(6464);
|
|
57365
|
-
const MatchmakingTicketStatus_1 = __webpack_require__(
|
|
57373
|
+
const MatchmakingTicketStatus_1 = __webpack_require__(3396);
|
|
57366
57374
|
const MatchmakingMemberStatus_1 = __webpack_require__(1824);
|
|
57367
57375
|
const MatchmakingTicket_1 = __webpack_require__(1648);
|
|
57368
57376
|
const GNData_1 = __webpack_require__(1136);
|
|
57369
57377
|
const StringUtility_1 = __webpack_require__(6416);
|
|
57370
57378
|
const xDatetime_1 = __webpack_require__(1308);
|
|
57371
|
-
const MultiplayerBaseRequestHandler_1 = __webpack_require__(
|
|
57379
|
+
const MultiplayerBaseRequestHandler_1 = __webpack_require__(1456);
|
|
57372
57380
|
class CreateMatchmakingTicketOperationRequest extends OperationRequest_1.OperationRequest {
|
|
57373
57381
|
isValidRequest() {
|
|
57374
57382
|
if (!super.isValidRequest())
|
|
@@ -57598,7 +57606,7 @@ const GNParameterCode_1 = __webpack_require__(1252);
|
|
|
57598
57606
|
const GNErrorCode_1 = __webpack_require__(6464);
|
|
57599
57607
|
const GNData_1 = __webpack_require__(1136);
|
|
57600
57608
|
const Match_1 = __webpack_require__(3484);
|
|
57601
|
-
const MultiplayerBaseRequestHandler_1 = __webpack_require__(
|
|
57609
|
+
const MultiplayerBaseRequestHandler_1 = __webpack_require__(1456);
|
|
57602
57610
|
class GetMatchOperationRequest extends OperationRequest_1.OperationRequest {
|
|
57603
57611
|
isValidRequest() {
|
|
57604
57612
|
if (!super.isValidRequest())
|
|
@@ -57782,10 +57790,10 @@ const ReturnCode_1 = __webpack_require__(8412);
|
|
|
57782
57790
|
const DataMember_1 = __webpack_require__(4628);
|
|
57783
57791
|
const GNParameterCode_1 = __webpack_require__(1252);
|
|
57784
57792
|
const GNErrorCode_1 = __webpack_require__(6464);
|
|
57785
|
-
const MatchmakingTicketStatus_1 = __webpack_require__(
|
|
57793
|
+
const MatchmakingTicketStatus_1 = __webpack_require__(3396);
|
|
57786
57794
|
const MatchmakingTicket_1 = __webpack_require__(1648);
|
|
57787
57795
|
const GNData_1 = __webpack_require__(1136);
|
|
57788
|
-
const MultiplayerBaseRequestHandler_1 = __webpack_require__(
|
|
57796
|
+
const MultiplayerBaseRequestHandler_1 = __webpack_require__(1456);
|
|
57789
57797
|
class GetMatchmakingTicketOperationRequest extends OperationRequest_1.OperationRequest {
|
|
57790
57798
|
isValidRequest() {
|
|
57791
57799
|
if (!super.isValidRequest())
|
|
@@ -57969,11 +57977,11 @@ const ReturnCode_1 = __webpack_require__(8412);
|
|
|
57969
57977
|
const DataMember_1 = __webpack_require__(4628);
|
|
57970
57978
|
const GNParameterCode_1 = __webpack_require__(1252);
|
|
57971
57979
|
const GNErrorCode_1 = __webpack_require__(6464);
|
|
57972
|
-
const MatchmakingTicketStatus_1 = __webpack_require__(
|
|
57980
|
+
const MatchmakingTicketStatus_1 = __webpack_require__(3396);
|
|
57973
57981
|
const MatchmakingMemberStatus_1 = __webpack_require__(1824);
|
|
57974
57982
|
const MatchmakingTicket_1 = __webpack_require__(1648);
|
|
57975
57983
|
const GNData_1 = __webpack_require__(1136);
|
|
57976
|
-
const MultiplayerBaseRequestHandler_1 = __webpack_require__(
|
|
57984
|
+
const MultiplayerBaseRequestHandler_1 = __webpack_require__(1456);
|
|
57977
57985
|
class JoinMatchmakingTicketOperationRequest extends OperationRequest_1.OperationRequest {
|
|
57978
57986
|
isValidRequest() {
|
|
57979
57987
|
if (!super.isValidRequest())
|
|
@@ -58169,10 +58177,10 @@ const ReturnCode_1 = __webpack_require__(8412);
|
|
|
58169
58177
|
const DataMember_1 = __webpack_require__(4628);
|
|
58170
58178
|
const GNParameterCode_1 = __webpack_require__(1252);
|
|
58171
58179
|
const GNErrorCode_1 = __webpack_require__(6464);
|
|
58172
|
-
const MatchmakingTicketStatus_1 = __webpack_require__(
|
|
58180
|
+
const MatchmakingTicketStatus_1 = __webpack_require__(3396);
|
|
58173
58181
|
const MatchmakingMemberStatus_1 = __webpack_require__(1824);
|
|
58174
58182
|
const MatchmakingTicket_1 = __webpack_require__(1648);
|
|
58175
|
-
const MultiplayerBaseRequestHandler_1 = __webpack_require__(
|
|
58183
|
+
const MultiplayerBaseRequestHandler_1 = __webpack_require__(1456);
|
|
58176
58184
|
class ListMatchmakingTicketsForPlayerOperationRequest extends OperationRequest_1.OperationRequest {
|
|
58177
58185
|
isValidRequest() {
|
|
58178
58186
|
if (!super.isValidRequest())
|
|
@@ -58305,7 +58313,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58305
58313
|
};
|
|
58306
58314
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
58307
58315
|
exports.MatchmakingHandler = void 0;
|
|
58308
|
-
const MatchmakingTicketStatus_1 = __webpack_require__(
|
|
58316
|
+
const MatchmakingTicketStatus_1 = __webpack_require__(3396);
|
|
58309
58317
|
const StringUtility_1 = __webpack_require__(6416);
|
|
58310
58318
|
const MatchmakingTicket_1 = __webpack_require__(1648);
|
|
58311
58319
|
const xDatetime_1 = __webpack_require__(1308);
|
|
@@ -59003,7 +59011,7 @@ exports.MatchmakingHandler = MatchmakingHandler;
|
|
|
59003
59011
|
|
|
59004
59012
|
/***/ }),
|
|
59005
59013
|
|
|
59006
|
-
/***/
|
|
59014
|
+
/***/ 1456:
|
|
59007
59015
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
59008
59016
|
|
|
59009
59017
|
|
|
@@ -62659,7 +62667,7 @@ class GenericService {
|
|
|
62659
62667
|
let implementation = implementations.find(x => x.getServiceName() == serviceName);
|
|
62660
62668
|
if (implementation == null)
|
|
62661
62669
|
return {
|
|
62662
|
-
status:
|
|
62670
|
+
status: "ServiceNotFound", // error
|
|
62663
62671
|
serviceId: null,
|
|
62664
62672
|
error: "Service name not found"
|
|
62665
62673
|
};
|
|
@@ -65037,7 +65045,7 @@ var MatchmakingMemberStatus;
|
|
|
65037
65045
|
|
|
65038
65046
|
/***/ }),
|
|
65039
65047
|
|
|
65040
|
-
/***/
|
|
65048
|
+
/***/ 3396:
|
|
65041
65049
|
/***/ ((__unused_webpack_module, exports) => {
|
|
65042
65050
|
|
|
65043
65051
|
|
|
@@ -65825,6 +65833,27 @@ const getGNReflectedDataType = (prototype, propertyKey) => {
|
|
|
65825
65833
|
return GNMetadata_1.FieldDataType.Object;
|
|
65826
65834
|
}
|
|
65827
65835
|
};
|
|
65836
|
+
const getGNReflectedMetadata = (prototype, propertyKey) => {
|
|
65837
|
+
let t = Reflect.getMetadata("design:type", prototype, propertyKey);
|
|
65838
|
+
if (!t) {
|
|
65839
|
+
throw Error(`Cannot get gn reflected data type for ${prototype.constructor.name}:${propertyKey}`);
|
|
65840
|
+
}
|
|
65841
|
+
let answer = {
|
|
65842
|
+
fieldDataType: null,
|
|
65843
|
+
prototype: t.prototype
|
|
65844
|
+
};
|
|
65845
|
+
if (t.name == "Boolean")
|
|
65846
|
+
answer.fieldDataType = GNMetadata_1.FieldDataType.Boolean;
|
|
65847
|
+
else if (t.name == "Number")
|
|
65848
|
+
answer.fieldDataType = GNMetadata_1.FieldDataType.Number;
|
|
65849
|
+
else if (t.name == "String")
|
|
65850
|
+
answer.fieldDataType = GNMetadata_1.FieldDataType.String;
|
|
65851
|
+
else if (t.name == "Array")
|
|
65852
|
+
answer.fieldDataType = GNMetadata_1.FieldDataType.Array;
|
|
65853
|
+
else
|
|
65854
|
+
answer.fieldDataType = GNMetadata_1.FieldDataType.Object;
|
|
65855
|
+
return answer;
|
|
65856
|
+
};
|
|
65828
65857
|
const initGNObjectMetadata = (prototype) => {
|
|
65829
65858
|
if (prototype === Object.prototype) {
|
|
65830
65859
|
return {};
|
|
@@ -65840,10 +65869,12 @@ const initGNObjectFieldMetadata = (prototype, propertyKey) => {
|
|
|
65840
65869
|
let meta = (0, exports.initGNObjectMetadata)(prototype);
|
|
65841
65870
|
let fieldIndex = meta.fields.findIndex((f) => f.name === propertyKey);
|
|
65842
65871
|
if (fieldIndex < 0) {
|
|
65872
|
+
let gnReflectedMetadata = getGNReflectedMetadata(prototype, propertyKey);
|
|
65843
65873
|
const field = {
|
|
65844
65874
|
name: propertyKey,
|
|
65845
|
-
fieldType: getGNReflectedDataType(prototype, propertyKey),
|
|
65846
|
-
|
|
65875
|
+
// fieldType: getGNReflectedDataType(prototype, propertyKey),
|
|
65876
|
+
fieldType: gnReflectedMetadata.fieldDataType,
|
|
65877
|
+
cls: gnReflectedMetadata.prototype.constructor
|
|
65847
65878
|
};
|
|
65848
65879
|
meta.fields.push(field);
|
|
65849
65880
|
return field;
|
|
@@ -67081,6 +67112,87 @@ CharacterPlayer._owner = "owner";
|
|
|
67081
67112
|
CharacterPlayer._removeStatus = "removeStatus";
|
|
67082
67113
|
|
|
67083
67114
|
|
|
67115
|
+
/***/ }),
|
|
67116
|
+
|
|
67117
|
+
/***/ 1268:
|
|
67118
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
67119
|
+
|
|
67120
|
+
|
|
67121
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
67122
|
+
exports.ChatMessage = void 0;
|
|
67123
|
+
const MongoObject_1 = __webpack_require__(1412);
|
|
67124
|
+
class ChatMessage extends MongoObject_1.MongoObject {
|
|
67125
|
+
constructor(result, collection) {
|
|
67126
|
+
super(result, collection);
|
|
67127
|
+
this.messageId = result[ChatMessage._messageId];
|
|
67128
|
+
this.groupId = result[ChatMessage._groupId];
|
|
67129
|
+
this.setDocumentChatMessage(result);
|
|
67130
|
+
}
|
|
67131
|
+
setDocumentChatMessage(result) {
|
|
67132
|
+
this.sender = result[ChatMessage._sender];
|
|
67133
|
+
this.message = result[ChatMessage._message];
|
|
67134
|
+
this.tsCreate = result[ChatMessage._tsCreate];
|
|
67135
|
+
this.tsLastUpdate = result[ChatMessage._tsLastUpdate];
|
|
67136
|
+
this.removeStatus = result[ChatMessage._removeStatus];
|
|
67137
|
+
}
|
|
67138
|
+
getMessageId() {
|
|
67139
|
+
return this.messageId;
|
|
67140
|
+
}
|
|
67141
|
+
getGroupId() {
|
|
67142
|
+
return this.groupId;
|
|
67143
|
+
}
|
|
67144
|
+
getSender() {
|
|
67145
|
+
return this.sender;
|
|
67146
|
+
}
|
|
67147
|
+
setSender(senderId, senderType) {
|
|
67148
|
+
this.sender = {
|
|
67149
|
+
id: senderId,
|
|
67150
|
+
type: senderType,
|
|
67151
|
+
};
|
|
67152
|
+
this.set(ChatMessage._sender, this.sender);
|
|
67153
|
+
}
|
|
67154
|
+
getMessage() {
|
|
67155
|
+
return this.message;
|
|
67156
|
+
}
|
|
67157
|
+
setMessage(message) {
|
|
67158
|
+
this.message = message;
|
|
67159
|
+
this.set(ChatMessage._message, this.message);
|
|
67160
|
+
}
|
|
67161
|
+
getTsCreate() {
|
|
67162
|
+
return this.tsCreate;
|
|
67163
|
+
}
|
|
67164
|
+
setTsCreate(tsCreate) {
|
|
67165
|
+
this.tsCreate = tsCreate;
|
|
67166
|
+
this.set(ChatMessage._tsCreate, this.tsCreate);
|
|
67167
|
+
}
|
|
67168
|
+
getTsLastUpdate() {
|
|
67169
|
+
return this.tsLastUpdate;
|
|
67170
|
+
}
|
|
67171
|
+
setTsLastUpdate(tsLastUpdate) {
|
|
67172
|
+
this.tsLastUpdate = tsLastUpdate;
|
|
67173
|
+
this.set(ChatMessage._tsLastUpdate, this.tsLastUpdate);
|
|
67174
|
+
}
|
|
67175
|
+
getRemoveStatus() {
|
|
67176
|
+
return this.removeStatus;
|
|
67177
|
+
}
|
|
67178
|
+
setRemoveStatus(tsRemove, reason) {
|
|
67179
|
+
this.removeStatus = {
|
|
67180
|
+
tsRemove: tsRemove,
|
|
67181
|
+
reason: reason,
|
|
67182
|
+
};
|
|
67183
|
+
this.set(ChatMessage._removeStatus, this.removeStatus);
|
|
67184
|
+
}
|
|
67185
|
+
}
|
|
67186
|
+
exports.ChatMessage = ChatMessage;
|
|
67187
|
+
ChatMessage._messageId = "messageId";
|
|
67188
|
+
ChatMessage._groupId = "groupId";
|
|
67189
|
+
ChatMessage._sender = "sender";
|
|
67190
|
+
ChatMessage._message = "message";
|
|
67191
|
+
ChatMessage._tsCreate = "tsCreate";
|
|
67192
|
+
ChatMessage._tsLastUpdate = "tsLastUpdate";
|
|
67193
|
+
ChatMessage._removeStatus = "removeStatus";
|
|
67194
|
+
|
|
67195
|
+
|
|
67084
67196
|
/***/ }),
|
|
67085
67197
|
|
|
67086
67198
|
/***/ 6415:
|
|
@@ -68429,6 +68541,201 @@ StoreInventory._storeDatas = "storeDatas";
|
|
|
68429
68541
|
StoreInventory._removeStatus = "removeStatus";
|
|
68430
68542
|
|
|
68431
68543
|
|
|
68544
|
+
/***/ }),
|
|
68545
|
+
|
|
68546
|
+
/***/ 1284:
|
|
68547
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
68548
|
+
|
|
68549
|
+
|
|
68550
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
68551
|
+
exports.TradeInventory = void 0;
|
|
68552
|
+
const DataObjectBase_1 = __webpack_require__(6415);
|
|
68553
|
+
class TradeInventory extends DataObjectBase_1.DataObjectBase {
|
|
68554
|
+
constructor(result, collection) {
|
|
68555
|
+
super(result, collection);
|
|
68556
|
+
this.tradeId = result[TradeInventory._tradeId];
|
|
68557
|
+
this.setDocumentTradeInventory(result);
|
|
68558
|
+
}
|
|
68559
|
+
setDocumentTradeInventory(result) {
|
|
68560
|
+
this.tradeItems = result[TradeInventory._tradeItems];
|
|
68561
|
+
this.owner = result[TradeInventory._owner];
|
|
68562
|
+
this.buyer = result[TradeInventory._buyer];
|
|
68563
|
+
this.tsBuy = result[TradeInventory._tsBuy];
|
|
68564
|
+
this.prices = result[TradeInventory._prices] != null ? new Map(Object.entries(result[TradeInventory._prices])) : null;
|
|
68565
|
+
this.itemDatas = result[TradeInventory._itemDatas];
|
|
68566
|
+
this.itemStatistics = result[TradeInventory._itemStatistics] != null ? new Map(Object.entries(result[TradeInventory._itemStatistics])) : null;
|
|
68567
|
+
this.removeStatus = result[TradeInventory._removeStatus];
|
|
68568
|
+
}
|
|
68569
|
+
getTradeId() {
|
|
68570
|
+
return this.tradeId;
|
|
68571
|
+
}
|
|
68572
|
+
getAllTradeItems() {
|
|
68573
|
+
return this.tradeItems;
|
|
68574
|
+
}
|
|
68575
|
+
hasTradeItem(itemId) {
|
|
68576
|
+
return this.tradeItems.find(x => x.itemId == itemId) != null;
|
|
68577
|
+
}
|
|
68578
|
+
getTradeItem(itemId) {
|
|
68579
|
+
return this.tradeItems.find(x => x.itemId == itemId);
|
|
68580
|
+
}
|
|
68581
|
+
setTradeItem(itemId, catalogId, classId) {
|
|
68582
|
+
let tradeItem = this.tradeItems.find(x => x.itemId == itemId);
|
|
68583
|
+
if (tradeItem == null) {
|
|
68584
|
+
tradeItem = {
|
|
68585
|
+
itemId: itemId,
|
|
68586
|
+
catalogId: catalogId,
|
|
68587
|
+
classId: classId,
|
|
68588
|
+
};
|
|
68589
|
+
this.tradeItems.push(tradeItem);
|
|
68590
|
+
}
|
|
68591
|
+
else {
|
|
68592
|
+
tradeItem.catalogId = catalogId;
|
|
68593
|
+
tradeItem.classId = classId;
|
|
68594
|
+
}
|
|
68595
|
+
this.set(TradeInventory._tradeItems, this.tradeItems);
|
|
68596
|
+
}
|
|
68597
|
+
removeTradeItem(itemId) {
|
|
68598
|
+
let tradeItem = this.tradeItems.find(x => x.itemId == itemId);
|
|
68599
|
+
if (tradeItem != null) {
|
|
68600
|
+
let indexOf = this.tradeItems.indexOf(tradeItem);
|
|
68601
|
+
if (indexOf != -1) {
|
|
68602
|
+
this.tradeItems.splice(indexOf, 1);
|
|
68603
|
+
return this.set(TradeInventory._tradeItems, this.tradeItems);
|
|
68604
|
+
}
|
|
68605
|
+
}
|
|
68606
|
+
throw Error("can not found the item to remove");
|
|
68607
|
+
}
|
|
68608
|
+
getOwner() {
|
|
68609
|
+
return this.owner;
|
|
68610
|
+
}
|
|
68611
|
+
setOwner(ownerId, ownerType) {
|
|
68612
|
+
this.owner = {
|
|
68613
|
+
id: ownerId,
|
|
68614
|
+
type: ownerType,
|
|
68615
|
+
};
|
|
68616
|
+
this.set(TradeInventory._owner, this.owner);
|
|
68617
|
+
}
|
|
68618
|
+
getBuyer() {
|
|
68619
|
+
return this.buyer;
|
|
68620
|
+
}
|
|
68621
|
+
setBuyer(buyerId, buyerType) {
|
|
68622
|
+
this.buyer = {
|
|
68623
|
+
id: buyerId,
|
|
68624
|
+
type: buyerType,
|
|
68625
|
+
};
|
|
68626
|
+
this.set(TradeInventory._buyer, this.buyer);
|
|
68627
|
+
}
|
|
68628
|
+
setTsBuy(tsBuy) {
|
|
68629
|
+
this.tsBuy = tsBuy;
|
|
68630
|
+
this.set(TradeInventory._tsBuy, this.tsBuy);
|
|
68631
|
+
}
|
|
68632
|
+
getAllItemDatas() {
|
|
68633
|
+
return this.itemDatas;
|
|
68634
|
+
}
|
|
68635
|
+
hasItemData(key) {
|
|
68636
|
+
return this.getItemData(key) != null;
|
|
68637
|
+
}
|
|
68638
|
+
getItemData(key) {
|
|
68639
|
+
return this.itemDatas.find(x => x.key == key);
|
|
68640
|
+
}
|
|
68641
|
+
setItemData(key, value) {
|
|
68642
|
+
let itemDataItem = this.itemDatas.find(x => x.key == key);
|
|
68643
|
+
if (itemDataItem == null) {
|
|
68644
|
+
itemDataItem = {
|
|
68645
|
+
key: key,
|
|
68646
|
+
value: value,
|
|
68647
|
+
};
|
|
68648
|
+
this.itemDatas.push(itemDataItem);
|
|
68649
|
+
}
|
|
68650
|
+
else {
|
|
68651
|
+
itemDataItem.value = value;
|
|
68652
|
+
}
|
|
68653
|
+
this.set(TradeInventory._itemDatas, this.itemDatas);
|
|
68654
|
+
}
|
|
68655
|
+
removeItemData(key) {
|
|
68656
|
+
let itemDataItem = this.itemDatas.find(x => x.key == key);
|
|
68657
|
+
if (itemDataItem != null) {
|
|
68658
|
+
let indexOf = this.itemDatas.indexOf(itemDataItem);
|
|
68659
|
+
if (indexOf != -1) {
|
|
68660
|
+
this.itemDatas.splice(indexOf, 1);
|
|
68661
|
+
return this.set(TradeInventory._itemDatas, this.itemDatas);
|
|
68662
|
+
}
|
|
68663
|
+
}
|
|
68664
|
+
throw Error("can not found the key to remove");
|
|
68665
|
+
}
|
|
68666
|
+
getAllItemStatistics() {
|
|
68667
|
+
return this.itemStatistics;
|
|
68668
|
+
}
|
|
68669
|
+
hasItemStatistics(key) {
|
|
68670
|
+
return this.itemStatistics.has(key);
|
|
68671
|
+
}
|
|
68672
|
+
getItemStatistics(key) {
|
|
68673
|
+
return this.itemStatistics.get(key);
|
|
68674
|
+
}
|
|
68675
|
+
setItemStatistics(key, value, tsLastUpdate) {
|
|
68676
|
+
this.itemStatistics.set(key, {
|
|
68677
|
+
tsLastUpdate: tsLastUpdate,
|
|
68678
|
+
value: value
|
|
68679
|
+
});
|
|
68680
|
+
this.set(TradeInventory._itemStatistics + DataObjectBase_1.DataObjectBase.DOT + key, {
|
|
68681
|
+
tsLastUpdate: tsLastUpdate,
|
|
68682
|
+
value: value
|
|
68683
|
+
});
|
|
68684
|
+
}
|
|
68685
|
+
removeItemStatistics(key) {
|
|
68686
|
+
if (this.itemStatistics.has(key)) {
|
|
68687
|
+
this.itemStatistics.delete(key);
|
|
68688
|
+
return this.unset(TradeInventory._itemStatistics + DataObjectBase_1.DataObjectBase.DOT + key);
|
|
68689
|
+
}
|
|
68690
|
+
throw Error("can not found the key to remove");
|
|
68691
|
+
}
|
|
68692
|
+
getRemoveStatus() {
|
|
68693
|
+
return this.removeStatus;
|
|
68694
|
+
}
|
|
68695
|
+
setRemoveStatus(tsRemove, reason) {
|
|
68696
|
+
this.removeStatus = {
|
|
68697
|
+
tsRemove: tsRemove,
|
|
68698
|
+
reason: reason,
|
|
68699
|
+
};
|
|
68700
|
+
this.set(TradeInventory._removeStatus, this.removeStatus);
|
|
68701
|
+
}
|
|
68702
|
+
getAllPrices() {
|
|
68703
|
+
return this.prices;
|
|
68704
|
+
}
|
|
68705
|
+
hasPrice(key) {
|
|
68706
|
+
return this.prices.has(key);
|
|
68707
|
+
}
|
|
68708
|
+
getPrice(key) {
|
|
68709
|
+
return this.prices.get(key);
|
|
68710
|
+
}
|
|
68711
|
+
setPrice(key, value) {
|
|
68712
|
+
this.prices.set(key, {
|
|
68713
|
+
value: value
|
|
68714
|
+
});
|
|
68715
|
+
this.set(TradeInventory._prices + DataObjectBase_1.DataObjectBase.DOT + key, {
|
|
68716
|
+
value: value
|
|
68717
|
+
});
|
|
68718
|
+
}
|
|
68719
|
+
removePrice(key) {
|
|
68720
|
+
if (this.prices.has(key)) {
|
|
68721
|
+
this.prices.delete(key);
|
|
68722
|
+
return this.unset(TradeInventory._prices + DataObjectBase_1.DataObjectBase.DOT + key);
|
|
68723
|
+
}
|
|
68724
|
+
throw Error("can not found the key to remove");
|
|
68725
|
+
}
|
|
68726
|
+
}
|
|
68727
|
+
exports.TradeInventory = TradeInventory;
|
|
68728
|
+
TradeInventory._tradeId = "tradeId";
|
|
68729
|
+
TradeInventory._tradeItems = "tradeItems";
|
|
68730
|
+
TradeInventory._owner = "owner";
|
|
68731
|
+
TradeInventory._buyer = "buyer";
|
|
68732
|
+
TradeInventory._tsBuy = "tsBuy";
|
|
68733
|
+
TradeInventory._prices = "prices";
|
|
68734
|
+
TradeInventory._itemDatas = "itemDatas";
|
|
68735
|
+
TradeInventory._itemStatistics = "itemStatistics";
|
|
68736
|
+
TradeInventory._removeStatus = "removeStatus";
|
|
68737
|
+
|
|
68738
|
+
|
|
68432
68739
|
/***/ }),
|
|
68433
68740
|
|
|
68434
68741
|
/***/ 4272:
|
|
@@ -68523,7 +68830,7 @@ UploadFileInfo._fileUpload = "fileUpload";
|
|
|
68523
68830
|
|
|
68524
68831
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
68525
68832
|
exports.GameItem = void 0;
|
|
68526
|
-
const MasterAdminMongoObject_1 = __webpack_require__(
|
|
68833
|
+
const MasterAdminMongoObject_1 = __webpack_require__(4868);
|
|
68527
68834
|
class GameItem extends MasterAdminMongoObject_1.MasterAdminMongoObject {
|
|
68528
68835
|
constructor(result, collection) {
|
|
68529
68836
|
super(result, collection);
|
|
@@ -68597,7 +68904,7 @@ GameItem._matchmakingQueueSettings = "matchmakingQueueSettings";
|
|
|
68597
68904
|
|
|
68598
68905
|
/***/ }),
|
|
68599
68906
|
|
|
68600
|
-
/***/
|
|
68907
|
+
/***/ 4868:
|
|
68601
68908
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
68602
68909
|
|
|
68603
68910
|
|
|
@@ -68625,7 +68932,7 @@ MasterAdminMongoObject._type = "type";
|
|
|
68625
68932
|
|
|
68626
68933
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
68627
68934
|
exports.MasterAdminPlayer = void 0;
|
|
68628
|
-
const MasterAdminMongoObject_1 = __webpack_require__(
|
|
68935
|
+
const MasterAdminMongoObject_1 = __webpack_require__(4868);
|
|
68629
68936
|
class MasterAdminPlayer extends MasterAdminMongoObject_1.MasterAdminMongoObject {
|
|
68630
68937
|
constructor(result, collection) {
|
|
68631
68938
|
super(result, collection);
|
|
@@ -68671,13 +68978,13 @@ MasterAdminPlayer._secretKey = "secretKey";
|
|
|
68671
68978
|
|
|
68672
68979
|
/***/ }),
|
|
68673
68980
|
|
|
68674
|
-
/***/
|
|
68981
|
+
/***/ 1012:
|
|
68675
68982
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
68676
68983
|
|
|
68677
68984
|
|
|
68678
68985
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
68679
68986
|
exports.MasterGameSettings = void 0;
|
|
68680
|
-
const MasterAdminMongoObject_1 = __webpack_require__(
|
|
68987
|
+
const MasterAdminMongoObject_1 = __webpack_require__(4868);
|
|
68681
68988
|
class MasterGameSettings extends MasterAdminMongoObject_1.MasterAdminMongoObject {
|
|
68682
68989
|
constructor(result, collection) {
|
|
68683
68990
|
super(result, collection);
|
|
@@ -68715,7 +69022,7 @@ MasterGameSettings._masterPlayerSettings = "masterPlayerSettings";
|
|
|
68715
69022
|
|
|
68716
69023
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
68717
69024
|
exports.SecretInfoItem = void 0;
|
|
68718
|
-
const MasterAdminMongoObject_1 = __webpack_require__(
|
|
69025
|
+
const MasterAdminMongoObject_1 = __webpack_require__(4868);
|
|
68719
69026
|
class SecretInfoItem extends MasterAdminMongoObject_1.MasterAdminMongoObject {
|
|
68720
69027
|
constructor(result, collection) {
|
|
68721
69028
|
super(result, collection);
|
|
@@ -70356,7 +70663,7 @@ exports.DefaultApplicationStartup = DefaultApplicationStartup;
|
|
|
70356
70663
|
|
|
70357
70664
|
/***/ }),
|
|
70358
70665
|
|
|
70359
|
-
/***/
|
|
70666
|
+
/***/ 3303:
|
|
70360
70667
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
70361
70668
|
|
|
70362
70669
|
|
|
@@ -70511,14 +70818,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
70511
70818
|
};
|
|
70512
70819
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
70513
70820
|
exports.ServerApplication = void 0;
|
|
70514
|
-
const HttpApp_1 = __webpack_require__(
|
|
70821
|
+
const HttpApp_1 = __webpack_require__(3303);
|
|
70515
70822
|
const SocketApp_1 = __webpack_require__(7340);
|
|
70516
70823
|
const express_1 = __importDefault(__webpack_require__(9224));
|
|
70517
70824
|
const http_1 = __importDefault(__webpack_require__(6136));
|
|
70518
70825
|
const https_1 = __importDefault(__webpack_require__(1256));
|
|
70519
70826
|
const fs_1 = __importDefault(__webpack_require__(5664));
|
|
70520
70827
|
const GNServer_1 = __webpack_require__(7404);
|
|
70521
|
-
const ApiMiddleware_1 = __webpack_require__(
|
|
70828
|
+
const ApiMiddleware_1 = __webpack_require__(3836);
|
|
70522
70829
|
const xDebug_1 = __webpack_require__(9343);
|
|
70523
70830
|
const UploadFileMiddleware_1 = __webpack_require__(4988);
|
|
70524
70831
|
const Md5Generate_1 = __webpack_require__(2860);
|
|
@@ -70527,7 +70834,7 @@ const StringUtility_1 = __webpack_require__(6416);
|
|
|
70527
70834
|
const bcrypt_1 = __importDefault(__webpack_require__(8784));
|
|
70528
70835
|
const SecretInfo_1 = __webpack_require__(8716);
|
|
70529
70836
|
const SecretInfoItem_1 = __webpack_require__(5916);
|
|
70530
|
-
const MasterGameSettings_1 = __webpack_require__(
|
|
70837
|
+
const MasterGameSettings_1 = __webpack_require__(1012);
|
|
70531
70838
|
const GameItem_1 = __webpack_require__(4208);
|
|
70532
70839
|
const GrantSecretInfoRequestHandler_1 = __webpack_require__(628);
|
|
70533
70840
|
const xDatetime_1 = __webpack_require__(1308);
|
|
@@ -72064,7 +72371,7 @@ AntiDdosMiddleware.K_MULTIPLE = 5;
|
|
|
72064
72371
|
|
|
72065
72372
|
/***/ }),
|
|
72066
72373
|
|
|
72067
|
-
/***/
|
|
72374
|
+
/***/ 3836:
|
|
72068
72375
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
72069
72376
|
|
|
72070
72377
|
|
|
@@ -74571,7 +74878,7 @@ const LoginByCustomDeviceIdRequestHandler_1 = __webpack_require__(3932);
|
|
|
74571
74878
|
const LoginByCustomIdRequestHandler_1 = __webpack_require__(156);
|
|
74572
74879
|
const LoginByFacebookRequestHandler_1 = __webpack_require__(7980);
|
|
74573
74880
|
const LoginByGenericServiceRequestHandler_1 = __webpack_require__(7004);
|
|
74574
|
-
const LoginByGoogleRequestHandler_1 = __webpack_require__(
|
|
74881
|
+
const LoginByGoogleRequestHandler_1 = __webpack_require__(8888);
|
|
74575
74882
|
const LoginByiOSDeviceIdRequestHandler_1 = __webpack_require__(5048);
|
|
74576
74883
|
const LoginByWindowsPhoneDeviceIdRequestHandler_1 = __webpack_require__(3840);
|
|
74577
74884
|
const RegisterAccountRequestHandler_1 = __webpack_require__(9916);
|
|
@@ -74582,7 +74889,7 @@ const LoginByWindowsDeviceIdRequestHandler_1 = __webpack_require__(4728);
|
|
|
74582
74889
|
const RefreshAuthTokenRequestHandler_1 = __webpack_require__(8012);
|
|
74583
74890
|
const LinkAccountRequestHandler_1 = __webpack_require__(1676);
|
|
74584
74891
|
const LinkAndroidDeviceIdRequestHandler_1 = __webpack_require__(6408);
|
|
74585
|
-
const LinkAppleRequestHandler_1 = __webpack_require__(
|
|
74892
|
+
const LinkAppleRequestHandler_1 = __webpack_require__(1015);
|
|
74586
74893
|
const LinkCustomDeviceIdRequestHandler_1 = __webpack_require__(44);
|
|
74587
74894
|
const LinkCustomIdRequestHandler_1 = __webpack_require__(2232);
|
|
74588
74895
|
const LinkEditorDeviceIdRequestHandler_1 = __webpack_require__(3768);
|
|
@@ -74706,7 +75013,7 @@ const GetTagRequestHandler_3 = __webpack_require__(8076);
|
|
|
74706
75013
|
const GetDisplayNameRequestHandler_3 = __webpack_require__(1600);
|
|
74707
75014
|
const SetDisplayNameRequestHandler_3 = __webpack_require__(548);
|
|
74708
75015
|
const GetTsCreateRequestHandler_3 = __webpack_require__(9568);
|
|
74709
|
-
const GetIpAddressCreateRequestHandler_3 = __webpack_require__(
|
|
75016
|
+
const GetIpAddressCreateRequestHandler_3 = __webpack_require__(5684);
|
|
74710
75017
|
const GetTsLastLoginRequestHandler_3 = __webpack_require__(4936);
|
|
74711
75018
|
const SetPlayerBanRequestHandler_3 = __webpack_require__(9004);
|
|
74712
75019
|
const GetPlayerBanRequestHandler_3 = __webpack_require__(3892);
|
|
@@ -74806,7 +75113,7 @@ const GetCustomDataRequestHandler_5 = __webpack_require__(7100);
|
|
|
74806
75113
|
const SetCustomDataRequestHandler_5 = __webpack_require__(5000);
|
|
74807
75114
|
const SetItemDataRequestHandler_1 = __webpack_require__(8696);
|
|
74808
75115
|
const GetItemDataRequestHandler_1 = __webpack_require__(8712);
|
|
74809
|
-
const GetItemInformationRequestHandler_1 = __webpack_require__(
|
|
75116
|
+
const GetItemInformationRequestHandler_1 = __webpack_require__(2488);
|
|
74810
75117
|
const GetItemsWithSegmentRequestHandler_1 = __webpack_require__(6800);
|
|
74811
75118
|
const GetItemsWithTagRequestHandler_1 = __webpack_require__(7859);
|
|
74812
75119
|
const GetCatalogIdRequestHandler_3 = __webpack_require__(392);
|
|
@@ -75605,27 +75912,10 @@ var __webpack_exports__ = {};
|
|
|
75605
75912
|
(() => {
|
|
75606
75913
|
var exports = __webpack_exports__;
|
|
75607
75914
|
|
|
75608
|
-
// import { DebugParameterCode } from "./GN-common/constant/parameterCode/DebugParameterCode";
|
|
75609
|
-
// import { GetAppConfigParameterCode } from "./GN-common/constant/parameterCode/GetAppConfigParameterCode";
|
|
75610
|
-
// import { LoginParameterCode } from "./GN-common/constant/parameterCode/LoginParameterCode";
|
|
75611
|
-
// import { EnterDisplayNameParameterCode } from "./GN-common/constant/parameterCode/EnterDisplayNameParameterCode";
|
|
75612
|
-
// import { FetchAllDataParameterCode } from "./GN-common/constant/parameterCode/FetchAllDataParameterCode";
|
|
75613
|
-
// import { RegisterSocketParameterCode } from "./GN-common/constant/parameterCode/RegisterSocketParameterCode";
|
|
75614
|
-
// import { FetchSparkPlayerParameterCode } from "./GN-common/constant/parameterCode/FetchSparkPlayerParameterCode";
|
|
75615
|
-
// import { ChatParameterCode } from "./GN-common/constant/parameterCode/ChatParameterCode";
|
|
75616
|
-
// import { FriendParameterCode } from "./GN-common/constant/parameterCode/FriendParameterCode";
|
|
75617
75915
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75618
|
-
exports.
|
|
75619
|
-
exports.UploadFileHandler = exports.SocketAppHandler = exports.HttpAppHandler = exports.AdminAppHandler = exports.
|
|
75620
|
-
|
|
75621
|
-
// export { GetAppConfigParameterCode };
|
|
75622
|
-
// export { LoginParameterCode };
|
|
75623
|
-
// export { EnterDisplayNameParameterCode };
|
|
75624
|
-
// export { FetchAllDataParameterCode };
|
|
75625
|
-
// export { RegisterSocketParameterCode };
|
|
75626
|
-
// export { FetchSparkPlayerParameterCode };
|
|
75627
|
-
// export { ChatParameterCode };
|
|
75628
|
-
// export { FriendParameterCode };
|
|
75916
|
+
exports.BooleanDataMember = exports.GNArrayDataMember = exports.GNHashtableDataMember = exports.StringDataMember = exports.DataMember = exports.AuthInfo = exports.OperationResponse = exports.Request = exports.OperationRequest = exports.OperationObject = exports.OperationArray = exports.CommonOperationRequest = exports.OperationHelper = exports.OperationEvent = exports.ReturnCode = exports.OperationCode = exports.EventCode = exports.Commands = exports.ParameterCode = exports.GNParameterCode = exports.GNErrorCode = exports.RequestType = exports.RequestRole = exports.PermissionDataItem = exports.OwnerType = exports.MatchmakingTicketStatus = exports.MatchmakingMemberStatus = exports.ItemType = exports.InvalidMemberType = exports.GroupStatus = exports.GoogleLoginType = exports.FriendStatus = exports.GNHashtableBuilder = exports.GNHashtable = exports.GNArrayBuilder = exports.GNArray = exports.GNData = exports.TimerService = exports.RequestConverterService = exports.LockService = exports.IGenericService = exports.GoogleService = exports.GenericService = exports.FacebookService = exports.PreEventCallbackService = exports.PostEventCallbackService = exports.AppleService = exports.AnalyticsService = exports.RequestController = exports.RequestHandler = void 0;
|
|
75917
|
+
exports.HttpAppSettings = exports.DdosSettings = exports.DatabaseSettings = exports.ApplicationSettings = exports.UploadFileHandler = exports.SocketAppHandler = exports.HttpAppHandler = exports.AdminAppHandler = exports.UploadFileMiddleware = exports.ApiMiddleware = exports.AntiDdosMiddleware = exports.xGNSettings = exports.xStatisticsAggregationMethod = exports.xRandom = exports.xMail = exports.Debug = exports.xDatetime = exports.xDatabase = exports.UploadFileInfo = exports.TradeInventory = exports.StoreInventory = exports.PlayerBase = exports.MongoObject = exports.MatchmakingTicket = exports.Match = exports.MasterPlayer = exports.Inventory = exports.Group = exports.GamePlayerBase = exports.GamePlayer = exports.DataObjectBase = exports.ChatMessage = exports.CharacterPlayer = exports.SecretInfoItem = exports.MasterGameSettings = exports.MasterAdminPlayer = exports.MasterAdminMongoObject = exports.GameItem = exports.xConfig = exports.xConfigItem = exports.xCacheItem = exports.xCacheData = exports.StringUtility = exports.Md5Generate = exports.DisplayNameUtility = exports.CodeHelper = exports.SecretInfo = exports.FieldDataType = exports.GNFieldDataType = exports.NumberDataMember = void 0;
|
|
75918
|
+
exports.GNServer = exports.SocketApp = exports.ServerApplicationStartup = exports.ServerApplication = exports.HttpApp = exports.DefaultApplicationStartup = exports.UploadFileSettings = exports.SocketAppSettings = exports.OtherSettings = exports.MailSettings = exports.LogSettings = void 0;
|
|
75629
75919
|
const RequestHandler_1 = __webpack_require__(9264);
|
|
75630
75920
|
Object.defineProperty(exports, "RequestHandler", ({ enumerable: true, get: function () { return RequestHandler_1.RequestHandler; } }));
|
|
75631
75921
|
const RequestController_1 = __webpack_require__(7748);
|
|
@@ -75635,7 +75925,8 @@ Object.defineProperty(exports, "AnalyticsService", ({ enumerable: true, get: fun
|
|
|
75635
75925
|
const AppleService_1 = __webpack_require__(3936);
|
|
75636
75926
|
Object.defineProperty(exports, "AppleService", ({ enumerable: true, get: function () { return AppleService_1.AppleService; } }));
|
|
75637
75927
|
const EventCallbackService_1 = __webpack_require__(492);
|
|
75638
|
-
Object.defineProperty(exports, "
|
|
75928
|
+
Object.defineProperty(exports, "PostEventCallbackService", ({ enumerable: true, get: function () { return EventCallbackService_1.PostEventCallbackService; } }));
|
|
75929
|
+
Object.defineProperty(exports, "PreEventCallbackService", ({ enumerable: true, get: function () { return EventCallbackService_1.PreEventCallbackService; } }));
|
|
75639
75930
|
const FacebookService_1 = __webpack_require__(6312);
|
|
75640
75931
|
Object.defineProperty(exports, "FacebookService", ({ enumerable: true, get: function () { return FacebookService_1.FacebookService; } }));
|
|
75641
75932
|
const GenericService_1 = __webpack_require__(3071);
|
|
@@ -75666,6 +75957,10 @@ const InvalidMemberType_1 = __webpack_require__(6052);
|
|
|
75666
75957
|
Object.defineProperty(exports, "InvalidMemberType", ({ enumerable: true, get: function () { return InvalidMemberType_1.InvalidMemberType; } }));
|
|
75667
75958
|
const ItemType_1 = __webpack_require__(7104);
|
|
75668
75959
|
Object.defineProperty(exports, "ItemType", ({ enumerable: true, get: function () { return ItemType_1.ItemType; } }));
|
|
75960
|
+
const MatchmakingMemberStatus_1 = __webpack_require__(1824);
|
|
75961
|
+
Object.defineProperty(exports, "MatchmakingMemberStatus", ({ enumerable: true, get: function () { return MatchmakingMemberStatus_1.MatchmakingMemberStatus; } }));
|
|
75962
|
+
const MatchmakingTicketStatus_1 = __webpack_require__(3396);
|
|
75963
|
+
Object.defineProperty(exports, "MatchmakingTicketStatus", ({ enumerable: true, get: function () { return MatchmakingTicketStatus_1.MatchmakingTicketStatus; } }));
|
|
75669
75964
|
const OwnerType_1 = __webpack_require__(6828);
|
|
75670
75965
|
Object.defineProperty(exports, "OwnerType", ({ enumerable: true, get: function () { return OwnerType_1.OwnerType; } }));
|
|
75671
75966
|
const PermissionDataItem_1 = __webpack_require__(8944);
|
|
@@ -75708,6 +76003,12 @@ const AuthInfo_1 = __webpack_require__(7084);
|
|
|
75708
76003
|
Object.defineProperty(exports, "AuthInfo", ({ enumerable: true, get: function () { return AuthInfo_1.AuthInfo; } }));
|
|
75709
76004
|
const DataMember_1 = __webpack_require__(4628);
|
|
75710
76005
|
Object.defineProperty(exports, "DataMember", ({ enumerable: true, get: function () { return DataMember_1.DataMember; } }));
|
|
76006
|
+
Object.defineProperty(exports, "StringDataMember", ({ enumerable: true, get: function () { return DataMember_1.StringDataMember; } }));
|
|
76007
|
+
Object.defineProperty(exports, "GNHashtableDataMember", ({ enumerable: true, get: function () { return DataMember_1.GNHashtableDataMember; } }));
|
|
76008
|
+
Object.defineProperty(exports, "GNArrayDataMember", ({ enumerable: true, get: function () { return DataMember_1.GNArrayDataMember; } }));
|
|
76009
|
+
Object.defineProperty(exports, "BooleanDataMember", ({ enumerable: true, get: function () { return DataMember_1.BooleanDataMember; } }));
|
|
76010
|
+
Object.defineProperty(exports, "NumberDataMember", ({ enumerable: true, get: function () { return DataMember_1.NumberDataMember; } }));
|
|
76011
|
+
Object.defineProperty(exports, "GNFieldDataType", ({ enumerable: true, get: function () { return DataMember_1.GNFieldDataType; } }));
|
|
75711
76012
|
const GNMetadata_1 = __webpack_require__(8128);
|
|
75712
76013
|
Object.defineProperty(exports, "FieldDataType", ({ enumerable: true, get: function () { return GNMetadata_1.FieldDataType; } }));
|
|
75713
76014
|
const SecretInfo_1 = __webpack_require__(8716);
|
|
@@ -75728,6 +76029,48 @@ const xConfigItem_1 = __webpack_require__(5736);
|
|
|
75728
76029
|
Object.defineProperty(exports, "xConfigItem", ({ enumerable: true, get: function () { return xConfigItem_1.xConfigItem; } }));
|
|
75729
76030
|
const xConfig_1 = __webpack_require__(4312);
|
|
75730
76031
|
Object.defineProperty(exports, "xConfig", ({ enumerable: true, get: function () { return xConfig_1.xConfig; } }));
|
|
76032
|
+
const GameItem_1 = __webpack_require__(4208);
|
|
76033
|
+
Object.defineProperty(exports, "GameItem", ({ enumerable: true, get: function () { return GameItem_1.GameItem; } }));
|
|
76034
|
+
const MasterAdminMongoObject_1 = __webpack_require__(4868);
|
|
76035
|
+
Object.defineProperty(exports, "MasterAdminMongoObject", ({ enumerable: true, get: function () { return MasterAdminMongoObject_1.MasterAdminMongoObject; } }));
|
|
76036
|
+
const MasterAdminPlayer_1 = __webpack_require__(8664);
|
|
76037
|
+
Object.defineProperty(exports, "MasterAdminPlayer", ({ enumerable: true, get: function () { return MasterAdminPlayer_1.MasterAdminPlayer; } }));
|
|
76038
|
+
const MasterGameSettings_1 = __webpack_require__(1012);
|
|
76039
|
+
Object.defineProperty(exports, "MasterGameSettings", ({ enumerable: true, get: function () { return MasterGameSettings_1.MasterGameSettings; } }));
|
|
76040
|
+
const SecretInfoItem_1 = __webpack_require__(5916);
|
|
76041
|
+
Object.defineProperty(exports, "SecretInfoItem", ({ enumerable: true, get: function () { return SecretInfoItem_1.SecretInfoItem; } }));
|
|
76042
|
+
const CharacterPlayer_1 = __webpack_require__(4992);
|
|
76043
|
+
Object.defineProperty(exports, "CharacterPlayer", ({ enumerable: true, get: function () { return CharacterPlayer_1.CharacterPlayer; } }));
|
|
76044
|
+
const ChatMessage_1 = __webpack_require__(1268);
|
|
76045
|
+
Object.defineProperty(exports, "ChatMessage", ({ enumerable: true, get: function () { return ChatMessage_1.ChatMessage; } }));
|
|
76046
|
+
const DataObjectBase_1 = __webpack_require__(6415);
|
|
76047
|
+
Object.defineProperty(exports, "DataObjectBase", ({ enumerable: true, get: function () { return DataObjectBase_1.DataObjectBase; } }));
|
|
76048
|
+
const GamePlayer_1 = __webpack_require__(9416);
|
|
76049
|
+
Object.defineProperty(exports, "GamePlayer", ({ enumerable: true, get: function () { return GamePlayer_1.GamePlayer; } }));
|
|
76050
|
+
const GamePlayerBase_1 = __webpack_require__(1656);
|
|
76051
|
+
Object.defineProperty(exports, "GamePlayerBase", ({ enumerable: true, get: function () { return GamePlayerBase_1.GamePlayerBase; } }));
|
|
76052
|
+
const Group_1 = __webpack_require__(3324);
|
|
76053
|
+
Object.defineProperty(exports, "Group", ({ enumerable: true, get: function () { return Group_1.Group; } }));
|
|
76054
|
+
const Inventory_1 = __webpack_require__(1940);
|
|
76055
|
+
Object.defineProperty(exports, "Inventory", ({ enumerable: true, get: function () { return Inventory_1.Inventory; } }));
|
|
76056
|
+
const MasterPlayer_1 = __webpack_require__(3456);
|
|
76057
|
+
Object.defineProperty(exports, "MasterPlayer", ({ enumerable: true, get: function () { return MasterPlayer_1.MasterPlayer; } }));
|
|
76058
|
+
const Match_1 = __webpack_require__(3484);
|
|
76059
|
+
Object.defineProperty(exports, "Match", ({ enumerable: true, get: function () { return Match_1.Match; } }));
|
|
76060
|
+
const MatchmakingTicket_1 = __webpack_require__(1648);
|
|
76061
|
+
Object.defineProperty(exports, "MatchmakingTicket", ({ enumerable: true, get: function () { return MatchmakingTicket_1.MatchmakingTicket; } }));
|
|
76062
|
+
const MongoObject_1 = __webpack_require__(1412);
|
|
76063
|
+
Object.defineProperty(exports, "MongoObject", ({ enumerable: true, get: function () { return MongoObject_1.MongoObject; } }));
|
|
76064
|
+
const PlayerBase_1 = __webpack_require__(8116);
|
|
76065
|
+
Object.defineProperty(exports, "PlayerBase", ({ enumerable: true, get: function () { return PlayerBase_1.PlayerBase; } }));
|
|
76066
|
+
const StoreInventory_1 = __webpack_require__(140);
|
|
76067
|
+
Object.defineProperty(exports, "StoreInventory", ({ enumerable: true, get: function () { return StoreInventory_1.StoreInventory; } }));
|
|
76068
|
+
const TradeInventory_1 = __webpack_require__(1284);
|
|
76069
|
+
Object.defineProperty(exports, "TradeInventory", ({ enumerable: true, get: function () { return TradeInventory_1.TradeInventory; } }));
|
|
76070
|
+
const UploadFileInfo_1 = __webpack_require__(4272);
|
|
76071
|
+
Object.defineProperty(exports, "UploadFileInfo", ({ enumerable: true, get: function () { return UploadFileInfo_1.UploadFileInfo; } }));
|
|
76072
|
+
const xDatabase_1 = __webpack_require__(3908);
|
|
76073
|
+
Object.defineProperty(exports, "xDatabase", ({ enumerable: true, get: function () { return xDatabase_1.xDatabase; } }));
|
|
75731
76074
|
const xDatetime_1 = __webpack_require__(1308);
|
|
75732
76075
|
Object.defineProperty(exports, "xDatetime", ({ enumerable: true, get: function () { return xDatetime_1.xDatetime; } }));
|
|
75733
76076
|
const xDebug_1 = __webpack_require__(9343);
|
|
@@ -75740,20 +76083,20 @@ const xStatisticsAggregationMethod_1 = __webpack_require__(6292);
|
|
|
75740
76083
|
Object.defineProperty(exports, "xStatisticsAggregationMethod", ({ enumerable: true, get: function () { return xStatisticsAggregationMethod_1.xStatisticsAggregationMethod; } }));
|
|
75741
76084
|
const xGNSettings_1 = __webpack_require__(1592);
|
|
75742
76085
|
Object.defineProperty(exports, "xGNSettings", ({ enumerable: true, get: function () { return xGNSettings_1.xGNSettings; } }));
|
|
75743
|
-
|
|
75744
|
-
|
|
75745
|
-
|
|
75746
|
-
|
|
75747
|
-
const
|
|
75748
|
-
Object.defineProperty(exports, "
|
|
75749
|
-
const
|
|
75750
|
-
Object.defineProperty(exports, "
|
|
75751
|
-
const
|
|
75752
|
-
Object.defineProperty(exports, "
|
|
75753
|
-
const
|
|
75754
|
-
Object.defineProperty(exports, "
|
|
75755
|
-
const
|
|
75756
|
-
Object.defineProperty(exports, "
|
|
76086
|
+
const AntiDdosMiddleware_1 = __webpack_require__(276);
|
|
76087
|
+
Object.defineProperty(exports, "AntiDdosMiddleware", ({ enumerable: true, get: function () { return AntiDdosMiddleware_1.AntiDdosMiddleware; } }));
|
|
76088
|
+
const ApiMiddleware_1 = __webpack_require__(3836);
|
|
76089
|
+
Object.defineProperty(exports, "ApiMiddleware", ({ enumerable: true, get: function () { return ApiMiddleware_1.ApiMiddleware; } }));
|
|
76090
|
+
const UploadFileMiddleware_1 = __webpack_require__(4988);
|
|
76091
|
+
Object.defineProperty(exports, "UploadFileMiddleware", ({ enumerable: true, get: function () { return UploadFileMiddleware_1.UploadFileMiddleware; } }));
|
|
76092
|
+
const AdminAppHandler_1 = __webpack_require__(1500);
|
|
76093
|
+
Object.defineProperty(exports, "AdminAppHandler", ({ enumerable: true, get: function () { return AdminAppHandler_1.AdminAppHandler; } }));
|
|
76094
|
+
const HttpAppHandler_1 = __webpack_require__(7304);
|
|
76095
|
+
Object.defineProperty(exports, "HttpAppHandler", ({ enumerable: true, get: function () { return HttpAppHandler_1.HttpAppHandler; } }));
|
|
76096
|
+
const SocketAppHandler_1 = __webpack_require__(6340);
|
|
76097
|
+
Object.defineProperty(exports, "SocketAppHandler", ({ enumerable: true, get: function () { return SocketAppHandler_1.SocketAppHandler; } }));
|
|
76098
|
+
const UploadFileHandler_1 = __webpack_require__(900);
|
|
76099
|
+
Object.defineProperty(exports, "UploadFileHandler", ({ enumerable: true, get: function () { return UploadFileHandler_1.UploadFileHandler; } }));
|
|
75757
76100
|
const ApplicationSettings_1 = __webpack_require__(7584);
|
|
75758
76101
|
Object.defineProperty(exports, "ApplicationSettings", ({ enumerable: true, get: function () { return ApplicationSettings_1.ApplicationSettings; } }));
|
|
75759
76102
|
const DatabaseSettings_1 = __webpack_require__(5492);
|
|
@@ -75772,38 +76115,18 @@ const SocketAppSettings_1 = __webpack_require__(7556);
|
|
|
75772
76115
|
Object.defineProperty(exports, "SocketAppSettings", ({ enumerable: true, get: function () { return SocketAppSettings_1.SocketAppSettings; } }));
|
|
75773
76116
|
const UploadFileSettings_1 = __webpack_require__(2508);
|
|
75774
76117
|
Object.defineProperty(exports, "UploadFileSettings", ({ enumerable: true, get: function () { return UploadFileSettings_1.UploadFileSettings; } }));
|
|
75775
|
-
const
|
|
75776
|
-
Object.defineProperty(exports, "
|
|
75777
|
-
const
|
|
75778
|
-
Object.defineProperty(exports, "
|
|
75779
|
-
const
|
|
75780
|
-
Object.defineProperty(exports, "
|
|
75781
|
-
const
|
|
75782
|
-
Object.defineProperty(exports, "
|
|
75783
|
-
|
|
75784
|
-
|
|
75785
|
-
|
|
75786
|
-
|
|
75787
|
-
// import { DisplayNameUtility } from "./GN-common/helper/DisplayNameUtility";
|
|
75788
|
-
// export { DisplayNameUtility as DisplayNameUltils };
|
|
75789
|
-
// import { StringUtility } from "./GN-common/helper/StringUtility";
|
|
75790
|
-
// export { StringUtility as StringUtility };
|
|
75791
|
-
// import { Md5Generate } from "./GN-common/helper/Md5Generate";
|
|
75792
|
-
// export { Md5Generate };
|
|
75793
|
-
// import { xSparkPlayer } from "./GN-library/xdatabase/lib/entity/xSparkPlayer";
|
|
75794
|
-
// export { xSparkPlayer };
|
|
75795
|
-
// import { xGamePlayer } from "./GN-library/xdatabase/lib/entity/xGamePlayer";
|
|
75796
|
-
// export { xGamePlayer };
|
|
75797
|
-
// import { xCacheData } from "./GN-library/xcachedata/lib/xCacheData";
|
|
75798
|
-
// export { xCacheData };
|
|
75799
|
-
// import { xDatetime } from "./GN-library/xdatetime/lib/xDatetime";
|
|
75800
|
-
// export { xDatetime };
|
|
75801
|
-
// import { xRandom } from "./GN-library/xrandom/lib/xRandom";
|
|
75802
|
-
// export { xRandom };
|
|
75803
|
-
// import { GNServer } from "./GNServer";
|
|
75804
|
-
// export { GNServer };
|
|
75805
|
-
// import { DataMember, StringDataMember, GNHashtableDataMember, GNArrayDataMember, BooleanDataMember, NumberDataMember, GNFieldDataType } from "./GN-common/entity/DataMember";
|
|
75806
|
-
// export { DataMember, StringDataMember, GNHashtableDataMember, GNArrayDataMember, BooleanDataMember, NumberDataMember, GNFieldDataType };
|
|
76118
|
+
const DefaultApplicationStartup_1 = __webpack_require__(800);
|
|
76119
|
+
Object.defineProperty(exports, "DefaultApplicationStartup", ({ enumerable: true, get: function () { return DefaultApplicationStartup_1.DefaultApplicationStartup; } }));
|
|
76120
|
+
const HttpApp_1 = __webpack_require__(3303);
|
|
76121
|
+
Object.defineProperty(exports, "HttpApp", ({ enumerable: true, get: function () { return HttpApp_1.HttpApp; } }));
|
|
76122
|
+
const ServerApplication_1 = __webpack_require__(2768);
|
|
76123
|
+
Object.defineProperty(exports, "ServerApplication", ({ enumerable: true, get: function () { return ServerApplication_1.ServerApplication; } }));
|
|
76124
|
+
const ServerApplicationStartup_1 = __webpack_require__(7720);
|
|
76125
|
+
Object.defineProperty(exports, "ServerApplicationStartup", ({ enumerable: true, get: function () { return ServerApplicationStartup_1.ServerApplicationStartup; } }));
|
|
76126
|
+
const SocketApp_1 = __webpack_require__(7340);
|
|
76127
|
+
Object.defineProperty(exports, "SocketApp", ({ enumerable: true, get: function () { return SocketApp_1.SocketApp; } }));
|
|
76128
|
+
const GNServer_1 = __webpack_require__(7404);
|
|
76129
|
+
Object.defineProperty(exports, "GNServer", ({ enumerable: true, get: function () { return GNServer_1.GNServer; } }));
|
|
75807
76130
|
|
|
75808
76131
|
})();
|
|
75809
76132
|
|