@xmobitea/gn-typescript-client 2.3.1-esnext → 2.3.2-esnext
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/GNServerSettingsConfig.debug.json +1 -3
- package/dist/runtime/constant/parameterCode/GNParameterCode.d.ts +2 -0
- package/dist/runtime/constant/parameterCode/GNParameterCode.js +3 -1
- package/dist/runtime/entity/models/DashboardModels.d.ts +4 -0
- package/dist/runtime/entity/models/DashboardModels.js +11 -0
- package/package.json +2 -2
|
@@ -6,16 +6,14 @@
|
|
|
6
6
|
"useSsl": false,
|
|
7
7
|
"useSocket": true,
|
|
8
8
|
"useHttp": true,
|
|
9
|
-
|
|
10
9
|
"sendRate": 20,
|
|
11
10
|
"reconnectDelay": 5000,
|
|
12
11
|
"pingInterval": 20000,
|
|
13
12
|
"pingTimeout": 20000,
|
|
14
|
-
|
|
15
13
|
"gnServerSourcePath": "./../GNServer/",
|
|
16
14
|
"logType": 4,
|
|
17
15
|
"adminSecretKey": "",
|
|
18
16
|
"serverSecretKey": "",
|
|
19
17
|
"clientSecretKey": ""
|
|
20
18
|
}
|
|
21
|
-
}
|
|
19
|
+
}
|
|
@@ -310,7 +310,7 @@ GNParameterCode.GrantGroupItem = "GrantGroupItem";
|
|
|
310
310
|
GNParameterCode.GetMembers = "GetMembers";
|
|
311
311
|
GNParameterCode.AddMember = "AddMember";
|
|
312
312
|
GNParameterCode.RemoveMember = "RemoveMember";
|
|
313
|
-
GNParameterCode.SendGroupMessage = "
|
|
313
|
+
GNParameterCode.SendGroupMessage = "SendGroupMessage";
|
|
314
314
|
GNParameterCode.GetGroupMessage = "GetGroupMessage";
|
|
315
315
|
GNParameterCode.GetGroupsWithDisplayName = "GetGroupsWithDisplayName";
|
|
316
316
|
GNParameterCode.SetItemStatistics = "SetItemStatistics";
|
|
@@ -538,3 +538,5 @@ GNParameterCode.AnalyticsPrice = "AnalyticsPrice";
|
|
|
538
538
|
GNParameterCode.IssuerId = "IssuerId";
|
|
539
539
|
GNParameterCode.KeyId = "KeyId";
|
|
540
540
|
GNParameterCode.P8Content = "P8Content";
|
|
541
|
+
GNParameterCode.ServerAllocation = "ServerAllocation";
|
|
542
|
+
GNParameterCode.Enable = "Enable";
|
|
@@ -488,10 +488,14 @@ export declare namespace DashboardModels {
|
|
|
488
488
|
max?: number;
|
|
489
489
|
advancedSettings?: AdvancedSettingsParam;
|
|
490
490
|
}
|
|
491
|
+
class ServerAllocationParam {
|
|
492
|
+
enable: boolean;
|
|
493
|
+
}
|
|
491
494
|
class MatchmakingQueueSettingsParam {
|
|
492
495
|
queueName: string;
|
|
493
496
|
matchSize: SizeParam;
|
|
494
497
|
ticketSize: SizeParam;
|
|
498
|
+
serverAllocation: ServerAllocationParam;
|
|
495
499
|
teams?: TeamParam[];
|
|
496
500
|
rules?: RuleParam[];
|
|
497
501
|
remove?: boolean;
|
|
@@ -1783,6 +1783,13 @@ export var DashboardModels;
|
|
|
1783
1783
|
__metadata("design:type", AdvancedSettingsParam)
|
|
1784
1784
|
], RuleParam.prototype, "advancedSettings", void 0);
|
|
1785
1785
|
DashboardModels.RuleParam = RuleParam;
|
|
1786
|
+
class ServerAllocationParam {
|
|
1787
|
+
}
|
|
1788
|
+
__decorate([
|
|
1789
|
+
BooleanDataMember({ code: GNParameterCode.Enable }),
|
|
1790
|
+
__metadata("design:type", Boolean)
|
|
1791
|
+
], ServerAllocationParam.prototype, "enable", void 0);
|
|
1792
|
+
DashboardModels.ServerAllocationParam = ServerAllocationParam;
|
|
1786
1793
|
class MatchmakingQueueSettingsParam {
|
|
1787
1794
|
}
|
|
1788
1795
|
__decorate([
|
|
@@ -1797,6 +1804,10 @@ export var DashboardModels;
|
|
|
1797
1804
|
GNHashtableDataMember({ code: GNParameterCode.TicketSize }),
|
|
1798
1805
|
__metadata("design:type", SizeParam)
|
|
1799
1806
|
], MatchmakingQueueSettingsParam.prototype, "ticketSize", void 0);
|
|
1807
|
+
__decorate([
|
|
1808
|
+
GNHashtableDataMember({ code: GNParameterCode.ServerAllocation }),
|
|
1809
|
+
__metadata("design:type", ServerAllocationParam)
|
|
1810
|
+
], MatchmakingQueueSettingsParam.prototype, "serverAllocation", void 0);
|
|
1800
1811
|
__decorate([
|
|
1801
1812
|
GNArrayDataMember({ code: GNParameterCode.Teams, isOptional: true, elementCls: TeamParam }),
|
|
1802
1813
|
__metadata("design:type", Array)
|
package/package.json
CHANGED