@xmobitea/gn-typescript-client 2.1.0 → 2.1.2
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.js.client.js +1217 -21
- package/dist/gn.js.client.min.js +1 -1
- package/dist/index.js +800 -18
- package/dist/runtime/GNNetworkAuthenticateApi.d.ts +4 -0
- package/dist/runtime/GNNetworkMasterPlayerApi.d.ts +36 -0
- package/dist/runtime/constant/OperationCode.d.ts +8 -0
- package/dist/runtime/constant/parameterCode/GNParameterCode.d.ts +22 -0
- package/dist/runtime/entity/models/AuthenticateModels.d.ts +15 -0
- package/dist/runtime/entity/models/AuthenticateRequestModels.d.ts +14 -0
- package/dist/runtime/entity/models/AuthenticateResponseModels.d.ts +6 -0
- package/dist/runtime/entity/models/DashboardModels.d.ts +22 -3
- package/dist/runtime/entity/models/MasterPlayerModels.d.ts +92 -3
- package/dist/runtime/entity/models/MasterPlayerRequestModels.d.ts +90 -0
- package/dist/runtime/entity/models/MasterPlayerResponseModels.d.ts +18 -0
- package/package.json +1 -1
package/dist/gn.js.client.js
CHANGED
|
@@ -3711,6 +3711,44 @@ var AuthenticateApi = /** @class */ (function () {
|
|
|
3711
3711
|
});
|
|
3712
3712
|
});
|
|
3713
3713
|
};
|
|
3714
|
+
AuthenticateApi.prototype.loginByGooglePlayGameService = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
3715
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
3716
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
3717
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
3718
|
+
if (customTags === void 0) { customTags = null; }
|
|
3719
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
3720
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new AuthenticateRequestModels_1.AuthenticateRequestModels.LoginByGooglePlayGameServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, AuthenticateResponseModels_1.AuthenticateResponseModels.LoginByGooglePlayGameServiceOperationResponse);
|
|
3721
|
+
};
|
|
3722
|
+
AuthenticateApi.prototype.loginByGooglePlayGameServiceAsync = function (requestData_1) {
|
|
3723
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
3724
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
3725
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
3726
|
+
if (customTags === void 0) { customTags = null; }
|
|
3727
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
3728
|
+
return __generator(this, function (_a) {
|
|
3729
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new AuthenticateRequestModels_1.AuthenticateRequestModels.LoginByGooglePlayGameServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, AuthenticateResponseModels_1.AuthenticateResponseModels.LoginByGooglePlayGameServiceOperationResponse)];
|
|
3730
|
+
});
|
|
3731
|
+
});
|
|
3732
|
+
};
|
|
3733
|
+
AuthenticateApi.prototype.loginByGameCenter = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
3734
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
3735
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
3736
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
3737
|
+
if (customTags === void 0) { customTags = null; }
|
|
3738
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
3739
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new AuthenticateRequestModels_1.AuthenticateRequestModels.LoginByGameCenterOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, AuthenticateResponseModels_1.AuthenticateResponseModels.LoginByGameCenterOperationResponse);
|
|
3740
|
+
};
|
|
3741
|
+
AuthenticateApi.prototype.loginByGameCenterAsync = function (requestData_1) {
|
|
3742
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
3743
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
3744
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
3745
|
+
if (customTags === void 0) { customTags = null; }
|
|
3746
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
3747
|
+
return __generator(this, function (_a) {
|
|
3748
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new AuthenticateRequestModels_1.AuthenticateRequestModels.LoginByGameCenterOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, AuthenticateResponseModels_1.AuthenticateResponseModels.LoginByGameCenterOperationResponse)];
|
|
3749
|
+
});
|
|
3750
|
+
});
|
|
3751
|
+
};
|
|
3714
3752
|
AuthenticateApi.prototype.loginByiOSDeviceId = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
3715
3753
|
if (onResponse === void 0) { onResponse = null; }
|
|
3716
3754
|
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
@@ -15261,6 +15299,44 @@ var MasterPlayerApi = /** @class */ (function () {
|
|
|
15261
15299
|
});
|
|
15262
15300
|
});
|
|
15263
15301
|
};
|
|
15302
|
+
MasterPlayerApi.prototype.getPlayersWithGooglePlayGameService = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
15303
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
15304
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
15305
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
15306
|
+
if (customTags === void 0) { customTags = null; }
|
|
15307
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
15308
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.GetPlayersWithGooglePlayGameServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.GetPlayersWithGooglePlayGameServiceOperationResponse);
|
|
15309
|
+
};
|
|
15310
|
+
MasterPlayerApi.prototype.getPlayersWithGooglePlayGameServiceAsync = function (requestData_1) {
|
|
15311
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
15312
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
15313
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
15314
|
+
if (customTags === void 0) { customTags = null; }
|
|
15315
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
15316
|
+
return __generator(this, function (_a) {
|
|
15317
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.GetPlayersWithGooglePlayGameServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.GetPlayersWithGooglePlayGameServiceOperationResponse)];
|
|
15318
|
+
});
|
|
15319
|
+
});
|
|
15320
|
+
};
|
|
15321
|
+
MasterPlayerApi.prototype.getPlayersWithGameCenter = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
15322
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
15323
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
15324
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
15325
|
+
if (customTags === void 0) { customTags = null; }
|
|
15326
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
15327
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.GetPlayersWithGameCenterOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.GetPlayersWithGameCenterOperationResponse);
|
|
15328
|
+
};
|
|
15329
|
+
MasterPlayerApi.prototype.getPlayersWithGameCenterAsync = function (requestData_1) {
|
|
15330
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
15331
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
15332
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
15333
|
+
if (customTags === void 0) { customTags = null; }
|
|
15334
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
15335
|
+
return __generator(this, function (_a) {
|
|
15336
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.GetPlayersWithGameCenterOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.GetPlayersWithGameCenterOperationResponse)];
|
|
15337
|
+
});
|
|
15338
|
+
});
|
|
15339
|
+
};
|
|
15264
15340
|
MasterPlayerApi.prototype.getPlayersWithSegment = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
15265
15341
|
if (onResponse === void 0) { onResponse = null; }
|
|
15266
15342
|
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
@@ -15584,6 +15660,44 @@ var MasterPlayerApi = /** @class */ (function () {
|
|
|
15584
15660
|
});
|
|
15585
15661
|
});
|
|
15586
15662
|
};
|
|
15663
|
+
MasterPlayerApi.prototype.linkGooglePlayGameService = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
15664
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
15665
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
15666
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
15667
|
+
if (customTags === void 0) { customTags = null; }
|
|
15668
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
15669
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.LinkGooglePlayGameServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.LinkGooglePlayGameServiceOperationResponse);
|
|
15670
|
+
};
|
|
15671
|
+
MasterPlayerApi.prototype.linkGooglePlayGameServiceAsync = function (requestData_1) {
|
|
15672
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
15673
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
15674
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
15675
|
+
if (customTags === void 0) { customTags = null; }
|
|
15676
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
15677
|
+
return __generator(this, function (_a) {
|
|
15678
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.LinkGooglePlayGameServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.LinkGooglePlayGameServiceOperationResponse)];
|
|
15679
|
+
});
|
|
15680
|
+
});
|
|
15681
|
+
};
|
|
15682
|
+
MasterPlayerApi.prototype.linkGameCenter = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
15683
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
15684
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
15685
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
15686
|
+
if (customTags === void 0) { customTags = null; }
|
|
15687
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
15688
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.LinkGameCenterOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.LinkGameCenterOperationResponse);
|
|
15689
|
+
};
|
|
15690
|
+
MasterPlayerApi.prototype.linkGameCenterAsync = function (requestData_1) {
|
|
15691
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
15692
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
15693
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
15694
|
+
if (customTags === void 0) { customTags = null; }
|
|
15695
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
15696
|
+
return __generator(this, function (_a) {
|
|
15697
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.LinkGameCenterOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.LinkGameCenterOperationResponse)];
|
|
15698
|
+
});
|
|
15699
|
+
});
|
|
15700
|
+
};
|
|
15587
15701
|
MasterPlayerApi.prototype.linkiOSDeviceId = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
15588
15702
|
if (onResponse === void 0) { onResponse = null; }
|
|
15589
15703
|
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
@@ -16116,6 +16230,44 @@ var MasterPlayerApi = /** @class */ (function () {
|
|
|
16116
16230
|
});
|
|
16117
16231
|
});
|
|
16118
16232
|
};
|
|
16233
|
+
MasterPlayerApi.prototype.unlinkGooglePlayGameService = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
16234
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
16235
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
16236
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
16237
|
+
if (customTags === void 0) { customTags = null; }
|
|
16238
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
16239
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.UnlinkGooglePlayGameServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.UnlinkGooglePlayGameServiceOperationResponse);
|
|
16240
|
+
};
|
|
16241
|
+
MasterPlayerApi.prototype.unlinkGooglePlayGameServiceAsync = function (requestData_1) {
|
|
16242
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
16243
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
16244
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
16245
|
+
if (customTags === void 0) { customTags = null; }
|
|
16246
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
16247
|
+
return __generator(this, function (_a) {
|
|
16248
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.UnlinkGooglePlayGameServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.UnlinkGooglePlayGameServiceOperationResponse)];
|
|
16249
|
+
});
|
|
16250
|
+
});
|
|
16251
|
+
};
|
|
16252
|
+
MasterPlayerApi.prototype.unlinkGameCenter = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
16253
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
16254
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
16255
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
16256
|
+
if (customTags === void 0) { customTags = null; }
|
|
16257
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
16258
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.UnlinkGameCenterOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.UnlinkGameCenterOperationResponse);
|
|
16259
|
+
};
|
|
16260
|
+
MasterPlayerApi.prototype.unlinkGameCenterAsync = function (requestData_1) {
|
|
16261
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
16262
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
16263
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
16264
|
+
if (customTags === void 0) { customTags = null; }
|
|
16265
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
16266
|
+
return __generator(this, function (_a) {
|
|
16267
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.UnlinkGameCenterOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.UnlinkGameCenterOperationResponse)];
|
|
16268
|
+
});
|
|
16269
|
+
});
|
|
16270
|
+
};
|
|
16119
16271
|
MasterPlayerApi.prototype.unlinkiOSDeviceId = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
16120
16272
|
if (onResponse === void 0) { onResponse = null; }
|
|
16121
16273
|
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
@@ -16578,6 +16730,44 @@ var ServerMasterPlayerApi = /** @class */ (function () {
|
|
|
16578
16730
|
});
|
|
16579
16731
|
});
|
|
16580
16732
|
};
|
|
16733
|
+
ServerMasterPlayerApi.prototype.getPlayersWithGooglePlayGameService = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
16734
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
16735
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
16736
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
16737
|
+
if (customTags === void 0) { customTags = null; }
|
|
16738
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
16739
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.ServerGetPlayersWithGooglePlayGameServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.GetPlayersWithGooglePlayGameServiceOperationResponse);
|
|
16740
|
+
};
|
|
16741
|
+
ServerMasterPlayerApi.prototype.getPlayersWithGooglePlayGameServiceAsync = function (requestData_1) {
|
|
16742
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
16743
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
16744
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
16745
|
+
if (customTags === void 0) { customTags = null; }
|
|
16746
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
16747
|
+
return __generator(this, function (_a) {
|
|
16748
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.ServerGetPlayersWithGooglePlayGameServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.GetPlayersWithGooglePlayGameServiceOperationResponse)];
|
|
16749
|
+
});
|
|
16750
|
+
});
|
|
16751
|
+
};
|
|
16752
|
+
ServerMasterPlayerApi.prototype.getPlayersWithGameCenter = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
16753
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
16754
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
16755
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
16756
|
+
if (customTags === void 0) { customTags = null; }
|
|
16757
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
16758
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.ServerGetPlayersWithGameCenterOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.GetPlayersWithGameCenterOperationResponse);
|
|
16759
|
+
};
|
|
16760
|
+
ServerMasterPlayerApi.prototype.getPlayersWithGameCenterAsync = function (requestData_1) {
|
|
16761
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
16762
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
16763
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
16764
|
+
if (customTags === void 0) { customTags = null; }
|
|
16765
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
16766
|
+
return __generator(this, function (_a) {
|
|
16767
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.ServerGetPlayersWithGameCenterOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.GetPlayersWithGameCenterOperationResponse)];
|
|
16768
|
+
});
|
|
16769
|
+
});
|
|
16770
|
+
};
|
|
16581
16771
|
ServerMasterPlayerApi.prototype.getPlayersWithSegment = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
16582
16772
|
if (onResponse === void 0) { onResponse = null; }
|
|
16583
16773
|
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
@@ -16901,6 +17091,44 @@ var ServerMasterPlayerApi = /** @class */ (function () {
|
|
|
16901
17091
|
});
|
|
16902
17092
|
});
|
|
16903
17093
|
};
|
|
17094
|
+
ServerMasterPlayerApi.prototype.linkGooglePlayGameService = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
17095
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
17096
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
17097
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
17098
|
+
if (customTags === void 0) { customTags = null; }
|
|
17099
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
17100
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.ServerLinkGooglePlayGameServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.LinkGooglePlayGameServiceOperationResponse);
|
|
17101
|
+
};
|
|
17102
|
+
ServerMasterPlayerApi.prototype.linkGooglePlayGameServiceAsync = function (requestData_1) {
|
|
17103
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
17104
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
17105
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
17106
|
+
if (customTags === void 0) { customTags = null; }
|
|
17107
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
17108
|
+
return __generator(this, function (_a) {
|
|
17109
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.ServerLinkGooglePlayGameServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.LinkGooglePlayGameServiceOperationResponse)];
|
|
17110
|
+
});
|
|
17111
|
+
});
|
|
17112
|
+
};
|
|
17113
|
+
ServerMasterPlayerApi.prototype.linkGameCenter = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
17114
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
17115
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
17116
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
17117
|
+
if (customTags === void 0) { customTags = null; }
|
|
17118
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
17119
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.ServerLinkGameCenterOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.LinkGameCenterOperationResponse);
|
|
17120
|
+
};
|
|
17121
|
+
ServerMasterPlayerApi.prototype.linkGameCenterAsync = function (requestData_1) {
|
|
17122
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
17123
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
17124
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
17125
|
+
if (customTags === void 0) { customTags = null; }
|
|
17126
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
17127
|
+
return __generator(this, function (_a) {
|
|
17128
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.ServerLinkGameCenterOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.LinkGameCenterOperationResponse)];
|
|
17129
|
+
});
|
|
17130
|
+
});
|
|
17131
|
+
};
|
|
16904
17132
|
ServerMasterPlayerApi.prototype.linkiOSDeviceId = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
16905
17133
|
if (onResponse === void 0) { onResponse = null; }
|
|
16906
17134
|
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
@@ -17433,6 +17661,44 @@ var ServerMasterPlayerApi = /** @class */ (function () {
|
|
|
17433
17661
|
});
|
|
17434
17662
|
});
|
|
17435
17663
|
};
|
|
17664
|
+
ServerMasterPlayerApi.prototype.unlinkGooglePlayGameService = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
17665
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
17666
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
17667
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
17668
|
+
if (customTags === void 0) { customTags = null; }
|
|
17669
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
17670
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.ServerUnlinkGooglePlayGameServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.UnlinkGooglePlayGameServiceOperationResponse);
|
|
17671
|
+
};
|
|
17672
|
+
ServerMasterPlayerApi.prototype.unlinkGooglePlayGameServiceAsync = function (requestData_1) {
|
|
17673
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
17674
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
17675
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
17676
|
+
if (customTags === void 0) { customTags = null; }
|
|
17677
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
17678
|
+
return __generator(this, function (_a) {
|
|
17679
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.ServerUnlinkGooglePlayGameServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.UnlinkGooglePlayGameServiceOperationResponse)];
|
|
17680
|
+
});
|
|
17681
|
+
});
|
|
17682
|
+
};
|
|
17683
|
+
ServerMasterPlayerApi.prototype.unlinkGameCenter = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
17684
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
17685
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
17686
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
17687
|
+
if (customTags === void 0) { customTags = null; }
|
|
17688
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
17689
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.ServerUnlinkGameCenterOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.UnlinkGameCenterOperationResponse);
|
|
17690
|
+
};
|
|
17691
|
+
ServerMasterPlayerApi.prototype.unlinkGameCenterAsync = function (requestData_1) {
|
|
17692
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
17693
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
17694
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
17695
|
+
if (customTags === void 0) { customTags = null; }
|
|
17696
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
17697
|
+
return __generator(this, function (_a) {
|
|
17698
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.ServerUnlinkGameCenterOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.UnlinkGameCenterOperationResponse)];
|
|
17699
|
+
});
|
|
17700
|
+
});
|
|
17701
|
+
};
|
|
17436
17702
|
ServerMasterPlayerApi.prototype.unlinkiOSDeviceId = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
17437
17703
|
if (onResponse === void 0) { onResponse = null; }
|
|
17438
17704
|
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
@@ -17895,6 +18161,44 @@ var AdminMasterPlayerApi = /** @class */ (function () {
|
|
|
17895
18161
|
});
|
|
17896
18162
|
});
|
|
17897
18163
|
};
|
|
18164
|
+
AdminMasterPlayerApi.prototype.getPlayersWithGooglePlayGameService = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
18165
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
18166
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
18167
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
18168
|
+
if (customTags === void 0) { customTags = null; }
|
|
18169
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
18170
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.AdminGetPlayersWithGooglePlayGameServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.GetPlayersWithGooglePlayGameServiceOperationResponse);
|
|
18171
|
+
};
|
|
18172
|
+
AdminMasterPlayerApi.prototype.getPlayersWithGooglePlayGameServiceAsync = function (requestData_1) {
|
|
18173
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
18174
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
18175
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
18176
|
+
if (customTags === void 0) { customTags = null; }
|
|
18177
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
18178
|
+
return __generator(this, function (_a) {
|
|
18179
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.AdminGetPlayersWithGooglePlayGameServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.GetPlayersWithGooglePlayGameServiceOperationResponse)];
|
|
18180
|
+
});
|
|
18181
|
+
});
|
|
18182
|
+
};
|
|
18183
|
+
AdminMasterPlayerApi.prototype.getPlayersWithGameCenter = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
18184
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
18185
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
18186
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
18187
|
+
if (customTags === void 0) { customTags = null; }
|
|
18188
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
18189
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.AdminGetPlayersWithGameCenterOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.GetPlayersWithGameCenterOperationResponse);
|
|
18190
|
+
};
|
|
18191
|
+
AdminMasterPlayerApi.prototype.getPlayersWithGameCenterAsync = function (requestData_1) {
|
|
18192
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
18193
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
18194
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
18195
|
+
if (customTags === void 0) { customTags = null; }
|
|
18196
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
18197
|
+
return __generator(this, function (_a) {
|
|
18198
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.AdminGetPlayersWithGameCenterOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.GetPlayersWithGameCenterOperationResponse)];
|
|
18199
|
+
});
|
|
18200
|
+
});
|
|
18201
|
+
};
|
|
17898
18202
|
AdminMasterPlayerApi.prototype.getPlayersWithSegment = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
17899
18203
|
if (onResponse === void 0) { onResponse = null; }
|
|
17900
18204
|
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
@@ -18218,6 +18522,44 @@ var AdminMasterPlayerApi = /** @class */ (function () {
|
|
|
18218
18522
|
});
|
|
18219
18523
|
});
|
|
18220
18524
|
};
|
|
18525
|
+
AdminMasterPlayerApi.prototype.linkGooglePlayGameService = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
18526
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
18527
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
18528
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
18529
|
+
if (customTags === void 0) { customTags = null; }
|
|
18530
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
18531
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.AdminLinkGooglePlayGameServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.LinkGooglePlayGameServiceOperationResponse);
|
|
18532
|
+
};
|
|
18533
|
+
AdminMasterPlayerApi.prototype.linkGooglePlayGameServiceAsync = function (requestData_1) {
|
|
18534
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
18535
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
18536
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
18537
|
+
if (customTags === void 0) { customTags = null; }
|
|
18538
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
18539
|
+
return __generator(this, function (_a) {
|
|
18540
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.AdminLinkGooglePlayGameServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.LinkGooglePlayGameServiceOperationResponse)];
|
|
18541
|
+
});
|
|
18542
|
+
});
|
|
18543
|
+
};
|
|
18544
|
+
AdminMasterPlayerApi.prototype.linkGameCenter = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
18545
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
18546
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
18547
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
18548
|
+
if (customTags === void 0) { customTags = null; }
|
|
18549
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
18550
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.AdminLinkGameCenterOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.LinkGameCenterOperationResponse);
|
|
18551
|
+
};
|
|
18552
|
+
AdminMasterPlayerApi.prototype.linkGameCenterAsync = function (requestData_1) {
|
|
18553
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
18554
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
18555
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
18556
|
+
if (customTags === void 0) { customTags = null; }
|
|
18557
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
18558
|
+
return __generator(this, function (_a) {
|
|
18559
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.AdminLinkGameCenterOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.LinkGameCenterOperationResponse)];
|
|
18560
|
+
});
|
|
18561
|
+
});
|
|
18562
|
+
};
|
|
18221
18563
|
AdminMasterPlayerApi.prototype.linkiOSDeviceId = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
18222
18564
|
if (onResponse === void 0) { onResponse = null; }
|
|
18223
18565
|
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
@@ -18750,6 +19092,44 @@ var AdminMasterPlayerApi = /** @class */ (function () {
|
|
|
18750
19092
|
});
|
|
18751
19093
|
});
|
|
18752
19094
|
};
|
|
19095
|
+
AdminMasterPlayerApi.prototype.unlinkGooglePlayGameService = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
19096
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
19097
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
19098
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
19099
|
+
if (customTags === void 0) { customTags = null; }
|
|
19100
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
19101
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.AdminUnlinkGooglePlayGameServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.UnlinkGooglePlayGameServiceOperationResponse);
|
|
19102
|
+
};
|
|
19103
|
+
AdminMasterPlayerApi.prototype.unlinkGooglePlayGameServiceAsync = function (requestData_1) {
|
|
19104
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
19105
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
19106
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
19107
|
+
if (customTags === void 0) { customTags = null; }
|
|
19108
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
19109
|
+
return __generator(this, function (_a) {
|
|
19110
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.AdminUnlinkGooglePlayGameServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.UnlinkGooglePlayGameServiceOperationResponse)];
|
|
19111
|
+
});
|
|
19112
|
+
});
|
|
19113
|
+
};
|
|
19114
|
+
AdminMasterPlayerApi.prototype.unlinkGameCenter = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
19115
|
+
if (onResponse === void 0) { onResponse = null; }
|
|
19116
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
19117
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
19118
|
+
if (customTags === void 0) { customTags = null; }
|
|
19119
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
19120
|
+
GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.AdminUnlinkGameCenterOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.UnlinkGameCenterOperationResponse);
|
|
19121
|
+
};
|
|
19122
|
+
AdminMasterPlayerApi.prototype.unlinkGameCenterAsync = function (requestData_1) {
|
|
19123
|
+
return __awaiter(this, arguments, void 0, function (requestData, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
19124
|
+
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
19125
|
+
if (overrideSecretKey === void 0) { overrideSecretKey = null; }
|
|
19126
|
+
if (customTags === void 0) { customTags = null; }
|
|
19127
|
+
if (timeout === void 0) { timeout = OperationRequest_1.OperationRequest.defaultTimeOut; }
|
|
19128
|
+
return __generator(this, function (_a) {
|
|
19129
|
+
return [2 /*return*/, GNNetwork_1.GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels_1.MasterPlayerRequestModels.AdminUnlinkGameCenterOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels_1.MasterPlayerResponseModels.UnlinkGameCenterOperationResponse)];
|
|
19130
|
+
});
|
|
19131
|
+
});
|
|
19132
|
+
};
|
|
18753
19133
|
AdminMasterPlayerApi.prototype.unlinkiOSDeviceId = function (requestData, onResponse, overrideAuthToken, overrideSecretKey, customTags, timeout) {
|
|
18754
19134
|
if (onResponse === void 0) { onResponse = null; }
|
|
18755
19135
|
if (overrideAuthToken === void 0) { overrideAuthToken = null; }
|
|
@@ -20630,6 +21010,14 @@ var OperationCode = /** @class */ (function () {
|
|
|
20630
21010
|
OperationCode.AddFunction = 167;
|
|
20631
21011
|
OperationCode.EditFunction = 168;
|
|
20632
21012
|
OperationCode.GetFunction = 169;
|
|
21013
|
+
OperationCode.LoginByGooglePlayGameService = 170;
|
|
21014
|
+
OperationCode.LoginByGameCenter = 171;
|
|
21015
|
+
OperationCode.LinkGooglePlayGameService = 172;
|
|
21016
|
+
OperationCode.LinkGameCenter = 173;
|
|
21017
|
+
OperationCode.UnlinkGooglePlayGameService = 174;
|
|
21018
|
+
OperationCode.UnlinkGameCenter = 175;
|
|
21019
|
+
OperationCode.GetPlayersWithGooglePlayGameService = 176;
|
|
21020
|
+
OperationCode.GetPlayersWithGameCenter = 177;
|
|
20633
21021
|
return OperationCode;
|
|
20634
21022
|
}());
|
|
20635
21023
|
exports.OperationCode = OperationCode;
|
|
@@ -21393,6 +21781,28 @@ var GNParameterCode = /** @class */ (function () {
|
|
|
21393
21781
|
GNParameterCode.ExecuteFunction = "ExecuteFunction";
|
|
21394
21782
|
GNParameterCode.GetFunction = "GetFunction";
|
|
21395
21783
|
GNParameterCode.CloudScript = "CloudScript";
|
|
21784
|
+
GNParameterCode.LoginByGooglePlayGameService = "LoginByGooglePlayGameService";
|
|
21785
|
+
GNParameterCode.LoginByGameCenter = "LoginByGameCenter";
|
|
21786
|
+
GNParameterCode.UnlinkGooglePlayGameService = "UnlinkGooglePlayGameService";
|
|
21787
|
+
GNParameterCode.UnlinkGameCenter = "UnlinkGameCenter";
|
|
21788
|
+
GNParameterCode.LinkGooglePlayGameService = "LinkGooglePlayGameService";
|
|
21789
|
+
GNParameterCode.LinkGameCenter = "LinkGameCenter";
|
|
21790
|
+
GNParameterCode.GooglePlayGameSettings = "GooglePlayGameSettings";
|
|
21791
|
+
GNParameterCode.GameCenterSettings = "GameCenterSettings";
|
|
21792
|
+
GNParameterCode.ApplicationId = "ApplicationId";
|
|
21793
|
+
GNParameterCode.ClientId = "ClientId";
|
|
21794
|
+
GNParameterCode.ClientSecret = "ClientSecret";
|
|
21795
|
+
GNParameterCode.RedirectUri = "RedirectUri";
|
|
21796
|
+
GNParameterCode.PlayerId = "PlayerId";
|
|
21797
|
+
GNParameterCode.PublicKeyUrl = "PublicKeyUrl";
|
|
21798
|
+
GNParameterCode.Signature = "Signature";
|
|
21799
|
+
GNParameterCode.Salt = "Salt";
|
|
21800
|
+
GNParameterCode.Timestamp = "Timestamp";
|
|
21801
|
+
GNParameterCode.GooglePlayGameService = "GooglePlayGameService";
|
|
21802
|
+
GNParameterCode.GameCenter = "GameCenter";
|
|
21803
|
+
GNParameterCode.PlayerIds = "PlayerIds";
|
|
21804
|
+
GNParameterCode.GetPlayersWithGooglePlayGameService = "GetPlayersWithGooglePlayGameService";
|
|
21805
|
+
GNParameterCode.GetPlayersWithGameCenter = "GetPlayersWithGameCenter";
|
|
21396
21806
|
return GNParameterCode;
|
|
21397
21807
|
}());
|
|
21398
21808
|
exports.GNParameterCode = GNParameterCode;
|
|
@@ -22223,6 +22633,62 @@ var AuthenticateModels;
|
|
|
22223
22633
|
return LoginByGoogleRequestData;
|
|
22224
22634
|
}());
|
|
22225
22635
|
AuthenticateModels.LoginByGoogleRequestData = LoginByGoogleRequestData;
|
|
22636
|
+
var LoginByGooglePlayGameServiceRequestData = /** @class */ (function () {
|
|
22637
|
+
function LoginByGooglePlayGameServiceRequestData() {
|
|
22638
|
+
}
|
|
22639
|
+
__decorate([
|
|
22640
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.Token, minLength: 20, maxLength: 512, mustNonNull: true }),
|
|
22641
|
+
__metadata("design:type", String)
|
|
22642
|
+
], LoginByGooglePlayGameServiceRequestData.prototype, "token", void 0);
|
|
22643
|
+
__decorate([
|
|
22644
|
+
(0, DataMember_1.BooleanDataMember)({ code: GNParameterCode_1.GNParameterCode.CreatePlayerIfNotExists, isOptional: true, defaultValue: false }),
|
|
22645
|
+
__metadata("design:type", Boolean)
|
|
22646
|
+
], LoginByGooglePlayGameServiceRequestData.prototype, "createPlayerIfNotExists", void 0);
|
|
22647
|
+
__decorate([
|
|
22648
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.InfoRequestParam, mustNonNull: true }),
|
|
22649
|
+
__metadata("design:type", InfoRequestParam)
|
|
22650
|
+
], LoginByGooglePlayGameServiceRequestData.prototype, "infoRequestParam", void 0);
|
|
22651
|
+
return LoginByGooglePlayGameServiceRequestData;
|
|
22652
|
+
}());
|
|
22653
|
+
AuthenticateModels.LoginByGooglePlayGameServiceRequestData = LoginByGooglePlayGameServiceRequestData;
|
|
22654
|
+
var LoginByGameCenterRequestData = /** @class */ (function () {
|
|
22655
|
+
function LoginByGameCenterRequestData() {
|
|
22656
|
+
}
|
|
22657
|
+
__decorate([
|
|
22658
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.PlayerId, minLength: 2, maxLength: 64, mustNonNull: true }),
|
|
22659
|
+
__metadata("design:type", String)
|
|
22660
|
+
], LoginByGameCenterRequestData.prototype, "playerId", void 0);
|
|
22661
|
+
__decorate([
|
|
22662
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.Name, minLength: 2, maxLength: 64, mustNonNull: true }),
|
|
22663
|
+
__metadata("design:type", String)
|
|
22664
|
+
], LoginByGameCenterRequestData.prototype, "name", void 0);
|
|
22665
|
+
__decorate([
|
|
22666
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.PublicKeyUrl, minLength: 2, maxLength: 256, mustNonNull: true }),
|
|
22667
|
+
__metadata("design:type", String)
|
|
22668
|
+
], LoginByGameCenterRequestData.prototype, "publicKeyUrl", void 0);
|
|
22669
|
+
__decorate([
|
|
22670
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.Signature, minLength: 2, maxLength: 512, mustNonNull: true }),
|
|
22671
|
+
__metadata("design:type", String)
|
|
22672
|
+
], LoginByGameCenterRequestData.prototype, "signature", void 0);
|
|
22673
|
+
__decorate([
|
|
22674
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.Salt, minLength: 2, maxLength: 128, mustNonNull: true }),
|
|
22675
|
+
__metadata("design:type", String)
|
|
22676
|
+
], LoginByGameCenterRequestData.prototype, "salt", void 0);
|
|
22677
|
+
__decorate([
|
|
22678
|
+
(0, DataMember_1.NumberDataMember)({ code: GNParameterCode_1.GNParameterCode.Timestamp }),
|
|
22679
|
+
__metadata("design:type", Number)
|
|
22680
|
+
], LoginByGameCenterRequestData.prototype, "timestamp", void 0);
|
|
22681
|
+
__decorate([
|
|
22682
|
+
(0, DataMember_1.BooleanDataMember)({ code: GNParameterCode_1.GNParameterCode.CreatePlayerIfNotExists, isOptional: true, defaultValue: false }),
|
|
22683
|
+
__metadata("design:type", Boolean)
|
|
22684
|
+
], LoginByGameCenterRequestData.prototype, "createPlayerIfNotExists", void 0);
|
|
22685
|
+
__decorate([
|
|
22686
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.InfoRequestParam, mustNonNull: true }),
|
|
22687
|
+
__metadata("design:type", InfoRequestParam)
|
|
22688
|
+
], LoginByGameCenterRequestData.prototype, "infoRequestParam", void 0);
|
|
22689
|
+
return LoginByGameCenterRequestData;
|
|
22690
|
+
}());
|
|
22691
|
+
AuthenticateModels.LoginByGameCenterRequestData = LoginByGameCenterRequestData;
|
|
22226
22692
|
var LoginByiOSDeviceIdRequestData = /** @class */ (function () {
|
|
22227
22693
|
function LoginByiOSDeviceIdRequestData() {
|
|
22228
22694
|
}
|
|
@@ -22537,6 +23003,34 @@ var AuthenticateRequestModels;
|
|
|
22537
23003
|
return LoginByGoogleOperationRequest;
|
|
22538
23004
|
}(CustomOperationRequest_1.CustomOperationRequestAbstract));
|
|
22539
23005
|
AuthenticateRequestModels.LoginByGoogleOperationRequest = LoginByGoogleOperationRequest;
|
|
23006
|
+
var LoginByGooglePlayGameServiceOperationRequest = /** @class */ (function (_super) {
|
|
23007
|
+
__extends(LoginByGooglePlayGameServiceOperationRequest, _super);
|
|
23008
|
+
function LoginByGooglePlayGameServiceOperationRequest(requestData, timeout) {
|
|
23009
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
23010
|
+
_this.operationCode = OperationCode_1.OperationCode.LoginByGooglePlayGameService;
|
|
23011
|
+
_this.operationEncrypted = true;
|
|
23012
|
+
_this.requestType = RequestType_1.RequestType.Authenticate;
|
|
23013
|
+
_this.requestRole = RequestRole_1.RequestRole.Client;
|
|
23014
|
+
_this.requestDataCls = AuthenticateModels_1.AuthenticateModels.LoginByGooglePlayGameServiceRequestData;
|
|
23015
|
+
return _this;
|
|
23016
|
+
}
|
|
23017
|
+
return LoginByGooglePlayGameServiceOperationRequest;
|
|
23018
|
+
}(CustomOperationRequest_1.CustomOperationRequestAbstract));
|
|
23019
|
+
AuthenticateRequestModels.LoginByGooglePlayGameServiceOperationRequest = LoginByGooglePlayGameServiceOperationRequest;
|
|
23020
|
+
var LoginByGameCenterOperationRequest = /** @class */ (function (_super) {
|
|
23021
|
+
__extends(LoginByGameCenterOperationRequest, _super);
|
|
23022
|
+
function LoginByGameCenterOperationRequest(requestData, timeout) {
|
|
23023
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
23024
|
+
_this.operationCode = OperationCode_1.OperationCode.LoginByGameCenter;
|
|
23025
|
+
_this.operationEncrypted = true;
|
|
23026
|
+
_this.requestType = RequestType_1.RequestType.Authenticate;
|
|
23027
|
+
_this.requestRole = RequestRole_1.RequestRole.Client;
|
|
23028
|
+
_this.requestDataCls = AuthenticateModels_1.AuthenticateModels.LoginByGameCenterRequestData;
|
|
23029
|
+
return _this;
|
|
23030
|
+
}
|
|
23031
|
+
return LoginByGameCenterOperationRequest;
|
|
23032
|
+
}(CustomOperationRequest_1.CustomOperationRequestAbstract));
|
|
23033
|
+
AuthenticateRequestModels.LoginByGameCenterOperationRequest = LoginByGameCenterOperationRequest;
|
|
22540
23034
|
var LoginByiOSDeviceIdOperationRequest = /** @class */ (function (_super) {
|
|
22541
23035
|
__extends(LoginByiOSDeviceIdOperationRequest, _super);
|
|
22542
23036
|
function LoginByiOSDeviceIdOperationRequest(requestData, timeout) {
|
|
@@ -22756,6 +23250,26 @@ var AuthenticateResponseModels;
|
|
|
22756
23250
|
return LoginByGoogleOperationResponse;
|
|
22757
23251
|
}(CustomOperationResponse_1.CustomOperationResponseAbstract));
|
|
22758
23252
|
AuthenticateResponseModels.LoginByGoogleOperationResponse = LoginByGoogleOperationResponse;
|
|
23253
|
+
var LoginByGooglePlayGameServiceOperationResponse = /** @class */ (function (_super) {
|
|
23254
|
+
__extends(LoginByGooglePlayGameServiceOperationResponse, _super);
|
|
23255
|
+
function LoginByGooglePlayGameServiceOperationResponse() {
|
|
23256
|
+
var _this = _super.call(this) || this;
|
|
23257
|
+
_this.responseDataCls = AuthenticateModels_1.AuthenticateModels.AuthenticateResponseData;
|
|
23258
|
+
return _this;
|
|
23259
|
+
}
|
|
23260
|
+
return LoginByGooglePlayGameServiceOperationResponse;
|
|
23261
|
+
}(CustomOperationResponse_1.CustomOperationResponseAbstract));
|
|
23262
|
+
AuthenticateResponseModels.LoginByGooglePlayGameServiceOperationResponse = LoginByGooglePlayGameServiceOperationResponse;
|
|
23263
|
+
var LoginByGameCenterOperationResponse = /** @class */ (function (_super) {
|
|
23264
|
+
__extends(LoginByGameCenterOperationResponse, _super);
|
|
23265
|
+
function LoginByGameCenterOperationResponse() {
|
|
23266
|
+
var _this = _super.call(this) || this;
|
|
23267
|
+
_this.responseDataCls = AuthenticateModels_1.AuthenticateModels.AuthenticateResponseData;
|
|
23268
|
+
return _this;
|
|
23269
|
+
}
|
|
23270
|
+
return LoginByGameCenterOperationResponse;
|
|
23271
|
+
}(CustomOperationResponse_1.CustomOperationResponseAbstract));
|
|
23272
|
+
AuthenticateResponseModels.LoginByGameCenterOperationResponse = LoginByGameCenterOperationResponse;
|
|
22759
23273
|
var LoginByiOSDeviceIdOperationResponse = /** @class */ (function (_super) {
|
|
22760
23274
|
__extends(LoginByiOSDeviceIdOperationResponse, _super);
|
|
22761
23275
|
function LoginByiOSDeviceIdOperationResponse() {
|
|
@@ -28914,20 +29428,52 @@ var DashboardModels;
|
|
|
28914
29428
|
function ThirtPartyGoogleSettingsParam() {
|
|
28915
29429
|
}
|
|
28916
29430
|
__decorate([
|
|
28917
|
-
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.GoogleClientId
|
|
29431
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.GoogleClientId }),
|
|
28918
29432
|
__metadata("design:type", String)
|
|
28919
29433
|
], ThirtPartyGoogleSettingsParam.prototype, "googleClientId", void 0);
|
|
28920
29434
|
__decorate([
|
|
28921
|
-
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.PackageId
|
|
29435
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.PackageId }),
|
|
28922
29436
|
__metadata("design:type", String)
|
|
28923
29437
|
], ThirtPartyGoogleSettingsParam.prototype, "packageId", void 0);
|
|
28924
29438
|
__decorate([
|
|
28925
|
-
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.PublicRSAKey
|
|
29439
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.PublicRSAKey }),
|
|
28926
29440
|
__metadata("design:type", String)
|
|
28927
29441
|
], ThirtPartyGoogleSettingsParam.prototype, "publicRSAKey", void 0);
|
|
28928
29442
|
return ThirtPartyGoogleSettingsParam;
|
|
28929
29443
|
}());
|
|
28930
29444
|
DashboardModels.ThirtPartyGoogleSettingsParam = ThirtPartyGoogleSettingsParam;
|
|
29445
|
+
var ThirtPartyGameCenterSettingsParam = /** @class */ (function () {
|
|
29446
|
+
function ThirtPartyGameCenterSettingsParam() {
|
|
29447
|
+
}
|
|
29448
|
+
__decorate([
|
|
29449
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.PackageId }),
|
|
29450
|
+
__metadata("design:type", String)
|
|
29451
|
+
], ThirtPartyGameCenterSettingsParam.prototype, "packageId", void 0);
|
|
29452
|
+
return ThirtPartyGameCenterSettingsParam;
|
|
29453
|
+
}());
|
|
29454
|
+
DashboardModels.ThirtPartyGameCenterSettingsParam = ThirtPartyGameCenterSettingsParam;
|
|
29455
|
+
var ThirtPartyGooglePlayGameSettingsParam = /** @class */ (function () {
|
|
29456
|
+
function ThirtPartyGooglePlayGameSettingsParam() {
|
|
29457
|
+
}
|
|
29458
|
+
__decorate([
|
|
29459
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.RedirectUri }),
|
|
29460
|
+
__metadata("design:type", String)
|
|
29461
|
+
], ThirtPartyGooglePlayGameSettingsParam.prototype, "redirectUri", void 0);
|
|
29462
|
+
__decorate([
|
|
29463
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.ClientId }),
|
|
29464
|
+
__metadata("design:type", String)
|
|
29465
|
+
], ThirtPartyGooglePlayGameSettingsParam.prototype, "clientId", void 0);
|
|
29466
|
+
__decorate([
|
|
29467
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.ClientSecret }),
|
|
29468
|
+
__metadata("design:type", String)
|
|
29469
|
+
], ThirtPartyGooglePlayGameSettingsParam.prototype, "clientSecret", void 0);
|
|
29470
|
+
__decorate([
|
|
29471
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.ApplicationId }),
|
|
29472
|
+
__metadata("design:type", String)
|
|
29473
|
+
], ThirtPartyGooglePlayGameSettingsParam.prototype, "applicationId", void 0);
|
|
29474
|
+
return ThirtPartyGooglePlayGameSettingsParam;
|
|
29475
|
+
}());
|
|
29476
|
+
DashboardModels.ThirtPartyGooglePlayGameSettingsParam = ThirtPartyGooglePlayGameSettingsParam;
|
|
28931
29477
|
var ThirtPartyParam = /** @class */ (function () {
|
|
28932
29478
|
function ThirtPartyParam() {
|
|
28933
29479
|
}
|
|
@@ -28943,6 +29489,14 @@ var DashboardModels;
|
|
|
28943
29489
|
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.AppleSettings, isOptional: true }),
|
|
28944
29490
|
__metadata("design:type", ThirtPartyAppleSettingsParam)
|
|
28945
29491
|
], ThirtPartyParam.prototype, "appleSettings", void 0);
|
|
29492
|
+
__decorate([
|
|
29493
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.GooglePlayGameService, isOptional: true }),
|
|
29494
|
+
__metadata("design:type", ThirtPartyGooglePlayGameSettingsParam)
|
|
29495
|
+
], ThirtPartyParam.prototype, "googlePlayGameSettings", void 0);
|
|
29496
|
+
__decorate([
|
|
29497
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.GameCenterSettings, isOptional: true }),
|
|
29498
|
+
__metadata("design:type", ThirtPartyGameCenterSettingsParam)
|
|
29499
|
+
], ThirtPartyParam.prototype, "gameCenterSettings", void 0);
|
|
28946
29500
|
return ThirtPartyParam;
|
|
28947
29501
|
}());
|
|
28948
29502
|
DashboardModels.ThirtPartyParam = ThirtPartyParam;
|
|
@@ -29713,6 +30267,14 @@ var DashboardModels;
|
|
|
29713
30267
|
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.LinkGoogle, isOptional: true }),
|
|
29714
30268
|
__metadata("design:type", PermissionRulesParam)
|
|
29715
30269
|
], MasterPlayerPermissionRulesParam.prototype, "linkGoogle", void 0);
|
|
30270
|
+
__decorate([
|
|
30271
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.LinkGooglePlayGameService, isOptional: true }),
|
|
30272
|
+
__metadata("design:type", PermissionRulesParam)
|
|
30273
|
+
], MasterPlayerPermissionRulesParam.prototype, "linkGooglePlayGameService", void 0);
|
|
30274
|
+
__decorate([
|
|
30275
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.LinkGameCenter, isOptional: true }),
|
|
30276
|
+
__metadata("design:type", PermissionRulesParam)
|
|
30277
|
+
], MasterPlayerPermissionRulesParam.prototype, "linkGameCenter", void 0);
|
|
29716
30278
|
__decorate([
|
|
29717
30279
|
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.LinkiOSDeviceId, isOptional: true }),
|
|
29718
30280
|
__metadata("design:type", PermissionRulesParam)
|
|
@@ -29769,6 +30331,14 @@ var DashboardModels;
|
|
|
29769
30331
|
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.UnlinkGoogle, isOptional: true }),
|
|
29770
30332
|
__metadata("design:type", PermissionRulesParam)
|
|
29771
30333
|
], MasterPlayerPermissionRulesParam.prototype, "unlinkGoogle", void 0);
|
|
30334
|
+
__decorate([
|
|
30335
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.UnlinkGooglePlayGameService, isOptional: true }),
|
|
30336
|
+
__metadata("design:type", PermissionRulesParam)
|
|
30337
|
+
], MasterPlayerPermissionRulesParam.prototype, "unlinkGooglePlayGameService", void 0);
|
|
30338
|
+
__decorate([
|
|
30339
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.UnlinkGameCenter, isOptional: true }),
|
|
30340
|
+
__metadata("design:type", PermissionRulesParam)
|
|
30341
|
+
], MasterPlayerPermissionRulesParam.prototype, "unlinkGameCenter", void 0);
|
|
29772
30342
|
__decorate([
|
|
29773
30343
|
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.UnlinkiOSDeviceId, isOptional: true }),
|
|
29774
30344
|
__metadata("design:type", PermissionRulesParam)
|
|
@@ -29937,6 +30507,14 @@ var DashboardModels;
|
|
|
29937
30507
|
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.GetPlayersWithTag, isOptional: true }),
|
|
29938
30508
|
__metadata("design:type", PermissionRulesParam)
|
|
29939
30509
|
], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithTag", void 0);
|
|
30510
|
+
__decorate([
|
|
30511
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.GetPlayersWithGooglePlayGameService, isOptional: true }),
|
|
30512
|
+
__metadata("design:type", PermissionRulesParam)
|
|
30513
|
+
], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithGooglePlayGameService", void 0);
|
|
30514
|
+
__decorate([
|
|
30515
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.GetPlayersWithGameCenter, isOptional: true }),
|
|
30516
|
+
__metadata("design:type", PermissionRulesParam)
|
|
30517
|
+
], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithGameCenter", void 0);
|
|
29940
30518
|
__decorate([
|
|
29941
30519
|
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.GetExternal, isOptional: true }),
|
|
29942
30520
|
__metadata("design:type", PermissionRulesParam)
|
|
@@ -30187,6 +30765,14 @@ var DashboardModels;
|
|
|
30187
30765
|
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.LoginByGoogle, isOptional: true }),
|
|
30188
30766
|
__metadata("design:type", PermissionRulesParam)
|
|
30189
30767
|
], AuthenticatePermissionRulesParam.prototype, "loginByGoogle", void 0);
|
|
30768
|
+
__decorate([
|
|
30769
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.LoginByGooglePlayGameService, isOptional: true }),
|
|
30770
|
+
__metadata("design:type", PermissionRulesParam)
|
|
30771
|
+
], AuthenticatePermissionRulesParam.prototype, "loginByGooglePlayGameService", void 0);
|
|
30772
|
+
__decorate([
|
|
30773
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.LoginByGameCenter, isOptional: true }),
|
|
30774
|
+
__metadata("design:type", PermissionRulesParam)
|
|
30775
|
+
], AuthenticatePermissionRulesParam.prototype, "loginByGameCenter", void 0);
|
|
30190
30776
|
__decorate([
|
|
30191
30777
|
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.LoginByiOSDeviceId, isOptional: true }),
|
|
30192
30778
|
__metadata("design:type", PermissionRulesParam)
|
|
@@ -42128,44 +42714,100 @@ var MasterPlayerModels;
|
|
|
42128
42714
|
return PlayerStatisticsParam;
|
|
42129
42715
|
}());
|
|
42130
42716
|
MasterPlayerModels.PlayerStatisticsParam = PlayerStatisticsParam;
|
|
42717
|
+
var GenericService = /** @class */ (function () {
|
|
42718
|
+
function GenericService() {
|
|
42719
|
+
}
|
|
42720
|
+
__decorate([
|
|
42721
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.ServiceName }),
|
|
42722
|
+
__metadata("design:type", String)
|
|
42723
|
+
], GenericService.prototype, "serviceName", void 0);
|
|
42724
|
+
__decorate([
|
|
42725
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.ServiceId }),
|
|
42726
|
+
__metadata("design:type", String)
|
|
42727
|
+
], GenericService.prototype, "serviceId", void 0);
|
|
42728
|
+
return GenericService;
|
|
42729
|
+
}());
|
|
42730
|
+
MasterPlayerModels.GenericService = GenericService;
|
|
42131
42731
|
var ExternalItem = /** @class */ (function () {
|
|
42132
42732
|
function ExternalItem() {
|
|
42133
42733
|
}
|
|
42734
|
+
__decorate([
|
|
42735
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.Device, isOptional: true }),
|
|
42736
|
+
__metadata("design:type", Device)
|
|
42737
|
+
], ExternalItem.prototype, "device", void 0);
|
|
42738
|
+
__decorate([
|
|
42739
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.Account, isOptional: true }),
|
|
42740
|
+
__metadata("design:type", Account)
|
|
42741
|
+
], ExternalItem.prototype, "account", void 0);
|
|
42742
|
+
__decorate([
|
|
42743
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.Custom, isOptional: true }),
|
|
42744
|
+
__metadata("design:type", Custom)
|
|
42745
|
+
], ExternalItem.prototype, "custom", void 0);
|
|
42746
|
+
__decorate([
|
|
42747
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.Apple, isOptional: true }),
|
|
42748
|
+
__metadata("design:type", Apple)
|
|
42749
|
+
], ExternalItem.prototype, "apple", void 0);
|
|
42750
|
+
__decorate([
|
|
42751
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.Google, isOptional: true }),
|
|
42752
|
+
__metadata("design:type", Google)
|
|
42753
|
+
], ExternalItem.prototype, "google", void 0);
|
|
42754
|
+
__decorate([
|
|
42755
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.Facebook, isOptional: true }),
|
|
42756
|
+
__metadata("design:type", Facebook)
|
|
42757
|
+
], ExternalItem.prototype, "facebook", void 0);
|
|
42758
|
+
__decorate([
|
|
42759
|
+
(0, DataMember_1.GNArrayDataMember)({ code: GNParameterCode_1.GNParameterCode.GenericService, isOptional: true, elementCls: GenericService }),
|
|
42760
|
+
__metadata("design:type", Array)
|
|
42761
|
+
], ExternalItem.prototype, "genericServices", void 0);
|
|
42762
|
+
__decorate([
|
|
42763
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.GooglePlayGameService, isOptional: true }),
|
|
42764
|
+
__metadata("design:type", GooglePlayGameService)
|
|
42765
|
+
], ExternalItem.prototype, "googlePlayGameService", void 0);
|
|
42766
|
+
__decorate([
|
|
42767
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.GameCenter, isOptional: true }),
|
|
42768
|
+
__metadata("design:type", GameCenter)
|
|
42769
|
+
], ExternalItem.prototype, "gameCenter", void 0);
|
|
42770
|
+
return ExternalItem;
|
|
42771
|
+
}());
|
|
42772
|
+
MasterPlayerModels.ExternalItem = ExternalItem;
|
|
42773
|
+
var Device = /** @class */ (function () {
|
|
42774
|
+
function Device() {
|
|
42775
|
+
}
|
|
42134
42776
|
__decorate([
|
|
42135
42777
|
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.CustomDeviceId, isOptional: true }),
|
|
42136
42778
|
__metadata("design:type", String)
|
|
42137
|
-
],
|
|
42779
|
+
], Device.prototype, "customDeviceId", void 0);
|
|
42138
42780
|
__decorate([
|
|
42139
42781
|
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.AndroidDeviceId, isOptional: true }),
|
|
42140
42782
|
__metadata("design:type", String)
|
|
42141
|
-
],
|
|
42783
|
+
], Device.prototype, "androidDeviceId", void 0);
|
|
42142
42784
|
__decorate([
|
|
42143
42785
|
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.iOSDeviceId, isOptional: true }),
|
|
42144
42786
|
__metadata("design:type", String)
|
|
42145
|
-
],
|
|
42787
|
+
], Device.prototype, "iOSDeviceId", void 0);
|
|
42146
42788
|
__decorate([
|
|
42147
42789
|
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.WindowsPhoneDeviceId, isOptional: true }),
|
|
42148
42790
|
__metadata("design:type", String)
|
|
42149
|
-
],
|
|
42791
|
+
], Device.prototype, "windowsPhoneDeviceId", void 0);
|
|
42150
42792
|
__decorate([
|
|
42151
42793
|
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.WindowsDeviceId, isOptional: true }),
|
|
42152
42794
|
__metadata("design:type", String)
|
|
42153
|
-
],
|
|
42795
|
+
], Device.prototype, "windowsDeviceId", void 0);
|
|
42154
42796
|
__decorate([
|
|
42155
42797
|
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.LinuxDeviceId, isOptional: true }),
|
|
42156
42798
|
__metadata("design:type", String)
|
|
42157
|
-
],
|
|
42799
|
+
], Device.prototype, "linuxDeviceId", void 0);
|
|
42158
42800
|
__decorate([
|
|
42159
42801
|
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.MacOSDeviceId, isOptional: true }),
|
|
42160
42802
|
__metadata("design:type", String)
|
|
42161
|
-
],
|
|
42803
|
+
], Device.prototype, "macOSDeviceId", void 0);
|
|
42162
42804
|
__decorate([
|
|
42163
42805
|
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.EditorDeviceId, isOptional: true }),
|
|
42164
42806
|
__metadata("design:type", String)
|
|
42165
|
-
],
|
|
42166
|
-
return
|
|
42807
|
+
], Device.prototype, "editorDeviceId", void 0);
|
|
42808
|
+
return Device;
|
|
42167
42809
|
}());
|
|
42168
|
-
MasterPlayerModels.
|
|
42810
|
+
MasterPlayerModels.Device = Device;
|
|
42169
42811
|
var Account = /** @class */ (function () {
|
|
42170
42812
|
function Account() {
|
|
42171
42813
|
}
|
|
@@ -42236,20 +42878,42 @@ var MasterPlayerModels;
|
|
|
42236
42878
|
return Facebook;
|
|
42237
42879
|
}());
|
|
42238
42880
|
MasterPlayerModels.Facebook = Facebook;
|
|
42239
|
-
var
|
|
42240
|
-
function
|
|
42881
|
+
var GooglePlayGameService = /** @class */ (function () {
|
|
42882
|
+
function GooglePlayGameService() {
|
|
42241
42883
|
}
|
|
42242
42884
|
__decorate([
|
|
42243
|
-
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.
|
|
42885
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.PlayerId }),
|
|
42244
42886
|
__metadata("design:type", String)
|
|
42245
|
-
],
|
|
42887
|
+
], GooglePlayGameService.prototype, "playerId", void 0);
|
|
42246
42888
|
__decorate([
|
|
42247
|
-
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.
|
|
42889
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.DisplayName }),
|
|
42248
42890
|
__metadata("design:type", String)
|
|
42249
|
-
],
|
|
42250
|
-
|
|
42891
|
+
], GooglePlayGameService.prototype, "displayName", void 0);
|
|
42892
|
+
__decorate([
|
|
42893
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.Email }),
|
|
42894
|
+
__metadata("design:type", String)
|
|
42895
|
+
], GooglePlayGameService.prototype, "email", void 0);
|
|
42896
|
+
return GooglePlayGameService;
|
|
42251
42897
|
}());
|
|
42252
|
-
MasterPlayerModels.
|
|
42898
|
+
MasterPlayerModels.GooglePlayGameService = GooglePlayGameService;
|
|
42899
|
+
var GameCenter = /** @class */ (function () {
|
|
42900
|
+
function GameCenter() {
|
|
42901
|
+
}
|
|
42902
|
+
__decorate([
|
|
42903
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.PlayerId }),
|
|
42904
|
+
__metadata("design:type", String)
|
|
42905
|
+
], GameCenter.prototype, "playerId", void 0);
|
|
42906
|
+
__decorate([
|
|
42907
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.DisplayName }),
|
|
42908
|
+
__metadata("design:type", String)
|
|
42909
|
+
], GameCenter.prototype, "displayName", void 0);
|
|
42910
|
+
__decorate([
|
|
42911
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.Email }),
|
|
42912
|
+
__metadata("design:type", String)
|
|
42913
|
+
], GameCenter.prototype, "email", void 0);
|
|
42914
|
+
return GameCenter;
|
|
42915
|
+
}());
|
|
42916
|
+
MasterPlayerModels.GameCenter = GameCenter;
|
|
42253
42917
|
var AddSegmentRequestData = /** @class */ (function () {
|
|
42254
42918
|
function AddSegmentRequestData() {
|
|
42255
42919
|
}
|
|
@@ -42844,6 +43508,66 @@ var MasterPlayerModels;
|
|
|
42844
43508
|
return AdminGetPlayersWithGoogleRequestData;
|
|
42845
43509
|
}(ServerGetPlayersWithGoogleRequestData));
|
|
42846
43510
|
MasterPlayerModels.AdminGetPlayersWithGoogleRequestData = AdminGetPlayersWithGoogleRequestData;
|
|
43511
|
+
var GetPlayersWithGooglePlayGameServiceRequestData = /** @class */ (function () {
|
|
43512
|
+
function GetPlayersWithGooglePlayGameServiceRequestData() {
|
|
43513
|
+
}
|
|
43514
|
+
__decorate([
|
|
43515
|
+
(0, DataMember_1.GNArrayDataMember)({ code: GNParameterCode_1.GNParameterCode.PlayerIds, mustNonNull: true, elementCls: String }),
|
|
43516
|
+
__metadata("design:type", Array)
|
|
43517
|
+
], GetPlayersWithGooglePlayGameServiceRequestData.prototype, "playerIds", void 0);
|
|
43518
|
+
__decorate([
|
|
43519
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.InfoRequestParam, mustNonNull: true }),
|
|
43520
|
+
__metadata("design:type", InfoRequestParam)
|
|
43521
|
+
], GetPlayersWithGooglePlayGameServiceRequestData.prototype, "infoRequestParam", void 0);
|
|
43522
|
+
return GetPlayersWithGooglePlayGameServiceRequestData;
|
|
43523
|
+
}());
|
|
43524
|
+
MasterPlayerModels.GetPlayersWithGooglePlayGameServiceRequestData = GetPlayersWithGooglePlayGameServiceRequestData;
|
|
43525
|
+
var ServerGetPlayersWithGooglePlayGameServiceRequestData = /** @class */ (function (_super) {
|
|
43526
|
+
__extends(ServerGetPlayersWithGooglePlayGameServiceRequestData, _super);
|
|
43527
|
+
function ServerGetPlayersWithGooglePlayGameServiceRequestData() {
|
|
43528
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
43529
|
+
}
|
|
43530
|
+
return ServerGetPlayersWithGooglePlayGameServiceRequestData;
|
|
43531
|
+
}(GetPlayersWithGooglePlayGameServiceRequestData));
|
|
43532
|
+
MasterPlayerModels.ServerGetPlayersWithGooglePlayGameServiceRequestData = ServerGetPlayersWithGooglePlayGameServiceRequestData;
|
|
43533
|
+
var AdminGetPlayersWithGooglePlayGameServiceRequestData = /** @class */ (function (_super) {
|
|
43534
|
+
__extends(AdminGetPlayersWithGooglePlayGameServiceRequestData, _super);
|
|
43535
|
+
function AdminGetPlayersWithGooglePlayGameServiceRequestData() {
|
|
43536
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
43537
|
+
}
|
|
43538
|
+
return AdminGetPlayersWithGooglePlayGameServiceRequestData;
|
|
43539
|
+
}(ServerGetPlayersWithGooglePlayGameServiceRequestData));
|
|
43540
|
+
MasterPlayerModels.AdminGetPlayersWithGooglePlayGameServiceRequestData = AdminGetPlayersWithGooglePlayGameServiceRequestData;
|
|
43541
|
+
var GetPlayersWithGameCenterRequestData = /** @class */ (function () {
|
|
43542
|
+
function GetPlayersWithGameCenterRequestData() {
|
|
43543
|
+
}
|
|
43544
|
+
__decorate([
|
|
43545
|
+
(0, DataMember_1.GNArrayDataMember)({ code: GNParameterCode_1.GNParameterCode.PlayerIds, mustNonNull: true, elementCls: String }),
|
|
43546
|
+
__metadata("design:type", Array)
|
|
43547
|
+
], GetPlayersWithGameCenterRequestData.prototype, "playerIds", void 0);
|
|
43548
|
+
__decorate([
|
|
43549
|
+
(0, DataMember_1.GNHashtableDataMember)({ code: GNParameterCode_1.GNParameterCode.InfoRequestParam, mustNonNull: true }),
|
|
43550
|
+
__metadata("design:type", InfoRequestParam)
|
|
43551
|
+
], GetPlayersWithGameCenterRequestData.prototype, "infoRequestParam", void 0);
|
|
43552
|
+
return GetPlayersWithGameCenterRequestData;
|
|
43553
|
+
}());
|
|
43554
|
+
MasterPlayerModels.GetPlayersWithGameCenterRequestData = GetPlayersWithGameCenterRequestData;
|
|
43555
|
+
var ServerGetPlayersWithGameCenterRequestData = /** @class */ (function (_super) {
|
|
43556
|
+
__extends(ServerGetPlayersWithGameCenterRequestData, _super);
|
|
43557
|
+
function ServerGetPlayersWithGameCenterRequestData() {
|
|
43558
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
43559
|
+
}
|
|
43560
|
+
return ServerGetPlayersWithGameCenterRequestData;
|
|
43561
|
+
}(GetPlayersWithGameCenterRequestData));
|
|
43562
|
+
MasterPlayerModels.ServerGetPlayersWithGameCenterRequestData = ServerGetPlayersWithGameCenterRequestData;
|
|
43563
|
+
var AdminGetPlayersWithGameCenterRequestData = /** @class */ (function (_super) {
|
|
43564
|
+
__extends(AdminGetPlayersWithGameCenterRequestData, _super);
|
|
43565
|
+
function AdminGetPlayersWithGameCenterRequestData() {
|
|
43566
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
43567
|
+
}
|
|
43568
|
+
return AdminGetPlayersWithGameCenterRequestData;
|
|
43569
|
+
}(ServerGetPlayersWithGameCenterRequestData));
|
|
43570
|
+
MasterPlayerModels.AdminGetPlayersWithGameCenterRequestData = AdminGetPlayersWithGameCenterRequestData;
|
|
42847
43571
|
var GetPlayersWithSegmentRequestData = /** @class */ (function () {
|
|
42848
43572
|
function GetPlayersWithSegmentRequestData() {
|
|
42849
43573
|
}
|
|
@@ -43490,6 +44214,102 @@ var MasterPlayerModels;
|
|
|
43490
44214
|
return AdminLinkGoogleRequestData;
|
|
43491
44215
|
}(ServerLinkGoogleRequestData));
|
|
43492
44216
|
MasterPlayerModels.AdminLinkGoogleRequestData = AdminLinkGoogleRequestData;
|
|
44217
|
+
var LinkGooglePlayGameServiceRequestData = /** @class */ (function () {
|
|
44218
|
+
function LinkGooglePlayGameServiceRequestData() {
|
|
44219
|
+
}
|
|
44220
|
+
__decorate([
|
|
44221
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.UserId, minLength: 10, maxLength: 10, isOptional: true }),
|
|
44222
|
+
__metadata("design:type", String)
|
|
44223
|
+
], LinkGooglePlayGameServiceRequestData.prototype, "userId", void 0);
|
|
44224
|
+
__decorate([
|
|
44225
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.Token, minLength: 20, maxLength: 512, mustNonNull: true }),
|
|
44226
|
+
__metadata("design:type", String)
|
|
44227
|
+
], LinkGooglePlayGameServiceRequestData.prototype, "token", void 0);
|
|
44228
|
+
__decorate([
|
|
44229
|
+
(0, DataMember_1.BooleanDataMember)({ code: GNParameterCode_1.GNParameterCode.ForceLink, isOptional: true, defaultValue: false }),
|
|
44230
|
+
__metadata("design:type", Boolean)
|
|
44231
|
+
], LinkGooglePlayGameServiceRequestData.prototype, "forceLink", void 0);
|
|
44232
|
+
return LinkGooglePlayGameServiceRequestData;
|
|
44233
|
+
}());
|
|
44234
|
+
MasterPlayerModels.LinkGooglePlayGameServiceRequestData = LinkGooglePlayGameServiceRequestData;
|
|
44235
|
+
var ServerLinkGooglePlayGameServiceRequestData = /** @class */ (function (_super) {
|
|
44236
|
+
__extends(ServerLinkGooglePlayGameServiceRequestData, _super);
|
|
44237
|
+
function ServerLinkGooglePlayGameServiceRequestData() {
|
|
44238
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
44239
|
+
}
|
|
44240
|
+
__decorate([
|
|
44241
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.UserId, minLength: 10, maxLength: 10, mustNonNull: true }),
|
|
44242
|
+
__metadata("design:type", String)
|
|
44243
|
+
], ServerLinkGooglePlayGameServiceRequestData.prototype, "userId", void 0);
|
|
44244
|
+
return ServerLinkGooglePlayGameServiceRequestData;
|
|
44245
|
+
}(LinkGooglePlayGameServiceRequestData));
|
|
44246
|
+
MasterPlayerModels.ServerLinkGooglePlayGameServiceRequestData = ServerLinkGooglePlayGameServiceRequestData;
|
|
44247
|
+
var AdminLinkGooglePlayGameServiceRequestData = /** @class */ (function (_super) {
|
|
44248
|
+
__extends(AdminLinkGooglePlayGameServiceRequestData, _super);
|
|
44249
|
+
function AdminLinkGooglePlayGameServiceRequestData() {
|
|
44250
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
44251
|
+
}
|
|
44252
|
+
return AdminLinkGooglePlayGameServiceRequestData;
|
|
44253
|
+
}(ServerLinkGooglePlayGameServiceRequestData));
|
|
44254
|
+
MasterPlayerModels.AdminLinkGooglePlayGameServiceRequestData = AdminLinkGooglePlayGameServiceRequestData;
|
|
44255
|
+
var LinkGameCenterRequestData = /** @class */ (function () {
|
|
44256
|
+
function LinkGameCenterRequestData() {
|
|
44257
|
+
}
|
|
44258
|
+
__decorate([
|
|
44259
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.UserId, minLength: 10, maxLength: 10, isOptional: true }),
|
|
44260
|
+
__metadata("design:type", String)
|
|
44261
|
+
], LinkGameCenterRequestData.prototype, "userId", void 0);
|
|
44262
|
+
__decorate([
|
|
44263
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.PlayerId, minLength: 2, maxLength: 64, mustNonNull: true }),
|
|
44264
|
+
__metadata("design:type", String)
|
|
44265
|
+
], LinkGameCenterRequestData.prototype, "playerId", void 0);
|
|
44266
|
+
__decorate([
|
|
44267
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.Name, minLength: 2, maxLength: 64, mustNonNull: true }),
|
|
44268
|
+
__metadata("design:type", String)
|
|
44269
|
+
], LinkGameCenterRequestData.prototype, "name", void 0);
|
|
44270
|
+
__decorate([
|
|
44271
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.PublicKeyUrl, minLength: 2, maxLength: 256, mustNonNull: true }),
|
|
44272
|
+
__metadata("design:type", String)
|
|
44273
|
+
], LinkGameCenterRequestData.prototype, "publicKeyUrl", void 0);
|
|
44274
|
+
__decorate([
|
|
44275
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.Signature, minLength: 2, maxLength: 512, mustNonNull: true }),
|
|
44276
|
+
__metadata("design:type", String)
|
|
44277
|
+
], LinkGameCenterRequestData.prototype, "signature", void 0);
|
|
44278
|
+
__decorate([
|
|
44279
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.Salt, minLength: 2, maxLength: 128, mustNonNull: true }),
|
|
44280
|
+
__metadata("design:type", String)
|
|
44281
|
+
], LinkGameCenterRequestData.prototype, "salt", void 0);
|
|
44282
|
+
__decorate([
|
|
44283
|
+
(0, DataMember_1.NumberDataMember)({ code: GNParameterCode_1.GNParameterCode.Timestamp }),
|
|
44284
|
+
__metadata("design:type", Number)
|
|
44285
|
+
], LinkGameCenterRequestData.prototype, "timestamp", void 0);
|
|
44286
|
+
__decorate([
|
|
44287
|
+
(0, DataMember_1.BooleanDataMember)({ code: GNParameterCode_1.GNParameterCode.ForceLink, isOptional: true, defaultValue: false }),
|
|
44288
|
+
__metadata("design:type", Boolean)
|
|
44289
|
+
], LinkGameCenterRequestData.prototype, "forceLink", void 0);
|
|
44290
|
+
return LinkGameCenterRequestData;
|
|
44291
|
+
}());
|
|
44292
|
+
MasterPlayerModels.LinkGameCenterRequestData = LinkGameCenterRequestData;
|
|
44293
|
+
var ServerLinkGameCenterRequestData = /** @class */ (function (_super) {
|
|
44294
|
+
__extends(ServerLinkGameCenterRequestData, _super);
|
|
44295
|
+
function ServerLinkGameCenterRequestData() {
|
|
44296
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
44297
|
+
}
|
|
44298
|
+
__decorate([
|
|
44299
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.UserId, minLength: 10, maxLength: 10, mustNonNull: true }),
|
|
44300
|
+
__metadata("design:type", String)
|
|
44301
|
+
], ServerLinkGameCenterRequestData.prototype, "userId", void 0);
|
|
44302
|
+
return ServerLinkGameCenterRequestData;
|
|
44303
|
+
}(LinkGameCenterRequestData));
|
|
44304
|
+
MasterPlayerModels.ServerLinkGameCenterRequestData = ServerLinkGameCenterRequestData;
|
|
44305
|
+
var AdminLinkGameCenterRequestData = /** @class */ (function (_super) {
|
|
44306
|
+
__extends(AdminLinkGameCenterRequestData, _super);
|
|
44307
|
+
function AdminLinkGameCenterRequestData() {
|
|
44308
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
44309
|
+
}
|
|
44310
|
+
return AdminLinkGameCenterRequestData;
|
|
44311
|
+
}(ServerLinkGameCenterRequestData));
|
|
44312
|
+
MasterPlayerModels.AdminLinkGameCenterRequestData = AdminLinkGameCenterRequestData;
|
|
43493
44313
|
var LinkiOSDeviceIdRequestData = /** @class */ (function () {
|
|
43494
44314
|
function LinkiOSDeviceIdRequestData() {
|
|
43495
44315
|
}
|
|
@@ -44478,6 +45298,74 @@ var MasterPlayerModels;
|
|
|
44478
45298
|
return AdminUnlinkGoogleRequestData;
|
|
44479
45299
|
}(ServerUnlinkGoogleRequestData));
|
|
44480
45300
|
MasterPlayerModels.AdminUnlinkGoogleRequestData = AdminUnlinkGoogleRequestData;
|
|
45301
|
+
var UnlinkGooglePlayGameServiceRequestData = /** @class */ (function () {
|
|
45302
|
+
function UnlinkGooglePlayGameServiceRequestData() {
|
|
45303
|
+
}
|
|
45304
|
+
__decorate([
|
|
45305
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.UserId, minLength: 10, maxLength: 10, isOptional: true }),
|
|
45306
|
+
__metadata("design:type", String)
|
|
45307
|
+
], UnlinkGooglePlayGameServiceRequestData.prototype, "userId", void 0);
|
|
45308
|
+
__decorate([
|
|
45309
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.PlayerId, minLength: 6, maxLength: 64, mustNonNull: true }),
|
|
45310
|
+
__metadata("design:type", String)
|
|
45311
|
+
], UnlinkGooglePlayGameServiceRequestData.prototype, "playerId", void 0);
|
|
45312
|
+
return UnlinkGooglePlayGameServiceRequestData;
|
|
45313
|
+
}());
|
|
45314
|
+
MasterPlayerModels.UnlinkGooglePlayGameServiceRequestData = UnlinkGooglePlayGameServiceRequestData;
|
|
45315
|
+
var ServerUnlinkGooglePlayGameServiceRequestData = /** @class */ (function (_super) {
|
|
45316
|
+
__extends(ServerUnlinkGooglePlayGameServiceRequestData, _super);
|
|
45317
|
+
function ServerUnlinkGooglePlayGameServiceRequestData() {
|
|
45318
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
45319
|
+
}
|
|
45320
|
+
__decorate([
|
|
45321
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.UserId, minLength: 10, maxLength: 10, mustNonNull: true }),
|
|
45322
|
+
__metadata("design:type", String)
|
|
45323
|
+
], ServerUnlinkGooglePlayGameServiceRequestData.prototype, "userId", void 0);
|
|
45324
|
+
return ServerUnlinkGooglePlayGameServiceRequestData;
|
|
45325
|
+
}(UnlinkGooglePlayGameServiceRequestData));
|
|
45326
|
+
MasterPlayerModels.ServerUnlinkGooglePlayGameServiceRequestData = ServerUnlinkGooglePlayGameServiceRequestData;
|
|
45327
|
+
var AdminUnlinkGooglePlayGameServiceRequestData = /** @class */ (function (_super) {
|
|
45328
|
+
__extends(AdminUnlinkGooglePlayGameServiceRequestData, _super);
|
|
45329
|
+
function AdminUnlinkGooglePlayGameServiceRequestData() {
|
|
45330
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
45331
|
+
}
|
|
45332
|
+
return AdminUnlinkGooglePlayGameServiceRequestData;
|
|
45333
|
+
}(ServerUnlinkGooglePlayGameServiceRequestData));
|
|
45334
|
+
MasterPlayerModels.AdminUnlinkGooglePlayGameServiceRequestData = AdminUnlinkGooglePlayGameServiceRequestData;
|
|
45335
|
+
var UnlinkGameCenterRequestData = /** @class */ (function () {
|
|
45336
|
+
function UnlinkGameCenterRequestData() {
|
|
45337
|
+
}
|
|
45338
|
+
__decorate([
|
|
45339
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.UserId, minLength: 10, maxLength: 10, isOptional: true }),
|
|
45340
|
+
__metadata("design:type", String)
|
|
45341
|
+
], UnlinkGameCenterRequestData.prototype, "userId", void 0);
|
|
45342
|
+
__decorate([
|
|
45343
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.PlayerId, minLength: 6, maxLength: 64, mustNonNull: true }),
|
|
45344
|
+
__metadata("design:type", String)
|
|
45345
|
+
], UnlinkGameCenterRequestData.prototype, "playerId", void 0);
|
|
45346
|
+
return UnlinkGameCenterRequestData;
|
|
45347
|
+
}());
|
|
45348
|
+
MasterPlayerModels.UnlinkGameCenterRequestData = UnlinkGameCenterRequestData;
|
|
45349
|
+
var ServerUnlinkGameCenterRequestData = /** @class */ (function (_super) {
|
|
45350
|
+
__extends(ServerUnlinkGameCenterRequestData, _super);
|
|
45351
|
+
function ServerUnlinkGameCenterRequestData() {
|
|
45352
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
45353
|
+
}
|
|
45354
|
+
__decorate([
|
|
45355
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.UserId, minLength: 10, maxLength: 10, mustNonNull: true }),
|
|
45356
|
+
__metadata("design:type", String)
|
|
45357
|
+
], ServerUnlinkGameCenterRequestData.prototype, "userId", void 0);
|
|
45358
|
+
return ServerUnlinkGameCenterRequestData;
|
|
45359
|
+
}(UnlinkGameCenterRequestData));
|
|
45360
|
+
MasterPlayerModels.ServerUnlinkGameCenterRequestData = ServerUnlinkGameCenterRequestData;
|
|
45361
|
+
var AdminUnlinkGameCenterRequestData = /** @class */ (function (_super) {
|
|
45362
|
+
__extends(AdminUnlinkGameCenterRequestData, _super);
|
|
45363
|
+
function AdminUnlinkGameCenterRequestData() {
|
|
45364
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
45365
|
+
}
|
|
45366
|
+
return AdminUnlinkGameCenterRequestData;
|
|
45367
|
+
}(ServerUnlinkGameCenterRequestData));
|
|
45368
|
+
MasterPlayerModels.AdminUnlinkGameCenterRequestData = AdminUnlinkGameCenterRequestData;
|
|
44481
45369
|
var UnlinkiOSDeviceIdRequestData = /** @class */ (function () {
|
|
44482
45370
|
function UnlinkiOSDeviceIdRequestData() {
|
|
44483
45371
|
}
|
|
@@ -44834,6 +45722,38 @@ var MasterPlayerModels;
|
|
|
44834
45722
|
return GetPlayersWithGoogleResponseData;
|
|
44835
45723
|
}());
|
|
44836
45724
|
MasterPlayerModels.GetPlayersWithGoogleResponseData = GetPlayersWithGoogleResponseData;
|
|
45725
|
+
var MasterPlayerWithPlayerIdResponseData = /** @class */ (function (_super) {
|
|
45726
|
+
__extends(MasterPlayerWithPlayerIdResponseData, _super);
|
|
45727
|
+
function MasterPlayerWithPlayerIdResponseData() {
|
|
45728
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
45729
|
+
}
|
|
45730
|
+
__decorate([
|
|
45731
|
+
(0, DataMember_1.StringDataMember)({ code: GNParameterCode_1.GNParameterCode.PlayerId }),
|
|
45732
|
+
__metadata("design:type", String)
|
|
45733
|
+
], MasterPlayerWithPlayerIdResponseData.prototype, "playerId", void 0);
|
|
45734
|
+
return MasterPlayerWithPlayerIdResponseData;
|
|
45735
|
+
}(MasterPlayerWithUserIdResponseData));
|
|
45736
|
+
MasterPlayerModels.MasterPlayerWithPlayerIdResponseData = MasterPlayerWithPlayerIdResponseData;
|
|
45737
|
+
var GetPlayersWithGooglePlayGameServiceResponseData = /** @class */ (function () {
|
|
45738
|
+
function GetPlayersWithGooglePlayGameServiceResponseData() {
|
|
45739
|
+
}
|
|
45740
|
+
__decorate([
|
|
45741
|
+
(0, DataMember_1.GNArrayDataMember)({ code: GNParameterCode_1.GNParameterCode.Results, elementCls: MasterPlayerWithPlayerIdResponseData }),
|
|
45742
|
+
__metadata("design:type", Array)
|
|
45743
|
+
], GetPlayersWithGooglePlayGameServiceResponseData.prototype, "results", void 0);
|
|
45744
|
+
return GetPlayersWithGooglePlayGameServiceResponseData;
|
|
45745
|
+
}());
|
|
45746
|
+
MasterPlayerModels.GetPlayersWithGooglePlayGameServiceResponseData = GetPlayersWithGooglePlayGameServiceResponseData;
|
|
45747
|
+
var GetPlayersWithGameCenterResponseData = /** @class */ (function () {
|
|
45748
|
+
function GetPlayersWithGameCenterResponseData() {
|
|
45749
|
+
}
|
|
45750
|
+
__decorate([
|
|
45751
|
+
(0, DataMember_1.GNArrayDataMember)({ code: GNParameterCode_1.GNParameterCode.Results, elementCls: MasterPlayerWithPlayerIdResponseData }),
|
|
45752
|
+
__metadata("design:type", Array)
|
|
45753
|
+
], GetPlayersWithGameCenterResponseData.prototype, "results", void 0);
|
|
45754
|
+
return GetPlayersWithGameCenterResponseData;
|
|
45755
|
+
}());
|
|
45756
|
+
MasterPlayerModels.GetPlayersWithGameCenterResponseData = GetPlayersWithGameCenterResponseData;
|
|
44837
45757
|
var MasterPlayerLeaderboardResponseData = /** @class */ (function (_super) {
|
|
44838
45758
|
__extends(MasterPlayerLeaderboardResponseData, _super);
|
|
44839
45759
|
function MasterPlayerLeaderboardResponseData() {
|
|
@@ -45610,6 +46530,78 @@ var MasterPlayerRequestModels;
|
|
|
45610
46530
|
return AdminGetPlayersWithGoogleOperationRequest;
|
|
45611
46531
|
}(GetPlayersWithGoogleOperationRequest));
|
|
45612
46532
|
MasterPlayerRequestModels.AdminGetPlayersWithGoogleOperationRequest = AdminGetPlayersWithGoogleOperationRequest;
|
|
46533
|
+
var GetPlayersWithGooglePlayGameServiceOperationRequest = /** @class */ (function (_super) {
|
|
46534
|
+
__extends(GetPlayersWithGooglePlayGameServiceOperationRequest, _super);
|
|
46535
|
+
function GetPlayersWithGooglePlayGameServiceOperationRequest(requestData, timeout) {
|
|
46536
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
46537
|
+
_this.operationCode = OperationCode_1.OperationCode.GetPlayersWithGooglePlayGameService;
|
|
46538
|
+
_this.operationEncrypted = true;
|
|
46539
|
+
_this.requestType = RequestType_1.RequestType.MasterPlayer;
|
|
46540
|
+
_this.requestRole = RequestRole_1.RequestRole.Client;
|
|
46541
|
+
_this.requestDataCls = MasterPlayerModels_1.MasterPlayerModels.GetPlayersWithGooglePlayGameServiceRequestData;
|
|
46542
|
+
return _this;
|
|
46543
|
+
}
|
|
46544
|
+
return GetPlayersWithGooglePlayGameServiceOperationRequest;
|
|
46545
|
+
}(CustomOperationRequest_1.CustomOperationRequestAbstract));
|
|
46546
|
+
MasterPlayerRequestModels.GetPlayersWithGooglePlayGameServiceOperationRequest = GetPlayersWithGooglePlayGameServiceOperationRequest;
|
|
46547
|
+
var ServerGetPlayersWithGooglePlayGameServiceOperationRequest = /** @class */ (function (_super) {
|
|
46548
|
+
__extends(ServerGetPlayersWithGooglePlayGameServiceOperationRequest, _super);
|
|
46549
|
+
function ServerGetPlayersWithGooglePlayGameServiceOperationRequest(requestData, timeout) {
|
|
46550
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
46551
|
+
_this.requestRole = RequestRole_1.RequestRole.Server;
|
|
46552
|
+
_this.requestDataCls = MasterPlayerModels_1.MasterPlayerModels.ServerGetPlayersWithGooglePlayGameServiceRequestData;
|
|
46553
|
+
return _this;
|
|
46554
|
+
}
|
|
46555
|
+
return ServerGetPlayersWithGooglePlayGameServiceOperationRequest;
|
|
46556
|
+
}(GetPlayersWithGooglePlayGameServiceOperationRequest));
|
|
46557
|
+
MasterPlayerRequestModels.ServerGetPlayersWithGooglePlayGameServiceOperationRequest = ServerGetPlayersWithGooglePlayGameServiceOperationRequest;
|
|
46558
|
+
var AdminGetPlayersWithGooglePlayGameServiceOperationRequest = /** @class */ (function (_super) {
|
|
46559
|
+
__extends(AdminGetPlayersWithGooglePlayGameServiceOperationRequest, _super);
|
|
46560
|
+
function AdminGetPlayersWithGooglePlayGameServiceOperationRequest(requestData, timeout) {
|
|
46561
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
46562
|
+
_this.requestRole = RequestRole_1.RequestRole.Admin;
|
|
46563
|
+
_this.requestDataCls = MasterPlayerModels_1.MasterPlayerModels.AdminGetPlayersWithGooglePlayGameServiceRequestData;
|
|
46564
|
+
return _this;
|
|
46565
|
+
}
|
|
46566
|
+
return AdminGetPlayersWithGooglePlayGameServiceOperationRequest;
|
|
46567
|
+
}(GetPlayersWithGooglePlayGameServiceOperationRequest));
|
|
46568
|
+
MasterPlayerRequestModels.AdminGetPlayersWithGooglePlayGameServiceOperationRequest = AdminGetPlayersWithGooglePlayGameServiceOperationRequest;
|
|
46569
|
+
var GetPlayersWithGameCenterOperationRequest = /** @class */ (function (_super) {
|
|
46570
|
+
__extends(GetPlayersWithGameCenterOperationRequest, _super);
|
|
46571
|
+
function GetPlayersWithGameCenterOperationRequest(requestData, timeout) {
|
|
46572
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
46573
|
+
_this.operationCode = OperationCode_1.OperationCode.GetPlayersWithGameCenter;
|
|
46574
|
+
_this.operationEncrypted = true;
|
|
46575
|
+
_this.requestType = RequestType_1.RequestType.MasterPlayer;
|
|
46576
|
+
_this.requestRole = RequestRole_1.RequestRole.Client;
|
|
46577
|
+
_this.requestDataCls = MasterPlayerModels_1.MasterPlayerModels.GetPlayersWithGameCenterRequestData;
|
|
46578
|
+
return _this;
|
|
46579
|
+
}
|
|
46580
|
+
return GetPlayersWithGameCenterOperationRequest;
|
|
46581
|
+
}(CustomOperationRequest_1.CustomOperationRequestAbstract));
|
|
46582
|
+
MasterPlayerRequestModels.GetPlayersWithGameCenterOperationRequest = GetPlayersWithGameCenterOperationRequest;
|
|
46583
|
+
var ServerGetPlayersWithGameCenterOperationRequest = /** @class */ (function (_super) {
|
|
46584
|
+
__extends(ServerGetPlayersWithGameCenterOperationRequest, _super);
|
|
46585
|
+
function ServerGetPlayersWithGameCenterOperationRequest(requestData, timeout) {
|
|
46586
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
46587
|
+
_this.requestRole = RequestRole_1.RequestRole.Server;
|
|
46588
|
+
_this.requestDataCls = MasterPlayerModels_1.MasterPlayerModels.ServerGetPlayersWithGameCenterRequestData;
|
|
46589
|
+
return _this;
|
|
46590
|
+
}
|
|
46591
|
+
return ServerGetPlayersWithGameCenterOperationRequest;
|
|
46592
|
+
}(GetPlayersWithGameCenterOperationRequest));
|
|
46593
|
+
MasterPlayerRequestModels.ServerGetPlayersWithGameCenterOperationRequest = ServerGetPlayersWithGameCenterOperationRequest;
|
|
46594
|
+
var AdminGetPlayersWithGameCenterOperationRequest = /** @class */ (function (_super) {
|
|
46595
|
+
__extends(AdminGetPlayersWithGameCenterOperationRequest, _super);
|
|
46596
|
+
function AdminGetPlayersWithGameCenterOperationRequest(requestData, timeout) {
|
|
46597
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
46598
|
+
_this.requestRole = RequestRole_1.RequestRole.Admin;
|
|
46599
|
+
_this.requestDataCls = MasterPlayerModels_1.MasterPlayerModels.AdminGetPlayersWithGameCenterRequestData;
|
|
46600
|
+
return _this;
|
|
46601
|
+
}
|
|
46602
|
+
return AdminGetPlayersWithGameCenterOperationRequest;
|
|
46603
|
+
}(GetPlayersWithGameCenterOperationRequest));
|
|
46604
|
+
MasterPlayerRequestModels.AdminGetPlayersWithGameCenterOperationRequest = AdminGetPlayersWithGameCenterOperationRequest;
|
|
45613
46605
|
var GetPlayersWithSegmentOperationRequest = /** @class */ (function (_super) {
|
|
45614
46606
|
__extends(GetPlayersWithSegmentOperationRequest, _super);
|
|
45615
46607
|
function GetPlayersWithSegmentOperationRequest(requestData, timeout) {
|
|
@@ -46222,6 +47214,78 @@ var MasterPlayerRequestModels;
|
|
|
46222
47214
|
return AdminLinkGoogleOperationRequest;
|
|
46223
47215
|
}(LinkGoogleOperationRequest));
|
|
46224
47216
|
MasterPlayerRequestModels.AdminLinkGoogleOperationRequest = AdminLinkGoogleOperationRequest;
|
|
47217
|
+
var LinkGooglePlayGameServiceOperationRequest = /** @class */ (function (_super) {
|
|
47218
|
+
__extends(LinkGooglePlayGameServiceOperationRequest, _super);
|
|
47219
|
+
function LinkGooglePlayGameServiceOperationRequest(requestData, timeout) {
|
|
47220
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
47221
|
+
_this.operationCode = OperationCode_1.OperationCode.LinkGooglePlayGameService;
|
|
47222
|
+
_this.operationEncrypted = true;
|
|
47223
|
+
_this.requestType = RequestType_1.RequestType.MasterPlayer;
|
|
47224
|
+
_this.requestRole = RequestRole_1.RequestRole.Client;
|
|
47225
|
+
_this.requestDataCls = MasterPlayerModels_1.MasterPlayerModels.LinkGooglePlayGameServiceRequestData;
|
|
47226
|
+
return _this;
|
|
47227
|
+
}
|
|
47228
|
+
return LinkGooglePlayGameServiceOperationRequest;
|
|
47229
|
+
}(CustomOperationRequest_1.CustomOperationRequestAbstract));
|
|
47230
|
+
MasterPlayerRequestModels.LinkGooglePlayGameServiceOperationRequest = LinkGooglePlayGameServiceOperationRequest;
|
|
47231
|
+
var ServerLinkGooglePlayGameServiceOperationRequest = /** @class */ (function (_super) {
|
|
47232
|
+
__extends(ServerLinkGooglePlayGameServiceOperationRequest, _super);
|
|
47233
|
+
function ServerLinkGooglePlayGameServiceOperationRequest(requestData, timeout) {
|
|
47234
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
47235
|
+
_this.requestRole = RequestRole_1.RequestRole.Server;
|
|
47236
|
+
_this.requestDataCls = MasterPlayerModels_1.MasterPlayerModels.ServerLinkGooglePlayGameServiceRequestData;
|
|
47237
|
+
return _this;
|
|
47238
|
+
}
|
|
47239
|
+
return ServerLinkGooglePlayGameServiceOperationRequest;
|
|
47240
|
+
}(LinkGooglePlayGameServiceOperationRequest));
|
|
47241
|
+
MasterPlayerRequestModels.ServerLinkGooglePlayGameServiceOperationRequest = ServerLinkGooglePlayGameServiceOperationRequest;
|
|
47242
|
+
var AdminLinkGooglePlayGameServiceOperationRequest = /** @class */ (function (_super) {
|
|
47243
|
+
__extends(AdminLinkGooglePlayGameServiceOperationRequest, _super);
|
|
47244
|
+
function AdminLinkGooglePlayGameServiceOperationRequest(requestData, timeout) {
|
|
47245
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
47246
|
+
_this.requestRole = RequestRole_1.RequestRole.Admin;
|
|
47247
|
+
_this.requestDataCls = MasterPlayerModels_1.MasterPlayerModels.AdminLinkGooglePlayGameServiceRequestData;
|
|
47248
|
+
return _this;
|
|
47249
|
+
}
|
|
47250
|
+
return AdminLinkGooglePlayGameServiceOperationRequest;
|
|
47251
|
+
}(LinkGooglePlayGameServiceOperationRequest));
|
|
47252
|
+
MasterPlayerRequestModels.AdminLinkGooglePlayGameServiceOperationRequest = AdminLinkGooglePlayGameServiceOperationRequest;
|
|
47253
|
+
var LinkGameCenterOperationRequest = /** @class */ (function (_super) {
|
|
47254
|
+
__extends(LinkGameCenterOperationRequest, _super);
|
|
47255
|
+
function LinkGameCenterOperationRequest(requestData, timeout) {
|
|
47256
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
47257
|
+
_this.operationCode = OperationCode_1.OperationCode.LinkGameCenter;
|
|
47258
|
+
_this.operationEncrypted = true;
|
|
47259
|
+
_this.requestType = RequestType_1.RequestType.MasterPlayer;
|
|
47260
|
+
_this.requestRole = RequestRole_1.RequestRole.Client;
|
|
47261
|
+
_this.requestDataCls = MasterPlayerModels_1.MasterPlayerModels.LinkGameCenterRequestData;
|
|
47262
|
+
return _this;
|
|
47263
|
+
}
|
|
47264
|
+
return LinkGameCenterOperationRequest;
|
|
47265
|
+
}(CustomOperationRequest_1.CustomOperationRequestAbstract));
|
|
47266
|
+
MasterPlayerRequestModels.LinkGameCenterOperationRequest = LinkGameCenterOperationRequest;
|
|
47267
|
+
var ServerLinkGameCenterOperationRequest = /** @class */ (function (_super) {
|
|
47268
|
+
__extends(ServerLinkGameCenterOperationRequest, _super);
|
|
47269
|
+
function ServerLinkGameCenterOperationRequest(requestData, timeout) {
|
|
47270
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
47271
|
+
_this.requestRole = RequestRole_1.RequestRole.Server;
|
|
47272
|
+
_this.requestDataCls = MasterPlayerModels_1.MasterPlayerModels.ServerLinkGameCenterRequestData;
|
|
47273
|
+
return _this;
|
|
47274
|
+
}
|
|
47275
|
+
return ServerLinkGameCenterOperationRequest;
|
|
47276
|
+
}(LinkGameCenterOperationRequest));
|
|
47277
|
+
MasterPlayerRequestModels.ServerLinkGameCenterOperationRequest = ServerLinkGameCenterOperationRequest;
|
|
47278
|
+
var AdminLinkGameCenterOperationRequest = /** @class */ (function (_super) {
|
|
47279
|
+
__extends(AdminLinkGameCenterOperationRequest, _super);
|
|
47280
|
+
function AdminLinkGameCenterOperationRequest(requestData, timeout) {
|
|
47281
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
47282
|
+
_this.requestRole = RequestRole_1.RequestRole.Admin;
|
|
47283
|
+
_this.requestDataCls = MasterPlayerModels_1.MasterPlayerModels.AdminLinkGameCenterRequestData;
|
|
47284
|
+
return _this;
|
|
47285
|
+
}
|
|
47286
|
+
return AdminLinkGameCenterOperationRequest;
|
|
47287
|
+
}(LinkGameCenterOperationRequest));
|
|
47288
|
+
MasterPlayerRequestModels.AdminLinkGameCenterOperationRequest = AdminLinkGameCenterOperationRequest;
|
|
46225
47289
|
var LinkiOSDeviceIdOperationRequest = /** @class */ (function (_super) {
|
|
46226
47290
|
__extends(LinkiOSDeviceIdOperationRequest, _super);
|
|
46227
47291
|
function LinkiOSDeviceIdOperationRequest(requestData, timeout) {
|
|
@@ -47230,6 +48294,78 @@ var MasterPlayerRequestModels;
|
|
|
47230
48294
|
return AdminUnlinkGoogleOperationRequest;
|
|
47231
48295
|
}(UnlinkGoogleOperationRequest));
|
|
47232
48296
|
MasterPlayerRequestModels.AdminUnlinkGoogleOperationRequest = AdminUnlinkGoogleOperationRequest;
|
|
48297
|
+
var UnlinkGooglePlayGameServiceOperationRequest = /** @class */ (function (_super) {
|
|
48298
|
+
__extends(UnlinkGooglePlayGameServiceOperationRequest, _super);
|
|
48299
|
+
function UnlinkGooglePlayGameServiceOperationRequest(requestData, timeout) {
|
|
48300
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
48301
|
+
_this.operationCode = OperationCode_1.OperationCode.UnlinkGooglePlayGameService;
|
|
48302
|
+
_this.operationEncrypted = true;
|
|
48303
|
+
_this.requestType = RequestType_1.RequestType.MasterPlayer;
|
|
48304
|
+
_this.requestRole = RequestRole_1.RequestRole.Client;
|
|
48305
|
+
_this.requestDataCls = MasterPlayerModels_1.MasterPlayerModels.UnlinkGooglePlayGameServiceRequestData;
|
|
48306
|
+
return _this;
|
|
48307
|
+
}
|
|
48308
|
+
return UnlinkGooglePlayGameServiceOperationRequest;
|
|
48309
|
+
}(CustomOperationRequest_1.CustomOperationRequestAbstract));
|
|
48310
|
+
MasterPlayerRequestModels.UnlinkGooglePlayGameServiceOperationRequest = UnlinkGooglePlayGameServiceOperationRequest;
|
|
48311
|
+
var ServerUnlinkGooglePlayGameServiceOperationRequest = /** @class */ (function (_super) {
|
|
48312
|
+
__extends(ServerUnlinkGooglePlayGameServiceOperationRequest, _super);
|
|
48313
|
+
function ServerUnlinkGooglePlayGameServiceOperationRequest(requestData, timeout) {
|
|
48314
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
48315
|
+
_this.requestRole = RequestRole_1.RequestRole.Server;
|
|
48316
|
+
_this.requestDataCls = MasterPlayerModels_1.MasterPlayerModels.ServerUnlinkGooglePlayGameServiceRequestData;
|
|
48317
|
+
return _this;
|
|
48318
|
+
}
|
|
48319
|
+
return ServerUnlinkGooglePlayGameServiceOperationRequest;
|
|
48320
|
+
}(UnlinkGooglePlayGameServiceOperationRequest));
|
|
48321
|
+
MasterPlayerRequestModels.ServerUnlinkGooglePlayGameServiceOperationRequest = ServerUnlinkGooglePlayGameServiceOperationRequest;
|
|
48322
|
+
var AdminUnlinkGooglePlayGameServiceOperationRequest = /** @class */ (function (_super) {
|
|
48323
|
+
__extends(AdminUnlinkGooglePlayGameServiceOperationRequest, _super);
|
|
48324
|
+
function AdminUnlinkGooglePlayGameServiceOperationRequest(requestData, timeout) {
|
|
48325
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
48326
|
+
_this.requestRole = RequestRole_1.RequestRole.Admin;
|
|
48327
|
+
_this.requestDataCls = MasterPlayerModels_1.MasterPlayerModels.AdminUnlinkGooglePlayGameServiceRequestData;
|
|
48328
|
+
return _this;
|
|
48329
|
+
}
|
|
48330
|
+
return AdminUnlinkGooglePlayGameServiceOperationRequest;
|
|
48331
|
+
}(UnlinkGooglePlayGameServiceOperationRequest));
|
|
48332
|
+
MasterPlayerRequestModels.AdminUnlinkGooglePlayGameServiceOperationRequest = AdminUnlinkGooglePlayGameServiceOperationRequest;
|
|
48333
|
+
var UnlinkGameCenterOperationRequest = /** @class */ (function (_super) {
|
|
48334
|
+
__extends(UnlinkGameCenterOperationRequest, _super);
|
|
48335
|
+
function UnlinkGameCenterOperationRequest(requestData, timeout) {
|
|
48336
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
48337
|
+
_this.operationCode = OperationCode_1.OperationCode.UnlinkGameCenter;
|
|
48338
|
+
_this.operationEncrypted = true;
|
|
48339
|
+
_this.requestType = RequestType_1.RequestType.MasterPlayer;
|
|
48340
|
+
_this.requestRole = RequestRole_1.RequestRole.Client;
|
|
48341
|
+
_this.requestDataCls = MasterPlayerModels_1.MasterPlayerModels.UnlinkGameCenterRequestData;
|
|
48342
|
+
return _this;
|
|
48343
|
+
}
|
|
48344
|
+
return UnlinkGameCenterOperationRequest;
|
|
48345
|
+
}(CustomOperationRequest_1.CustomOperationRequestAbstract));
|
|
48346
|
+
MasterPlayerRequestModels.UnlinkGameCenterOperationRequest = UnlinkGameCenterOperationRequest;
|
|
48347
|
+
var ServerUnlinkGameCenterOperationRequest = /** @class */ (function (_super) {
|
|
48348
|
+
__extends(ServerUnlinkGameCenterOperationRequest, _super);
|
|
48349
|
+
function ServerUnlinkGameCenterOperationRequest(requestData, timeout) {
|
|
48350
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
48351
|
+
_this.requestRole = RequestRole_1.RequestRole.Server;
|
|
48352
|
+
_this.requestDataCls = MasterPlayerModels_1.MasterPlayerModels.ServerUnlinkGameCenterRequestData;
|
|
48353
|
+
return _this;
|
|
48354
|
+
}
|
|
48355
|
+
return ServerUnlinkGameCenterOperationRequest;
|
|
48356
|
+
}(UnlinkGameCenterOperationRequest));
|
|
48357
|
+
MasterPlayerRequestModels.ServerUnlinkGameCenterOperationRequest = ServerUnlinkGameCenterOperationRequest;
|
|
48358
|
+
var AdminUnlinkGameCenterOperationRequest = /** @class */ (function (_super) {
|
|
48359
|
+
__extends(AdminUnlinkGameCenterOperationRequest, _super);
|
|
48360
|
+
function AdminUnlinkGameCenterOperationRequest(requestData, timeout) {
|
|
48361
|
+
var _this = _super.call(this, requestData, timeout) || this;
|
|
48362
|
+
_this.requestRole = RequestRole_1.RequestRole.Admin;
|
|
48363
|
+
_this.requestDataCls = MasterPlayerModels_1.MasterPlayerModels.AdminUnlinkGameCenterRequestData;
|
|
48364
|
+
return _this;
|
|
48365
|
+
}
|
|
48366
|
+
return AdminUnlinkGameCenterOperationRequest;
|
|
48367
|
+
}(UnlinkGameCenterOperationRequest));
|
|
48368
|
+
MasterPlayerRequestModels.AdminUnlinkGameCenterOperationRequest = AdminUnlinkGameCenterOperationRequest;
|
|
47233
48369
|
var UnlinkiOSDeviceIdOperationRequest = /** @class */ (function (_super) {
|
|
47234
48370
|
__extends(UnlinkiOSDeviceIdOperationRequest, _super);
|
|
47235
48371
|
function UnlinkiOSDeviceIdOperationRequest(requestData, timeout) {
|
|
@@ -47667,6 +48803,26 @@ var MasterPlayerResponseModels;
|
|
|
47667
48803
|
return GetPlayersWithGoogleOperationResponse;
|
|
47668
48804
|
}(CustomOperationResponse_1.CustomOperationResponseAbstract));
|
|
47669
48805
|
MasterPlayerResponseModels.GetPlayersWithGoogleOperationResponse = GetPlayersWithGoogleOperationResponse;
|
|
48806
|
+
var GetPlayersWithGooglePlayGameServiceOperationResponse = /** @class */ (function (_super) {
|
|
48807
|
+
__extends(GetPlayersWithGooglePlayGameServiceOperationResponse, _super);
|
|
48808
|
+
function GetPlayersWithGooglePlayGameServiceOperationResponse() {
|
|
48809
|
+
var _this = _super.call(this) || this;
|
|
48810
|
+
_this.responseDataCls = MasterPlayerModels_1.MasterPlayerModels.GetPlayersWithGooglePlayGameServiceResponseData;
|
|
48811
|
+
return _this;
|
|
48812
|
+
}
|
|
48813
|
+
return GetPlayersWithGooglePlayGameServiceOperationResponse;
|
|
48814
|
+
}(CustomOperationResponse_1.CustomOperationResponseAbstract));
|
|
48815
|
+
MasterPlayerResponseModels.GetPlayersWithGooglePlayGameServiceOperationResponse = GetPlayersWithGooglePlayGameServiceOperationResponse;
|
|
48816
|
+
var GetPlayersWithGameCenterOperationResponse = /** @class */ (function (_super) {
|
|
48817
|
+
__extends(GetPlayersWithGameCenterOperationResponse, _super);
|
|
48818
|
+
function GetPlayersWithGameCenterOperationResponse() {
|
|
48819
|
+
var _this = _super.call(this) || this;
|
|
48820
|
+
_this.responseDataCls = MasterPlayerModels_1.MasterPlayerModels.GetPlayersWithGameCenterResponseData;
|
|
48821
|
+
return _this;
|
|
48822
|
+
}
|
|
48823
|
+
return GetPlayersWithGameCenterOperationResponse;
|
|
48824
|
+
}(CustomOperationResponse_1.CustomOperationResponseAbstract));
|
|
48825
|
+
MasterPlayerResponseModels.GetPlayersWithGameCenterOperationResponse = GetPlayersWithGameCenterOperationResponse;
|
|
47670
48826
|
var GetPlayersWithSegmentOperationResponse = /** @class */ (function (_super) {
|
|
47671
48827
|
__extends(GetPlayersWithSegmentOperationResponse, _super);
|
|
47672
48828
|
function GetPlayersWithSegmentOperationResponse() {
|
|
@@ -47837,6 +48993,26 @@ var MasterPlayerResponseModels;
|
|
|
47837
48993
|
return LinkGoogleOperationResponse;
|
|
47838
48994
|
}(CustomOperationResponse_1.CustomOperationResponseAbstract));
|
|
47839
48995
|
MasterPlayerResponseModels.LinkGoogleOperationResponse = LinkGoogleOperationResponse;
|
|
48996
|
+
var LinkGooglePlayGameServiceOperationResponse = /** @class */ (function (_super) {
|
|
48997
|
+
__extends(LinkGooglePlayGameServiceOperationResponse, _super);
|
|
48998
|
+
function LinkGooglePlayGameServiceOperationResponse() {
|
|
48999
|
+
var _this = _super.call(this) || this;
|
|
49000
|
+
_this.responseDataCls = MasterPlayerModels_1.MasterPlayerModels.EmptyResponseData;
|
|
49001
|
+
return _this;
|
|
49002
|
+
}
|
|
49003
|
+
return LinkGooglePlayGameServiceOperationResponse;
|
|
49004
|
+
}(CustomOperationResponse_1.CustomOperationResponseAbstract));
|
|
49005
|
+
MasterPlayerResponseModels.LinkGooglePlayGameServiceOperationResponse = LinkGooglePlayGameServiceOperationResponse;
|
|
49006
|
+
var LinkGameCenterOperationResponse = /** @class */ (function (_super) {
|
|
49007
|
+
__extends(LinkGameCenterOperationResponse, _super);
|
|
49008
|
+
function LinkGameCenterOperationResponse() {
|
|
49009
|
+
var _this = _super.call(this) || this;
|
|
49010
|
+
_this.responseDataCls = MasterPlayerModels_1.MasterPlayerModels.EmptyResponseData;
|
|
49011
|
+
return _this;
|
|
49012
|
+
}
|
|
49013
|
+
return LinkGameCenterOperationResponse;
|
|
49014
|
+
}(CustomOperationResponse_1.CustomOperationResponseAbstract));
|
|
49015
|
+
MasterPlayerResponseModels.LinkGameCenterOperationResponse = LinkGameCenterOperationResponse;
|
|
47840
49016
|
var LinkiOSDeviceIdOperationResponse = /** @class */ (function (_super) {
|
|
47841
49017
|
__extends(LinkiOSDeviceIdOperationResponse, _super);
|
|
47842
49018
|
function LinkiOSDeviceIdOperationResponse() {
|
|
@@ -48117,6 +49293,26 @@ var MasterPlayerResponseModels;
|
|
|
48117
49293
|
return UnlinkGoogleOperationResponse;
|
|
48118
49294
|
}(CustomOperationResponse_1.CustomOperationResponseAbstract));
|
|
48119
49295
|
MasterPlayerResponseModels.UnlinkGoogleOperationResponse = UnlinkGoogleOperationResponse;
|
|
49296
|
+
var UnlinkGooglePlayGameServiceOperationResponse = /** @class */ (function (_super) {
|
|
49297
|
+
__extends(UnlinkGooglePlayGameServiceOperationResponse, _super);
|
|
49298
|
+
function UnlinkGooglePlayGameServiceOperationResponse() {
|
|
49299
|
+
var _this = _super.call(this) || this;
|
|
49300
|
+
_this.responseDataCls = MasterPlayerModels_1.MasterPlayerModels.EmptyResponseData;
|
|
49301
|
+
return _this;
|
|
49302
|
+
}
|
|
49303
|
+
return UnlinkGooglePlayGameServiceOperationResponse;
|
|
49304
|
+
}(CustomOperationResponse_1.CustomOperationResponseAbstract));
|
|
49305
|
+
MasterPlayerResponseModels.UnlinkGooglePlayGameServiceOperationResponse = UnlinkGooglePlayGameServiceOperationResponse;
|
|
49306
|
+
var UnlinkGameCenterOperationResponse = /** @class */ (function (_super) {
|
|
49307
|
+
__extends(UnlinkGameCenterOperationResponse, _super);
|
|
49308
|
+
function UnlinkGameCenterOperationResponse() {
|
|
49309
|
+
var _this = _super.call(this) || this;
|
|
49310
|
+
_this.responseDataCls = MasterPlayerModels_1.MasterPlayerModels.EmptyResponseData;
|
|
49311
|
+
return _this;
|
|
49312
|
+
}
|
|
49313
|
+
return UnlinkGameCenterOperationResponse;
|
|
49314
|
+
}(CustomOperationResponse_1.CustomOperationResponseAbstract));
|
|
49315
|
+
MasterPlayerResponseModels.UnlinkGameCenterOperationResponse = UnlinkGameCenterOperationResponse;
|
|
48120
49316
|
var UnlinkiOSDeviceIdOperationResponse = /** @class */ (function (_super) {
|
|
48121
49317
|
__extends(UnlinkiOSDeviceIdOperationResponse, _super);
|
|
48122
49318
|
function UnlinkiOSDeviceIdOperationResponse() {
|